From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] configroot: Add in LOGDROPHOSTILExxx values Date: Mon, 08 Apr 2024 18:57:21 +0200 Message-ID: <20240408165721.3503506-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8702816736969486652==" List-Id: --===============8702816736969486652== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - I checked out doing a fresh install of CU184 and found that although the LOGDROPHOSTILEIN and LOGDROPHOSTILEOUT entries were selected as "on" the v= alues were not in the /var/ipfire/optionsfw/settings file. - After some investigfation I realised that when I created the LOGDROPHOSTILE= split into incoming and outgoing I had not added them into the configroot lfs file. - This patch adds the two entries and this was tested out with a fresh instal= l and confirmed to update the settings file. Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- lfs/configroot | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lfs/configroot b/lfs/configroot index 66efe04b5..9f6c1ff8c 100644 --- a/lfs/configroot +++ b/lfs/configroot @@ -1,7 +1,7 @@ ############################################################################= ### # = # # IPFire.org - A linux based firewall = # -# Copyright (C) 2007-2023 IPFire Team = # +# Copyright (C) 2007-2024 IPFire Team = # # = # # This program is free software: you can redistribute it and/or modify = # # it under the terms of the GNU General Public License as published by = # @@ -133,6 +133,8 @@ $(TARGET) : echo "DROPWIRELESSFORWARD=3Don" >> $(CONFIG_ROOT)/optionsfw/settings echo "DROPSPOOFEDMARTIAN=3Don" >> $(CONFIG_ROOT)/optionsfw/settings echo "DROPHOSTILE=3Don" >> $(CONFIG_ROOT)/optionsfw/settings + echo "LOGDROPHOSTILEIN=3Don" >> $(CONFIG_ROOT)/optionsfw/settings + echo "LOGDROPHOSTILEOUT=3Don" >> $(CONFIG_ROOT)/optionsfw/settings echo "LOGDROPCTINVALID=3Don" >> $(CONFIG_ROOT)/optionsfw/settings echo "POLICY=3DMODE2" >> $(CONFIG_ROOT)/firewall/settings echo "POLICY1=3DMODE2" >> $(CONFIG_ROOT)/firewall/settings --=20 2.44.0 --===============8702816736969486652==--