端口转发

1 相同端口

iptables -t nat -I PREROUTING -p udp --dport 2000 -j DNAT --to *.*.*.50:2000
iptables -t nat -I POSTROUTING -p udp --dport 2000 -j MASQUERADE

 

2.不同端口

iptables -t nat -I PREROUTING -p udp --dport 2000 -j DNAT --to *.*.*.50:2222
iptables -t nat -I POSTROUTING -p udp --dport 2222 -j MASQUERADE

你可能感兴趣的:(iptables,端口转发)