openSSH SSH客户端具有绑定到特定地址的-b选项:
-b bind_address Use bind_address on the local machine as the source address of the connection. Only useful on systems with more than one address.
我正在使用的主要networking有一个限制性的防火墙,并不允许SSH连接。 但是,我有一个辅助连接,可以让他们。 使用ssh,我可以使用-b选项,以便它使用辅助networking进行连接并成功连接。 例如,我会使用~/.ssh/config
Host * BindAddress <ip-of-secondary-interface>
PuTTY / KiTTY是否有相同的选项?