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.
我使用的主网络有限制性防火墙,不允许 ssh 连接。但是,我有一个允许 ssh 连接的辅助连接。使用 ssh,我可以使用选项,-b
以便它使用辅助网络进行连接并成功连接。例如,我将使用以下~/.ssh/config
Host *
BindAddress <ip-of-secondary-interface>
PuTTY/KiTTY 有等效选项吗?