From a9a67b42550a083388e9ed5d24033e008cce437d Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Wed, 2 Feb 2022 09:40:20 +0100 Subject: [PATCH] firewall: default pass all loopback without state tracking; closes #5367 Idea by @kulikov-a. While arguably not addressing the issue with unbound-control directly but we can't wait for upstream to do this. --- src/etc/inc/filter.lib.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/filter.lib.inc b/src/etc/inc/filter.lib.inc index 720b3e030..781a2189e 100644 --- a/src/etc/inc/filter.lib.inc +++ b/src/etc/inc/filter.lib.inc @@ -528,7 +528,7 @@ function filter_core_rules_system($fw, $defaults) } } // loopback - $fw->registerFilterRule(5, array('interface' => 'lo0', 'descr' => 'pass loopback'), $defaults['pass']); + $fw->registerFilterRule(5, array('interface' => 'lo0', 'descr' => 'pass loopback', 'statetype' => 'none'), $defaults['pass']); // out from this Firewall $fw->registerFilterRule( 5,