Signed-off-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
arp-filter.nft \
bridge-filter.nft \
inet-filter.nft \
+ inet-nat.nft \
ipv4-filter.nft \
ipv4-mangle.nft \
ipv4-nat.nft \
# native dual stack IPv4 & IPv6 family
include "./inet-filter.nft"
+include "./inet-nat.nft"
# netdev family at ingress hook. Attached to a given NIC
include "./netdev-ingress.nft"
--- /dev/null
+#!@sbindir@nft -f
+
+table inet 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; }
+}