最近经常需要临时的开放端口,经常用到端口映射工具。
1 rinetd 我是用最多的工具,同时支持windows和linux,可以后台运行。
配置文件在 /etc/rinetd.conf,或者-c指定。
格式 bindaddress bindport connectaddress connectport
例如 0.0.0.0 23 10.1.1.2 23
2 Socat 功能最强大的工具,可以支持串口,只支持命令行。
socat TCP-LISTEN:443,fork TCP:192.168.30.167:443
3 redir 功能最简单的工具
redir --lport=445 --caddr=192.168.30.167--cport=443
4 xinted
使用xinted是最简单的方式
service mysql-portmap {
id = 1
disable = no
type = UNLISTED
socket_type = stream
protocol = tcp
wait = no
redirect = 10.33.66.88 3306
bind = 183.68.36.138
port = 2669
user = nobody
group = nobody
flags = NODELAY KEEPALIVE NOLIBWRAP IPv4
log_type = FILE /data/log/xinetd/tcp-portmap.log
cps = 100 30
}
阅读(3832) | 评论(0) | 转发(0) |