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