Package: asused Version: 3.72-7 In perl module /usr/share/perl5/ipv4pack.pm is error in function normalizerange. Function try if IPv4 address range starts with 10 or 127 and then returns error that is a private range. But the same regexp match ip address from range 100.0.0.0 to 109.255.255.255 which are not private ranges. I'm attaching patch which replaces regexp with normal condition and function will work fine.
diff old/ipv4pack.pm new/ipv4pack.pm 274c274 < return ("", $O_PRIVATERANGE) if ($1 =~ /^10|127$/); --- > return ("", $O_PRIVATERANGE) if ($1 eq "10" || $1 eq "127"); 341,342d340 < < -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org