summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv6-nat
diff options
context:
space:
mode:
authorArturo Borrero Gonzalez <arturo@netfilter.org>2018-02-24 22:06:19 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2018-02-25 19:50:23 +0100
commit6c9230e79339ca4fd662855c84529fa92e962ca5 (patch)
tree9d34224c6e5a8799edde4a5a7fa20517b7ee630f /files/nftables/ipv6-nat
parent4d6ad0f310d6cc3a1d776d32d9d7d678017c6dd7 (diff)
nftables: rearrange files and examples
Concatenate all family/hook examples into a single one by means of includes. Put all example files under examples/. Use the '.nft' prefix and mark them as executable files. Use a static shebang declaration, since these are examples meant for final systems and users. While at it, refresh also the sets_and_maps.nft example file and also add the 'netdev-ingress.nft' example file. Signed-off-by: Arturo Borrero Gonzalez <arturo@netfilter.org> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'files/nftables/ipv6-nat')
-rw-r--r--files/nftables/ipv6-nat8
1 files changed, 0 insertions, 8 deletions
diff --git a/files/nftables/ipv6-nat b/files/nftables/ipv6-nat
deleted file mode 100644
index e7816860..00000000
--- a/files/nftables/ipv6-nat
+++ /dev/null
@@ -1,8 +0,0 @@
-#! @sbindir@nft -f
-
-table ip6 nat {
- chain prerouting { type nat hook prerouting priority -100; }
- chain input { type nat hook input priority 100; }
- chain output { type nat hook output priority -100; }
- chain postrouting { type nat hook postrouting priority 100; }
-}