summaryrefslogtreecommitdiffstats
path: root/files/examples/ipv6-filter.nft
diff options
context:
space:
mode:
Diffstat (limited to 'files/examples/ipv6-filter.nft')
-rwxr-xr-xfiles/examples/ipv6-filter.nft7
1 files changed, 7 insertions, 0 deletions
diff --git a/files/examples/ipv6-filter.nft b/files/examples/ipv6-filter.nft
new file mode 100755
index 00000000..21f06a38
--- /dev/null
+++ b/files/examples/ipv6-filter.nft
@@ -0,0 +1,7 @@
+#!/usr/sbin/nft -f
+
+table ip6 filter {
+ chain input { type filter hook input priority 0; }
+ chain forward { type filter hook forward priority 0; }
+ chain output { type filter hook output priority 0; }
+}