码迷,mamicode.com
首页 > 其他好文 > 详细

端口映射工具--socat

时间:2014-09-07 18:29:25      阅读:677      评论:0      收藏:0      [点我收藏+]

标签:des   http   使用   ar   for   文件   sp   log   html   

需求

有些服务器没有公网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

标签:des   http   使用   ar   for   文件   sp   log   html   

原文地址:http://www.cnblogs.com/cnsanshao/p/3960575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!