summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv6-nat
blob: e7816860f4a761a27c5b1ad7b7b04a6d0a4f2178 (plain)
1
2
3
4
5
6
7
8
#! @sbindir@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; }
}