我有一堆 DNS 地址想要添加到我的 Windows 7 安装中。由于我收到的DNS server is not responding
消息太频繁了(即使是使用 Google 的 DNS),我认为有了一个详尽的 DNS 列表,至少我没有什么可责怪的了。问题是,Windows 的过时界面是通过一次添加一个来添加的
连接属性 > 网络 > Internet 协议版本 4 > 高级 > DNS
非常繁琐,并且该列表可能对添加到我使用的其他机器也很有用。
有没有更好的方法来添加 DNS 记录,或者有没有我可以编辑以粘贴列表的地方?
答案1
您可以使用netsh
它来设置网络连接的 DNS 设置。例如:
netsh interface ip add dns name="Local Area Connection" addr=8.8.8.8
netsh interface ip add dns name="Local Area Connection" addr=8.8.4.4 index=2
这会将8.8.8.8
您设置为主要 DNS 服务和8.8.4.4
辅助服务器。您可以根据需要添加任意数量的服务,index
每次调用时只需增加即可。