From c06413211e6f5f8720fa75909f84b6c0b8c17d68 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Wed, 23 Aug 2017 17:54:19 +0200 Subject: files: add arp filter and add in/output to nat skeleton Signed-off-by: Florian Westphal Acked-by: Pablo Neira Ayuso --- files/nftables/arp-filter | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 files/nftables/arp-filter (limited to 'files/nftables/arp-filter') 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; } +} -- cgit v1.2.3