in reply to IP addresses
See the perldoc for Net::Netmask to see how the network block may be specified. You'll find that it accepts the most intuitive methods.use strict; use warnings; use Net::Netmask; my $spec = ...; my $block = Net::Netmask->new2($spec) or die "bad spec"; my $base = $block->base; my $bcast = $block->broadcast; my @ip = $block->enumerate; for (@ip) { next if @ip > 1 and $_ eq $base; next if @ip > 1 and $_ eq $bcast; ... }
-><- -><- -><- -><- -><-
All things are Perfect
To every last Flaw
And bound in accord
With Eris's Law
- HBT; The Book of Advice, 1:7
|
|---|