summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv4-nat
diff options
context:
space:
mode:
Diffstat (limited to 'files/nftables/ipv4-nat')
-rw-r--r--files/nftables/ipv4-nat6
1 files changed, 4 insertions, 2 deletions
diff --git a/files/nftables/ipv4-nat b/files/nftables/ipv4-nat
index 01c6c3d8..130a729b 100644
--- a/files/nftables/ipv4-nat
+++ b/files/nftables/ipv4-nat
@@ -1,6 +1,8 @@
#! @sbindir@nft -f
table nat {
- chain prerouting { type nat hook prerouting priority -150; }
- chain postrouting { type nat hook postrouting priority -150; }
+ chain prerouting { type nat hook prerouting priority -100; }
+ chain input { type nat hook input priority 100; }
+ chain output { type nat hook output priority -100; }
+ chain postrouting { type nat hook postrouting priority 100; }
}