1、首先安装 resolvconf 如果未安装
sudo apt update
sudo apt install resolvconf
2、检查已启动并启用的解析服务
sudo systemctl status resolvconf.service
3、如果未启用服务,则可以通过以下方式启动和启用它:
sudo systemctl start resolvconf.service
sudo systemctl enable resolvconf.service
4、现在编辑 resolv.conf.d/head 配置文件
sudo nano /etc/resolvconf/resolv.conf.d/head
5、将您的 DNS 地址添加到此文件中,例如我使用(223.5.5.5 和 223.6.6.6)
nameserver 223.5.5.5
nameserver 223.6.6.6
6、现在强制 resolvevconf 在使用 -u 调用时运行更新脚本
sudo resolvconf --enable-updates
7、现在运行更新
sudo resolvconf -u
8、修改 /etc/resolv.conf 文件链接
rm -rf /etc/resolv.conf
ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf
9、现在,如果您检查,则必须在此文件中查看您的DNS配置,如果不尝试这些命令并再次检查
cat /etc/resolv.conf
sudo systemctl restart resolvconf.service
sudo systemctl restart systemd-resolved.service
文章来源地址https://www.toymoban.com/news/detail-672105.html文章来源:https://www.toymoban.com/news/detail-672105.html
到了这里,关于Ubuntu 服务器通过 resolvconf 管理配置系统默认DNS解析服务器配置文件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!