Ubuntu 使用默认的 DNS Server 配置


Tips

Ubuntu 使用 /etc/resolv.conf 中设置的地址为 DNS Server 地址

# 关闭 systemd-resolved 服务
sudo systemctl disable systemd-resolved
sudo systemctl stop systemd-resolved

/etc/NetworkManager/NetworkManager.conf 文件的 [main] 部分添加配置

dns=default

删除原来的软链接文件

sudo unlink /etc/resolv.conf

重启 NetworkManager

sudo systemctl restart NetworkManager

参考链接

2022年04月20日 / 02:07