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; + } +}