首页 > 代码库 > 端口映射工具--socat
端口映射工具--socat
需求
有些服务器没有公网IP, 在有公网IP的服务器上把端口映射出去。
这样的需求有很多实现, 我比较钟爱socat, 简单就是美。
示例脚本
新建一个文件叫
intershow.sh
/usr/local/socat/bin/socat -d -d -lf /var/log/socat.log TCP4-LISTEN:9030,reuseaddr,fork,su=nobody TCP4:172.16.6.101:22 &/usr/local/socat/bin/socat -d -d -lf /var/log/socat.log TCP4-LISTEN:9031,reuseaddr,fork,su=nobody TCP4:172.16.6.125:22 &/usr/local/socat/bin/socat -d -d -lf /var/log/socat.log TCP4-LISTEN:9036,reuseaddr,fork,su=nobody TCP4:172.16.6.125:3306 &
建议使用以下命令启动
nohup ./intershow.sh &
socat可以映射TCP,UDP,UNIXSOCKET……
简单,强大。
参考 http://www.dest-unreach.org/socat/doc/socat.html
端口映射工具--socat
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。