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

table bridge filter {
	chain input		{ type filter hook input priority -200; }
	chain forward		{ type filter hook forward priority -200; }
	chain output		{ type filter hook output priority 200; }
}