debian-galaxy-a20e/rootfs/usr/share/doc/nftables/examples/ipv4-nat.nft

7 lines
246 B
Plaintext
Raw Normal View History

2026-08-27 13:48:54 +00:00
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; }
}