Blame extensions/libipt_SNAT.txlate

Packit Service d1fe03
iptables-translate -t nat -A postrouting -o eth0 -j SNAT --to 1.2.3.4
Packit Service d1fe03
nft add rule ip nat postrouting oifname "eth0" counter snat to 1.2.3.4
Packit Service d1fe03
Packit Service d1fe03
iptables-translate -t nat -A postrouting -o eth0 -j SNAT --to 1.2.3.4-1.2.3.6
Packit Service d1fe03
nft add rule ip nat postrouting oifname "eth0" counter snat to 1.2.3.4-1.2.3.6
Packit Service d1fe03
Packit Service d1fe03
iptables-translate -t nat -A postrouting -p tcp -o eth0 -j SNAT --to 1.2.3.4:1-1023
Packit Service d1fe03
nft add rule ip nat postrouting oifname "eth0" ip protocol tcp counter snat to 1.2.3.4:1-1023
Packit Service d1fe03
Packit Service d1fe03
iptables-translate -t nat -A postrouting -o eth0 -j SNAT --to 1.2.3.4 --random
Packit Service d1fe03
nft add rule ip nat postrouting oifname "eth0" counter snat to 1.2.3.4 random
Packit Service d1fe03
Packit Service d1fe03
iptables-translate -t nat -A postrouting -o eth0 -j SNAT --to 1.2.3.4 --random --persistent
Packit Service d1fe03
nft add rule ip nat postrouting oifname "eth0" counter snat to 1.2.3.4 random,persistent