summaryrefslogtreecommitdiffstats
path: root/files/nftables/inet-filter
blob: 9f3108f8bb4e776e04540cc067807225adae9ac3 (plain)
1
2
3
4
5
6
7
#! nft -f

table inet 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; }
}