summaryrefslogtreecommitdiffstats
path: root/files/nftables
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-07-06 06:17:01 +0200
committerPatrick McHardy <kaber@trash.net>2010-07-06 06:17:01 +0200
commit30bc05a957755d0bcbd8fd8135211fddef6fbb0d (patch)
treedfd0f3fc5bb7a659b2d1e231a1bac50e17e8e852 /files/nftables
parentc7a1fe7d00d042de44c63570f7be207bf231cb57 (diff)
add bridge filter table definitions
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'files/nftables')
-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; }
+}