Displaying 1 result from an estimated 1 matches for "boxashell".
2005 May 07
3
passwordless ssh
...g
#ssh-keygen -t dsa (and rsa using authorized_keys(2) or both
depending...)
when it asks for passphrase...just enter and enter
# scp /root/.ssh/id_dsa.pub boxA:/root/.ssh/
# ssh boxB
#<password>
boxbshell # cat /root/.ssh/id_dsa.pub >>/root/.ssh/authorized_key or
key2 or both.
# exit
boxashell # ssh boxb
<password> will NOT let me do passwordless
now then I have gotten it to work by using the
following /root/.ssh/.config :
Host remotehost
User remoteuser
Compression yes
Protocol 2
RSAAuthentication yes
StrictHostKeyChecking no
ForwardAgent yes
ForwardX11 yes
IdentityFile /home/l...