Subnets aren't really that complicated if you convert them to integers. I haven't really tested this code a lot but it should work for any contiguous netmask and valid subnet/netmask combination. You may want to add some error-checking for that.
use Socket;
sub next_subnet {
my ($network, $subnet) = @_;
my $inet = unpack('N', inet_aton($network));
my $mask = unpack('N', inet_aton($netmask));
my $ones = unpack('N', inet_aton('255.255.255.255'));
my $size = ($ones ^ $mask) + 1;
my $next = $inet + $size;
return inet_ntoa(pack('N', $next));
}
You may find this handy too:
sub prefix_to_mask {
my ($bits) = @_;
return inet_ntoa(pack('N', (2**32) - (2**(32-$bits))));
}
Converting from netmask to prefix length is left as an exercise :-)
Edit: I almost forgot, you have to use Socket; for inet_aton/inet_ntoa.
--
Time flies when you don't know what you're doing
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.