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.