zu1k / nali

An offline tool for querying IP geographic information and CDN provider. 一个查询IP地理信息和CDN服务提供商的离线终端工具.
https://github.com/zu1k/nali
MIT License
3.75k stars 340 forks source link

新增使用代理下载IP数据库 #126

Closed jingjingxyk closed 2 years ago

jingjingxyk commented 2 years ago

因以下原因,下载IP数据库总是失败:

  1. cdn.jsdelivr.net 已被屏蔽,不能正常访问。
  2. raw.githubusercontent.com 间歇性不能访问

为了解决上述问题,新增此次修改

测试例子


export http_proxy=http://127.0.0.1:1080
export https_proxy=http://127.0.0.1:1080

test -d ~/.nali/ && rm -rf  ~/.nali/

go run main.go update 

另外一个解决办法就是,使用镜像地址

比如: cdn.jsdelivr.net 更换为 fastly.jsdelivr.net

zu1k commented 2 years ago

感谢