User Tools

Site Tools


blog:maxmind_geoip_on_debian_lenny

Maxmind geoip on debian lenny

Mapping ips to a country is often interesing. To enable this in Debian lenny:

aptitude install geoip-bin

To update the ip database daily, create a small script and make a symlink to it in /etc/cron.daily

#!/bin/sh                                                                                      
wget -q http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz -O - |gunzip > /usr/share/GeoIP/GeoIP.dat.new && mv /usr/share/GeoIP/GeoIP.dat.new /usr/share/GeoIP/GeoIP.dat                                                                                                  

You can then look from which country an ip is with geoiplookup 1.2.3.4

See also the nice use of this in awstats!

Ref:

~~LINKBACK~~

Discussion

Enter your comment. Wiki syntax is allowed:
   ___   _      __ ______     __     __
  / _ \ | | /| / //_  __/ __ / / __ / /
 / , _/ | |/ |/ /  / /   / // / / // / 
/_/|_|  |__/|__/  /_/    \___/  \___/
 
blog/maxmind_geoip_on_debian_lenny.txt · Last modified: 2010-10-24 12:39 by brb