私の/etc/resolv.conf
ショー
# Generated by NetworkManager
search [value provided by local network]
nameserver 127.0.1.1
nameserver
の値は、ローカルネットワーク(nm-appletを使用して確認)によって提供される値ではなく、search
の値です。dns=dnsmasqd
から/etc/NetworkManager/NetworkManager.conf
を削除しました。 dnsmasq-base
のみがインストールされています。
VPNによってresolv.conf
を更新する必要があるため、DNSを永続的に設定したくないので、
no prepend domain-name servers
in /etc/dhcp/dhclient.conf
no dns-nameservers
in /etc/network/interfaces
no /etc/resolvconf/resolv.conf.d/
base
head
tail
ファイル。resolv.conf
は、Automatic (DHCP)
を使用してnm-appletにDNSを設定しても同じままです。Automatic (DHCP) addresses only
を設定すると、search
の値はありませんが、nameserver 127.0.1.1
はresolv.conf
のままです。
編集:さらに確認しました。 /etc/NetworkManager/dnsmasq.d
は空です。
$ cat /usr/lib/NetworkManager/conf.d/10-dns-resolved.conf
[main]
dns=systemd-resolved
/etc/systemd/resolved.conf
はすべてコメント化されています。
$ systemd-resolve --status
Global
DNS Servers: 127.0.1.1
DNS Domain: [same as resolv.conf]
Nm-appletからのDNS値がsystemd-resolve
をオーバーライドするように設定するにはどうすればよいですか?.
最終的には、最初にresolv.conf
のDNSを優先サーバーに設定してから、VPN(nm-appletのOpenVPN)に接続すると、resolv.conf
の値がVPNによって提供されます。
そこに着くまでに時間がかかりました...
Resolv.confで設定する内容がすでにわかっている場合は、お好みのエディターで/etc/systemd/resolved.conf
に設定を書き込むことができます。
Sudo nano /etc/systemd/resolved.conf
DNSおよびdomainsのコメントを外し、IPと検索ドメインを入力して(空白で区切って)systemd-resolvを再起動するか、ホストを再起動します。
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See resolved.conf(5) for details
[Resolve]
DNS=<IP> <IP>
#FallbackDNS=
Domains=<domain> <domain>
#LLMNR=yes
#MulticastDNS=yes
#DNSSEC=no
#Cache=yes
#DNSStubListener=udp
NetworkManagerはDNSを変更できるはずです。テストするVPNがありませんが、有線接続でNMを使用してネームサーバーを追加できました。