网上搜了很多提高国内github的访问速度的方法,亲测以下方法有效
一、打开http://IPAddress.com网站,查询下面3个网址对应的IP地址
github.com
assets-cdn.github.com
github.global.ssl.fastly.net
查询出每一个IP后,测试 ping看那个IP稳定速度快,做下记录
windows下
用管理员权限打开编辑软件编辑C:\Windows\System32\drivers\etc\hosts
ubuntu sudo gedit /etc/hosts
添加或者修改内容如下
140.82.113.4 github.com
185.199.111.153 assets-cdn.github.com
199.232.69.194 github.global.ssl.fastly.net
存盘即可
刷新dns
windows ipconfig /flushdns
现在很多Linux发行版都没有内置DNS本地缓存,Linux不像Windows那样可以使用ipconfig /flushdns来刷新,在Linux下无需刷新,因为本身没有缓存;
当然,如果非要缓存刷新,可以安装nscd,然后刷新这个守护进程。
Ubuntu:
apt-get install -y nscd
CentOS:
yum install -y nscd
使用:
service nscd restart