Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

These best practices cover two categories of public resolvers:

Closed and Public Resolvers - Access to this type of resolver services is determined either by the source IP address or by some other mechanism (TSIG key, TLS certificate, etc.)

...

. These service providers are typically

...

NOT Internet Service Providers, and the clients sending the queries

...

are located on remote networks. Note that some operators of closed and public resolvers may also offer a free tier service, which also makes them open and public Resolvers (for example, commercial DNS filtering/scrubbing services).

Open and Public Resolvers -  “Fully open” public DNS resolvers are available to any users on the Internet freely to use, whether they are stub resolvers (clients) or recursive servers using the open resolver as a forwarding service.

There are two types of best practices for public resolver operators: DNS security, and DNS availability and resilience. In addition to these two categories specific to the core DNS, all operators must pay careful attention to practices related to [Link]hardening their core systemsecurity[/Link].

DNS Security: These best practices are aimed at improving the security of your DNS service itself, helping prevent users from being served malicious data, and lowering the chances of data corruption going unnoticed.

  • Practice 1: DNSSEC validation MUST be enabled for recursive resolvers.


Rational: Signing zones using DNSSEC authenticates the origin of the data and protects the data’s integrity. But for this to actually work, DNS resolvers performing recursive resolution must validate the data. This means they must be configured with a copy of the root Trust Anchor, and they must be told to validate signatures that are published alongside DNS records


  1. Practice 2 (Privacy consideration): QNAME minimization MUST beenabled in order to mitigate leakage of domain names.


Rationale: QNAME minimization (standardized in RFC 9156) is a technique to improve privacy for DNS queries. With QNAME minimization enabled, the DNS resolver doesn’t send the FQDN and query type (QTYPE) to resolvers it is querying to find the answer to a query, at the expense of a few additional queries.


  1. Practice 3 (Privacy consideration): and privacy
  2. MUST: Enable DNSSEC validation.
  3. MUST: Enable QNAME minimization to minimize leakage of domain names.
  4. SHOULD: Offer DoT (DNS-over-TLS) , or DoH (DNS-over-HTTPS) service to clients, alongside traditional, unencrypted DNS.MUST be enabled. Deploying either is the easiest way to protect against eavesdropping and manipulation of DNS queries and man-in-the-middle attacks by encrypting DNS queries between stub and recursive resolvers, or between a forwarding and recursive resolver. 


Rationale: In the context of private networks, DoT or DoH must be enabled between the resolver on the local network(s) and an external, trusted DoT/DoH-enabled forwarding resolver. This ensures that DNS queries being forwarded from local clients are encrypted between the local resolver and the external forwarder. While DoT and DoH may reduce the visibility that local administrators have into the queries being forwarded by the local recursive resolver to an upstream DoT/DoH service, it will still be possible to monitor queries between clients and the local DNS resolver, either using passive DNS analysis or query logging.

Finally, DoT and DoH do not guarantee end-to-end privacy, only protection from third-party eavesdropping between hops that use DoT/DoH: the resolver that queries are being forwarded to should also use DoT/DoH when performing resolution.


DNS Availability and Resiliency: These best practices aim to improve the robustness, resilience, and stability of your DNS infrastructure. Some of the recommendations can be implemented with minimal changes or additions to your infrastructure.

  1. Practice 4: Authoritative and recursive nameservers MUST NOT be mixed on the same DNS infrastructure.

Rationale: DNS software packages such as ISC BIND can be configured to function as authoritative and recursive resolution on the same installation. Historically, this was to avoid the cost and overhead of two separate servers, particularly before virtualization was common. This is still the default behavior in most Windows DNS deployments as well. Clients in Active Directory-enabled environments are typically configured to send recursive DNS lookups to DNS servers that by default serve a copy of the organization’s DNS zone. Queries for other domain names are resolved as usual (either directly, or by forwarding queries to an external server).

While this configuration does allow for a simpler setup (and faster lookup times) when looking up names within an organization’s own domain/zone, there are other problems with this configuration, including the risk for those DNS servers answering queries for “stale” domains that have since been delegated to other nameservers. This is a risk when the DNS servers are publicly reachable from the Internet.


  1. Practice 5SHOULD: Data collected through passive logging of DNS queries should MUST only be retained for as long as is necessary for the sound operation of the service offered, including troubleshooting, research, and to satisfy satisfying local legal requirements on data retention.


Rationale: It is often necessary to enable logging of a service or application, including logging of data submitted by users and customers, in order to be able to troubleshoot problems and perform optimizations. Sometimes this is systematic and is enabled for forensic purposes (e.g., post mortem analysis of attacks, identifying misbehaving clients) or to be able to detect attacks as they are launched and before they can do major damage.

Either way, logging of data should be limited to the amount necessary ( in terms of both time and the depth of information being logged) to perform the tasks mentioned above, and should be disabled or reduced as soon as it is not required anymore. It is important to note here that legislation in many countries has made it mandatory to perform some level of logging of IP traffic, where providers and operators are asked to retain this data for months or even years. Operators should comply with these local data retention laws. DNS data can be leveraged to identify individual users, and great care must be taken that this data not be compromised, leaked, or otherwise accessed by unauthorized parties.


  1. Practice 6: At least two distinct servers MUST be used forproviding recursion services. 


Rationale: To avoid outages where clients aren’t able to resolve names, it is best to always hand out at least two DNS resolvers when configuring clients, either using DHCP or any other provisioning method. Clients should be able to point to alternate resolver(s) to use in case of failure of the primary. Solutions using a load balancer in front of multiple servers usually aren’t practical because they introduce complexity, and stateful systems risk being overwhelmed by DoS/malware-related traffic from infected clients. An acceptable alternative to configuring a secondary resolver is to deploy Anycast so that multiple resolvers respond to queries sent to a unique resolver IP address.


  1. Practice 7: Private resolver operators MUST have software diversity. The primary and backup resolvers should ideally be running software packages from different vendors.

Rationale: In the event of a vulnerability affecting a DNS software package, there is a risk that all of one’s DNS servers could become unavailable at the same time if they all run that same software.


  1. Practice 8: Monitoring of the services, servers, and network equipment that make up your DNS infrastructure MUST be implemented.


Rationale: Monitoring of your DNS service is critical to ensure that it is available to users and customers. This can be achieved through local monitoring (hosted on premises) or a remote location, and either managed by yourself or a third party (outsourced/cloud based).