命令
1 | iptables -t nat -A PREROUTING -p tcp -m tcp --dport 10000 -j DNAT --to-destination 1.1.1.1:30000 |
不同端口 端口转发
将本地服务器(中转服务器 192.168.0.1 )的 10000 端口转发至目标IP(被中转服务器)为 1.1.1.1 的 30000 端口
1 | iptables -t nat -A PREROUTING -p tcp -m tcp --dport 10000 -j DNAT --to-destination 1.1.1.1:30000 |
不同端口 端口转发
将本地服务器(中转服务器 192.168.0.1 )的 10000 端口转发至目标IP(被中转服务器)为 1.1.1.1 的 30000 端口
评论