<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.17 (Ruby 3.2.4) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-ietf-dnsop-avoid-fragmentation-19" category="info" consensus="true" submissionType="IETF" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="avoid-fragmentation">IP Fragmentation Avoidance in DNS over UDP</title>

    <author initials="K." surname="Fujiwara" fullname="Kazunori Fujiwara">
      <organization abbrev="JPRS">Japan Registry Services Co., Ltd.</organization>
      <address>
        <postal>
          <street>Chiyoda First Bldg. East 13F, 3-8-1 Nishi-Kanda</street>
          <region>Chiyoda-ku, Tokyo</region>
          <code>101-0065</code>
          <country>Japan</country>
        </postal>
        <phone>+81 3 5215 8451</phone>
        <email>fujiwara@jprs.co.jp</email>
      </address>
    </author>
    <author initials="P." surname="Vixie" fullname="Paul Vixie">
      <organization>AWS Security</organization>
      <address>
        <postal>
          <street>11400 La Honda Road</street>
          <city>Woodside, CA</city>
          <code>94062</code>
          <country>United States of America</country>
        </postal>
        <phone>+1 650 393 3994</phone>
        <email>paul@redbarn.org</email>
      </address>
    </author>

    <date year="2024" month="September" day="20"/>

    <area>operations</area>
    
    <keyword>Internet-Draft</keyword>

    <abstract>


<?line 129?>

<t>The widely
deployed EDNS0 feature in the DNS enables a DNS receiver to indicate
its received UDP message size capacity, which supports the sending of
large UDP responses by a DNS server.
Large DNS/UDP messages are more likely to be fragmented
and IP fragmentation has exposed weaknesses in application protocols.
It is possible to avoid IP fragmentation in DNS by limiting the response
size where possible, and signaling the need to upgrade from UDP to TCP
transport where necessary.
This document describes techniques to avoid IP fragmentation in DNS.</t>



    </abstract>



  </front>

  <middle>


<?line 142?>

<section anchor="introduction"><name>Introduction</name>

<t>This document was originally intended to be a BCP, but due to
operating system and socket option limitations, some of the
recommendations have not yet gained real-world experience and
therefore the document is published as Informational.
It is hoped and expected that, as operating systems and implementations evolve,
we will gain more experience with the recommendations, and plan to publish an
updated document as a Best Current Practice.
In the case of IPv6 only, there are no concerns, and it is easy to reach a consensus.</t>

<t>DNS has an EDNS0 <xref target="RFC6891"/> mechanism.
The widely
deployed EDNS0 feature in the DNS enables a DNS receiver to indicate
its received UDP message size capacity which supports the sending of
large UDP responses by a DNS server.
DNS over UDP invites IP fragmentation when a packet is larger than the
MTU of some network in the packet's path.</t>

<t>Fragmented DNS UDP responses have systemic weaknesses, which expose
the requestor to DNS cache poisoning from off-path attackers.
(See <xref target="ProblemOfFragmentation"/> for references and details.)</t>

<t><xref target="RFC8900"/> states that IP fragmentation
introduces fragility to Internet communication.
The transport of DNS messages
over UDP should take account of the observations stated in that document.</t>

<t>TCP avoids fragmentation by segmenting data into packets that are smaller
than or equal to the Maximum Segment Size (MSS).
For each transmitted segment, the size of the IP and TCP headers is known,
and the IP packet size can be chosen to keep it within the estimated MTU and the other end's MSS.
This takes advantage of the elasticity of TCP's
packetizing process as to how much queued data will fit into the next
segment. In contrast, DNS over UDP has little datagram size elasticity and
lacks insight into IP header and option size, so we must make more
conservative estimates about available UDP payload space.</t>

<t><xref target="RFC7766"/> states that all general-purpose DNS
implementations MUST support both UDP and TCP transport.</t>

<t>DNS transaction security <xref target="RFC8945"/> <xref target="RFC2931"/> does protect
against the security risks of fragmentation, including protecting
delegation responses. But <xref target="RFC8945"/> has limited applicability due
to key distribution requirements and there is little if any deployment
of <xref target="RFC2931"/>.</t>

<t>This document describes various techniques to avoid IP fragmentation
of UDP packets in DNS.
This document is primarily applicable to DNS use on the global Internet.</t>

<t>In contrast, a path MTU that deviates from the
recommended value might be obtained through static configuration, server
routing hints, or a future discovery protocol.  However, addressing
this falls outside the scope of this document and may be the subject
of future specifications.</t>

</section>
<section anchor="terminology"><name>Terminology</name>

<t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in 
BCP14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all
capitals, as shown here.</t>

<t>"Requestor" refers to the side that sends a request.  "Responder"
refers to an authoritative server, recursive resolver or other DNS component
that responds to questions. (Quoted from EDNS0 <xref target="RFC6891"/>)</t>

<t>"Path MTU" is the minimum link MTU of all the links in a path
between a source node and a destination node. (Quoted from <xref target="RFC8201"/>)</t>

<t>In this document, the term "Path MTU discovery" includes
both Classical Path MTU discovery <xref target="RFC1191"/>, <xref target="RFC8201"/>, and
Packetization Layer Path MTU discovery <xref target="RFC8899"/>.</t>

<t>Many of the specialized terms used in this document are defined in
DNS Terminology <xref target="RFC8499"/>.</t>

</section>
<section anchor="recommendation"><name>How to avoid IP fragmentation in DNS</name>

<t>These recommendations are intended
for nodes with global IP addresses on the Internet.
Private networks or local networks are out of the scope of this document.</t>

<t>The methods to avoid IP fragmentation in DNS are described below:</t>

<section anchor="RecommendationsResponders"><name>Proposed Recommendations for UDP responders</name>

<t>R1. UDP responders should not use IPv6 fragmentation <xref target="RFC8200"/>.</t>

<t>R2. UDP responders should configure their systems to prevent
    fragmentation of UDP packets when sending replies, provided it can be
    done safely. The mechanisms to achieve this vary across different
    operating systems.</t>

<t>For BSD-like operating systems, the IP "Don't Fragment flag (DF) bit"
  <xref target="RFC0791"></xref> can be used to prevent fragmentation. In contrast, Linux
  systems do not expose a direct API for this purpose and require the
  use of Path MTU socket options (IP_MTU_DISCOVER) to manage
  fragmentation settings. However, it is important to note that enabling
  IPv4 Path MTU Discovery for UDP in current Linux versions is
  considered harmful and dangerous. For more details, refer to <xref target="impl"/>.</t>

<t>R3. UDP responders should compose response packets that fit in the minimum of
  the offered requestor's maximum UDP payload size <xref target="RFC6891"/>,
  the interface MTU,
  the network MTU value configured by the knowledge of the network operators, 
  and the RECOMMENDED maximum DNS/UDP payload size 1400.
  (See <xref target="details"/> for more information.)</t>

<t>R4. If the UDP responder detects an immediate error indicating
  that the UDP packet cannot be sent beyond the path MTU size,
  the UDP responder may recreate response packets fit in the path MTU size,
  or with the TC bit set.</t>

<t>The cause and effect of the TC bit are unchanged <xref target="RFC1035"/>.</t>

</section>
<section anchor="RecommendationsRequestors"><name>Proposed Recommendations for UDP requestors</name>

<t>R5. UDP requestors should limit the requestor's maximum UDP payload size
that fit in the minimum of
the interface MTU,
the network MTU value configured by the knowledge of the network operators,
and the RECOMMENDED maximum DNS/UDP payload size 1400.
A smaller limit may be allowed.
(See <xref target="details"/> for more information.)</t>

<t>R6. UDP requestors should/may drop fragmented DNS/UDP responses without IP reassembly
  to avoid cache poisoning attacks (at firewall function).</t>

<t>R7. DNS responses may be dropped by IP fragmentation.
  Requestors are
  recommended to try alternative transport protocols eventually.</t>

</section>
</section>
<section anchor="RecommendationOperators"><name>Proposed Recommendations for DNS operators</name>

<t>Large DNS responses are typically the result of zone configuration.
People who publish information in the DNS should seek configurations, resulting in small responses.
For example,</t>

<t>R8. Use a smaller number of name servers.</t>

<t>R9. Use a smaller number of A/AAAA RRs for a domain name.</t>

<t>R10. Use minimal-responses configuration:
  Some implementations have a 'minimal responses' configuration option that causes
  DNS servers to make response packets smaller, containing only mandatory
  and required data (<xref target="minimal-responses"/>).</t>

<t>R11. Use a smaller signature / public key size algorithm for DNSSEC.
Notably, the signature sizes of ECDSA and EdDSA
are smaller than those of equivalent cryptographic strength using RSA.</t>

<t>It is difficult to determine a specific upper limit for R8, R9, and
R11, but it is sufficient if all responses from the DNS servers are
below the size of R3 and R5.</t>

</section>
<section anchor="protocol"><name>Protocol compliance considerations</name>

<t>Some authoritative servers deviate from the DNS standard as follows:</t>

<t><list style="symbols">
  <t>Some authoritative servers ignore the EDNS0 requestor's maximum UDP payload size and return large UDP responses. <xref target="Fujiwara2018"></xref></t>
  <t>Some authoritative servers do not support TCP transport.</t>
</list></t>

<t>Such non-compliant behavior cannot become implementation or configuration
constraints for the rest of the DNS. If failure is the result, then that
failure must be localized to the non-compliant servers.</t>

</section>
<section anchor="iana"><name>IANA Considerations</name>
<t>This document requests no IANA actions.</t>

</section>
<section anchor="securitycons"><name>Security Considerations</name>

<section anchor="on-path-fragmentation-on-ipv4"><name>On-path fragmentation on IPv4</name>

<t>If the Don't Fragment (DF) bit is not set,
on-path fragmentation may happen on IPv4,
and be vulnerable, as shown in <xref target="ProblemOfFragmentation"/>.
To avoid this, recommendation R6 need to be used
to discard the fragmented responses and retry by TCP.</t>

</section>
<section anchor="small-mtu-network"><name>Small MTU network</name>

<t>When avoiding fragmentation,
a DNS/UDP requestor behind a small MTU network may experience
UDP timeouts, which would reduce performance
and which may lead to TCP fallback.
This would indicate prior reliance upon IP fragmentation,
which is considered to be harmful
to both the performance and stability of applications, endpoints, and gateways.
Avoiding IP fragmentation will improve operating conditions overall,
and the performance of DNS/TCP has increased and will continue to increase.</t>

<t>If a UDP response packet is dropped in transit,
up to and including the network stack of the initiator,
it increases the attack window for poisoning the requestor's cache.</t>

</section>
<section anchor="ProblemOfFragmentation"><name>Weaknesses of IP fragmentation</name>

<t>"Fragmentation Considered Poisonous" <xref target="Herzberg2013"></xref> proposed effective
off-path DNS cache poisoning attack vectors using IP fragmentation.
"IP fragmentation attack on DNS" <xref target="Hlavacek2013"></xref> and "Domain Validation++
For MitM-Resilient PKI" <xref target="Brandt2018"></xref> proposed that off-path attackers
can intervene in the path MTU discovery <xref target="RFC1191"/> to perform intentionally
fragmented responses from authoritative servers. <xref target="RFC7739"/> stated the
security implications of predictable fragment identification values.</t>

<t>In Section 3.2 (Message Side Guidelines) of UDP Usage Guidelines <xref target="RFC8085"/>
we are told that an application SHOULD NOT send UDP datagrams
that result in IP packets that exceed the Maximum Transmission Unit (MTU)
along the path to the destination.</t>

<t>A DNS message receiver cannot trust fragmented UDP datagrams primarily due to
the small amount of entropy provided by UDP port numbers and DNS message
identifiers, each of which being only 16 bits in size, and both likely
being in the first fragment of a packet if fragmentation occurs.
By comparison, the TCP protocol stack controls packet size and avoids IP fragmentation under ICMP NEEDFRAG attacks.
In TCP, fragmentation should be avoided for performance reasons, whereas for
UDP, fragmentation should be avoided for resiliency and authenticity reasons.</t>

</section>
<section anchor="dns-security-protections"><name>DNS Security Protections</name>

<t>DNSSEC is a countermeasure against cache poisoning attacks that use
IP fragmentation.
However, DNS delegation responses are not signed with DNSSEC,
and DNSSEC does not have a mechanism to get the correct response if
an incorrect delegation is injected. This is a denial-of-service
vulnerability that can yield failed name resolutions.
If cache poisoning attacks can be avoided,
DNSSEC validation failures will be avoided.</t>

</section>
<section anchor="possible-actions-for-resolver-operators"><name>Possible actions for resolver operators</name>

<t>Because this document is published as an "Informational" document
rather than a "Best Current Practice,"
this section presents steps that resolver operators can take
to avoid vulnerabilities related to IP fragmentation.</t>

<t>To avoid vulnerabilities related to IP fragmentation,
implement R5 and R6.</t>

<t>Specifically, config the firewall functions before the full-service resolver
to discard incoming DNS response packets
with a non-zero Fragment offset or a More Fragments (MF) bit of 1 on IPv4,
and discard packets with IPv6 Fragment Headers.
(If the resolver's IP address is not dedicated to the DNS resolver
and uses UDP communication that relies on IP Fragmentation for purposes
other than DNS, discard only the first fragment that contains the UDP header
from port 53.)</t>

<t>The most recent resolver software is believed to implement R7.</t>

<t>Even if R7 is not implemented, it will only result in a name resolution error,
preventing attacks from leading to malicious sites.</t>

</section>
</section>
<section anchor="acknowledgments"><name>Acknowledgments</name>

<t>The author would like to specifically thank 
Paul Wouters, 
Mukund Sivaraman,
Tony Finch,
Hugo Salgado,
Peter van Dijk,
Brian Dickson,
Puneet Sood,
Jim Reid,
Petr Spacek,
Andrew McConachie,
Joe Abley,
Daisuke Higashi,
Joe Touch
and
Wouter Wijngaards
for extensive review and comments.</t>

</section>


  </middle>

  <back>


    <references title='Normative References' anchor="sec-normative-references">



<reference anchor="RFC6891">
  <front>
    <title>Extension Mechanisms for DNS (EDNS(0))</title>
    <author fullname="J. Damas" initials="J." surname="Damas"/>
    <author fullname="M. Graff" initials="M." surname="Graff"/>
    <author fullname="P. Vixie" initials="P." surname="Vixie"/>
    <date month="April" year="2013"/>
    <abstract>
      <t>The Domain Name System's wire protocol includes a number of fixed fields whose range has been or soon will be exhausted and does not allow requestors to advertise their capabilities to responders. This document describes backward-compatible mechanisms for allowing the protocol to grow.</t>
      <t>This document updates the Extension Mechanisms for DNS (EDNS(0)) specification (and obsoletes RFC 2671) based on feedback from deployment experience in several implementations. It also obsoletes RFC 2673 ("Binary Labels in the Domain Name System") and adds considerations on the use of extended labels in the DNS.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="75"/>
  <seriesInfo name="RFC" value="6891"/>
  <seriesInfo name="DOI" value="10.17487/RFC6891"/>
</reference>

<reference anchor="RFC7766">
  <front>
    <title>DNS Transport over TCP - Implementation Requirements</title>
    <author fullname="J. Dickinson" initials="J." surname="Dickinson"/>
    <author fullname="S. Dickinson" initials="S." surname="Dickinson"/>
    <author fullname="R. Bellis" initials="R." surname="Bellis"/>
    <author fullname="A. Mankin" initials="A." surname="Mankin"/>
    <author fullname="D. Wessels" initials="D." surname="Wessels"/>
    <date month="March" year="2016"/>
    <abstract>
      <t>This document specifies the requirement for support of TCP as a transport protocol for DNS implementations and provides guidelines towards DNS-over-TCP performance on par with that of DNS-over-UDP. This document obsoletes RFC 5966 and therefore updates RFC 1035 and RFC 1123.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7766"/>
  <seriesInfo name="DOI" value="10.17487/RFC7766"/>
</reference>

<reference anchor="RFC8945">
  <front>
    <title>Secret Key Transaction Authentication for DNS (TSIG)</title>
    <author fullname="F. Dupont" initials="F." surname="Dupont"/>
    <author fullname="S. Morris" initials="S." surname="Morris"/>
    <author fullname="P. Vixie" initials="P." surname="Vixie"/>
    <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
    <author fullname="O. Gudmundsson" initials="O." surname="Gudmundsson"/>
    <author fullname="B. Wellington" initials="B." surname="Wellington"/>
    <date month="November" year="2020"/>
    <abstract>
      <t>This document describes a protocol for transaction-level authentication using shared secrets and one-way hashing. It can be used to authenticate dynamic updates to a DNS zone as coming from an approved client or to authenticate responses as coming from an approved name server.</t>
      <t>No recommendation is made here for distributing the shared secrets; it is expected that a network administrator will statically configure name servers and clients using some out-of-band mechanism.</t>
      <t>This document obsoletes RFCs 2845 and 4635.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="93"/>
  <seriesInfo name="RFC" value="8945"/>
  <seriesInfo name="DOI" value="10.17487/RFC8945"/>
</reference>

<reference anchor="RFC2931">
  <front>
    <title>DNS Request and Transaction Signatures ( SIG(0)s )</title>
    <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
    <date month="September" year="2000"/>
    <abstract>
      <t>This document describes the minor but non-interoperable changes in Request and Transaction signature resource records ( SIG(0)s ) that implementation experience has deemed necessary. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2931"/>
  <seriesInfo name="DOI" value="10.17487/RFC2931"/>
</reference>

<reference anchor="RFC2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname="S. Bradner" initials="S." surname="Bradner"/>
    <date month="March" year="1997"/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
  <seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>

<reference anchor="RFC8174">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <date month="May" year="2017"/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="8174"/>
  <seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>

<reference anchor="RFC8201">
  <front>
    <title>Path MTU Discovery for IP version 6</title>
    <author fullname="J. McCann" initials="J." surname="McCann"/>
    <author fullname="S. Deering" initials="S." surname="Deering"/>
    <author fullname="J. Mogul" initials="J." surname="Mogul"/>
    <author fullname="R. Hinden" initials="R." role="editor" surname="Hinden"/>
    <date month="July" year="2017"/>
    <abstract>
      <t>This document describes Path MTU Discovery (PMTUD) for IP version 6. It is largely derived from RFC 1191, which describes Path MTU Discovery for IP version 4. It obsoletes RFC 1981.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="87"/>
  <seriesInfo name="RFC" value="8201"/>
  <seriesInfo name="DOI" value="10.17487/RFC8201"/>
</reference>

<reference anchor="RFC1191">
  <front>
    <title>Path MTU discovery</title>
    <author fullname="J. Mogul" initials="J." surname="Mogul"/>
    <author fullname="S. Deering" initials="S." surname="Deering"/>
    <date month="November" year="1990"/>
    <abstract>
      <t>This memo describes a technique for dynamically discovering the maximum transmission unit (MTU) of an arbitrary internet path. It specifies a small change to the way routers generate one type of ICMP message. For a path that passes through a router that has not been so changed, this technique might not discover the correct Path MTU, but it will always choose a Path MTU as accurate as, and in many cases more accurate than, the Path MTU that would be chosen by current practice. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="1191"/>
  <seriesInfo name="DOI" value="10.17487/RFC1191"/>
</reference>

<reference anchor="RFC8899">
  <front>
    <title>Packetization Layer Path MTU Discovery for Datagram Transports</title>
    <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
    <author fullname="T. Jones" initials="T." surname="Jones"/>
    <author fullname="M. Tüxen" initials="M." surname="Tüxen"/>
    <author fullname="I. Rüngeler" initials="I." surname="Rüngeler"/>
    <author fullname="T. Völker" initials="T." surname="Völker"/>
    <date month="September" year="2020"/>
    <abstract>
      <t>This document specifies Datagram Packetization Layer Path MTU Discovery (DPLPMTUD). This is a robust method for Path MTU Discovery (PMTUD) for datagram Packetization Layers (PLs). It allows a PL, or a datagram application that uses a PL, to discover whether a network path can support the current size of datagram. This can be used to detect and reduce the message size when a sender encounters a packet black hole. It can also probe a network path to discover whether the maximum packet size can be increased. This provides functionality for datagram transports that is equivalent to the PLPMTUD specification for TCP, specified in RFC 4821, which it updates. It also updates the UDP Usage Guidelines to refer to this method for use with UDP datagrams and updates SCTP.</t>
      <t>The document provides implementation notes for incorporating Datagram PMTUD into IETF datagram transports or applications that use datagram transports.</t>
      <t>This specification updates RFC 4960, RFC 4821, RFC 6951, RFC 8085, and RFC 8261.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8899"/>
  <seriesInfo name="DOI" value="10.17487/RFC8899"/>
</reference>

<reference anchor="RFC8499">
  <front>
    <title>DNS Terminology</title>
    <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
    <author fullname="A. Sullivan" initials="A." surname="Sullivan"/>
    <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
    <date month="January" year="2019"/>
    <abstract>
      <t>The Domain Name System (DNS) is defined in literally dozens of different RFCs. The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has sometimes changed in the decades since the DNS was first defined. This document gives current definitions for many of the terms used in the DNS in a single document.</t>
      <t>This document obsoletes RFC 7719 and updates RFC 2308.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8499"/>
  <seriesInfo name="DOI" value="10.17487/RFC8499"/>
</reference>

<reference anchor="RFC8200">
  <front>
    <title>Internet Protocol, Version 6 (IPv6) Specification</title>
    <author fullname="S. Deering" initials="S." surname="Deering"/>
    <author fullname="R. Hinden" initials="R." surname="Hinden"/>
    <date month="July" year="2017"/>
    <abstract>
      <t>This document specifies version 6 of the Internet Protocol (IPv6). It obsoletes RFC 2460.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="86"/>
  <seriesInfo name="RFC" value="8200"/>
  <seriesInfo name="DOI" value="10.17487/RFC8200"/>
</reference>

<reference anchor="RFC1035">
  <front>
    <title>Domain names - implementation and specification</title>
    <author fullname="P. Mockapetris" initials="P." surname="Mockapetris"/>
    <date month="November" year="1987"/>
    <abstract>
      <t>This RFC is the revised specification of the protocol and format used in the implementation of the Domain Name System. It obsoletes RFC-883. This memo documents the details of the domain name client - server communication.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="13"/>
  <seriesInfo name="RFC" value="1035"/>
  <seriesInfo name="DOI" value="10.17487/RFC1035"/>
</reference>

<reference anchor="RFC7739">
  <front>
    <title>Security Implications of Predictable Fragment Identification Values</title>
    <author fullname="F. Gont" initials="F." surname="Gont"/>
    <date month="February" year="2016"/>
    <abstract>
      <t>IPv6 specifies the Fragment Header, which is employed for the fragmentation and reassembly mechanisms. The Fragment Header contains an "Identification" field that, together with the IPv6 Source Address and the IPv6 Destination Address of a packet, identifies fragments that correspond to the same original datagram, such that they can be reassembled together by the receiving host. The only requirement for setting the Identification field is that the corresponding value must be different than that employed for any other fragmented datagram sent recently with the same Source Address and Destination Address. Some implementations use a simple global counter for setting the Identification field, thus leading to predictable Identification values. This document analyzes the security implications of predictable Identification values, and provides implementation guidance for setting the Identification field of the Fragment Header, such that the aforementioned security implications are mitigated.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7739"/>
  <seriesInfo name="DOI" value="10.17487/RFC7739"/>
</reference>

<reference anchor="RFC8085">
  <front>
    <title>UDP Usage Guidelines</title>
    <author fullname="L. Eggert" initials="L." surname="Eggert"/>
    <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
    <author fullname="G. Shepherd" initials="G." surname="Shepherd"/>
    <date month="March" year="2017"/>
    <abstract>
      <t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms. This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP. Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t>
      <t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic. They may also need to implement additional mechanisms, depending on how they use UDP.</t>
      <t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t>
      <t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="145"/>
  <seriesInfo name="RFC" value="8085"/>
  <seriesInfo name="DOI" value="10.17487/RFC8085"/>
</reference>




    </references>

    <references title='Informative References' anchor="sec-informative-references">

<reference anchor="Brandt2018" >
  <front>
    <title>Domain Validation++ For MitM-Resilient PKI</title>
    <author initials="M." surname="Brandt" fullname="Markus Brandt">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <author initials="T." surname="Dai" fullname="Tianxiang Dai">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <author initials="A." surname="Klein" fullname="Amit Klein">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <author initials="H." surname="Shulman" fullname="Haya Shulman">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <author initials="M." surname="Waidner" fullname="Michael Waidner">
      <organization>Fraunhofer Institute for Secure Information Technology SIT, Darmstadt, Germany</organization>
    </author>
    <date year="2018"/>
  </front>
  <seriesInfo name="Proceedings of the 2018 ACM SIGSAC Conference on Computer and Communications Security" value=""/>
</reference>
<reference anchor="Herzberg2013" >
  <front>
    <title>Fragmentation Considered Poisonous</title>
    <author initials="A." surname="Herzberg" fullname="Amir Herzberg">
      <organization></organization>
    </author>
    <author initials="H." surname="Shulman" fullname="Haya Shulman">
      <organization></organization>
    </author>
    <date year="2013"/>
  </front>
  <seriesInfo name="IEEE Conference on Communications and Network Security" value=""/>
</reference>
<reference anchor="Hlavacek2013" target="https://ripe67.ripe.net/presentations/240-ipfragattack.pdf">
  <front>
    <title>IP fragmentation attack on DNS</title>
    <author initials="T." surname="Hlavacek" fullname="Tomas Hlavacek">
      <organization>cz.nic</organization>
    </author>
    <date year="2013"/>
  </front>
  <seriesInfo name="RIPE 67 Meeting" value=""/>
</reference>
<reference anchor="Fujiwara2018" >
  <front>
    <title>Measures against cache poisoning attacks using IP fragmentation in DNS</title>
    <author initials="K." surname="Fujiwara" fullname="Kazunori Fujiwara">
      <organization>JPRS</organization>
    </author>
    <date year="2019"/>
  </front>
  <seriesInfo name="OARC 30 Workshop" value=""/>
</reference>
<reference anchor="DNSFlagDay2020" target="https://dnsflagday.net/2020/">
  <front>
    <title>DNS flag day 2020</title>
    <author >
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="Huston2021" >
  <front>
    <title>Measuring DNS Flag Day 2020</title>
    <author initials="G." surname="Huston" fullname="Geoff Huston">
      <organization>APNIC Labs</organization>
    </author>
    <author initials="J." surname="Damas" fullname="Joao Damas">
      <organization>APNIC Labs</organization>
    </author>
    <date year="2021" month="February"/>
  </front>
  <seriesInfo name="OARC 34 Workshop" value=""/>
</reference>


<reference anchor="RFC8900">
  <front>
    <title>IP Fragmentation Considered Fragile</title>
    <author fullname="R. Bonica" initials="R." surname="Bonica"/>
    <author fullname="F. Baker" initials="F." surname="Baker"/>
    <author fullname="G. Huston" initials="G." surname="Huston"/>
    <author fullname="R. Hinden" initials="R." surname="Hinden"/>
    <author fullname="O. Troan" initials="O." surname="Troan"/>
    <author fullname="F. Gont" initials="F." surname="Gont"/>
    <date month="September" year="2020"/>
    <abstract>
      <t>This document describes IP fragmentation and explains how it introduces fragility to Internet communication.</t>
      <t>This document also proposes alternatives to IP fragmentation and provides recommendations for developers and network operators.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="230"/>
  <seriesInfo name="RFC" value="8900"/>
  <seriesInfo name="DOI" value="10.17487/RFC8900"/>
</reference>

<reference anchor="RFC0791">
  <front>
    <title>Internet Protocol</title>
    <author fullname="J. Postel" initials="J." surname="Postel"/>
    <date month="September" year="1981"/>
  </front>
  <seriesInfo name="STD" value="5"/>
  <seriesInfo name="RFC" value="791"/>
  <seriesInfo name="DOI" value="10.17487/RFC0791"/>
</reference>

<reference anchor="RFC4035">
  <front>
    <title>Protocol Modifications for the DNS Security Extensions</title>
    <author fullname="R. Arends" initials="R." surname="Arends"/>
    <author fullname="R. Austein" initials="R." surname="Austein"/>
    <author fullname="M. Larson" initials="M." surname="Larson"/>
    <author fullname="D. Massey" initials="D." surname="Massey"/>
    <author fullname="S. Rose" initials="S." surname="Rose"/>
    <date month="March" year="2005"/>
    <abstract>
      <t>This document is part of a family of documents that describe the DNS Security Extensions (DNSSEC). The DNS Security Extensions are a collection of new resource records and protocol modifications that add data origin authentication and data integrity to the DNS. This document describes the DNSSEC protocol modifications. This document defines the concept of a signed zone, along with the requirements for serving and resolving by using DNSSEC. These techniques allow a security-aware resolver to authenticate both DNS resource records and authoritative DNS error indications.</t>
      <t>This document obsoletes RFC 2535 and incorporates changes from all updates to RFC 2535. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4035"/>
  <seriesInfo name="DOI" value="10.17487/RFC4035"/>
</reference>

<reference anchor="RFC9471">
  <front>
    <title>DNS Glue Requirements in Referral Responses</title>
    <author fullname="M. Andrews" initials="M." surname="Andrews"/>
    <author fullname="S. Huque" initials="S." surname="Huque"/>
    <author fullname="P. Wouters" initials="P." surname="Wouters"/>
    <author fullname="D. Wessels" initials="D." surname="Wessels"/>
    <date month="September" year="2023"/>
    <abstract>
      <t>The DNS uses glue records to allow iterative clients to find the addresses of name servers that are contained within a delegated zone. Authoritative servers are expected to return all available glue records for in-domain name servers in a referral response. If message size constraints prevent the inclusion of all glue records for in-domain name servers, the server must set the TC (Truncated) flag to inform the client that the response is incomplete and that the client should use another transport to retrieve the full response. This document updates RFC 1034 to clarify correct server behavior.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9471"/>
  <seriesInfo name="DOI" value="10.17487/RFC9471"/>
</reference>

<reference anchor="RFC2308">
  <front>
    <title>Negative Caching of DNS Queries (DNS NCACHE)</title>
    <author fullname="M. Andrews" initials="M." surname="Andrews"/>
    <date month="March" year="1998"/>
    <abstract>
      <t>RFC1034 provided a description of how to cache negative responses. It however had a fundamental flaw in that it did not allow a name server to hand out those cached responses to other resolvers, thereby greatly reducing the effect of the caching. This document addresses issues raise in the light of experience and replaces RFC1034 Section 4.3.4. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2308"/>
  <seriesInfo name="DOI" value="10.17487/RFC2308"/>
</reference>

<reference anchor="RFC2782">
  <front>
    <title>A DNS RR for specifying the location of services (DNS SRV)</title>
    <author fullname="A. Gulbrandsen" initials="A." surname="Gulbrandsen"/>
    <author fullname="P. Vixie" initials="P." surname="Vixie"/>
    <author fullname="L. Esibov" initials="L." surname="Esibov"/>
    <date month="February" year="2000"/>
    <abstract>
      <t>This document describes a DNS RR which specifies the location of the server(s) for a specific protocol and domain. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2782"/>
  <seriesInfo name="DOI" value="10.17487/RFC2782"/>
</reference>

<reference anchor="RFC9460">
  <front>
    <title>Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records)</title>
    <author fullname="B. Schwartz" initials="B." surname="Schwartz"/>
    <author fullname="M. Bishop" initials="M." surname="Bishop"/>
    <author fullname="E. Nygren" initials="E." surname="Nygren"/>
    <date month="November" year="2023"/>
    <abstract>
      <t>This document specifies the "SVCB" ("Service Binding") and "HTTPS" DNS resource record (RR) types to facilitate the lookup of information needed to make connections to network services, such as for HTTP origins. SVCB records allow a service to be provided from multiple alternative endpoints, each with associated parameters (such as transport protocol configuration), and are extensible to support future uses (such as keys for encrypting the TLS ClientHello). They also enable aliasing of apex domains, which is not possible with CNAME. The HTTPS RR is a variation of SVCB for use with HTTP (see RFC 9110, "HTTP Semantics"). By providing more information to the client before it attempts to establish a connection, these records offer potential benefits to both performance and privacy.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9460"/>
  <seriesInfo name="DOI" value="10.17487/RFC9460"/>
</reference>

<reference anchor="RFC5155">
  <front>
    <title>DNS Security (DNSSEC) Hashed Authenticated Denial of Existence</title>
    <author fullname="B. Laurie" initials="B." surname="Laurie"/>
    <author fullname="G. Sisson" initials="G." surname="Sisson"/>
    <author fullname="R. Arends" initials="R." surname="Arends"/>
    <author fullname="D. Blacka" initials="D." surname="Blacka"/>
    <date month="March" year="2008"/>
    <abstract>
      <t>The Domain Name System Security (DNSSEC) Extensions introduced the NSEC resource record (RR) for authenticated denial of existence. This document introduces an alternative resource record, NSEC3, which similarly provides authenticated denial of existence. However, it also provides measures against zone enumeration and permits gradual expansion of delegation-centric zones. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="5155"/>
  <seriesInfo name="DOI" value="10.17487/RFC5155"/>
</reference>




    </references>


<?line 439?>

<section anchor="details"><name>Details of requestor's maximum UDP payload size discussions</name>

<t>There are many discussions for
default path MTU size and requestor's maximum UDP payload size.</t>

<t><list style="symbols">
  <t>The minimum MTU for an IPv6 interface is 1280 octets
(see Section 5 of <xref target="RFC8200"/>).
So, we can use it as the default path MTU value for IPv6.
The corresponding minimum MTU for an IPv4 interface is 68 (60 + 8)
<xref target="RFC0791"/>.</t>
  <t><xref target="RFC4035"/> defines that "A security-aware name server MUST support
the EDNS0 message size extension, MUST support a message
size of at least 1220 octets". Then, the smallest number of
the maximum DNS/UDP payload size is 1220.</t>
  <t>In order to avoid IP fragmentation,
<xref target="DNSFlagDay2020"></xref> proposed that the UDP requestors set the requestor's
payload size to 1232, and the UDP responders compose UDP responses so they fit
in 1232 octets.
The size 1232 is based on an MTU of 1280, which is required
by the IPv6 specification <xref target="RFC8200"/>,
minus 48 octets for the IPv6 and UDP headers.</t>
  <t>Most of the Internet and especially the inner core has an MTU of at least 
1500 octets.
Maximum DNS/UDP payload size for IPv6 on MTU 1500 ethernet is
1452 (1500 minus 40 (IPv6 header size) minus 8 (UDP header size)).
To allow for possible IP options and distant tunnel overhead,
the recommendation of default maximum DNS/UDP payload size is 1400.</t>
  <t><xref target="Huston2021"></xref> analyzed the result of <xref target="DNSFlagDay2020"></xref> and reported that
their measurements suggest that in the interior of the Internet
between recursive resolvers and authoritative servers
the prevailing MTU is at 1,500
and there is no measurable signal of use of smaller MTUs
in this part of the Internet, and proposed that
their measurements suggest setting the EDNS0 requestor's UDP payload size to
1472 octets for IPv4, and 1452 octets for IPv6.</t>
</list></t>

<t>As a result of discussions,
this document decided to recommend a value of 1400,
with smaller values also allowed.</t>

</section>
<section anchor="minimal-responses"><name>Minimal-responses</name>

<t>Some implementations have a "minimal responses" configuration setting/option that causes
a DNS server to make response packets smaller, containing only mandatory and
required data.</t>

<t>Under the minimal-responses configuration,
a DNS server composes responses containing only necessary RRs.
For delegations, see <xref target="RFC9471"/>.
In case of a non-existent domain name or non-existent type, 
the authority section will contain an SOA record and the answer section is empty.
(defined in Section 2 of <xref target="RFC2308"/>).</t>

<t>Some resource records (MX, SRV, SVCB, HTTPS) require
additional A, AAAA, and SVCB records
in the Additional Section
defined in <xref target="RFC1035"/>, <xref target="RFC2782"/> and <xref target="RFC9460"/>.</t>

<t>In addition, if the zone is DNSSEC signed and a query has the DNSSEC OK bit,
signatures are added in the answer section,
or the corresponding DS RRSet and signatures are added in the authority section.
Details are defined in <xref target="RFC4035"/> and <xref target="RFC5155"/>.</t>

</section>
<section anchor="impl"><name>Known Implementations</name>

<t>This section records the status of known implementations of these best
practices defined by this specification at the time of publication, and any
deviation from the specification.</t>

<t>Please note that the listing of any individual implementation here does not
imply endorsement by the IETF. Furthermore, no effort has been spent to
verify the information presented here that was supplied by IETF contributors.</t>

<section anchor="bind-9"><name>BIND 9</name>

<t>BIND 9 does not implement the recommendations 1 and 2 in <xref target="RecommendationsResponders"/>.</t>

<t>BIND 9 on Linux sets IP_MTU_DISCOVER to IP_PMTUDISC_OMIT with a fallback to
IP_PMTUDISC_DONT.</t>

<t>BIND 9 on systems with IP_DONTFRAG (such as FreeBSD), IP_DONTFRAG is disabled.</t>

<t>Accepting PATH MTU Discovery for UDP is considered harmful and dangerous.
BIND 9's settings avoid attacks to path MTU discovery.</t>

<t>For recommendation 3, BIND 9 will honor the requestor's size up to the
configured limit (<spanx style="verb">max-udp-size</spanx>). The UDP response packet is bound to be
between 512 and 4096 bytes, with the default set to 1232. BIND 9 supports the
requestor's size up to the configured limit (<spanx style="verb">max-udp-size</spanx>).</t>

<t>In the case of recommendation 4, and the send fails with EMSGSIZE, BIND 9
set the TC bit and try to send a minimal answer again.</t>

<t>In the first recommendation of <xref target="RecommendationsRequestors"/>, BIND 9 uses the <spanx style="verb">edns-buf-size</spanx>
option, with the default of 1232.</t>

<t>BIND 9 does implement recommendation 2 of <xref target="RecommendationsRequestors"/>.</t>

<t>For recommendation 3, after two UDP timeouts, BIND 9 will fall back to TCP.</t>

</section>
<section anchor="knot-dns-and-knot-resolver"><name>Knot DNS and Knot Resolver</name>

<t>Both Knot servers set IP_PMTUDISC_OMIT to avoid path MTU spoofing.
UDP size limit is 1232 by default.</t>

<t>Fragments are ignored if they arrive over an XDP interface.</t>

<t>TCP is attempted after repeated UDP timeouts.</t>

<t>Minimal responses are returned and are currently not configurable.</t>

<t>Smaller signatures are used, with ecdsap256sha256 as the default.</t>

</section>
<section anchor="powerdns-authoritative-server-powerdns-recursor-powerdns-dnsdist"><name>PowerDNS Authoritative Server, PowerDNS Recursor, PowerDNS dnsdist</name>

<t><list style="symbols">
  <t>IP_PMTUDISC_OMIT with fallback to IP_PMTUDISC_DONT</t>
  <t>default EDNS buffer size of 1232, no probing for smaller sizes</t>
  <t>no handling of EMSGSIZE</t>
  <t>Recursor: UDP timeouts do not cause a switch to TCP. "Spoofing nearmisses" do.</t>
</list></t>

</section>
<section anchor="powerdns-authoritative-server"><name>PowerDNS Authoritative Server</name>

<t><list style="symbols">
  <t>the default DNSSEC algorithm is 13</t>
  <t>responses are minimal, this is not configurable</t>
</list></t>

</section>
<section anchor="unbound"><name>Unbound</name>

<t>Unbound sets IP_MTU_DISCOVER to IP_PMTUDISC_OMIT with fallback to
IP_PMTUDISC_DONT. It also disables IP_DONTFRAG on systems that have
it, but not on Apple systems. On systems that support it Unbound sets
IPV6_USE_MIN_MTU, with a fallback to IPV6_MTU at 1280, with a fallback
to IPV6_USER_MTU. It also sets IPV6_MTU_DISCOVER to IPV6_PMTUDISC_OMIT
with a fallback to IPV6_PMTUDISC_DONT.</t>

<t>Unbound requests UDP size 1232 from peers, by default. The requestors
size is limited to a max of 1232.</t>

<t>After some timeouts, Unbound retries with a smaller size, if that is
smaller, at size 1232 for IPv6 and 1472 for IPv4. This does not do
anything since the flag day change to 1232.</t>

<t>Unbound has minimal responses as an option, default on.</t>

</section>
</section>


  </back>

<!-- ##markdown-source:
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

-->

</rfc>

