summaryrefslogtreecommitdiffstats
path: root/files/examples/inet-filter.nft
blob: e5c8c54fcf2a6b7a21c12a02bdce31a067d8f365 (plain)
1
2
3
4
5
6
7
#!/usr/sbin/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; }
}