in reply to Re^4: Display all IPs in given range
in thread Display all IPs in given range

The problem is on the provious line, which is better written as :
my $ip = NetAddr::IP::->new ('10.0.0.0/30'); ($ip and ref($ip)) or die "ERROR: Could not create IP object.";

        ...it is unhealthy to remain near things that are in the process of blowing up.     man page for WARP, by Larry Wall

Replies are listed 'Best First'.
Re^6: Display all IPs in given range
by Noosrep (Novice) on Oct 19, 2016 at 11:36 UTC
    That did the trick!