Hi,

I solved this problem in my previous company in Java. I will present the idea here but leave the implementation to you.

A IPv4 address is just a collection of four octets and can be represented by a 32 bit integer. Just convert the start and end address of the ip range to a 32 bit integer representation. Convert the Ipv4 address to be checked also into a 32 bit number and if the number falls between the start and end numbers, it is in the range. If the address check is called lots of times for a particular range, a integer comparison will be faster than a string comparison.

For example,
Start IP = 1.2.3.4 = 0x01020304 = 1057540 (decimal)
End IP = 12.6.255.255 = 0x0C06FFFF = 201785343 (decimal)
Target IP = 128.1.0.3 = 0x80010003 = 2147549187 (decimal)
2147549187 is not between 1057540 and 201785343 - so target ip is not in range.

Mahesh


In reply to Re: IP in range by smahesh
in thread IP in range by rhymejerky

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.