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.
|
|
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:
|
|||||||
|
|
you can ask google to do it for you. there are also services that you can pay for you want: |
|||
|
|
|
Here is a free IP Address to Country database. |
|||
|
|
|
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. |
|||
|
|
|
ip2cc - Lookup country and Russia region by IP address Python module with script to create database from up-to-date official data. This
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 |
|||
|
|