From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo-Andres Hofmann To: development@lists.ipfire.org Subject: [PATCH v2 5/6] zoneconf.cgi: Import network-functions.pl Date: Thu, 18 Feb 2021 15:30:15 +0100 Message-ID: <20210218143016.972-5-hofmann@leo-andres.de> In-Reply-To: <20210218143016.972-1-hofmann@leo-andres.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3540273664885563703==" List-Id: --===============3540273664885563703== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Remove custom functions and use network-functions.pl instead to detect the available zones correctly. This also removes the requirement that a device must be assigned for a zone to become visible/configurable. Fixes: #12568 Signed-off-by: Leo-Andres Hofmann --- html/cgi-bin/zoneconf.cgi | 37 ++++++++----------------------------- 1 file changed, 8 insertions(+), 29 deletions(-) diff --git a/html/cgi-bin/zoneconf.cgi b/html/cgi-bin/zoneconf.cgi index eb6cd0e66..9d01d06ce 100644 --- a/html/cgi-bin/zoneconf.cgi +++ b/html/cgi-bin/zoneconf.cgi @@ -25,6 +25,7 @@ use Scalar::Util qw(looks_like_number); require '/var/ipfire/general-functions.pl'; require "${General::swroot}/lang.pl"; require "${General::swroot}/header.pl"; +require "${General::swroot}/network-functions.pl"; =20 ###--- HTML HEAD ---### my $extraHead =3D <$uc ($red_type)\n"; =20 next; # We're done here @@ -436,12 +421,9 @@ foreach (@nics) { my $uc =3D uc $_; my $highlight =3D ""; =20 - # If the zone is not activated, don't show it - next unless is_zone_activated($_); - if ($uc eq "RED") { # VLANs/Bridging is not possible if the RED interface is set to PPP, PPPo= E, VDSL, ... - unless (is_zonetype_ip($ethsettings{"RED_TYPE"})) { + unless (Network::is_red_mode_ip()) { my $checked =3D ""; =20 if ($mac eq $ethsettings{"${uc}_MACADDR"}) { @@ -519,12 +501,9 @@ my @stp_html =3D (); # form fields buffer (two rows) foreach (@zones) { # load settings and prepare form elements for each zone my $uc =3D uc $_; =20 - # skip if zone is not activated - next unless is_zone_activated($_); - # STP is not available if the RED interface is set to PPP, PPPoE, VDSL, ... if ($uc eq "RED") { - unless (is_zonetype_ip($ethsettings{"RED_TYPE"})) { + unless (Network::is_red_mode_ip()) { push(@stp_html, ["\t\t\n", "\t\t\n"]); # print empty ce= ll next; } --=20 2.27.0.windows.1 --===============3540273664885563703==--