I have downloaded ip-to-country.csv that has ip ranges that are mapped to countries. How should I store this data to database and how can I query in what range Ip address is to know where Ip address is coming from?
|
feedback
|
|
I wrote a small lib called ip2c to do just that. it uses the database from webhosting.info but also supports that from Software77. it converts the CSV info a compact binary format and can do the search straight on the file ,in memory or in a memory mapped file. The Java API usage is similar to this:
| |||||||||||
feedback
|
|
Have a look to the IP-to-Country Handbook
You can import this data into any database by creating a table with the following fields:
You can query the above table, after you have imported the data into it, to find the country of a corresponding IP Number by issuing the following Select statement:
where IP Number of a given A.B.C.D IP, is calculated by :
| ||||
|
feedback
|
|
I think you can find some geolocation solution from IP2Location.com. I have downloaded the sample database and PHP & ASP.Net source code from the Website and follow tutorial at here to implement into my websites, it's working for recording my visitor log, show where's my visitor came from, and redirect my webs visitor to correct language site. | |||
feedback
|
|
For IPv4 you can store in the following format:
When you need to look up the IP address execute the following query
This will give you the country for the IP address | ||||
|
feedback
|
|
You can build index only for ipTo (high boundary) values of ranges and use query:
(it's assumed that ranges do not overlap as in MaxMind database) | |||
|
feedback
|