This isn't working for me. Is there something wrong with my config?
Code:
#NAT for client1
iptables -t nat -I PREROUTING -p udp -d 76.189.129.124 --dport 64103 -j DNAT --to-destination 192.168.1.103:6112
iptables -t nat -I POSTROUTING -p udp -s 192.168.1.103 --sport 6112 -j SNAT --to-source 76.189.129.124:64103
#NAT for client2
iptables -t nat -I PREROUTING -p udp -d 76.189.129.124 --dport 64113 -j DNAT --to-destination 192.168.1.113:6112
iptables -t nat -I POSTROUTING -p udp -s 192.168.1.113 --sport 6112 -j SNAT --to-source 76.189.129.124:64113