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