summaryrefslogtreecommitdiffstats
path: root/files/examples/ipv4-raw.nft
blob: 91fc138b145db706ca916285947b49d8ac713d67 (plain)
1
2
3
4
5
6
#!/usr/sbin/nft -f

table raw {
	chain prerouting	{ type filter hook prerouting priority -300; }
	chain output		{ type filter hook output priority -300; }
}