Netplan 配置名称服务错误

Netplan 配置名称服务错误

我正在使用 Ubuntu 18.04。设置我的工作电脑以连接到网络和域。

我一直在努力从使用 /etc/network/interfaces 切换到 Netplan

我已经创建了 yaml 文件并运行

netplan generate
netplan apply

最终没有任何错误。我检查了位于 /run/systemd/network 的接口配置文件,它与正确的详细信息匹配。

我已经屏蔽了网络管理器和网络,因为我读到这些可能会妨碍使用网络。

网络运行良好,我可以连接到互联网和内部服务器,并 ping / nslookup 其他服务器。我的问题是,5-10 分钟后,我无法再使用名称 ping 其他服务器或 nslookup 其他内部机器,只能使用 IP。名称服务似乎失败了。

然后我跑

netplan apply

它又修好了!发生了什么事?有人知道永久修复此问题的方法吗?我相信我的 yaml 文件没问题,但也许是其他东西妨碍了或导致了问题?我确实认为可能是网络管理器,所以我屏蔽了它。

我只有一个 yaml 文件位于 /etc/netplan/01-network-card.yaml,它的格式是:

network:
    version: 2
    renderer: networkd
    ethernets:
        eno1:
            dhcp4: false
            addresses: [ip.add.xx.xx/20]
            gateway4: xxx.xxx.xxx.x
            nameservers:
                search: [redacted.local]
                addresses: [xxx.xxx.xxx.xxx]
                addresses: [8.8.8.8]
        enp14s0:
            dhcp4: false 
            addresses: [xxx.xxx.xxx.xx/24]
            gateway4: xxx.xxx.xxx.x

对此有什么想法吗?Netplan 很麻烦。此外,连接 enp14s0 是我们网络的管理员连接。我正在尝试配置 eno1。

谢谢

编辑:感谢评论者的帮助。添加额外信息:

ls -al /etc/resolv.conf

lrwxrwxrwx 1 root root 39 May 24 16:48 /etc/resolv.conf -> ../run/systemd/resolve/stub-resolv.conf

cat /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 "systemd-resolve --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 redacted.local

需要注意的是,名称服务器 127.0.0.53 不是我输入到 netplan 文件中的名称服务器 - 不确定它来自哪里?imaginariumuk cat /etc/network/interfaces

# interfaces(5) file used by ifup(8) and ifdown(8)
#auto lo
#iface lo inet loopback

#auto eno1
#allow-hotplug eno1
#iface eno1 inet dhcp

尝试切换到 netplan 后,将以上所有内容注释掉。

systemd-resolve --status 前后结果。

Global
          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 3 (eno1)
      Current Scopes: DNS
       LLMNR setting: yes
MulticastDNS setting: no
      DNSSEC setting: no
    DNSSEC supported: no
         DNS Servers: serverfromnetplan.240
                      8.8.8.8
          DNS Domain: redacted.local

Link 2 (enp14s0)
      Current Scopes: none
       LLMNR setting: yes

相关内容