summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv4-filter
blob: 3174e7a9e3edb15c2f944bb5ed780332c679a07d (plain)
1
2
3
4
5
6
7
#! 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; }
}