如何在 Ubuntu 20.04 上永久更改 DNS 服务器?

如何在 Ubuntu 20.04 上永久更改 DNS 服务器?

我知道其他 帖子在这里问这个问题,但这些建议没有帮助,配置一直在变化,我根本无法让我自己的改变持续下去。

我在 GUI 中的网络管理器配置中拥有 Google8.8.8.8和服务器,并且8.8.4.4

systemd-resolv --status返回

Link 2 (enp38s0f1)
      Current Scopes: DNS    
DefaultRoute setting: yes    
       LLMNR setting: yes    
MulticastDNS setting: no     
  DNSOverTLS setting: no     
      DNSSEC setting: no     
    DNSSEC supported: no     
  Current DNS Server: 8.8.8.8
         DNS Servers: 8.8.8.8
                      8.8.4.4
          DNS Domain: ~.   

dig google.com尽管如此,

;; Query time: 0 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Mon Oct 05 11:08:26 EDT 2020
;; MSG SIZE  rcvd: 83

因此我的默认路由192.168.1.1DNS。此外,/etc/resolv.conf是 的符号链接/run/systemd/resolve/resolv.conf,其内容为

# Generated by dhcpcd from enp38s0f1.dhcp, wlp0s20f3.dhcp
# /etc/resolv.conf.head can replace this line
domain fios-router.home
nameserver 192.168.1.1
# /etc/resolv.conf.tail can replace this line

该系统上唯一的enp38s0f1.dhcp文件(我搜索过的/)是/run/dhcpcd/resolv.conf/enp38s0f1.dhcp,内容如下

# Generated by dhcpcd from enp38s0f1.dhcp
domain fios-router.home
search fios-router.home
nameserver 192.168.1.1

我曾尝试在其中写入其他名称服务器,但它们不会持久。过去,我曾通过使用 使文件不可变来使更改持久化chattr +i,但

lsattr /run/dhcpcd/resolv.conf/enp38s0f1.dhcp

返回

lsattr: Inappropriate ioctl for device While reading flags on /run/dhcpcd/resolv.conf/enp38s0f1.dhcp

因此该属性在这里不可用。此外,我无论如何都不必将文件设为不可变:我应该有某种方法可以控制 DNS 服务器。


编辑:

回应以下评论:

$ dpkg -l *dnsmasq*
---
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name             Version         Architecture Description
+++-================-===============-============-============================================
un  dnsmasq          <none>          <none>       (no description available)
ii  dnsmasq-base     2.80-1.1ubuntu1 amd64        Small caching DNS proxy and DHCP/TFTP server
un  dnsmasq-base-lua <none>          <none>       (no description available)

答案1

如果您当前的 DNS 服务器仍然是您的路由器(即 192.168.1.1),尽管您已经在 /etc/netplan/[network-mager].yaml 中或通过 NetworkManager 的 GUI 声明了所需的名称服务器,但至少有两种解决方案可以尝试:

  1. 您可以使用已经提到的 GUI 配置这些设置:

    a) 选择一个连接(从有线或无线选项卡中),然后单击编辑。b) 单击 IPv4 设置选项卡 c) 选择“仅自动(DHCP)地址”而不是仅“自动(DHCP)”。d) 在“DNS 服务器”字段中输入 DNS 服务器,以空格分隔(例如 OpenDNS 为 208.67.222.222)。e) 单击“应用”。

请注意,“仅自动(DHCP)地址”意味着您连接的网络使用 DHCP 服务器分配 IP 地址,但您想要手动分配 DNS 服务器。

  1. 或者,如果你的 DNS 设置被多个程序更新而弄乱了,你可以使用 resolvconf:
sudo apt install resolvconf 
sudo systemctl enable --now resolvconf.service

然后,编辑 /etc/resolvconf/resolv.conf.d/head 并插入您想要的名称服务器:

nameserver 8.8.8.8 
nameserver 8.8.4.4

最后,要更新 /etc/resolv.conf,请运行:

sudo resolvconf -u

答案2

我相信我知道如何解决这个问题。dhcpcd有一个--nohook标志,指示它保留配置的某些部分。从我的dhcpcd(8) 手册页

-C, --nohook script
    Don't run this hook script. Matches full name, or prefixed with 2 numbers optionally ending with .sh.

    So to stop dhcpcd from touching your DNS settings you would do:-
    dhcpcd -C resolv.conf eth0 

所以我改变了我的/lib/systemd/system/dhcpcd.service,改变了路线

ExecStart=/usr/sbin/dhcpcd

ExecStart=/usr/sbin/dhcpcd -C /etc/resolv.conf

此后,名称服务器8.8.8.88.8.4.4将在/etc/resolv.conf重启后继续存在。

相关内容