ubuntu 20.04 设置DNS

ubuntu 20.04 设置DNS

  • ubuntu 20.04 设置DNS 快捷步骤
  • 下面是命令解释
    • 1、决定系统dns的文件是/etc/resolv.conf
    • 2、谁能最终影响/etc/resolv.conf,就是/etc/systemd/resolved.conf
    • 3、/etc/resolv.conf软链接到/run/systemd/resolve/resolv.conf

ubuntu 20.04 设置DNS 快捷步骤

修改 /etc/systemd/resolved.conf 文件,在其中添加dns;
sudo vi /etc/systemd/resolved.conf;
加入一个新行
DNS=114.114.114.114 8.8.8.8 8.8.4.4;
systemctl restart systemd-resolved.service;
sudo mv /etc/resolv.conf /etc/resolv.conf.bak;
sudo ln -s /run/systemd/resolve/resolv.conf /etc/;

下面是命令解释

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

1、决定系统dns的文件是/etc/resolv.conf

改变此文件就可以设置DNS。
此文件改了也没用,受其他影响,重启服务后还是会丢配置。
ubuntu 20.04 设置DNS_第1张图片

2、谁能最终影响/etc/resolv.conf,就是/etc/systemd/resolved.conf

找到系统中动态变化的影响DNS的文件,/etc/resolv.conf软链接到此文件即可。
这个文件就是/run/systemd/resolve/resolv.conf。

/run/systemd/resolve/resolv.conf的内容随/etc/systemd/resolved.conf改变而改变,像是link。
因此需要改变/etc/systemd/resolved.conf的内容,写入dns
vi /etc/systemd/resolved.conf
DNS=114.114.114.114 8.8.8.8 8.8.4.4
ubuntu 20.04 设置DNS_第2张图片
重启systemd-resolved.service
systemctl restart systemd-resolved.service
cat /run/systemd/resolve/resolv.conf 和/etc/systemd/resolved.conf保持一致
ubuntu 20.04 设置DNS_第3张图片

3、/etc/resolv.conf软链接到/run/systemd/resolve/resolv.conf

原来是软链接到这个文件,这个文件不影响系统DNS,所以不起作用。
ubuntu 20.04 设置DNS_第4张图片
cat /run/systemd/resolve/stub-resolv.conf
ubuntu 20.04 设置DNS_第5张图片
做完软链接后,查看/etc/resolv.conf 已经改变。
cat /etc/resolv.conf
ubuntu 20.04 设置DNS_第6张图片

你可能感兴趣的:(EVE-NG学习笔记,linux,ubuntu,linux,服务器)