PuTTY configuration equivalent to OpenSSH ProxyCommand

我的未来我决定 提交于 2019-11-29 00:44:01

问题


I'm just trying to use PuTTY to get an SSH connection to my servers. These servers allow incoming SSH connection only from another specific server ("MySshProxyingServer" in example below).

Using Linux this is no problem with the ssh -W command.

In PuTTY I can't find the options to create such a connection.

Example under Linux (~/.ssh/config):

Host MyHostToConnectTo
    Hostname xx.xx.xx.xx
    User root
    Identityfile ~/.ssh/id_rsa
    ProxyCommand ssh MySshProxyServer -W %h:%p

Anyone knows how to use such a config in PuTTY?


回答1:


The equivalent in PuTTY is "local proxy command". You can use the plink.exe with the -nc switch instead of the ssh with the -W switch:

The "local proxy command" is:

plink.exe %user@%proxyhost -P %proxyport -nc %host:%port

An alternative is to open a tunnel via the "MySshProxyServer" first using another instance of PuTTY (or Plink).

See for example:

  • How to create SSH tunnel using PuTTY in Windows?
  • My guide for tunneling SFTP/SCP session. It's for WinSCP, but just use PuTTY instead of WinSCP in section Connecting through the tunnel.


来源:https://stackoverflow.com/questions/28926612/putty-configuration-equivalent-to-openssh-proxycommand

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!