<?xml version="1.0" encoding="us-ascii"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.3.17 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc comments="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-dprive-dnsoquic-02" category="std">

  <front>
    <title abbrev="DNS over Dedicated QUIC">Specification of DNS over Dedicated QUIC Connections</title>

    <author initials="C." surname="Huitema" fullname="Christian Huitema">
      <organization>Private Octopus Inc.</organization>
      <address>
        <postal>
          <street>427 Golfcourse Rd</street>
          <city>Friday Harbor</city>
          <code>WA 98250</code>
          <country>U.S.A</country>
        </postal>
        <email>huitema@huitema.net</email>
      </address>
    </author>
    <author initials="A." surname="Mankin" fullname="Allison Mankin">
      <organization>Salesforce</organization>
      <address>
        <email>amankin@salesforce.com</email>
      </address>
    </author>
    <author initials="S." surname="Dickinson" fullname="Sara Dickinson">
      <organization>Sinodun IT</organization>
      <address>
        <postal>
          <street>Oxford Science Park</street>
          <city>Oxford</city>
          <code>OX4 4GA</code>
          <country>U.K.</country>
        </postal>
        <email>sara@sinodun.com</email>
      </address>
    </author>

    <date year="2021" month="February" day="22"/>

    <area>Transport</area>
    
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document describes the use of QUIC to provide transport privacy for DNS.
The encryption provided by QUIC has similar properties to that provided by TLS,
while QUIC transport eliminates the head-of-line blocking issues inherent with
TCP and provides more efficient error corrections than UDP. DNS over QUIC
(DoQ) has privacy properties similar to DNS over TLS (DoT) specified in RFC7858,
and latency characteristics similar to classic DNS over UDP.</t>



    </abstract>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>Domain Name System (DNS) concepts are specified in "Domain names - concepts
and facilities" <xref target="RFC1034"/>. The transmission of DNS queries and responses
over UDP and TCP is specified in "Domain names - implementation and
specification" <xref target="RFC1035"/>. This
document presents a mapping of the DNS protocol over the QUIC
transport <xref target="I-D.ietf-quic-transport"/> <xref target="I-D.ietf-quic-tls"/>. 
DNS over QUIC is referred here as DoQ, in line with the "Terminology for DNS
Transports and Location" <xref target="I-D.ietf-dnsop-terminology-ter"/>. The
goals of the DoQ mapping are:</t>

<t><list style="numbers">
  <t>Provide the same DNS privacy protection as DNS over TLS (DoT)
<xref target="RFC7858"/>. This includes an option for the client to 
authenticate the server by means of an authentication domain
name as specified in "Usage Profiles for DNS over TLS and DNS
over DTLS" <xref target="RFC8310"/>.</t>
  <t>Provide an improved level of source address validation for DNS
servers compared to classic DNS over UDP.</t>
  <t>Provide a transport that is not constrained by path MTU limitations on the 
size of DNS responses it can send.</t>
  <t>Explore the characteristics of using QUIC as a DNS
transport, versus other solutions like DNS over UDP <xref target="RFC1035"/>,
DoT <xref target="RFC7858"/>, or DNS over HTTPS (DoH) <xref target="RFC8484"/>.</t>
</list></t>

<t>In order to achieve these goals, the focus of this document is limited
to the "stub to recursive resolver" scenario also addressed by DoT <xref target="RFC7858"/>.
That is, the protocol described here works for queries and responses between
stub clients and recursive servers. The specific non-goals of this document are:</t>

<t><list style="numbers">
  <t>No attempt is made to support AXFR "DNS Zone Transfer Protocol (AXFR)"
<xref target="RFC5936"/> or IXFR "Incremental Zone Transfer in DNS" <xref target="RFC1885"/>, as these mechanisms
are not relevant to the stub to recursive resolver scenario. (This may change in
future versions of this draft. See <xref target="supporting-axfr"/> for a discussion of changes required
for AXFR support.)</t>
  <t>No attempt is made to evade potential blocking of DNS over QUIC
traffic by middleboxes.</t>
  <t>No attempt to support server initiated transactions, are these are not
relevant for the "stub to recursive resolver" scenario, see <xref target="no-server-initiated-transactions"/>.</t>
</list></t>

<t>Users interested in zone transfers should continue using TCP based
solutions and will also want to take note of work in progress to
support "DNS Zone Transfer-over-TLS" <xref target="I-D.ietf-dprive-xfr-over-tls"/>.</t>

<t>Specifying the transmission of an application over QUIC requires
specifying how the application's messages are mapped to QUIC streams, and
generally how the application will use QUIC.  This is done for HTTP
in "Hypertext Transfer Protocol Version 3 (HTTP/3)"<xref target="I-D.ietf-quic-http"/>.
The purpose of this document is to define
the way DNS messages can be transmitted over QUIC.</t>

<t>In this document, <xref target="design-considerations"/> presents the reasoning that guided
the proposed design. <xref target="specifications"/> specifies the actual mapping of DoQ.
<xref target="implementation-requirements"/> presents guidelines on the implementation, usage
and deployment of DoQ.</t>

</section>
<section anchor="key-words" title="Key Words">

<t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC8174"/>.</t>

</section>
<section anchor="document-work-via-github" title="Document work via GitHub">

<t>(THIS SECTION TO BE REMOVED BEFORE PUBLICATION) The Github repository for this
document is at https://github.com/huitema/dnsoquic.
Proposed text and editorial changes are very much welcomed there, but any
functional changes should always first be discussed on the IETF DPRIVE WG (dns-privacy) mailing list.</t>

</section>
<section anchor="design-considerations" title="Design Considerations">

<t>This section and its subsection present the design guidelines that
were used for DoQ.  This section is
informative in nature.</t>

<section anchor="scope-is-limited-to-the-stub-to-resolver-scenario" title="Scope is Limited to the Stub to Resolver Scenario">

<t>Usage scenarios for the DNS protocol can be broadly classified in three
groups: stub to recursive resolver, recursive resolver to
authoritative server, and server to server.  This design focuses only on the 
"stub to recursive resolver" scenario following the approach taken in
DoT <xref target="RFC7858"/> and "Usage Profiles for DNS over TLS and DNS over DTLS" <xref target="RFC8310"/>.</t>

<t>QUESTION: Should this document specify any aspects of configuration of
discoverability differently to DoT?</t>

<t>No attempt is made to address the recursive to authoritative scenarios.
Authoritative resolvers are discovered dynamically through NS records. It is
noted that at the time of writing work is ongoing in the DPRIVE working group to
attempt to address the analogous problem for DoT
<xref target="I-D.ietf-dprive-phase2-requirements"/>. In the absence of an agreed way for
authoritative to signal support for QUIC transport, recursive resolvers would
have to resort to some trial and error process. At this stage of QUIC
deployment, this would be mostly errors, and does not seem attractive. This
could change in the future.</t>

<t>The DNS protocol is also used for zone transfers. In the AXFR zone transfer scenario
<xref target="RFC5936"/>, the client emits a single AXFR query, and the server responds
with a series of AXFR responses. This creates a unique profile, in which a query
results in several responses. Supporting that profile would complicate the
mapping of DNS queries over QUIC streams. Zone transfers are not used in the
stub to recursive scenario that is the focus here, and seem to be currently well
served by using DNS over TCP. There is no attempt to support either AXFR or IXFR in
this proposed mapping of DNS to QUIC.</t>

</section>
<section anchor="provide-dns-privacy" title="Provide DNS Privacy">

<t>DoT <xref target="RFC7858"/> defines how
to mitigate some of the issues described in "DNS Privacy Considerations" <xref target="RFC7626"/> by specifying how to transmit
DNS messages over TLS.
The "Usage Profiles for DNS over TLS and DNS over DTLS" <xref target="RFC8310"/> specify
Strict and Opportunistic Usage Profiles for DoT
including how stub resolvers can authenticate recursive resolvers.</t>

<t>QUIC connection setup includes the negotiation of security parameters using TLS,
as specified in "Using TLS to Secure QUIC" <xref target="I-D.ietf-quic-tls"/>, enabling encryption of the QUIC
transport. Transmitting DNS messages over QUIC will provide essentially the same
privacy protections as DoT <xref target="RFC7858"/> including Strict and Opportunistic Usage Profiles
 <xref target="RFC8310"/>. Further discussion on this
is provided in <xref target="privacy-considerations"/>.</t>

</section>
<section anchor="design-for-minimum-latency" title="Design for Minimum Latency">

<t>QUIC is specifically designed to reduce the delay between HTTP
queries and HTTP responses.  This is achieved through three main
components:</t>

<t><list style="numbers">
  <t>Support for 0-RTT data during session resumption.</t>
  <t>Support for advanced error recovery procedures as specified in
"QUIC Loss Detection and Congestion Control" <xref target="I-D.ietf-quic-recovery"/>.</t>
  <t>Mitigation of head-of-line blocking by allowing parallel
delivery of data on multiple streams.</t>
</list></t>

<t>This mapping of DNS to QUIC will take advantage of these features in
three ways:</t>

<t><list style="numbers">
  <t>Optional support for sending 0-RTT data during session resumption
(the security and privacy implications of this are discussed 
in later sections).</t>
  <t>Long-lived QUIC connections over which multiple DNS transactions
are performed,
generating the sustained traffic required to benefit from
advanced recovery features.</t>
  <t>Fast resumption of QUIC connections to manage the disconnect-on-idle
feature of QUIC without incurring retransmission time-outs.</t>
  <t>Mapping of each DNS Query/Response transaction to a separate stream,
to mitigate head-of-line blocking. This enables servers to respond
to queries "out of order". It also enables clients to process
responses as soon as they arrive, without having to wait for in
order delivery of responses previously posted by the server.</t>
</list></t>

<t>These considerations will be reflected in the mapping of DNS traffic
to QUIC streams in <xref target="stream-mapping-and-usage"/>.</t>

</section>
<section anchor="no-specific-middlebox-bypass-mechanism" title="No Specific Middlebox Bypass Mechanism">

<t>The mapping of DNS over QUIC is defined for minimal overhead and
maximum performance. This means a different traffic profile than HTTP3 over 
QUIC. This difference can be
noted by firewalls and middleboxes.  There may be environments in
which HTTP3 over QUIC will be able to pass through, but DoQ will be
blocked by these middle boxes.</t>

</section>
<section anchor="no-server-initiated-transactions" title="No Server Initiated Transactions">

<t>As stated in <xref target="introduction"/>, this document does not specify support for
server initiated transactions because these are not relevant for the "stub to
recursive resolver" scenario. Note that "DNS Stateful Operations" (DSO)
<xref target="RFC8490"/> are only applicable for DNS over TCP and DNS over TLS. DSO is not
applicable to DNS over HTTP since HTTP has its own mechanism for managing
sessions, and this is incompatible with the DSO; the same is true for DNS over
QUIC.</t>

</section>
</section>
<section anchor="specifications" title="Specifications">

<section anchor="connection-establishment" title="Connection Establishment">

<t>DoQ connections are established as described in the QUIC transport specification
<xref target="I-D.ietf-quic-transport"/>.  During connection establishment, DoQ
support is indicated by selecting the ALPN token "doq" in the crypto
handshake.</t>

<section anchor="draft-version-identification" title="Draft Version Identification">

<t><spanx style="strong">RFC Editor's Note:</spanx> Please remove this section prior to
 publication of a final version of this document.</t>

<t>Only implementations of the final, published RFC can identify
themselves as "doq".  Until such an RFC exists, implementations MUST
NOT identify themselves using this string.</t>

<t>Implementations of draft versions of the protocol MUST add the string
"-" and the corresponding draft number to the identifier.  For
example, draft-ietf-dprive-dnsoquic-00 is identified using the
string "doq-i00".</t>

</section>
<section anchor="port-selection" title="Port Selection">

<t>By default, a DNS server that supports DoQ MUST listen for and
accept QUIC connections on the dedicated UDP port TBD (number to be
defined in <xref target="iana-considerations"/>), unless it has mutual
agreement with its clients to use a port other than TBD for DoQ.
In order to use a port other than TBD, both clients and
servers would need a configuration option in their software.</t>

<t>By default, a DNS client desiring to use DoQ with a
particular server MUST establish a QUIC connection to UDP port TBD on
the server, unless it has mutual agreement with its server to use a
port other than port TBD for DoQ.  Such another port MUST
NOT be port 53 or port 853.  This recommendation against use of port
53 for DoQ is to avoid confusion between DoQ and the use of
DNS over UDP <xref target="RFC1035"/>.  Similarly, using port 853
would cause confusion between DoQ and DNS over DTLS <xref target="RFC8094"/>.</t>

</section>
</section>
<section anchor="stream-mapping-and-usage" title="Stream Mapping and Usage">

<t>The mapping of DNS traffic over QUIC streams takes advantage of the
QUIC stream features detailed in Section 2 of the QUIC transport specification
<xref target="I-D.ietf-quic-transport"/>.</t>

<t>The stub to resolver DNS traffic follows a simple pattern in which
the client sends a query, and the server provides a response.  This design
specifies that for each subsequent query on a QUIC connection the client MUST 
select the next available client-initiated bidirectional stream, in
conformance with the QUIC transport specification <xref target="I-D.ietf-quic-transport"/>.</t>

<t>The client MUST send the DNS query over the selected stream, and MUST
indicate through the STREAM FIN mechanism that no further data will
be sent on that stream.</t>

<t>The server MUST send the response on the same stream, and MUST
indicate through the STREAM FIN mechanism that no further
data will be sent on that stream.</t>

<t>Therefore, a single client initiated DNS transaction consumes a single stream.
This means that the client's first query occurs on QUIC stream 0, the second on 4,
and so on.</t>

<section anchor="transaction-errors" title="Transaction Errors">

<t>Peers normally complete transactions by sending a DNS response on the
transaction's stream, including cases where the DNS response indicates a
DNS error. For example, a Server
Failure (SERVFAIL, <xref target="RFC1035"/>) SHOULD be notified to the initiator of
the transaction by sending back a response with the Response Code set
to SERVFAIL.</t>

<t>If a peer is incapable of sending a DNS response due to an internal
error, it may issue a QUIC Stream Reset with error code DOQ_INTERNAL_ERROR.
The corresponding transaction MUST be abandoned.</t>

</section>
</section>
<section anchor="doq-error-codes" title="DoQ Error Codes">

<t>The following error codes are defined for use when abruptly terminating streams,
aborting reading of streams, or immediately closing connections:</t>

<t><list style="hanging">
  <t hangText="DOQ_NO_ERROR (0x00):">
  No error.  This is used when the connection or stream needs to be closed, but
there is no error to signal.</t>
  <t hangText="DOQ_INTERNAL_ERROR (0x01):">
  The DoQ implementation encountered an internal error and is incapable of
pursuing the transaction or the connection</t>
</list></t>

</section>
<section anchor="connection-management" title="Connection Management">

<t>Section 10 of the QUIC transport specification <xref target="I-D.ietf-quic-transport"/>
specifies that connections can be closed in three ways:</t>

<t><list style="symbols">
  <t>idle timeout</t>
  <t>immediate close</t>
  <t>stateless reset</t>
</list></t>

<t>Clients and servers implementing DNS over QUIC SHOULD negotiate use of
the idle timeout. Closing on idle timeout is done without any packet exchange,
which minimizes protocol overhead. Per section 10.2 of the QUIC transport 
specification, the effective value of the idle timeout is  computed as the
minimum of the values advertised by the two endpoints. Practical
considerations on setting the idle timeout are discussed in
<xref target="resource-management-and-idle-timeout-values"/>.</t>

<t>Clients SHOULD monitor the idle time incurred on their connection to
the server, defined by the time spent since the last packet from
the server has been received. When a client prepares to send a new DNS
query to the server, it will check whether the idle time is sufficient
lower than the idle timer. If it is, the client will send the DNS
query over the existing connection. If not, the client will establish
a new connection and send the query over that connection.</t>

<t>Clients MAY discard their connection to the server before the idle
timeout expires. If they do that, they SHOULD close the connection
explicitly, using QUIC's CONNECTION_CLOSE mechanisms, and indicating
the Application reason "No Error".</t>

<t>Clients and servers MAY close the connection for a variety of other
reasons, indicated using QUIC's CONNECTION_CLOSE. Client and servers
that send packets over a connection discarded by their peer MAY
receive a stateless reset indication. If a connection fails,
all queries in progress over the connection MUST be considered failed,
and a Server Failure (SERVFAIL, <xref target="RFC1035"/>) SHOULD be notified
to the initiator of the transaction.</t>

</section>
<section anchor="connection-resume-and-0-rtt" title="Connection Resume and 0-RTT">

<t>A stub resolver MAY take advantage of the connection resume
mechanisms supported by QUIC transport <xref target="I-D.ietf-quic-transport"/> and
QUIC TLS <xref target="I-D.ietf-quic-tls"/>.  Stub resolvers SHOULD consider
potential privacy issues associated with session resume before
deciding to use this mechanism.  These privacy issues are detailed in
<xref target="privacy-issues-with-session-resume"/>.</t>

<t>When resuming a session, a stub resolver MAY take advantage of the
0-RTT mechanism supported by QUIC.  The 0-RTT mechanism MUST NOT be
used to send data that is not "replayable" transactions.  For
example, a stub resolver MAY transmit a Query as 0-RTT, but MUST NOT
transmit an Update.</t>

</section>
<section anchor="message-sizes" title="Message Sizes">

<t>DoQ Queries and Responses are sent
on QUIC streams, which in theory can carry up to 2^62 bytes. However, DNS
messages are restricted in practice to a maximum size of 65535 bytes.
This maximum size is enforced by the use of a two-octet message length
field in DNS over TCP <xref target="RFC1035"/> and DNS over TLS <xref target="RFC7858"/>, and
by the definition of the "application/dns-message" for DNS over HTTP
<xref target="RFC8484"/>. DoQ enforces the same restriction.</t>

<t>The flow control mechanism of QUIC control how much data can be sent
by QUIC nodes at a given time. The initial values of per stream
flow control parameters is defined by two transport parameters:</t>

<t><list style="symbols">
  <t>initial_max_stream_data_bidi_local: when set by the client, specifies
the amount of data that servers can send on a "response" stream without
waiting for a MAX_STREAM_DATA frame.</t>
  <t>initial_max_stream_data_bidi_remote: when set by the server, specifies
the amount of data that clients can send on a "query" stream without
waiting for a MAX_STREAM_DATA frame.</t>
</list></t>

<t>For better performance, it is RECOMMENDED that clients and servers set
each of these two parameters to a value of 65535 or greater.</t>

<t>The Extension Mechanisms for DNS (EDNS) <xref target="RFC6891"/> allow peers to specify
the UDP message size. This parameter is ignored by DoQ. DoQ implementations
always assume that the maximum message size is 65535 bytes.</t>

</section>
</section>
<section anchor="implementation-requirements" title="Implementation Requirements">

<section anchor="authentication" title="Authentication">

<t>For the stub to recursive resolver scenario, the authentication
requirements are the same as described in DoT <xref target="RFC7858"/> and
"Usage Profiles for DNS over TLS and DNS over DTLS"
<xref target="RFC8310"/>.  There is no need to
authenticate the client's identity in either scenario.</t>

</section>
<section anchor="fall-back-to-other-protocols-on-connection-failure" title="Fall Back to Other Protocols on Connection Failure">

<t>If the establishment of the DoQ connection fails, clients
SHOULD attempt to fall back to DoT and then potentially clear 
text, as specified in DoT <xref target="RFC7858"/> and 
"Usage Profiles for DNS over TLS and DNS over DTLS"
<xref target="RFC8310"/>, depending on their privacy
profile.</t>

<t>DNS clients SHOULD remember server IP addresses that don't support
DoQ, including timeouts, connection refusals, and QUIC
handshake failures, and not request DoQ from them for a
reasonable period (such as one hour per server).  DNS clients
following an out-of-band key-pinned privacy profile (<xref target="RFC7858"/>) MAY
be more aggressive about retrying DoQ connection failures.</t>

</section>
<section anchor="address-validation" title="Address Validation">

<t>Section 8 of the QUIC transport specification <xref target="I-D.ietf-quic-transport"/> defines Address Validation procedures
to avoid servers being used in address amplification attacks. DoQ implementations
MUST conform to this specification, which limits the worst case
amplification to a factor 3.</t>

<t>DoQ implementations SHOULD consider configuring servers to use
the Address Validation using Retry Packets procedure defined in
section 8.1.2 of the QUIC transport specification <xref target="I-D.ietf-quic-transport"/>). This procedure
imposes a 1-RTT delay for verifying the return routability of the
source address of a client, similar to the DNS Cookies mechanism
<xref target="RFC7873"/>.</t>

<t>DoQ implementations that configure Address Validation using Retry
Packets SHOULD implement the Address Validation for Future Connections
procedure defined in section 8.1.3 of the QUIC transport specification <xref target="I-D.ietf-quic-transport"/>).
This defines how servers can send NEW TOKEN frames to clients after the
client address is validated, in order to avoid the 1-RTT penalty during
subsequent connections by the client from the same address.</t>

</section>
<section anchor="dns-message-ids" title="DNS Message IDs">

<t>When sending queries over a QUIC connection, the DNS Message ID MUST be set to
zero.</t>

</section>
<section anchor="padding" title="Padding">

<t>There are mechanisms specified for padding individual DNS messages
in "The EDNS(0) Padding Option" <xref target="RFC7830"/> and for padding within QUIC
packets (see Section 8.6 of the QUIC transport specification <xref target="I-D.ietf-quic-transport"/>).</t>

<t>Implementations SHOULD NOT use DNS options for
padding individual DNS messages, because QUIC transport
MAY transmit multiple STREAM frames containing separate DNS messages in
a single QUIC packet. Instead, implementations SHOULD use QUIC PADDING frames
to align the packet length to a small set of fixed sizes, aligned with
the recommendations of the "Padding Policies
for Extension Mechanisms for DNS (EDNS(0))" <xref target="RFC8467"/>.</t>

</section>
<section anchor="connection-handling" title="Connection Handling">

<t>"DNS Transport over TCP - Implementation
Requirements" <xref target="RFC7766"/> provides updated
guidance on DNS over TCP, some of which is applicable to DoQ. This 
section attempts to specify which and how those considerations apply to DoQ.</t>

<section anchor="connection-reuse" title="Connection Reuse">

<t>Historic implementations of DNS stub resolvers are known to open and
close TCP connections for each DNS query. To avoid excess QUIC
connections, each with a single query, clients SHOULD reuse a single
QUIC connection to the recursive resolver.</t>

<t>In order to achieve performance on par with UDP, DNS clients SHOULD
send their queries concurrently over the QUIC streams on a QUIC connection.
That is, when a DNS client 
sends multiple queries to a server over a QUIC connection, it SHOULD NOT wait
for an outstanding reply before sending the next query.</t>

</section>
<section anchor="resource-management-and-idle-timeout-values" title="Resource Management and Idle Timeout Values">

<t>Proper management of established and idle connections is important to
the healthy operation of a DNS server.  An implementation of DoQ
SHOULD follow best practices similar to those specified for DNS over TCP
<xref target="RFC7766"/>, in particular with regard to:</t>

<t><list style="symbols">
  <t>Concurrent Connections (Section 6.2.2)</t>
  <t>Security Considerations (Section 10)</t>
</list></t>

<t>Failure to do so may lead to resource exhaustion and denial of service.</t>

<t>Clients that want to maintain long duration DoQ connections SHOULD use the idle
timeout mechanisms defined in Section 10.2 of the QUIC transport specification
<xref target="I-D.ietf-quic-transport"/>. Clients and servers MUST NOT send the
edns-tcp-keepalive EDNS(0) Option <xref target="RFC7828"/> in any messages sent on a DoQ
connection (because it is specific to the use of TCP/TLS as a transport). If any
message sent on a DoQ connection contains an edns-tcp-keepalive EDNS(0) Option,
this is a fatal error and the recipient of the defective message MUST forcibly
abort the connection immediately.</t>

<t>This document does not make specific recommendations for timeout
values on idle connections.  Clients and servers should reuse and/or
close connections depending on the level of available resources.
Timeouts may be longer during periods of low activity and shorter
during periods of high activity.</t>

<t>Clients that are willing to use QUIC's 0-RTT mechanism can reestablish
connections and send transactions on the new connection with minimal
delay overhead. These clients MAY chose low values of the idle timer.</t>

</section>
</section>
<section anchor="processing-queries-in-parallel" title="Processing Queries in Parallel">

<t>As specified in Section 7 of "DNS Transport over TCP - Implementation
Requirements" <xref target="RFC7766"/>, resolvers are RECOMMENDED to
support the preparing of responses in parallel and sending them out
of order. In DoQ, they do that by sending responses on their specific
stream as soon as possible, without waiting for availability of responses
for previously opened streams.</t>

</section>
<section anchor="flow-control-mechanisms" title="Flow Control Mechanisms">

<t>Servers and Clients manage flow control as specified in QUIC.</t>

<t>Servers MAY use the "maximum stream ID" option of the QUIC
transport to limit the number of streams opened by the
client. This mechanism will effectively limit the number of 
DNS queries that a client can send on a single DoQ connection.</t>

</section>
</section>
<section anchor="implementation-status" title="Implementation Status">

<t>(THIS SECTION TO BE REMOVED BEFORE PUBLICATION) This section records the status
of known implementations of the protocol defined by this specification at the
time of posting of this Internet-Draft, and is based on a proposal described in
<xref target="RFC7942"/>.</t>

<t><list style="numbers">
  <t>AdGuard launched a DoQ recursive resolver service in December 2020. They have
released a suite of open source tools that support DoQ:
  <list style="numbers">
      <t><eref target="https://github.com/AdguardTeam/DnsLibs">AdGuard C++ DNS libraries</eref> A DNS proxy
library that supports all existing DNS protocols including DNS-over-TLS, DNS-over-HTTPS,
DNSCrypt and DNS-over-QUIC (experimental).</t>
      <t><eref target="https://github.com/AdguardTeam/dnsproxy">DNS Proxy</eref> A simple DNS proxy server that supports
all existing DNS protocols including DNS-over-TLS, DNS-over-HTTPS, DNSCrypt, and DNS-over-QUIC.
Moreover, it can work as a DNS-over-HTTPS, DNS-over-TLS or DNS-over-QUIC server.</t>
      <t><eref target="https://github.com/AdguardTeam/coredns">CoreDNS fork for AdGuard DNS</eref> Includes DNS-over-QUIC
server-side support.</t>
      <t><eref target="https://github.com/ameshkov/dnslookup">dnslookup</eref> Simple command line utility to make DNS lookups.
Supports all known DNS protocols: plain DNS, DoH, DoT, DoQ, DNSCrypt.</t>
    </list></t>
  <t><eref target="https://github.com/private-octopus/quicdoq">Quicdoq</eref> Quicdoq is a simple open
source implementation of DNS over Quic. It is written in C, based on
<eref target="https://github.com/private-octopus/picoquic">Picoquic</eref>.</t>
  <t><eref target="https://github.com/DNS-OARC/flamethrower/tree/dns-over-quic">Flamethrower</eref> is an open source
DNS performance and functional testing utility written in C++ that has an experimental implementation of DoQ.</t>
  <t><eref target="https://github.com/aiortc/aioquic">aioquic</eref> is an implementation of QUIC in Python. It includes
example client and server for DNS over QUIC.</t>
</list></t>

<section anchor="performance-measurements" title="Performance Measurements">

<t>To our knowledge, no benchmarking studies comparing DoT, DoH and DoQ are published yet. However anecdotal
evidence from the <eref target="https://adguard.com/en/blog/dns-over-quic.html">AdGuard DoQ recursive resolver deployment</eref>
indicates that it performs well compared to the other encrypted protocols, particularly in mobile environments.
Reasons given for this include that DoQ</t>

<t><list style="symbols">
  <t>Uses less bandwidth due to a more efficient handshake (and due to less per message overhead when compared to DoH).</t>
  <t>Performs better in mobile environments due to the increased resilience to packet loss</t>
  <t>Can maintain connections as users move between mobile networks via its connection management</t>
</list></t>

</section>
</section>
<section anchor="security-considerations" title="Security Considerations">

<t>The security considerations of DoQ should be comparable to
those of DoT <xref target="RFC7858"/>.</t>

</section>
<section anchor="privacy-considerations" title="Privacy Considerations">

<t>DoQ is specifically designed to protect the DNS traffic
between stub and resolver from observations by third parties, and
thus protect the privacy of queries sent by the stub.  However, the recursive
resolver has full visibility of the stub's traffic, and could be used
as an observation point, as discussed in the revision of "DNS Privacy
Considerations" <xref target="I-D.ietf-dprive-rfc7626-bis"/>. These considerations
do not differ between DoT and DoQ and are not discussed
further here.</t>

<t>QUIC incorporates the mechanisms of TLS 1.3 <xref target="RFC8446"/> and
this enables QUIC transmission of "0-RTT" data.  This can
provide interesting latency gains, but it raises two concerns:</t>

<t><list style="numbers">
  <t>Adversaries could replay the 0-RTT data and infer its content
from the behavior of the receiving server.</t>
  <t>The 0-RTT mechanism relies on TLS resume, which can provide
linkability between successive client sessions.</t>
</list></t>

<t>These issues are developed in <xref target="privacy-issues-with-0-rtt-data"/> and 
<xref target="privacy-issues-with-session-resume"/>.</t>

<section anchor="privacy-issues-with-0-rtt-data" title="Privacy Issues With 0-RTT data">

<t>The 0-RTT data can be replayed by adversaries.  That data may
trigger queries by a recursive resolver to authoritative
resolvers.  Adversaries may be able to pick a time at which the
recursive resolver outgoing traffic is observable, and thus find out
what name was queried for in the 0-RTT data.</t>

<t>This risk is in fact a subset of the general problem of observing the
behavior of the recursive resolver discussed in "DNS Privacy Considerations" <xref target="RFC7626"/>. The
attack is partially mitigated by reducing the observability of this
traffic.  However, the risk is amplified for 0-RTT data, because the
attacker might replay it at chosen times, several times.</t>

<t>The recommendation for TLS 1.3 <xref target="RFC8446"/> is that the capability to
use 0-RTT data should be turned off by default, and only enabled if
the user clearly understands the associated risks.</t>

<t>QUESTION: Should 0-RTT only be used with Opportunistic profiles (i.e.
disabled by default for Strict only)?</t>

</section>
<section anchor="privacy-issues-with-session-resume" title="Privacy Issues With Session Resume">

<t>The QUIC session resume mechanism reduces the cost of re-establishing
sessions and enables 0-RTT data.  There is a linkability issue
associated with session resume, if the same resume token is used
several times, but this risk is mitigated by the mechanisms
incorporated in QUIC and in TLS 1.3.  With these mechanisms, clients
and servers can cooperate to avoid linkability by third parties.
However, the server will always be able to link the resumed session
to the initial session.  This creates a virtual long duration
session.  The series of queries in that session can be used by the
server to identify the client.</t>

<t>Enabling the server to link client sessions through session resume is
probably not a large additional risk if the client's connectivity did
not change between the sessions, since the two sessions can probably
be correlated by comparing the IP addresses.  On the other hand, if
the addresses did change, the client SHOULD consider whether the
linkability risk exceeds the performance benefits.  This evaluation will
obviously depend on the level of trust between stub and recursive.</t>

</section>
<section anchor="traffic-analysis" title="Traffic Analysis">

<t>Even though QUIC packets are encrypted, adversaries can gain information from
observing packet lengths, in both queries and responses, as well as packet
timing. Many DNS requests are emitted by web browsers. Loading a specific
web page may require resolving dozen of DNS names. If an application
adopts a simple mapping of one query or response per packet, or "one 
QUIC STREAM frame per packet", then the succession of packet lengths may
provide enough information to identify the requested site.</t>

<t>Implementations SHOULD use the mechanisms defined in <xref target="padding"/> to
mitigate this attack.</t>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<section anchor="registration-of-doq-identification-string" title="Registration of DoQ Identification String">

<t>This document creates a new registration for the identification of
   DoQ in the "Application Layer Protocol Negotiation (ALPN)
   Protocol IDs" registry <xref target="RFC7301"/>.</t>

<t>The "doq" string identifies DoQ:</t>

<t>Protocol:  DoQ</t>

<t>Identification Sequence:  0x64 0x6F 0x71 ("doq")</t>

<t>Specification:  This document</t>

</section>
<section anchor="reservation-of-dedicated-port" title="Reservation of Dedicated Port">

<t>IANA is required to add the following value to the "Service Name and
   Transport Protocol Port Number Registry" in the System Range.  The
   registry for that range requires IETF Review or IESG Approval
   <xref target="RFC6335"/>, and such a review was requested using the early allocation
   process <xref target="RFC7120"/> for the well-known UDP port in this document. Since
   port 853 is reserved for 'DNS query-response protocol run over TLS' 
   consideration is requested for reserving port 8853 for 'DNS query-response<vspace />
   protocol run over QUIC'.</t>

<figure><artwork><![CDATA[
   Service Name           dns-over-quic
   Port Number            8853
   Transport Protocol(s)  UDP
   Assignee               IESG
   Contact                IETF Chair
   Description            DNS query-response protocol run over QUIC
   Reference              This document
]]></artwork></figure>

<section anchor="port-number-8853-for-experimentations" title="Port number 8853 for experimentations">

<t><spanx style="strong">RFC Editor's Note:</spanx> Please remove this section prior to
 publication of a final version of this document.</t>

<t>Early experiments MAY use port 8853. This port is marked in the IANA 
registry as unassigned.</t>

<t>(Note that prior to version -02 of this draft, experiments were directed to use port 784.)</t>

</section>
</section>
</section>
<section anchor="acknowledgements" title="Acknowledgements">

<t>This document liberally borrows text from the HTTP-3 specification <xref target="I-D.ietf-quic-http"/>
edited by Mike Bishop, and from the DoT specification <xref target="RFC7858"/> authored by Zi Hu, Liang
Zhu, John Heidemann, Allison Mankin, Duane Wessels, and Paul Hoffman.</t>

<t>The privacy issue with 0-RTT data and session resume were analyzed by
Daniel Kahn Gillmor (DKG) in a message to the IETF "DPRIVE" working
group <xref target="DNS0RTT"/>.</t>

<t>Thanks to Tony Finch for an extensive review of the initial version of this draft.
Reviews by Paul Hoffman and interoperability tests conducted by Stephane Bortzmeyer
helped improve the definition of the protocol.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC1034" target='https://www.rfc-editor.org/info/rfc1034'>
<front>
<title>Domain names - concepts and facilities</title>
<author initials='P.V.' surname='Mockapetris' fullname='P.V. Mockapetris'><organization /></author>
<date year='1987' month='November' />
<abstract><t>This RFC is the revised basic definition of The Domain Name System.  It obsoletes RFC-882.  This memo describes the domain style names and their used for host address look up and electronic mail forwarding.  It discusses the clients and servers in the domain name system and the protocol used between them.</t></abstract>
</front>
<seriesInfo name='STD' value='13'/>
<seriesInfo name='RFC' value='1034'/>
<seriesInfo name='DOI' value='10.17487/RFC1034'/>
</reference>



<reference  anchor="RFC1035" target='https://www.rfc-editor.org/info/rfc1035'>
<front>
<title>Domain names - implementation and specification</title>
<author initials='P.V.' surname='Mockapetris' fullname='P.V. Mockapetris'><organization /></author>
<date year='1987' month='November' />
<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="I-D.ietf-quic-transport">
<front>
<title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>

<author initials='J' surname='Iyengar' fullname='Jana Iyengar'>
    <organization />
</author>

<author initials='M' surname='Thomson' fullname='Martin Thomson'>
    <organization />
</author>

<date month='January' day='14' year='2021' />

<abstract><t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration.  QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.  DO NOT DEPLOY THIS VERSION OF QUIC  DO NOT DEPLOY THIS VERSION OF QUIC UNTIL IT IS IN AN RFC.  This version is still a work in progress.  For trial deployments, please use earlier versions.  Note to Readers  Discussion of this draft takes place on the QUIC working group mailing list (quic@ietf.org (mailto:quic@ietf.org)), which is archived at https://mailarchive.ietf.org/arch/search/?email_list=quic  Working Group information can be found at https://github.com/quicwg; source code and issues list for this draft can be found at https://github.com/quicwg/base-drafts/labels/-transport.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-quic-transport-34' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-quic-transport-34.txt' />
</reference>



<reference anchor="I-D.ietf-quic-tls">
<front>
<title>Using TLS to Secure QUIC</title>

<author initials='M' surname='Thomson' fullname='Martin Thomson'>
    <organization />
</author>

<author initials='S' surname='Turner' fullname='Sean Turner'>
    <organization />
</author>

<date month='January' day='14' year='2021' />

<abstract><t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.  Note to Readers  Discussion of this draft takes place on the QUIC working group mailing list (quic@ietf.org), which is archived at https://mailarchive.ietf.org/arch/search/?email_list=quic.  Working Group information can be found at https://github.com/quicwg; source code and issues list for this draft can be found at https://github.com/quicwg/base-drafts/labels/-tls.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-quic-tls-34' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-quic-tls-34.txt' />
</reference>



<reference anchor="I-D.ietf-dnsop-terminology-ter">
<front>
<title>Terminology for DNS Transports and Location</title>

<author initials='P' surname='Hoffman' fullname='Paul Hoffman'>
    <organization />
</author>

<date month='August' day='3' year='2020' />

<abstract><t>This document adds terms and abbreviations to "DNS Terminology" (RFC 8499) that relate to DNS running over various transports, as well as terms and abbreviations for DNS resolution at traditional and non- traditional locations.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-dnsop-terminology-ter-02' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-dnsop-terminology-ter-02.txt' />
</reference>



<reference  anchor="RFC7858" target='https://www.rfc-editor.org/info/rfc7858'>
<front>
<title>Specification for DNS over Transport Layer Security (TLS)</title>
<author initials='Z.' surname='Hu' fullname='Z. Hu'><organization /></author>
<author initials='L.' surname='Zhu' fullname='L. Zhu'><organization /></author>
<author initials='J.' surname='Heidemann' fullname='J. Heidemann'><organization /></author>
<author initials='A.' surname='Mankin' fullname='A. Mankin'><organization /></author>
<author initials='D.' surname='Wessels' fullname='D. Wessels'><organization /></author>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<date year='2016' month='May' />
<abstract><t>This document describes the use of Transport Layer Security (TLS) to provide privacy for DNS.  Encryption provided by TLS eliminates opportunities for eavesdropping and on-path tampering with DNS queries in the network, such as discussed in RFC 7626.  In addition, this document specifies two usage profiles for DNS over TLS and provides advice on performance considerations to minimize overhead from using TCP and TLS with DNS.</t><t>This document focuses on securing stub-to-recursive traffic, as per the charter of the DPRIVE Working Group.  It does not prevent future applications of the protocol to recursive-to-authoritative traffic.</t></abstract>
</front>
<seriesInfo name='RFC' value='7858'/>
<seriesInfo name='DOI' value='10.17487/RFC7858'/>
</reference>



<reference  anchor="RFC8310" target='https://www.rfc-editor.org/info/rfc8310'>
<front>
<title>Usage Profiles for DNS over TLS and DNS over DTLS</title>
<author initials='S.' surname='Dickinson' fullname='S. Dickinson'><organization /></author>
<author initials='D.' surname='Gillmor' fullname='D. Gillmor'><organization /></author>
<author initials='T.' surname='Reddy' fullname='T. Reddy'><organization /></author>
<date year='2018' month='March' />
<abstract><t>This document discusses usage profiles, based on one or more authentication mechanisms, which can be used for DNS over Transport Layer Security (TLS) or Datagram TLS (DTLS).  These profiles can increase the privacy of DNS transactions compared to using only cleartext DNS.  This document also specifies new authentication mechanisms -- it describes several ways that a DNS client can use an authentication domain name to authenticate a (D)TLS connection to a DNS server.  Additionally, it defines (D)TLS protocol profiles for DNS clients and servers implementing DNS over (D)TLS.  This document updates RFC 7858.</t></abstract>
</front>
<seriesInfo name='RFC' value='8310'/>
<seriesInfo name='DOI' value='10.17487/RFC8310'/>
</reference>



<reference  anchor="RFC8484" target='https://www.rfc-editor.org/info/rfc8484'>
<front>
<title>DNS Queries over HTTPS (DoH)</title>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<author initials='P.' surname='McManus' fullname='P. McManus'><organization /></author>
<date year='2018' month='October' />
<abstract><t>This document defines a protocol for sending DNS queries and getting DNS responses over HTTPS.  Each DNS query-response pair is mapped into an HTTP exchange.</t></abstract>
</front>
<seriesInfo name='RFC' value='8484'/>
<seriesInfo name='DOI' value='10.17487/RFC8484'/>
</reference>



<reference  anchor="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<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="RFC6891" target='https://www.rfc-editor.org/info/rfc6891'>
<front>
<title>Extension Mechanisms for DNS (EDNS(0))</title>
<author initials='J.' surname='Damas' fullname='J. Damas'><organization /></author>
<author initials='M.' surname='Graff' fullname='M. Graff'><organization /></author>
<author initials='P.' surname='Vixie' fullname='P. Vixie'><organization /></author>
<date year='2013' month='April' />
<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 (&quot;Binary Labels in the Domain Name System&quot;) 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="RFC7873" target='https://www.rfc-editor.org/info/rfc7873'>
<front>
<title>Domain Name System (DNS) Cookies</title>
<author initials='D.' surname='Eastlake 3rd' fullname='D. Eastlake 3rd'><organization /></author>
<author initials='M.' surname='Andrews' fullname='M. Andrews'><organization /></author>
<date year='2016' month='May' />
<abstract><t>DNS Cookies are a lightweight DNS transaction security mechanism that provides limited protection to DNS servers and clients against a variety of increasingly common denial-of-service and amplification/ forgery or cache poisoning attacks by off-path attackers.  DNS Cookies are tolerant of NAT, NAT-PT (Network Address Translation - Protocol Translation), and anycast and can be incrementally deployed. (Since DNS Cookies are only returned to the IP address from which they were originally received, they cannot be used to generally track Internet users.)</t></abstract>
</front>
<seriesInfo name='RFC' value='7873'/>
<seriesInfo name='DOI' value='10.17487/RFC7873'/>
</reference>



<reference  anchor="RFC7766" target='https://www.rfc-editor.org/info/rfc7766'>
<front>
<title>DNS Transport over TCP - Implementation Requirements</title>
<author initials='J.' surname='Dickinson' fullname='J. Dickinson'><organization /></author>
<author initials='S.' surname='Dickinson' fullname='S. Dickinson'><organization /></author>
<author initials='R.' surname='Bellis' fullname='R. Bellis'><organization /></author>
<author initials='A.' surname='Mankin' fullname='A. Mankin'><organization /></author>
<author initials='D.' surname='Wessels' fullname='D. Wessels'><organization /></author>
<date year='2016' month='March' />
<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="RFC7301" target='https://www.rfc-editor.org/info/rfc7301'>
<front>
<title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
<author initials='S.' surname='Friedl' fullname='S. Friedl'><organization /></author>
<author initials='A.' surname='Popov' fullname='A. Popov'><organization /></author>
<author initials='A.' surname='Langley' fullname='A. Langley'><organization /></author>
<author initials='E.' surname='Stephan' fullname='E. Stephan'><organization /></author>
<date year='2014' month='July' />
<abstract><t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t></abstract>
</front>
<seriesInfo name='RFC' value='7301'/>
<seriesInfo name='DOI' value='10.17487/RFC7301'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="DNS0RTT" target="https://www.ietf.org/mail-archive/web/dns-privacy/current/msg01276.html">
  <front>
    <title>DNS + 0-RTT</title>
    <author initials="D." surname="Kahn Gillmor" fullname="Daniel Kahn Gillmor">
      <organization></organization>
    </author>
    <date year="2016" month="April" day="06"/>
  </front>
  <seriesInfo name="Message" value="to DNS-Privacy WG mailing list"/>
</reference>




<reference  anchor="RFC5936" target='https://www.rfc-editor.org/info/rfc5936'>
<front>
<title>DNS Zone Transfer Protocol (AXFR)</title>
<author initials='E.' surname='Lewis' fullname='E. Lewis'><organization /></author>
<author initials='A.' surname='Hoenes' fullname='A. Hoenes' role='editor'><organization /></author>
<date year='2010' month='June' />
<abstract><t>The standard means within the Domain Name System protocol for maintaining coherence among a zone's authoritative name servers consists of three mechanisms.  Authoritative Transfer (AXFR) is one of the mechanisms and is defined in RFC 1034 and RFC 1035.</t><t>The definition of AXFR has proven insufficient in detail, thereby forcing implementations intended to be compliant to make assumptions, impeding interoperability.  Yet today we have a satisfactory set of implementations that do interoperate.  This document is a new definition of AXFR -- new in the sense that it records an accurate definition of an interoperable AXFR mechanism.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5936'/>
<seriesInfo name='DOI' value='10.17487/RFC5936'/>
</reference>



<reference  anchor="RFC1885" target='https://www.rfc-editor.org/info/rfc1885'>
<front>
<title>Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6)</title>
<author initials='A.' surname='Conta' fullname='A. Conta'><organization /></author>
<author initials='S.' surname='Deering' fullname='S. Deering'><organization /></author>
<date year='1995' month='December' />
<abstract><t>This document specifies a set of Internet Control Message Protocol (ICMP) messages for use with version 6 of the Internet Protocol (IPv6). [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='1885'/>
<seriesInfo name='DOI' value='10.17487/RFC1885'/>
</reference>



<reference anchor="I-D.ietf-dprive-xfr-over-tls">
<front>
<title>DNS Zone Transfer-over-TLS</title>

<author initials='W' surname='Toorop' fullname='Willem Toorop'>
    <organization />
</author>

<author initials='S' surname='Dickinson' fullname='Sara Dickinson'>
    <organization />
</author>

<author initials='S' surname='Sahib' fullname='Shivan Sahib'>
    <organization />
</author>

<author initials='P' surname='Aras' fullname='Pallavi Aras'>
    <organization />
</author>

<author initials='A' surname='Mankin' fullname='Allison Mankin'>
    <organization />
</author>

<date month='January' day='20' year='2021' />

<abstract><t>DNS zone transfers are transmitted in clear text, which gives attackers the opportunity to collect the content of a zone by eavesdropping on network connections.  The DNS Transaction Signature (TSIG) mechanism is specified to restrict direct zone transfer to authorized clients only, but it does not add confidentiality.  This document specifies use of TLS, rather then clear text, to prevent zone content collection via passive monitoring of zone transfers: XFR-over-TLS (XoT).  Additionally, this specification updates RFC1995, RFC5936 and RFC7766.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-dprive-xfr-over-tls-05' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-dprive-xfr-over-tls-05.txt' />
</reference>



<reference anchor="I-D.ietf-quic-http">
<front>
<title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>

<author initials='M' surname='Bishop' fullname='Mike Bishop'>
    <organization />
</author>

<date month='December' day='15' year='2020' />

<abstract><t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment.  This document describes a mapping of HTTP semantics over QUIC.  This document also identifies HTTP/2 features that are subsumed by QUIC, and describes how HTTP/2 extensions can be ported to HTTP/3.  DO NOT DEPLOY THIS VERSION OF HTTP  DO NOT DEPLOY THIS VERSION OF HTTP/3 UNTIL IT IS IN AN RFC.  This version is still a work in progress.  For trial deployments, please use earlier versions.  Note to Readers  Discussion of this draft takes place on the QUIC working group mailing list (quic@ietf.org), which is archived at https://mailarchive.ietf.org/arch/search/?email_list=quic.  Working Group information can be found at https://github.com/quicwg; source code and issues list for this draft can be found at https://github.com/quicwg/base-drafts/labels/-http.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-quic-http-33' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-quic-http-33.txt' />
</reference>



<reference anchor="I-D.ietf-dprive-phase2-requirements">
<front>
<title>DNS Privacy Requirements for Exchanges between Recursive Resolvers and Authoritative Servers</title>

<author initials='J' surname='Livingood' fullname='Jason Livingood'>
    <organization />
</author>

<author initials='A' surname='Mayrhofer' fullname='Alexander Mayrhofer'>
    <organization />
</author>

<author initials='B' surname='Overeinder' fullname='Benno Overeinder'>
    <organization />
</author>

<date month='November' day='2' year='2020' />

<abstract><t>This document describes requirements and considerations for adding confidentiality to DNS exchanges between recursive resolvers and authoritative servers.  The intent of this document is to guide Internet Drafts in the DNS Private Exchange (DPRIVE) Working Group pertaining to recursive to authorized name servers, with the stated requirements and considerations.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-dprive-phase2-requirements-02' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-dprive-phase2-requirements-02.txt' />
</reference>



<reference  anchor="RFC7626" target='https://www.rfc-editor.org/info/rfc7626'>
<front>
<title>DNS Privacy Considerations</title>
<author initials='S.' surname='Bortzmeyer' fullname='S. Bortzmeyer'><organization /></author>
<date year='2015' month='August' />
<abstract><t>This document describes the privacy issues associated with the use of the DNS by Internet users.  It is intended to be an analysis of the present situation and does not prescribe solutions.</t></abstract>
</front>
<seriesInfo name='RFC' value='7626'/>
<seriesInfo name='DOI' value='10.17487/RFC7626'/>
</reference>



<reference anchor="I-D.ietf-quic-recovery">
<front>
<title>QUIC Loss Detection and Congestion Control</title>

<author initials='J' surname='Iyengar' fullname='Jana Iyengar'>
    <organization />
</author>

<author initials='I' surname='Swett' fullname='Ian Swett'>
    <organization />
</author>

<date month='January' day='14' year='2021' />

<abstract><t>This document describes loss detection and congestion control mechanisms for QUIC.  Note to Readers  Discussion of this draft takes place on the QUIC working group mailing list (quic@ietf.org (mailto:quic@ietf.org)), which is archived at https://mailarchive.ietf.org/arch/ search/?email_list=quic.  Working Group information can be found at https://github.com/quicwg; source code and issues list for this draft can be found at https://github.com/quicwg/base-drafts/labels/-recovery.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-quic-recovery-34' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-quic-recovery-34.txt' />
</reference>



<reference  anchor="RFC8490" target='https://www.rfc-editor.org/info/rfc8490'>
<front>
<title>DNS Stateful Operations</title>
<author initials='R.' surname='Bellis' fullname='R. Bellis'><organization /></author>
<author initials='S.' surname='Cheshire' fullname='S. Cheshire'><organization /></author>
<author initials='J.' surname='Dickinson' fullname='J. Dickinson'><organization /></author>
<author initials='S.' surname='Dickinson' fullname='S. Dickinson'><organization /></author>
<author initials='T.' surname='Lemon' fullname='T. Lemon'><organization /></author>
<author initials='T.' surname='Pusateri' fullname='T. Pusateri'><organization /></author>
<date year='2019' month='March' />
<abstract><t>This document defines a new DNS OPCODE for DNS Stateful Operations (DSO).  DSO messages communicate operations within persistent stateful sessions using Type Length Value (TLV) syntax.  Three TLVs are defined that manage session timeouts, termination, and encryption padding, and a framework is defined for extensions to enable new stateful operations.  This document updates RFC 1035 by adding a new DNS header OPCODE that has both different message semantics and a new result code.  This document updates RFC 7766 by redefining a session, providing new guidance on connection reuse, and providing a new mechanism for handling session idle timeouts.</t></abstract>
</front>
<seriesInfo name='RFC' value='8490'/>
<seriesInfo name='DOI' value='10.17487/RFC8490'/>
</reference>



<reference  anchor="RFC8094" target='https://www.rfc-editor.org/info/rfc8094'>
<front>
<title>DNS over Datagram Transport Layer Security (DTLS)</title>
<author initials='T.' surname='Reddy' fullname='T. Reddy'><organization /></author>
<author initials='D.' surname='Wing' fullname='D. Wing'><organization /></author>
<author initials='P.' surname='Patil' fullname='P. Patil'><organization /></author>
<date year='2017' month='February' />
<abstract><t>DNS queries and responses are visible to network elements on the path between the DNS client and its server.  These queries and responses can contain privacy-sensitive information, which is valuable to protect.</t><t>This document proposes the use of Datagram Transport Layer Security (DTLS) for DNS, to protect against passive listeners and certain active attacks.  As latency is critical for DNS, this proposal also discusses mechanisms to reduce DTLS round trips and reduce the DTLS handshake size.  The proposed mechanism runs over port 853.</t></abstract>
</front>
<seriesInfo name='RFC' value='8094'/>
<seriesInfo name='DOI' value='10.17487/RFC8094'/>
</reference>



<reference  anchor="RFC7830" target='https://www.rfc-editor.org/info/rfc7830'>
<front>
<title>The EDNS(0) Padding Option</title>
<author initials='A.' surname='Mayrhofer' fullname='A. Mayrhofer'><organization /></author>
<date year='2016' month='May' />
<abstract><t>This document specifies the EDNS(0) &quot;Padding&quot; option, which allows DNS clients and servers to pad request and response messages by a variable number of octets.</t></abstract>
</front>
<seriesInfo name='RFC' value='7830'/>
<seriesInfo name='DOI' value='10.17487/RFC7830'/>
</reference>



<reference  anchor="RFC8467" target='https://www.rfc-editor.org/info/rfc8467'>
<front>
<title>Padding Policies for Extension Mechanisms for DNS (EDNS(0))</title>
<author initials='A.' surname='Mayrhofer' fullname='A. Mayrhofer'><organization /></author>
<date year='2018' month='October' />
<abstract><t>RFC 7830 specifies the &quot;Padding&quot; option for Extension Mechanisms for DNS (EDNS(0)) but does not specify the actual padding length for specific applications.  This memo lists the possible options (&quot;padding policies&quot;), discusses the implications of each option, and provides a recommended (experimental) option.</t></abstract>
</front>
<seriesInfo name='RFC' value='8467'/>
<seriesInfo name='DOI' value='10.17487/RFC8467'/>
</reference>



<reference  anchor="RFC7828" target='https://www.rfc-editor.org/info/rfc7828'>
<front>
<title>The edns-tcp-keepalive EDNS0 Option</title>
<author initials='P.' surname='Wouters' fullname='P. Wouters'><organization /></author>
<author initials='J.' surname='Abley' fullname='J. Abley'><organization /></author>
<author initials='S.' surname='Dickinson' fullname='S. Dickinson'><organization /></author>
<author initials='R.' surname='Bellis' fullname='R. Bellis'><organization /></author>
<date year='2016' month='April' />
<abstract><t>DNS messages between clients and servers may be received over either UDP or TCP.  UDP transport involves keeping less state on a busy server, but can cause truncation and retries over TCP.  Additionally, UDP can be exploited for reflection attacks.  Using TCP would reduce retransmits and amplification.  However, clients commonly use TCP only for retries and servers typically use idle timeouts on the order of seconds.</t><t>This document defines an EDNS0 option (&quot;edns-tcp-keepalive&quot;) that allows DNS servers to signal a variable idle timeout.  This signalling encourages the use of long-lived TCP connections by allowing the state associated with TCP transport to be managed effectively with minimal impact on the DNS transaction time.</t></abstract>
</front>
<seriesInfo name='RFC' value='7828'/>
<seriesInfo name='DOI' value='10.17487/RFC7828'/>
</reference>



<reference  anchor="RFC7942" target='https://www.rfc-editor.org/info/rfc7942'>
<front>
<title>Improving Awareness of Running Code: The Implementation Status Section</title>
<author initials='Y.' surname='Sheffer' fullname='Y. Sheffer'><organization /></author>
<author initials='A.' surname='Farrel' fullname='A. Farrel'><organization /></author>
<date year='2016' month='July' />
<abstract><t>This document describes a simple process that allows authors of Internet-Drafts to record the status of known implementations by including an Implementation Status section.  This will allow reviewers and working groups to assign due consideration to documents that have the benefit of running code, which may serve as evidence of valuable experimentation and feedback that have made the implemented protocols more mature.</t><t>This process is not mandatory.  Authors of Internet-Drafts are encouraged to consider using the process for their documents, and working groups are invited to think about applying the process to all of their protocol specifications.  This document obsoletes RFC 6982, advancing it to a Best Current Practice.</t></abstract>
</front>
<seriesInfo name='BCP' value='205'/>
<seriesInfo name='RFC' value='7942'/>
<seriesInfo name='DOI' value='10.17487/RFC7942'/>
</reference>



<reference anchor="I-D.ietf-dprive-rfc7626-bis">
<front>
<title>DNS Privacy Considerations</title>

<author initials='T' surname='Wicinski' fullname='Tim Wicinski'>
    <organization />
</author>

<date month='October' day='16' year='2020' />

<abstract><t>This document describes the privacy issues associated with the use of the DNS by Internet users.  It is intended to be an analysis of the present situation and does not prescribe solutions.  This document obsoletes RFC 7626.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-dprive-rfc7626-bis-08' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-dprive-rfc7626-bis-08.txt' />
</reference>



<reference  anchor="RFC8446" target='https://www.rfc-editor.org/info/rfc8446'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2018' month='August' />
<abstract><t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t><t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='8446'/>
<seriesInfo name='DOI' value='10.17487/RFC8446'/>
</reference>



<reference  anchor="RFC6335" target='https://www.rfc-editor.org/info/rfc6335'>
<front>
<title>Internet Assigned Numbers Authority (IANA) Procedures for the Management of the Service Name and Transport Protocol Port Number Registry</title>
<author initials='M.' surname='Cotton' fullname='M. Cotton'><organization /></author>
<author initials='L.' surname='Eggert' fullname='L. Eggert'><organization /></author>
<author initials='J.' surname='Touch' fullname='J. Touch'><organization /></author>
<author initials='M.' surname='Westerlund' fullname='M. Westerlund'><organization /></author>
<author initials='S.' surname='Cheshire' fullname='S. Cheshire'><organization /></author>
<date year='2011' month='August' />
<abstract><t>This document defines the procedures that the Internet Assigned Numbers Authority (IANA) uses when handling assignment and other requests related to the Service Name and Transport Protocol Port Number registry.  It also discusses the rationale and principles behind these procedures and how they facilitate the long-term sustainability of the registry.</t><t>This document updates IANA's procedures by obsoleting the previous UDP and TCP port assignment procedures defined in Sections 8 and 9.1 of the IANA Allocation Guidelines, and it updates the IANA service name and port assignment procedures for UDP-Lite, the Datagram Congestion Control Protocol (DCCP), and the Stream Control Transmission Protocol (SCTP).  It also updates the DNS SRV specification to clarify what a service name is and how it is registered.  This memo documents an Internet Best Current Practice.</t></abstract>
</front>
<seriesInfo name='BCP' value='165'/>
<seriesInfo name='RFC' value='6335'/>
<seriesInfo name='DOI' value='10.17487/RFC6335'/>
</reference>



<reference  anchor="RFC7120" target='https://www.rfc-editor.org/info/rfc7120'>
<front>
<title>Early IANA Allocation of Standards Track Code Points</title>
<author initials='M.' surname='Cotton' fullname='M. Cotton'><organization /></author>
<date year='2014' month='January' />
<abstract><t>This memo describes the process for early allocation of code points by IANA from registries for which &quot;Specification Required&quot;, &quot;RFC                        Required&quot;, &quot;IETF Review&quot;, or &quot;Standards Action&quot; policies apply.  This process can be used to alleviate the problem where code point allocation is needed to facilitate desired or required implementation and deployment experience prior to publication of an RFC, which would normally trigger code point allocation.  The procedures in this document are intended to apply only to IETF Stream documents.</t></abstract>
</front>
<seriesInfo name='BCP' value='100'/>
<seriesInfo name='RFC' value='7120'/>
<seriesInfo name='DOI' value='10.17487/RFC7120'/>
</reference>




    </references>


<section anchor="supporting-axfr" title="Supporting AXFR">

<t>This draft version makes no attempt to support AXFR or IXFR queries. As defined in <xref target="RFC5936"/>,
the server responds to AXFR queries with a series of DNS response messages where</t>

<t>"... the first message MUST begin with the SOA resource record of the zone, and
the last message MUST conclude with the same SOA resource record."</t>

<t>and the QDCOUNT:</t>

<t><list style="symbols">
  <t>MUST be 1 in the first message;</t>
  <t>MUST be 0 or 1 in all following messages;</t>
  <t>MUST be 1 if RCODE indicates an error</t>
</list></t>

<t>When the DNS protocol is carried over TCP or TLS, these messages are carried
over a single byte stream and each of them is preceded by a 16 bit length
field. The encapsulation currently defined in this draft does not include a
length field and assumes exactly one response message for each query.</t>

<t>Note that since IXFR can fall back to an AXFR-like response if the server is not able to send an incremental change, this discussion also applies to those AXFR-like responses returned to an IXFR request in that scenario.</t>

<t>There are two plausible ways to carry the series of AXFR responses in QUIC:
keep the current format and use a separate QUIC stream for each response; or,
relax the restriction of having just one response per QUIC stream. This second
option is much simpler to engineer. It will not require complex methods to
correlate different streams, and it will ensure that the responses in the
series are delivered in the intended order. However, it requires parsing the
response stream to extract separate responses. The practical requirement would
be that the content of the QUIC stream be exactly the same as the content of a
TCP connection that would manage exactly one query. The main difference with
the current proposal would be to insert a length field before each response. So
we would get:</t>

<t><list style="symbols">
  <t>For a query: open a bidirectional stream, send the query encoded as { 16 bit
length, DNS query }, mark this stream direction as finished.</t>
  <t>For most responses: send the single response message encoded as { 16 bit
length, DNS response }, mark this stream direction as finished.</t>
  <t>For a response to an AXFR query: send a series of response messages encoded
as { 16 bit length, DNS response }, using the QDCOUNT convention as specified
in <xref target="RFC5936"/>, mark this stream direction as finished when the entire
series is sent.</t>
</list></t>

<t>This adds a length field that is not in the current draft, which breaks compatibility with the previous versions.
Draft versions are identified by draft version specific ALPN, which makes this change manageable. However,
the authors would like to get feedback from developers before making this change.</t>

<t>The change will also add new error conditions: if the stream FIN happens before the bytes specified
in the message length field are sent; if the client expects a single response message and several are sent;
and, if the client expects AXFR responses but does not receive the expected pattern of QDCOUNT flagged messages.</t>

</section>


  </back>

<!-- ##markdown-source:
H4sIAFgCNGAAC719W3fbRrLue/+K3spDpAxJy7JjO8rDjCLJsU6siyU5mT1Z
+3iBJCjiGAQYANQlXvnvp766NBog5fhkZp08zMgS0Jfq6qqvrhgOh67Jmjzd
91fLdJLNsknSZGXhy5k/Orvy5W1a+aN0il+nU//u/cmhPyyLIp3gqdol43GV
3u4/9qzDjzdl9bDv62bqpuXkLFnQXNMqmTXDLG1mw+myym7T4bSoy99W2WS4
u+c8/efqJimmH5K8LOj5h7R2LltW+76pVnWzt7v7HT2XVGmy76+rpKiXZdW4
j3f7/qRo0qpIm+ERpnBuUk6z4mbfr+phUk+yzC2zff9rU04GvqZ3qnRW008P
C/lhUi4WadHU/+NcsmrmZbXPi/F+qP/vfVbU+/5w5N+ssiZdJOH3BW/scF5l
dZMlxdrfy4pWcUF7JYr480lTLlc1rXYyCk/UtJq02ffP9176H8t8NilXVZ36
y2l4YpI1RMnXVTZNHvybpBqXVfu3ckrz/3Lgv3u19+1u9OtV0YD+70dXo4Pw
a1pZlu/7uSzyH/r/IyLc5g0fjPxpUnzMit5+D/I8q4lden/kzV4leVrPymqS
9qdNFvz4P+rwxIgov3nmq5E/yib0NE3Tm/wqqZINf5TJs6Kcrgp/cr1G39Pk
ZkoTF/6QjrpK1/5+fk9LmvqrSZYWk9RfJNXH3gnIEz3Sn//zuX/+48Emyv80
6lOgpqX/o5Y18t5dVtCYC7p8tymYji7U7uX1tfBfk1Q3WNm8aZb1/pMnd3d3
I1yeEW31CQYcJtVkTm8+uUvHT+gqDXGpksnDk8mqqmiXTxb1ze7TvZcvRvNm
kcuYcutxcf/md4c0F/+6y/b9wzga+Z+SeeF/zPJ8ETGfnMdRUmRpvv7ElFh+
3+/tPn0x3H0+3H3Bv6zTKktr7DpM5k/Tuk5u6NmmxMKGF7IL/8uPHruki+yJ
3ehWD4dDn4zpwJIJ/et6ntWeZMsKd9dP03pSZeO09s08pXufQpax4KJRl1V5
m01TEiMqNLxSyhP1MeeIRks9HXz1sGRBqG9M/fhBRpknta+zRZYnFf64TKsm
w2QlzZc0neev314N3N08y1NdQJg1zWmEgugiq5ynyXRYzoa0xdSP8xIsfeOz
ul7RA1kxT3GI/i5r5u768MKTZLR5ak9UpgXPSHJneCitKtrJpKRzFxmNZRX+
/dHFqJXSLJu3j8p3O7wdo0G0HduhnIS8Rdvx9NL1jq9FV9Aus8Jfvj58+erb
VwOHZeW0p4KGmswTHE7K4nDSGW+SJ3WdTdpxsTY500U2neapc19Bjld0OXgL
zh2VdP6Fh/LwVw81ySpayNnVDu2TruiyqT3pgu6qtvQdsGbth+FJXuUsmRA7
YaNb/tOn/6IdPN199vyPP0Yep8/HtCDqR4rwtxXzK5O+SukQi5p0ki2ff42T
IUb87CqyxTJPwaaiZek1V8d6N1rOt7KcrHaBtZc0M9STT+g+LJfgEVoeGAhL
pNMjvVbmQlT8lo+5ZToa+mR4xJJjyLo2/OmPPzb8Ma+xAtdhGmyQVCUxGe0P
bOmJfYiPBtgscy+YlCffuk4r4vEyL2/C7XJBWQsl35bRtsP0wALLYdO+jp/1
cNxNmeR12Hb5LlCCOGDfuacjT1pWLzk9UYNlhDqBxxu5Gbz0Nd5mYfTp09+V
q+0QaH+TfDVlDvCliAZsCnNMcr55xNpBhNK/GQbJGtIKU5BAWKS0fSyeBoke
w2BTZhRn0hSL63LSe4hG7G1G8qQ2irarBz1BYlaBDMXot8ZPr5493aWtOLcX
0YcWQfxI/6AZ8vSWRDetrCbUQVovmU6J2Wp/m+SENsJ2bQLZUg3AtEzAC4/f
62fxjJEIZGlJhC3KBpcTwpz4h+XmMiEeOr1+7yEl5aoQ1Qompkyf/Z7azQy3
0Wc0EO2JrsiU5n1O8x7fL3OIRz6lnkSi11c1GIf5OsGlst2FRQ48dklAraQR
KqJNvpLF5NnHtLPRzr0d8CjETR1GGvj4yN5cX18wy73Z0adePX/1nM/ohDis
mqYsLBPS63Q02AFpMmb+AW9nRkJB70Gs/bJaiJZOHWskuod1sxpjKFIIBCgJ
JYBkZU6L2PL1JC2SKqN58rq0Q5dD6C8fmpFPTOYP0sb0rcqDu7L6KNy5UWT6
cdrcpWnheFVyc+wRW54ylwhjE4/EJ8Uwuvzxpturf0abaEg9LJkSiwRSoPT1
asksd/DP15ckkukI/kVmhVgOJMvAnrKXbTyxsxXJgG+/e/aCpCNt54RfJsRe
iQDPe4PQHaWRt/S9p69egRHAV3J0i5QYsMjqRS1CgkgFzq9SunmJSA+WFY8e
Vjirkd9mibRIWM0WJBVUcMxWzYrGBfHkyhihYAuN/FWa0uqUGMT5w+R+RnKV
Dyvx06wmjjKdJwND2JMyoAsu49ODTEMdY7QjAmUz1Wlf9MOSxC1JOSJXwDWx
bckqSu8cMAxLSUYB4/I+rVV+RBNEx6lyNStIk7PJyfc2EdgzYBIL7ZXYPE8g
uEnvL7ofZCMy8YpyKLMOw6zDeFa+v+9riMYMlmhaNyK+fwevNMorJNrn5Sqf
Qu7RQaxSlURAEOOE7p9rJQ2uxh2Babmhd8YqyUfeEktBXDnMQVfyhoV2Uzqj
0Tq3D0H3oeqGv7dKV+xw4gh5QNS/c+IWeMDymg3YCIpsucyD2yAABWWcWvEN
DzAv73iQ6I2viV8E9QuGgzYXdcKjwCZLFjhMQko3aZFWSZ4/bBpIiAS4jxeJ
Z0RrQ0oUKR82JK6DJn3zAJSb3jcbJMDPcnf8M7+N558829mKqcTICGaYyENi
71W1LMXGWBPEtIlpOiOl5rDWO7quOIywXeiqcaBoA0YJ5BMt0BlxQMdFsja7
KYZQl6ROq0R5rgWGmIgoRuawHBgJ7JsVzBGnMhuLnXoZZwRpEKNPDGWgQ8Yi
tl7R1Y3QJkGukfv0qQtkh3ra7DyJ18OTAxcG/d19cUAnRsRgUD5NSVk/MPFs
HlgCP6VkAJI+rB0T/CP98w7/9Fun76+utwby//7snH++PCbyXR4f4eerNwdv
34Yf5AlH/zh//1b/jp/aNw/PT0+Pz47k5dOD/95itvNb5xfXJ+dnB2+3cMma
DiJnGVPiGPm6075xjCT0W61I7/xA9/rpc4NiT1+Kmv+K9qjD8A2+zRIym5s3
q7Fz29dvTq781fEhZvbX5/6HY395fHr+8/ER/fj6/PLYX7z/4e3J4QEe2GFN
Se/OSZJVKZ1x1pTVg4q4eL3ET8QS5ke44Tfgf3iiHqAn5ocbuQtjFr4pIEQ6
xbAQ5aYdEtE2JLJXk7m/S3MaCm8ACQz8eIX3HtxsVbB0jF5U+ZfkdCsILWRV
3YCIqoNwE4RbTo6vX/uji8uTn4/hBdiOfBs7HZ+A8MoR8zU8lNH9UAdBbaif
dpIRa9arsf1K2ZVnlKsRMy5ukbsDtllhZQyDiTlVwtgYROXIhePZ5oM2xkF/
5a8mZFmD+m8FnJm6v1Ldc2lK/koVDrQI8L4poDroq46ppzJkXJXJlOSiQHAz
GZp5lZLBVJUrOu3PIIvBJrRBOkR8QQzAAyqTK6GaF7qYfzJiKPEYm/KVpzUZ
bv8yHDor87y8M21DYod2RqwFfVcA5vRRqdzQL7SNPmMXvXt/fIWrtO+vhDW7
0lyVGNiZbjf9o2F0RYJ4lt2sKvOZOzAwJknG8C88EEPPZuy8IULAlVJe/925
zXDJLC4R4UYi/KF7DMYQI3fQ+YMRU26lLQTC/oEMSpLwUJzEEuXqZu7ZbppA
jI78CZbhACamojESuQlNthB4QVPgQARm4FRvSnZPycHq7cRf8VtmN+aeFrDF
W0tIDJQ35Qpep3JMqkAv1LXbgEaWc0JDez3tQiuWmRO6wPDQKgwh7EM7gJql
EXvMC04lziQJZMAIs3adcpuuQU37Im5w80QGwe8rAaEk6ehdSEOWjex2oy1N
aKMjf9AIA9UNGFMdkK7VcAP5Mw+OC7woa7AIjyJoh3gvFeOYkOcCDAPrldam
TqGJAEjD/2ITrlTiXPflBOQ+8GOQYF08GkjK6L7zt8BwLjaIBrHjI11k7JMC
hs11DBh/D7KRyAUiZiCpcvYSJeoEBn34pWAlqs+FTC12kSZ+VWQ0IvaDG87e
prt5NsEYPJOjV1d5A9RNg+IC5vFoV8HmCU5ajKP0hxMjD+4aF4OdyPPXQlsF
pSPB1S2oN5uOiSxH4taFXhB15gBprXlRmyJg6cwFWKgLn7iD9GvumJJsoIvN
0Mq5wwu2mKtUvCqbLKY0Yz8GE9tMWhKqzIsBHPb2r1Bc9Jg5cvAH9c67dZks
qLcGTIcXgtgjuwF1+c6o606d2x2ctBUN21PiZle/fLEHe5y237cryoCkXQdm
mxIQvP7vqgqb1l3R3Z8ILjpn4hKLwrHkN01A0k38h7ZaZotWyEy6/sB0kyRi
JUXcNwnhV+KShmRt8EyCrEV6U8IuVfOsxjhQRMukShYETmkytTURm9jgZNS/
gZ5XeFnsqa1H/MMDT8w8ZhQWxUz0iLvu55FYW7B0jG+7Z8S7YyvOojTwRbHv
gDWXOHPduiO3Fid0jwlbgn/hUbkuJvCvVxXfltgxovhfrovEeYhsnz7potYs
M7k1RwaLKn+aFdlitfBvJU6iZ9qGDURNC44SmEgqfDVJFZvmpN3Ugyb2bOxk
wy9iqRdMYHUiToP6Z2To2eEM4UdijDTrvnMePrSrSENyYBABvMRPiZGImDQy
kwICd8HHTXv0e733kultQqrZ9CKwBtsJrCBppLTuO7glCLjF5HhbElg4SpsI
sZM0IEbhf9KPTVXmXfcFs6RNw3T3cBydiuhRptwcZiNZkhjoxDXJ81RCpKB3
xsumd5kGNMyC1ExGJmzQAmpebJaaws/srWGSGBwQv9QsZROhFhmMI4E5ZOdw
vlSjKYYscG5jmi85GNnEtuhflQMSOpQblC2C96T1FRp4FDPMaeyX43qVGTv1
jp35WzqWIYikuSGtcNJLLVo6EI1JE/nLZHzMuUwrWE/pVJznXpw9jVkC9Yqg
FMcHzFFonklRkwWpHKJQZWkEgQED6xmxjTVeJ3UTEStEieMtQHkRYL3R6wdM
zX8clsUwQ6SS59KRwwgANyXZviSBSHdjB1Xa8ZsBWQ/pCV4L4hSnLfOkMHdA
pnfANU8u9TrHVGNITWcBZm2MEZVssbrdyO4KrVhswxDXQI5gW4CzMI6Jli3s
hVbGMYktthcYS9oQ5sSX8DrwrwzR+vxx1UsJuBEdiQkroPtBIBShaz5n+Dcz
4XMTCBIIiS9iOyyZ7bcZWRIkMAm5NIKKWrQpOJhI1xXKciXH0KyznM4yYLW1
KyyM5nq+SBH48o+hvjKkazVkT5aJfLLxLKGKhJD6s/0PD0sy0P2pxQIEqffm
7QRbBUoJZl9AdyQS38XZslN0kdyzQtH7A6bXI5ZgY9LaoOHqGPzlzABojWcy
qRPXqZjy+hapHnEyqIVIJJ7RtbsjMSlaJ/bWewWgC1ZTxCG3WVUWbLfhREUY
RBO2InIMcy5nG4tJpJpKnEgI8+pTjvk4HDUCKzy/t3CB0l7sjZMQGriOhY47
YMusMe2dRckGYtt0EkqCIaZOgEgeu8/GIGi9kwQu6U4Y4vEQhPuca2RE+2IL
JVGv/hV2MFvlpChalLx9dHW+4yyg+B0QK6ZlT4x6y0HmLuzVlJIYB488DaTh
WRe9GOeDMN4gwEgswj8ilQSWYHlXtOEu4VwIUWJxp0qqNstQ8AkNgThyk2GG
kEBAC/i+jeHDUKpW3ZU7M0y6yYs1c0GbpuiP6bAJpNZznCfslXcdKQ8CpfbI
BvetYdkoeN1xm7vPJVbQnTgSBR0B9zRe0AD8HQI2TA7LoYSZk0JImRo8eHtx
RmcAZ9jWtPxty5bH0Lt0RPJpPSe0wReBgCcCfyGmcTIFmg6rdt98Q0zij9mr
+3XN7LX/zTf+Ik+TGhy4KDnwHDk5CTmU7Br0y9U4j3JFExIKgCoaelwLh9B6
zsGCXe9/yOPglwcyKB8BFgaxk8mSHxC+WBApbkWb8N6Jsu/pj8BHcARwIpJP
7wnaE3v1J0KMwJ2dX4cRfTSiWETqsMFZIfyyvlIOo/aiq1EgnMMQyVQdHjyO
2xpuBR8I52SxisVsMlixWozFkco2sR4QO1Rfk3RJ7xMsY/DZhNld5hl7dRp2
A+cDMx6oNcx2d7eUKy7AZ1fCV+CDH2BwzBLCaANJggj+XcgaZUxO85E9wt+e
ijkDDZRMkFi1Af8VarQYNyNNgnn8+ocjv91unaS6qTkRxyQt1iypnYFfFTm8
iFnDkmaxQmjKsdtvYelxLH8iQALhm8ikksLBKg/zmxu/k23x6OOkh+gXcb6C
M+QkPqQCvsek7xAWZCl3NEP+yKy5S9hDt05zdabB9KsUDWE5ovvgLXOE98hq
XSGNTg+IjyMIExqo7yGgQTpULwvXAqTNFPUbKNr6+5lCrk+hMH4bHLmSSykP
8d/DFRyn8otvn8EJxT+++vaZ2asA7MjC1qyj5IZgf91YIicnetOLOpGGWZPb
MuNo+mzF4sdMZDxh108GcI8m7WDNkqSYPwz0EtnanDoKWZk/Pk3Hb2RZPbvf
PTdQeMWgMaB9vMIuiI0w0MDamt+Rzcl6zZ500TOtZTlNyWzK5WZdKVPsxQ6a
v6bUZMWtc1ODRvG6JZIjfmEIMWR1ITc/+G5d5EKGWVubM3fNbRxyXZOA/rsR
JxdHrRMBVmxIcZCPBqUpeGgIpQ23pF0I3ygnSlcdaoh+3hIRGf/IY232hx9n
00xTbWGqiy3m2bFSGCBvMc3nKP7Z/EyleLxK0CxEBHV3lvkpG6Dl2YJAUb6A
Bi4iX1Dqr64vjw9O/euTswi4MSWL0s/MDwZnA2C4G2MChOkLVRE8iTFFJJrC
Eu3YTCkwpPvPrc2FtfnPrY0svpI97BaqUHK2p9nzT7DpuFqkUXTDxotMLJ6n
5aGvLaCtZzIBpsd64gu6O9Bzohk42v1c8qfJrmaPGvR0ZLP4Y44MOXeRQucU
YCw4Cjl0kTZpz+x4CH6ipJMjqeR30dNf1xHTmsd0ksC+vmNbzjgsjGGnRERh
acouvhHwig94JVELzL2miwPfyPbV8eXPrw9O3g46QnfHaxLGmE0jATCGhuRU
aFgS2yH3SOkRbXGcTD5GkqG9bMF3clhOQeoGprytAxAPuHWZwnxjGyRZ8hVn
t/lG6k1XEpAtJNuDLrzjzQ+gQWHzclDDBIxKe1pFqqrUcvMRQDl/9+Hk7Pr4
8uzg7Yfjy8vzS4lPdEFivGO+UGwmE5+UBJZIBIp3mbQPswfvU9Nk2jh6O6k6
9yKPAtQZnTLJxHG1WnKQmrOuxe9myVcuGWvwjP49VRUVMrPgrCF9PcUF4hSE
su5aO3BoYrtn57JRv717v7u7s+/2Yakr9wRfNQfPeE2CmYOQhvNTKAqsVVt0
LEfMit0EzkviiYa/ZN8h8DuSRXRpzkt5yku51nTyXoZ+WnAdDwfSo3PX0TmX
pMs7tIol3fdVJ2EuCVvobsr1LdVT9jaKmWrq+unul+jrz2qPvn6MYbqmkAgh
Q9qIeaK/8fBzsseyJBJ/0561vEG/YU8K40ik0dDCD6OsXkPJgaydmKXcE5EA
FrkKSE0sonbykT9U3gKmjv4QsvzMn4gsjSVJBbp36b2EyAfqfGIfWvY7ew+j
cgm400b+onVxE9VHj+GkbsmGCPJ0Nks5PI+M+VUb5ewtkwX2SnPEONis8SB9
nl9mbIc6nLp1aTZ3cLhOlyVxYE0r5WSACQmgnnNTooLBX9CZv+vazwDxgNyQ
7z9cBMZjXybeG+p7Q1kUYxA7Wj2zRVnAedCdSv3eIYkrq7oWSccCMWlk28T7
RF5AQnYs4Zc5PPV6nuzhj6Ah7JYxMDhhsBRxiJH/hQWa6fZlBT+5FGgxHEmI
0+441V/0syVe64KyRnDEZJ6SWiFBpFZOZ4PIHrOKK0dy1uygzmMk1UjDZG3K
vK6Ih4/Bm+uBN/ZhdGUoD0UKcn2gYP052VhEarl/Ok9njo4IGPn2XE8P/ptZ
JKmmm44uBuVjBlNhy864LL1fIu+XV8ze/qmkOgzkX8o5LDz60pBezYmoTWuA
4eYRQjk8PzuTXMgPh2/Pr46jbHqBj4pJ4HJhN1mUFyzpsH6LdA1rya3RZgmF
rW9alabH3yYViVaOQLBN62RcuJqCu+6za4b44mOLJnUCUXFGwt8aNUvi+fU8
wiWhQ2HQQgt2yvWAp10pHCiivNMZcUagDGqd2MeCPHH6eGDE6BVDHyZuACDY
sBTYanjP/wW85zbgvb7qHPUV5SUCdynTUkKhzh10syr4QDdGXuN9cQCQxHDg
J/N3RRWfX1hBB6cQPy/G/+ZyOsn4bDM/7DooWV1bLhGitJIok9R1OREjhbFk
J9yb6m10U1JM08h71IiVopuT+Eydro3NsDA4ClybzyAPDDHjUGccyoysDljU
8r8FLesjbGF92Vk4Ob3Wslsjvyza95+zpG94DxkzmnxnUzAuLtsiDZAnD8Bn
Wx07qe9k3bhozVkBqGcJSvqGlyKRKVuFa58r/PslKp6FZbWk2V8Bc0jo4V2U
snHZxkgrMVxd11Ak+SLARZyIyOoGYCOBQD9xoqXf+98v9ohYDWTuG9JFrMag
VjqFFShFQRqMYLyl4AcxZ7zFEK2s7sW33z77Voe07IboCQ4fc9l+0NvqnUuA
U4YlzdJYco/P0+KmmTu66flUi6TasFMsG9ZiUPpXq57D/dLpGDVkca7RVlQK
whXwOv1WN9TFOTOa5iPldgz6dTt165swconsYYuK9DwX7FSEGVs+jNIG+C/I
7uJseOZDBdd8sCZOCjHFwFI3JLslHUCK3UQE5gYD4e9MzexxnQVE+VxRlBjk
uSvj6vbwmGB5Gf8DHecHGfUDlvkBTqwPeUl4cl9sL2gQpbWAjUFbGCJ2lk8W
MIxCaoxqsirks/FlZHfblhnQW2bBKVCnkRDwh+wQJXt68M8P4u/5cHRwfUBo
j1Y/+tOVI1SFFgP9pRum+5Klm2u/t3SGTX953fCJjFO4PeP4/EBAoY8qTrpr
iGEJLCp2ZYasIZxwdPx8g4PRIVeXpr3h3FlNgvDH96RWWF+ctprObsb2MdfS
y7V48eq7p7iLcB8wzhDkrFmPoB4c53a5IQ80YSAsiS3im6KsrI703WiDZV07
Lf4gxQYFFpxoJmriKTBkRyhxi4CupX4ZJYmz6D3oFFjLYTRfVmIpMLtboe3i
LHQrLhRh0Q8YbypScH8h89R1ExI72b0ccNIijU61eXBCSkiQICutSBN/Qy4B
E+g1AOAP8J4RNc75AauDY0MyglsK69hnxiZKHMCOq/HXUKYxtVOkE2UlzzD/
WOcHzdTtX7RFo+xQSpPKO1QhDdaq4jeWg/zbpIZZulQXYLBhFRI5TZ6BPylE
7QKOA3twWFONpJOLUFStrpdpWXwdgqpOWyeY31VtKO5EFEHU2armum8sm5Nq
Q5yfiYxAj/xRsktIZtWSNANrmQPdIqfUZmFPFcmjrJz6bQme47xT0l2rSjQO
r35n5KPIZO1anyJ6IKwa5JbBGYmavOEyK6CBouxcTjHajk9nh20WLndA54gb
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
AA==

-->

</rfc>

