From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 2/3] proxy.cgi: Support running proxy without GREEN Date: Thu, 05 Aug 2021 13:28:31 +0000 Message-ID: <20210805132832.7645-2-michael.tremer@ipfire.org> In-Reply-To: <20210805132832.7645-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0964815932559558549==" List-Id: --===============0964815932559558549== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- html/cgi-bin/proxy.cgi | 62 ++++++++++++++++++++++++++++-------------- 1 file changed, 42 insertions(+), 20 deletions(-) diff --git a/html/cgi-bin/proxy.cgi b/html/cgi-bin/proxy.cgi index 1b949d5b6..b973a8ff7 100644 --- a/html/cgi-bin/proxy.cgi +++ b/html/cgi-bin/proxy.cgi @@ -166,7 +166,11 @@ my $HAVE_NTLM_AUTH =3D (-e "/usr/bin/ntlm_auth"); &General::readhash("${General::swroot}/ethernet/settings", \%netsettings); &General::readhash("${General::swroot}/main/settings", \%mainsettings); =20 -my $green_cidr =3D &General::ipcidr("$netsettings{'GREEN_NETADDRESS'}\/$nets= ettings{'GREEN_NETMASK'}"); +my $green_cidr =3D ""; +if (&Header::green_used() && $netsettings{'GREEN_DEV'}) { + $green_cidr =3D &General::ipcidr("$netsettings{'GREEN_NETADDRESS'}\/$netset= tings{'GREEN_NETMASK'}"); +} + my $blue_cidr =3D ""; if (&Header::blue_used() && $netsettings{'BLUE_DEV'}) { $blue_cidr =3D &General::ipcidr("$netsettings{'BLUE_NETADDRESS'}\/$netsetti= ngs{'BLUE_NETMASK'}"); @@ -1191,9 +1195,11 @@ END =20 if (!$proxysettings{'SRC_SUBNETS'}) { - print "$green_cidr\n"; - if ($netsettings{'BLUE_DEV'}) - { + if (&Header::green_used()) { + print "$green_cidr\n"; + } + + if (&Header::blue_used()) { print "$blue_cidr\n"; } } else { print $proxysettings{'SRC_SUBNETS'}; } @@ -1798,8 +1804,11 @@ print <${General::swroot}/proxy/cachemgr.conf"); flock(FILE, 2); - print FILE "$netsettings{'GREEN_ADDRESS'}:$proxysettings{'PROXY_PORT'}\n"; + if (&Header::green_used()) { + print FILE "$netsettings{'GREEN_ADDRESS'}:$proxysettings{'PROXY_PORT'}\n"; + } print FILE "localhost"; close(FILE); return; --=20 2.20.1 --===============0964815932559558549==--