Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

SOLVED Re: finding netmask for "arbitrary" ip address

by jasonl (Acolyte)
on Dec 07, 2011 at 16:35 UTC ( [id://942278]=note: print w/replies, xml ) Need Help??


in reply to finding netmask for "arbitrary" ip address

Here's what I ended up doing; it does require Socket.pm, but from what I've seen so far that looks pretty standard. It uses inet_aton to convert ip, net, and mask to structs, &s them to compare, then returns the mask when it finds a hit.

use Socket; sub findMask { my ($ip, $nets) = @_; my ($net, $mask) = (); foreach my $i (@$nets) { ($net, $mask) = split(m[/], $i); my $netBin = inet_aton($net); my $maskBin = inet_aton($mask); my $maskedNet = ($netBin & $maskBin); if (((inet_aton($ip)) & $maskBin) eq $maskedNet) { return "$mask"; } } ## no match return -1; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://942278]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-24 22:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found