From: Patrick McHardy Date: Wed, 18 Mar 2009 05:23:57 +0000 (+0100) Subject: templates: add IPv6 raw table template X-Git-Tag: v0.099~211 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97d517c4bc3eee4feb2dfd4376738e939d8a73cd;p=thirdparty%2Fnftables.git templates: add IPv6 raw table template Signed-off-by: Patrick McHardy --- 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; } +}