我的示例代码是
import dnspython as dns
import dns.resolver
result = dns.resolver.query('google.com', 'A')
for ipval in result:
print('IP', ipval.to_text())
这给了我错误dns.resolver.NoResolverConfiguration: Resolver configuration could not be read or specified no nameservers.
/etc/resolv.conf包含";1.1.1.1";没有其他内容,网络计划名称服务器也设置为1.1.1.1。
机器正在ubuntu 20.04上运行python 3.8.5。
为什么它会给我这个错误,我该如何解决它?
想明白了!
巨大的手掌。我忘记在/etc/resolv.conf 上放置名称服务器1.1.1.1,而不是1.1.1.1
因此,配置确实是错误的。