configpolicy/roles/dch-gw/files/ipv4-nat.nft

9 lines
267 B
Plaintext

#! /usr/sbin/nft -f
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; }
}