There might be a CPAN module to do this, but in case there
isn't:
#!/usr/bin/perl -w
use strict;
use Socket;
sub MaskbitsToNetmask
{
my ($bits) = @_;
return 0xFFFFFFFF-((1<<(32-$bits))-1);
}
sub MaskToRange
{
my ($range) = @_;
my ($ip,$mask) = split (/\//, $range);
$ip = CompactIP($ip);
return ($ip, $ip | (1<<(32-$mask) - 1));
}
sub ExpandIP ($)
{
return inet_ntoa (pack ("N", @_));
}
sub CompactIP ($)
{
return unpack ("N", inet_aton (@_));
}
sub IsInRange
{
my ($ip, $range) = @_;
$ip = CompactIP($ip);
my ($range_low, $range_hi) = MaskToRange ($range);
return (($range_low <= $ip) && ($ip <= $range_hi));
}
Here's some examples:
print IsInRange ("192.168.2.42","192.168.0.0/16"),"\n"; # 1
print IsInRange ("192.168.2.42","192.168.0.0/24"),"\n"; # undef
print IsInRange ("192.168.2.42","192.168.2.0/24"),"\n"; # 1
print IsInRange ("24.123.234.1","24.0.0.0/8"),"\n"; # 1
Of course, this is just off the top, so YMMV.
Some notes:
- The numbers are converted to flat integers instead of the
"dotted quad" notation used conventionally. This way, they
can be compared numerically.
- The "netmask" generation routine could be optimized, even
to the point of Perl Golf. This one contains the essentials.
- You must specify your entire network. Normally, you can
get away with '24/8', but inet_ntoa gives you grief if you
do that, interpreting it as '0.0.0.24' instead of '24.0.0.0'.
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.