Open mcr-ksh opened 5 years ago
is: [root@real-server]# iptables -t nat -A POSTROUTING -s 192.168.100.17 -j SNAT --to-destination 205.254.211.17
[root@real-server]# iptables -t nat -A POSTROUTING -s 192.168.100.17 -j SNAT --to-destination 205.254.211.17
should be: [root@real-server]# iptables -t nat -A POSTROUTING -s 192.168.100.17 -j SNAT --to 205.254.211.17
[root@real-server]# iptables -t nat -A POSTROUTING -s 192.168.100.17 -j SNAT --to 205.254.211.17
SNAT example from 5.7 is:
is:
[root@real-server]# iptables -t nat -A POSTROUTING -s 192.168.100.17 -j SNAT --to-destination 205.254.211.17
should be:
[root@real-server]# iptables -t nat -A POSTROUTING -s 192.168.100.17 -j SNAT --to 205.254.211.17