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