summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv4-nat
diff options
context:
space:
mode:
Diffstat (limited to 'files/nftables/ipv4-nat')
-rw-r--r--files/nftables/ipv4-nat6
1 files changed, 6 insertions, 0 deletions
diff --git a/files/nftables/ipv4-nat b/files/nftables/ipv4-nat
new file mode 100644
index 00000000..99d69514
--- /dev/null
+++ b/files/nftables/ipv4-nat
@@ -0,0 +1,6 @@
+#! nft -f
+
+table nat {
+ chain prerouting { type nat hook prerouting priority -150; }
+ chain postrouting { type nat hook postrouting priority -150; }
+}