summaryrefslogtreecommitdiffstats
path: root/files/examples/ipv6-nat.nft
diff options
context:
space:
mode:
Diffstat (limited to 'files/examples/ipv6-nat.nft')
-rwxr-xr-xfiles/examples/ipv6-nat.nft8
1 files changed, 0 insertions, 8 deletions
diff --git a/files/examples/ipv6-nat.nft b/files/examples/ipv6-nat.nft
deleted file mode 100755
index 7437c193..00000000
--- a/files/examples/ipv6-nat.nft
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/sbin/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; }
-}