解决 centos7 虚拟机 github 访问太慢的问题
作者:互联网
原因
git clone特别慢是因为github.global.ssl.fastly.net域名被限制了。
只要找到这个域名对应的ip地址,然后在hosts文件中加上ip–>域名的映射,刷新DNS缓存便可。
解决方法
1. 在网站 https://www.ipaddress.com/ 分别搜索:
github.global.ssl.fastly.net
github.com
得到ip:
2. 修改hosts文件:vim /etc/hosts
在hosts文件末尾添加两行(对应上面查到的ip)
199.232.69.194 github.global-ssl.fastly.net
140.82.112.4 github.com
3. 保存更新DNS
/etc/init.d/network restart
4. 完成 再试一下git clone
转载自:https://blog.csdn.net/u013277209/article/details/108344344
标签:github,ip,虚拟机,global,centos7,hosts,fastly,net 来源: https://www.cnblogs.com/FengZeng666/p/16381557.html