I failed to configure AgentForwarding with PuTTY :(
PuTTY is newest 0.61 version. I have created public/private key pair for PuTTY, converted them to openssh format, added them to /root/.ssh/authorized_keys on both host1 and host2. On both hosts in /etc/ssh/sshd_config:
PermitRootLogin without-password
AuthorizedKeysFile %h/.ssh/authorized_keys
AllowAgentForwarding yes
On both hosts /root/.ssh/config contains
Host *
ForwardAgent yes
In PuTTY configuration, option Connection/SSH/Auth/Allow agent forwarding [x] is checked on.
Whan I'm running pagent.exe with loaded keyfile, I can connect to host1 and host2 without password. But when I am connected to host1 and try to ssh root@host2
, I'm prompted for password. Variable $SSH_AUTH_SOCK is not set in my host1 session. What am I doing wrong?
Since $SSH_AUTH_SOCK is not set, its likely either a problem with putty/pagent, or sshd itself.
You can put sshd into debug mode easily enough. Log into the server (this can be safely done over ssh, as long as you remember to restart sshd after you are done) and stop sshd (via your init scripts). Then run:
/usr/sbin/sshd -Dddd
(-D for foreground mode, -ddd for verbose debugging)
Try to connect via putty again, and watch the output from sshd. If putty is sending the keys for agent forwarding, you should see something about [email protected]. If you don't see that, then putty is not properly sending the key along for agent forwarding/requesting agent forwarding.
That should narrow down where the issue lies. You can also run 'ssh -vvv' from host1 for verbose debugging output while trying to ssh to host2.
(At this point, please remember to ctrl+C the foreground sshd process and restart it from your init scripts, otherwise you'll be locked out of your server!)
The problem was in
screen
application. It was started by PuTTY on remove host withscreen -d -RR
(Connection/SSH/Remote Command). I found solution here and slightly modified it:~/.bashrc:
Every time I connect, ssh agent variables are stored in
$HOME/.ssh/keep_vars
. Every newly opened window in screen can immediately connect to other machines with my key - it receive proper variables from screen. In old windows, I need to typefixssh
and then try connecting.I claim that Putty is using a different key than the one that is loaded into Pageant. Set a passphrase on your key, load it into Pageant and see if Putty still asks for a passphrase when connecting.