From f38ed1e59f8d3b62e322563401cabc6dbac5fca5 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Wed, 18 Apr 2018 00:09:05 +0200 Subject: xt-translate: quote interface names in translated output it its good practice as interface names can be virtually any identifier and could clash with nft keywords. Signed-off-by: Florian Westphal --- extensions/libipt_SNAT.txlate | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'extensions/libipt_SNAT.txlate') diff --git a/extensions/libipt_SNAT.txlate b/extensions/libipt_SNAT.txlate index 4efd3ad0..01592fad 100644 --- a/extensions/libipt_SNAT.txlate +++ b/extensions/libipt_SNAT.txlate @@ -1,14 +1,14 @@ iptables-translate -t nat -A postrouting -o eth0 -j SNAT --to 1.2.3.4 -nft add rule ip nat postrouting oifname eth0 counter snat to 1.2.3.4 +nft add rule ip nat postrouting oifname "eth0" counter snat to 1.2.3.4 iptables-translate -t nat -A postrouting -o eth0 -j SNAT --to 1.2.3.4-1.2.3.6 -nft add rule ip nat postrouting oifname eth0 counter snat to 1.2.3.4-1.2.3.6 +nft add rule ip nat postrouting oifname "eth0" counter snat to 1.2.3.4-1.2.3.6 iptables-translate -t nat -A postrouting -p tcp -o eth0 -j SNAT --to 1.2.3.4:1-1023 -nft add rule ip nat postrouting oifname eth0 ip protocol tcp counter snat to 1.2.3.4:1-1023 +nft add rule ip nat postrouting oifname "eth0" ip protocol tcp counter snat to 1.2.3.4:1-1023 iptables-translate -t nat -A postrouting -o eth0 -j SNAT --to 1.2.3.4 --random -nft add rule ip nat postrouting oifname eth0 counter snat to 1.2.3.4 random +nft add rule ip nat postrouting oifname "eth0" counter snat to 1.2.3.4 random iptables-translate -t nat -A postrouting -o eth0 -j SNAT --to 1.2.3.4 --random --persistent -nft add rule ip nat postrouting oifname eth0 counter snat to 1.2.3.4 random,persistent +nft add rule ip nat postrouting oifname "eth0" counter snat to 1.2.3.4 random,persistent -- cgit v1.2.3