Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to store in MySQL network CIDRs and later check if an IP address match with one or some entries, something like:

IP UNSIGNED INT
MASK UNSIGNED INT
DESCRIPTION VARCHAR(32)

But, maybe, use binary is better to calculate if an IP address match with a saved network.

And some data:

192.168.0.0/16  (local network)
192.168.1.0/24  (servers network)
192.168.2.0/24  (home network)
10.123.123.0/30  (vpn backbone)

I'll want to search if the ip 192.168.2.34 is in any network (192.168.2.0/24 and 192.168.0.0/16).

Which is the better way to store the data and query for it using mysql queries?

Thank you.

share|improve this question
1  
How does the data get into this database? Related question: How are you converting back and forth between real IP addresses and an unsigned INT? – Mike Pennington Jan 3 '12 at 0:45
You'd need 4 ints (or 2 bigints) to store an ipv6 address - they're 128bit. int is only 32bit and bigint is 64bit. This blog should be of some use: finnie.org/2007/12/05/mysql-and-cidr-selection – Marc B Jan 3 '12 at 2:47
1  
To convert a IPv4 into UNSIGNED INT: SELECT INET_ATON(3232235530); reverse: SELECT INET_ATON('192.168.0.10'); dev.mysql.com/doc/refman/5.0/en/…. – xkill Jan 3 '12 at 9:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.