summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv6-nat.nft
diff options
context:
space:
mode:
Diffstat (limited to 'files/nftables/ipv6-nat.nft')
-rwxr-xr-xfiles/nftables/ipv6-nat.nft8
1 files changed, 8 insertions, 0 deletions
diff --git a/files/nftables/ipv6-nat.nft b/files/nftables/ipv6-nat.nft
new file mode 100755
index 00000000..ce0391df
--- /dev/null
+++ b/files/nftables/ipv6-nat.nft
@@ -0,0 +1,8 @@
+#!@sbindir@nft -f
+
+table ip6 nat {
+ 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; }
+}