ssh 反向隧道始终侦听本地主机

ssh 反向隧道始终侦听本地主机

我使用以下命令来设置反向隧道:

ssh -i dev.pem -vvv -R 8480:localhost:8080 [email protected] "sleep 6000"

最终发生的情况是,ssh 开始监听 lo 设备,而不是 eth0 设备(绑定到 127.0.0.1 而不是删除公共 ip)。

有什么线索可以改变这种行为吗?

答案1

在 /etc/ssh/sshd_config 中启用 GatewayPorts。

参考:http://www.symantec.com/connect/articles/ssh-port-forwarding

相关内容