diff options
Diffstat (limited to 'debian/nftables.conf')
-rw-r--r-- | debian/nftables.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/nftables.conf b/debian/nftables.conf new file mode 100644 index 0000000..fb6f06d --- /dev/null +++ b/debian/nftables.conf @@ -0,0 +1,15 @@ +#!/usr/sbin/nft -f + +flush ruleset + +table inet filter { + chain input { + type filter hook input priority filter; + } + chain forward { + type filter hook forward priority filter; + } + chain output { + type filter hook output priority filter; + } +} |