ssh 端口转发
#使用此功能前请确认sshd_config中已开启gatewayportsvi /etc/ssh/sshd_config#gatewayports需设置为yesgatewayports yes#格式说明#远程端口转发至本地#转发目的地址端口:被转发的地址端口 被转发目标服务器ssh -L <local port>:<remote host>:&l...
·
#使用此功能前请确认sshd_config中已开启gatewayports
vi /etc/ssh/sshd_config
#gatewayports需设置为yes
gatewayports yes
#格式说明
#远程端口转发至本地
#转发目的地址端口:被转发的地址端口 被转发目标服务器
ssh -L <local port>:<remote host>:<remote port> <SSH hostname>
#如将172.17.82.12的22端口映射到我本地1022
ssh -L 0.0.0.0:1022:172.17.82.12:22 root@172.17.82.12
#此时访问在我本地ssh root@127.0.0.1 -p 1022即可登录远程服务器
#本地端口转发至远程
#转发目的地址端口:被转发的地址端口 被转发目标服务器
ssh -R <local port>:<remote host>:<remote port> <SSH hostname>
#如将我本地的80端口映射到172.17.82.12的8080
ssh -R 0.0.0.0:8080:127.0.0.1:80 root@172.17.82.12
#此时访问http://172.17.82.12:8080即可访问我本地服务器的80端口
更多推荐
已为社区贡献2条内容
所有评论(0)