summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2009-03-18 06:23:57 +0100
committerPatrick McHardy <kaber@trash.net>2009-03-18 06:23:57 +0100
commit97d517c4bc3eee4feb2dfd4376738e939d8a73cd (patch)
tree4e64d8890d2358b6c2224670f81d4bfdb58ca914
parentd284320db67f7736fe3dbd6481410efc8d455b0f (diff)
templates: add IPv6 raw table template
Signed-off-by: Patrick McHardy <kaber@trash.net>
-rw-r--r--files/nftables/ipv6-raw6
1 files changed, 6 insertions, 0 deletions
diff --git a/files/nftables/ipv6-raw b/files/nftables/ipv6-raw
new file mode 100644
index 00000000..54940cab
--- /dev/null
+++ b/files/nftables/ipv6-raw
@@ -0,0 +1,6 @@
+#! nft -f
+
+table ip6 raw {
+ chain prerouting { hook NF_INET_PRE_ROUTING -2147483647; }
+ chain output { hook NF_INET_LOCAL_OUT -2147483647; }
+}