单个网卡上的多个 IP 地址删除了 dns-* 选项

单个网卡上的多个 IP 地址删除了 dns-* 选项

我需要在我的 Ubuntu 服务器 16.04 上的单个网卡上设置 2 或 3 个本地 IP 地址(在带有英特尔 pro/1000 mt 网卡的虚拟机上)。目前我有以下地址:

auto enp0s3
iface enp0s3 inet static
        name            WAN
        address         10.0.2.10/24
        gateway         10.0.2.1
        broadcast       10.0.2.255
        dns-search      ubuntu.local
        dns-nameserver  127.0.0.1
        dns-nameserver  8.8.8.8

#iface enp0s3 inet static
#        name            LAN_1
#        address         10.0.2.11/24

并且/etc/resolv.conf包含:

nameserver 127.0.0.1
nameserver 8.8.8.8
search ubuntu.local

一切正常(主机可 ping 通且可访问)。但当我取消注释这三行并重新加载时,网络/etc/resolv.conf是空的。根据它应该可以工作。我做错了什么?

相关内容