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

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