summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv4-nat.nft
blob: 2c9ce7c5b7f4fee71d6f08e7291818c3728494bc (plain)
1
2
3
4
5
6
table 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; }
}