summaryrefslogtreecommitdiffstats
path: root/files/nftables/arp-filter
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2017-08-23 17:54:19 +0200
committerFlorian Westphal <fw@strlen.de>2017-08-23 23:42:13 +0200
commitc06413211e6f5f8720fa75909f84b6c0b8c17d68 (patch)
treea41990f4cb9943d3eb16e0cec9679ee8aa9b8dc4 /files/nftables/arp-filter
parent17841a1975cd1c4346f243144f775a8cb17c50b5 (diff)
files: add arp filter and add in/output to nat skeleton
Signed-off-by: Florian Westphal <fw@strlen.de> Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'files/nftables/arp-filter')
-rw-r--r--files/nftables/arp-filter6
1 files changed, 6 insertions, 0 deletions
diff --git a/files/nftables/arp-filter b/files/nftables/arp-filter
new file mode 100644
index 00000000..bcabf28a
--- /dev/null
+++ b/files/nftables/arp-filter
@@ -0,0 +1,6 @@
+#! @sbindir@nft -f
+
+table arp filter {
+ chain input { type filter hook input priority 0; }
+ chain output { type filter hook output priority 0; }
+}