<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.21 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-masque-connect-ip-11" category="std" consensus="true" submissionType="IETF" updates="9298" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.16.0 -->
  <front>
    <title>Proxying IP in HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-masque-connect-ip-11"/>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly" role="editor">
      <organization>Apple Inc.</organization>
      <address>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author initials="D." surname="Schinazi" fullname="David Schinazi">
      <organization>Google LLC</organization>
      <address>
        <postal>
          <street>1600 Amphitheatre Parkway</street>
          <city>Mountain View</city>
          <region>CA</region>
          <code>94043</code>
          <country>United States of America</country>
        </postal>
        <email>dschinazi.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Chernyakhovsky" fullname="Alex Chernyakhovsky">
      <organization>Google LLC</organization>
      <address>
        <email>achernya@google.com</email>
      </address>
    </author>
    <author initials="M." surname="Kuehlewind" fullname="Mirja Kuehlewind">
      <organization>Ericsson</organization>
      <address>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <author initials="M." surname="Westerlund" fullname="Magnus Westerlund">
      <organization>Ericsson</organization>
      <address>
        <email>magnus.westerlund@ericsson.com</email>
      </address>
    </author>
    <date year="2023" month="April" day="17"/>
    <area>Transport</area>
    <workgroup>MASQUE</workgroup>
    <keyword>quic</keyword>
    <keyword>http</keyword>
    <keyword>datagram</keyword>
    <keyword>VPN</keyword>
    <keyword>proxy</keyword>
    <keyword>tunnels</keyword>
    <keyword>quic in udp in IP in quic</keyword>
    <keyword>turtles all the way down</keyword>
    <keyword>masque</keyword>
    <keyword>http-ng</keyword>
    <abstract>
      <t>This document describes how to proxy IP packets in HTTP. This protocol is
similar to UDP proxying in HTTP, but allows transmitting arbitrary IP packets.
More specifically, this document defines a protocol that allows an HTTP client
to create an IP tunnel through an HTTP server that acts as an IP proxy. This
document updates RFC 9298.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://ietf-wg-masque.github.io/draft-ietf-masque-connect-ip/draft-ietf-masque-connect-ip.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-masque-connect-ip/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        MASQUE Working Group mailing list (<eref target="mailto:masque@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/masque/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/masque/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-masque/draft-ietf-masque-connect-ip"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>HTTP provides the CONNECT method (see <xref section="9.3.6" sectionFormat="of" target="HTTP"/>) for
creating a TCP <xref target="TCP"/> tunnel to a destination and a similar mechanism
for UDP <xref target="CONNECT-UDP"/>. However, these mechanisms cannot tunnel other
IP protocols <xref target="IANA-PN"/> nor convey fields of the IP header.</t>
      <t>This document describes a protocol for tunnelling IP through an HTTP server
acting as an IP-specific proxy over HTTP. This can be used for various use
cases such as remote access VPN, site-to-site VPN, secure point-to-point
communication, or general-purpose packet tunnelling.</t>
      <t>IP proxying operates similarly to UDP proxying <xref target="CONNECT-UDP"/>,
whereby the proxy itself is identified with an absolute URL, optionally
containing the traffic's destination. Clients generate these URLs using a URI
Template <xref target="TEMPLATE"/>, as described in <xref target="client-config"/>.</t>
      <t>This protocol supports all existing versions of HTTP by using HTTP Datagrams
<xref target="HTTP-DGRAM"/>. When using HTTP/2 <xref target="H2"/> or HTTP/3 <xref target="H3"/>, it uses
HTTP Extended CONNECT as described in <xref target="EXT-CONNECT2"/> and
<xref target="EXT-CONNECT3"/>. When using HTTP/1.x <xref target="H1"/>, it uses HTTP Upgrade as
defined in <xref section="7.8" sectionFormat="of" target="HTTP"/>.</t>
      <t>This document updates <xref target="CONNECT-UDP"/> to change the "masque" well-known URI,
see <xref target="iana-uri"/>.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <t>In this document, we use the term "IP proxy" to refer to the HTTP server that
responds to the IP proxying request. If there are HTTP intermediaries (as
defined in <xref section="3.7" sectionFormat="of" target="HTTP"/>) between the client and the proxy, those are
referred to as "intermediaries" in this document.</t>
      <t>This document uses terminology from <xref target="QUIC"/>. Where this document
defines protocol types, the definition format uses the notation from <xref section="1.3" sectionFormat="of" target="QUIC"/>. This specification uses the variable-length integer encoding
from <xref section="16" sectionFormat="of" target="QUIC"/>. Variable-length integer values do not
need to be encoded in the minimum number of bytes necessary.</t>
      <t>Note that, when the HTTP version in use does not support multiplexing streams
(such as HTTP/1.1), any reference to "stream" in this document represents the
entire connection.</t>
    </section>
    <section anchor="client-config">
      <name>Configuration of Clients</name>
      <t>Clients are configured to use IP proxying over HTTP via a URI Template
<xref target="TEMPLATE"/>. The URI Template <bcp14>MAY</bcp14> contain two variables: "target" and
"ipproto"; see <xref target="scope"/>. The optionality of the variables needs to be
considered when defining the template so that either the variable is
self-identifying or it is possible to exclude it in the syntax.</t>
      <t>Examples are shown below:</t>
      <figure anchor="fig-template-examples">
        <name>URI Template Examples</name>
        <artwork><![CDATA[
https://example.org/.well-known/masque/ip/{target}/{ipproto}/
https://proxy.example.org:4443/masque/ip?t={target}&i={ipproto}
https://proxy.example.org:4443/masque/ip{?target,ipproto}
https://masque.example.org/?user=bob
]]></artwork>
      </figure>
      <t>The following requirements apply to the URI Template:</t>
      <ul spacing="normal">
        <li>The URI Template <bcp14>MUST</bcp14> be a level 3 template or lower.</li>
        <li>The URI Template <bcp14>MUST</bcp14> be in absolute form, and <bcp14>MUST</bcp14> include non-empty scheme,
authority and path components.</li>
        <li>The path component of the URI Template <bcp14>MUST</bcp14> start with a slash "/".</li>
        <li>All template variables <bcp14>MUST</bcp14> be within the path or query components of the URI.</li>
        <li>The URI Template <bcp14>MAY</bcp14> contain the two variables "target" and "ipproto" and <bcp14>MAY</bcp14>
contain other variables. If the "target" or "ipproto" variables are included,
their values <bcp14>MUST NOT</bcp14> be empty. Clients can instead use "*" to indicate
wildcard or no-preference values; see <xref target="scope"/>.</li>
        <li>The URI Template <bcp14>MUST NOT</bcp14> contain any non-ASCII unicode characters and <bcp14>MUST</bcp14>
only contain ASCII characters in the range 0x21-0x7E inclusive (note that
percent-encoding is allowed; see Section 2.1 of <xref target="URI"/>).</li>
        <li>The URI Template <bcp14>MUST NOT</bcp14> use Reserved Expansion ("+" operator), Fragment
Expansion ("#" operator), Label Expansion with Dot- Prefix, Path Segment
Expansion with Slash-Prefix, nor Path-Style Parameter Expansion with
Semicolon-Prefix.</li>
      </ul>
      <t>Clients <bcp14>SHOULD</bcp14> validate the requirements above; however, clients <bcp14>MAY</bcp14> use a
general-purpose URI Template implementation that lacks this specific
validation. If a client detects that any of the requirements above are not met
by a URI Template, the client <bcp14>MUST</bcp14> reject its configuration and abort the
request without sending it to the IP proxy.</t>
      <t>As with UDP proxying, some client configurations for IP proxies will only allow
the user to configure the proxy host and proxy port. Clients with such
limitations <bcp14>MAY</bcp14> attempt to access IP proxying capabilities using the default
template, which is defined as:
"https://$PROXY_HOST:$PROXY_PORT/.well-known/masque/ip/{target}/{ipproto}/",
where $PROXY_HOST and $PROXY_PORT are the configured host and port of the IP
proxy, respectively. IP proxy deployments <bcp14>SHOULD</bcp14> offer service at this location
if they need to interoperate with such clients.</t>
    </section>
    <section anchor="tunnelling-ip-over-http">
      <name>Tunnelling IP over HTTP</name>
      <t>To allow negotiation of a tunnel for IP over HTTP, this document defines the
"connect-ip" HTTP upgrade token. The resulting IP tunnels use the Capsule
Protocol (see <xref section="3.2" sectionFormat="of" target="HTTP-DGRAM"/>) with HTTP Datagrams in the format
defined in <xref target="payload-format"/>.</t>
      <t>To initiate an IP tunnel associated with a single HTTP stream, a client issues
a request containing the "connect-ip" upgrade token.</t>
      <t>When sending its IP proxying request, the client <bcp14>SHALL</bcp14> perform URI Template
expansion to determine the path and query of its request, see <xref target="client-config"/>.</t>
      <t>By virtue of the definition of the Capsule Protocol (see <xref section="3.2" sectionFormat="of" target="HTTP-DGRAM"/>), IP proxying requests do not carry any message content.
Similarly, successful IP proxying responses also do not carry any message
content.</t>
      <section anchor="ip-proxy-handling">
        <name>IP Proxy Handling</name>
        <t>Upon receiving an IP proxying request:</t>
        <ul spacing="normal">
          <li>if the recipient is configured to use another HTTP proxy, it will act as an
intermediary by forwarding the request to another HTTP server. Note that
such intermediaries may need to re-encode the request if they forward it
using a version of HTTP that is different from the one used to receive it,
as the request encoding differs by version (see below).</li>
          <li>otherwise, the recipient will act as an IP proxy. The IP proxy can choose to
reject the IP proxying request. Otherwise, it extracts the optional "target"
and "ipproto" variables from the URI it has reconstructed from the request
headers, decodes their percent-encoding, and establishes an IP tunnel.</li>
        </ul>
        <t>IP proxies <bcp14>MUST</bcp14> validate whether the decoded "target" and "ipproto" variables
meet the requirements in <xref target="scope"/>. If they do not, the IP proxy <bcp14>MUST</bcp14> treat the
request as malformed; see <xref section="8.1.1" sectionFormat="of" target="H2"/> and <xref section="4.1.2" sectionFormat="of" target="H3"/>.
If the "target" variable is a DNS name, the IP proxy <bcp14>MUST</bcp14> perform DNS
resolution (to obtain the corresponding IPv4 and/or IPv6 addresses via A and/or
AAAA records) before replying to the HTTP request. If errors occur during this
process, the IP proxy <bcp14>MUST</bcp14> reject the request and <bcp14>SHOULD</bcp14> send details using an
appropriate Proxy-Status header field <xref target="PROXY-STATUS"/>. For example,
if DNS resolution returns an error, the proxy can use the <tt>dns_error</tt> Proxy
Error Type from <xref section="2.3.2" sectionFormat="of" target="PROXY-STATUS"/>.</t>
        <t>The lifetime of the IP forwarding tunnel is tied to the IP proxying request
stream. The IP proxy <bcp14>MUST</bcp14> maintain all IP address and route assignments
associated with the IP forwarding tunnel while the request stream is open. IP
proxies <bcp14>MAY</bcp14> choose to tear down the tunnel due to a period of inactivity, but
they <bcp14>MUST</bcp14> close the request stream when doing so.</t>
        <t>A successful response (as defined in Sections <xref format="counter" target="resp1"/> and <xref format="counter" target="resp23"/>)
indicates that the IP proxy has established an IP tunnel and is willing to
proxy IP payloads. Any response other than a successful response indicates that
the request has failed; thus, the client <bcp14>MUST</bcp14> abort the request.</t>
        <t>Along with a successful response, the IP proxy can send capsules to assign
addresses and advertise routes to the client (<xref target="capsules"/>). The client can
also assign addresses and advertise routes to the IP proxy for
network-to-network routing.</t>
      </section>
      <section anchor="req1">
        <name>HTTP/1.1 Request</name>
        <t>When using HTTP/1.1 <xref target="H1"/>, an IP proxying request will meet the following
requirements:</t>
        <ul spacing="normal">
          <li>the method <bcp14>SHALL</bcp14> be "GET".</li>
          <li>the request <bcp14>SHALL</bcp14> include a single Host header field containing the host
and optional port of the IP proxy.</li>
          <li>the request <bcp14>SHALL</bcp14> include a Connection header field with value "Upgrade"
(note that this requirement is case-insensitive as per <xref section="7.6.1" sectionFormat="of" target="HTTP"/>).</li>
          <li>the request <bcp14>SHALL</bcp14> include an Upgrade header field with value "connect-ip".</li>
        </ul>
        <t>An IP proxying request that does not conform to these restrictions is
malformed. The recipient of such a malformed request <bcp14>MUST</bcp14> respond with an error
and <bcp14>SHOULD</bcp14> use the 400 (Bad Request) status code.</t>
        <t>For example, if the client is configured with URI Template
"https://example.org/.well-known/masque/ip/{target}/{ipproto}/" and wishes to
open an IP forwarding tunnel with no target or protocol limitations, it could
send the following request:</t>
        <figure anchor="fig-req-h1">
          <name>Example HTTP/1.1 Request</name>
          <sourcecode type="http-message"><![CDATA[
GET https://example.org/.well-known/masque/ip/*/*/ HTTP/1.1
Host: example.org
Connection: Upgrade
Upgrade: connect-ip
Capsule-Protocol: ?1
]]></sourcecode>
        </figure>
      </section>
      <section anchor="resp1">
        <name>HTTP/1.1 Response</name>
        <t>The server indicates a successful response by replying with the following
requirements:</t>
        <ul spacing="normal">
          <li>the HTTP status code on the response <bcp14>SHALL</bcp14> be 101 (Switching Protocols).</li>
          <li>the response <bcp14>SHALL</bcp14> include a Connection header field with value "Upgrade"
(note that this requirement is case-insensitive as per <xref section="7.6.1" sectionFormat="of" target="HTTP"/>).</li>
          <li>the response <bcp14>SHALL</bcp14> include a single Upgrade header field with value
"connect-ip".</li>
          <li>the response <bcp14>SHALL</bcp14> meet the requirements of HTTP responses that start the
Capsule Protocol; see <xref section="3.2" sectionFormat="of" target="HTTP-DGRAM"/>.</li>
        </ul>
        <t>If any of these requirements are not met, the client <bcp14>MUST</bcp14> treat this proxying
attempt as failed and close the connection.</t>
        <t>For example, the server could respond with:</t>
        <figure anchor="fig-resp-h1">
          <name>Example HTTP/1.1 Response</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 101 Switching Protocols
Connection: Upgrade
Upgrade: connect-ip
Capsule-Protocol: ?1
]]></sourcecode>
        </figure>
      </section>
      <section anchor="req23">
        <name>HTTP/2 and HTTP/3 Requests</name>
        <t>When using HTTP/2 <xref target="H2"/> or HTTP/3 <xref target="H3"/>, IP proxying requests use HTTP
Extended CONNECT. This requires that servers send an HTTP Setting as specified
in <xref target="EXT-CONNECT2"/> and <xref target="EXT-CONNECT3"/> and that requests use HTTP
pseudo-header fields with the following requirements:</t>
        <ul spacing="normal">
          <li>The :method pseudo-header field <bcp14>SHALL</bcp14> be "CONNECT".</li>
          <li>The :protocol pseudo-header field <bcp14>SHALL</bcp14> be "connect-ip".</li>
          <li>The :authority pseudo-header field <bcp14>SHALL</bcp14> contain the authority of the IP
proxy.</li>
          <li>The :path and :scheme pseudo-header fields <bcp14>SHALL NOT</bcp14> be empty. Their values
<bcp14>SHALL</bcp14> contain the scheme and path from the URI Template after the URI
Template expansion process has been completed; see <xref target="client-config"/>.
Variables in the URI Template can determine the scope of the request, such as
requesting full-tunnel IP packet forwarding, or a specific proxied flow; see
<xref target="scope"/>.</li>
        </ul>
        <t>An IP proxying request that does not conform to these restrictions is
malformed; see <xref section="8.1.1" sectionFormat="of" target="H2"/> and <xref section="4.1.2" sectionFormat="of" target="H3"/>.</t>
        <t>For example, if the client is configured with URI Template
"https://example.org/.well-known/masque/ip/{target}/{ipproto}/" and wishes to
open an IP forwarding tunnel with no target or protocol limitations, it could
send the following request:</t>
        <figure anchor="fig-req-h2">
          <name>Example HTTP/2 or HTTP/3 Request</name>
          <sourcecode type="http-message"><![CDATA[
HEADERS
:method = CONNECT
:protocol = connect-ip
:scheme = https
:path = /.well-known/masque/ip/*/*/
:authority = example.org
capsule-protocol = ?1
]]></sourcecode>
        </figure>
      </section>
      <section anchor="resp23">
        <name>HTTP/2 and HTTP/3 Responses</name>
        <t>The server indicates a successful response by replying with the following
requirements:</t>
        <ul spacing="normal">
          <li>the HTTP status code on the response <bcp14>SHALL</bcp14> be in the 2xx (Successful) range.</li>
          <li>the response <bcp14>SHALL</bcp14> meet the requirements of HTTP responses that start the
Capsule Protocol; see <xref section="3.2" sectionFormat="of" target="HTTP-DGRAM"/>.</li>
        </ul>
        <t>If any of these requirements are not met, the client <bcp14>MUST</bcp14> treat this proxying
attempt as failed and abort the request. As an example, any status code in the
3xx range will be treated as a failure and cause the client to abort the
request.</t>
        <t>For example, the server could respond with:</t>
        <figure anchor="fig-resp-h2">
          <name>Example HTTP/2 or HTTP/3 Response</name>
          <sourcecode type="http-message"><![CDATA[
HEADERS
:status = 200
capsule-protocol = ?1
]]></sourcecode>
        </figure>
      </section>
      <section anchor="scope">
        <name>Limiting Request Scope</name>
        <t>Unlike UDP proxying requests, which require specifying a target host, IP
proxying requests can allow endpoints to send arbitrary IP packets to any host.
The client can choose to restrict a given request to a specific IP prefix or IP
protocol by adding parameters to its request. When the IP proxy knows that a
request is scoped to a target prefix or protocol, it can leverage this
information to optimize its resource allocation; for example, the IP proxy can
assign the same public IP address to two IP proxying requests that are scoped
to different prefixes and/or different protocols.</t>
        <t>The scope of the request is indicated by the client to the IP proxy via the
"target" and "ipproto" variables of the URI Template; see <xref target="client-config"/>.
Both the "target" and "ipproto" variables are optional; if they are not
included, they are considered to carry the wildcard value "*".</t>
        <dl spacing="compact">
          <dt>target:</dt>
          <dd>
            <t>The variable "target" contains a hostname or IP prefix of a specific host to
which the client wants to proxy packets. If the "target" variable is not
specified or its value is "*", the client is requesting to communicate with
any allowable host. "target" supports using DNS names, IPv6 prefixes and IPv4
prefixes. Note that IPv6 scoped addressing zone identifiers (<xref target="RFC6874"/>) are
not supported. If the target is an IP prefix (IP address optionally followed by
a percent-encoded slash followed by the prefix length in bits), the request
will only support a single IP version. If the target is a hostname, the IP
proxy is expected to perform DNS resolution to determine which route(s) to
advertise to the client. The IP proxy <bcp14>SHOULD</bcp14> send a ROUTE_ADVERTISEMENT capsule
that includes routes for all addresses that were resolved for the requested
hostname, that are accessible to the IP proxy, and belong to an address family
for which the IP proxy also sends an Assigned Address.</t>
          </dd>
          <dt>ipproto:</dt>
          <dd>
            <t>The variable "ipproto" contains an IP protocol number, as defined in the
"Assigned Internet Protocol Numbers" IANA registry <xref target="IANA-PN"/>. If present, it
specifies that a client only wants to proxy a specific IP protocol for this
request. If the value is "*", or the variable is not included, the client is
requesting to use any IP protocol. ICMP traffic is always allowed, regardless
of the value of this field.</t>
          </dd>
        </dl>
        <t>Using the terms IPv6address, IPv4address, and reg-name from <xref target="URI"/>, the
"target" and "ipproto" variables <bcp14>MUST</bcp14> adhere to the format in
<xref target="target-format"/>, using notation from <xref target="ABNF"/>. Additionally:</t>
        <ul spacing="normal">
          <li>if "target" contains an IPv6 literal or prefix, the colons (":") <bcp14>MUST</bcp14> be
percent-encoded. For example, if the target host is "2001:db8::42", it will
be encoded in the URI as "2001%3Adb8%3A%3A42".</li>
          <li>If present, the IP prefix length in "target" <bcp14>SHALL</bcp14> be preceded by a
percent-encoded slash ("/"): "%2F". The IP prefix length <bcp14>MUST</bcp14> represent a
decimal integer between 0 and the length of the IP address in bits, inclusive.</li>
          <li>If "target" contains an IP prefix and the prefix length is strictly less than
the length of the IP address in bits, the lower bits of the IP address that
are not covered by the prefix length <bcp14>MUST</bcp14> all be set to 0.</li>
          <li>"ipproto" <bcp14>MUST</bcp14> represent a decimal integer between 0 and 255 inclusive, or
the wildcard value "*".</li>
        </ul>
        <figure anchor="target-format">
          <name>URI Template Variable Format</name>
          <artwork type="ascii-art"><![CDATA[
target = IPv6prefix / IPv4prefix / reg-name / "*"
IPv6prefix = IPv6address ["%2F" 1*3DIGIT]
IPv4prefix = IPv4address ["%2F" 1*2DIGIT]
ipproto = 1*3DIGIT / "*"
]]></artwork>
        </figure>
        <t>IP proxies <bcp14>MAY</bcp14> perform access control using the scoping information provided by
the client: if the client is not authorized to access any of the destinations
included in the scope, then the IP proxy can immediately fail the request.</t>
      </section>
      <section anchor="capsules">
        <name>Capsules</name>
        <t>This document defines multiple new capsule types that allow endpoints to
exchange IP configuration information. Both endpoints <bcp14>MAY</bcp14> send any number of
these new capsules.</t>
        <section anchor="addressassign-capsule">
          <name>ADDRESS_ASSIGN Capsule</name>
          <t>The ADDRESS_ASSIGN capsule (see <xref target="iana-types"/> for the value of the capsule
type) allows an endpoint to inform its peer of the list of IP addresses or
prefixes it has assigned to it. Every capsule contains the full list of IP
prefixes currently assigned to the receiver. Any of these addresses can be used
as the source address on IP packets originated by the receiver of this capsule.</t>
          <figure anchor="addr-assign-format">
            <name>ADDRESS_ASSIGN Capsule Format</name>
            <artwork><![CDATA[
ADDRESS_ASSIGN Capsule {
  Type (i) = ADDRESS_ASSIGN,
  Length (i),
  Assigned Address (..) ...,
}
]]></artwork>
          </figure>
          <t>The ADDRESS_ASSIGN capsule contains a sequence of zero or more Assigned
Addresses.</t>
          <figure anchor="assigned-addr-format">
            <name>Assigned Address Format</name>
            <artwork><![CDATA[
Assigned Address {
  Request ID (i),
  IP Version (8),
  IP Address (32..128),
  IP Prefix Length (8),
}
]]></artwork>
          </figure>
          <t>Each Assigned Address contains the following fields:</t>
          <dl spacing="compact">
            <dt>Request ID:</dt>
            <dd>
              <t>Request identifier, encoded as a variable-length integer. If this address
assignment is in response to an Address Request (see <xref target="addr_req"/>), then this
field <bcp14>SHALL</bcp14> contain the value of the corresponding field in the request.
Otherwise, this field <bcp14>SHALL</bcp14> be zero.</t>
            </dd>
            <dt>IP Version:</dt>
            <dd>
              <t>IP Version of this address assignment, encoded as an unsigned 8-bit integer.
<bcp14>MUST</bcp14> be either 4 or 6.</t>
            </dd>
            <dt>IP Address:</dt>
            <dd>
              <t>Assigned IP address. If the IP Version field has value 4, the IP Address
field <bcp14>SHALL</bcp14> have a length of 32 bits. If the IP Version field has value 6, the
IP Address field <bcp14>SHALL</bcp14> have a length of 128 bits.</t>
            </dd>
            <dt>IP Prefix Length:</dt>
            <dd>
              <t>The number of bits in the IP address that are used to define the prefix that
is being assigned, encoded as an unsigned 8-bit integer. This <bcp14>MUST</bcp14> be less than
or equal to the length of the IP Address field, in bits. If the prefix length
is equal to the length of the IP address, the receiver of this capsule is
allowed to send packets from a single source address. If the prefix length is
less than the length of the IP address, the receiver of this capsule is allowed
to send packets from any source address that falls within the prefix. If the
prefix length is strictly less than the length of the IP address in bits, the
lower bits of the IP Address field that are not covered by the prefix length
<bcp14>MUST</bcp14> all be set to 0.</t>
            </dd>
          </dl>
          <t>If any of the capsule fields are malformed upon reception, the receiver of the
capsule <bcp14>MUST</bcp14> follow the error handling procedure defined in <xref section="3.3" sectionFormat="of" target="HTTP-DGRAM"/>.</t>
          <t>If an ADDRESS_ASSIGN capsule does not contain an address that was previously
transmitted in another ADDRESS_ASSIGN capsule, that indicates that the address
has been removed. An ADDRESS_ASSIGN capsule can also be empty, indicating that
all addresses have been removed.</t>
          <t>In some deployments of IP proxying in HTTP, an endpoint needs to be assigned an
address by its peer before it knows what source address to set on its own
packets. For example, in the Remote Access VPN case (<xref target="example-remote"/>) the
client cannot send IP packets until it knows what address to use. In these
deployments, the endpoint that is expecting an address assignment <bcp14>MUST</bcp14> send an
ADDRESS_REQUEST capsule. This isn't required if the endpoint does not need any
address assignment, for example when it is configured out-of-band with static
addresses.</t>
          <t>While ADDRESS_ASSIGN capsules are commonly sent in response to ADDRESS_REQUEST
capsules, endpoints <bcp14>MAY</bcp14> send ADDRESS_ASSIGN capsules unprompted.</t>
        </section>
        <section anchor="addr_req">
          <name>ADDRESS_REQUEST Capsule</name>
          <t>The ADDRESS_REQUEST capsule (see <xref target="iana-types"/> for the value of the capsule
type) allows an endpoint to request assignment of IP addresses from its peer.
The capsule allows the endpoint to optionally indicate a preference for which
address it would get assigned.</t>
          <figure anchor="addr-req-format">
            <name>ADDRESS_REQUEST Capsule Format</name>
            <artwork><![CDATA[
ADDRESS_REQUEST Capsule {
  Type (i) = ADDRESS_REQUEST,
  Length (i),
  Requested Address (..) ...,
}
]]></artwork>
          </figure>
          <t>The ADDRESS_REQUEST capsule contains a sequence of one or more Requested
Addresses.</t>
          <figure anchor="requested-addr-format">
            <name>Requested Address Format</name>
            <artwork><![CDATA[
Requested Address {
  Request ID (i),
  IP Version (8),
  IP Address (32..128),
  IP Prefix Length (8),
}
]]></artwork>
          </figure>
          <t>Each Requested Address contains the following fields:</t>
          <dl spacing="compact">
            <dt>Request ID:</dt>
            <dd>
              <t>Request identifier, encoded as a variable-length integer. This is the
identifier of this specific address request. Each request from a given endpoint
carries a different identifier. Request IDs <bcp14>MUST NOT</bcp14> be reused by an endpoint,
and <bcp14>MUST NOT</bcp14> be zero.</t>
            </dd>
            <dt>IP Version:</dt>
            <dd>
              <t>IP Version of this address request, encoded as an unsigned 8-bit integer.
<bcp14>MUST</bcp14> be either 4 or 6.</t>
            </dd>
            <dt>IP Address:</dt>
            <dd>
              <t>Requested IP address. If the IP Version field has value 4, the IP Address
field <bcp14>SHALL</bcp14> have a length of 32 bits. If the IP Version field has value 6, the
IP Address field <bcp14>SHALL</bcp14> have a length of 128 bits.</t>
            </dd>
            <dt>IP Prefix Length:</dt>
            <dd>
              <t>Length of the IP Prefix requested, in bits, encoded as an unsigned 8-bit
integer. <bcp14>MUST</bcp14> be less than or equal to the length of the IP Address field, in
bits. If the prefix length is strictly less than the length of the IP address
in bits, the lower bits of the IP Address field that are not covered by the
prefix length <bcp14>MUST</bcp14> all be set to 0.</t>
            </dd>
          </dl>
          <t>If the IP address is all-zero (0.0.0.0 or ::), this indicates that the sender
is requesting an address of that address family but does not have a preference
for a specific address. In that scenario, the prefix length still indicates the
sender's preference for the prefix length it is requesting.</t>
          <t>If any of the capsule fields are malformed upon reception, the receiver of the
capsule <bcp14>MUST</bcp14> follow the error handling procedure defined in <xref section="3.3" sectionFormat="of" target="HTTP-DGRAM"/>.</t>
          <t>Upon receiving the ADDRESS_REQUEST capsule, an endpoint <bcp14>SHOULD</bcp14> assign one or
more IP addresses to its peer, and then respond with an ADDRESS_ASSIGN capsule
to inform the peer of the assignment. For each Requested Address, the receiver
of the ADDRESS_REQUEST capsule <bcp14>SHALL</bcp14> respond with an Assigned Address with a
matching Request ID. If the requested address was assigned, the IP Address and
IP Prefix Length fields in the Assigned Address response <bcp14>SHALL</bcp14> be set to the
assigned values. If the requested address was not assigned, the IP address
<bcp14>SHALL</bcp14> be all-zero and the IP Prefix Length <bcp14>SHALL</bcp14> be the maximum length
(0.0.0.0/32 or ::/128) to indicate that no address was assigned. These address
rejections <bcp14>SHOULD NOT</bcp14> be included in subsequent ADDRESS_ASSIGN capsules. Note
that other Assigned Address entries that do not correspond to any Request ID
can also be contained in the same ADDRESS_ASSIGN response.</t>
          <t>If an endpoint receives an ADDRESS_REQUEST capsule that contains zero Requested
Addresses, it <bcp14>MUST</bcp14> abort the IP proxying request stream.</t>
          <t>Note that the ordering of Requested Addresses does not carry any semantics.
Similarly, the Request ID is only meant as a unique identifier, it does not
convey any priority or importance.</t>
        </section>
        <section anchor="route-adv">
          <name>ROUTE_ADVERTISEMENT Capsule</name>
          <t>The ROUTE_ADVERTISEMENT capsule (see <xref target="iana-types"/> for the value of the
capsule type) allows an endpoint to communicate to its peer that it is willing
to route traffic to a set of IP address ranges. This indicates that the sender
has an existing route to each address range, and notifies its peer that if the
receiver of the ROUTE_ADVERTISEMENT capsule sends IP packets for one of these
ranges in HTTP Datagrams, the sender of the capsule will forward them along its
preexisting route. Any address which is in one of the address ranges can be
used as the destination address on IP packets originated by the receiver of
this capsule.</t>
          <figure anchor="route-adv-format">
            <name>ROUTE_ADVERTISEMENT Capsule Format</name>
            <artwork><![CDATA[
ROUTE_ADVERTISEMENT Capsule {
  Type (i) = ROUTE_ADVERTISEMENT,
  Length (i),
  IP Address Range (..) ...,
}
]]></artwork>
          </figure>
          <t>The ROUTE_ADVERTISEMENT capsule contains a sequence of zero or more IP Address
Ranges.</t>
          <figure anchor="addr-range-format">
            <name>IP Address Range Format</name>
            <artwork><![CDATA[
IP Address Range {
  IP Version (8),
  Start IP Address (32..128),
  End IP Address (32..128),
  IP Protocol (8),
}
]]></artwork>
          </figure>
          <t>Each IP Address Range contains the following fields:</t>
          <dl spacing="compact">
            <dt>IP Version:</dt>
            <dd>
              <t>IP Version of this range, encoded as an unsigned 8-bit integer. <bcp14>MUST</bcp14> be
either 4 or 6.</t>
            </dd>
            <dt>Start IP Address and End IP Address:</dt>
            <dd>
              <t>Inclusive start and end IP address of the advertised range. If the IP Version
field has value 4, these fields <bcp14>SHALL</bcp14> have a length of 32 bits. If the IP
Version field has value 6, these fields <bcp14>SHALL</bcp14> have a length of 128 bits. The
Start IP Address <bcp14>MUST</bcp14> be less than or equal to the End IP Address.</t>
            </dd>
            <dt>IP Protocol:</dt>
            <dd>
              <t>The Internet Protocol Number for traffic that can be sent to this range,
encoded as an unsigned 8-bit integer. If the value is 0, all protocols are
allowed. ICMP traffic is always allowed, regardless of the value of this field.</t>
            </dd>
          </dl>
          <t>If any of the capsule fields are malformed upon reception, the receiver of the
capsule <bcp14>MUST</bcp14> follow the error handling procedure defined in <xref section="3.3" sectionFormat="of" target="HTTP-DGRAM"/>.</t>
          <t>Upon receiving the ROUTE_ADVERTISEMENT capsule, an endpoint <bcp14>MAY</bcp14> update its
local state regarding what its peer is willing to route (subject to local
policy), such as by installing entries in a routing table.</t>
          <t>Each ROUTE_ADVERTISEMENT contains the full list of address ranges. If multiple
ROUTE_ADVERTISEMENT capsules are sent in one direction, each
ROUTE_ADVERTISEMENT capsule supersedes prior ones. In other words, if a given
address range was present in a prior capsule but the most recently received
ROUTE_ADVERTISEMENT capsule does not contain it, the receiver will consider
that range withdrawn.</t>
          <t>If multiple ranges using the same IP protocol were to overlap, some routing
table implementations might reject them. To prevent overlap, the ranges are
ordered; this places the burden on the sender and makes verification by the
receiver much simpler. If an IP Address Range A precedes an IP Address Range B
in the same ROUTE_ADVERTISEMENT capsule, they <bcp14>MUST</bcp14> follow these requirements:</t>
          <ul spacing="normal">
            <li>IP Version of A <bcp14>MUST</bcp14> be less than or equal to IP Version of B</li>
            <li>If the IP Version of A and B are equal, the IP Protocol of A <bcp14>MUST</bcp14> be less
than or equal to IP Protocol of B.</li>
            <li>If the IP Version and IP Protocol of A and B are both equal, the End IP
Address of A <bcp14>MUST</bcp14> be strictly less than the Start IP Address of B.</li>
          </ul>
          <t>If an endpoint receives a ROUTE_ADVERTISEMENT capsule that does not meet these
requirements, it <bcp14>MUST</bcp14> abort the IP proxying request stream.</t>
          <t>Since setting the IP protocol to zero indicates all protocols are allowed, the
requirements above make it possible for two routes to overlap when one has IP
protocol set to zero and the other set to non-zero. Endpoints <bcp14>MUST NOT</bcp14> send a
ROUTE_ADVERTISEMENT capsule with routes that overlap in such a way. Validating
this requirement is <bcp14>OPTIONAL</bcp14>, but if an endpoint detects the violation, it <bcp14>MUST</bcp14>
abort the IP proxying request stream.</t>
        </section>
      </section>
      <section anchor="ipv6-extension-headers">
        <name>IPv6 Extension Headers</name>
        <t>Both request scoping (see <xref target="scope"/>) and the ROUTE_ADVERTISEMENT capsule (see
<xref target="route-adv"/>) use IP protocol numbers. These numbers represent both upper
layers (as defined in <xref section="2" sectionFormat="of" target="IPv6"/>, examples include TCP and
UDP) and IPv6 extension headers (as defined in <xref section="4" sectionFormat="of" target="IPv6"/>, examples
include Fragment and Options headers). IP proxies <bcp14>MAY</bcp14> reject requests to scope
to protocol numbers that are used for extension headers. Upon receiving
packets, implementations that support scoping or routing by IP protocol number
<bcp14>MUST</bcp14> walk the chain of extensions to find the matching IP protocol number. Note
that the ROUTE_ADVERTISEMENT capsule uses IP protocol number 0 to indicate that
all protocols are allowed, it does not restrict the route to the IPv6
Hop-by-Hop Options Header (<xref section="4.3" sectionFormat="of" target="IPv6"/>).</t>
      </section>
    </section>
    <section anchor="context-identifiers">
      <name>Context Identifiers</name>
      <t>The mechanism for proxying IP in HTTP defined in this document allows future
extensions to exchange HTTP Datagrams that carry different semantics from IP
payloads. Some of these extensions can augment IP payloads with additional data
or compress IP header fields, while others can exchange data that is completely
separate from IP payloads. In order to accomplish this, all HTTP Datagrams
associated with IP proxying request streams start with a Context ID field; see
<xref target="payload-format"/>.</t>
      <t>Context IDs are 62-bit integers (0 to 2<sup>62</sup>-1). Context IDs are
encoded as variable-length integers; see <xref section="16" sectionFormat="of" target="QUIC"/>. The Context ID
value of 0 is reserved for IP payloads, while non-zero values are dynamically
allocated. Non-zero even-numbered Context IDs are client-allocated, and
odd-numbered Context IDs are proxy-allocated. The Context ID namespace is tied
to a given HTTP request; it is possible for a Context ID with the same numeric
value to be simultaneously allocated in distinct requests, potentially with
different semantics. Context IDs <bcp14>MUST NOT</bcp14> be re-allocated within a given HTTP
request but <bcp14>MAY</bcp14> be allocated in any order. The Context ID allocation
restrictions to the use of even-numbered and odd-numbered Context IDs exist in
order to avoid the need for synchronization between endpoints. However, once a
Context ID has been allocated, those restrictions do not apply to the use of
the Context ID; it can be used by either the client or the IP proxy,
independent of which endpoint initially allocated it.</t>
      <t>Registration is the action by which an endpoint informs its peer of the
semantics and format of a given Context ID. This document does not define how
registration occurs. Future extensions <bcp14>MAY</bcp14> use HTTP header fields or capsules
to register Context IDs. Depending on the method being used, it is possible for
datagrams to be received with Context IDs that have not yet been registered.
For instance, this can be due to reordering of the packet containing the
datagram and the packet containing the registration message during transmission.</t>
    </section>
    <section anchor="payload-format">
      <name>HTTP Datagram Payload Format</name>
      <t>When associated with IP proxying request streams, the HTTP Datagram Payload
field of HTTP Datagrams (see <xref target="HTTP-DGRAM"/>) has the format defined in
<xref target="dgram-format"/>. Note that when HTTP Datagrams are encoded using QUIC DATAGRAM
frames, the Context ID field defined below directly follows the Quarter Stream
ID field which is at the start of the QUIC DATAGRAM frame payload:</t>
      <figure anchor="dgram-format">
        <name>IP Proxying HTTP Datagram Format</name>
        <artwork><![CDATA[
IP Proxying HTTP Datagram Payload {
  Context ID (i),
  Payload (..),
}
]]></artwork>
      </figure>
      <t>The IP Proxying HTTP Datagram Payload contains the following fields:</t>
      <dl spacing="compact">
        <dt>Context ID:</dt>
        <dd>
          <t>A variable-length integer that contains the value of the Context ID. If an
HTTP/3 datagram which carries an unknown Context ID is received, the receiver
<bcp14>SHALL</bcp14> either drop that datagram silently or buffer it temporarily (on the order
of a round trip) while awaiting the registration of the corresponding Context
ID.</t>
        </dd>
        <dt>Payload:</dt>
        <dd>
          <t>The payload of the datagram, whose semantics depend on value of the previous
field. Note that this field can be empty.</t>
        </dd>
      </dl>
      <t>IP packets are encoded using HTTP Datagrams with the Context ID set to zero.
When the Context ID is set to zero, the Payload field contains a full IP packet
(from the IP Version field until the last byte of the IP Payload).</t>
    </section>
    <section anchor="ip-packet-handling">
      <name>IP Packet Handling</name>
      <t>Clients <bcp14>MAY</bcp14> optimistically start sending proxied IP packets before receiving
the response to its IP proxying request, noting however that those may not be
processed by the IP proxy if it responds to the request with a failure, or if
the datagrams are received by the IP proxy before the request. Since receiving
addresses and routes is required in order to know that a packet can be sent
through the tunnel, such optimistic packets might be dropped by the IP proxy if
it chooses to provide different addressing or routing information than what the
client assumed.</t>
      <t>When an endpoint receives an HTTP Datagram containing an IP packet, it will
parse the packet's IP header, perform any local policy checks (e.g., source
address validation), check their routing table to pick an outbound interface,
and then send the IP packet on that interface or pass it to a local
application. The endpoint can also choose to drop any received packets instead
of forwarding them. If a received IP packet fails any correctness or policy
checks, that is a forwarding error, not a protocol violation as far as IP
proxying is concerned; see <xref target="error-signal"/>.</t>
      <t>In the other direction, when an endpoint receives an IP packet, it checks to see
if the packet matches the routes mapped for an IP tunnel, and performs the same
forwarding checks as above before transmitting the packet over HTTP Datagrams.</t>
      <t>When IP proxying endpoints forward IP packets between different links, they
will decrement the IP Hop Count (or TTL) upon encapsulation, but not upon
decapsulation. In other words, the Hop Count is decremented right before an IP
packet is transmitted in an HTTP Datagram. This prevents infinite loops in the
presence of routing loops, and matches the choices in IPsec <xref target="IPSEC"/>.
This does not apply to IP packets generated by the IP proxying endpoint itself.</t>
      <t>Note that the IP forwarding tunnels described in this document are not
fully featured "interfaces" in the IPv6 addressing architecture sense
<xref target="IPv6-ADDR"/>. In particular, they do not necessarily have
IPv6 link-local addresses. Additionally, IPv6 stateless
autoconfiguration or router advertisement messages are not used in
such interfaces, and neither is neighbor discovery. Implementers need
to ensure that they do not forward any link-local traffic beyond the
IP proxying interface that it was received on. IP proxying endpoints
also need to properly reply to packets destined to link-local
multicast addresses.</t>
      <t>IPv6 requires that every link have an MTU of at least 1280 bytes <xref target="IPv6"/>.
Since IP proxying in HTTP conveys IP packets in HTTP Datagrams and those can in
turn be sent in QUIC DATAGRAM frames which cannot be fragmented
<xref target="DGRAM"/>, the MTU of an IP tunnel can be limited by the MTU of the
QUIC connection that IP proxying is operating over. This can lead to situations
where the IPv6 minimum link MTU is violated. IP proxying endpoints that support
IPv6 <bcp14>MUST</bcp14> ensure that the IP tunnel link MTU is at least 1280 (i.e., that they
can send HTTP Datagrams with payloads of at least 1280 bytes). This can be
accomplished using various techniques:</t>
      <ul spacing="normal">
        <li>if both IP proxying endpoints know for certain that HTTP intermediaries are
not in use, the endpoints can pad the QUIC INITIAL packets of the outer
QUIC connection that IP proxying is running over. (Assuming QUIC version 1 is
in use, the overhead is 1 byte type, 20 bytes maximal connection ID length, 4
bytes maximal packet number length, 1 byte DATAGRAM frame type, 8 bytes
maximal quarter stream ID, one byte for the zero Context ID, and 16 bytes for
the AEAD authentication tag, for a total of 51 bytes of overhead which
corresponds to padding QUIC INITIAL packets to 1331 bytes or more.)</li>
        <li>IP proxying endpoints can also send ICMPv6 echo requests with 1232 bytes of
data to ascertain the link MTU and tear down the tunnel if they do not
receive a response. Unless endpoints have an out-of-band means of
guaranteeing that the previous techniques is sufficient, they <bcp14>MUST</bcp14> use this
method. If an endpoint does not know an IPv6 address of its peer, it can send
the ICMPv6 echo request to the link local all nodes multicast address
(ff02::1).</li>
      </ul>
      <t>If an endpoint is using QUIC DATAGRAM frames to convey IPv6 packets, and it
detects that the QUIC MTU is too low to allow sending 1280 bytes, it <bcp14>MUST</bcp14> abort
the IP proxying request stream.</t>
      <t>Endpoints <bcp14>MAY</bcp14> implement additional filtering policies on the IP packets they
forward.</t>
      <t>Note that it is possible for multiple proxied IP packets to be encapsulated in
the same outer packet, for example because a QUIC packet can carry two QUIC
DATAGRAM frames. It is also possible for a proxied IP packet to span multiple
outer packets, because a DATAGRAM capsule can be split across multiple QUIC or
TCP packets.</t>
    </section>
    <section anchor="error-signal">
      <name>Error Signalling</name>
      <t>Since IP proxying endpoints often forward IP packets onwards to other network
interfaces, they need to handle errors in the forwarding process. For example,
forwarding can fail if the endpoint does not have a route for the destination
address, or if it is configured to reject a destination prefix by policy, or if
the MTU of the outgoing link is lower than the size of the packet to be
forwarded. In such scenarios, IP proxying endpoints <bcp14>SHOULD</bcp14> use ICMP
<xref target="ICMP"/> <xref target="ICMPv6"/> to signal the forwarding error to its
peer by generating ICMP packets and sending them using HTTP Datagrams.</t>
      <t>Endpoints are free to select the most appropriate ICMP errors to send. Some
examples that are relevant for IP proxying include:</t>
      <ul spacing="normal">
        <li>For invalid source addresses, send Destination Unreachable (<xref section="3.1" sectionFormat="of" target="ICMPv6"/>) with code 5, "Source address failed ingress/egress policy".</li>
        <li>For unroutable destination addresses, send Destination Unreachable (<xref section="3.1" sectionFormat="of" target="ICMPv6"/>) with a code 0, "No route to destination", or code 1,
"Communication with destination administratively prohibited".</li>
        <li>For packets that cannot fit within the MTU of the outgoing link, send Packet
Too Big (<xref section="3.2" sectionFormat="of" target="ICMPv6"/>).</li>
      </ul>
      <t>In order to receive these errors, endpoints need to be prepared to receive ICMP
packets. If an endpoint does not send ROUTE_ADVERTISEMENT capsules, such as a
client opening an IP flow through an IP proxy, it <bcp14>SHOULD</bcp14> process proxied ICMP
packets from its peer in order to receive these errors. Note that ICMP messages
can originate from a source address different from that of the IP proxying
peer, and also from outside the target if scoping is in use (see <xref target="scope"/>).</t>
    </section>
    <section anchor="examples">
      <name>Examples</name>
      <t>IP proxying in HTTP enables many different use cases that can benefit from IP
packet proxying and tunnelling. These examples are provided to help illustrate
some of the ways in which IP proxying in HTTP can be used.</t>
      <section anchor="example-remote">
        <name>Remote Access VPN</name>
        <t>The following example shows a point-to-network VPN setup, where a client
receives a set of local addresses, and can send to any remote host through the
IP proxy. Such VPN setups can be either full-tunnel or split-tunnel.</t>
        <figure anchor="diagram-tunnel">
          <name>VPN Tunnel Setup</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="128" width="512" viewBox="0 0 512 128" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,32 L 8,96" fill="none" stroke="black"/>
                <path d="M 80,32 L 80,96" fill="none" stroke="black"/>
                <path d="M 248,32 L 248,96" fill="none" stroke="black"/>
                <path d="M 320,32 L 320,96" fill="none" stroke="black"/>
                <path d="M 416,32 L 416,96" fill="none" stroke="black"/>
                <path d="M 8,32 L 80,32" fill="none" stroke="black"/>
                <path d="M 248,32 L 320,32" fill="none" stroke="black"/>
                <path d="M 416,32 L 448,32" fill="none" stroke="black"/>
                <path d="M 80,48 L 248,48" fill="none" stroke="black"/>
                <path d="M 192,64 L 216,64" fill="none" stroke="black"/>
                <path d="M 320,64 L 448,64" fill="none" stroke="black"/>
                <path d="M 80,80 L 248,80" fill="none" stroke="black"/>
                <path d="M 8,96 L 80,96" fill="none" stroke="black"/>
                <path d="M 248,96 L 320,96" fill="none" stroke="black"/>
                <path d="M 416,96 L 448,96" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="456,96 444,90.4 444,101.6" fill="black" transform="rotate(0,448,96)"/>
                <polygon class="arrowhead" points="456,64 444,58.4 444,69.6" fill="black" transform="rotate(0,448,64)"/>
                <polygon class="arrowhead" points="456,32 444,26.4 444,37.6" fill="black" transform="rotate(0,448,32)"/>
                <polygon class="arrowhead" points="224,64 212,58.4 212,69.6" fill="black" transform="rotate(0,216,64)"/>
                <polygon class="arrowhead" points="200,64 188,58.4 188,69.6" fill="black" transform="rotate(180,192,64)"/>
                <g class="text">
                  <text x="100" y="36">IP</text>
                  <text x="120" y="36">A</text>
                  <text x="212" y="36">IP</text>
                  <text x="232" y="36">B</text>
                  <text x="468" y="36">IP</text>
                  <text x="488" y="36">D</text>
                  <text x="284" y="52">IP</text>
                  <text x="340" y="52">IP</text>
                  <text x="360" y="52">C</text>
                  <text x="44" y="68">Client</text>
                  <text x="100" y="68">IP</text>
                  <text x="140" y="68">Subnet</text>
                  <text x="176" y="68">C</text>
                  <text x="232" y="68">?</text>
                  <text x="288" y="68">Proxy</text>
                  <text x="468" y="68">IP</text>
                  <text x="488" y="68">E</text>
                  <text x="468" y="100">IP</text>
                  <text x="496" y="100">...</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+--------+ IP A          IP B +--------+           +---> IP D
|        +--------------------+   IP   | IP C      |
| Client | IP Subnet C <--> ? |  Proxy +-----------+---> IP E
|        +--------------------+        |           |
+--------+                    +--------+           +---> IP ...

]]></artwork>
          </artset>
        </figure>
        <t>In this case, the client does not specify any scope in its request. The IP
proxy assigns the client an IPv4 address (192.0.2.11) and a full-tunnel route
of all IPv4 addresses (0.0.0.0/0). The client can then send to any IPv4 host
using its assigned address as its source address.</t>
        <figure anchor="fig-full-tunnel">
          <name>VPN Full-Tunnel Example</name>
          <artwork><![CDATA[
[[ From Client ]]             [[ From IP Proxy ]]

SETTINGS
  H3_DATAGRAM = 1

                              SETTINGS
                                ENABLE_CONNECT_PROTOCOL = 1
                                H3_DATAGRAM = 1

STREAM(44): HEADERS
:method = CONNECT
:protocol = connect-ip
:scheme = https
:path = /vpn
:authority = proxy.example.com
capsule-protocol = ?1

                              STREAM(44): HEADERS
                              :status = 200
                              capsule-protocol = ?1

STREAM(44): DATA
Capsule Type = ADDRESS_REQUEST
(Request ID = 1
 IP Version = 4
 IP Address = 0.0.0.0
 IP Prefix Length = 32)

                              STREAM(44): DATA
                              Capsule Type = ADDRESS_ASSIGN
                              (Request ID = 1
                               IP Version = 4
                               IP Address = 192.0.2.11
                               IP Prefix Length = 32)

                              STREAM(44): DATA
                              Capsule Type = ROUTE_ADVERTISEMENT
                              (IP Version = 4
                               Start IP Address = 0.0.0.0
                               End IP Address = 255.255.255.255
                               IP Protocol = 0) // Any

DATAGRAM
Quarter Stream ID = 11
Context ID = 0
Payload = Encapsulated IP Packet

                              DATAGRAM
                              Quarter Stream ID = 11
                              Context ID = 0
                              Payload = Encapsulated IP Packet
]]></artwork>
        </figure>
        <t>A setup for a split-tunnel VPN (the case where the client can only access a
specific set of private subnets) is quite similar. In this case, the advertised
route is restricted to 192.0.2.0/24, rather than 0.0.0.0/0.</t>
        <figure anchor="fig-split-tunnel">
          <name>VPN Split-Tunnel Example</name>
          <artwork><![CDATA[
[[ From Client ]]             [[ From IP Proxy ]]

                              STREAM(44): DATA
                              Capsule Type = ADDRESS_ASSIGN
                              (Request ID = 0
                               IP Version = 4
                               IP Address = 192.0.2.42
                               IP Prefix Length = 32)

                              STREAM(44): DATA
                              Capsule Type = ROUTE_ADVERTISEMENT
                              (IP Version = 4
                               Start IP Address = 192.0.2.0
                               End IP Address = 192.0.2.41
                               IP Protocol = 0) // Any
                              (IP Version = 4
                               Start IP Address = 192.0.2.43
                               End IP Address = 192.0.2.255
                               IP Protocol = 0) // Any
]]></artwork>
        </figure>
      </section>
      <section anchor="site-to-site-vpn">
        <name>Site-to-Site VPN</name>
        <t>The following example shows how to connect a branch office network to a
corporate network such that all machines on those networks can communicate. In
this example, the IP proxying client is attached to the branch office network
192.0.2.0/24, and the IP proxy is attached to the corporate network
203.0.113.0/24. There are legacy clients on the branch office network that only
allow maintenance requests from machines on their subnet, so the IP Proxy is
provisioned with an IP address from that subnet.</t>
        <figure anchor="diagram-s2s">
          <name>Site-to-site VPN Example</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="128" width="560" viewBox="0 0 560 128" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 112,32 L 112,96" fill="none" stroke="black"/>
                <path d="M 144,32 L 144,96" fill="none" stroke="black"/>
                <path d="M 216,32 L 216,96" fill="none" stroke="black"/>
                <path d="M 328,32 L 328,96" fill="none" stroke="black"/>
                <path d="M 392,32 L 392,96" fill="none" stroke="black"/>
                <path d="M 424,32 L 424,96" fill="none" stroke="black"/>
                <path d="M 88,32 L 112,32" fill="none" stroke="black"/>
                <path d="M 144,32 L 216,32" fill="none" stroke="black"/>
                <path d="M 328,32 L 392,32" fill="none" stroke="black"/>
                <path d="M 424,32 L 456,32" fill="none" stroke="black"/>
                <path d="M 216,48 L 328,48" fill="none" stroke="black"/>
                <path d="M 88,64 L 144,64" fill="none" stroke="black"/>
                <path d="M 392,64 L 456,64" fill="none" stroke="black"/>
                <path d="M 216,80 L 328,80" fill="none" stroke="black"/>
                <path d="M 88,96 L 112,96" fill="none" stroke="black"/>
                <path d="M 144,96 L 216,96" fill="none" stroke="black"/>
                <path d="M 328,96 L 392,96" fill="none" stroke="black"/>
                <path d="M 424,96 L 456,96" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="464,96 452,90.4 452,101.6" fill="black" transform="rotate(0,456,96)"/>
                <polygon class="arrowhead" points="464,64 452,58.4 452,69.6" fill="black" transform="rotate(0,456,64)"/>
                <polygon class="arrowhead" points="464,32 452,26.4 452,37.6" fill="black" transform="rotate(0,456,32)"/>
                <polygon class="arrowhead" points="96,96 84,90.4 84,101.6" fill="black" transform="rotate(180,88,96)"/>
                <polygon class="arrowhead" points="96,64 84,58.4 84,69.6" fill="black" transform="rotate(180,88,64)"/>
                <polygon class="arrowhead" points="96,32 84,26.4 84,37.6" fill="black" transform="rotate(180,88,32)"/>
                <g class="text">
                  <text x="40" y="36">192.0.2.1</text>
                  <text x="512" y="36">203.0.113.9</text>
                  <text x="356" y="52">IP</text>
                  <text x="40" y="68">192.0.2.2</text>
                  <text x="180" y="68">Client</text>
                  <text x="236" y="68">IP</text>
                  <text x="284" y="68">Proxying</text>
                  <text x="360" y="68">Proxy</text>
                  <text x="512" y="68">203.0.113.8</text>
                  <text x="40" y="100">192.0.2.3</text>
                  <text x="512" y="100">203.0.113.7</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
192.0.2.1 <--+   +--------+             +-------+   +---> 203.0.113.9
             |   |        +-------------+  IP   |   |
192.0.2.2 <--+---+ Client | IP Proxying | Proxy +---+---> 203.0.113.8
             |   |        +-------------+       |   |
192.0.2.3 <--+   +--------+             +-------+   +---> 203.0.113.7

]]></artwork>
          </artset>
        </figure>
        <t>In this case, the client does not specify any scope in its request. The IP
proxy assigns the client an IPv4 address (203.0.113.100) and a split-tunnel
route to the corporate network (203.0.113.0/24). The client assigns the IP
proxy an IPv4 address (192.0.2.200) and a split-tunnel route to the branch
office network (192.0.2.0/24). This allows hosts on both networks to
communicate with each other, and allows the IP proxy to perform maintenance on
legacy hosts in the branch office. Note that IP proxying endpoints will
decrement the IP Hop Count (or TTL) when encapsulating forwarded packets, so
protocols that require that field be set to 255 will not function.</t>
        <figure anchor="fig-s2s">
          <name>Site-to-site VPN Capsule Example</name>
          <artwork><![CDATA[
[[ From Client ]]             [[ From IP Proxy ]]

SETTINGS
  H3_DATAGRAM = 1

                              SETTINGS
                                ENABLE_CONNECT_PROTOCOL = 1
                                H3_DATAGRAM = 1

STREAM(44): HEADERS
:method = CONNECT
:protocol = connect-ip
:scheme = https
:path = /corp
:authority = proxy.example.com
capsule-protocol = ?1

                              STREAM(44): HEADERS
                              :status = 200
                              capsule-protocol = ?1

STREAM(44): DATA
Capsule Type = ADDRESS_ASSIGN
(Request ID = 0
IP Version = 4
IP Address = 192.0.2.200
IP Prefix Length = 32)

STREAM(44): DATA
Capsule Type = ROUTE_ADVERTISEMENT
(IP Version = 4
Start IP Address = 192.0.2.0
End IP Address = 192.0.2.255
IP Protocol = 0) // Any

                              STREAM(44): DATA
                              Capsule Type = ADDRESS_ASSIGN
                              (Request ID = 0
                               IP Version = 4
                               IP Address = 203.0.113.100
                               IP Prefix Length = 32)

                              STREAM(44): DATA
                              Capsule Type = ROUTE_ADVERTISEMENT
                              (IP Version = 4
                               Start IP Address = 203.0.113.0
                               End IP Address = 203.0.113.255
                               IP Protocol = 0) // Any

DATAGRAM
Quarter Stream ID = 11
Context ID = 0
Payload = Encapsulated IP Packet

                              DATAGRAM
                              Quarter Stream ID = 11
                              Context ID = 0
                              Payload = Encapsulated IP Packet
]]></artwork>
        </figure>
      </section>
      <section anchor="ip-flow-forwarding">
        <name>IP Flow Forwarding</name>
        <t>The following example shows an IP flow forwarding setup, where a client
requests to establish a forwarding tunnel to target.example.com using SCTP (IP
protocol 132), and receives a single local address and remote address it can
use for transmitting packets. A similar approach could be used for any other IP
protocol that isn't easily proxied with existing HTTP methods, such as ICMP,
ESP, etc.</t>
        <figure anchor="diagram-flow">
          <name>Proxied Flow Setup</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="128" width="440" viewBox="0 0 440 128" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,32 L 8,96" fill="none" stroke="black"/>
                <path d="M 80,32 L 80,96" fill="none" stroke="black"/>
                <path d="M 240,32 L 240,96" fill="none" stroke="black"/>
                <path d="M 312,32 L 312,96" fill="none" stroke="black"/>
                <path d="M 8,32 L 80,32" fill="none" stroke="black"/>
                <path d="M 240,32 L 312,32" fill="none" stroke="black"/>
                <path d="M 80,48 L 240,48" fill="none" stroke="black"/>
                <path d="M 160,64 L 184,64" fill="none" stroke="black"/>
                <path d="M 312,64 L 392,64" fill="none" stroke="black"/>
                <path d="M 80,80 L 240,80" fill="none" stroke="black"/>
                <path d="M 8,96 L 80,96" fill="none" stroke="black"/>
                <path d="M 240,96 L 312,96" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="400,64 388,58.4 388,69.6" fill="black" transform="rotate(0,392,64)"/>
                <polygon class="arrowhead" points="192,64 180,58.4 180,69.6" fill="black" transform="rotate(0,184,64)"/>
                <polygon class="arrowhead" points="168,64 156,58.4 156,69.6" fill="black" transform="rotate(180,160,64)"/>
                <g class="text">
                  <text x="100" y="36">IP</text>
                  <text x="120" y="36">A</text>
                  <text x="204" y="36">IP</text>
                  <text x="224" y="36">B</text>
                  <text x="276" y="52">IP</text>
                  <text x="332" y="52">IP</text>
                  <text x="352" y="52">C</text>
                  <text x="44" y="68">Client</text>
                  <text x="124" y="68">IP</text>
                  <text x="144" y="68">C</text>
                  <text x="200" y="68">D</text>
                  <text x="280" y="68">Proxy</text>
                  <text x="412" y="68">IP</text>
                  <text x="432" y="68">D</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+--------+ IP A         IP B +--------+
|        +-------------------+   IP   | IP C
| Client |    IP C <--> D    |  Proxy +---------> IP D
|        +-------------------+        |
+--------+                   +--------+

]]></artwork>
          </artset>
        </figure>
        <t>In this case, the client specfies both a target hostname and an IP protocol
number in the scope of its request, indicating that it only needs to
communicate with a single host. The IP proxy is able to perform DNS resolution
on behalf of the client and allocate a specific outbound socket for the client
instead of allocating an entire IP address to the client. In this regard, the
request is similar to a regular CONNECT proxy request.</t>
        <t>The IP proxy assigns a single IPv6 address to the client (2001:db8:1234::a) and
a route to a single IPv6 host (2001:db8:3456::b), scoped to SCTP. The client
can send and receive SCTP IP packets to the remote host.</t>
        <figure anchor="fig-flow">
          <name>Proxied SCTP Flow Example</name>
          <artwork><![CDATA[
[[ From Client ]]             [[ From IP Proxy ]]

SETTINGS
  H3_DATAGRAM = 1

                              SETTINGS
                                ENABLE_CONNECT_PROTOCOL = 1
                                H3_DATAGRAM = 1

STREAM(44): HEADERS
:method = CONNECT
:protocol = connect-ip
:scheme = https
:path = /proxy?target=target.example.com&ipproto=132
:authority = proxy.example.com
capsule-protocol = ?1

                              STREAM(44): HEADERS
                              :status = 200
                              capsule-protocol = ?1

                              STREAM(44): DATA
                              Capsule Type = ADDRESS_ASSIGN
                              (Request ID = 0
                               IP Version = 6
                               IP Address = 2001:db8:1234::a
                               IP Prefix Length = 128)

                              STREAM(44): DATA
                              Capsule Type = ROUTE_ADVERTISEMENT
                              (IP Version = 6
                               Start IP Address = 2001:db8:3456::b
                               End IP Address = 2001:db8:3456::b
                               IP Protocol = 132)

DATAGRAM
Quarter Stream ID = 11
Context ID = 0
Payload = Encapsulated SCTP/IP Packet

                              DATAGRAM
                              Quarter Stream ID = 11
                              Context ID = 0
                              Payload = Encapsulated SCTP/IP Packet
]]></artwork>
        </figure>
      </section>
      <section anchor="proxied-connection-racing">
        <name>Proxied Connection Racing</name>
        <t>The following example shows a setup where a client is proxying UDP packets
through an IP proxy in order to control connection establishment racing through
an IP proxy, as defined in Happy Eyeballs <xref target="HEv2"/>. This example is a
variant of the proxied flow, but highlights how IP-level proxying can enable
new capabilities even for TCP and UDP.</t>
        <figure anchor="diagram-racing">
          <name>Proxied Connection Racing Setup</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="144" width="472" viewBox="0 0 472 144" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,32 L 8,112" fill="none" stroke="black"/>
                <path d="M 80,32 L 80,112" fill="none" stroke="black"/>
                <path d="M 240,32 L 240,112" fill="none" stroke="black"/>
                <path d="M 312,32 L 312,112" fill="none" stroke="black"/>
                <path d="M 8,32 L 80,32" fill="none" stroke="black"/>
                <path d="M 240,32 L 312,32" fill="none" stroke="black"/>
                <path d="M 80,48 L 240,48" fill="none" stroke="black"/>
                <path d="M 320,48 L 424,48" fill="none" stroke="black"/>
                <path d="M 144,64 L 168,64" fill="none" stroke="black"/>
                <path d="M 144,80 L 168,80" fill="none" stroke="black"/>
                <path d="M 80,96 L 240,96" fill="none" stroke="black"/>
                <path d="M 320,96 L 424,96" fill="none" stroke="black"/>
                <path d="M 8,112 L 80,112" fill="none" stroke="black"/>
                <path d="M 240,112 L 312,112" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="432,96 420,90.4 420,101.6" fill="black" transform="rotate(0,424,96)"/>
                <polygon class="arrowhead" points="432,48 420,42.4 420,53.6" fill="black" transform="rotate(0,424,48)"/>
                <polygon class="arrowhead" points="328,96 316,90.4 316,101.6" fill="black" transform="rotate(180,320,96)"/>
                <polygon class="arrowhead" points="328,48 316,42.4 316,53.6" fill="black" transform="rotate(180,320,48)"/>
                <polygon class="arrowhead" points="176,80 164,74.4 164,85.6" fill="black" transform="rotate(0,168,80)"/>
                <polygon class="arrowhead" points="176,64 164,58.4 164,69.6" fill="black" transform="rotate(0,168,64)"/>
                <polygon class="arrowhead" points="152,80 140,74.4 140,85.6" fill="black" transform="rotate(180,144,80)"/>
                <polygon class="arrowhead" points="152,64 140,58.4 140,69.6" fill="black" transform="rotate(180,144,64)"/>
                <g class="text">
                  <text x="100" y="36">IP</text>
                  <text x="120" y="36">A</text>
                  <text x="204" y="36">IP</text>
                  <text x="224" y="36">B</text>
                  <text x="332" y="36">IP</text>
                  <text x="352" y="36">C</text>
                  <text x="444" y="52">IP</text>
                  <text x="464" y="52">E</text>
                  <text x="44" y="68">Client</text>
                  <text x="108" y="68">IP</text>
                  <text x="128" y="68">C</text>
                  <text x="184" y="68">E</text>
                  <text x="276" y="68">IP</text>
                  <text x="128" y="84">D</text>
                  <text x="184" y="84">F</text>
                  <text x="280" y="84">Proxy</text>
                  <text x="444" y="100">IP</text>
                  <text x="464" y="100">F</text>
                  <text x="332" y="116">IP</text>
                  <text x="352" y="116">D</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+--------+ IP A         IP B +--------+ IP C
|        +-------------------+        |<------------> IP E
| Client |  IP C <--> E      |   IP   |
|        |     D <--> F      |  Proxy |
|        +-------------------+        |<------------> IP F
+--------+                   +--------+ IP D

]]></artwork>
          </artset>
        </figure>
        <t>As with proxied flows, the client specifies both a target hostname and an IP
protocol number in the scope of its request. When the IP proxy performs DNS
resolution on behalf of the client, it can send the various remote address
options to the client as separate routes. It can also ensure that the client
has both IPv4 and IPv6 addresses assigned.</t>
        <t>The IP proxy assigns both an IPv4 address (192.0.2.3) and an IPv6
address (2001:db8:1234::a) to the client, as well as an IPv4 route
(198.51.100.2) and an IPv6 route (2001:db8:3456::b), which represent the
resolved addresses of the target hostname, scoped to UDP. The client can send
and receive UDP IP packets to either one of the IP proxy addresses to enable
Happy Eyeballs through the IP proxy.</t>
        <figure anchor="fig-listen">
          <name>Proxied Connection Racing Example</name>
          <artwork><![CDATA[
[[ From Client ]]             [[ From IP Proxy ]]

SETTINGS
  H3_DATAGRAM = 1

                              SETTINGS
                                ENABLE_CONNECT_PROTOCOL = 1
                                H3_DATAGRAM = 1

STREAM(44): HEADERS
:method = CONNECT
:protocol = connect-ip
:scheme = https
:path = /proxy?target=target.example.com&ipproto=17
:authority = proxy.example.com
capsule-protocol = ?1

                              STREAM(44): HEADERS
                              :status = 200
                              capsule-protocol = ?1

                              STREAM(44): DATA
                              Capsule Type = ADDRESS_ASSIGN
                              (Request ID = 0
                               IP Version = 4
                               IP Address = 192.0.2.3
                               IP Prefix Length = 32),
                              (Request ID = 0
                               IP Version = 6
                               IP Address = 2001:db8::1234:1234
                               IP Prefix Length = 128)

                              STREAM(44): DATA
                              Capsule Type = ROUTE_ADVERTISEMENT
                              (IP Version = 4
                               Start IP Address = 198.51.100.2
                               End IP Address = 198.51.100.2
                               IP Protocol = 17),
                              (IP Version = 6
                               Start IP Address = 2001:db8:3456::b
                               End IP Address = 2001:db8:3456::b
                               IP Protocol = 17)
...

DATAGRAM
Quarter Stream ID = 11
Context ID = 0
Payload = Encapsulated IPv6 Packet

DATAGRAM
Quarter Stream ID = 11
Context ID = 0
Payload = Encapsulated IPv4 Packet

]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="extensibility-considerations">
      <name>Extensibility Considerations</name>
      <t>Extensions to IP proxying in HTTP can define behavior changes to this
mechanism. Such extensions <bcp14>SHOULD</bcp14> define new capsule types to exchange
configuration information if needed. It is <bcp14>RECOMMENDED</bcp14> for extensions that
modify addressing to specify that their extension capsules be sent before the
ADDRESS_ASSIGN capsule and that they do not take effect until the
ADDRESS_ASSIGN capsule is parsed. This allows modifications to address
assignment to operate atomically. Similarly, extensions that modify routing
<bcp14>SHOULD</bcp14> behave similarly with regard to the ROUTE_ADVERTISEMENT capsule.</t>
    </section>
    <section anchor="performance-considerations">
      <name>Performance Considerations</name>
      <t>Bursty traffic can often lead to temporally-correlated packet losses; in turn,
this can lead to suboptimal responses from congestion controllers in protocols
running inside the tunnel. To avoid this, IP proxying endpoints <bcp14>SHOULD</bcp14> strive
to avoid increasing burstiness of IP traffic; they <bcp14>SHOULD NOT</bcp14> queue packets in
order to increase batching beyond the minimal amount required to take advantage
of hardware offloads.</t>
      <t>When the protocol running inside the tunnel uses congestion control (e.g.,
<xref target="TCP"/> or <xref target="QUIC"/>), the proxied traffic will incur at least two nested
congestion controllers. When tunneled packets are sent using QUIC DATAGRAM
frames, the outer HTTP connection <bcp14>MAY</bcp14> disable congestion control for those
packets that contain only QUIC DATAGRAM frames encapsulating IP packets.
Implementers will benefit from reading the guidance in <xref section="3.1.11" sectionFormat="of" target="UDP-USAGE"/>.</t>
      <t>When the protocol running inside the tunnel uses loss recovery (e.g., <xref target="TCP"/>
or <xref target="QUIC"/>), and the outer HTTP connection runs over TCP, the proxied traffic
will incur at least two nested loss recovery mechanisms. This can reduce
performance as both can sometimes independently retransmit the same data. To
avoid this, IP proxying <bcp14>SHOULD</bcp14> be performed over HTTP/3 to allow leveraging the
QUIC DATAGRAM frame.</t>
      <section anchor="mtu-considerations">
        <name>MTU Considerations</name>
        <t>When using HTTP/3 with the QUIC Datagram extension <xref target="DGRAM"/>, IP packets are
transmitted in QUIC DATAGRAM frames. Since these frames cannot be fragmented,
they can only carry packets up to a given length determined by the QUIC
connection configuration and the Path MTU (PMTU). If an endpoint is using QUIC
DATAGRAM frames and it attempts to route an IP packet through the tunnel that
will not fit inside a QUIC DATAGRAM frame, the IP proxy <bcp14>SHOULD NOT</bcp14> send the IP
packet in a DATAGRAM capsule, as that defeats the end-to-end unreliability
characteristic that methods such as Datagram Packetization Layer PMTU Discovery
(DPLPMTUD) depend on <xref target="DPLPMTUD"/>. In this scenario, the endpoint
<bcp14>SHOULD</bcp14> drop the IP packet and send an ICMP Packet Too Big message to the sender
of the dropped packet; see <xref section="3.2" sectionFormat="of" target="ICMPv6"/>.</t>
      </section>
      <section anchor="ecn-considerations">
        <name>ECN Considerations</name>
        <t>If a client or IP proxy with a connection containing an IP Proxying request
stream disables congestion control, it cannot signal Explicit Congestion
Notification (ECN) <xref target="ECN"/> support on that outer connection. That is,
the QUIC sender <bcp14>MUST</bcp14> mark all IP headers with the Not-ECT codepoint for QUIC
packets which are outside of congestion control. The endpoint can still report
ECN feedback via QUIC ACK_ECN frames or the TCP ECE bit, as the peer might not
have disabled congestion control.</t>
        <t>Conversely, if congestion control is not disabled on the outer congestion, the
guidance in <xref target="ECN-TUNNEL"/> about transferring ECN marks between inner
and outer IP headers does not apply because the outer connection will react
correctly to congestion notifications if it uses ECN. The inner traffic can
also use ECN, independently of whether it is in use on the outer connection.</t>
      </section>
      <section anchor="dscp-considerations">
        <name>Differentiated Services Considerations</name>
        <t>Tunneled IP packets can have Differentiated Services Code Points (DSCP)
<xref target="DSCP"/> set in the traffic class IP header field to request a
particular per-hop behavior. If a client or IP proxy is configured as part of a
Differentiated Services domain, it <bcp14>MAY</bcp14> implement traffic differentiation based
on these markings. However, the use of HTTP can limit the possibilities for
differentiated treatment of the tunneled IP packets on the path between the IP
proxying endpoints.</t>
        <t>If tunneled packets are subject to congestion control by the outer connection,
the tunneled packets need to be treated equally regardless of their DSCP
markings to not disrupt the congestion controller. In this scenario, the client
or proxy <bcp14>MUST NOT</bcp14> copy the DSCP field from the inner IP header to the outer IP
header of the packet carrying this packet. Instead, an application would need
to use separate connections to the proxy, one for each DSCP. Note that this
document does not define a way for requests to scope to particular DSCP values;
such support is left to future extensions.</t>
        <t>If tunneled packets use QUIC datagrams and are not subject to congestion
control by the outer connection, the IP proxying endpoints <bcp14>MAY</bcp14> translate the
DSCP field value from the tunneled traffic to the outer IP header. IP proxying
endpoints <bcp14>MUST NOT</bcp14> coalesce multiple inner packets into the same outer packet
unless they have the same DSCP marking or an equivalent traffic class. Note
that the ability to translate DSCP values is dependent on the tunnel ingress
and egress belonging to the same differentiated service domain or not.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>There are significant risks in allowing arbitrary clients to establish a tunnel
that permits sending to arbitrary hosts, regardless of whether tunnels are
scoped to specific hosts or not. Bad actors could abuse this capability to send
traffic and have it attributed to the IP proxy. HTTP servers that support IP
proxying <bcp14>SHOULD</bcp14> restrict its use to authenticated users. Depending on the
deployment, possible authentication mechanisms include mutual TLS between
clients and proxies, HTTP-based authentication via the HTTP Authorization
header <xref target="HTTP"/>, or even bearer tokens. Proxies can enforce policies for
authenticated users to further constrain client behavior or deal with possible
abuse. For example, proxies can rate limit individual clients that send an
excessively large amount of traffic through the proxy. As another example,
proxies can restrict address (prefix) assignment to clients based on certain
client attributes such as geographic location.</t>
      <t>Address assignment can have privacy implications for endpoints. For example, if
a proxy partitions its address space by the number of authenticated clients and
then assigns distinct address ranges to each client, target hosts could use
this information to determine when IP packets correspond to the same client.
Avoiding such tracking vectors may be important for certain proxy deployments.
Proxies <bcp14>SHOULD</bcp14> avoid persistent per-client address (prefix) assignment when
possible.</t>
      <t>Falsifying IP source addresses in sent traffic has been common for denial of
service attacks. Implementations of this mechanism need to ensure that they do
not facilitate such attacks. In particular, there are scenarios where an
endpoint knows that its peer is only allowed to send IP packets from a given
prefix. For example, that can happen through out-of-band configuration
information, or when allowed prefixes are shared via ADDRESS_ASSIGN capsules.
In such scenarios, endpoints <bcp14>MUST</bcp14> follow the recommendations from
<xref target="BCP38"/> to prevent source address spoofing.</t>
      <t>Limiting request scope (see <xref target="scope"/>) allows two clients to share one of the
proxy's external IP addresses if their requests are scoped to different IP
protocol numbers. If the proxy receives an ICMP packet destined for that
external IP address, it has the option to forward it back to the clients.
However, some of these ICMP packets carry part of the original IP packet that
triggered the ICMP response. Forwarding such packets can accidentally divulge
information about one client's traffic to another client. To avoid this,
proxies that forward ICMP on shared external IP addresses <bcp14>MUST</bcp14> inspect the
invoking packet included in the ICMP packet and only forward the ICMP packet to
the client whose scoping matches the invoking packet.</t>
      <t>Implementers will benefit from reading the guidance in
<xref target="TUNNEL-SECURITY"/>. Since there are known risks with some IPv6
extension headers (e.g., <xref target="ROUTING-HDR"/>), implementers need to follow
the latest guidance regarding handling of IPv6 extension headers.</t>
      <t>Transferring DSCP markings from inner to outer packets (see
<xref target="dscp-considerations"/>) exposes end-to-end flow level information to an
on-path observer between the IP proxying endpoints. This can potentially expose
a single end-to-end flow. Because of this, such use of DSCP in
privacy-sensitive contexts is <bcp14>NOT RECOMMENDED</bcp14>.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="http-upgrade-token">
        <name>HTTP Upgrade Token</name>
        <t>This document will request IANA to register "connect-ip" in the HTTP Upgrade
Token Registry maintained at
&lt;<eref target="https://www.iana.org/assignments/http-upgrade-tokens"/>&gt;.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>connect-ip</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>Proxying of IP Payloads</t>
          </dd>
          <dt>Expected Version Tokens:</dt>
          <dd>
            <t>None</t>
          </dd>
          <dt>References:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-suffix">
        <name>Creation of the MASQUE URI Suffixes Registry</name>
        <t>This document requests that IANA create a new "MASQUE URI Suffixes" registry
maintained at IANA_URL_TBD. This new registry governs the path segment that
immediately follows "masque" in paths that start with "/.well-known/masque/",
see &lt;<eref target="https://www.iana.org/assignments/well-known-uris"/>&gt; for the registration
of "masque" in the "Well-Known URIs" registry. This new registry contains three
columns:</t>
        <dl>
          <dt>Path Segment:</dt>
          <dd>
            <t>An ASCII string containing only characters allowed in tokens; see
<xref section="5.6.2" sectionFormat="of" target="HTTP"/>. Entries in this registry <bcp14>MUST</bcp14> all have distinct
entries in this column.</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>A description of the entry.</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>An optional reference defining the use of the entry.</t>
          </dd>
        </dl>
        <t>The registration policy for this registry is Expert Review; see
<xref section="4.5" sectionFormat="of" target="IANA-POLICY"/>.</t>
        <t>There are initially two entries in this registry:</t>
        <table anchor="iana-suffixes-table">
          <name>New MASQUE URI Suffixes</name>
          <thead>
            <tr>
              <th align="left">Path Segment</th>
              <th align="left">Description</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">udp</td>
              <td align="left">UDP Proxying</td>
              <td align="left">RFC 9298</td>
            </tr>
            <tr>
              <td align="left">ip</td>
              <td align="left">IP Proxying</td>
              <td align="left">This Document</td>
            </tr>
          </tbody>
        </table>
        <t>Designated experts for this registry are advised that they should approve all
requests as long as the expert believes that both (1) the requested Path
Segment will not conflict with existing or expected future IETF work and (2)
the use case is relevant to proxying.</t>
      </section>
      <section anchor="iana-uri">
        <name>Updates to masque Well-Known URI</name>
        <t>This document will request IANA to update the entry for the "masque"
URI suffix in the "Well-Known URIs" registry maintained at
&lt;<eref target="https://www.iana.org/assignments/well-known-uris"/>&gt;.</t>
        <t>IANA is requested to update the "Reference" field to include this
document in addition to previous values from that field.</t>
        <t>IANA is requested to replace the "Related Information" field with
"For sub-suffix allocations, see registry at IANA_URL_TBD." where
IANA_URL_TBD is the URL of the new registry described in <xref target="iana-suffix"/>.</t>
      </section>
      <section anchor="iana-types">
        <name>Capsule Type Registrations</name>
        <t>This document requests IANA to add the following values to the "HTTP Capsule
Types" registry maintained at
&lt;<eref target="https://www.iana.org/assignments/http-capsule-protocol"/>&gt;.</t>
        <table anchor="iana-capsules-table">
          <name>New Capsules</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Capsule Type</th>
              <th align="left">Description</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x01</td>
              <td align="left">ADDRESS_ASSIGN</td>
              <td align="left">Address Assignment</td>
            </tr>
            <tr>
              <td align="left">0x02</td>
              <td align="left">ADDRESS_REQUEST</td>
              <td align="left">Address Request</td>
            </tr>
            <tr>
              <td align="left">0x03</td>
              <td align="left">ROUTE_ADVERTISEMENT</td>
              <td align="left">Route Advertisement</td>
            </tr>
          </tbody>
        </table>
        <t>All of these new entries use the following values for these fields:</t>
        <dl>
          <dt>Status:</dt>
          <dd>
            <t>provisional (permanent when this document is approved)</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This Document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>masque@ietf.org</t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>Empty</t>
          </dd>
        </dl>
        <t>RFC Editor: please remove the rest of this subsection before publication.</t>
        <t>Since this document has not yet been published, it might still change before
publication as RFC. Any implementer that wishes to deploy IP proxying in
production before publication <bcp14>MUST</bcp14> use the following temporary codepoints
instead: 0x2575D601 for ADDRESS_ASSIGN, 0x2575D602 for ADDRESS_REQUEST, and
0x2575D603 for ROUTE_ADVERTISEMENT.</t>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="H1" to="HTTP/1.1"/>
    <displayreference target="H2" to="HTTP/2"/>
    <displayreference target="H3" to="HTTP/3"/>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="H1">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns. </t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="H2">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="H3">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <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.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes. </t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="TCP">
          <front>
            <title>Transmission Control Protocol (TCP)</title>
            <author fullname="W. Eddy" initials="W." role="editor" surname="Eddy">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document specifies the Transmission Control Protocol (TCP).  TCP is an important transport-layer protocol in the Internet protocol stack, and it has continuously evolved over decades of use and growth of the Internet.  Over this time, a number of changes have been made to TCP as it was specified in RFC 793, though these have only been documented in a piecemeal fashion.  This document collects and brings those changes together with the protocol specification from RFC 793.  This document obsoletes RFC 793, as well as RFCs 879, 2873, 6093, 6429, 6528, and 6691 that updated parts of RFC 793.  It updates RFCs 1011 and 1122, and it should be considered as a replacement for the portions of those documents dealing with TCP requirements.  It also updates RFC 5961 by adding a small clarification in reset handling while in the SYN-RECEIVED state.  The TCP header control bits from RFC 793 have also been updated based on RFC 3168.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="7"/>
          <seriesInfo name="RFC" value="9293"/>
          <seriesInfo name="DOI" value="10.17487/RFC9293"/>
        </reference>
        <reference anchor="TEMPLATE">
          <front>
            <title>URI Template</title>
            <author fullname="J. Gregorio" initials="J." surname="Gregorio">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Hadley" initials="M." surname="Hadley">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="D. Orchard" initials="D." surname="Orchard">
              <organization/>
            </author>
            <date month="March" year="2012"/>
            <abstract>
              <t>A URI Template is a compact sequence of characters for describing a range of Uniform Resource Identifiers through variable expansion. This specification defines the URI Template syntax and the process for expanding a URI Template into a URI reference, along with guidelines for the use of URI Templates on the Internet.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6570"/>
          <seriesInfo name="DOI" value="10.17487/RFC6570"/>
        </reference>
        <reference anchor="HTTP-DGRAM">
          <front>
            <title>HTTP Datagrams and the Capsule Protocol</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <author fullname="L. Pardue" initials="L." surname="Pardue">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes HTTP Datagrams, a convention for conveying multiplexed, potentially unreliable datagrams inside an HTTP connection.</t>
              <t>In HTTP/3, HTTP Datagrams can be sent unreliably using the QUIC DATAGRAM extension. When the QUIC DATAGRAM frame is unavailable or undesirable, HTTP Datagrams can be sent using the Capsule Protocol, which is a more general convention for conveying data in HTTP connections.</t>
              <t>HTTP Datagrams and the Capsule Protocol are intended for use by HTTP extensions, not applications.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9297"/>
          <seriesInfo name="DOI" value="10.17487/RFC9297"/>
        </reference>
        <reference anchor="EXT-CONNECT2">
          <front>
            <title>Bootstrapping WebSockets with HTTP/2</title>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <date month="September" year="2018"/>
            <abstract>
              <t>This document defines a mechanism for running the WebSocket Protocol (RFC 6455) over a single stream of an HTTP/2 connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8441"/>
          <seriesInfo name="DOI" value="10.17487/RFC8441"/>
        </reference>
        <reference anchor="EXT-CONNECT3">
          <front>
            <title>Bootstrapping WebSockets with HTTP/3</title>
            <author fullname="R. Hamilton" initials="R." surname="Hamilton">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The mechanism for running the WebSocket Protocol over a single stream of an HTTP/2 connection is equally applicable to HTTP/3, but the HTTP-version-specific details need to be specified. This document describes how the mechanism is adapted for HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9220"/>
          <seriesInfo name="DOI" value="10.17487/RFC9220"/>
        </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">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <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="QUIC">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" 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.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="URI">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="PROXY-STATUS">
          <front>
            <title>The Proxy-Status HTTP Response Header Field</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P. Sikora" initials="P." surname="Sikora">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document defines the Proxy-Status HTTP response field to convey the details of an intermediary's response handling, including generated errors.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9209"/>
          <seriesInfo name="DOI" value="10.17487/RFC9209"/>
        </reference>
        <reference anchor="RFC6874">
          <front>
            <title>Representing IPv6 Zone Identifiers in Address Literals and Uniform Resource Identifiers</title>
            <author fullname="B. Carpenter" initials="B." surname="Carpenter">
              <organization/>
            </author>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="R. Hinden" initials="R." surname="Hinden">
              <organization/>
            </author>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document describes how the zone identifier of an IPv6 scoped address, defined as &lt;zone_id&gt; in the IPv6 Scoped Address Architecture (RFC 4007), can be represented in a literal IPv6 address and in a Uniform Resource Identifier that includes such a literal address.  It updates the URI Generic Syntax specification (RFC 3986) accordingly.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6874"/>
          <seriesInfo name="DOI" value="10.17487/RFC6874"/>
        </reference>
        <reference anchor="ABNF">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker">
              <organization/>
            </author>
            <author fullname="P. Overell" initials="P." surname="Overell">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="IPv6">
          <front>
            <title>Internet Protocol, Version 6 (IPv6) Specification</title>
            <author fullname="S. Deering" initials="S." surname="Deering">
              <organization/>
            </author>
            <author fullname="R. Hinden" initials="R." surname="Hinden">
              <organization/>
            </author>
            <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="DGRAM">
          <front>
            <title>An Unreliable Datagram Extension to QUIC</title>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <author fullname="E. Kinnear" initials="E." surname="Kinnear">
              <organization/>
            </author>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document defines an extension to the QUIC transport protocol to add support for sending and receiving unreliable datagrams over a QUIC connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9221"/>
          <seriesInfo name="DOI" value="10.17487/RFC9221"/>
        </reference>
        <reference anchor="ICMP">
          <front>
            <title>Internet Control Message Protocol</title>
            <author fullname="J. Postel" initials="J." surname="Postel">
              <organization/>
            </author>
            <date month="September" year="1981"/>
          </front>
          <seriesInfo name="STD" value="5"/>
          <seriesInfo name="RFC" value="792"/>
          <seriesInfo name="DOI" value="10.17487/RFC0792"/>
        </reference>
        <reference anchor="ICMPv6">
          <front>
            <title>Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification</title>
            <author fullname="A. Conta" initials="A." surname="Conta">
              <organization/>
            </author>
            <author fullname="S. Deering" initials="S." surname="Deering">
              <organization/>
            </author>
            <author fullname="M. Gupta" initials="M." role="editor" surname="Gupta">
              <organization/>
            </author>
            <date month="March" year="2006"/>
            <abstract>
              <t>This document describes the format of a set of control messages used in ICMPv6 (Internet Control Message Protocol).  ICMPv6 is the Internet Control Message Protocol for Internet Protocol version 6 (IPv6).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="89"/>
          <seriesInfo name="RFC" value="4443"/>
          <seriesInfo name="DOI" value="10.17487/RFC4443"/>
        </reference>
        <reference anchor="ECN">
          <front>
            <title>The Addition of Explicit Congestion Notification (ECN) to IP</title>
            <author fullname="K. Ramakrishnan" initials="K." surname="Ramakrishnan">
              <organization/>
            </author>
            <author fullname="S. Floyd" initials="S." surname="Floyd">
              <organization/>
            </author>
            <author fullname="D. Black" initials="D." surname="Black">
              <organization/>
            </author>
            <date month="September" year="2001"/>
            <abstract>
              <t>This memo specifies the incorporation of ECN (Explicit Congestion Notification) to TCP and IP, including ECN's use of two bits in the IP header.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3168"/>
          <seriesInfo name="DOI" value="10.17487/RFC3168"/>
        </reference>
        <reference anchor="DSCP">
          <front>
            <title>Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers</title>
            <author fullname="K. Nichols" initials="K." surname="Nichols">
              <organization/>
            </author>
            <author fullname="S. Blake" initials="S." surname="Blake">
              <organization/>
            </author>
            <author fullname="F. Baker" initials="F." surname="Baker">
              <organization/>
            </author>
            <author fullname="D. Black" initials="D." surname="Black">
              <organization/>
            </author>
            <date month="December" year="1998"/>
            <abstract>
              <t>This document defines the IP header field, called the DS (for differentiated services) field.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2474"/>
          <seriesInfo name="DOI" value="10.17487/RFC2474"/>
        </reference>
        <reference anchor="BCP38">
          <front>
            <title>Network Ingress Filtering: Defeating Denial of Service Attacks which employ IP Source Address Spoofing</title>
            <author fullname="P. Ferguson" initials="P." surname="Ferguson">
              <organization/>
            </author>
            <author fullname="D. Senie" initials="D." surname="Senie">
              <organization/>
            </author>
            <date month="May" year="2000"/>
            <abstract>
              <t>This paper discusses a simple, effective, and straightforward method for using ingress traffic filtering to prohibit DoS (Denial of Service) attacks which use forged IP addresses to be propagated from 'behind' an Internet Service Provider's (ISP) aggregation point.  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="38"/>
          <seriesInfo name="RFC" value="2827"/>
          <seriesInfo name="DOI" value="10.17487/RFC2827"/>
        </reference>
        <reference anchor="IANA-POLICY">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="IANA-PN" target="https://www.iana.org/assignments/protocol-numbers">
          <front>
            <title>Protocol Numbers</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="CONNECT-UDP">
          <front>
            <title>Proxying UDP in HTTP</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes how to proxy UDP in HTTP, similar to how the HTTP CONNECT method allows proxying TCP in HTTP. More specifically, this document defines a protocol that allows an HTTP client to create a tunnel for UDP communications through an HTTP server that acts as a proxy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9298"/>
          <seriesInfo name="DOI" value="10.17487/RFC9298"/>
        </reference>
        <reference anchor="IPSEC">
          <front>
            <title>Security Architecture for the Internet Protocol</title>
            <author fullname="S. Kent" initials="S." surname="Kent">
              <organization/>
            </author>
            <author fullname="K. Seo" initials="K." surname="Seo">
              <organization/>
            </author>
            <date month="December" year="2005"/>
            <abstract>
              <t>This document describes an updated version of the "Security Architecture for IP", which is designed to provide security services for traffic at the IP layer.  This document obsoletes RFC 2401 (November 1998).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4301"/>
          <seriesInfo name="DOI" value="10.17487/RFC4301"/>
        </reference>
        <reference anchor="IPv6-ADDR">
          <front>
            <title>IP Version 6 Addressing Architecture</title>
            <author fullname="R. Hinden" initials="R." surname="Hinden">
              <organization/>
            </author>
            <author fullname="S. Deering" initials="S." surname="Deering">
              <organization/>
            </author>
            <date month="February" year="2006"/>
            <abstract>
              <t>This specification defines the addressing architecture of the IP Version 6 (IPv6) protocol.  The document includes the IPv6 addressing model, text representations of IPv6 addresses, definition of IPv6 unicast addresses, anycast addresses, and multicast addresses, and an IPv6 node's required addresses.</t>
              <t>This document obsoletes RFC 3513, "IP Version 6 Addressing Architecture".   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4291"/>
          <seriesInfo name="DOI" value="10.17487/RFC4291"/>
        </reference>
        <reference anchor="HEv2">
          <front>
            <title>Happy Eyeballs Version 2: Better Connectivity Using Concurrency</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>Many communication protocols operating over the modern Internet use hostnames.  These often resolve to multiple IP addresses, each of which may have different performance and connectivity characteristics.  Since specific addresses or address families (IPv4 or IPv6) may be blocked, broken, or sub-optimal on a network, clients that attempt multiple connections in parallel have a chance of establishing a connection more quickly.  This document specifies requirements for algorithms that reduce this user-visible delay and provides an example algorithm, referred to as "Happy Eyeballs".  This document obsoletes the original algorithm description in RFC 6555.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8305"/>
          <seriesInfo name="DOI" value="10.17487/RFC8305"/>
        </reference>
        <reference anchor="UDP-USAGE">
          <front>
            <title>UDP Usage Guidelines</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert">
              <organization/>
            </author>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst">
              <organization/>
            </author>
            <author fullname="G. Shepherd" initials="G." surname="Shepherd">
              <organization/>
            </author>
            <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="DPLPMTUD">
          <front>
            <title>Packetization Layer Path MTU Discovery for Datagram Transports</title>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst">
              <organization/>
            </author>
            <author fullname="T. Jones" initials="T." surname="Jones">
              <organization/>
            </author>
            <author fullname="M. Tüxen" initials="M." surname="Tüxen">
              <organization/>
            </author>
            <author fullname="I. Rüngeler" initials="I." surname="Rüngeler">
              <organization/>
            </author>
            <author fullname="T. Völker" initials="T." surname="Völker">
              <organization/>
            </author>
            <date month="September" year="2020"/>
            <abstract>
              <t>This document specifies Datagram Packetization Layer Path MTU Discovery (DPLPMTUD). This is a robust method for Path MTU Discovery (PMTUD) for datagram Packetization Layers (PLs). It allows a PL, or a datagram application that uses a PL, to discover whether a network path can support the current size of datagram.  This can be used to detect and reduce the message size when a sender encounters a packet black hole. It can also probe a network path to discover whether the maximum packet size can be increased.  This provides functionality for datagram transports that is equivalent to the PLPMTUD specification for TCP, specified in RFC 4821, which it updates. It also updates the UDP Usage Guidelines to refer to this method for use with UDP datagrams and updates SCTP.</t>
              <t>The document provides implementation notes for incorporating Datagram PMTUD into IETF datagram transports or applications that use datagram transports.</t>
              <t>This specification updates RFC 4960, RFC 4821, RFC 6951, RFC 8085, and RFC 8261.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8899"/>
          <seriesInfo name="DOI" value="10.17487/RFC8899"/>
        </reference>
        <reference anchor="ECN-TUNNEL">
          <front>
            <title>Tunnelling of Explicit Congestion Notification</title>
            <author fullname="B. Briscoe" initials="B." surname="Briscoe">
              <organization/>
            </author>
            <date month="November" year="2010"/>
            <abstract>
              <t>This document redefines how the explicit congestion notification (ECN) field of the IP header should be constructed on entry to and exit from any IP-in-IP tunnel.  On encapsulation, it updates RFC 3168 to bring all IP-in-IP tunnels (v4 or v6) into line with RFC 4301 IPsec ECN processing.  On decapsulation, it updates both RFC 3168 and RFC 4301 to add new behaviours for previously unused combinations of inner and outer headers.  The new rules ensure the ECN field is correctly propagated across a tunnel whether it is used to signal one or two severity levels of congestion; whereas before, only one severity level was supported.  Tunnel endpoints can be updated in any order without affecting pre-existing uses of the ECN field, thus ensuring backward compatibility.  Nonetheless, operators wanting to support two severity levels (e.g., for pre-congestion notification -- PCN) can require compliance with this new specification.  A thorough analysis of the reasoning for these changes and the implications is included.  In the unlikely event that the new rules do not meet a specific need, RFC 4774 gives guidance on designing alternate ECN semantics, and this document extends that to include tunnelling issues.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6040"/>
          <seriesInfo name="DOI" value="10.17487/RFC6040"/>
        </reference>
        <reference anchor="TUNNEL-SECURITY">
          <front>
            <title>Security Concerns with IP Tunneling</title>
            <author fullname="S. Krishnan" initials="S." surname="Krishnan">
              <organization/>
            </author>
            <author fullname="D. Thaler" initials="D." surname="Thaler">
              <organization/>
            </author>
            <author fullname="J. Hoagland" initials="J." surname="Hoagland">
              <organization/>
            </author>
            <date month="April" year="2011"/>
            <abstract>
              <t>A number of security concerns with IP tunnels are documented in this memo.  The intended audience of this document includes network administrators and future protocol developers.  The primary intent of this document is to raise the awareness level regarding the security issues with IP tunnels as deployed and propose strategies for the mitigation of those issues. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6169"/>
          <seriesInfo name="DOI" value="10.17487/RFC6169"/>
        </reference>
        <reference anchor="ROUTING-HDR">
          <front>
            <title>Deprecation of Type 0 Routing Headers in IPv6</title>
            <author fullname="J. Abley" initials="J." surname="Abley">
              <organization/>
            </author>
            <author fullname="P. Savola" initials="P." surname="Savola">
              <organization/>
            </author>
            <author fullname="G. Neville-Neil" initials="G." surname="Neville-Neil">
              <organization/>
            </author>
            <date month="December" year="2007"/>
            <abstract>
              <t>The functionality provided by IPv6's Type 0 Routing Header can be exploited in order to achieve traffic amplification over a remote path for the purposes of generating denial-of-service traffic.  This document updates the IPv6 specification to deprecate the use of IPv6 Type 0 Routing Headers, in light of this security concern.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5095"/>
          <seriesInfo name="DOI" value="10.17487/RFC5095"/>
        </reference>
        <reference anchor="PROXY-REQS">
          <front>
            <title>Requirements for a MASQUE Protocol to Proxy IP Traffic</title>
            <author fullname="Alex Chernyakhovsky" initials="A." surname="Chernyakhovsky">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Dallas McCall" initials="D." surname="McCall">
              <organization>Google LLC</organization>
            </author>
            <author fullname="David Schinazi" initials="D." surname="Schinazi">
              <organization>Google LLC</organization>
            </author>
            <date day="27" month="August" year="2021"/>
            <abstract>
              <t>   There is interest among MASQUE working group participants in
   designing a protocol that can proxy IP traffic over HTTP.  This
   document describes the set of requirements for such a protocol.

   Discussion of this work is encouraged to happen on the MASQUE IETF
   mailing list masque@ietf.org or on the GitHub repository which
   contains the draft: https://github.com/ietf-wg-masque/draft-ietf-
   masque-ip-proxy-reqs.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-masque-ip-proxy-reqs-03"/>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The design of this method was inspired by discussions in the MASQUE working
group around <xref target="PROXY-REQS"/>. The authors would
like to thank participants in those discussions for their feedback.
Additionally, <contact fullname="Mike Bishop"/>, <contact fullname="Lucas Pardue"/>, and <contact fullname="Alejandro Sedeño"/>
provided valuable feedback on the document.</t>
      <t>Most of the text on client configuration is based on the corresponding text in
<xref target="CONNECT-UDP"/>.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
