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

table filter {
	chain input		{ hook NF_INET_LOCAL_IN		0; }
	chain forward		{ hook NF_INET_FORWARD		0; }
	chain output		{ hook NF_INET_LOCAL_OUT	0; }
}