add netmasks starting from /8 to local netmask list

This commit is contained in:
Wolfgang Bumiller 2016-06-03 11:09:22 +02:00 committed by Dietmar Maurer
parent e43faad9ff
commit 19e609fd33

View File

@ -56,6 +56,14 @@ our $ipv4_reverse_mask = [
];
our $ipv4_mask_hash_localnet = {
'255.0.0.0' => 8,
'255.128.0.0' => 9,
'255.192.0.0' => 10,
'255.224.0.0' => 11,
'255.240.0.0' => 12,
'255.248.0.0' => 13,
'255.252.0.0' => 14,
'255.254.0.0' => 15,
'255.255.0.0' => 16,
'255.255.128.0' => 17,
'255.255.192.0' => 18,