mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-07 21:25:12 +02:00
9 lines
278 B
Bash
Executable File
9 lines
278 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -f GeoIPv6.csv{,.gz} GeoIPCountryCSV.zip GeoIPCountryWhois.csv;
|
|
wget \
|
|
http://geolite.maxmind.com/download/geoip/database/GeoIPv6.csv.gz \
|
|
http://geolite.maxmind.com/download/geoip/database/GeoIPCountryCSV.zip;
|
|
gzip -d GeoIPv6.csv.gz;
|
|
unzip GeoIPCountryCSV.zip;
|