依旧在维护的GEO IP旧数据格式DAT
目录
依旧在维护的GEO IP旧数据格式DAT,dat格式的GEO IP数据库。2024年依旧在维护, why: 因为 Nginx、Piwik2 和 ModSecurity2。 要使用 GeoIP2,必须从源代码构建 Nginx。所以依旧在维护旧格式dat GEO IP:https://www.miyuru.lk/geoiplegacy
一、安装GEO IP程序和数据库
1 |
apt install geoip-bin geoip-database |
二、目前依旧在更新维护的dat旧格式GEO IP数据库网站
1 |
https://www.miyuru.lk/geoiplegacy |
三、更新GEO IP旧格式dat数据库到最新
1 2 3 4 |
cd /usr/share/GeoIP/ wget https://dl.miyuru.lk/geoip/dbip/country/dbip4.dat.gz wget https://dl.miyuru.lk/geoip/dbip/country/dbip6.dat.gz rm -rf GeoIP.dat && rm -rf GeoIPv6.dat && gzip -d dbip4.dat.gz && gzip -d dbip6.dat.gz && mv dbip4.dat GeoIP.dat && mv dbip6.dat GeoIPv6.dat |
四、配合fail2ban和nginx可以实现按国别封锁
1 2 |
geoiplookup 8.8.8.8 # GeoIP Country Edition: US, United States |