解决GitHub网页githubusercontent地址无法访问问题
作者:互联网
不知道什么时候开始,GitHub里面的图片也无法加载出来,本来页面也加载缓慢,这下更是雪上加霜,好在还是有简单的方式加速GitHub的访问。
通过设置hosts
就是一个低成本的方案, GitHub里面图片都在githubusercontent.com
域名下,我们只需要在hosts
里绑定域名和对应的IP。
1. hosts内容
hosts
文件内容如下:
# 2020年12月30日更新
# GitHub Start
52.74.223.119 github.com
52.74.223.119 gist.github.com
54.169.195.247 api.github.com
185.199.111.153 assets-cdn.github.com
199.232.96.133 raw.githubusercontent.com
199.232.96.133 gist.githubusercontent.com
199.232.96.133 cloud.githubusercontent.com
199.232.96.133 camo.githubusercontent.com
199.232.96.133 avatars0.githubusercontent.com
199.232.96.133 avatars1.githubusercontent.com
199.232.96.133 avatars2.githubusercontent.com
199.232.96.133 avatars3.githubusercontent.com
199.232.96.133 avatars4.githubusercontent.com
199.232.96.133 avatars5.githubusercontent.com
199.232.96.133 avatars6.githubusercontent.com
199.232.96.133 avatars7.githubusercontent.com
199.232.96.133 avatars8.githubusercontent.com
199.232.96.133 user-images.githubusercontent.com
185.199.109.154 github.githubassets.com
# GitHub End
如果发现没有作用,或者速度不理想,参考查找IP更新下对应的IP地址。
2. 如何修改 hosts
2.1 Windows
hosts
文件位置:C:/windows/system32/drivers/etc/hosts
。
将前文内容追加到hosts,然后刷新DNS缓存:ipconfig /flushdns
2.2 macOS
hosts
文件位置:/etc/hosts
。
macOS系统下修改需要按照如下方式:
- 首先,打开(访达)Finder。
- 使用组合键
Shift+Command+G
打开"前往文件夹",输入框中输入/etc/hosts
。 - 然后就会跳转到
hosts
文件位置。
复制hosts
文件到桌面上,鼠标右键右击它,选择「打开方式」—「文本编辑」,打开这个hosts
文件,然后将你要修改的内容直接在里面修改就好了。
然后把你修改好的hosts
文件替换掉:/etc/hosts
文件。
注意:如果弹出密码输入框,你需要输入你当前电脑登录账号的密码。
最后刷新缓存:sudo killall -HUP mDNSResponder
3. 查找IP
http://tool.chinaz.com/dns
https://site.ip138.com
https://www.ipaddress.com
注:2020年12月30日我实际使用
IPAddress
才可以生效,前面两个查询站点获取的IP均无法使用,各位可以都尝试下直到生效。
前面hosts
里面域名里分为两类: http://githubusercontent.com -- http://github.com
*.githubusercontent.com
可以使用同一个IP,不需要每个单独查询。*.github.com
未经测试,目前看是需要单独查询对应的IP。
标签:githubusercontent,GitHub,无法访问,96.133,github,hosts,199.232,com 来源: https://www.cnblogs.com/iathanasy/p/14296286.html