From 654ef09ea0a6c6c56ebc3c31251ebe74c5dbf2eb Mon Sep 17 00:00:00 2001 From: Thomas Chevalier Date: Thu, 19 May 2022 11:10:09 +0200 Subject: [PATCH] Remove admin_if because of a bug in switchs.nft --- config/networks/switchs.nft | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/networks/switchs.nft b/config/networks/switchs.nft index 7fd9bfa..5938a93 100644 --- a/config/networks/switchs.nft +++ b/config/networks/switchs.nft @@ -1,12 +1,12 @@ table inet firewall { chain to_switchs { - meta iif $admin_if accept + # meta iif $admin_if accept drop } chain from_switchs { - meta oif $admin_if accept + # meta oif $admin_if accept drop }