我正在尝试配置使用网桥的 Ubuntu 18.04 服务器网络,因为它还充当 KVM 主机。不幸的是,当网桥配置生效时,我似乎无法让 DNS 工作。以下是当前形式的文件:
# ifupdown has been replaced by netplan(5) on this system. See
# /etc/netplan for current configuration.
# To re-enable ifupdown on this system, you can run:
# sudo apt install ifupdown
#
#
auto lo
iface lo inet loopback
# Section 1
#auto enp30s0
#iface enp30s0 inet static
# address 10.1.0.236
# netmask 255.248.0.0
# gateway 10.0.0.1
# dns-nameservers 10.1.0.2
# Section 2
# The primary network interface
auto enp30s0
iface enp30s0 inet manual
dns-nameservers 10.1.0.2
auto kvmbr0
iface kvmbr0 inet static
address 10.1.0.236
netmask 255.248.0.0
gateway 10.0.0.1
bridge_ports enp30s0
bridge_stp off
bridge_fd 0
bridge_maxwait 0
如果我注释掉第 2 节并取消注释第 1 节,服务器似乎可以正常工作。但是,无论我如何尝试,似乎都无法让 dns 与第 2 节一起工作,将 dns-nameservers 行移动到 enp30s0 或 kvmbr0 节(或两者)。
值得注意的是,我已经运行了sudo apt install ifupdown
。