我的目标是在客户端配置 DNS 服务器。
我按照以下指南进行操作:https ://help.ubuntu.com/lts/serverguide/network-configuration.html#name-resolution 。
我的/etc/network/interfaces
看起来与指南中的示例完全不同。
当我cat /etc/network/interfaces
,我得到:
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
没有别的......
我做了以下事情,它解决了我的问题:
/etc/network/interfaces
,包括以下几行:dns-nameservers 192.168.1.2
dns-search example.com
sudo ifconfig enp4s0 down && sudo ip addr flush dev enp4s0 && sudo ifconfig enp4s0 up
cat /etc/resolv.conf
名称服务器和搜索域应该存在。