in reply to ip address list

By the way, you might find the hostenum method useful.

my $net = NetAddr::IP->new('10.2.9.0/29'); my $seen_gateway; for my $ip ($net->hostenum) { next if !$gateway++; print $ip->addr, "\n"; }

Update: Oops, you wanted to skip the first address.

my $net = NetAddr::IP->new('10.2.9.0/29'); my @hosts = $net->hostenum; for my $ip (@hosts[1..$#hosts]) { print $ip->addr, "\n"; }

Replies are listed 'Best First'.
Re^2: ip address list
by mlebel (Hermit) on Jan 20, 2012 at 12:59 UTC
    Hi ikegami, that's definitely another valid way of doing it, thank you for your input!