From f442e82886902d166e30e44e51ec20163d770824 Mon Sep 17 00:00:00 2001 From: teastep Date: Fri, 11 May 2007 15:31:23 +0000 Subject: [PATCH] Correct definition of RFC1918 networks git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6326 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall-perl/Shorewall/Common.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall-perl/Shorewall/Common.pm b/Shorewall-perl/Shorewall/Common.pm index 23d60a168..72f7eeb52 100644 --- a/Shorewall-perl/Shorewall/Common.pm +++ b/Shorewall-perl/Shorewall/Common.pm @@ -71,7 +71,7 @@ our @allipv4 = ( '0.0.0.0/0' ); use constant { ALLIPv4 => '0.0.0.0/0' }; -our @rfc1918_networks = ( "10.0.0.0/24", "172.16.0.0/12", "192.168.0.0/16" ); +our @rfc1918_networks = ( "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16" ); our $line = ''; # Current config file line