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