diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:08:38 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:08:38 +0000 |
commit | 9fe063bb3ef278a591e344caa78bee679536b7ee (patch) | |
tree | f589ace33354785090116341f7c702b6035b0868 /debian/nftables.conf | |
parent | Adding upstream version 1.0.9. (diff) | |
download | nftables-9fe063bb3ef278a591e344caa78bee679536b7ee.tar.xz nftables-9fe063bb3ef278a591e344caa78bee679536b7ee.zip |
Adding debian version 1.0.9-1.debian/1.0.9-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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; + } +} |