Github配置DNS

声明:这种方法仅仅适用于能够访问github网站只不过是访问速度慢这一现象.

配置操纵

映射文件存放于(Windons系统): C:\Windows\System32\drivers\etc\hosts

Github配置DNS_第1张图片

以管理员身份运行命令行(目的是为了修改hosts文件中的内容),在命令行中依次输入以下代码。

cd drivers\etc
notepad hosts

将下列配置信息黏贴到hosts文件的最后面。

# GitHub related website
    140.82.112.4        github.com
    199.232.69.194         github.global.ssl.fastly.net
    140.82.113.4         gist.github.com
    185.199.108.154        help.github.com
    185.199.108.154        docs.github.com
    185.199.109.153        desktop.github.com
    34.201.80.84        vscode-auth.github.com
    140.82.113.21        education.github.com
    140.82.114.17        status.github.com
# GitHub related website
Github配置DNS_第2张图片

完成上述步骤后,Ctrl+S保存。输入 ipconfig /flushdns,刷新DNS解析缓存。

ipconfig /flushdns
Github配置DNS_第3张图片

输入ping github.com,丢包率较低,在浏览器中访问github网址,速度明显提升。

ping github.com
Github配置DNS_第4张图片

参考博客

https://blog.csdn.net/zjy1175044232/article/details/121655760

你可能感兴趣的:(github)