summaryrefslogtreecommitdiffstats
path: root/files/examples/families_and_hooks.nft
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2018-05-06 21:44:56 +0200
committerFlorian Westphal <fw@strlen.de>2018-05-08 14:14:09 +0200
commit13535a3b40b625f0a98e87a1324715cc6491d738 (patch)
tree66b865df0d4249d7d52a1e89c7930bcec66e3f2f /files/examples/families_and_hooks.nft
parent3f82ef3d0dbf2788fd24ecb20299f99c190ea7ec (diff)
files: restore base table skeletons
nftables releases until 0.8.2 included base skeleton hooks that were installed into /etc/nftables (sysconfdir). With 0.8.3 and newer these files were moved to the documentation area but apparently some users expect them to be there. Resurrect them. Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'files/examples/families_and_hooks.nft')
-rwxr-xr-xfiles/examples/families_and_hooks.nft32
1 files changed, 0 insertions, 32 deletions
diff --git a/files/examples/families_and_hooks.nft b/files/examples/families_and_hooks.nft
deleted file mode 100755
index e6d9ee23..00000000
--- a/files/examples/families_and_hooks.nft
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/sbin/nft -f
-
-# Here is an example of different families, hooks and priorities in the
-# nftables framework, all mixed together.
-# This script is mean to be loaded with `nft -f <file>`
-# For up-to-date information please visit https://wiki.nftables.org
-
-flush ruleset
-
-# native dual stack IPv4 & IPv6 family
-include "./inet-filter.nft"
-
-# netdev family at ingress hook. Attached to a given NIC
-include "./netdev-ingress.nft"
-
-# IPv4 family, typical iptables tables/chains layout
-include "./ipv4-filter.nft"
-include "./ipv4-mangle.nft"
-include "./ipv4-nat.nft"
-include "./ipv4-raw.nft"
-
-# IPv6 family, typical ip6tables tables/chains layout
-include "./ipv6-filter.nft"
-include "./ipv6-mangle.nft"
-include "./ipv6-nat.nft"
-include "./ipv6-raw.nft"
-
-# ARP family, typical arptables tables/chain layout
-include "./arp-filter.nft"
-
-# bridge family, typical ebtables tables/chain layout
-include "./bridge-filter.nft"