This page assumes using PuTTY (see online help) as SSH client. For GUI access to a remote file system use WinSCP. See also SSH package for Maple.
name@host
for the remote machine (use ipconfig
for Windows and ifconfig
for Linux)~/.ssh/authorized_keys
file on the remote machine in the following format:
ssh-rsa HERE_IS_THE_GENERATED_KEY_FOLLOWED_BY_NEWLINE_CHARACTER name@host
PATH
environment variable when looking for a private key,
but you can use %HOMEPATH%
and similar constructions in Windows batch filesstart putty -ssh -i 'ppk-key' 'name'@'host'
start /min putty -ssh -i 'tunnel-ppk-key' -N -L 10022:'host':22 'name'@'tunnel-host'
timeout /t 5
start putty -ssh -i 'ppk-key' -P 10022 'name'@localhost
plink -ssh -i 'ppk-key' 'name'@'host' 'command'
cmd /k "plink -ssh -i 'ppk-key' 'name'@'host' qstat -u 'name'"
psftp 'name'@'host' -i psftp.ppk -b 'file of commands'