summaryrefslogtreecommitdiffstats
path: root/files/nftables/inet-filter
diff options
context:
space:
mode:
Diffstat (limited to 'files/nftables/inet-filter')
-rw-r--r--files/nftables/inet-filter7
1 files changed, 7 insertions, 0 deletions
diff --git a/files/nftables/inet-filter b/files/nftables/inet-filter
new file mode 100644
index 00000000..9f3108f8
--- /dev/null
+++ b/files/nftables/inet-filter
@@ -0,0 +1,7 @@
+#! nft -f
+
+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; }
+}