From c951bf3775a3b65c28e661f91a40d57e40bc2640 Mon Sep 17 00:00:00 2001 From: Alexander Dahl Date: Fri, 6 Apr 2018 11:07:29 +0200 Subject: nftables: Add example config file This adds only empty chains, but it will be needed for the bbinit startscript not to fail. User will probably overwrite it with something more useful. Signed-off-by: Alexander Dahl Signed-off-by: Michael Olbrich --- projectroot/etc/nftables.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 projectroot/etc/nftables.conf (limited to 'projectroot') diff --git a/projectroot/etc/nftables.conf b/projectroot/etc/nftables.conf new file mode 100755 index 000000000..2c09327d7 --- /dev/null +++ b/projectroot/etc/nftables.conf @@ -0,0 +1,15 @@ +#!/usr/sbin/nft -f + +flush ruleset + +table 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; + } +} -- cgit v1.2.3