diff --git a/html/cgi-bin/connections.cgi b/html/cgi-bin/connections.cgi
index 2b9858595..fbd7fcd7c 100644
--- a/html/cgi-bin/connections.cgi
+++ b/html/cgi-bin/connections.cgi
@@ -32,6 +32,8 @@ require '/var/ipfire/general-functions.pl';
require "${General::swroot}/lang.pl";
require "${General::swroot}/header.pl";
+my $colour_multicast = "#A0A0A0";
+
&Header::showhttpheaders();
my @network=();
@@ -147,6 +149,11 @@ if ($netsettings{'ORANGE_DEV'}) {
}
}
+# Highlight multicast connections.
+push(@network, "224.0.0.0");
+push(@masklen, "239.0.0.0");
+push(@colour, $colour_multicast);
+
# Add OpenVPN net and RED/BLUE/ORANGE entry (when appropriate)
if (-e "${General::swroot}/ovpn/settings") {
my %ovpnsettings = ();
@@ -243,6 +250,9 @@ print <
$Lang::tr{'OpenVPN'}
+ |
+ Multicast
+ |