From 12116390acb3b924393fca6ed45101f305b4d35c Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Thu, 4 Jul 2019 12:22:45 +0200 Subject: files: Add inet family nat config Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- files/nftables/inet-nat.nft | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 files/nftables/inet-nat.nft (limited to 'files/nftables/inet-nat.nft') diff --git a/files/nftables/inet-nat.nft b/files/nftables/inet-nat.nft new file mode 100755 index 00000000..52fcdb54 --- /dev/null +++ b/files/nftables/inet-nat.nft @@ -0,0 +1,8 @@ +#!@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; } +} -- cgit v1.2.3