Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would i determine the country that a spcific IP address is originating from using c#. I need to use this to check if connections originate from a specific country.

share|improve this question
I need the data to be available offline since it will be used for stats. Because of this will i will be using the sql option – RC1140 Aug 13 '09 at 5:10

5 Answers

up vote 14 down vote accepted

You can use this SQL data in your project to determine that: IP address geolocation SQL database. Download that data and import it into your database to run checks locally.

Or you can use their free API that returns XML containing the country code and country name. You'd make a request to the following URL with the IP address you wanted to check, as seen in this example:

http://ipinfodb.com/ip_query_country.php?ip=74.125.45.100

Returns:

<Response>
<Ip>74.125.45.100</Ip>
<Status>OK</Status>
<CountryCode>US</CountryCode>
<CountryName>United States</CountryName>
</Response>
share|improve this answer
Please note that the IP assignments change occasionally. So remember to update your database occasionally. (The frequency of updates you need depends on what you're doing; for simple stats you may decide that annual updates are OK). – user9876 Feb 10 '10 at 14:34
1  
This has now changed: you have to register now (free) to be able to use their API. See here: ipinfodb.com/ip_location_api.php – Shaul Apr 27 '11 at 11:52

you can ask google to do it for you.

there are also services that you can pay for you want:

share|improve this answer

Here is a free IP Address to Country database.

share|improve this answer

If you don't want to use an API like perhaps hostip.info, then I'd suggest subscribing to maxmind and running a host lookup database locally.

share|improve this answer

ip2cc - Lookup country and Russia region by IP address Python module with script to create database from up-to-date official data.

This Python utility loads (as frequently as you like) up-to-date information from Regional Internet Registry sites (arin, ripencc, apnic, lacnic, afrinic), as shown in the source:

url_template = 'ftp://ftp.ripe.net/pub/stats/%s/delegated-%s-latest'
sources = {}
for name in ('arin', 'ripencc', 'apnic', 'lacnic', 'afrinic'):
    sources[name] = url_template % (name, name)

Once the data is loaded, queries can be answered offline and very quickly. Can be easily modified to directly answer the original question, or used from the command line to return the country an IP address belongs to.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.