summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv6-nat
diff options
context:
space:
mode:
Diffstat (limited to 'files/nftables/ipv6-nat')
-rw-r--r--files/nftables/ipv6-nat6
1 files changed, 4 insertions, 2 deletions
diff --git a/files/nftables/ipv6-nat b/files/nftables/ipv6-nat
index 3f57c56d..e7816860 100644
--- a/files/nftables/ipv6-nat
+++ b/files/nftables/ipv6-nat
@@ -1,6 +1,8 @@
#! @sbindir@nft -f
table ip6 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; }
}