summaryrefslogtreecommitdiffstats
path: root/files/examples/ipv4-filter.nft
blob: 73b11bc9cd9a56c64ed08e4fd773123989f2700c (plain)
1
2
3
4
5
6
7
#!/usr/sbin/nft -f

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