1
lhbc 2017-01-16 12:40:44 +08:00 via iPhone 1
nginx, iptables, nc 都可以。
哪个熟悉就用哪个吧, iptables 最简单。 |
2
Showfom 2017-01-16 12:47:17 +08:00 1
iptables 最简单了 一条命令搞定
tcp 协议的话 haproxy 也简单 你这个需求 nginx 也没问题 nc 一般不是这么用的啦- - 临时用用的 |
3
kaneg 2017-01-16 13:00:18 +08:00 1
如果你有 root 权限,可以用 iptables :
iptables -t nat -I PREROUTING -i eth0 -p TCP --dport 4040 -j DNAT --to-destination :4040 如果没有 root 权限,可以用 socat : socat TCP-LISTEN:4040,reuseaddr,fork TCP:localhost:4040 |
4
wildcat007 OP |