python - Ubuntu 20.04 "Temporary failure in name resolution"- 最近重新安装

标签 python linux ubuntu discord

我从 contabo 租了一个 vps 大约半年了,直到现在它都运行良好,因为它开始产生“名称解析暂时失败”错误。我读到这是一个 DNS 错误,我试过 nameserver 8.8.8.8nameserver 1.1.1.1但问题仍然存在。

同样昨天我完全重新安装了vps,但它没有工作。
/etc/resolv.conf :

# This file is managed by man:systemd-resolved(8). Do not edit.
#
# This is a dynamic resolv.conf file for connecting local clients to the
# internal DNS stub resolver of systemd-resolved. This file lists all
# configured search domains.
#
# Run "resolvectl status" to see details about the uplink DNS servers
# currently in use.
#
# Third party programs must not access this file directly, but only through the
# symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a different way,
# replace this symlink by a static file or a different symlink.
#
# See man:systemd-resolved.service(8) for details about the supported modes of
# operation for /etc/resolv.conf.

nameserver 127.0.0.53
options edns0
search invalid
resolvectl地位:
Global
       LLMNR setting: no                  
MulticastDNS setting: no                  
  DNSOverTLS setting: no                  
      DNSSEC setting: no                  
    DNSSEC supported: no                  
          DNSSEC NTA: 10.in-addr.arpa     
                      16.172.in-addr.arpa 
                      168.192.in-addr.arpa
                      17.172.in-addr.arpa 
                      18.172.in-addr.arpa 
                      19.172.in-addr.arpa 
                      20.172.in-addr.arpa 
                      21.172.in-addr.arpa 
                      22.172.in-addr.arpa 
                      23.172.in-addr.arpa 
                      24.172.in-addr.arpa 
                      25.172.in-addr.arpa 
                      26.172.in-addr.arpa 
                      27.172.in-addr.arpa 
                      28.172.in-addr.arpa 
                      29.172.in-addr.arpa 
                      30.172.in-addr.arpa 
                      31.172.in-addr.arpa 
                      corp                
                      d.f.ip6.arpa        
                      home                
                      internal            
                      intranet            
                      lan                 
                      local               
                      private             
                      test                

Link 2 (eth0)
      Current Scopes: DNS          
DefaultRoute setting: yes          
       LLMNR setting: yes          
MulticastDNS setting: no           
  DNSOverTLS setting: no           
      DNSSEC setting: no           
    DNSSEC supported: no           
  Current DNS Server: 213.136.95.11
         DNS Servers: 213.136.95.10
                      213.136.95.11
          DNS Domain: invalid 

我有一个不和谐的机器人,通常问题出在那儿。

最佳答案

我会尝试编辑 中的 DNS IP/etc/netplan/01-netcfg.yaml 适用于 Ubuntu 17.10 及更高版本的 Contabo VPS。
/etc/netplan/01-netcfg.yaml

network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      match:
        macaddress: REDACTED
      addresses:
        - REDACTED
        #- REDACTED
      #gateway6: fe80::1
      routes:
        - to: 0.0.0.0/0
          via: REDACTED
          on-link: true
      nameservers:
        search: [ invalid ]
        addresses:
          - 1.1.1.1
          - 8.8.8.8
          #- 213.136.95.10
          #- 213.136.95.11
          #- 2a02:c207::1:53
          #- 2a02:c207::2:53
https://contabo.com/blog/configuring-additional-ip-addresses/

关于python - Ubuntu 20.04 "Temporary failure in name resolution"- 最近重新安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61948115/

相关文章:

python - 如何修复 Berkeley DB 文件中不正确的 XML 标签

ubuntu - 在 Ubuntu 12.04 中下载谷歌代码

windows - Bash)是否可以在不转义或单引号的情况下传递带有特殊字符的参数?

python - Windows 上 Python 中的 Wordcloud

python - Scapy 在使用多线程时无法嗅探数据包

php - 尝试安装 Composer 时出现 SSL 证书错误

c - 从/proc/[pid]/pagemap 获取物理地址失败

c++ - recv() 失败 : Bad file descriptor c++ Linux

ubuntu - 如何在Ubuntu上配置测试成功后才重启nginx?

python - 最大递归,GCD(最大公约数)