Advertisement
hobbyboy

GeoIP Update

Aug 3rd, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.22 KB | None | 0 0
  1. #!/bin/bash
  2. curl http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz |gunzip > /usr/share/GeoIP/GeoIP.dat.new && mv /usr/share/GeoIP/GeoIP.dat.new /usr/share/GeoIP/GeoIP.dat && \
  3. curl http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz |gunzip > /usr/share/GeoIP/GeoIPv6.dat.new && mv /usr/share/GeoIP/GeoIPv6.dat.new /usr/share/GeoIP/GeoIPv6.dat && \
  4. curl http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz |gunzip > /usr/share/GeoIP/GeoLiteCity.dat.new && mv /usr/share/GeoIP/GeoLiteCity.dat.new /usr/share/GeoIP/GeoLiteCity.dat && \
  5. curl http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz |gunzip > /usr/share/GeoIP/GeoLiteCityv6.dat.new && mv /usr/share/GeoIP/GeoLiteCityv6.dat.new /usr/share/GeoIP/GeoLiteCityv6.dat && \
  6. curl http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz |gunzip > /usr/share/GeoIP/GeoIPASNum.dat.new && mv /usr/share/GeoIP/GeoIPASNum.dat.new /usr/share/GeoIP/GeoIPASNum.dat && \
  7. curl http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz |gunzip > /usr/share/GeoIP/GeoIPASNumv6.dat.new && mv /usr/share/GeoIP/GeoIPASNumv6.dat.new /usr/share/GeoIP/GeoIPASNumv6.dat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement