summaryrefslogtreecommitdiffstats
path: root/files/nftables/arp-filter.nft
diff options
context:
space:
mode:
Diffstat (limited to 'files/nftables/arp-filter.nft')
-rwxr-xr-xfiles/nftables/arp-filter.nft6
1 files changed, 6 insertions, 0 deletions
diff --git a/files/nftables/arp-filter.nft b/files/nftables/arp-filter.nft
new file mode 100755
index 00000000..8a350b1e
--- /dev/null
+++ b/files/nftables/arp-filter.nft
@@ -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; }
+}