Domain name resolution: Difference between revisions

From ArchWiki
m (Larivact moved page Resolv.conf to Domain name resolution: move as discussed in Talk:Domain name resolution#Rewrite)
m (→‎Check if you can resolve domain names: rm #Glibc resolver link from Note as the section doesn't describe the issue)
(72 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Lowercase title}}
[[Category:Domain Name System]]
[[Category:Domain Name System]]
[[Category:Network configuration]]
[[Category:Network configuration]]
Line 9: Line 8:
[[zh-hans:Resolv.conf]]
[[zh-hans:Resolv.conf]]
{{Related articles start}}
{{Related articles start}}
{{Related|Improving performance#Network}}
{{Related|Alternative DNS services}}
{{Related|Network configuration}}
{{Related articles end}}
{{Related articles end}}
{{Move|Domain name resolution|Article should describe nsswitch.conf {{ic|hosts}}, /etc/hosts, resolv.conf, caching DNS servers and utilities like dig & drill.|section=Rewrite}}
This article explains how to configure [[Wikipedia:Domain name|domain name]] resolution and resolve domain names.


The configuration file for DNS resolvers is {{ic|/etc/resolv.conf}}. From {{man|5|resolv.conf}}:
== Name Service Switch ==
:The resolver is a set of routines in the GNU C library ({{Pkg|glibc}}) that provide access to the Domain Name System. The resolver configuration file contains information that is read by the resolver routines the first time they are invoked by a process. The file is designed to be human readable and contains a list of keywords with values that provide various types of resolver information.
:''"NSS" redirects here. For Mozilla cryptographic libraries, see [[Network Security Services]].''


:If this file does not exist, only the name server on the local machine will be queried; the domain name is determined from the hostname and the domain search path is constructed from the domain name.
The [[Wikipedia:Name Service Switch|Name Service Switch]] (NSS) facility is part of the GNU C Library ({{Pkg|glibc}}) and backs the {{man|3|getaddrinfo}} API, used to resolve domain names. NSS allows system databases to be provided by separate services, whose search order can be configured by the administrator in {{man|5|nsswitch.conf}}. The database responsible for domain name resolution is the {{ic|hosts}} database, for which glibc offers the following services:


To use [[#Alternative DNS servers]], edit {{ic|/etc/resolv.conf}} and add them at the top of the list so they are used first, optionally removing or commenting out other servers. Currently, you may include a maximum of three nameservers.  
* {{ic|file}}: reads the {{ic|/etc/hosts}} file, see {{man|5|hosts}}
* {{ic|dns}}: the [[#Glibc resolver|glibc resolver]] which reads {{ic|/etc/resolv.conf}}, see {{man|5|resolv.conf}}


{{Note|Changes made to {{ic|/etc/resolv.conf}} take effect immediately.}}
[[Systemd]] provides three NSS services for hostname resolution:


{{Tip|If you require more flexibility, e.g. more than three nameservers, you can use a local DNS resolver like [[dnsmasq]] or [[unbound]]. In this case the nameserver IP address will likely be {{ic|127.0.0.1}}.}}
* {{man|8|nss-resolve}} - a caching DNS stub resolver, described in [[#Systemd-resolved]]
* {{man|8|nss-myhostname}} - provides hostname resolution without having to edit {{ic|/etc/hosts}}, described in [[Network configuration#Local hostname resolution]]
* {{man|8|nss-mymachines}} - provides hostname resolution for the names of local {{man|8|systemd-machined}} containers


== DNS in Linux ==
=== Check if you can resolve domain names ===


ISPs usually provide working [[wikipedia:Domain_Name_System|DNS]] servers. A router may also add an extra DNS server in case it has its own cache server. Switching between DNS servers is transparent for Windows users, because if a DNS server is slow or does not work it will immediately switch to a better one. However, Linux usually takes longer to timeout, which could be the reason why you are getting a delay.
NSS databases can be queried with {{man|1|getent}}. You can resolve a domain name through NSS using:


=== Testing ===
$ getent hosts ''domain_name''


Use ''drill'' (provided by package {{Pkg|ldns}}) before any changes, repeat after making the adjustments and compare the query time(s). The following command uses the nameservers set in {{ic|/etc/resolv.conf}}:
{{Note|While most programs resolve domain names using NSS, some may read {{ic|resolv.conf}} and/or {{ic|/etc/hosts}} directly. See [[Network configuration#Local hostname resolution]].}}
$ drill www.archlinux.org


You can also specify a specific nameserver's ip address, bypassing the settings in your {{ic|/etc/resolv.conf}}:
== Glibc resolver ==


$ drill @''ip.of.name.server'' www.archlinux.org
The glibc [[wikipedia:Domain_Name_System|DNS]] resolver reads {{ic|/etc/resolv.conf}} ({{man|5|resolv.conf}}) for every resolution to determine the nameservers and options to use.


For example to test Google's name servers:
Nameservers listed first are tried first, up to three nameservers may be listed. Lines starting with a number sign are ignored.


$ drill @8.8.8.8 www.archlinux.org
{{Note|The glibc resolver does not cache queries. See [[#Performance]] for more information.}}


To test a local name server (such as [[unbound]]) do:
=== Overwriting of resolv.conf ===


$ drill @127.0.0.1 www.archlinux.org
[[Network manager]]s tend to overwrite {{ic|resolv.conf}}, for specifics see the corresponding section:


== Preserve DNS settings ==
* [[dhcpcd#resolv.conf]]
* [[netctl#resolv.conf]]
* [[NetworkManager#resolv.conf]]


[[dhcpcd]], [[netctl]], [[NetworkManager]], and various other processes can overwrite {{ic|/etc/resolv.conf}}. This is usually desirable behavior, but sometimes DNS settings need to be set manually (e.g. when using a static IP address). There are several ways to accomplish this.  
To prevent programs from overwriting {{ic|resolv.conf}} you can also write-protect it by setting the immutable [[file attribute]].


*If you are using ''dhcpcd'', see [[#Modify the dhcpcd config]] below.
{{Tip|If you want multiple processes to write to {{ic|resolv.conf}}, you can use [[openresolv]].}}
*If you are using [[netctl]] and static IP address assignment, do not use the {{ic|DNS*}} options in your profile, otherwise ''resolvconf'' is called and {{ic|/etc/resolv.conf}} overwritten.
 
=== Systemd-resolved configuration ===
 
{{man|8|systemd-resolved}} is a [[systemd]] service that provides network name resolution to local applications.
''systemd-resolved'' has [https://jlk.fjfi.cvut.cz/arch/manpages/man/systemd-resolved.8#/ETC/RESOLV.CONF four different modes for handling ''resolv.conf'']. We will focus here on the two most relevant modes.
 
# The mode in which ''systemd-resolved'' is a client of the {{ic|/etc/resolv.conf}}. This mode preserves {{ic|/etc/resolv.conf}} and is '''compatible''' with the procedures described in this page.
# The ''systemd-resolved'''s '''recommended''' mode of operation: the DNS stub file as indicated below contains both the local stub {{ic|127.0.0.53}} as the only DNS servers and a list of search domains.
 
{{hc|/run/systemd/resolve/stub-resolv.conf|
nameserver 127.0.0.53
search lan
}}
 
The service users are advised to redirect the {{ic|/etc/resolv.conf}} file to the local stub DNS resolver file {{ic|/run/systemd/resolve/stub-resolv.conf}} managed by ''systemd-resolved''. This propagates the systemd managed configuration to all the clients. This can be done by deleting or renaming the existing {{ic|/etc/resolv.conf}} and replacing it by a symbolic link to the systemd stub:
 
# ln -s /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
 
In this mode, the DNS servers are provided in the {{man|5|resolved.conf}} file:
 
{{hc|/etc/systemd/resolved.conf|2=
[Resolve]
'''DNS=91.239.100.100 89.233.43.71'''
...
}}
 
In order to check the DNS actually used by ''systemd-resolved'', the command to use is:
 
$ systemd-resolve --status
 
{{Tip|
* To understand the context around the DNS choices and switches, one can turn on detailed debug information for ''systemd-resolved'' as described in [[Systemd#Diagnosing a service]].
* The mode of operation of ''systemd-resolved'' is detected automatically, depending on whether {{ic|/etc/resolv.conf}} is a symlink to the local stub DNS resolver file or contains server names.
}}
 
=== Prevent NetworkManager modifications ===
 
{{Move|NetworkManager#Prevent overwriting of resolv.conf|NetworkManager configuration belongs to the [[NetworkManager]] article.|section=Rewrite}}
 
To stop ''NetworkManager'' from modifying {{ic|/etc/resolv.conf}}, edit {{ic|/etc/NetworkManager/NetworkManager.conf}} and add the following in the {{ic|[main]}} section:
 
dns=none
 
{{ic|/etc/resolv.conf}} might be a broken symlink that you will need to remove after doing that. Then, just create a new {{ic|/etc/resolv.conf}} file.
 
''NetworkManager'' also offers hooks via so called dispatcher scripts that can be used to alter the {{ic|/etc/resolv.conf}} after network changes. See [[NetworkManager#Network services with NetworkManager dispatcher]] and {{man|8|NetworkManager}} for more information.
 
=== Openresolv ===
 
{{Pkg|openresolv}} provides a utility ''resolvconf'', which is a framework for managing multiple DNS configurations. See {{man|8|resolvconf}} and {{man|5|resolvconf.conf}} for more information.
 
The configuration is done in {{ic|/etc/resolvconf.conf}} and running {{ic|resolvconf -u}} will generate {{ic|/etc/resolv.conf}}.
 
Note that ''NetworkManager'' can be configured to use ''openresolv'', see [[NetworkManager#Configure NetworkManager resolv.conf management mode to use resolvconf]].
 
=== Modify the dhcpcd config ===
 
{{Move|dhcpcd#Prevent overwriting of resolv.conf|dhcpcd configuration belongs to the [[dhcpcd]] article.|section=Rewrite}}
 
''dhcpcd'''s configuration file may be edited to prevent the ''dhcpcd'' daemon from overwriting {{ic|/etc/resolv.conf}}. To do this, add the following to the last section of {{ic|/etc/dhcpcd.conf}}:
 
nohook resolv.conf
 
Alternatively, you can create a file called {{ic|/etc/resolv.conf.head}} containing your DNS servers. ''dhcpcd'' will prepend this file to the beginning of {{ic|/etc/resolv.conf}}.
 
Or you can configure dhcpcd to use the same DNS servers every time. To do this, add the following line at the end of your {{ic|/etc/dhcpcd.conf}}, where {{ic|''dns-server-ip-addressses''}} is a space separated list of DNS IP addresses.
 
static domain_name_servers=''dns-server-ip-addresses''
 
For example, to set it to Google's DNS servers:
 
static domain_name_servers=8.8.8.8 8.8.4.4
 
=== Write-protect resolv.conf ===
 
Another way to protect your {{ic|/etc/resolv.conf}} from being modified by anything is setting the immutable (write-protection) attribute:
 
# chattr +i /etc/resolv.conf
 
== Tips and tricks ==


=== Limit lookup time ===
=== Limit lookup time ===
Line 153: Line 76:
That way you can refer to local hosts such as {{ic|mainmachine1.example.com}} as simply {{ic|mainmachine1}} when using the ''ssh'' command, but the ''drill'' command still requires the fully qualified domain names in order to perform lookups.
That way you can refer to local hosts such as {{ic|mainmachine1.example.com}} as simply {{ic|mainmachine1}} when using the ''ssh'' command, but the ''drill'' command still requires the fully qualified domain names in order to perform lookups.


== Alternative DNS servers ==
== Systemd-resolved ==
{{Move|Public DNS servers|While a list of public DNS servers is relevant to DNS configuration it's a different topic.|section=Rewrite}}


=== Cisco Umbrella (formerly OpenDNS) ===
{{man|8|systemd-resolved}} is a [[systemd]] service that provides network name resolution to local applications via a [[D-Bus]] interface, the {{ic|resolve}} NSS service ({{man|8|nss-resolve}}), and a local DNS stub listener on {{ic|127.0.0.53}}.


[https://www.opendns.com/home-internet-security/ OpenDNS] provided free alternative nameservers, was [https://umbrella.cisco.com/products/features/opendns-cisco-umbrella bought by Cisco in Nov. 2016] and continues to offer OpenDNS as end-user product of its "Umbrella" product suite with focus on Security Enforcement, Security Intelligence and Web Filtering.
''systemd-resolved'' has four different modes for handling the [[#Glibc resolver|glibc resolver]]'s ''resolv.conf'' (described in {{man|8|systemd-resolved|/ETC/RESOLV.CONF}}). We will focus here on the two most relevant modes.
The old nameservers [https://www.opendns.com/setupguide/ still work] but are [https://www.opendns.com/home-internet-security/ pre-configured to block adult content]:


IPv4 nameservers
# The mode in which ''systemd-resolved'' is a client of the {{ic|/etc/resolv.conf}}. This mode preserves {{ic|/etc/resolv.conf}} and is '''compatible''' with the procedures described in this page.
208.67.222.222
# The ''systemd-resolved'''s '''recommended''' mode of operation: the DNS stub file as indicated below contains both the local stub {{ic|127.0.0.53}} as the only DNS servers and a list of search domains.
208.67.220.220


IPv6 nameservers
{{hc|/run/systemd/resolve/stub-resolv.conf|
2620:0:ccc::2
nameserver 127.0.0.53
2620:0:ccd::2
search lan
}}


=== Cloudflare ===
The service users are advised to redirect the {{ic|/etc/resolv.conf}} file to the local stub DNS resolver file {{ic|/run/systemd/resolve/stub-resolv.conf}} managed by ''systemd-resolved''. This propagates the systemd managed configuration to all the clients. This can be done by deleting or renaming the existing {{ic|/etc/resolv.conf}} and replacing it by a symbolic link to the systemd stub:


[https://1.1.1.1/ Cloudflare] provides a service committed to never writing the querying IP addresses to disk and wiping all logs within 24 hours, with the exception of providing data to APNIC labs for research purposes. APNIC and Cloudfare committed to treat all data with high privacy standards in their [https://labs.apnic.net/?p=1127 research agreement statement].
# ln -s /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf


IPv4 nameservers:  
In this mode, the DNS servers are provided in the {{man|5|resolved.conf}} file:
1.1.1.1
1.0.0.1


IPv6 nameservers:
{{hc|/etc/systemd/resolved.conf|2=
  2606:4700:4700::1111
  [Resolve]
2606:4700:4700::1001
'''DNS=91.239.100.100 89.233.43.71'''
...
}}


=== Comodo ===
In order to check the DNS actually used by ''systemd-resolved'', the command to use is:


[http://securedns.dnsbycomodo.com/ Comodo] provides another IPv4 set, with optional (non-free) web-filtering. Implied in this feature is that the service hijacks the queries.
$ systemd-resolve --status


8.26.56.26
{{Tip|
8.20.247.20
* To understand the context around the DNS choices and switches, one can turn on detailed debug information for ''systemd-resolved'' as described in [[Systemd#Diagnosing a service]].
 
* The mode of operation of ''systemd-resolved'' is detected automatically, depending on whether {{ic|/etc/resolv.conf}} is a symlink to the local stub DNS resolver file or contains server names.
=== DNS.WATCH ===
 
[https://dns.watch/ DNS.WATCH] focuses on neutrality and security and provides two servers located in Germany with no logging and with DNSSEC enabled. Note they welcome commercial sponsorship.
 
84.200.69.80    # resolver1.dns.watch
84.200.70.40    # resolver2.dns.watch
 
=== Google ===
 
[https://developers.google.com/speed/public-dns/ Google's nameservers] can be used as an alternative:
 
IPv4 nameservers
8.8.8.8
8.8.4.4
 
IPv6 nameservers
2001:4860:4860::8888
2001:4860:4860::8844
 
=== OpenNIC ===
 
[http://www.opennicproject.org/ OpenNIC] provides free uncensored nameservers located in multiple countries. The full list of public servers is available at [https://servers.opennic.org/ servers.opennic.org] and a shortlist of nearest nameservers for optimal performance is generated on their [https://www.opennic.org/ home page].
 
To retrieve a list of nearest nameservers, an [https://wiki.opennic.org/api/geoip API] is also available and returns, based on the [https://wiki.opennic.org/api/geoip#url_parameters URL parameters] provided, a list of nameservers in the desired format. For example to get the 200 nearest IPv4 servers, one can use https://api.opennicproject.org/geoip/?list&ipv=4&res=200&adm=0&bl&wl.
 
Alternatively, the anycast servers below can be used; while reliable their latency [https://wiki.opennic.org/opennic/dont_anycast fluctuates a lot].
 
IPv4 nameservers (Worldwide Anycast)
185.121.177.177
185.121.177.53
 
IPv6 nameservers (Worldwide Anycast)
2a05:dfc7:5::53
2a05:dfc7:5::5353
 
{{Note|
* The use of OpenNIC DNS servers will allow host name resolution in the traditional Top-Level Domain (TLD) registries, but also in OpenNIC or afiliated operated namespaces: ''.o'', ''.libre'', ''.dyn''...
* The tool {{App|opennic-up|automates the renewal of the DNS servers with the most responsive OpenNIC servers|https://github.com/kewlfft/opennic-up|{{AUR|opennic-up}}}}
}}
}}


=== Quad9 ===
== Performance ==
 
[https://quad9.net/#/ Quad9] is a free DNS service founded by [https://www.ibm.com/security IBM], [https://www.pch.net Packet Clearing House] and [https://www.globalcyberalliance.org Global Cyber Alliance]; its primary unique feature is a blocklist which avoids resolving known malicious domains. The addresses below are worldwide anycast.
 
IPv4 nameservers
9.9.9.9    ## "secure", with blocklist and DNSSEC
9.9.9.10    ## no blocklist, no DNSSEC
 
IPv6 nameservers
2620:fe::fe    ## "secure", with blocklist and DNSSEC
2620:fe::10    ## no blocklist, no DNSSEC


=== UncensoredDNS ===
The [[#Glibc resolver]] does not cache queries. If you want local caching use [[#Systemd-resolved]] or set up a local caching [[DNS server]] and use {{ic|127.0.0.1}}.


[http://censurfridns.dk UncensoredDNS] is a free uncensored DNS service. It is run by a private individual and consists in one anycast served by multiple servers and one unicast node hosted in Denmark.
{{Tip|The ''dig'' and ''drill'' [[#Lookup utilities]] report the query time.}}


IPv4 nameservers
Internet service providers usually provide working DNS servers. A router may also add an extra DNS server in case it has its own cache server. Switching between DNS servers is transparent for Windows users, because if a DNS server is slow or does not work it will immediately switch to a better one. However, Linux usually takes longer to timeout, which could cause delays.
91.239.100.100    ## anycast.censurfridns.dk
89.233.43.71      ## unicast.censurfridns.dk


IPv6 nameservers
== Lookup utilities ==
2001:67c:28a4::  ## anycast.censurfridns.dk
2a01:3a0:53:53::  ## unicast.censurfridns.dk


{{Note|Its servers listen to port 5353 as well as the standard port 53. This can be used in case your ISP hijacks port 53.}}
To query specific DNS servers and DNS/[[DNSSEC]] records you can use dedicated DNS lookup utilities. These tools implement DNS themselves and do not use [[#Name Service Switch|NSS]].


=== Yandex ===
* {{Pkg|bind-tools}} provides {{man|1|dig}}, {{man|1|host}}, {{man|1|nslookup}} and a bunch of {{ic|dnssec-}} tools.
* {{Pkg|ldns}} provides {{man|1|drill}}, which is similar to ''dig''


[https://dns.yandex.com/advanced/ Yandex.DNS] has servers in Russia, Eastern and Western Europe and has three options, ''Basic'', ''Safe'' and ''Family'':
For example, to query a specific nameserver with drill for the TXT records of a domain:


Basic Yandex.DNS - Quick and reliable DNS
  $ drill @''nameserver'' TXT ''domain''
  77.88.8.8              # Preferred IPv4 DNS
77.88.8.1              # Alternate IPv4 DNS
2a02:6b8::feed:0ff    # Preferred IPv6 DNS
2a02:6b8:0:1::feed:0ff # Alternate IPv6 DNS


Safe Yandex.DNS - Protection from virus and fraudulent content
If you do not specify a DNS server ''dig'' and ''drill'' use the nameservers defined in {{ic|/etc/resolv.conf}}.
77.88.8.88            # Preferred IPv4 DNS
77.88.8.2              # Alternate IPv4 DNS
2a02:6b8::feed:bad    # Preferred IPv6 DNS
2a02:6b8:0:1::feed:bad # Alternate IPv6 DNS


Family Yandex.DNS - Without adult content
== See also ==
77.88.8.7              # Preferred IPv4 DNS
77.88.8.3              # Alternate IPv4 DNS
2a02:6b8::feed:a11    # Preferred IPv6 DNS
2a02:6b8:0:1::feed:a11 # Alternate IPv6 DNS


Yandex.DNS' speed is the same in the three modes. In ''Basic'' mode, there is no traffic filtering. In ''Safe'' mode, protection from infected and fraudulent sites is provided. ''Family'' mode enables protection from dangerous sites and blocks sites with adult content.
* [https://www.tldp.org/LDP/nag2/x-087-2-resolv.html Linux Network Administrators Guide]
* [https://www.debian.org/doc/manuals/debian-handbook/sect.hostname-name-service.en.html#sect.name-resolution Debian Handbook]

Revision as of 09:26, 26 May 2018

This article explains how to configure domain name resolution and resolve domain names.

Name Service Switch

"NSS" redirects here. For Mozilla cryptographic libraries, see Network Security Services.

The Name Service Switch (NSS) facility is part of the GNU C Library (glibc) and backs the getaddrinfo(3) API, used to resolve domain names. NSS allows system databases to be provided by separate services, whose search order can be configured by the administrator in nsswitch.conf(5). The database responsible for domain name resolution is the hosts database, for which glibc offers the following services:

Systemd provides three NSS services for hostname resolution:

Check if you can resolve domain names

NSS databases can be queried with getent(1). You can resolve a domain name through NSS using:

$ getent hosts domain_name
Note: While most programs resolve domain names using NSS, some may read resolv.conf and/or /etc/hosts directly. See Network configuration#Local hostname resolution.

Glibc resolver

The glibc DNS resolver reads /etc/resolv.conf (resolv.conf(5)) for every resolution to determine the nameservers and options to use.

Nameservers listed first are tried first, up to three nameservers may be listed. Lines starting with a number sign are ignored.

Note: The glibc resolver does not cache queries. See #Performance for more information.

Overwriting of resolv.conf

Network managers tend to overwrite resolv.conf, for specifics see the corresponding section:

To prevent programs from overwriting resolv.conf you can also write-protect it by setting the immutable file attribute.

Tip: If you want multiple processes to write to resolv.conf, you can use openresolv.

Limit lookup time

If you are confronted with a very long hostname lookup (may it be in pacman or while browsing), it often helps to define a small timeout after which an alternative nameserver is used. To do so, put the following in /etc/resolv.conf.

options timeout:1

Hostname lookup delayed with IPv6

If you experience a 5 second delay when resolving hostnames it might be due to a DNS-server/Firewall misbehaving and only giving one reply to a parallel A and AAAA request (source). You can fix that by setting the following option in /etc/resolv.conf:

options single-request

Local domain names

If you want to be able to use the hostname of local machine names without the fully qualified domain names, then add a line to resolv.conf with the local domain such as:

domain example.com

That way you can refer to local hosts such as mainmachine1.example.com as simply mainmachine1 when using the ssh command, but the drill command still requires the fully qualified domain names in order to perform lookups.

Systemd-resolved

systemd-resolved(8) is a systemd service that provides network name resolution to local applications via a D-Bus interface, the resolve NSS service (nss-resolve(8)), and a local DNS stub listener on 127.0.0.53.

systemd-resolved has four different modes for handling the glibc resolver's resolv.conf (described in systemd-resolved(8) § /ETC/RESOLV.CONF). We will focus here on the two most relevant modes.

  1. The mode in which systemd-resolved is a client of the /etc/resolv.conf. This mode preserves /etc/resolv.conf and is compatible with the procedures described in this page.
  2. The systemd-resolved's recommended mode of operation: the DNS stub file as indicated below contains both the local stub 127.0.0.53 as the only DNS servers and a list of search domains.
/run/systemd/resolve/stub-resolv.conf
nameserver 127.0.0.53
search lan

The service users are advised to redirect the /etc/resolv.conf file to the local stub DNS resolver file /run/systemd/resolve/stub-resolv.conf managed by systemd-resolved. This propagates the systemd managed configuration to all the clients. This can be done by deleting or renaming the existing /etc/resolv.conf and replacing it by a symbolic link to the systemd stub:

# ln -s /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf

In this mode, the DNS servers are provided in the resolved.conf(5) file:

/etc/systemd/resolved.conf
[Resolve]
DNS=91.239.100.100 89.233.43.71
...

In order to check the DNS actually used by systemd-resolved, the command to use is:

$ systemd-resolve --status
Tip:
  • To understand the context around the DNS choices and switches, one can turn on detailed debug information for systemd-resolved as described in Systemd#Diagnosing a service.
  • The mode of operation of systemd-resolved is detected automatically, depending on whether /etc/resolv.conf is a symlink to the local stub DNS resolver file or contains server names.

Performance

The #Glibc resolver does not cache queries. If you want local caching use #Systemd-resolved or set up a local caching DNS server and use 127.0.0.1.

Tip: The dig and drill #Lookup utilities report the query time.

Internet service providers usually provide working DNS servers. A router may also add an extra DNS server in case it has its own cache server. Switching between DNS servers is transparent for Windows users, because if a DNS server is slow or does not work it will immediately switch to a better one. However, Linux usually takes longer to timeout, which could cause delays.

Lookup utilities

To query specific DNS servers and DNS/DNSSEC records you can use dedicated DNS lookup utilities. These tools implement DNS themselves and do not use NSS.

For example, to query a specific nameserver with drill for the TXT records of a domain:

$ drill @nameserver TXT domain

If you do not specify a DNS server dig and drill use the nameservers defined in /etc/resolv.conf.

See also