<?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.6.35 (Ruby 3.1.4) -->


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

]>


<rfc ipr="trust200902" docName="draft-ietf-dnsop-avoid-fragmentation-14" category="bcp" consensus="true" submissionType="IETF" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="avoid-fragmentation">Fragmentation Avoidance in DNS</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="2023" month="July" day="10"/>

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

    <abstract>


<?line 141?>

<t>EDNS0 enables a DNS server to send large responses using UDP
and is widely deployed.
Large DNS/UDP responses are fragmented,
and IP fragmentation has exposed weaknesses in application protocols.
It is possible to avoid IP fragmentation in DNS by limiting response
size where possible, and signaling the need to upgrade from UDP to TCP
transport where necessary.
This document proposes techniques to avoid IP fragmentation in DNS.</t>



    </abstract>



  </front>

  <middle>


<?line 152?>

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

<t>DNS has an EDNS0 <xref target="RFC6891"></xref> mechanism.
It enables a DNS server to send large responses using UDP.
EDNS0 is now widely deployed,
and DNS over UDP relies on IP fragmentation when the EDNS buffer
size is set to a value larger than the path MTU.</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"></xref> summarized 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 using its Maximum Segment Size (MSS) parameter, but
each transmitted segment is header-size aware such that the size of the IP and
TCP headers is known, as well as the far end's MSS parameter and the interface
or path MTU, so that the segment size can be chosen so as to keep the each IP
datagram below a target size. 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, and so must make more
conservative estimates about available UDP payload space.</t>

<t>This document proposes that implementations set the "Don't Fragment (DF)
bit" <xref target="RFC0791"></xref> on IPv4
 and not use the "Fragment header" <xref target="RFC8200"></xref> on IPv6 
in DNS/UDP
messages in order to avoid IP fragmentation. It also describes how to
avoid packet losses due to DF bit and small MTU links.</t>

<t>A path MTU different from the recommended value could be obtained
from static configuration, or server routing hints,
or some future discovery protocol;
that would be the subject of a future specification
and is beyond our scope here.</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 
<xref target="RFC2119">BCP14</xref> <xref target="RFC8174"></xref> 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"></xref>)</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"></xref>)</t>

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

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

</section>
<section anchor="proposal"><name>Proposal 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>Recommendations for UDP responders</name>

<t><list style="numbers">
  <t>UDP responders SHOULD send DNS responses
  without "Fragment header" <xref target="RFC8200"></xref> on IPv6.</t>
  <t>UDP responders are RECOMMENDED
  to set IP "Don't Fragment flag (DF) bit" <xref target="RFC0791"></xref> on IPv4.</t>
  <t>UDP responders SHOULD compose response packets that fit in
  the offered requestor's maximum UDP payload size <xref target="RFC6891"></xref>,
  the interface MTU,
  and the RECOMMENDED maximum DNS/UDP payload size 1400.</t>
  <t>If the UDP responder detects an immediate error indicating
  that the UDP packet cannot be sent beyond the path MTU size (EMSGSIZE),
  the UDP responder MAY recreate response packets fit in path MTU size,
  or with the TC bit set.</t>
  <t>UDP responders SHOULD limit the response size
  when UDP responders are located on small MTU (&lt;1500) networks.</t>
</list></t>

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

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

<t><list style="numbers">
  <t>UDP requestors SHOULD limit the requestor's maximum UDP payload size to
  the RECOMMENDED size of 1400 or a smaller size.</t>
  <t>UDP requestors MAY drop fragmented DNS/UDP responses without IP reassembly
  to avoid cache poisoning attacks.</t>
  <t>DNS responses may be dropped by IP fragmentation.
  Upon a timeout, 
  to avoid resolution failures,
  UDP requestors MAY retry using TCP
  or UDP with a smaller EDNS requestor's maximum UDP payload size
  per local policy.</t>
</list></t>

</section>
</section>
<section anchor="RecommendationOperators"><name>Recommendations for zone operators and DNS server operators</name>

<t>Large DNS responses are the result of zone configuration.
Zone operators SHOULD seek configurations resulting in small responses.
For example,</t>

<t><list style="numbers">
  <t>Use a smaller number of name servers (13 may be too large)</t>
  <t>Use a smaller number of A/AAAA RRs for a domain name</t>
  <t>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>Use a smaller signature / public key size algorithm for DNSSEC.
 Notably, the signature sizes of ECDSA and EdDSA are smaller than those usually used for RSA.</t>
</list></t>

</section>
<section anchor="considerations"><name>Considerations</name>

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

<t>Prior research <xref target="Fujiwara2018"></xref>
has shown that some authoritative servers
ignore the EDNS0 requestor's maximum UDP payload size, and return large UDP responses.</t>

<t>It is also well known that some authoritative servers do not
support TCP transport.</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>
<section anchor="iana"><name>IANA Considerations</name>
<t>This document has no IANA actions.</t>

</section>
<section anchor="securitycons"><name>Security Considerations</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 universally 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 (for any reason),
it increases the attack window for poisoning the requestor's cache.</t>

</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
and
Joe Touch
for extensive review and comments.</t>

</section>


  </middle>

  <back>


    <references title='Normative References'>



<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="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="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="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="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="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="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="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="BCP" value="219"/>
  <seriesInfo name="RFC" value="8499"/>
  <seriesInfo name="DOI" value="10.17487/RFC8499"/>
</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>




    </references>

    <references title='Informative References'>



<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>

<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="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="I-D.ietf-dnsop-glue-is-not-optional">
   <front>
      <title>DNS Glue Requirements in Referral Responses</title>
      <author fullname="Mark P. Andrews" initials="M. P." surname="Andrews">
         <organization>ISC</organization>
      </author>
      <author fullname="Shumon Huque" initials="S." surname="Huque">
         <organization>Salesforce</organization>
      </author>
      <author fullname="Paul Wouters" initials="P." surname="Wouters">
         <organization>Aiven</organization>
      </author>
      <author fullname="Duane Wessels" initials="D." surname="Wessels">
         <organization>Verisign</organization>
      </author>
      <date day="14" month="June" 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 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="Internet-Draft" value="draft-ietf-dnsop-glue-is-not-optional-09"/>
   
</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="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="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="I-D.ietf-dnsop-svcb-https">
   <front>
      <title>Service binding and parameter specification via the DNS (DNS SVCB and HTTPS RRs)</title>
      <author fullname="Benjamin M. Schwartz" initials="B. M." surname="Schwartz">
         <organization>Google</organization>
      </author>
      <author fullname="Mike Bishop" initials="M." surname="Bishop">
         <organization>Akamai Technologies</organization>
      </author>
      <author fullname="Erik Nygren" initials="E." surname="Nygren">
         <organization>Akamai Technologies</organization>
      </author>
      <date day="11" month="March" year="2023"/>
      <abstract>
	 <t>   This document specifies the &quot;SVCB&quot; and &quot;HTTPS&quot; 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 [HTTP].  By
   providing more information to the client before it attempts to
   establish a connection, these records offer potential benefits to
   both performance and privacy.

   TO BE REMOVED: This document is being collaborated on in Github at:
   https://github.com/MikeBishop/dns-alt-svc
   (https://github.com/MikeBishop/dns-alt-svc).  The most recent working
   version of the document, open issues, etc. should all be available
   there.  The authors (gratefully) accept pull requests.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-svcb-https-12"/>
   
</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="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 344?>

<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 path MTU discovery <xref target="RFC1191"></xref> to perform intentionally
fragmented responses from authoritative servers. <xref target="RFC7739"></xref> stated the
security implications of predictable fragment identification values.</t>

<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>

<t>In Section 3.2 (Message Side Guidelines) of UDP Usage Guidelines <xref target="RFC8085"></xref>
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, 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="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"></xref>).
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"></xref>.</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 authors' recommendation of default maximum DNS/UDP payload size is 1400.</t>
  <t><xref target="RFC4035"></xref> 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"></xref>,
minus 48 octets for the IPv6 and UDP headers.</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>

</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 nessesary RRs.
For delegations, see <xref target="I-D.ietf-dnsop-glue-is-not-optional"/>.
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, HTTTPS) require
additional A, AAAA, and SVCB records
in the Additional Section
defined in <xref target="RFC1035"/>, <xref target="RFC2782"/> and <xref target="I-D.ietf-dnsop-svcb-https"/>.</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="known-implementations"><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 fallback 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:
H4sIAAAAAAAAA71ca3PbOJb9jl+Bcj60XS0pkh+J492tHcWPxJ049lhO9+yk
UhmKhCS2KYJLkHaUlP/7nnsB8CU5zkzVTqrSkQgQuLi4j3Mf6n6/L4q4SNSR
PMuD+VKlRVDEOpXjOx1HQRoqGafy5MNEBNNpru6OZEAD/Vlzsoh0mAZLrBHl
wazox6qY9aPU6Ky/YXZ/tC+EKYI0+hIkOsVbRV4qIeIs54+m2B0OXw13RZCr
4EjqTOX8nhG390fyPC1Unqqif0JbiTAojuQ0zESICSo1pXHLmQJvLzH/9OZM
iCw+ElIWOjySK2Xsx0hlxeJI7uOb0Tmmz4wfNatl/VUEZbHQOS3Qx18JhmDk
3UCelX/G90Ee8EN7/nfBtzLVedwe0/n8SP4WZEEqr9U8BmkrOVH5XRwqI4/1
oCffF9GAp3ou/3Z1PeEHdA6FMx4v4pWOAnkW56aQr5NoPpCnAT6O9s56cq9/
2B/JD7FZxP134KzdN8dmOq3e7d+WPXmjb1eaR0MdgeLRcNQfDl8cuEdlCuIc
sfwoW/AV/Xo4knvyYHd0IA/3D0Y8pJZBnBzJmTvqX/7McjMI9eDPjFgla15d
DeTv8ddYNRh1FZRJ4yFzaPzHBGwJyzwuVk1mtPgwGu0Ph/J9IN9qHFNe6yCy
pOOlI/mH1pGJI9WTx+PGIV/tD1/stk/4MY0LFckJZBKXoGdyvFR5HAatQ4/k
i4Oh3Hu1h7+v9puHzkD/X3IVTYM8HYB6IXDtS8jpnSJ6r8+Ohy9fjdzH0aj6
uIvP7uPh7tA/fXFYTTgcvdyvJwz9x/1X1WuH9FHE6ayz4cuXe9Wc4eGB//jK
LvI6h1hAs0aHR/ZmnNZvnWicKJW/Bwn0nfTs11/lmc7lRVxc9K+ViZMYmiuv
3p1v2UuptIH+9N2/7qYvBm6j6rG97osgvy1Nd4xvHWanTBd6pnLotgFVZaEk
zmZFQeGhOyiM0o0KF6lO9Bz6c37TkydBvoQliYqefKMwKV2JzXTdDDA37hB1
EwfpV/ydt8b+fUSNB/JdouK0Q9Z4GRedgX8fTW8HcrIok2XQpeptsArWhv59
dEGw/gjiKFV5V7LicBGoZG30/4M0Whc6gl1Jj6xZgtGAjmAd2LRch0pFcTpn
g1IsFM+T4+MLLPlmMj6GsU9BjCK3ii2P9TIDRbmEVtCXZZnCArGvqw0htnmr
8m9Tlc+x2t5RS3nbPhurk/GDWZJXOjY61aX5CaWFHPod1kUx7479ywLTZNX5
6enpOjOa5yeWfFDFvc5v206huoA9Zk0S3AWhum2wJsjn5CgWRZGZo+fP8zhT
L14O6J8BcMPzLFfGc8w8390f9uOM8ElQFEF4O8iiWYvD51eyhV6knUcUAxX9
BHdhejyRXfsDy2vWB1lyw28D8KJ74C4br8+vTuWLl/ICrhFiRwzxwIMtffMk
FyowkHlwdg57D+AQBiEkNGNBwcvuYEaWhr6tndvBwCfP2wVG9Xk3g6PqyDXk
aZzwcnx9LPeGcOz5rVnorM2RV3RiUHWWBPOTYLU73B22zowhOcMY3lhJGt0o
IUCqNAlzWEBo3nOWLUBRneLraAMjiUe0PG0NW9FY/ofceTNwy3Z480bp2aw7
ZFHR1YfzYwCeqdm84m/k2iBInQV/04HuDGxabp3X+5t4faamA7nfo0OOhOj3
+8BmQGRBWAhxCjYMpUqDaULSxVzBsnewa4XGJyhyQhwHHDUZoXQvYh9PrgSp
eWzkPcxWspKA5IleKWDh9/wGlnqOWY03ERNUcqmiHr+/JqoLqJX6mmkDQ3iv
gttUGXoXEhxkWeJMjMxyjShAJ2YgzgsiAi+YGIcgsjlueUwJ5HQlkxhumk7h
aRMm/qbk/QIWrVqpx2bMxPMU6ApzySWkcBG0Q5nN8yCi0+glsYKe3RxfCXA1
xYp54dZKFaIEE+SrgbhZgErEWiURRPTTEY0syHPF/1vSxycoH9jLW8ZRlCDk
QjCV66gMecb3Z3Hj64P4L/ojBJ2XGIrgxd70JwdYP8slNg7S2CyZg/+aBAyc
/OBkqb7vCoK9YFpP02pWFgBIDdnftTOCYSnz+JQvqZzBvdhrwepGFcweeRck
pbIEgT4cgF/JgmIhL24+gkNnlXzxzm0BXAR3CvGhKdQyDhvS1cPugCJO7gQt
mSu6k0IzF2ilrsXlq4fe93lza38VYiixPVFKfv8OQAGOLi9nLTf/8MAQBgGq
dZ7WV0aqQGBiBjtCfHKw/7M05XIZ5GBARAct1jgm/I1jERoA1i9WRK2PshEv
NbzyQN6A/lpAAXLoWEuSzzki5eqOYD3KBHsGt0oGIcdcHhHpKUmGc/KGoq+I
ZJPJ86KNO4AmWEk2nTu2ghMXBjHF13hZLoEOeFhO6KK3LyaTHVxmDiOII/Qg
BYVQ4LslGzpLGxr3CsRioaCEeZ+lJLgn82JKmk30EL084GgH+8Bqps2+ZmiF
W8htCk2HFVNJQv/S3FmQQyOiX0DnZFITxHdF4zFxeAbHL3CXXvh60ujG1o5K
JiGEnE7xzwLSldK0gLX9VqmMJ/MZz68E7HUAw7LE5AT6FDhvx4vQ/YFguhYI
TXQXgKnz6nQqCQCRKY6mJzjkL0ZkJJFF/I14nhG8NcZtvMDiS+IUZLwES2lf
aC8YMEP4gtNpZ+2+FsIdZACxgkBB5LBRr63VZGEgfHCwsjoBn7tBFfE+YYgC
xxfPF26bc38bzFudsZjQu876atAJuLMkYVzqXNlUEcsgVBkKGi85BxBMdVlA
6KBGZMiYrCxYJTrAImCEIrF8xALTlcXLDMpaQUtrcMACRNjpL0WVXpPbJ2c7
YhoXW2xJKU3w2Vqzu33BFKe6gJgr+3L1mj2jfYkyA/6lF1JY206eUnhdJJ3S
eWQt8GaXgOvAcRPwJ1ImzOMpWTfcaqGFfcFevkw0e8+oZMd4ciZBu+XsMsB1
Q2xxc+ktzJYYV5Iso3jG9qmwVs7aQ7ImUAqIizXCIZuJKVkFWK9URYInk1mA
ccU9zeJ5abN/PRzHO5UcF0USucD9mx4pkNFLqFxZUFAXxSYkuVpVHv4/BF/Q
vd+Nlauc/qlCNkuBf9NkKoxnzth5aDJVK01yVWKXUGdKklcmUUBQGLuA8fuz
ov7mPKf1nmQwb9UKe+cwZVsXHyc3Wz37r/xwyZ+vT//68fz69IQ+T96O37+v
PtgZAl8uP7534/SpfvP48uLi9MOJfRlPZefRxfh/tlgNxNbl1c355Yfx+y1r
bptyTFYPVzt1VgkREhlJaKQXDDbR4tPr46vR/meWQMpj2U+UsPrMrtfqm07h
v+1X8HlFkEvBFhL4ShIRBllcQOjYXsJN3Keen1vX3l1uWd/GZsaa4EhZFSMo
QQDDedaBBA/YM5NmiPot2EqLwuPCarkVnB6JYJkbegKPrhMSJkiPxi659dCI
yHUKnliJsW4/4jV5R1Lsgdz+a6mJQyysHVAE/7t15ZRgi+SHTgDRYFdFesLa
QVIH3aEx1h1mDyuPmCLoVYq+GsgcYuNU4/jE2YDuA4JvHSE97pDiTAMTcd65
ZL4NSWIqK/pqVSGhCJMS64spuCGPYXUNFCGR63N5G0ppfu7VO1ohu3LuwlL4
PliBrY8sQGnMz7j2iyBdeQ/E+gekzHgFlBJM9PCgK6+RmpHBwCAj1KY2fnIJ
U1r+ik00zvEkpv/+LHNzuwpsGqbLZydyqytkywShMboNCmNw1nmip9iQwEIU
5Tb00BZkelg1AF0xHBD5R05xGBLDRBPDqye0B3kkzxw2PvylwYuBNTHAFgsd
PY3/Heu8VjNGOBLiunM8OlENexnofH/WmVQpnnmgmOKpP0KMBt01nTXjAIGI
q1A2Ik9iJZ3+JxwgeLC7tjYdtGEMueTDLhmc6XpkThGQW5ab3TI22HuMeLYY
pg5tnNd0mMBiIdqcoC97xKiOCwAOlw7EtsAG4Z7KoPTc2xVgZKCIhx5JNk5Z
LecD59aSVDnBUfbh+K1ItU5EEQQcIgd6Me45ikk+VZ5rMt4Re8V0zsQ4fGo3
YIwAdEqoZUqWNi28z2zGVZaE7dOLyZvJ+d9Pd/yx2jTAX5Gu5Yr2XmOp5WZ7
SVoHFLLm0Xo3x4xPDCmZOHjs1jh6d6DEbUKLkdxRDLlBlkg5ydAStqxwz/Z/
jg6Gw51KZweUNiJ9DAMCcHRDCpceVkrsqKMFy5SC5/kjbmTwI6V04rNRKf3Y
P6uU1ZobOPQT4lpod59NafSxE5fsQH1gWYd75mikobbV7iQAEexwI8mzIQvk
jcM5PYSnUstpsrIqbs3fI7lNq8gtU4MjrUhuadOMTOJqHShj5Y8ZpX4lYgWF
jXuyuRlDiZKt7AzBAyVZSSo3nAzACu7PhrCU62HRpXksvjV7Ti2JT/MdK2TK
e45MJ3G4ekRyvgHWuFo6UePTKg5R1wNdkbr0Iw2vaD1jlaLrpOecVpUJSz3v
20LyA/H3Ni2VG1C37ZnGrcMRv9e7arOBoDKl+hpQ3NWzokxKV3ExLZdTOtuM
U6LuqEZuj/b8pRda20TQjpXFR14fPx/jj7y+tqwEDrM1U1rWugbjMF6Q9Gtm
tM5C+eAJRSndMJETSoH8xb1fn++X9gI+smXzy/bF2OR3dTAIJAe5a3bTnajH
wTcIJ34yTF9SqwDuYOXcCYlcnPtofvv797VDPTzsWBfS5hWnODmGei6zcgo5
5KjHZlWSOQHxxZKZB4Inp8dQqQ+6QJi96jmI79+nV7h8dnp8MhkzVacRf6JB
t53L2pHfLU2JZyuLFGmD68kYFPpSmGPy92dh68GaMF+5UJH9eRJz4wsjQn7a
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
WoQubXrVO6vKR8E//h89Q2YuY0cAAA==

-->

</rfc>

