From bc2bf5ca27716ce193080f950136a1c2d8cf2471 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Tue, 30 Aug 2022 15:25:28 +0200 Subject: [PATCH] Default nftables configuration --- root/etc/nftables.conf.j2 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 root/etc/nftables.conf.j2 diff --git a/root/etc/nftables.conf.j2 b/root/etc/nftables.conf.j2 new file mode 100755 index 0000000..a58f4ce --- /dev/null +++ b/root/etc/nftables.conf.j2 @@ -0,0 +1,15 @@ +#!/usr/sbin/nft -f + +flush ruleset + +table inet filter { + chain input { + type filter hook input priority 0; + } + chain forward { + type filter hook forward priority 0; + } + chain output { + type filter hook output priority 0; + } +}