summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv6-nat.nft
blob: 6a356f1e49f3e6e3f4d910de86682630f006b748 (plain)
1
2
3
4
5
6
table ip6 nat {
	chain prerouting	{ type nat hook prerouting priority -100; }
	chain input 		{ type nat hook input priority 100; }
	chain output  		{ type nat hook output priority -100; }
	chain postrouting	{ type nat hook postrouting priority 100; }
}