]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - config/cfgroot/ids-functions.pl
ids-functions.pl: Add RED address and aliases to the HOME_NET
[ipfire-2.x.git] / config / cfgroot / ids-functions.pl
index 114d5763db0246cb735038088d21f09fb5ee29f0..a7c1585228bad394e927a32525e6ff612786fc3f 100644 (file)
@@ -597,9 +597,6 @@ sub generate_home_net_file() {
 
        # Loop through the array of available network zones.
        foreach my $zone (@network_zones) {
-               # Skip the red network - It never can be part to the home_net!
-               next if($zone eq "red");
-
                # Convert current zone name into upper case.
                $zone = uc($zone);
 
@@ -622,6 +619,24 @@ sub generate_home_net_file() {
                        # Add the generated network to the array of networks.
                        push(@networks, $network);
                }
+
+               # Check if the current processed zone is red.
+               if($zone eq "RED") {
+                       # Check if the configured RED_TYPE is static.
+                       if ($netsettings{'RED_TYPE'} eq "STATIC") {
+                               # Get configured and enabled aliases.
+                               my @aliases = &get_aliases();
+
+                               # Loop through the array.
+                               foreach my $alias (@aliases) {
+                                       # Add "/32" prefix.
+                                       my $network = join("/", $alias, "32");
+
+                                       # Add the generated network to the array of networks.
+                                       push(@networks, $network);
+                               }
+                       }
+               }
        }
 
        # Format home net declaration.