Use MaxMind Geo data service or API keys to make the Walter.Web.IFireWall
interface geographically aware allowing you to block requests for certain countries
and enables you to render a different result based on the region or country the request came from.
The Package adds functionality to...
More information
Determine the country, region, city, latitude, and longitude associated with IP addresses worldwide. Uses the MaxMind GeoIP or GeoLite City or GeoLite Country (free) database which needs to be downloaded separately from http://www.maxmind.com/app/geolite
Allows the geolocation feature in Kentico 11 projects to work with MaxMind's GeoLite2 or GeoIP2 Databases.
Requires hotfix 11.0.27 to be applied to the Kentico project.
A Helper module to simplify using the free MaxMind GeoIP database using the MaxMind API and caching the files from the CDN of MaxMind
Simple demo:
var ip = "213.140.15.199";
var city = FreeGeoIP2.FindCityOrDefault(ip);
var country = FreeGeoIP2.FindCountryOrDefault(ip);
var asn =...
More information