summaryrefslogtreecommitdiffstats
path: root/files/examples/arp-filter.nft
blob: 13166bda925e572c37277518e5c72ac15917ab91 (plain)
1
2
3
4
5
6
#!/usr/sbin/nft -f

table arp filter {
	chain input		{ type filter hook input priority 0; }
	chain output		{ type filter hook output priority 0; }
}