CentOS定时更新GeoIP

脚本:

#!/bin/bash
if [ ! -d /usr/local/share/GeoIP ];then
    mkdir /usr/local/share/GeoIP
fi

wget -t 5 -O /tmp/GeoIP.dat.gz http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
wget -t 5 -O /tmp/GeoLiteCity.dat.gz http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz

gzip -df /tmp/GeoIP.dat.gz
gzip -df /tmp/GeoLiteCity.dat.gz

mv -f /tmp/Geo*.dat /usr/local/share/GeoIP/

添加到定时任务便可。

原创博客,转载请标明出处:http://www.geekapp.cn/archives/574.html
上一篇
下一篇