summaryrefslogtreecommitdiffstats
path: root/files/examples/ipv6-nat.nft
blob: 7437c19367c8e2eff637a82e6cba3ab84c0ad9af (plain)
1
2
3
4
5
6
7
8
#!/usr/sbin/nft -f

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; }
}