Linux基础之SSH隧道/端口转发
格式
ssh -L <local port>:<remote host>:<remote port> <SSH servername>
示例
# ssh -L 3307:$server2:3306 user@$server1
实现的效果是使用user登录$server1之后建立本地3307端口到远程$server2:3306端口的隧道,通过访问本地3307端口访问远程$server2:3306端口,前提是$server1可以访问$server2:3306端口;
windows xshell这样配置
putty设置
如果需要自动重连,使用autossh
# yum install autossh
# autossh -M 0 -L 0.0.0.0:$local_port:127.0.0.1:$report_port $remote_user@$remote_ip -o "ServerAliveInterval 60" -o "ServerAliveCountMax 3"
---------------------------------------------------------------- 结束啦,我是大魔王先生的分割线 :) ----------------------------------------------------------------
- 由于大魔王先生能力有限,文中可能存在错误,欢迎指正、补充!
- 感谢您的阅读,如果文章对您有用,那么请为大魔王先生轻轻点个赞,ありがとう