Files
server/usr/share/doc/nftables/examples/ipv6-nat.nft
2026-01-07 20:52:11 +01:00

7 lines
253 B
Plaintext

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