( Related Question: PuTTY configuration equivalent to OpenSSH ProxyCommand but it is for a single ppk/pem file... my problem is slightly different.)
I am trying to use PuTTY to get an SSH connection to my servers. These servers allow incoming SSH connection only from bastion server(another specific server) only.
Using Linux this is no problem with the ssh command...I have achieved that in Linux like this... (~/.ssh/config)
HOST myprod-bastion
IdentityFile ~/.ssh/pemfile/myprod-bastion.pem
User bastion-user
Hostname X.X.X.X
HOST mywebserver
IdentityFile ~/.ssh/pemfile/myweserver.pem
User produser
Hostname 192.168.Y.Y
ProxyCommand ssh myprod-bastion -W %h:%p
From my terminal, I just need to execute following command:
ssh mywebserver
Anyone knows how to use such a config in PuTTY? Appreciate your help in advance. :)