Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to determine if an IP address belongs to a country

Tags:

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.

like image 690
RC1140 Avatar asked Aug 13 '09 04:08

RC1140


1 Answers

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> 
like image 69
Ron Avatar answered Sep 30 '22 19:09

Ron