对于家庭技术支持地狱(tm)我正在进入ssh。
我的计划:
them@theircomputer$ ssh -L 5022:localhost:22 localhost
me@mycomputer$ ssh -p 5022 them@theircomputer
结果:ssh: connect to host theircomputer port 5022: Connection refused
似乎很明显ssh隧道应该隧道请求不侦听。
我不想让他们通过ssh访问我的系统来设置反向隧道。
我不想将端口5022转发到端口22,我不想让ssh永久监听端口5022(为安全起见)
如何暂时将端口5022转发到系统上的端口22? (最好是在一个简短的oneliner!)
答案 0 :(得分:0)
更多谷歌搜索导致ssh标志-g
-g Allows remote hosts to connect to local forwarded ports.