我在 remote.com 有一个远程 ssh 服务器。在我的本地主机上,我将所有 ssh 流量转发到它:
ssh -L 127.0.0.1:88:remote.com:22 [email protected]
现在,当我执行以下操作时,ssh 就会挂起:
ssh [email protected] -p 88
我以为到 127.0.0.1:88 的流量会被转发到 remote.com:22。为什么会挂起?
我在 remote.com 有一个远程 ssh 服务器。在我的本地主机上,我将所有 ssh 流量转发到它:
ssh -L 127.0.0.1:88:remote.com:22 [email protected]
现在,当我执行以下操作时,ssh 就会挂起:
ssh [email protected] -p 88
我以为到 127.0.0.1:88 的流量会被转发到 remote.com:22。为什么会挂起?