]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
Firewall: When using custom hosts and not having BLUE or ORANGE, the Ruletable took...
authorAlexander Marx <alexander.marx@ipfire.org>
Tue, 6 May 2014 10:40:05 +0000 (12:40 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 6 May 2014 11:21:32 +0000 (13:21 +0200)
With this commit the page is shown quickly because there's now a check
if ORANGE or BLUE exist before we test if a host might be in that
subnet.

html/cgi-bin/firewall.cgi

index 48e3a8d2a6efe78855d02f8d8c38df6509e32927..cf94c8f8bccccefe6692c56b5af0aa8530f9e237 100644 (file)
@@ -1334,7 +1334,7 @@ sub getcolor
                        return;
                }elsif($val =~ /^(.*?)\/(.*?)$/){
                        my ($sip,$scidr) = split ("/",$val);
-                       if ( &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
+                       if ( &Header::orange_used() && &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
                                $tdcolor="style='background-color: $Header::colourorange;color:white;'";
                                return;
                        }
@@ -1342,7 +1342,7 @@ sub getcolor
                                $tdcolor="style='background-color: $Header::colourgreen;color:white;'";
                                return;
                        }
-                       if ( &General::IpInSubnet($sip,$netsettings{'BLUE_ADDRESS'},$netsettings{'BLUE_NETMASK'})){
+                       if ( &Header::blue_used() && &General::IpInSubnet($sip,$netsettings{'BLUE_ADDRESS'},$netsettings{'BLUE_NETMASK'})){
                                $tdcolor="style='background-color: $Header::colourblue;color:white;'";
                                return;
                        }