summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv4-filter
diff options
context:
space:
mode:
Diffstat (limited to 'files/nftables/ipv4-filter')
-rw-r--r--files/nftables/ipv4-filter7
1 files changed, 7 insertions, 0 deletions
diff --git a/files/nftables/ipv4-filter b/files/nftables/ipv4-filter
new file mode 100644
index 00000000..3f962143
--- /dev/null
+++ b/files/nftables/ipv4-filter
@@ -0,0 +1,7 @@
+#! nft -f
+
+table filter {
+ chain input { hook NF_INET_LOCAL_IN 0; }
+ chain forward { hook NF_INET_FORWARD 0; }
+ chain output { hook NF_INET_LOCAL_OUT 0; }
+}