<?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  (Ruby 3.2.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-core-groupcomm-proxy-02" category="std" consensus="true" submissionType="IETF" updates="7252" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.21.0 -->
  <front>
    <title abbrev="Proxy Operations for Group Communication">Proxy Operations for CoAP Group Communication</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-core-groupcomm-proxy-02"/>
    <author initials="M." surname="Tiloca" fullname="Marco Tiloca">
      <organization>RISE AB</organization>
      <address>
        <postal>
          <street>Isafjordsgatan 22</street>
          <city>Kista</city>
          <code>16440 Stockholm</code>
          <country>Sweden</country>
        </postal>
        <email>marco.tiloca@ri.se</email>
      </address>
    </author>
    <author initials="E." surname="Dijk" fullname="Esko Dijk">
      <organization>IoTconsultancy.nl</organization>
      <address>
        <postal>
          <city>Utrecht</city>
          <country>The Netherlands</country>
        </postal>
        <email>esko.dijk@iotconsultancy.nl</email>
      </address>
    </author>
    <date year="2024" month="July" day="08"/>
    <workgroup>CoRE Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document specifies the operations performed by a proxy, when using the Constrained Application Protocol (CoAP) in group communication scenarios. Such a proxy processes a single request sent by a client over unicast, and distributes the request to a group of servers, e.g., over UDP/IP multicast as the defined default transport protocol. Then, the proxy collects the individual responses from those servers and relays those responses back to the client, in a way that allows the client to distinguish the responses and their origin servers through embedded addressing information. This document updates RFC7252 with respect to caching of response messages at proxies.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Constrained RESTful Environments Working Group mailing list (core@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/core/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/core-wg/groupcomm-proxy"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="intro">
      <name>Introduction</name>
      <t>The Constrained Application Protocol (CoAP) <xref target="RFC7252"/> allows the presence of proxies, as intermediary entities supporting clients by performing requests on their behalf and relaying back responses.</t>
      <t>CoAP supports also group communication over IP multicast <xref target="I-D.ietf-core-groupcomm-bis"/>, where a group request can be addressed to multiple recipient servers, each of which may reply with an individual unicast response. As discussed in <xref section="3.5" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>, this group communication scenario poses a number of issues and limitations to proxy operations.</t>
      <t>In particular, the client sends to the proxy a single unicast request, which the proxy forwards to a group of CoAP servers, e.g., using UDP/IP multicast as the defined default transport protocol for CoAP group requests (see <xref section="1.1" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>). Later on, the proxy replies to the client's original unicast request, by relaying back the responses from the servers.</t>
      <t>As per <xref target="RFC7252"/>, a CoAP-to-CoAP proxy relays those responses to the client as separate CoAP messages, all matching (by Token) with the client's original unicast request. A possible alternative approach for aggregating those responses into a single CoAP response sent to the client would require a specific aggregation Content-Format, which is not available yet. Both these approaches have open issues.</t>
      <t>This document considers the former approach. That is, after forwarding a CoAP group request from the client to the group of CoAP servers, the proxy relays the individual responses back to the client as separate CoAP messages. The described method addresses all the related issues raised in <xref section="3.5" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>. To this end, this document defines a dedicated signaling protocol based on two new CoAP options and used by the client and the proxy.</t>
      <t>By using this protocol, the client explicitly confirms its intent to perform a proxied group request and its support for receiving multiple responses as a result, i.e., one or more from each origin server. Also, the client signals for how long it is willing to wait for responses. When relaying to the client a response to the group request, the proxy indicates the addressing information of the origin server. This enables the client to distinguish multiple different responses by origin and to possibly contact one or more of the respective servers by sending individual unicast request(s) to the indicated address(es). In doing these follow-up unicast requests, the client may optionally bypass the proxy.</t>
      <t>Like <xref target="I-D.ietf-core-groupcomm-bis"/>, this document refers to UDP/IP multicast as the transport protocol that a proxy uses to forward a CoAP group request to a group of servers. While other transport protocols such as broadcast, non-IP multicast, and geocast can also be possible to employ, their use is not considered in this document.</t>
      <t>This document also defines how the proposed protocol is used between an HTTP client and an HTTP-to-CoAP cross-proxy, in order to forward an HTTP group request from the client to a group of CoAP servers, and relay back the individual CoAP responses as HTTP responses.</t>
      <t>Finally, this document defines a caching model for proxies and specifies how they can serve a group request by using cached responses. Therefore, this document updates <xref target="RFC7252"/>.</t>
      <section anchor="terminology">
        <name>Terminology</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>Readers are expected to be familiar with the terms and concepts from the following specifications:</t>
        <ul spacing="normal">
          <li>
            <t>CoAP <xref target="RFC7252"/> and Group Communication for CoAP <xref target="I-D.ietf-core-groupcomm-bis"/>.</t>
          </li>
          <li>
            <t>OSCORE <xref target="RFC8613"/> and Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/>.</t>
          </li>
          <li>
            <t>CDDL <xref target="RFC8610"/>, CBOR <xref target="RFC8949"/>, and CBOR sequences <xref target="RFC8742"/></t>
          </li>
          <li>
            <t>Constrained Resource Identifiers (CRIs) <xref target="I-D.ietf-core-href"/>.</t>
          </li>
        </ul>
        <t>Unless specified otherwise, the term "proxy" refers to a CoAP-to-CoAP forward-proxy, as defined in <xref section="5.7.2" sectionFormat="of" target="RFC7252"/>.</t>
        <t>This document also uses the following terminology.</t>
        <ul spacing="normal">
          <li>
            <t>Individual request: a request that an origin client sends to a single origin server within a group, either directly, or indirectly via a proxy.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="sec-multicast-timeout-option">
      <name>The Multicast-Timeout Option</name>
      <t>The Multicast-Timeout Option defined in this section has the properties summarized in <xref target="_table-multicast-timeout-option"/>, which extends Table 4 of <xref target="RFC7252"/>.</t>
      <t>Since the option is not Safe-to-Forward, the column "N" indicates a dash for "not applicable". The value of the Multicast-Timeout Option specifies a timeout value in seconds, encoded as an unsigned integer (see <xref section="3.2" sectionFormat="of" target="RFC7252"/>).</t>
      <table align="center" anchor="_table-multicast-timeout-option">
        <name>The Multicast-Timeout Option.                                                             C=Critical, U=Unsafe, N=NoCacheKey, R=Repeatable</name>
        <thead>
          <tr>
            <th align="left">No.</th>
            <th align="left">C</th>
            <th align="left">U</th>
            <th align="left">N</th>
            <th align="left">R</th>
            <th align="left">Name</th>
            <th align="left">Format</th>
            <th align="left">Length</th>
            <th align="left">Default</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">TBD1</td>
            <td align="left"> </td>
            <td align="left">x</td>
            <td align="left">-</td>
            <td align="left"> </td>
            <td align="left">Multicast-Timeout</td>
            <td align="left">uint</td>
            <td align="left">0-4</td>
            <td align="left">(none)</td>
          </tr>
        </tbody>
      </table>
      <t>This document specifically defines how this option is used by a client in a CoAP request, to indicate to a proxy its support for and interest in receiving multiple responses to a proxied CoAP group request, i.e., one or more from each origin server, and for how long it is willing to wait for receiving responses via that proxy (see <xref target="ssec-req-send-steps"/> and <xref target="ssec-req-proc-proxy-steps"/>).</t>
      <t>When sending a CoAP group request to a proxy via IP unicast, to be forwarded by the proxy to a targeted group of servers, the client includes the Multicast-Timeout Option into the request. The option value indicates after how much time in seconds the client will stop accepting responses matching its original unicast request, with the exception of notifications if the CoAP Observe Option <xref target="RFC7641"/> is used in the same request. This allows the proxy to stop relaying responses back to the client, if those are received from servers after the indicated amount of time has elapsed.</t>
      <t>The Multicast-Timeout Option is of class U in terms of OSCORE processing (see <xref section="4.1" sectionFormat="of" target="RFC8613"/>).</t>
    </section>
    <section anchor="sec-reply-from-option">
      <name>The Reply-From Option</name>
      <t>The Reply-From Option defined in this section has the properties summarized in <xref target="_table-reply-from-option"/>, which extends Table 4 of <xref target="RFC7252"/>. The option is intended only for inclusion in CoAP responses, and builds on the Base-Uri Option from <xref section="3" sectionFormat="of" target="I-D.bormann-coap-misc"/>.</t>
      <t>Since the option is intended only for responses, the column "N" indicates a dash for "not applicable".</t>
      <table align="center" anchor="_table-reply-from-option">
        <name>The Reply-From Option.                                                             C=Critical, U=Unsafe, N=NoCacheKey, R=Repeatable                          (*) See below.</name>
        <thead>
          <tr>
            <th align="left">No.</th>
            <th align="left">C</th>
            <th align="left">U</th>
            <th align="left">N</th>
            <th align="left">R</th>
            <th align="left">Name</th>
            <th align="left">Format</th>
            <th align="left">Length</th>
            <th align="left">Default</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">TBD2</td>
            <td align="left"> </td>
            <td align="left"> </td>
            <td align="left">-</td>
            <td align="left"> </td>
            <td align="left">Reply-From</td>
            <td align="left">(*)</td>
            <td align="left">5-1034</td>
            <td align="left">(none)</td>
          </tr>
        </tbody>
      </table>
      <t>This document specifically defines how this option is used by a proxy that can perform proxied CoAP group requests.</t>
      <t>Upon receiving a response to such a request from an origin server, the proxy includes the Reply-From Option into the response sent to the origin client (see <xref target="sec-description"/>). The proxy uses the option to indicate addressing information pertaining to that origin server, which the client can use in order to send an individual request intended to that server.</t>
      <t>In particular, the client can use the addressing information specified in the option in order to identify the response originator and to possibly send it individual requests later on, either directly, or indirectly via the proxy, as unicast requests.</t>
      <t>When used as defined in this document, the option value is set to the byte serialization of a CBOR sequence <xref target="RFC8742"/>, which is composed of at most two CBOR arrays.</t>
      <ul spacing="normal">
        <li>
          <t>The first CBOR array is <bcp14>REQUIRED</bcp14> and specifies a CRI (see <xref target="I-D.ietf-core-href"/>). In particular, both 'scheme' and 'authority' are given, while 'path', 'query', and 'fragment' are not given.</t>
        </li>
        <li>
          <t>The second CBOR array is <bcp14>OPTIONAL</bcp14> and specifies a CRI reference (see <xref target="I-D.ietf-core-href"/>). In particular, 'scheme' is set to <tt>null</tt> (0xf6), at least one of 'authority' and 'path' is given, and both 'query' and 'fragment' are not given. This CRI reference is relevant in some scenarios where the proxy is a reverse-proxy.</t>
        </li>
      </ul>
      <t>The detailed use of this option is specified in <xref target="ssec-resp-proc-proxy-steps"/> and <xref target="ssec-resp-proc-client-steps"/> when the proxy is a forward-proxy, and in <xref target="sec-reverse-proxies-proxy-side"/> and <xref target="sec-reverse-proxies-client-side"/> when the proxy is a reverse-proxy.</t>
      <t>The Reply-From Option is of class U in terms of OSCORE processing (see <xref section="4.1" sectionFormat="of" target="RFC8613"/>).</t>
    </section>
    <section anchor="sec-objectives">
      <name>Requirements and Objectives</name>
      <t>In this section, the word "proxy" is not limited to forward-proxies. Instead, it comprises also reverse-proxies and HTTP-to-CoAP proxies.</t>
      <t>This document assumes that the following requirements are fulfilled.</t>
      <ul spacing="normal">
        <li>
          <t>REQ1. The proxy is explicitly configured with an allow-list for performing proxied group requests on behalf of specific allowed client(s).</t>
        </li>
        <li>
          <t>REQ2. The proxy <bcp14>MUST</bcp14> identify a client sending a unicast group request to be proxied, in order to verify whether the client is allowed-listed to do so. For example, this can rely on one of the following security associations.  </t>
          <ul spacing="normal">
            <li>
              <t>A TLS <xref target="RFC8446"/> or DTLS <xref target="RFC9147"/> channel between the client and the proxy, where the client has been authenticated during the secure channel establishment.</t>
            </li>
            <li>
              <t>A pairwise OSCORE <xref target="RFC8613"/> Security Context between the client and the proxy, as defined in <xref target="I-D.ietf-core-oscore-capable-proxies"/>.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>REQ3. If end-to-end secure communication is required between the client and the servers in the CoAP group, exchanged messages <bcp14>MUST</bcp14> be protected by using Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/>, as discussed in <xref section="5" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>. This requires the client and the servers to have previously joined the correct OSCORE group, for instance by using the approach described in <xref target="I-D.ietf-ace-key-groupcomm-oscore"/>. The correct OSCORE group to join can be pre-configured or alternatively discovered, for instance by using the approach described in <xref target="I-D.tiloca-core-oscore-discovery"/>.</t>
        </li>
      </ul>
      <t>This document defines how to achieve the following objectives.</t>
      <ul spacing="normal">
        <li>
          <t>OBJ1. The proxy gets an indication from the client that the client is in fact interested in and capable to handle multiple responses to a proxied group request. With particular reference to a unicast CoAP group request sent to the proxy, this means that the client is capable to receive those responses as separate CoAP responses, each matching with the original unicast request.</t>
        </li>
        <li>
          <t>OBJ2. The proxy learns for how long it should wait for responses to a proxied group request, before starting to ignore following responses to it (except for notifications, if a CoAP Observe Option is used <xref target="RFC7641"/>).</t>
        </li>
        <li>
          <t>OBJ3. The proxy relays to the client any multiple responses to the proxied group request. With particular reference to a client's original CoAP unicast request sent to the proxy, those responses are sent to the client as separate CoAP responses, each matching with the original unicast request.</t>
        </li>
        <li>
          <t>OBJ4. The client is able to distinguish the different responses to the proxied group request, as well as their corresponding origin servers.</t>
        </li>
        <li>
          <t>OBJ5. The client is enabled to optionally contact one or more of the responding origin servers in the future, either directly or via the proxy.</t>
        </li>
      </ul>
    </section>
    <section anchor="sec-description">
      <name>Protocol Description</name>
      <t>This section specifies the steps of the signaling protocol.</t>
      <section anchor="ssec-req-send-client">
        <name>Request Sending at the Client</name>
        <t>This section defines the operations performed by the client, for sending a request targeting a group of servers via the proxy.</t>
        <section anchor="ssec-req-send-steps">
          <name>Request Sending</name>
          <t>The client proceeds according to the following steps.</t>
          <ol spacing="normal" type="1"><li>
              <t>The client prepares a unicast CoAP group request addressed to the proxy, and specifies the group URI where the request has to be forwarded to.  </t>
              <t>
The client can specify the group URI as a string in the Proxy-Uri Option, or by using the Proxy-Scheme Option together with the Uri-* options (see <xref section="3.5.1" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>).  </t>
              <t>
Alternatively, the client can rely on the analogous options defined in <xref target="I-D.ietf-core-href"/>, i.e., on the Proxy-Cri Option conveying a CRI equivalent to the group URI, or on the Proxy-Scheme-Number Option together with the Uri-* options.</t>
            </li>
            <li>
              <t>The client <bcp14>MUST</bcp14> retain the Token value used for this original unicast request beyond the reception of a first CoAP response matching with it. To this end, the client follows the same rules for Token retention defined for multicast CoAP requests in <xref section="3.1.5" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>.  </t>
              <t>
In particular, the client picks an amount of time T that it is fine to wait for before freeing up the Token value. Specifically, the value of T <bcp14>MUST</bcp14> be such that:  </t>
              <ul spacing="normal">
                <li>
                  <t>T &lt; T_r , where T_r is the amount of time that the client is fine to wait for before potentially reusing the Token value. Note that T_r <bcp14>MUST NOT</bcp14> be less than MIN_TOKEN_REUSE_TIME defined in <xref section="3.1.5" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>.</t>
                </li>
                <li>
                  <t>T should be at least the expected worst-case time taken by the request and response processing on the proxy and on the servers in the addressed CoAP group.</t>
                </li>
                <li>
                  <t>T should be at least the expected worst-case round-trip delay between the client and the proxy plus the worst-case round-trip delay between the proxy and any of the origin servers.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>The client <bcp14>MUST</bcp14> include the Multicast-Timeout Option defined in <xref target="sec-multicast-timeout-option"/> into the unicast request to send to the proxy. The option value specifies an amount of time T' &lt; T. The difference (T - T') should be at least the expected worst-case round-trip time between the client and the proxy.  </t>
              <t>
The client can specify T' = 0 as option value, thus indicating to be not interested in receiving responses from the origin servers through the proxy. In such a case, the client <bcp14>SHOULD</bcp14> also include a No-Response Option <xref target="RFC7967"/> with value 26 (suppress all response codes), if it supports the option.  </t>
              <t>
Consistently, if the unicast request to send to the proxy already included a No-Response Option with value 26, the client <bcp14>SHOULD</bcp14> specify T' = 0 as value of the Multicast-Timeout Option.</t>
            </li>
            <li>
              <t>The client processes the request as defined in <xref target="I-D.ietf-core-groupcomm-bis"/>, and also as in <xref target="I-D.ietf-core-oscore-groupcomm"/> when secure group communication is used between the client and the servers.</t>
            </li>
            <li>
              <t>The client sends the request to the proxy as a unicast CoAP message. When doing so, the client protects the request according to the security association it has with the proxy.</t>
            </li>
          </ol>
          <t>The exact method that the client uses to estimate the worst-case processing times and round-trip delays mentioned above is out of the scope of this document. However, such a method is expected to be already used by the client when generally determining an appropriate Token lifetime and reuse interval.</t>
        </section>
        <section anchor="ssec-req-send-observe">
          <name>Supporting Observe</name>
          <t>When using CoAP Observe <xref target="RFC7641"/>, the client follows what is specified in <xref section="3.7" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>, with the difference that it sends a unicast request to the proxy, to be forwarded to the group of servers, as defined in <xref target="ssec-req-send-steps"/> of this document.</t>
          <t>Furthermore, the client especially follows what is specified in <xref section="5" sectionFormat="of" target="RFC7641"/>, i.e., it registers its interest to be an observer with the proxy, as if it was communicating with the servers.</t>
        </section>
      </section>
      <section anchor="ssec-req-proc-proxy">
        <name>Request Processing at the Proxy</name>
        <t>This section defines the operations performed by the proxy, when receiving a request to forward to a group of servers.</t>
        <section anchor="ssec-req-proc-proxy-steps">
          <name>Request Processing</name>
          <t>Upon receiving the request from the client, the proxy proceeds according to the following steps.</t>
          <ol spacing="normal" type="1"><li>
              <t>The proxy decrypts and verifies the request, according to the security association it has with the client.</t>
            </li>
            <li>
              <t>The proxy identifies the client, and verifies that the client is in fact allowed-listed to have its requests proxied to CoAP group URIs.</t>
            </li>
            <li>
              <t>The proxy verifies the presence of the Multicast-Timeout Option, as a confirmation that the client is fine to receive multiple CoAP responses matching with the same original request.  </t>
              <t>
If the Multicast-Timeout Option is not present, the proxy <bcp14>MUST</bcp14> stop processing the request and <bcp14>MUST</bcp14> reply to the client with a 4.00 (Bad Request) response. The response <bcp14>MUST</bcp14> include a Multicast-Timeout Option, whose value <bcp14>MUST</bcp14> be set to 0. As per <xref section="3.2" sectionFormat="of" target="RFC7252"/>, this is represented with an empty option value (a zero-length sequence of bytes). By doing so, the proxy indicates that the Multicast-Timeout Option was missing and has to be included in the request. As per <xref section="5.9.2" sectionFormat="of" target="RFC7252"/> The response <bcp14>SHOULD</bcp14> include a diagnostic payload.</t>
            </li>
            <li>
              <t>The proxy retrieves the value T' from the Multicast-Timeout Option, and then removes the option from the client's request.</t>
            </li>
            <li>
              <t>The proxy forwards the client's request to the group of servers. In particular, the proxy sends it as a CoAP group request over IP multicast, addressed to the group URI specified by the client.</t>
            </li>
            <li>
              <t>The proxy sets a timeout with the value T' retrieved from the Multicast-Timeout Option of the original unicast request.  </t>
              <t>
In case T' &gt; 0, the proxy will ignore responses to the forwarded group request coming from servers, if received after the timeout expiration, with the exception of Observe notifications (see <xref target="ssec-resp-proc-proxy"/>).  </t>
              <t>
In case T' = 0, the proxy will ignore all responses to the forwarded group request coming from servers.</t>
            </li>
          </ol>
          <t>If the proxy supports caching of responses, it can serve the original unicast request also by using cached responses, as per <xref target="sec-proxy-caching"/>.</t>
        </section>
        <section anchor="ssec-req-proc-proxy-observe">
          <name>Supporting Observe</name>
          <t>When using CoAP Observe <xref target="RFC7641"/>, the proxy takes the role of the client and registers its own interest to observe the target resource with the servers as per <xref section="5" sectionFormat="of" target="RFC7641"/>.</t>
          <t>When doing so, the proxy especially follows what is specified for the client in <xref section="3.7" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>, by forwarding the group request to the servers over IP multicast as defined in <xref target="ssec-req-proc-proxy-steps"/> of this document.</t>
        </section>
      </section>
      <section anchor="ssec-req-resp-proc-server">
        <name>Request and Response Processing at the Server</name>
        <t>This section defines the operations performed by the server, when receiving a group request from the proxy.</t>
        <section anchor="ssec-req-resp-proc-server-steps">
          <name>Request and Response Processing</name>
          <t>Upon receiving the request from the proxy, the server proceeds according to the following steps.</t>
          <ol spacing="normal" type="1"><li>
              <t>The server processes the group request as defined in <xref target="I-D.ietf-core-groupcomm-bis"/>, and also as in <xref target="I-D.ietf-core-oscore-groupcomm"/> when secure group communication is used between the client and the server.</t>
            </li>
            <li>
              <t>The server processes the response to be relayed to the client as defined in <xref target="I-D.ietf-core-groupcomm-bis"/>, and also as in <xref target="I-D.ietf-core-oscore-groupcomm"/> when secure group communication is used between the client and the server.</t>
            </li>
          </ol>
        </section>
        <section anchor="ssec-req-resp-proc-server-observe">
          <name>Supporting Observe</name>
          <t>When using CoAP Observe <xref target="RFC7641"/>, the server especially follows what is specified in <xref section="3.7" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/> and <xref section="5" sectionFormat="of" target="RFC7641"/>.</t>
        </section>
      </section>
      <section anchor="ssec-resp-proc-proxy">
        <name>Response Processing at the Proxy</name>
        <t>This section defines the operations performed by the proxy, when receiving a response matching with a forwarded group request.</t>
        <section anchor="ssec-resp-proc-proxy-steps">
          <name>Response Processing</name>
          <t>Upon receiving a response matching with the group request before the amount of time T' has elapsed, the proxy proceeds according to the following steps.</t>
          <ol spacing="normal" type="1"><li>
              <t>The proxy <bcp14>MUST</bcp14> include the Reply-From Option defined in <xref target="sec-reply-from-option"/> into the response. The proxy sets the option value as follows.  </t>
              <t>
The CRI present as first element of the CBOR sequence specifies the addressing information of the server generating the response. The second element of the CBOR sequence <bcp14>MUST NOT</bcp14> be present.  </t>
              <t>
If the proxy supports caching of responses (see <xref target="sec-proxy-caching"/>), the proxy <bcp14>MUST</bcp14> include the Reply-From Option into the response before caching it. This ensures that a response to a group request conveys the addressing information of the origin server that generated the response, also when the response is forwarded to a client as retrieved from the proxy's cache.</t>
            </li>
            <li>
              <t>The proxy forwards the response back to the client. When doing so, the proxy protects the response according to the security association it has with the client.</t>
            </li>
          </ol>
          <t>As discussed in <xref section="3.1.6" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>, it is possible that a same server replies with multiple responses to the same group request, i.e., with the same Token. As long as the proxy forwards responses to a group request back to the origin client, the proxy <bcp14>MUST</bcp14> follow the steps defined above and forward also such multiple responses "as they come".</t>
          <t>Upon timeout expiration, i.e., T' seconds after having sent the group request over IP multicast, the proxy frees up its local Token value associated with that request. Thus, following late responses to the same group request will be discarded and not forwarded back to the client.</t>
        </section>
        <section anchor="ssec-resp-proc-proxy-observe">
          <name>Supporting Observe</name>
          <t>When using CoAP Observe <xref target="RFC7641"/>, the proxy acts as a client registered with the servers, as described earlier in <xref target="ssec-req-proc-proxy-observe"/>.</t>
          <t>Furthermore, the proxy takes the role of a server when forwarding notifications from origin servers back to the client. To this end, the proxy follows what is specified in <xref section="3.7" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/> and <xref section="5" sectionFormat="of" target="RFC7641"/>, with the following additions.</t>
          <ul spacing="normal">
            <li>
              <t>At step 1 in <xref target="ssec-resp-proc-proxy"/>, the proxy includes the Reply-From Option in every notification, including non-2.xx notifications resulting in removing the proxy from the list of observers of the origin server.</t>
            </li>
            <li>
              <t>The proxy frees up its Token value used for a group observation only if, after the timeout expiration, no 2.xx (Success) responses matching with the group request and also including an Observe Option have been received from any origin server. Otherwise, after the timeout expiration and as long as observations are active with servers in the group for the target resource of the group request, notifications from those servers are forwarded back to the client, as defined in <xref target="ssec-resp-proc-proxy"/>, and the Token value used for the group observation is not freed during this time.</t>
            </li>
          </ul>
          <t>Finally, the proxy <bcp14>SHOULD</bcp14> regularly verify that the client is still interested in receiving observe notifications for a group observation. To this end, the proxy can rely on the same approach discussed for servers in <xref section="3.7" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>, with more details available in <xref section="4.5" sectionFormat="of" target="RFC7641"/>.</t>
        </section>
      </section>
      <section anchor="ssec-resp-proc-client">
        <name>Response Processing at the Client</name>
        <t>This section defines the operations performed by the client, when receiving a response matching with a request that targeted a group of servers via the proxy.</t>
        <section anchor="ssec-resp-proc-client-steps">
          <name>Response Processing</name>
          <t>Upon receiving from the proxy a response matching with the original unicast request before the amount of time T has elapsed, the client proceeds according to the following steps.</t>
          <ol spacing="normal" type="1"><li>
              <t>The client processes the response as defined in <xref target="I-D.ietf-core-groupcomm-bis"/>. When doing so, the client decrypts and verifies the response according to the security association it has with the proxy.</t>
            </li>
            <li>
              <t>If secure group communication is used end-to-end between the client and the servers, the client processes the response resulting at the end of step 1, as defined in <xref target="I-D.ietf-core-oscore-groupcomm"/>.</t>
            </li>
            <li>
              <t>The client retrieves the CRI from the value of the Reply-From Option, and identifies the origin server whose addressing information is specified by the CRI. This allows the client to distinguish different responses as originated by different servers.  </t>
              <t>
Optionally, the client may contact one or more of those servers individually, i.e., directly (bypassing the proxy) or indirectly (via a proxied unicast request). To this end, the client composes the correct URI for the individual request to the origin server, by using the information specified in the CRI retrieved from the Reply-From Option.  </t>
              <t>
In order to individually reach the origin server again through the proxy, the client is not required to support the transport protocol indicated by 'scheme' in the CRI and used between the proxy and the origin server, in case the protocol is not CoAP over UDP (CRI scheme number: -1).  </t>
              <t>
That is, the client simply specifies the URI for the individual request in the unicast request to the proxy. To this end, the client can specify the URI as a string in the Proxy-Uri Option, or by using the Proxy-Scheme Option together with the Uri-* options. Alternatively, the client can rely on the analogous options defined in <xref target="I-D.ietf-core-href"/>, i.e., on the Proxy-Cri Option conveying a CRI equivalent to the URI, or on the Proxy-Scheme-Number Option together with the Uri-* options. In either case, the client uses the transport protocol that it knows, and has used before, to send the unicast request to the proxy.</t>
            </li>
          </ol>
          <t>As discussed in <xref section="3.1.6" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>, it is possible that the client receives multiple responses to the same group request, i.e., with the same Token, from the same origin server. The client normally processes at the CoAP layer each of those responses from the same origin server, and decides at the application layer how to exactly handle them depending on its available context information (see <xref section="3.1.6" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>).</t>
          <t>Upon the timeout expiration, i.e., T seconds after having sent the original unicast request to the proxy, the client frees up its local Token value associated with that request. Note that, upon this timeout expiration, the Token value is not eligible for possible reuse yet (see <xref target="ssec-req-send-steps"/>). Thus, until the actual amount of time before enabling Token reusage has elapsed, following late responses to the same request forwarded by the proxy will be discarded, as these are not matching (by Token) with any active request from the client.</t>
        </section>
        <section anchor="ssec-resp-proc-client-observe">
          <name>Supporting Observe</name>
          <t>When using CoAP Observe <xref target="RFC7641"/>, the client frees up its Token value only if, after the timeout T expiration, no 2.xx (Success) responses matching with the original unicast request and also including an Observe Option have been received.</t>
          <t>Instead, if at least one such response has been received, the client continues receiving those notifications as forwarded by the proxy, as long as the observation for the target resource of the original unicast request is active.</t>
        </section>
      </section>
      <section anchor="sec-workflow-example">
        <name>Example</name>
        <t>The example in this section refers to the following actors.</t>
        <ul spacing="normal">
          <li>
            <t>One origin client C, with address C_ADDR and port number C_PORT.</t>
          </li>
          <li>
            <t>One proxy P, with address P_ADDR and port number P_PORT.</t>
          </li>
          <li>
            <t>Two origin servers S1 and S2, where the server Sx has address Sx_ADDR and port number Sx_PORT.</t>
          </li>
        </ul>
        <t>The origin servers are members of a CoAP group with IP multicast address G_ADDR and port number G_PORT. Also, the origin servers are members of a same application group, and share the same resource /r.</t>
        <t>The communication between C and P is based on CoAP over UDP, as per <xref target="RFC7252"/>. The communication between P and the origin servers is based on CoAP over UDP and IP multicast, as per <xref target="I-D.ietf-core-groupcomm-bis"/>.</t>
        <t>Finally, cri'X' denotes a CRI corresponding to the URI X.</t>
        <figure anchor="workflow-example">
          <name>Workflow example with a forward-proxy</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="832" width="568" viewBox="0 0 568 832" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,816" fill="none" stroke="black"/>
                <path d="M 264,48 L 264,768" fill="none" stroke="black"/>
                <path d="M 448,48 L 448,264" fill="none" stroke="black"/>
                <path d="M 448,280 L 448,584" fill="none" stroke="black"/>
                <path d="M 448,632 L 448,816" fill="none" stroke="black"/>
                <path d="M 560,48 L 560,816" fill="none" stroke="black"/>
                <path d="M 8,64 L 256,64" fill="none" stroke="black"/>
                <path d="M 264,240 L 440,240" fill="none" stroke="black"/>
                <path d="M 408,272 L 552,272" fill="none" stroke="black"/>
                <path d="M 272,400 L 448,400" fill="none" stroke="black"/>
                <path d="M 16,480 L 264,480" fill="none" stroke="black"/>
                <path d="M 272,592 L 560,592" fill="none" stroke="black"/>
                <path d="M 16,672 L 264,672" fill="none" stroke="black"/>
                <path d="M 392,240 L 408,272" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="560,272 548,266.4 548,277.6" fill="black" transform="rotate(0,552,272)"/>
                <polygon class="arrowhead" points="448,240 436,234.4 436,245.6" fill="black" transform="rotate(0,440,240)"/>
                <polygon class="arrowhead" points="280,592 268,586.4 268,597.6" fill="black" transform="rotate(180,272,592)"/>
                <polygon class="arrowhead" points="280,400 268,394.4 268,405.6" fill="black" transform="rotate(180,272,400)"/>
                <polygon class="arrowhead" points="264,64 252,58.4 252,69.6" fill="black" transform="rotate(0,256,64)"/>
                <polygon class="arrowhead" points="24,672 12,666.4 12,677.6" fill="black" transform="rotate(180,16,672)"/>
                <polygon class="arrowhead" points="24,480 12,474.4 12,485.6" fill="black" transform="rotate(180,16,480)"/>
                <g class="text">
                  <text x="8" y="36">C</text>
                  <text x="264" y="36">P</text>
                  <text x="452" y="36">S1</text>
                  <text x="556" y="36">S2</text>
                  <text x="36" y="84">Src:</text>
                  <text x="112" y="84">C_ADDR:C_PORT</text>
                  <text x="36" y="100">Dst:</text>
                  <text x="112" y="100">P_ADDR:P_PORT</text>
                  <text x="60" y="116">Proxi-Uri:</text>
                  <text x="132" y="132">"coap://G_ADDR:G_PORT/r"</text>
                  <text x="92" y="148">Multicast-Timeout:</text>
                  <text x="180" y="148">60</text>
                  <text x="292" y="196">Src:</text>
                  <text x="368" y="196">P_ADDR:P_PORT</text>
                  <text x="292" y="212">Dst:</text>
                  <text x="368" y="212">G_ADDR:G_PORT</text>
                  <text x="312" y="228">Uri-Path:</text>
                  <text x="368" y="228">"r"</text>
                  <text x="280" y="324">/</text>
                  <text x="296" y="324">t</text>
                  <text x="312" y="324">=</text>
                  <text x="328" y="324">0</text>
                  <text x="344" y="324">:</text>
                  <text x="360" y="324">P</text>
                  <text x="396" y="324">starts</text>
                  <text x="312" y="340">accepting</text>
                  <text x="392" y="340">responses</text>
                  <text x="288" y="356">for</text>
                  <text x="324" y="356">this</text>
                  <text x="376" y="356">request</text>
                  <text x="416" y="356">/</text>
                  <text x="292" y="420">Src:</text>
                  <text x="372" y="420">S1_ADDR:G_PORT</text>
                  <text x="292" y="436">Dst:</text>
                  <text x="368" y="436">P_ADDR:P_PORT</text>
                  <text x="36" y="500">Src:</text>
                  <text x="112" y="500">P_ADDR:P_PORT</text>
                  <text x="36" y="516">Dst:</text>
                  <text x="112" y="516">C_ADDR:C_PORT</text>
                  <text x="64" y="532">Reply-From:</text>
                  <text x="140" y="548">cri'coap://S1_ADDR:G_PORT'</text>
                  <text x="404" y="612">Src:</text>
                  <text x="488" y="612">S2_ADDR:S2_PORT</text>
                  <text x="404" y="628">Dst:</text>
                  <text x="480" y="628">P_ADDR:P_PORT</text>
                  <text x="36" y="692">Src:</text>
                  <text x="112" y="692">P_ADDR:P_PORT</text>
                  <text x="36" y="708">Dst:</text>
                  <text x="112" y="708">C_ADDR:C_PORT</text>
                  <text x="64" y="724">Reply-From:</text>
                  <text x="144" y="740">cri'coap://S2_ADDR:S2_PORT'</text>
                  <text x="136" y="788">/</text>
                  <text x="156" y="788">At</text>
                  <text x="176" y="788">t</text>
                  <text x="192" y="788">=</text>
                  <text x="216" y="788">60,</text>
                  <text x="240" y="788">P</text>
                  <text x="272" y="788">stops</text>
                  <text x="336" y="788">accepting</text>
                  <text x="168" y="804">responses</text>
                  <text x="224" y="804">for</text>
                  <text x="260" y="804">this</text>
                  <text x="312" y="804">request</text>
                  <text x="352" y="804">/</text>
                  <text x="264" y="820">|</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
C                               P                      S1           S2
|                               |                      |             |
+------------------------------>|                      |             |
| Src: C_ADDR:C_PORT            |                      |             |
| Dst: P_ADDR:P_PORT            |                      |             |
| Proxi-Uri:                    |                      |             |
|   "coap://G_ADDR:G_PORT/r"    |                      |             |
| Multicast-Timeout: 60         |                      |             |
|                               |                      |             |
|                               |                      |             |
|                               | Src: P_ADDR:P_PORT   |             |
|                               | Dst: G_ADDR:G_PORT   |             |
|                               | Uri-Path: "r"        |             |
|                               +---------------+----->|             |
|                               |                \     |             |
|                               |                 `----------------->|
|                               |                      |             |
|                               |                      |             |
|                               | / t = 0 : P starts   |             |
|                               | accepting responses  |             |
|                               | for this request /   |             |
|                               |                      |             |
|                               |                      |             |
|                               |<---------------------+             |
|                               | Src: S1_ADDR:G_PORT  |             |
|                               | Dst: P_ADDR:P_PORT   |             |
|                               |                      |             |
|                               |                      |             |
|<------------------------------+                      |             |
| Src: P_ADDR:P_PORT            |                      |             |
| Dst: C_ADDR:C_PORT            |                      |             |
| Reply-From:                   |                      |             |
|   cri'coap://S1_ADDR:G_PORT'  |                      |             |
|                               |                      |             |
|                               |                      |             |
|                               |<-----------------------------------+
|                               |               Src: S2_ADDR:S2_PORT |
|                               |               Dst: P_ADDR:P_PORT   |
|                               |                      |             |
|                               |                      |             |
|<------------------------------+                      |             |
| Src: P_ADDR:P_PORT            |                      |             |
| Dst: C_ADDR:C_PORT            |                      |             |
| Reply-From:                   |                      |             |
|   cri'coap://S2_ADDR:S2_PORT' |                      |             |
|                               |                      |             |
|                               |                      |             |
|               / At t = 60, P stops accepting         |             |
|               responses for this request /           |             |
|                               |                      |             |
]]></artwork>
          </artset>
        </figure>
      </section>
    </section>
    <section anchor="sec-reverse-proxies">
      <name>Reverse-Proxies</name>
      <t>The use of reverse-proxies in group communication scenarios is defined in <xref section="3.5.2" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>.</t>
      <t>This section clarifies how the Multicast-Timeout Option is effective also in such a context, in order for:</t>
      <ul spacing="normal">
        <li>
          <t>The proxy to effectively reveal itself as a reverse-proxy to the client.</t>
        </li>
        <li>
          <t>The client to indicate to the proxy of being aware that it is communicating with a reverse-proxy, and for how long it is willing to receive responses to a proxied group request.</t>
        </li>
      </ul>
      <t>This practically addresses the additional issues compared to the case with a forward-proxy, as compiled in <xref section="3.5.2" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>.</t>
      <t><xref target="sec-reverse-proxies-examples"/> provides examples with a reverse-proxy.</t>
      <section anchor="sec-reverse-proxies-proxy-side">
        <name>Processing on the Proxy Side</name>
        <t>If the proxy receives a CoAP request and determines that it should be forwarded to a group of servers over IP multicast, then the proxy performs the steps defined in <xref target="ssec-req-proc-proxy"/>.</t>
        <t>In particular, when such a request does not include a Multicast-Timeout Option, the proxy effectively reveals itself as a reverse-proxy, by sending a 4.00 (Bad Request) response including a Multicast-Timeout Option with value 0 (which is ultimately represented with an empty option value).</t>
        <t>The proxy processes the CoAP responses forwarded back to the client as defined in <xref target="ssec-resp-proc-proxy"/>, with the following additions.</t>
        <ul spacing="normal">
          <li>
            <t>As a first possible case, the proxy stands in both for the whole group of servers and for the individual origin servers in the group. That is, the origin client cannot reach the individual servers directly, but only through the proxy.  </t>
            <t>
In such a case, within a response forwarded back to the client, the value of the Reply-From Option specifies an addressing information TARGET that is directly associated with the proxy. The addressing information is such that, when receiving a unicast request that has been sent according to what is specified in TARGET, the proxy forwards the request to the origin server that originated the response. In particular, the proxy sets the option value as follows.  </t>
            <ul spacing="normal">
              <li>
                <t>The CRI present as first element of the CBOR sequence specifies an addressing information TARGET_1, such that a unicast request reaches the proxy if it is sent according to TARGET_1.</t>
              </li>
              <li>
                <t>A CRI reference <bcp14>MUST</bcp14> be present as second element of the CBOR sequence in case, upon receiving a unicast request that has been sent according to TARGET_1, the proxy forwards the request based on what is specified by the Uri-Host, Uri-Port, and Uri-Path Options included in the request. The CRI reference specifies the same information that the proxy expects to be specified in the Uri-Host, Uri-Port, and Uri-Path Options of such a unicast request.      </t>
                <t>
Otherwise, the second element of the CBOR sequence <bcp14>MUST NOT</bcp14> be present, in which case the proxy forwards the unicast request solely based on the addressing information TARGET_1 according to which the request has been sent to.</t>
              </li>
            </ul>
            <t>
The client will be able to communicate individually with the server that originated the response, by sending a follow-up unicast request to the proxy at the specified addressing information TARGET, according to which the proxy forwards the request to that server. This is further specified in <xref target="sec-reverse-proxies-client-side"/>. An example is provided in <xref target="sec-reverse-proxies-examples-ex1"/> and <xref target="sec-reverse-proxies-examples-ex2"/>.</t>
          </li>
          <li>
            <t>As a second possible case, the proxy stands in only for the whole group of servers, but not for the individual servers in the group. That is, the origin client can reach the individual servers directly, without recourse to the proxy.  </t>
            <t>
In such a case, within a response forwarded back to the client, the value of the Reply-From Option specifies an addressing information TARGET that is directly associated with the origin server that originated the response. In particular, the proxy sets the option value as follows.  </t>
            <ul spacing="normal">
              <li>
                <t>The CRI present as first element of the CBOR sequence specifies the addressing information TARGET, such that a unicast request reaches the origin server if sent according to TARGET. The second element of the CBOR sequence <bcp14>MUST NOT</bcp14> be present.</t>
              </li>
            </ul>
            <t>
The client will be able to use that information for sending a follow-up unicast request directly to that server, i.e., bypassing the proxy. This is further specified in <xref target="sec-reverse-proxies-client-side"/>. An example is provided in <xref target="sec-reverse-proxies-examples-ex3"/>.</t>
          </li>
        </ul>
      </section>
      <section anchor="sec-reverse-proxies-client-side">
        <name>Processing on the Client Side</name>
        <t>If a client sends a CoAP request intended to a group of servers and is aware of actually communicating with a reverse-proxy, then the client <bcp14>MUST</bcp14> perform the steps defined in <xref target="ssec-req-send-steps"/>. In particular, this results in a request sent to the proxy including a Multicast-Timeout Option.</t>
        <t>The client processes the CoAP responses forwarded back by the proxy as defined in <xref target="ssec-resp-proc-client"/>, with the following differences at step 3.</t>
        <ul spacing="normal">
          <li>
            <t>If the client wishes to send a follow-up unicast request intended only to the server that originated the response, then the client sends such a request according to the addressing information specified by the CRI retrieved from the value of the Reply-From Option. Effectively, the client sends the unicast request to the proxy.  </t>
            <t>
In case the value of the Reply-From Option specifies also a CRI reference as second element of the CBOR sequence, then the client includes the Uri-Host, Uri-Port, and Uri-Path Options in the unicast request, according to what is specified by the corresponding elements of the CRI reference. If the client wants to specify additional path segments that identify a specific resource at the origin server, then the corresponding Uri-Path Options are included in the request after the Uri-Path options corresponding to the path component of the CRI reference.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="sec-proxy-caching">
      <name>Caching</name>
      <t>A proxy <bcp14>MAY</bcp14> cache responses to a group request, as defined in <xref section="5.7.1" sectionFormat="of" target="RFC7252"/>. In particular, the same rules apply to determine the set of request options used as "Cache-Key", and to determine the max-age values offered for responses served from the cache.</t>
      <t>A cache entry is associated with one server and stores one response from that server, regardless whether it is a response to a unicast request or to a group request. The following two types of requests can produce a hit to a cache entry.</t>
      <ul spacing="normal">
        <li>
          <t>A matching request intended to that server, i.e., to the corresponding unicast URI.  </t>
          <t>
When the stored response is a response to a unicast request to the server, the unicast URI of the matching request is the same target URI used for the original unicast request.  </t>
          <t>
When the stored response is a response to a group request to the CoAP group, the unicast URI of the matching request is the target URI obtained by replacing the authority part of the group URI in the original group request with the transport-layer source address and port number of the response.</t>
        </li>
        <li>
          <t>A matching group request intended to the CoAP group, i.e., to the corresponding group URI.  </t>
          <t>
That is, a matching group request produces a hit to multiple cache entries, each of which associated with one of the CoAP servers currently member of the CoAP group.  </t>
          <t>
Note that, as per the freshness model defined in <xref target="sec-proxy-caching-freshness"/>, the proxy might serve a group request exclusively from its cached responses only when it knows all the CoAP servers that are current members of the CoAP group and it has a valid cache entry for each of them.</t>
        </li>
      </ul>
      <t>When forwarding a GET or FETCH group request to the servers in the CoAP group, the proxy behaves like a CoAP client as defined in <xref section="3.2" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>, with the following additions.</t>
      <ul spacing="normal">
        <li>
          <t>As discussed in <xref target="ssec-resp-proc-proxy-steps"/>, the proxy can receive multiple responses to the same group request from a same origin server, and forwards them back to the origin client "as they come". When this happens, each of such multiple responses is stored in the cache entry associated with the server "as it comes", possibly replacing an already stored response from that server.</t>
        </li>
        <li>
          <t>As discussed in <xref target="sec-group-caching"/>, when communications in the group are secured with Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/>, additional means are required to enable cacheability of responses at the proxy.</t>
        </li>
      </ul>
      <t>The following subsections define the freshness model and validation model that the proxy uses for cached responses.</t>
      <section anchor="sec-proxy-caching-freshness">
        <name>Freshness Model</name>
        <t>The proxy relies on the same freshness model defined in <xref section="3.2.1" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>, by taking the role of a CoAP client with respect to the servers in the CoAP group.</t>
        <t>In particular, when receiving a unicast group request from the client, the proxy <bcp14>MAY</bcp14> serve it by using exclusively cached responses without forwarding the group request to the servers in the CoAP group, but only if both the following conditions hold.</t>
        <ul spacing="normal">
          <li>
            <t>The proxy knows all the CoAP servers that are currently members of the CoAP group for which the group request is intended to.</t>
          </li>
          <li>
            <t>The proxy's cache currently stores a fresh response for each of those CoAP servers.</t>
          </li>
        </ul>
        <t>The specific way that the proxy uses to determine the CoAP servers currently members of the target CoAP group is out of scope for this document. As possible examples, the proxy can synchronize with a group manager server; rely on well-known time patterns used by the application or in the network for the addition of new CoAP group members; observe group join requests or IGMP/MLD multicast group join messages, e.g., if embedded in a multicast router.</t>
        <t>When forwarding the group request to the servers, the proxy may have fresh responses stored in its cache for (some of) those servers. In such a case, the proxy uses (also) those cached responses to serve the original unicast group request, as defined below.</t>
        <ul spacing="normal">
          <li>
            <t>The request processing in <xref target="ssec-req-proc-proxy-steps"/> is extended as follows.  </t>
            <t>
After setting the timeout with value T' &gt; 0 in step 6, the proxy checks whether its cache currently stores fresh responses to the group request. For each of such responses, the proxy compares the residual lifetime L of the corresponding cache entry against the value T'.  </t>
            <t>
If a cached response X is such that L &lt; T', then the proxy forwards X back to the client at its earliest convenience. Otherwise, the proxy does not forward X back to the client right away, and rather waits for approaching the timeout expiration, as discussed in the next point.</t>
          </li>
          <li>
            <t>The response processing in <xref target="ssec-resp-proc-proxy-steps"/> is extended as follows.  </t>
            <t>
Before the timeout with original value T' &gt; 0 expires and the proxy stops accepting responses to the group request, the proxy checks whether it stores in its cache any fresh response X to the group request such that both the following conditions hold.  </t>
            <ul spacing="normal">
              <li>
                <t>The cache entry E storing X was already existing when the proxy forwarded the group request.</t>
              </li>
              <li>
                <t>The proxy has received no response to the forwarded group request from the server associated with E.</t>
              </li>
            </ul>
            <t>
Then, the proxy sends back to the client each response X stored in its cache and selected as above, before the timeout expires.  </t>
            <t>
Note that, from the forwarding of the group request until the timeout expiration, the proxy still forwards responses to the group request back to the client "as they come" (see <xref target="ssec-resp-proc-proxy-steps"/>). Also, such responses possibly refresh older responses from the same servers that the proxy has stored in its cache, as defined earlier in <xref target="sec-proxy-caching"/>.</t>
          </li>
        </ul>
      </section>
      <section anchor="sec-proxy-caching-validation">
        <name>Validation Model</name>
        <t>This section defines the revalidation of responses, separately between the proxy and the origin servers, as well as between the origin client and the proxy.</t>
        <section anchor="sec-proxy-caching-validation-p-s-unicast">
          <name>Proxy-Servers Revalidation with Unicast Requests</name>
          <t>The proxy <bcp14>MAY</bcp14> revalidate a cached response by making a GET or FETCH request on the related unicast request URI, i.e., by taking the role of a CoAP client with respect to a server in the CoAP group.</t>
          <t>As discussed in <xref target="sec-group-caching"/>, this is however not possible for the proxy if communications in the group are secured end-to-end between origin client and origin servers by using Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/>.</t>
          <t>[ TODO</t>
          <t>It can be actually possible to enable revalidation of responses between proxy and server, also in this case where Group OSCORE is used end-to-end between client and origin servers.</t>
          <t>Fundamentally, this requires to define the possible use of the ETag Option also as an outer option for OSCORE. Thus, in addition to the normal inner ETag, a server can add also an outer ETag option intended to the proxy.</t>
          <t>Since validation of responses assumes that cacheability of responses is possible in the first place, it would be convenient to define the use of ETag as outer option in <xref target="I-D.amsuess-core-cachable-oscore"/>.</t>
          <t>In case OSCORE is also used between the proxy and an individual origin server as per <xref target="I-D.ietf-core-oscore-capable-proxies"/>, then the outer ETag Option would be seamlessly protected with the OSCORE Security Context shared between the proxy and the origin server.</t>
          <t>The following text can be used to replace the last paragraph above.</t>
          <t> </t>
          <t>As discussed in <xref target="sec-group-caching"/>, the following applies when Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/> is used to secure communications end-to-end between the origin client and the origin servers in the group.</t>
          <ul spacing="normal">
            <li>
              <t>Additional means are required to enable cacheability of responses at the proxy (see <xref target="sec-det-req"/>).</t>
            </li>
            <li>
              <t>If a cached response included an outer ETag Option intended to the proxy, then the proxy can perform revalidation of the cached response, by making a request to the unicast URI targeting the server, and including outer ETag Option(s).  </t>
              <t>
This is possible also in case the proxy and the origin server use OSCORE to further protect the exchanged request and response, as defined in <xref target="I-D.ietf-core-oscore-capable-proxies"/>. In such a case, the originally outer ETag Option is protected with the OSCORE Security Context shared between the proxy and the origin server, before transferring the message over the communication leg between the proxy and origin server.</t>
            </li>
          </ul>
          <t>]</t>
        </section>
        <section anchor="sec-proxy-caching-validation-p-s">
          <name>Proxy-Servers Revalidation with Group Requests</name>
          <t>When forwarding a group request to the servers in the CoAP group, the proxy <bcp14>MAY</bcp14> revalidate one or more stored responses that it has cached.</t>
          <t>To this end, the proxy relies on the same validation model defined in <xref section="3.2.2" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/> and using the ETag Option, by taking the role of a CoAP client with respect to the servers in the CoAP group.</t>
          <t>As discussed in <xref target="sec-group-caching"/>, this is however not possible for the proxy if communications in the group are secured end-to-end between origin client and origin servers by using Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/>.</t>
          <t>[ TODO</t>
          <t>See the notes in <xref target="sec-proxy-caching-validation-p-s-unicast"/>.</t>
          <t>The following text can be used to replace the last paragraph above.</t>
          <t> </t>
          <t>As discussed in <xref target="sec-group-caching"/>, the following applies when Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/> is used to secure communications end-to-end between the origin client and the origin servers in the group.</t>
          <ul spacing="normal">
            <li>
              <t>Additional means are required to enable cacheability of responses at the proxy (see <xref target="sec-det-req"/>).</t>
            </li>
            <li>
              <t>If a cached response included an outer ETag Option intended to the proxy, then the proxy can perform revalidation of the cached response, by making a request to the group URI targeting the CoAP group, and including outer ETag Option(s).  </t>
              <t>
This is possible also in case the proxy and the origin servers use Group OSCORE to further protect the exchanged request and response, as defined in <xref target="I-D.ietf-core-oscore-capable-proxies"/>. In such a case, the originally outer ETag Option is protected with the Group OSCORE Security Context shared between the proxy and the origin server, before transferring the message over the communication leg between the proxy and origin server.</t>
            </li>
          </ul>
          <t>]</t>
        </section>
      </section>
      <section anchor="sec-proxy-caching-validation-c-p">
        <name>Client-Proxy Revalidation with Group Requests</name>
        <t>A client <bcp14>MAY</bcp14> revalidate the full set of responses to a group request by leveraging the corresponding cache entries at the proxy. To this end, this document defines the new Group-ETag Option.</t>
        <t>The Group-ETag Option has the properties summarized in <xref target="_table-response-group-etag-option"/>, which extends Table 4 of <xref target="RFC7252"/>. The Group-ETag Option is elective, safe to forward, part of the cache key, and repeatable.</t>
        <t>The option is intended for group requests sent to a proxy to be forwarded to the servers in a CoAP group, as well as for the associated responses.</t>
        <table align="center" anchor="_table-response-group-etag-option">
          <name>The Group-ETag Option.                                                             C=Critical, U=Unsafe, N=NoCacheKey, R=Repeatable</name>
          <thead>
            <tr>
              <th align="left">No.</th>
              <th align="left">C</th>
              <th align="left">U</th>
              <th align="left">N</th>
              <th align="left">R</th>
              <th align="left">Name</th>
              <th align="left">Format</th>
              <th align="left">Length</th>
              <th align="left">Default</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TBD3</td>
              <td align="left"> </td>
              <td align="left"> </td>
              <td align="left"> </td>
              <td align="left">x</td>
              <td align="left">Group-ETag</td>
              <td align="left">opaque</td>
              <td align="left">1-8</td>
              <td align="left">(none)</td>
            </tr>
          </tbody>
        </table>
        <t>The Group-ETag Option has the same properties of the ETag Option defined in <xref section="5.10.6" sectionFormat="of" target="RFC7252"/>.</t>
        <t>The Group-ETag Option is of class U in terms of OSCORE processing (see <xref section="4.1" sectionFormat="of" target="RFC8613"/>).</t>
        <t>A proxy <bcp14>MUST NOT</bcp14> provide this form of validation if it is not in a position to serve a group request by using exclusively cached responses, i.e., without sending the group request to the servers in the CoAP group (see <xref target="sec-proxy-caching-freshness"/>).</t>
        <t>If the proxy supports this form of response revalidation, the following applies.</t>
        <ul spacing="normal">
          <li>
            <t>The proxy defines J as a joint set including all the cache entries currently storing fresh responses that satisfy a group request. A set J is "complete" if it includes a valid cache entry for each of the CoAP servers currently members of the CoAP group.</t>
          </li>
          <li>
            <t>When the set J becomes "complete", the proxy assigns it an entity-tag value. The proxy <bcp14>MUST</bcp14> update the current entity-tag value, when J is "complete" and one of its cache entry is updated.</t>
          </li>
          <li>
            <t>When forwarding to the client a 2.05 (Content) response to a GET or FETCH group request, the proxy <bcp14>MAY</bcp14> include one Group-ETag Option, in case the set J is "complete". Such a response <bcp14>MUST NOT</bcp14> include more than one Group-ETag Option. The option value specifies the entity-tag value currently associated with the set J.</t>
          </li>
        </ul>
        <t>When sending to the proxy a GET or FETCH request to be forwarded to the servers in the CoAP group, the client <bcp14>MAY</bcp14> include one or more Group-ETag Options. Each option specifies one entity-tag value, applicable to the set J of cache entries that can be hit by the group request.</t>
        <t>The proxy <bcp14>MAY</bcp14> perform the following actions, in case the group request produces a hit to the cache entry of each CoAP server currently member of the CoAP group, i.e., in case the set J associated with the group request is "complete".</t>
        <ul spacing="normal">
          <li>
            <t>The proxy checks whether the current entity-tag value of the set J matches with one of the entity-tag values specified in the Group-ETag Options of the unicast group request from the client.</t>
          </li>
          <li>
            <t>In case of positive match, the proxy replies with a single 2.03 (Valid) response. This response has no payload and <bcp14>MUST</bcp14> include one Group-ETag Option, specifying the current entity-tag value of the set J.</t>
          </li>
        </ul>
        <t>That is, the 2.03 (Valid) response from the proxy indicates to the client that the stored responses identified by the entity-tag given in the response's Group-ETag Option can be reused, after updating each of them as described in <xref section="5.9.1.3" sectionFormat="of" target="RFC7252"/>. In effect, the client can determine if any of the stored representations from the respective cache entries at the proxy is current, without needing to transfer any of them again.</t>
      </section>
      <section anchor="sec-group-caching">
        <name>Caching of End-To-End Protected Responses at Proxies</name>
        <t>When using Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/> to protect communications end-to-end between a client and multiple servers in the group, it is normally not possible for an intermediary proxy to effectively cache protected responses.</t>
        <t>In fact, when starting from the same plain CoAP message, different clients generate different protected requests to send on the wire. This prevents different clients to generate potential cache hits, and thus makes response caching at the proxy pointless.</t>
        <section anchor="sec-det-req">
          <name>Deterministic Requests to Achieve Cacheability</name>
          <t>For application scenarios that use secure group communication, it is still possible to achieve cacheability of responses at proxies, by using the approach defined in <xref target="I-D.amsuess-core-cachable-oscore"/> which is based on Deterministic Requests protected with the pairwise mode of Group OSCORE. This approach is limited to group requests that are safe (in the RESTful sense) to process and do not yield side effects at the server. As for any protected group request, it requires the clients and all the servers in the CoAP group to have already joined the correct OSCORE group.</t>
          <t>Starting from the same plain CoAP request, this allows different clients in the OSCORE group to deterministically generate a same request protected with Group OSCORE, which is sent to the proxy for being forwarded to the CoAP group. The proxy can now effectively cache the resulting responses from the servers in the CoAP group, since the same plain CoAP request will result again in the same Deterministic Request and thus will produce a cache hit.</t>
          <t>When caching of Group OSCORE secured responses is enabled at the proxy, the same as defined in <xref target="sec-proxy-caching"/> applies, with respect to cache entries and their lifetimes.</t>
          <t>Note that different Deterministic Requests result in different cache entries at the proxy. This includes the case where different plain group requests differ only in their set of ETag Options, as defined in <xref section="3.2.2" sectionFormat="of" target="I-D.ietf-core-groupcomm-bis"/>.</t>
          <t>That is, even though the servers would produce the same plain CoAP responses when replying to two different Deterministic Requests, those will result in different protected responses to each respective Deterministic Request, hence in different cache entries at the proxy.</t>
          <t>Thus, given a plain group request, a client needs to reuse the same set of ETag Options, in order to send that group request as a Deterministic Request that can actually produce a cache hit at the proxy. However, while this would prevent the caching at the proxy from being inefficient and unnecessarily redundant, it would also limit the flexibility of end-to-end response revalidation for a client.</t>
        </section>
        <section anchor="chap-sec-group-caching-validation">
          <name>Validation of Responses</name>
          <t>Response revalidation remains possible end-to-end between the client and the servers in the group, by means of including inner ETag Option(s) as defined in Sections <xref target="I-D.ietf-core-groupcomm-bis" section="3.2" sectionFormat="bare"/> and <xref target="I-D.ietf-core-groupcomm-bis" section="3.2.2" sectionFormat="bare"/> of <xref target="I-D.ietf-core-groupcomm-bis"/>.</t>
          <t>Furthermore, it remains possible for a client to attempt revalidating responses to a group request from a "complete" set of cache entries at the proxy, by using the Group-ETag Option as defined in <xref target="sec-proxy-caching-validation-c-p"/>.</t>
          <t>When directly interacting with the servers in the CoAP group to refresh its cache entries, the proxy cannot rely on response revalidation anymore. This applies to both the case where the request is addressed to a single server and sent to the related unicast URI (see <xref target="sec-proxy-caching-validation-p-s-unicast"/>) or instead is a group request addressed to the CoAP group and sent to the related group URI (see <xref target="sec-proxy-caching-validation-p-s"/>).</t>
          <t>[ TODO</t>
          <t>See the notes in <xref target="sec-proxy-caching-validation-p-s-unicast"/>.</t>
          <t>The following text can be used to replace the last paragraph above.</t>
          <t> </t>
          <t>When directly interacting with the servers in the CoAP group to refresh its cache entries, the proxy also remains able to perform response revalidation. That is, if a cached response included an outer ETag Option intended to the proxy, then the proxy can perform revalidation of the cached response, by making a request to the unicast URI addressed to a single server and sent to the related unicast URI (see <xref target="sec-proxy-caching-validation-p-s-unicast"/>) or a group request addressed to the CoAP group and sent to the related group URI (see <xref target="sec-proxy-caching-validation-p-s"/>).</t>
          <t>]</t>
        </section>
      </section>
    </section>
    <section anchor="sec-proxy-chain">
      <name>Chain of Proxies</name>
      <t>A client may be interested to access a resource at a group of origin servers which is reached through a chain of two or more proxies.</t>
      <t>That is, these proxies are configured into a chain, where each non-last proxy is configured to forward (group) requests to the next hop towards the origin servers. Also, each non-first proxy is configured to forward back responses to the previous hop proxy towards the origin client.</t>
      <t>This section specifies how the signaling protocol defined in <xref target="sec-description"/> is used in that setting. Except for the last proxy before the origin servers, every other proxy in the chain takes the role of client with respect to the next hop towards the origin servers. Also, every proxy in the chain except the first takes the role of server towards the previous proxy closer to the origin client.</t>
      <t>Accordingly, possible caching of responses at each proxy works as defined in <xref target="sec-proxy-caching"/> and <xref target="sec-group-caching"/>. Also, possible revalidation of responses cached ad each proxy and based on the Group-ETag Option works as defined in <xref target="sec-proxy-caching-validation-c-p"/> and <xref target="chap-sec-group-caching-validation"/>.</t>
      <t>The requirements REQ1 and REQ2 defined in <xref target="sec-objectives"/> <bcp14>MUST</bcp14> be fulfilled for each proxy in the chain. That is, every proxy in the chain has to be explicitly configured with an allow-list that allows proxied group requests from specific senders, and <bcp14>MUST</bcp14> identify those senders upon receiving their group request. For the first proxy in the chain, that sender is the origin client. For each other proxy in the chain, that sender is the previous hop proxy closer to the origin client. In either case, a proxy can identify the sender of a group request by the same means mentioned in <xref target="sec-objectives"/>.</t>
      <section anchor="sec-proxy-chain-request-processing">
        <name>Request Processing at the Proxy</name>
        <t>Upon receiving a group request to be forwarded to a CoAP group URI, a proxy proceeds as follows.</t>
        <t>If the proxy is the last one in the chain, i.e., it is the last hop before the origin servers, the proxy performs the steps defined in <xref target="ssec-req-proc-proxy"/>, with no modifications.</t>
        <t>Otherwise, the proxy performs the steps defined in <xref target="ssec-req-proc-proxy"/>, with the following differences.</t>
        <ul spacing="normal">
          <li>
            <t>At steps 1-3, "client" refers to the origin client for the first proxy in the chain; or to the previous hop proxy closer to the origin client, otherwise.</t>
          </li>
          <li>
            <t>At step 4, the proxy rather performs the following actions.  </t>
            <ol spacing="normal" type="1"><li>
                <t>The proxy retrieves the value T' from the Multicast-Timeout Option, and does not remove the option.</t>
              </li>
              <li>
                <t>In case T' &gt; 0, the proxy picks an amount of time T it is fine to wait for before freeing up its local Token value to use with the next hop towards the origin servers. To this end, the proxy <bcp14>MUST</bcp14> follow what is defined at step 2 of <xref target="ssec-req-send-steps"/> for the origin client, with the following differences.      </t>
                <ul spacing="normal">
                  <li>
                    <t>T <bcp14>MUST</bcp14> be greater than the retrieved value T', i.e., T' &lt; T.</t>
                  </li>
                  <li>
                    <t>The worst-case message processing time takes into account all the next hops towards the origin servers, as well as the origin servers themselves.</t>
                  </li>
                  <li>
                    <t>The worst-case round-trip delay takes into account all the legs between the proxy and the origin servers.</t>
                  </li>
                </ul>
              </li>
              <li>
                <t>In case T' &gt; 0, the proxy replaces the value of the Multicast-Timeout Option with a new value T'', such that:      </t>
                <ul spacing="normal">
                  <li>
                    <t>T'' &lt; T. The difference (T - T'') should be at least the expected worst-case round-trip time between the proxy and the next hop towards the origin servers.</t>
                  </li>
                  <li>
                    <t>T'' &lt; T'. The difference (T' - T'') should be at least the expected worst-case round-trip time between the proxy and the (previous hop proxy closer to the) origin client.</t>
                  </li>
                </ul>
                <t>
If the proxy is not able to determine a value T'' that fulfills both the requirements above, the proxy <bcp14>MUST</bcp14> stop processing the request and <bcp14>MUST</bcp14> respond with a 5.05 (Proxying Not Supported) error response to the (previous hop proxy closer to the) origin client. The proxy <bcp14>SHOULD</bcp14> include a Multicast-Timeout Option, set to the minimum value T' that would be acceptable in the Multicast-Timeout Option of a group request to forward.      </t>
                <t>
If the proxy is the first one in the chain, then the error response is sent to the origin client. Upon receiving the error response, the origin client <bcp14>MAY</bcp14> send an updated group request to the same first proxy in the chain. In the updated request, the Multicast-Timeout Option <bcp14>SHOULD</bcp14> specify a value T' such that: it is greater than the one specified in the original group request; and it is greater than or equal to the one specified in the error response (if present therein).      </t>
                <t>
Otherwise, upon receiving the error response, any other proxy in the chain <bcp14>MAY</bcp14> send an updated group request to the next hop towards the origin servers. In the updated group request, the Multicast-Timeout Option <bcp14>MUST</bcp14> specify a value T' such that: it is greater than the one specified in the previous forwarded request; and it is greater than or equal to the one specified in the error response (if present therein). If the proxy does not send an updated group request, the proxy <bcp14>MUST</bcp14> also send a 5.05 (Proxying Not Supported) error response to the previous hop proxy closer to the origin client. Like the received one, also this error response <bcp14>SHOULD</bcp14> include a Multicast-Timeout Option, set to the minimum value T' acceptable by the proxy sending the error response.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>At step 5, the proxy forwards the request to the next hop towards the origin servers.</t>
          </li>
          <li>
            <t>At step 6, the proxy sets a timeout with the value T' retrieved from the
Multicast-Timeout Option of the request received from the (previous hop proxy closer to the) origin client.  </t>
            <t>
In case T' &gt; 0, the proxy will ignore responses to the forwarded group request coming from the (next hop towards the) origin servers, if received after the timeout expiration, with the exception of Observe notifications (see <xref target="ssec-resp-proc-proxy"/>).  </t>
            <t>
In case T' = 0, the proxy will ignore all responses to the forwarded group request coming from the (next hop towards the) origin servers.</t>
          </li>
        </ul>
        <section anchor="sec-proxy-chain-request-processing-observe">
          <name>Supporting Observe</name>
          <t>When using CoAP Observe <xref target="RFC7641"/>, what is defined in <xref target="ssec-req-proc-proxy-observe"/> applies for the last proxy in the chain, i.e., the last hop before the origin servers.</t>
          <t>Any other proxy in the chain acts as a client and registers its own interest to observe the target resource with the next hop towards the origin servers, as per <xref section="5" sectionFormat="of" target="RFC7641"/>.</t>
        </section>
      </section>
      <section anchor="sec-proxy-chain-response-processing">
        <name>Response Processing at the Proxy</name>
        <t>Upon receiving a response matching with the group request before the amount of time T' has elapsed, the proxy proceeds as follows.</t>
        <t>If the proxy is the last one in the chain, i.e., it is the last hop before the origin servers, the proxy performs the steps defined in <xref target="ssec-resp-proc-proxy"/> if it is a forward-proxy or in <xref target="sec-reverse-proxies-proxy-side"/> if it is a reverse-proxy, with no modifications.</t>
        <t>Otherwise, the proxy performs the steps defined in <xref target="ssec-resp-proc-proxy"/>, with the following differences.</t>
        <ul spacing="normal">
          <li>
            <t>In any of the two following cases, the proxy skips step 1, hence the proxy <bcp14>MUST NOT</bcp14> remove, alter, or replace the Reply-From Option.  </t>
            <ul spacing="normal">
              <li>
                <t>The chain is composed of forward-proxies.</t>
              </li>
              <li>
                <t>The chain is composed of reverse-proxies, and the last reverse-proxy (in fact, the whole chain) stands in only for the whole group of servers, but not for the individual servers in the group (see <xref target="sec-reverse-proxies-proxy-side"/>).</t>
              </li>
            </ul>
            <t>
This ensures that, when receiving a response to a group request and consuming the Reply-From Option, the origin client can retrieve addressing information that is directly associated with the origin server that originated the response.</t>
          </li>
          <li>
            <t>At step 1, the following applies in case the chain is composed of reverse-proxies, and the last reverse-proxy (in fact, the whole chain) stands in both for the whole group of servers and for the individual origin servers in the group (see <xref target="sec-reverse-proxies-proxy-side"/>).  </t>
            <t>
In the Reply-From Option, the proxy <bcp14>MUST</bcp14> replace the old value TARGET_OLD. The new value TARGET_NEW specifies addressing information directly associated with the proxy. The new value is such that, when receiving a unicast request that has been sent according to what is specified in TARGET_NEW, the proxy forwards the request according to what was specified in TARGET_OLD, i.e., to the next hop towards the origin server that originated the response.  </t>
            <t>
This ensures that, when receiving a response to a group request and consuming the Reply-From Option, the origin client can retrieve addressing information that is directly associated with the first reverse-proxy in the chain, i.e., with the next hop towards the origin server that originated the response.</t>
          </li>
          <li>
            <t>At step 2, "client" refers to the origin client for the first proxy in the chain; or to the previous hop proxy closer to the origin client, otherwise.</t>
          </li>
        </ul>
        <t>As to the possible reception of multiple responses to the same group request from the same (next hop proxy towards the) origin server, the same as defined in <xref target="ssec-resp-proc-proxy-steps"/> applies. That is, as long as the proxy forwards responses to a group request back to the (previous hop proxy closer to the) origin client, the proxy <bcp14>MUST</bcp14> follow the steps above and forward also such multiple responses "as they come".</t>
        <t>Upon timeout expiration, i.e., T seconds after having forwarded the group request to the next hop towards the origin servers, the proxy frees up its local Token value associated with that request. Thus, following late responses to the same group request will be discarded and not forwarded back to the (previous hop proxy closer to the) origin client.</t>
        <section anchor="sec-proxy-chain-response-processing-observe">
          <name>Supporting Observe</name>
          <t>When using CoAP Observe <xref target="RFC7641"/>, what is defined in <xref target="ssec-resp-proc-proxy-observe"/> applies for the last proxy in the chain, i.e., the last hop before the origin servers.</t>
          <t>As to any other proxy in the chain, the following applies.</t>
          <ul spacing="normal">
            <li>
              <t>The proxy acts as a client registered with the next hop towards the origin servers, as described earlier in <xref target="sec-proxy-chain-request-processing-observe"/>.</t>
            </li>
            <li>
              <t>The proxy takes the role of a server when forwarding notifications from the next hop towards the origin servers back to the (previous hop proxy closer to the) origin client, as per <xref section="5" sectionFormat="of" target="RFC7641"/>.</t>
            </li>
            <li>
              <t>The proxy frees up its Token value used for a group observation only if, after the timeout expiration, no 2.xx (Success) responses matching with the group request and also including an Observe Option have been received from the next hop towards the origin servers. Otherwise, after the timeout expiration and as long as the observation for the target resource of the group request is active with the next hop towards the origin servers in the group, notifications from that hop are forwarded back to the (previous hop proxy closer to the) origin client, as defined in <xref target="sec-proxy-chain-response-processing"/>.</t>
            </li>
            <li>
              <t>The proxy <bcp14>SHOULD</bcp14> regularly verify that the (previous hop proxy closer to the) origin client is still interested in receiving observe notifications for a group observation. To this end, the proxy can rely on the same approach defined in <xref section="4.5" sectionFormat="of" target="RFC7641"/>.</t>
            </li>
          </ul>
        </section>
      </section>
    </section>
    <section anchor="sec-http-to-coap-proxies">
      <name>HTTP-to-CoAP Proxies</name>
      <t>This section defines the components needed to use the signaling protocol specified in this document, when an HTTP client wishes to send a group request to the servers of a CoAP group, via an HTTP-to-CoAP cross-proxy.</t>
      <t>The following builds on the mapping of the CoAP request/response model to HTTP and vice versa as defined in <xref section="10" sectionFormat="of" target="RFC7252"/>, as well as on the additional details about the HTTP-to-CoAP mapping defined in <xref target="RFC8075"/>.</t>
      <t>Furthermore, the components defined in <xref section="11" sectionFormat="of" target="RFC8613"/> are also used to map and transport OSCORE-protected messages over HTTP. This allows an HTTP client to use Group OSCORE end-to-end with the servers in the CoAP group.</t>
      <section anchor="sec-multicast-timeout-header">
        <name>The HTTP Multicast-Timeout Header Field</name>
        <t>The HTTP Multicast-Timeout header field (see <xref target="iana-message-headers"/>) is used for carrying the content otherwise specified in the CoAP Multicast-Timeout Option defined in <xref target="sec-multicast-timeout-option"/>.</t>
        <t>Using the Augmented Backus-Naur Form (ABNF) notation of <xref target="RFC5234"/> and including the core ABNF syntax rule DIGIT (decimal digits) defined by that specification, the HTTP Multicast-Timeout header field value is as follows.</t>
        <t>Multicast-Timeout = *DIGIT</t>
        <t>The empty header field is equivalent to the header field conveying the value 0.</t>
        <t>When translating a CoAP message into an HTTP message, the HTTP Multicast-Timeout header field is set with the content of the CoAP Multicast-Timeout Option, or is left empty in case the option is empty.</t>
        <t>When translating an HTTP message into a CoAP message, the CoAP Multicast-Timeout Option is set with the content of the HTTP Multicast-Timeout header field, or is left empty in case the header field is empty.</t>
      </section>
      <section anchor="sec-reply-from-header">
        <name>The HTTP Reply-From Header Field</name>
        <t>The HTTP Reply-From header field (see <xref target="iana-message-headers"/>) is used for carrying the content otherwise specified in the CoAP Reply-From Option defined in <xref target="sec-reply-from-option"/>.</t>
        <t>Using the Augmented Backus-Naur Form (ABNF) notation of <xref target="RFC5234"/> and including the following core ABNF syntax rules defined by that specification: ALPHA (letters) and DIGIT (decimal digits), the HTTP Reply-From header field value is as follows.</t>
        <t>reply-from-char = ALPHA / DIGIT / "-" / "_"</t>
        <t>Reply-From = 2*reply-from-char</t>
        <t>When translating a CoAP message into an HTTP message, the HTTP Reply-From header field is set to the value of the CoAP Reply-From Option in base64url (see <xref section="5" sectionFormat="of" target="RFC4648"/>) encoding without padding. Implementation notes for this encoding are given in <xref section="C" sectionFormat="of" target="RFC7515"/>.</t>
        <t>When translating an HTTP message into a CoAP message, the CoAP Reply-From Option is set to the value of the HTTP Reply-From header field decoded from base64url (see <xref section="5" sectionFormat="of" target="RFC4648"/>) without padding. Implementation notes for this encoding are given in <xref section="C" sectionFormat="of" target="RFC7515"/>.</t>
      </section>
      <section anchor="sec-group-etag-header">
        <name>The HTTP Group-ETag Header Field</name>
        <t>The HTTP Group-ETag header field (see <xref target="iana-message-headers"/>) is used for carrying the content otherwise specified in the CoAP Group-ETag Option defined in <xref target="sec-proxy-caching-validation-c-p"/>.</t>
        <t>Using the Augmented Backus-Naur Form (ABNF) notation of <xref target="RFC5234"/> and including the following core ABNF syntax rules defined by that specification: ALPHA (letters) and DIGIT (decimal digits), the HTTP Group-ETag header field value is as follows.</t>
        <t>group-etag-char = ALPHA / DIGIT / "-" / "_"</t>
        <t>Group-ETag = 2*group-etag-char</t>
        <t>When translating a CoAP message into an HTTP message, the HTTP Group-ETag header field is set to the value of the CoAP Group-ETag Option in base64url (see <xref section="5" sectionFormat="of" target="RFC4648"/>) encoding without padding. Implementation notes for this encoding are given in <xref section="C" sectionFormat="of" target="RFC7515"/>.</t>
        <t>When translating an HTTP message into a CoAP message, the CoAP Group-ETag Option is set to the value of the HTTP Group-ETag header field decoded from base64url (see <xref section="5" sectionFormat="of" target="RFC4648"/>) without padding. Implementation notes for this encoding are given in <xref section="C" sectionFormat="of" target="RFC7515"/>.</t>
      </section>
      <section anchor="sec-cross-proxies-client-req">
        <name>Request Sending at the Client</name>
        <t>The client proceeds according to the following steps.</t>
        <ol spacing="normal" type="1"><li>
            <t>The client prepares an HTTP request to send to the proxy via IP unicast, and to be forwarded by the proxy to the targeted group of CoAP servers over IP multicast. With reference to <xref section="5" sectionFormat="of" target="RFC8075"/>, the request is addressed to a Hosting HTTP URI, such that the proxy can extract the Target CoAP URI as the group URI where to forward the request.</t>
          </li>
          <li>
            <t>The client determines the amount of time T that it is fine to wait for a response to the request from the proxy. Then, the client determines the amount of time T' &lt; T, where the difference (T - T') should be at least the expected worst-case round-trip time between the client and the proxy.</t>
          </li>
          <li>
            <t>If Group OSCORE is used end-to-end between the client and the servers, the client translates the HTTP request into a CoAP request, as per <xref target="RFC8075"/>. Then, the client protects the resulting CoAP request by using Group OSCORE, as defined in <xref target="I-D.ietf-core-oscore-groupcomm"/>. Finally, the protected CoAP request is mapped to HTTP as defined in <xref section="11.2" sectionFormat="of" target="RFC8613"/>. Later on, the resulting HTTP request <bcp14>MUST</bcp14> be sent in compliance with the rules in <xref section="11.1" sectionFormat="of" target="RFC8613"/>.</t>
          </li>
          <li>
            <t>The client includes the HTTP Multicast-Timeout header field in the request, specifying T' as its value. The client can specify T' = 0, thus indicating to be not interested in receiving responses from the origin servers through the proxy.</t>
          </li>
          <li>
            <t>If the client wishes to revalidate responses to a previous group request from the corresponding cache entries at the proxy (see <xref target="sec-proxy-caching-validation-c-p"/>), the client includes one or multiple HTTP Group-ETag header fields in the request (see <xref target="sec-group-etag-header"/>), each specifying an entity-tag value like they would in a corresponding CoAP Group E-Tag Option.</t>
          </li>
          <li>
            <t>The client sends the request to the proxy, as a unicast HTTP message. In particular, the client protects the request according to the security association it has with the proxy.</t>
          </li>
        </ol>
      </section>
      <section anchor="sec-cross-proxies-proxy-req">
        <name>Request Processing at the Proxy</name>
        <t>The proxy translates the HTTP request to a CoAP request, as per <xref target="RFC8075"/>. The additional rules for HTTP messages with the HTTP Multicast-Timeout header field and HTTP Group-ETag header field are defined in <xref target="sec-multicast-timeout-header"/> and <xref target="sec-group-etag-header"/>, respectively.</t>
        <t>Once translated the HTTP request into a CoAP request, the proxy <bcp14>MUST</bcp14> perform the steps defined in <xref target="ssec-req-proc-proxy"/>. If the proxy supports caching of responses, it can serve the unicast request also by using cached responses as per <xref target="sec-proxy-caching"/>, considering the CoAP request above as the potentially matching request.</t>
        <t>In addition, in case the HTTP Multicast-Timeout header field had value 0, the proxy replies to the client with an HTTP response with status code 204 (No Content), right after forwarding the group request to the group of servers.</t>
      </section>
      <section anchor="sec-cross-proxies-proxy-resp">
        <name>Response Processing at the Proxy</name>
        <t>Upon receiving a CoAP response matching with the group request before the amount of time T' &gt; 0 has elapsed, the proxy includes the Reply-From Option in the response, as per step 1 of <xref target="ssec-resp-proc-proxy-steps"/>. Then, the proxy translates the CoAP response to an HTTP response, as per <xref section="10.1" sectionFormat="of" target="RFC7252"/> and <xref target="RFC8075"/>, as well as <xref section="11.2" sectionFormat="of" target="RFC8613"/> if Group OSCORE is used end-to-end between the client and servers. The additional rules for CoAP messages specifying the Reply-From Option are defined in <xref target="sec-reply-from-header"/>.</t>
        <t>After that, the proxy stores the resulting HTTP response until the timeout with original value T' &gt; 0 expires. If, before then, the proxy receives another response to the same group request from the same CoAP server, the proxy performs the steps above, and stores the resulting HTTP response by superseding the currently stored one from that server.</t>
        <t>When the timeout expires, if no responses have been received from the servers, the proxy replies to the client's original unicast group request with an HTTP response with status code 204 (No Content).</t>
        <t>Otherwise, the proxy relays to the client all the collected and stored HTTP responses to the group request, according to the following steps.</t>
        <ol spacing="normal" type="1"><li>
            <t>The proxy prepares a single HTTP batch response, which <bcp14>MUST</bcp14> have 200 (OK) status code and <bcp14>MUST</bcp14> have its HTTP Content-Type header field with value multipart/mixed <xref target="RFC2046"/>.</t>
          </li>
          <li>
            <t>For each stored individual HTTP response RESP, the proxy prepares a corresponding batch part to include in the HTTP batch response, such that:  </t>
            <ul spacing="normal">
              <li>
                <t>The batch part has its own HTTP Content-Type header field with value application/http <xref target="RFC9112"/>.</t>
              </li>
              <li>
                <t>The body of the batch part is the individual HTTP response RESP, including its status code, headers, and body.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>The proxy includes each batch part prepared at step 2 in the HTTP batch response.</t>
          </li>
          <li>
            <t>The proxy replies to the client's original unicast group request, by sending the HTTP batch response. When doing so, the proxy protects the response according to the security association it has with the client.</t>
          </li>
        </ol>
      </section>
      <section anchor="sec-cross-proxies-client-resp">
        <name>Response Processing at the Client</name>
        <t>When it receives an HTTP response as a reply to the original unicast group request, the client proceeds as follows.</t>
        <ol spacing="normal" type="1"><li>
            <t>The client decrypts and verifies the response, according to the security association it has with the proxy.</t>
          </li>
          <li>
            <t>From the resulting HTTP batch response, the client extracts the different batch parts.</t>
          </li>
          <li>
            <t>From each of the extracted batch parts, the client extracts the body as one of the individual HTTP response RESP.</t>
          </li>
          <li>
            <t>For each individual HTTP response RESP, the client performs the following steps.  </t>
            <ul spacing="normal">
              <li>
                <t>If Group OSCORE is used end-to-end between the client and servers, the client translates the HTTP response RESP into a CoAP response, as per <xref section="11.3" sectionFormat="of" target="RFC8613"/>. Then, the client decrypts and verifies the resulting CoAP response by using Group OSCORE, as defined in <xref target="I-D.ietf-core-oscore-groupcomm"/>. Finally, the decrypted CoAP response is mapped to HTTP as per <xref section="10.2" sectionFormat="of" target="RFC7252"/> as well as <xref target="RFC8075"/>. The additional rules for HTTP messages with the HTTP Reply-From header field are defined in <xref target="sec-reply-from-header"/>.</t>
              </li>
              <li>
                <t>The client delivers to the application the individual HTTP response.</t>
              </li>
            </ul>
            <t>
Similarly to step 3 in <xref target="ssec-resp-proc-client-steps"/>, the client identifies the origin server that originated the CoAP response corresponding to the HTTP response RESP, by means of the addressing information specified as value of the HTTP Reply-From header field. This allows the client to distinguish different individual HTTP responses as corresponding to different CoAP responses from the servers in the CoAP group.</t>
          </li>
        </ol>
      </section>
      <section anchor="sec-cross-proxies-example">
        <name>Example</name>
        <t>The examples in this section build on <xref target="sec-workflow-example"/>, with the difference that the origin client C is an HTTP client and the proxy P is an HTTP-to-CoAP cross-proxy. The examples are simply illustrative and are not to be intended as a test vector.</t>
        <t>The following is an example of unicast group request sent by C to P. The URI mapping and notation are based on the "Simple Form" defined in <xref section="5.4.1" sectionFormat="of" target="RFC8075"/>.</t>
        <artwork><![CDATA[
POST https://proxy.url/hc/?target_uri=coap://G_ADDR:G_PORT/ HTTP/1.1
Content-Length: <REQUEST_TOTAL_CONTENT_LENGTH>
Content-Type: text/plain
Multicast-Timeout: 60

Body: Do that!
]]></artwork>
        <t> </t>
        <t>The following is an example of HTTP batch response sent by P to C, as a reply to the client's original unicast group request</t>
        <t>For readability, base64url(cri'X') denotes the base64url encoding of cri'X' without padding (see <xref section="5" sectionFormat="of" target="RFC4648"/>), and cri'X' denotes the byte serialization of a CRI corresponding to the URI X.</t>
        <artwork><![CDATA[
HTTP/1.1 200 OK
Content-Length: <BATCH_RESPONSE_TOTAL_CONTENT_LENGTH>
Content-Type: multipart/mixed; boundary=batch_foo_bar

--batch_foo_bar
Content-Type: application/http

HTTP/1.1 200 OK
Content-Type: text/plain
Content-Length: <INDIVIDUAL_RESPONSE_1_CONTENT_LENGTH>
Reply-From: base64url(cri'coap://S1_ADDR:G_PORT')

Body: Done!
--batch_foo_bar
Content-Type: application/http

HTTP/1.1 200 OK
Content-Type: text/plain
Content-Length: <INDIVIDUAL_RESPONSE_2_CONTENT_LENGTH>
Reply-From: base64url(cri'coap://S2_ADDR:S2_PORT')

Body: More than done!
--batch_foo_bar--
]]></artwork>
      </section>
      <section anchor="sec-resp-streaming">
        <name>Streamed Delivery of Responses to the Client</name>
        <t>[ TODO</t>
        <t>The proxy might still be able to forward back individual responses to the client in a streamed fashion.</t>
        <t>Individual responses can be forwarded back one by one as they come (like a CoAP-to-CoAP proxy does), or as soon as a certain amount of them has been received from the servers.</t>
        <t>This can be achieved by combining the Content-Type multipart/mixed used in the previous sections with the Transfer-Coding "chunked" specified in RFC 9112.</t>
        <t>The above applies to HTTP 1.1, while HTTP/2 has its own mechanisms for data streaming.</t>
        <t>]</t>
      </section>
      <section anchor="sec-reverse-proxies-http-to-coap">
        <name>Reverse-Proxies</name>
        <t>In case an HTTP-to-CoAP proxy acts specifically as a reverse-proxy, the same principles defined in <xref target="sec-reverse-proxies"/> apply, as specified below.</t>
        <section anchor="sec-reverse-proxies-client-side-http">
          <name>Processing on the Client Side</name>
          <t>If an HTTP client sends a request intended to a group of servers and is aware of actually communicating with a reverse-proxy, then the client <bcp14>MUST</bcp14> perform the steps defined in <xref target="sec-cross-proxies-client-req"/>. In particular, this results in a request sent to the proxy including a Multicast-Timeout header field.</t>
          <t>The client processes the HTTP response forwarded back by the proxy as defined in <xref target="sec-cross-proxies-client-resp"/>. If the client wishes to send a follow-up unicast request intended only to one of the CoAP servers that originated the response, the same concepts defined in <xref target="sec-reverse-proxies-client-side"/> apply to the composition of HTTP requests.</t>
        </section>
        <section anchor="sec-reverse-proxies-proxy-side-http">
          <name>Processing on the Proxy Side</name>
          <t>If the proxy receives a request and determines that it should be forwarded to a group of servers over IP multicast, then the same as defined in <xref target="sec-cross-proxies-proxy-req"/> applies, with the following difference.</t>
          <ul spacing="normal">
            <li>
              <t>Once translated the HTTP request into a CoAP request, the proxy performs what is defined in <xref target="sec-reverse-proxies-proxy-side"/>.</t>
            </li>
          </ul>
          <t>The proxy processes the HTTP response sent to the client as defined in <xref target="sec-cross-proxies-proxy-resp"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="sec-security-considerations">
      <name>Security Considerations</name>
      <t>The security considerations from <xref target="RFC7252"/>, <xref target="I-D.ietf-core-groupcomm-bis"/>, <xref target="RFC8613"/>, and <xref target="I-D.ietf-core-oscore-groupcomm"/> hold for this document.</t>
      <t>When a chain of proxies is used (see <xref target="sec-proxy-chain"/>), the secure communication between any two adjacent hops is independent of that between any other two adjacent hops.</t>
      <t>When Group OSCORE is used for end-to-end secure group communication between the origin client and the origin servers, this security association is unaffected by the possible presence of a proxy or a chain of proxies.</t>
      <t>Furthermore, the following additional considerations hold.</t>
      <section anchor="sec-security-considerations-client-auth">
        <name>Client Authentication</name>
        <t>As per the requirement REQ2 (see <xref target="sec-objectives"/>), the client has to authenticate to the proxy when sending a group request to forward. This leverages an established security association between the client and the proxy, which the client uses to protect the group request before sending it to the proxy.</t>
        <t>If the group request is (also) protected end-to-end between the client and the servers using the group mode of Group OSCORE, the proxy can act as external signature checker (see <xref section="8.5" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>) and authenticate the client by successfully verifying the signature embedded in the group request. However, this requires the proxy to store, for each client to authenticate, the authentication credential that the client uses in the OSCORE group and the public key included therein, and to also store the authentication credential of the Group Manager responsible for the OSCORE group. This in turn would require a form of active synchronization between the proxy and the Group Manager for that group <xref target="I-D.ietf-core-oscore-groupcomm"/>.</t>
        <t>Nevertheless, the client and the proxy <bcp14>SHOULD</bcp14> still rely on a full-fledged pairwise secure association. In addition to ensuring the integrity of group requests sent to the proxy (see <xref target="sec-security-considerations-opt1"/>, <xref target="sec-security-considerations-opt2"/>, and <xref target="sec-security-considerations-opt3"/>), this prevents the proxy from forwarding replayed group requests with a valid signature, as possibly injected by an active, on-path adversary.</t>
        <t>The same considerations apply when a chain of proxies is used (see <xref target="sec-proxy-chain"/>), with each proxy but the last one in the chain acting as client with the next hop towards the origin servers.</t>
      </section>
      <section anchor="sec-security-considerations-opt1">
        <name>Multicast-Timeout Option</name>
        <t>The Multicast-Timeout Option is of class U for OSCORE <xref target="RFC8613"/>. Hence, also when Group OSCORE is used between the client and the servers <xref target="I-D.ietf-core-oscore-groupcomm"/>, a proxy is able to access the option value and retrieve the timeout value T', as well as to remove the option altogether before forwarding the group request to the servers. When a chain of proxies is used (see <xref target="sec-proxy-chain"/>), this also allows each proxy but the last one in the chain to update the option value, as an indication for the next hop towards the origin servers (see <xref target="sec-proxy-chain-request-processing"/>).</t>
        <t>The security association between the client and the proxy <bcp14>MUST</bcp14> provide message integrity, so that further intermediaries between the two as well as on-path active adversaries are not able to undetectably remove the option or alter its content, before the group request reaches the proxy. Removing the option would otherwise result in not forwarding the group request to the servers. Instead, altering the option content would result in the proxy accepting and forwarding back responses for an amount of time different than the one actually indicated by the client.</t>
        <t>The security association between the client and the proxy <bcp14>SHOULD</bcp14> also provide message confidentiality. Otherwise, any further intermediaries between the two as well as any on-path passive adversaries would be able to simply access the option content, and thus learn for how long the client is willing to receive responses from the servers in the group via the proxy. This may in turn be used by an on-path active adversary to perform a more efficient, selective suppression of responses from the servers.</t>
        <t>When the client protects the unicast request sent to the proxy using OSCORE (see <xref target="I-D.ietf-core-oscore-capable-proxies"/>) and/or (D)TLS, both message integrity and message confidentiality are achieved in the leg between the client and the proxy.</t>
        <t>The same considerations above about security associations apply when a chain of proxies is used (see <xref target="sec-proxy-chain"/>), with each proxy but the last one in the chain acting as client with the next hop towards the origin servers.</t>
      </section>
      <section anchor="sec-security-considerations-opt2">
        <name>Reply-From Option</name>
        <t>The Reply-From Option is of class U for OSCORE <xref target="RFC8613"/>. Hence, also when Group OSCORE is used between the client and the servers <xref target="I-D.ietf-core-oscore-groupcomm"/>, the proxy that has forwarded the group request to the servers is able to include the option into a server response, before forwarding this response back to the (previous hop proxy closer to the) origin client.</t>
        <t>Since the security association between the client and the proxy provides message integrity, any further intermediaries between the two as well as any on-path active adversaries are not able to undetectably remove the Reply-From Option from a forwarded server response. This ensures that the client can correctly distinguish the different responses and identify their corresponding origin server.</t>
        <t>When the proxy protects the response forwarded back to the client using OSCORE (see <xref target="I-D.ietf-core-oscore-capable-proxies"/>) and/or (D)TLS, message integrity is achieved in the leg between the client and the proxy.</t>
        <t>The same considerations above about security associations apply when a chain of proxies is used (see <xref target="sec-proxy-chain"/>), with each proxy but the last one in the chain acting as client with the next hop towards the origin servers.</t>
      </section>
      <section anchor="sec-security-considerations-opt3">
        <name>Group-ETag Option</name>
        <t>The Group-ETag Option is of class U for OSCORE <xref target="RFC8613"/>. Hence, also when Group OSCORE is used between the client and the servers <xref target="I-D.ietf-core-oscore-groupcomm"/>, a proxy is able to access the option value and use it to possibly perform response revalidation at its cache entries associated with the servers in the CoAP group, as well as to remove the option altogether before forwarding the group request to the servers. When a chain of proxies is used (see <xref target="sec-proxy-chain"/>), this also allows each proxy but the last one in the chain to update the option value, to possibly ask the next hop towards the origin servers to perform response revalidation at its cache entries.</t>
        <t>The security association between the client and the proxy <bcp14>MUST</bcp14> provide message integrity, so that further intermediaries between the two as well as on-path active adversaries are not able to remove the option or alter its content, before the group request reaches the proxy. Removing the option would otherwise result in the proxy not performing response revalidation at its cache entries associated with the servers in the CoAP group, even though that was what the client asked for.</t>
        <t>Altering the option content in a group request would result in the proxy replying with 2.05 (Content) responses conveying the full resource representations from its cache entries, rather than with a single 2.03 (Valid) response. Instead, altering the option content in a 2.03 (Valid) or 2.05 (Content) response would result in the client wrongly believing that the already stored or the just received representation, respectively, is also the current one, as per the entity value of the tampered Group-ETag Option.</t>
        <t>The security association between the client and the proxy <bcp14>SHOULD</bcp14> also provide message confidentiality. Otherwise, any further intermediaries between the two as well as any on-path passive adversaries would be able to simply access the option content, and thus learn the rate and pattern according to which the group resource in question changes over time, as inferable from the entity values read over time.</t>
        <t>When the client protects the unicast request sent to the proxy using OSCORE (see <xref target="I-D.ietf-core-oscore-capable-proxies"/>) and/or (D)TLS, both message integrity and message confidentiality are achieved in the leg between the client and the proxy.</t>
        <t>The same considerations above about security associations apply when a chain of proxies is used (see <xref target="sec-proxy-chain"/>), with each proxy but the last one in the chain acting as client with the next hop towards the origin servers.</t>
        <t>When caching of Group OSCORE secured responses is enabled at the proxy, the same as defined in <xref target="sec-proxy-caching"/> applies, with respect to cache entries and the way they are maintained.</t>
      </section>
      <section anchor="sec-http-to-coap-proxies-sec-con">
        <name>HTTP-to-CoAP Proxies</name>
        <t>Consistently with what is discussed in <xref target="sec-security-considerations-client-auth"/>, an HTTP client has to authenticate to the HTTP-to-CoAP proxy, and they <bcp14>SHOULD</bcp14> rely on a full-fledged pairwise secure association. This can rely on a TLS <xref target="RFC8446"/> channel as also recommended in <xref section="12.1" sectionFormat="of" target="RFC8613"/> for when OSCORE is used with HTTP, or on a pairwise OSCORE <xref target="RFC8613"/> Security Context shared between the client and the proxy as defined in <xref target="I-D.ietf-core-oscore-capable-proxies"/>.</t>
        <t>[ TODO</t>
        <t>Revisit security considerations from <xref target="RFC8075"/></t>
        <t>]</t>
      </section>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>This document has the following actions for IANA.</t>
      <t>Note to RFC Editor: Please replace all occurrences of "[RFC-XXXX]" with the RFC number of this specification and delete this paragraph.</t>
      <section anchor="iana-coap-options">
        <name>CoAP Option Numbers Registry</name>
        <t>IANA is asked to enter the following option numbers to the "CoAP Option Numbers" registry within the "Constrained RESTful Environments (CoRE) Parameters" registry group.</t>
        <table align="center" anchor="tab-iana-coap-option-numbers">
          <name>Registrations in the CoAP Option Numbers Registry</name>
          <thead>
            <tr>
              <th align="left">Number</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TBD1</td>
              <td align="left">Multicast-Timeout</td>
              <td align="left">[RFC-XXXX]</td>
            </tr>
            <tr>
              <td align="left">TBD2</td>
              <td align="left">Reply-From</td>
              <td align="left">[RFC-XXXX]</td>
            </tr>
            <tr>
              <td align="left">TBD3</td>
              <td align="left">Group-ETag</td>
              <td align="left">[RFC-XXXX]</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="iana-message-headers">
        <name>Hypertext Transfer Protocol (HTTP) Field Name Registry</name>
        <t>IANA is asked to enter the following HTTP header fields to the "Hypertext Transfer Protocol (HTTP) Field Name" registry.</t>
        <table align="center" anchor="tab-iana-http-field-names">
          <name>Registrations in the Hypertext Transfer Protocol (HTTP) Field Name Registry</name>
          <thead>
            <tr>
              <th align="left">Field Name</th>
              <th align="left">Template</th>
              <th align="left">Status</th>
              <th align="left">Structured Type</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Multicast-Timeout</td>
              <td align="left"> </td>
              <td align="left">permanent</td>
              <td align="left"> </td>
              <td align="left">[RFC-XXXX]</td>
            </tr>
            <tr>
              <td align="left">Reply-From</td>
              <td align="left"> </td>
              <td align="left">permanent</td>
              <td align="left"> </td>
              <td align="left">[RFC-XXXX]</td>
            </tr>
            <tr>
              <td align="left">Group-ETag</td>
              <td align="left"> </td>
              <td align="left">permanent</td>
              <td align="left"> </td>
              <td align="left">[RFC-XXXX]</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="I-D.ietf-core-groupcomm-bis">
          <front>
            <title>Group Communication for the Constrained Application Protocol (CoAP)</title>
            <author fullname="Esko Dijk" initials="E." surname="Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <author fullname="Chonggang Wang" initials="C." surname="Wang">
              <organization>InterDigital</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <date day="24" month="April" year="2024"/>
            <abstract>
              <t>   This document specifies the use of the Constrained Application
   Protocol (CoAP) for group communication, including the use of UDP/IP
   multicast as the default underlying data transport.  Both unsecured
   and secured CoAP group communication are specified.  Security is
   achieved by use of the Group Object Security for Constrained RESTful
   Environments (Group OSCORE) protocol.  The target application area of
   this specification is any group communication use cases that involve
   resource-constrained devices or networks that support CoAP.  This
   document replaces and obsoletes RFC 7390, while it updates RFC 7252
   and RFC 7641.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-groupcomm-bis-11"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-groupcomm">
          <front>
            <title>Group Object Security for Constrained RESTful Environments (Group OSCORE)</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <date day="4" month="March" year="2024"/>
            <abstract>
              <t>   This document defines the security protocol Group Object Security for
   Constrained RESTful Environments (Group OSCORE), providing end-to-end
   security of CoAP messages exchanged between members of a group, e.g.,
   sent over IP multicast.  In particular, the described protocol
   defines how OSCORE is used in a group communication setting to
   provide source authentication for CoAP group requests, sent by a
   client to multiple servers, and for protection of the corresponding
   CoAP responses.  Group OSCORE also defines a pairwise mode where each
   member of the group can efficiently derive a symmetric pairwise key
   with any other member of the group for pairwise OSCORE communication.
   Group OSCORE can be used between endpoints communicating with CoAP or
   CoAP-mappable HTTP.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-groupcomm-21"/>
        </reference>
        <reference anchor="I-D.ietf-core-href">
          <front>
            <title>Constrained Resource Identifiers</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <date day="21" month="April" year="2024"/>
            <abstract>
              <t>   The Constrained Resource Identifier (CRI) is a complement to the
   Uniform Resource Identifier (URI) that represents the URI components
   in Concise Binary Object Representation (CBOR) instead of in a
   sequence of characters.  This simplifies parsing, comparison, and
   reference resolution in environments with severe limitations on
   processing power, code size, and memory size.


   // (This "cref" paragraph will be removed by the RFC editor:) The
   // present revision –15 of this draft continues -14 by picking up
   // more comments, such as moving to a CRI scheme number registration
   // system based on unsigned numbers.  This revision still contains
   // open issues and is intended to serve as a snapshot.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-href-15"/>
        </reference>
        <reference anchor="RFC2046">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="N. Borenstein" initials="N." surname="Borenstein"/>
            <date month="November" year="1996"/>
            <abstract>
              <t>This second document defines the general structure of the MIME media typing system and defines an initial set of media types. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2046"/>
          <seriesInfo name="DOI" value="10.17487/RFC2046"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
            <author fullname="P. Overell" initials="P." surname="Overell"/>
            <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="RFC7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks. The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s. The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
              <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types. CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7252"/>
          <seriesInfo name="DOI" value="10.17487/RFC7252"/>
        </reference>
        <reference anchor="RFC7641">
          <front>
            <title>Observing Resources in the Constrained Application Protocol (CoAP)</title>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a RESTful application protocol for constrained nodes and networks. The state of a resource on a CoAP server can change over time. This document specifies a simple protocol extension for CoAP that enables CoAP clients to "observe" resources, i.e., to retrieve a representation of a resource and keep this representation updated by the server over a period of time. The protocol follows a best-effort approach for sending new representations to clients and provides eventual consistency between the state observed by each client and the actual resource state at the server.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7641"/>
          <seriesInfo name="DOI" value="10.17487/RFC7641"/>
        </reference>
        <reference anchor="RFC8075">
          <front>
            <title>Guidelines for Mapping Implementations: HTTP to the Constrained Application Protocol (CoAP)</title>
            <author fullname="A. Castellani" initials="A." surname="Castellani"/>
            <author fullname="S. Loreto" initials="S." surname="Loreto"/>
            <author fullname="A. Rahman" initials="A." surname="Rahman"/>
            <author fullname="T. Fossati" initials="T." surname="Fossati"/>
            <author fullname="E. Dijk" initials="E." surname="Dijk"/>
            <date month="February" year="2017"/>
            <abstract>
              <t>This document provides reference information for implementing a cross-protocol network proxy that performs translation from the HTTP protocol to the Constrained Application Protocol (CoAP). This will enable an HTTP client to access resources on a CoAP server through the proxy. This document describes how an HTTP request is mapped to a CoAP request and how a CoAP response is mapped back to an HTTP response. This includes guidelines for status code, URI, and media type mappings, as well as additional interworking advice.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8075"/>
          <seriesInfo name="DOI" value="10.17487/RFC8075"/>
        </reference>
        <reference anchor="RFC8323">
          <front>
            <title>CoAP (Constrained Application Protocol) over TCP, TLS, and WebSockets</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="S. Lemay" initials="S." surname="Lemay"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <author fullname="B. Silverajan" initials="B." surname="Silverajan"/>
            <author fullname="B. Raymor" initials="B." role="editor" surname="Raymor"/>
            <date month="February" year="2018"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP), although inspired by HTTP, was designed to use UDP instead of TCP. The message layer of CoAP over UDP includes support for reliable delivery, simple congestion control, and flow control.</t>
              <t>Some environments benefit from the availability of CoAP carried over reliable transports such as TCP or Transport Layer Security (TLS). This document outlines the changes required to use CoAP over TCP, TLS, and WebSockets transports. It also formally updates RFC 7641 for use with these transports and RFC 7959 to enable the use of larger messages over a reliable transport.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8323"/>
          <seriesInfo name="DOI" value="10.17487/RFC8323"/>
        </reference>
        <reference anchor="RFC8610">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <author fullname="C. Vigano" initials="C." surname="Vigano"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049). Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC8613">
          <front>
            <title>Object Security for Constrained RESTful Environments (OSCORE)</title>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="J. Mattsson" initials="J." surname="Mattsson"/>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <date month="July" year="2019"/>
            <abstract>
              <t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE). OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t>
              <t>Although an optional functionality of CoAP, OSCORE alters CoAP options processing and IANA registration. Therefore, this document updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8613"/>
          <seriesInfo name="DOI" value="10.17487/RFC8613"/>
        </reference>
        <reference anchor="RFC8742">
          <front>
            <title>Concise Binary Object Representation (CBOR) Sequences</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document describes the Concise Binary Object Representation (CBOR) Sequence format and associated media type "application/cbor-seq". A CBOR Sequence consists of any number of encoded CBOR data items, simply concatenated in sequence.</t>
              <t>Structured syntax suffixes for media types allow other media types to build on them and make it explicit that they are built on an existing media type as their foundation. This specification defines and registers "+cbor-seq" as a structured syntax suffix for CBOR Sequences.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8742"/>
          <seriesInfo name="DOI" value="10.17487/RFC8742"/>
        </reference>
        <reference anchor="RFC8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <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="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="I-D.bormann-coap-misc">
          <front>
            <title>Miscellaneous additions to CoAP</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universitaet Bremen TZI</organization>
            </author>
            <author fullname="Klaus Hartke" initials="K." surname="Hartke">
              <organization>Universitaet Bremen TZI</organization>
            </author>
            <date day="14" month="November" year="2014"/>
            <abstract>
              <t>   This short I-D makes a number of partially interrelated proposals how
   to solve certain problems in the CoRE WG's main protocol, the
   Constrained Application Protocol (CoAP).  The current version has
   been resubmitted to keep information about these proposals available;
   the proposals are not all fleshed out at this point in time.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bormann-coap-misc-27"/>
        </reference>
        <reference anchor="I-D.tiloca-core-oscore-discovery">
          <front>
            <title>Discovery of OSCORE Groups with the CoRE Resource Directory</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Peter Van der Stok" initials="P." surname="Van der Stok">
         </author>
            <date day="4" month="March" year="2024"/>
            <abstract>
              <t>   Group communication over the Constrained Application Protocol (CoAP)
   can be secured by means of Group Object Security for Constrained
   RESTful Environments (Group OSCORE).  At deployment time, devices may
   not know the exact security groups to join, the respective Group
   Manager, or other information required to perform the joining
   process.  This document describes how a CoAP endpoint can use
   descriptions and links of resources registered at the CoRE Resource
   Directory to discover security groups and to acquire information for
   joining them through the respective Group Manager.  A given security
   group may protect multiple application groups, which are separately
   announced in the Resource Directory as sets of endpoints sharing a
   pool of resources.  This approach is consistent with, but not limited
   to, the joining of security groups based on the ACE framework for
   Authentication and Authorization in constrained environments.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tiloca-core-oscore-discovery-15"/>
        </reference>
        <reference anchor="I-D.amsuess-core-cachable-oscore">
          <front>
            <title>Cacheable OSCORE</title>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <date day="10" month="January" year="2024"/>
            <abstract>
              <t>   Group communication with the Constrained Application Protocol (CoAP)
   can be secured end-to-end using Group Object Security for Constrained
   RESTful Environments (Group OSCORE), also across untrusted
   intermediary proxies.  However, this sidesteps the proxies' abilities
   to cache responses from the origin server(s).  This specification
   restores cacheability of protected responses at proxies, by
   introducing consensus requests which any client in a group can send
   to one server or multiple servers in the same group.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-amsuess-core-cachable-oscore-08"/>
        </reference>
        <reference anchor="I-D.ietf-ace-key-groupcomm-oscore">
          <front>
            <title>Key Management for OSCORE Groups in ACE</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Jiye Park" initials="J." surname="Park">
              <organization>Universitaet Duisburg-Essen</organization>
            </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <date day="6" month="March" year="2023"/>
            <abstract>
              <t>   This document defines an application profile of the ACE framework for
   Authentication and Authorization, to request and provision keying
   material in group communication scenarios that are based on CoAP and
   are secured with Group Object Security for Constrained RESTful
   Environments (Group OSCORE).  This application profile delegates the
   authentication and authorization of Clients, that join an OSCORE
   group through a Resource Server acting as Group Manager for that
   group.  This application profile leverages protocol-specific
   transport profiles of ACE to achieve communication security, server
   authentication and proof-of-possession for a key owned by the Client
   and bound to an OAuth 2.0 Access Token.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-ace-key-groupcomm-oscore-16"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-capable-proxies">
          <front>
            <title>OSCORE-capable Proxies</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <date day="4" month="March" year="2024"/>
            <abstract>
              <t>   Object Security for Constrained RESTful Environments (OSCORE) can be
   used to protect CoAP messages end-to-end between two endpoints at the
   application layer, also in the presence of intermediaries such as
   proxies.  This document defines how to use OSCORE for protecting CoAP
   messages also between an origin application endpoint and an
   intermediary, or between two intermediaries.  Also, it defines rules
   to escalate the protection of a CoAP option, in order to encrypt and
   integrity-protect it whenever possible.  Finally, it defines how to
   secure a CoAP message by applying multiple, nested OSCORE
   protections, e.g., both end-to-end between origin application
   endpoints, as well as between an application endpoint and an
   intermediary or between two intermediaries.  Thus, this document
   updates RFC 8613.  The same approach can be seamlessly used with
   Group OSCORE, for protecting CoAP messages when group communication
   is used in the presence of intermediaries.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-capable-proxies-01"/>
        </reference>
        <reference anchor="RFC7515">
          <front>
            <title>JSON Web Signature (JWS)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7515"/>
          <seriesInfo name="DOI" value="10.17487/RFC7515"/>
        </reference>
        <reference anchor="RFC7967">
          <front>
            <title>Constrained Application Protocol (CoAP) Option for No Server Response</title>
            <author fullname="A. Bhattacharyya" initials="A." surname="Bhattacharyya"/>
            <author fullname="S. Bandyopadhyay" initials="S." surname="Bandyopadhyay"/>
            <author fullname="A. Pal" initials="A." surname="Pal"/>
            <author fullname="T. Bose" initials="T." surname="Bose"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>There can be machine-to-machine (M2M) scenarios where server responses to client requests are redundant. This kind of open-loop exchange (with no response path from the server to the client) may be desired to minimize resource consumption in constrained systems while updating many resources simultaneously or performing high-frequency updates. CoAP already provides Non-confirmable (NON) messages that are not acknowledged by the recipient. However, the request/response semantics still require the server to respond with a status code indicating "the result of the attempt to understand and satisfy the request", per RFC 7252.</t>
              <t>This specification introduces a CoAP option called 'No-Response'. Using this option, the client can explicitly express to the server its disinterest in all responses against the particular request. This option also provides granular control to enable expression of disinterest to a particular response class or a combination of response classes. The server MAY decide to suppress the response by not transmitting it back to the client according to the value of the No-Response option in the request. This option may be effective for both unicast and multicast requests. This document also discusses a few examples of applications that benefit from this option.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7967"/>
          <seriesInfo name="DOI" value="10.17487/RFC7967"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9147">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="April" year="2022"/>
            <abstract>
              <t>This document specifies version 1.3 of the Datagram Transport Layer Security (DTLS) protocol. DTLS 1.3 allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>The DTLS 1.3 protocol is based on the Transport Layer Security (TLS) 1.3 protocol and provides equivalent security guarantees with the exception of order protection / non-replayability. Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
              <t>This document obsoletes RFC 6347.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9147"/>
          <seriesInfo name="DOI" value="10.17487/RFC9147"/>
        </reference>
      </references>
    </references>
    <section anchor="sec-reverse-proxies-examples">
      <name>Examples with Reverse-Proxy</name>
      <t>The examples in this section refer to the following actors.</t>
      <ul spacing="normal">
        <li>
          <t>One origin client C, with address C_ADDR and port number C_PORT.</t>
        </li>
        <li>
          <t>One proxy P, with address P_ADDR and server port number P_PORT.</t>
        </li>
        <li>
          <t>Two origin servers S1 and S2, where the server Sx has address Sx_ADDR and port number Sx_PORT.</t>
        </li>
      </ul>
      <t>The origin servers are members of a CoAP group with IP multicast address G_ADDR and port number G_PORT. Also, the origin servers are members of a same application group, and share the same resource /r.</t>
      <t>The communication between C and P is based on CoAP over TCP, as per <xref target="RFC8323"/>. The group communication between P and the origin servers is based on CoAP over UDP and IP multicast, as per <xref target="I-D.ietf-core-groupcomm-bis"/>.</t>
      <t>Finally, cri'X' denotes a CRI or CRI reference corresponding to the URI or URI reference X.</t>
      <section anchor="sec-reverse-proxies-examples-ex1">
        <name>Example 1</name>
        <t>The example shown in <xref target="workflow-example-reverse-1"/> considers a reverse-proxy P that provides access to both the whole group of servers {S1,S2} and also to each of those servers individually. The client C may not have a way to reach the servers directly (e.g., P is acting as a firewall).</t>
        <t>After the client C has received two responses to its group request sent via the proxy, it selects one server (S1) and requests another resource from it in unicast, again via the proxy.</t>
        <t>In particular:</t>
        <ul spacing="normal">
          <li>
            <t>In its group request to P, the client C includes the Uri-Host Option with value "group1.com" and the Uri-Path Option with value "r".</t>
          </li>
          <li>
            <t>The hostname 'group1.com' resolves to the IPv6 multicast address G_ADDR. The proxy P performs this resolution upon receiving the group request from C.  </t>
            <t>
Since such a request does not include the Uri-Port Option, P infers G_PORT to be the default port number 5683 for the 'coap' scheme.  </t>
            <t>
Based on this information, P composes the group request and sends it to the CoAP group at G_ADDR:G_PORT.</t>
          </li>
          <li>
            <t>Typically, S1_PORT and S2_PORT will be equal to G_PORT, but a server Sx is allowed to reply to the multicast request from another port number not equal to G_PORT. For this reason, the notation Sx_PORT is used.</t>
          </li>
        </ul>
        <t>Note that this type of reverse-proxy only requires one unicast IP address (P_ADDR) for the proxy, so it is well scalable to a large number of servers Sx. Instead, the type of reverse-proxy in the example in <xref target="sec-reverse-proxies-examples-ex2"/> requires an additional IP address for each server Sx and also for each CoAP group that the proxy supports.</t>
        <figure anchor="workflow-example-reverse-1">
          <name>Workflow example with a reverse-proxy standing in for both the whole group of servers and each individual server. This requires the proxy to have only one pair (IP address, port number).</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="1504" width="576" viewBox="0 0 576 1504" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,1488" fill="none" stroke="black"/>
                <path d="M 304,48 L 304,1056" fill="none" stroke="black"/>
                <path d="M 304,1104 L 304,1488" fill="none" stroke="black"/>
                <path d="M 488,48 L 488,520" fill="none" stroke="black"/>
                <path d="M 488,536 L 488,856" fill="none" stroke="black"/>
                <path d="M 488,912 L 488,1488" fill="none" stroke="black"/>
                <path d="M 568,48 L 568,1488" fill="none" stroke="black"/>
                <path d="M 8,64 L 296,64" fill="none" stroke="black"/>
                <path d="M 16,176 L 304,176" fill="none" stroke="black"/>
                <path d="M 8,320 L 296,320" fill="none" stroke="black"/>
                <path d="M 304,496 L 480,496" fill="none" stroke="black"/>
                <path d="M 448,528 L 560,528" fill="none" stroke="black"/>
                <path d="M 312,656 L 488,656" fill="none" stroke="black"/>
                <path d="M 16,736 L 304,736" fill="none" stroke="black"/>
                <path d="M 312,864 L 568,864" fill="none" stroke="black"/>
                <path d="M 16,944 L 304,944" fill="none" stroke="black"/>
                <path d="M 8,1136 L 296,1136" fill="none" stroke="black"/>
                <path d="M 304,1312 L 480,1312" fill="none" stroke="black"/>
                <path d="M 312,1360 L 488,1360" fill="none" stroke="black"/>
                <path d="M 16,1440 L 304,1440" fill="none" stroke="black"/>
                <path d="M 432,496 L 448,528" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="568,528 556,522.4 556,533.6" fill="black" transform="rotate(0,560,528)"/>
                <polygon class="arrowhead" points="488,1312 476,1306.4 476,1317.6" fill="black" transform="rotate(0,480,1312)"/>
                <polygon class="arrowhead" points="488,496 476,490.4 476,501.6" fill="black" transform="rotate(0,480,496)"/>
                <polygon class="arrowhead" points="320,1360 308,1354.4 308,1365.6" fill="black" transform="rotate(180,312,1360)"/>
                <polygon class="arrowhead" points="320,864 308,858.4 308,869.6" fill="black" transform="rotate(180,312,864)"/>
                <polygon class="arrowhead" points="320,656 308,650.4 308,661.6" fill="black" transform="rotate(180,312,656)"/>
                <polygon class="arrowhead" points="304,1136 292,1130.4 292,1141.6" fill="black" transform="rotate(0,296,1136)"/>
                <polygon class="arrowhead" points="304,320 292,314.4 292,325.6" fill="black" transform="rotate(0,296,320)"/>
                <polygon class="arrowhead" points="304,64 292,58.4 292,69.6" fill="black" transform="rotate(0,296,64)"/>
                <polygon class="arrowhead" points="24,1440 12,1434.4 12,1445.6" fill="black" transform="rotate(180,16,1440)"/>
                <polygon class="arrowhead" points="24,944 12,938.4 12,949.6" fill="black" transform="rotate(180,16,944)"/>
                <polygon class="arrowhead" points="24,736 12,730.4 12,741.6" fill="black" transform="rotate(180,16,736)"/>
                <polygon class="arrowhead" points="24,176 12,170.4 12,181.6" fill="black" transform="rotate(180,16,176)"/>
                <g class="text">
                  <text x="8" y="36">C</text>
                  <text x="304" y="36">P</text>
                  <text x="492" y="36">S1</text>
                  <text x="564" y="36">S2</text>
                  <text x="320" y="68">/</text>
                  <text x="336" y="68">C</text>
                  <text x="356" y="68">is</text>
                  <text x="384" y="68">not</text>
                  <text x="424" y="68">aware</text>
                  <text x="36" y="84">Src:</text>
                  <text x="112" y="84">C_ADDR:C_PORT</text>
                  <text x="332" y="84">that</text>
                  <text x="360" y="84">P</text>
                  <text x="380" y="84">is</text>
                  <text x="404" y="84">in</text>
                  <text x="436" y="84">fact</text>
                  <text x="36" y="100">Dst:</text>
                  <text x="112" y="100">P_ADDR:P_PORT</text>
                  <text x="320" y="100">a</text>
                  <text x="384" y="100">reverse-proxy</text>
                  <text x="448" y="100">/</text>
                  <text x="56" y="116">Uri-Host:</text>
                  <text x="148" y="116">"group1.com"</text>
                  <text x="56" y="132">Uri-Path:</text>
                  <text x="112" y="132">"r"</text>
                  <text x="36" y="196">Src:</text>
                  <text x="112" y="196">P_ADDR:P_PORT</text>
                  <text x="36" y="212">Dst:</text>
                  <text x="112" y="212">C_ADDR:C_PORT</text>
                  <text x="36" y="228">4.00</text>
                  <text x="72" y="228">Bad</text>
                  <text x="120" y="228">Request</text>
                  <text x="92" y="244">Multicast-Timeout:</text>
                  <text x="176" y="244">-</text>
                  <text x="216" y="244">(empty)</text>
                  <text x="52" y="260">Payload:</text>
                  <text x="120" y="260">"Please</text>
                  <text x="168" y="260">use</text>
                  <text x="108" y="276">Multicast-Timeout"</text>
                  <text x="36" y="340">Src:</text>
                  <text x="112" y="340">C_ADDR:C_PORT</text>
                  <text x="36" y="356">Dst:</text>
                  <text x="112" y="356">P_ADDR:P_PORT</text>
                  <text x="56" y="372">Uri-Host:</text>
                  <text x="148" y="372">"group1.com"</text>
                  <text x="56" y="388">Uri-Path:</text>
                  <text x="112" y="388">"r"</text>
                  <text x="92" y="404">Multicast-Timeout:</text>
                  <text x="180" y="404">60</text>
                  <text x="332" y="452">Src:</text>
                  <text x="408" y="452">P_ADDR:P_PORT</text>
                  <text x="332" y="468">Dst:</text>
                  <text x="408" y="468">G_ADDR:G_PORT</text>
                  <text x="352" y="484">Uri-Path:</text>
                  <text x="408" y="484">"r"</text>
                  <text x="320" y="580">/</text>
                  <text x="336" y="580">t</text>
                  <text x="352" y="580">=</text>
                  <text x="368" y="580">0</text>
                  <text x="384" y="580">:</text>
                  <text x="400" y="580">P</text>
                  <text x="436" y="580">starts</text>
                  <text x="352" y="596">accepting</text>
                  <text x="432" y="596">responses</text>
                  <text x="328" y="612">for</text>
                  <text x="364" y="612">this</text>
                  <text x="416" y="612">request</text>
                  <text x="456" y="612">/</text>
                  <text x="332" y="676">Src:</text>
                  <text x="416" y="676">S1_ADDR:S1_PORT</text>
                  <text x="332" y="692">Dst:</text>
                  <text x="408" y="692">P_ADDR:P_PORT</text>
                  <text x="36" y="756">Src:</text>
                  <text x="112" y="756">P_ADDR:P_PORT</text>
                  <text x="36" y="772">Dst:</text>
                  <text x="112" y="772">C_ADDR:C_PORT</text>
                  <text x="64" y="788">Reply-From:</text>
                  <text x="156" y="804">cri'coap+tcp://P_ADDR:P_PORT',</text>
                  <text x="124" y="820">cri'//S1_ADDR:S1_PORT'</text>
                  <text x="412" y="884">Src:</text>
                  <text x="496" y="884">S2_ADDR:S2_PORT</text>
                  <text x="412" y="900">Dst:</text>
                  <text x="488" y="900">P_ADDR:P_PORT</text>
                  <text x="36" y="964">Src:</text>
                  <text x="112" y="964">P_ADDR:P_PORT</text>
                  <text x="36" y="980">Dst:</text>
                  <text x="112" y="980">C_ADDR:C_PORT</text>
                  <text x="64" y="996">Reply-From:</text>
                  <text x="156" y="1012">cri'coap+tcp://P_ADDR:P_PORT',</text>
                  <text x="124" y="1028">cri'//S2_ADDR:S2_PORT'</text>
                  <text x="176" y="1076">/</text>
                  <text x="196" y="1076">At</text>
                  <text x="216" y="1076">t</text>
                  <text x="232" y="1076">=</text>
                  <text x="256" y="1076">60,</text>
                  <text x="280" y="1076">P</text>
                  <text x="312" y="1076">stops</text>
                  <text x="376" y="1076">accepting</text>
                  <text x="208" y="1092">responses</text>
                  <text x="264" y="1092">for</text>
                  <text x="300" y="1092">this</text>
                  <text x="352" y="1092">request</text>
                  <text x="392" y="1092">/</text>
                  <text x="320" y="1140">/</text>
                  <text x="360" y="1140">Request</text>
                  <text x="428" y="1140">intended</text>
                  <text x="36" y="1156">Src:</text>
                  <text x="112" y="1156">C_ADDR:C_PORT</text>
                  <text x="332" y="1156">only</text>
                  <text x="364" y="1156">to</text>
                  <text x="392" y="1156">S1,</text>
                  <text x="424" y="1156">via</text>
                  <text x="456" y="1156">the</text>
                  <text x="36" y="1172">Dst:</text>
                  <text x="112" y="1172">P_ADDR:P_PORT</text>
                  <text x="336" y="1172">proxy</text>
                  <text x="368" y="1172">P</text>
                  <text x="384" y="1172">/</text>
                  <text x="56" y="1188">Uri-Host:</text>
                  <text x="136" y="1188">"S1_ADDR"</text>
                  <text x="56" y="1204">Uri-Port:</text>
                  <text x="128" y="1204">S1_PORT</text>
                  <text x="56" y="1220">Uri-Path:</text>
                  <text x="116" y="1220">"r1"</text>
                  <text x="332" y="1268">Src:</text>
                  <text x="408" y="1268">P_ADDR:P_PORT</text>
                  <text x="332" y="1284">Dst:</text>
                  <text x="416" y="1284">S1_ADDR:S1_PORT</text>
                  <text x="352" y="1300">Uri-Path:</text>
                  <text x="412" y="1300">"r1"</text>
                  <text x="332" y="1380">Src:</text>
                  <text x="416" y="1380">S1_ADDR:S1_PORT</text>
                  <text x="332" y="1396">Dst:</text>
                  <text x="408" y="1396">P_ADDR:P_PORT</text>
                  <text x="164" y="1460">Src:</text>
                  <text x="240" y="1460">P_ADDR:P_PORT</text>
                  <text x="164" y="1476">Dst:</text>
                  <text x="240" y="1476">C_ADDR:C_PORT</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
C                                    P                      S1       S2
|                                    |                      |         |
+----------------------------------->| / C is not aware     |         |
| Src: C_ADDR:C_PORT                 | that P is in fact    |         |
| Dst: P_ADDR:P_PORT                 | a reverse-proxy /    |         |
| Uri-Host: "group1.com"             |                      |         |
| Uri-Path: "r"                      |                      |         |
|                                    |                      |         |
|                                    |                      |         |
|<-----------------------------------+                      |         |
| Src: P_ADDR:P_PORT                 |                      |         |
| Dst: C_ADDR:C_PORT                 |                      |         |
| 4.00 Bad Request                   |                      |         |
| Multicast-Timeout: - (empty)       |                      |         |
| Payload: "Please use               |                      |         |
|   Multicast-Timeout"               |                      |         |
|                                    |                      |         |
|                                    |                      |         |
+----------------------------------->|                      |         |
| Src: C_ADDR:C_PORT                 |                      |         |
| Dst: P_ADDR:P_PORT                 |                      |         |
| Uri-Host: "group1.com"             |                      |         |
| Uri-Path: "r"                      |                      |         |
| Multicast-Timeout: 60              |                      |         |
|                                    |                      |         |
|                                    |                      |         |
|                                    | Src: P_ADDR:P_PORT   |         |
|                                    | Dst: G_ADDR:G_PORT   |         |
|                                    | Uri-Path: "r"        |         |
|                                    +---------------+----->|         |
|                                    |                \     |         |
|                                    |                 `------------->|
|                                    |                      |         |
|                                    |                      |         |
|                                    | / t = 0 : P starts   |         |
|                                    | accepting responses  |         |
|                                    | for this request /   |         |
|                                    |                      |         |
|                                    |                      |         |
|                                    |<---------------------+         |
|                                    | Src: S1_ADDR:S1_PORT |         |
|                                    | Dst: P_ADDR:P_PORT   |         |
|                                    |                      |         |
|                                    |                      |         |
|<-----------------------------------+                      |         |
| Src: P_ADDR:P_PORT                 |                      |         |
| Dst: C_ADDR:C_PORT                 |                      |         |
| Reply-From:                        |                      |         |
|   cri'coap+tcp://P_ADDR:P_PORT',   |                      |         |
|   cri'//S1_ADDR:S1_PORT'           |                      |         |
|                                    |                      |         |
|                                    |                      |         |
|                                    |<-------------------------------+
|                                    |           Src: S2_ADDR:S2_PORT |
|                                    |           Dst: P_ADDR:P_PORT   |
|                                    |                      |         |
|                                    |                      |         |
|<-----------------------------------+                      |         |
| Src: P_ADDR:P_PORT                 |                      |         |
| Dst: C_ADDR:C_PORT                 |                      |         |
| Reply-From:                        |                      |         |
|   cri'coap+tcp://P_ADDR:P_PORT',   |                      |         |
|   cri'//S2_ADDR:S2_PORT'           |                      |         |
|                                    |                      |         |
|                                    |                      |         |
|                    / At t = 60, P stops accepting         |         |
|                    responses for this request /           |         |
|                                    |                      |         |
|                                    |                      |         |
+----------------------------------->| / Request intended   |         |
| Src: C_ADDR:C_PORT                 | only to S1, via the  |         |
| Dst: P_ADDR:P_PORT                 | proxy P /            |         |
| Uri-Host: "S1_ADDR"                |                      |         |
| Uri-Port: S1_PORT                  |                      |         |
| Uri-Path: "r1"                     |                      |         |
|                                    |                      |         |
|                                    |                      |         |
|                                    | Src: P_ADDR:P_PORT   |         |
|                                    | Dst: S1_ADDR:S1_PORT |         |
|                                    | Uri-Path: "r1"       |         |
|                                    +--------------------->|         |
|                                    |                      |         |
|                                    |                      |         |
|                                    |<---------------------+         |
|                                    | Src: S1_ADDR:S1_PORT |         |
|                                    | Dst: P_ADDR:P_PORT   |         |
|                                    |                      |         |
|                                    |                      |         |
|<-----------------------------------+                      |         |
|                 Src: P_ADDR:P_PORT |                      |         |
|                 Dst: C_ADDR:C_PORT |                      |         |
|                                    |                      |         |
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="sec-reverse-proxies-examples-ex2">
        <name>Example 2</name>
        <t>The example shown in <xref target="workflow-example-reverse-2"/> considers a reverse-proxy that stands in for both the whole group of servers {S1,S2} and for each of those servers Sx. The client C may not have a way to reach the servers directly (e.g., P is acting as a firewall).</t>
        <t>After the client C has received two responses to its group request sent via the proxy, it selects one server (S1) and requests at a later time the same resource from it in unicast, again via the proxy.</t>
        <t>In particular:</t>
        <ul spacing="normal">
          <li>
            <t>When receiving a request addressed to the unicast address P_ADDR and port number P_PORT, the proxy forwards the request towards the CoAP group at G_ADDR:G_PORT leaving the URI path unchanged.</t>
          </li>
          <li>
            <t>The address Dx_ADDR and port number Dx_PORT are also used by the proxy, which forwards an incoming request to that address towards the server at Sx_ADDR:Sx_PORT. The different Dx_ADDR are effectively 'proxy IP addresses' used to provide access to the servers.</t>
          </li>
        </ul>
        <t>Note that this type of reverse-proxy implementation requires the proxy to use (potentially) a large number of distinct IP addresses, hence it is not very scalable. Instead, the type of reverse-proxy shown in the example in <xref target="sec-reverse-proxies-examples-ex1"/> uses only one IPv6 unicast address to provide access to all servers and all CoAP groups.</t>
        <figure anchor="workflow-example-reverse-2">
          <name>Workflow example with a reverse-proxy standing in for both the whole group of servers and each individual server. This requires the proxy to have one pair (IP address, port number) for each group and one for each origin server.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="1472" width="576" viewBox="0 0 576 1472" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,1056" fill="none" stroke="black"/>
                <path d="M 8,1120 L 8,1456" fill="none" stroke="black"/>
                <path d="M 296,48 L 296,992" fill="none" stroke="black"/>
                <path d="M 296,1040 L 296,1056" fill="none" stroke="black"/>
                <path d="M 296,1120 L 296,1456" fill="none" stroke="black"/>
                <path d="M 480,48 L 480,488" fill="none" stroke="black"/>
                <path d="M 480,504 L 480,808" fill="none" stroke="black"/>
                <path d="M 480,864 L 480,1056" fill="none" stroke="black"/>
                <path d="M 480,1120 L 480,1456" fill="none" stroke="black"/>
                <path d="M 568,48 L 568,1056" fill="none" stroke="black"/>
                <path d="M 568,1120 L 568,1456" fill="none" stroke="black"/>
                <path d="M 8,64 L 288,64" fill="none" stroke="black"/>
                <path d="M 16,160 L 296,160" fill="none" stroke="black"/>
                <path d="M 8,304 L 288,304" fill="none" stroke="black"/>
                <path d="M 296,464 L 472,464" fill="none" stroke="black"/>
                <path d="M 440,496 L 560,496" fill="none" stroke="black"/>
                <path d="M 304,624 L 480,624" fill="none" stroke="black"/>
                <path d="M 16,704 L 296,704" fill="none" stroke="black"/>
                <path d="M 304,816 L 568,816" fill="none" stroke="black"/>
                <path d="M 16,896 L 296,896" fill="none" stroke="black"/>
                <path d="M 8,1152 L 288,1152" fill="none" stroke="black"/>
                <path d="M 296,1280 L 472,1280" fill="none" stroke="black"/>
                <path d="M 304,1328 L 480,1328" fill="none" stroke="black"/>
                <path d="M 16,1408 L 296,1408" fill="none" stroke="black"/>
                <path d="M 424,464 L 440,496" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="568,496 556,490.4 556,501.6" fill="black" transform="rotate(0,560,496)"/>
                <polygon class="arrowhead" points="480,1280 468,1274.4 468,1285.6" fill="black" transform="rotate(0,472,1280)"/>
                <polygon class="arrowhead" points="480,464 468,458.4 468,469.6" fill="black" transform="rotate(0,472,464)"/>
                <polygon class="arrowhead" points="312,1328 300,1322.4 300,1333.6" fill="black" transform="rotate(180,304,1328)"/>
                <polygon class="arrowhead" points="312,816 300,810.4 300,821.6" fill="black" transform="rotate(180,304,816)"/>
                <polygon class="arrowhead" points="312,624 300,618.4 300,629.6" fill="black" transform="rotate(180,304,624)"/>
                <polygon class="arrowhead" points="296,1152 284,1146.4 284,1157.6" fill="black" transform="rotate(0,288,1152)"/>
                <polygon class="arrowhead" points="296,304 284,298.4 284,309.6" fill="black" transform="rotate(0,288,304)"/>
                <polygon class="arrowhead" points="296,64 284,58.4 284,69.6" fill="black" transform="rotate(0,288,64)"/>
                <polygon class="arrowhead" points="24,1408 12,1402.4 12,1413.6" fill="black" transform="rotate(180,16,1408)"/>
                <polygon class="arrowhead" points="24,896 12,890.4 12,901.6" fill="black" transform="rotate(180,16,896)"/>
                <polygon class="arrowhead" points="24,704 12,698.4 12,709.6" fill="black" transform="rotate(180,16,704)"/>
                <polygon class="arrowhead" points="24,160 12,154.4 12,165.6" fill="black" transform="rotate(180,16,160)"/>
                <g class="text">
                  <text x="8" y="36">C</text>
                  <text x="296" y="36">P</text>
                  <text x="484" y="36">S1</text>
                  <text x="564" y="36">S2</text>
                  <text x="312" y="68">/</text>
                  <text x="328" y="68">C</text>
                  <text x="348" y="68">is</text>
                  <text x="376" y="68">not</text>
                  <text x="416" y="68">aware</text>
                  <text x="36" y="84">Src:</text>
                  <text x="112" y="84">C_ADDR:C_PORT</text>
                  <text x="324" y="84">that</text>
                  <text x="352" y="84">P</text>
                  <text x="372" y="84">is</text>
                  <text x="396" y="84">in</text>
                  <text x="428" y="84">fact</text>
                  <text x="36" y="100">Dst:</text>
                  <text x="112" y="100">P_ADDR:P_PORT</text>
                  <text x="312" y="100">a</text>
                  <text x="376" y="100">reverse-proxy</text>
                  <text x="440" y="100">/</text>
                  <text x="56" y="116">Uri-Path:</text>
                  <text x="112" y="116">"r"</text>
                  <text x="36" y="180">Src:</text>
                  <text x="112" y="180">P_ADDR:P_PORT</text>
                  <text x="36" y="196">Dst:</text>
                  <text x="112" y="196">C_ADDR:C_PORT</text>
                  <text x="36" y="212">4.00</text>
                  <text x="72" y="212">Bad</text>
                  <text x="120" y="212">Request</text>
                  <text x="92" y="228">Multicast-Timeout:</text>
                  <text x="176" y="228">-</text>
                  <text x="216" y="228">(empty)</text>
                  <text x="52" y="244">Payload:</text>
                  <text x="120" y="244">"Please</text>
                  <text x="168" y="244">use</text>
                  <text x="108" y="260">Multicast-Timeout"</text>
                  <text x="36" y="324">Src:</text>
                  <text x="112" y="324">C_ADDR:C_PORT</text>
                  <text x="36" y="340">Dst:</text>
                  <text x="112" y="340">P_ADDR:P_PORT</text>
                  <text x="56" y="356">Uri-Path:</text>
                  <text x="112" y="356">"r"</text>
                  <text x="92" y="372">Multicast-Timeout:</text>
                  <text x="180" y="372">60</text>
                  <text x="324" y="420">Src:</text>
                  <text x="400" y="420">P_ADDR:P_PORT</text>
                  <text x="324" y="436">Dst:</text>
                  <text x="400" y="436">G_ADDR:G_PORT</text>
                  <text x="344" y="452">Uri-Path:</text>
                  <text x="400" y="452">"r"</text>
                  <text x="312" y="548">/</text>
                  <text x="328" y="548">t</text>
                  <text x="344" y="548">=</text>
                  <text x="360" y="548">0</text>
                  <text x="376" y="548">:</text>
                  <text x="392" y="548">P</text>
                  <text x="428" y="548">starts</text>
                  <text x="344" y="564">accepting</text>
                  <text x="424" y="564">responses</text>
                  <text x="320" y="580">for</text>
                  <text x="356" y="580">this</text>
                  <text x="408" y="580">request</text>
                  <text x="448" y="580">/</text>
                  <text x="324" y="644">Src:</text>
                  <text x="408" y="644">S1_ADDR:S1_PORT</text>
                  <text x="324" y="660">Dst:</text>
                  <text x="400" y="660">P_ADDR:P_PORT</text>
                  <text x="36" y="724">Src:</text>
                  <text x="112" y="724">P_ADDR:P_PORT</text>
                  <text x="36" y="740">Dst:</text>
                  <text x="112" y="740">C_ADDR:C_PORT</text>
                  <text x="64" y="756">Reply-From:</text>
                  <text x="160" y="772">cri'coap+tcp://D1_ADDR:D1_PORT'</text>
                  <text x="412" y="836">Src:</text>
                  <text x="496" y="836">S2_ADDR:S2_PORT</text>
                  <text x="412" y="852">Dst:</text>
                  <text x="488" y="852">P_ADDR:P_PORT</text>
                  <text x="36" y="916">Src:</text>
                  <text x="112" y="916">P_ADDR:P_PORT</text>
                  <text x="36" y="932">Dst:</text>
                  <text x="112" y="932">C_ADDR:C_PORT</text>
                  <text x="64" y="948">Reply-From:</text>
                  <text x="160" y="964">cri'coap+tcp://D2_ADDR:D2_PORT'</text>
                  <text x="168" y="1012">/</text>
                  <text x="188" y="1012">At</text>
                  <text x="208" y="1012">t</text>
                  <text x="224" y="1012">=</text>
                  <text x="248" y="1012">60,</text>
                  <text x="272" y="1012">P</text>
                  <text x="304" y="1012">stops</text>
                  <text x="368" y="1012">accepting</text>
                  <text x="200" y="1028">responses</text>
                  <text x="256" y="1028">for</text>
                  <text x="292" y="1028">this</text>
                  <text x="344" y="1028">request</text>
                  <text x="384" y="1028">/</text>
                  <text x="16" y="1092">...</text>
                  <text x="128" y="1092">...</text>
                  <text x="240" y="1092">/</text>
                  <text x="268" y="1092">Time</text>
                  <text x="316" y="1092">passes</text>
                  <text x="352" y="1092">/</text>
                  <text x="480" y="1092">...</text>
                  <text x="560" y="1092">...</text>
                  <text x="312" y="1156">/</text>
                  <text x="352" y="1156">Request</text>
                  <text x="420" y="1156">intended</text>
                  <text x="36" y="1172">Src:</text>
                  <text x="112" y="1172">C_ADDR:C_PORT</text>
                  <text x="324" y="1172">only</text>
                  <text x="356" y="1172">to</text>
                  <text x="380" y="1172">S1</text>
                  <text x="408" y="1172">for</text>
                  <text x="440" y="1172">the</text>
                  <text x="36" y="1188">Dst:</text>
                  <text x="120" y="1188">D1_ADDR:D1_PORT</text>
                  <text x="324" y="1188">same</text>
                  <text x="380" y="1188">resource</text>
                  <text x="428" y="1188">/r</text>
                  <text x="448" y="1188">/</text>
                  <text x="56" y="1204">Uri-Path:</text>
                  <text x="112" y="1204">"r"</text>
                  <text x="324" y="1236">Src:</text>
                  <text x="400" y="1236">P_ADDR:P_PORT</text>
                  <text x="324" y="1252">Dst:</text>
                  <text x="408" y="1252">S1_ADDR:S1_PORT</text>
                  <text x="344" y="1268">Uri-Path:</text>
                  <text x="400" y="1268">"r"</text>
                  <text x="324" y="1348">Src:</text>
                  <text x="408" y="1348">S1_ADDR:S1_PORT</text>
                  <text x="324" y="1364">Dst:</text>
                  <text x="400" y="1364">P_ADDR:P_PORT</text>
                  <text x="140" y="1428">Src:</text>
                  <text x="224" y="1428">D1_ADDR:D1_PORT</text>
                  <text x="140" y="1444">Dst:</text>
                  <text x="216" y="1444">C_ADDR:C_PORT</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
C                                   P                      S1        S2
|                                   |                      |          |
+---------------------------------->| / C is not aware     |          |
| Src: C_ADDR:C_PORT                | that P is in fact    |          |
| Dst: P_ADDR:P_PORT                | a reverse-proxy /    |          |
| Uri-Path: "r"                     |                      |          |
|                                   |                      |          |
|                                   |                      |          |
|<----------------------------------+                      |          |
| Src: P_ADDR:P_PORT                |                      |          |
| Dst: C_ADDR:C_PORT                |                      |          |
| 4.00 Bad Request                  |                      |          |
| Multicast-Timeout: - (empty)      |                      |          |
| Payload: "Please use              |                      |          |
|   Multicast-Timeout"              |                      |          |
|                                   |                      |          |
|                                   |                      |          |
+---------------------------------->|                      |          |
| Src: C_ADDR:C_PORT                |                      |          |
| Dst: P_ADDR:P_PORT                |                      |          |
| Uri-Path: "r"                     |                      |          |
| Multicast-Timeout: 60             |                      |          |
|                                   |                      |          |
|                                   |                      |          |
|                                   | Src: P_ADDR:P_PORT   |          |
|                                   | Dst: G_ADDR:G_PORT   |          |
|                                   | Uri-Path: "r"        |          |
|                                   +---------------+----->|          |
|                                   |                \     |          |
|                                   |                 `-------------->|
|                                   |                      |          |
|                                   |                      |          |
|                                   | / t = 0 : P starts   |          |
|                                   | accepting responses  |          |
|                                   | for this request /   |          |
|                                   |                      |          |
|                                   |                      |          |
|                                   |<---------------------+          |
|                                   | Src: S1_ADDR:S1_PORT |          |
|                                   | Dst: P_ADDR:P_PORT   |          |
|                                   |                      |          |
|                                   |                      |          |
|<----------------------------------+                      |          |
| Src: P_ADDR:P_PORT                |                      |          |
| Dst: C_ADDR:C_PORT                |                      |          |
| Reply-From:                       |                      |          |
|   cri'coap+tcp://D1_ADDR:D1_PORT' |                      |          |
|                                   |                      |          |
|                                   |                      |          |
|                                   |<--------------------------------+
|                                   |            Src: S2_ADDR:S2_PORT |
|                                   |            Dst: P_ADDR:P_PORT   |
|                                   |                      |          |
|                                   |                      |          |
|<----------------------------------+                      |          |
| Src: P_ADDR:P_PORT                |                      |          |
| Dst: C_ADDR:C_PORT                |                      |          |
| Reply-From:                       |                      |          |
|   cri'coap+tcp://D2_ADDR:D2_PORT' |                      |          |
|                                   |                      |          |
|                                   |                      |          |
|                   / At t = 60, P stops accepting         |          |
|                   responses for this request /           |          |
|                                   |                      |          |
|                                   |                      |          |

...           ...            / Time passes /              ...       ...

|                                   |                      |          |
|                                   |                      |          |
+---------------------------------->| / Request intended   |          |
| Src: C_ADDR:C_PORT                | only to S1 for the   |          |
| Dst: D1_ADDR:D1_PORT              | same resource /r /   |          |
| Uri-Path: "r"                     |                      |          |
|                                   |                      |          |
|                                   | Src: P_ADDR:P_PORT   |          |
|                                   | Dst: S1_ADDR:S1_PORT |          |
|                                   | Uri-Path: "r"        |          |
|                                   +--------------------->|          |
|                                   |                      |          |
|                                   |                      |          |
|                                   |<---------------------+          |
|                                   | Src: S1_ADDR:S1_PORT |          |
|                                   | Dst: P_ADDR:P_PORT   |          |
|                                   |                      |          |
|                                   |                      |          |
|<----------------------------------+                      |          |
|              Src: D1_ADDR:D1_PORT |                      |          |
|              Dst: C_ADDR:C_PORT   |                      |          |
|                                   |                      |          |
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="sec-reverse-proxies-examples-ex3">
        <name>Example 3</name>
        <t>The example shown in <xref target="workflow-example-reverse-3"/> builds on the example in <xref target="sec-reverse-proxies-examples-ex2"/>.</t>
        <t>However, it considers a reverse-proxy that stands in for only the whole group of servers, but not for each individual server Sx.</t>
        <t>The final exchange between C and S1 occurs with CoAP over UDP.</t>
        <figure anchor="workflow-example-reverse-3">
          <name>Workflow example with a reverse-proxy standing in for only the whole group of servers, but not for each individual server. This requires the proxy to have one pair (IP address, port number) for each group.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="1296" width="568" viewBox="0 0 568 1296" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,1040" fill="none" stroke="black"/>
                <path d="M 8,1104 L 8,1280" fill="none" stroke="black"/>
                <path d="M 264,48 L 264,976" fill="none" stroke="black"/>
                <path d="M 264,1024 L 264,1040" fill="none" stroke="black"/>
                <path d="M 264,1104 L 264,1128" fill="none" stroke="black"/>
                <path d="M 264,1144 L 264,1224" fill="none" stroke="black"/>
                <path d="M 264,1240 L 264,1280" fill="none" stroke="black"/>
                <path d="M 448,48 L 448,472" fill="none" stroke="black"/>
                <path d="M 448,488 L 448,792" fill="none" stroke="black"/>
                <path d="M 448,840 L 448,1040" fill="none" stroke="black"/>
                <path d="M 448,1104 L 448,1280" fill="none" stroke="black"/>
                <path d="M 560,48 L 560,1040" fill="none" stroke="black"/>
                <path d="M 560,1104 L 560,1280" fill="none" stroke="black"/>
                <path d="M 8,64 L 256,64" fill="none" stroke="black"/>
                <path d="M 16,144 L 264,144" fill="none" stroke="black"/>
                <path d="M 8,288 L 256,288" fill="none" stroke="black"/>
                <path d="M 264,448 L 440,448" fill="none" stroke="black"/>
                <path d="M 408,480 L 552,480" fill="none" stroke="black"/>
                <path d="M 272,608 L 448,608" fill="none" stroke="black"/>
                <path d="M 16,688 L 264,688" fill="none" stroke="black"/>
                <path d="M 272,800 L 560,800" fill="none" stroke="black"/>
                <path d="M 16,880 L 264,880" fill="none" stroke="black"/>
                <path d="M 8,1136 L 440,1136" fill="none" stroke="black"/>
                <path d="M 16,1232 L 448,1232" fill="none" stroke="black"/>
                <path d="M 392,448 L 408,480" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="560,480 548,474.4 548,485.6" fill="black" transform="rotate(0,552,480)"/>
                <polygon class="arrowhead" points="448,1136 436,1130.4 436,1141.6" fill="black" transform="rotate(0,440,1136)"/>
                <polygon class="arrowhead" points="448,448 436,442.4 436,453.6" fill="black" transform="rotate(0,440,448)"/>
                <polygon class="arrowhead" points="280,800 268,794.4 268,805.6" fill="black" transform="rotate(180,272,800)"/>
                <polygon class="arrowhead" points="280,608 268,602.4 268,613.6" fill="black" transform="rotate(180,272,608)"/>
                <polygon class="arrowhead" points="264,288 252,282.4 252,293.6" fill="black" transform="rotate(0,256,288)"/>
                <polygon class="arrowhead" points="264,64 252,58.4 252,69.6" fill="black" transform="rotate(0,256,64)"/>
                <polygon class="arrowhead" points="24,1232 12,1226.4 12,1237.6" fill="black" transform="rotate(180,16,1232)"/>
                <polygon class="arrowhead" points="24,880 12,874.4 12,885.6" fill="black" transform="rotate(180,16,880)"/>
                <polygon class="arrowhead" points="24,688 12,682.4 12,693.6" fill="black" transform="rotate(180,16,688)"/>
                <polygon class="arrowhead" points="24,144 12,138.4 12,149.6" fill="black" transform="rotate(180,16,144)"/>
                <g class="text">
                  <text x="8" y="36">C</text>
                  <text x="264" y="36">P</text>
                  <text x="452" y="36">S1</text>
                  <text x="556" y="36">S2</text>
                  <text x="280" y="68">/</text>
                  <text x="296" y="68">C</text>
                  <text x="316" y="68">is</text>
                  <text x="344" y="68">not</text>
                  <text x="384" y="68">aware</text>
                  <text x="36" y="84">Src:</text>
                  <text x="112" y="84">C_ADDR:C_PORT</text>
                  <text x="292" y="84">that</text>
                  <text x="320" y="84">P</text>
                  <text x="340" y="84">is</text>
                  <text x="364" y="84">in</text>
                  <text x="396" y="84">fact</text>
                  <text x="36" y="100">Dst:</text>
                  <text x="112" y="100">P_ADDR:P_PORT</text>
                  <text x="280" y="100">a</text>
                  <text x="344" y="100">reverse-proxy</text>
                  <text x="408" y="100">/</text>
                  <text x="56" y="116">Uri-Path:</text>
                  <text x="112" y="116">"r"</text>
                  <text x="36" y="164">Src:</text>
                  <text x="112" y="164">P_ADDR:P_PORT</text>
                  <text x="36" y="180">Dst:</text>
                  <text x="112" y="180">C_ADDR:C_PORT</text>
                  <text x="36" y="196">4.00</text>
                  <text x="72" y="196">Bad</text>
                  <text x="120" y="196">Request</text>
                  <text x="92" y="212">Multicast-Timeout:</text>
                  <text x="176" y="212">-</text>
                  <text x="216" y="212">(empty)</text>
                  <text x="52" y="228">Payload:</text>
                  <text x="120" y="228">"Please</text>
                  <text x="168" y="228">use</text>
                  <text x="108" y="244">Multicast-Timeout"</text>
                  <text x="36" y="308">Src:</text>
                  <text x="112" y="308">C_ADDR:C_PORT</text>
                  <text x="36" y="324">Dst:</text>
                  <text x="112" y="324">P_ADDR:P_PORT</text>
                  <text x="56" y="340">Uri-Path:</text>
                  <text x="112" y="340">"r"</text>
                  <text x="92" y="356">Multicast-Timeout:</text>
                  <text x="180" y="356">60</text>
                  <text x="292" y="404">Src:</text>
                  <text x="368" y="404">P_ADDR:P_PORT</text>
                  <text x="292" y="420">Dst:</text>
                  <text x="368" y="420">G_ADDR:G_PORT</text>
                  <text x="312" y="436">Uri-Path:</text>
                  <text x="368" y="436">"r"</text>
                  <text x="280" y="532">/</text>
                  <text x="296" y="532">t</text>
                  <text x="312" y="532">=</text>
                  <text x="328" y="532">0</text>
                  <text x="344" y="532">:</text>
                  <text x="360" y="532">P</text>
                  <text x="396" y="532">starts</text>
                  <text x="312" y="548">accepting</text>
                  <text x="392" y="548">responses</text>
                  <text x="288" y="564">for</text>
                  <text x="324" y="564">this</text>
                  <text x="376" y="564">request</text>
                  <text x="416" y="564">/</text>
                  <text x="292" y="628">Src:</text>
                  <text x="376" y="628">S1_ADDR:S1_PORT</text>
                  <text x="292" y="644">Dst:</text>
                  <text x="368" y="644">P_ADDR:P_PORT</text>
                  <text x="36" y="708">Dst:</text>
                  <text x="112" y="708">P_ADDR:P_PORT</text>
                  <text x="36" y="724">Dst:</text>
                  <text x="112" y="724">C_ADDR:C_PORT</text>
                  <text x="64" y="740">Reply-From:</text>
                  <text x="144" y="756">cri'coap://S1_ADDR:S1_PORT'</text>
                  <text x="404" y="820">Src:</text>
                  <text x="488" y="820">S2_ADDR:S2_PORT</text>
                  <text x="404" y="836">Dst:</text>
                  <text x="480" y="836">P_ADDR:P_PORT</text>
                  <text x="36" y="900">Dst:</text>
                  <text x="112" y="900">P_ADDR:P_PORT</text>
                  <text x="36" y="916">Dst:</text>
                  <text x="112" y="916">C_ADDR:C_PORT</text>
                  <text x="64" y="932">Reply-From:</text>
                  <text x="144" y="948">cri'coap://S2_ADDR:S2_PORT'</text>
                  <text x="136" y="996">/</text>
                  <text x="156" y="996">At</text>
                  <text x="176" y="996">t</text>
                  <text x="192" y="996">=</text>
                  <text x="216" y="996">60,</text>
                  <text x="240" y="996">P</text>
                  <text x="272" y="996">stops</text>
                  <text x="336" y="996">accepting</text>
                  <text x="168" y="1012">responses</text>
                  <text x="224" y="1012">for</text>
                  <text x="260" y="1012">this</text>
                  <text x="312" y="1012">request</text>
                  <text x="352" y="1012">/</text>
                  <text x="16" y="1076">...</text>
                  <text x="128" y="1076">...</text>
                  <text x="208" y="1076">/</text>
                  <text x="236" y="1076">Time</text>
                  <text x="284" y="1076">passes</text>
                  <text x="320" y="1076">/</text>
                  <text x="448" y="1076">...</text>
                  <text x="552" y="1076">...</text>
                  <text x="36" y="1156">Src:</text>
                  <text x="112" y="1156">C_ADDR:C_PORT</text>
                  <text x="280" y="1156">/</text>
                  <text x="320" y="1156">Request</text>
                  <text x="388" y="1156">intended</text>
                  <text x="36" y="1172">Dst:</text>
                  <text x="120" y="1172">S1.ADDR:S1_PORT</text>
                  <text x="292" y="1172">only</text>
                  <text x="324" y="1172">to</text>
                  <text x="348" y="1172">S1</text>
                  <text x="376" y="1172">for</text>
                  <text x="408" y="1172">the</text>
                  <text x="56" y="1188">Uri-Path:</text>
                  <text x="112" y="1188">"r"</text>
                  <text x="292" y="1188">same</text>
                  <text x="348" y="1188">resource</text>
                  <text x="396" y="1188">/r</text>
                  <text x="416" y="1188">/</text>
                  <text x="292" y="1252">Src:</text>
                  <text x="376" y="1252">S1.ADDR:S1_PORT</text>
                  <text x="292" y="1268">Dst:</text>
                  <text x="368" y="1268">C_ADDR:C_PORT</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
C                               P                      S1           S2
|                               |                      |             |
+------------------------------>| / C is not aware     |             |
| Src: C_ADDR:C_PORT            | that P is in fact    |             |
| Dst: P_ADDR:P_PORT            | a reverse-proxy /    |             |
| Uri-Path: "r"                 |                      |             |
|                               |                      |             |
|<------------------------------+                      |             |
| Src: P_ADDR:P_PORT            |                      |             |
| Dst: C_ADDR:C_PORT            |                      |             |
| 4.00 Bad Request              |                      |             |
| Multicast-Timeout: - (empty)  |                      |             |
| Payload: "Please use          |                      |             |
|   Multicast-Timeout"          |                      |             |
|                               |                      |             |
|                               |                      |             |
+------------------------------>|                      |             |
| Src: C_ADDR:C_PORT            |                      |             |
| Dst: P_ADDR:P_PORT            |                      |             |
| Uri-Path: "r"                 |                      |             |
| Multicast-Timeout: 60         |                      |             |
|                               |                      |             |
|                               |                      |             |
|                               | Src: P_ADDR:P_PORT   |             |
|                               | Dst: G_ADDR:G_PORT   |             |
|                               | Uri-Path: "r"        |             |
|                               +---------------+----->|             |
|                               |                \     |             |
|                               |                 `----------------->|
|                               |                      |             |
|                               |                      |             |
|                               | / t = 0 : P starts   |             |
|                               | accepting responses  |             |
|                               | for this request /   |             |
|                               |                      |             |
|                               |                      |             |
|                               |<---------------------+             |
|                               | Src: S1_ADDR:S1_PORT |             |
|                               | Dst: P_ADDR:P_PORT   |             |
|                               |                      |             |
|                               |                      |             |
|<------------------------------+                      |             |
| Dst: P_ADDR:P_PORT            |                      |             |
| Dst: C_ADDR:C_PORT            |                      |             |
| Reply-From:                   |                      |             |
|   cri'coap://S1_ADDR:S1_PORT' |                      |             |
|                               |                      |             |
|                               |                      |             |
|                               |<-----------------------------------+
|                               |               Src: S2_ADDR:S2_PORT |
|                               |               Dst: P_ADDR:P_PORT   |
|                               |                      |             |
|                               |                      |             |
|<------------------------------+                      |             |
| Dst: P_ADDR:P_PORT            |                      |             |
| Dst: C_ADDR:C_PORT            |                      |             |
| Reply-From:                   |                      |             |
|   cri'coap://S2_ADDR:S2_PORT' |                      |             |
|                               |                      |             |
|                               |                      |             |
|               / At t = 60, P stops accepting         |             |
|               responses for this request /           |             |
|                               |                      |             |
|                               |                      |             |

...           ...        / Time passes /              ...          ...

|                               |                      |             |
|                               |                      |             |
+----------------------------------------------------->|             |
| Src: C_ADDR:C_PORT            | / Request intended   |             |
| Dst: S1.ADDR:S1_PORT          | only to S1 for the   |             |
| Uri-Path: "r"                 | same resource /r /   |             |
|                               |                      |             |
|                               |                      |             |
|<-----------------------------------------------------+             |
|                               | Src: S1.ADDR:S1_PORT |             |
|                               | Dst: C_ADDR:C_PORT   |             |
|                               |                      |             |
]]></artwork>
          </artset>
        </figure>
      </section>
    </section>
    <section anchor="sec-document-updates" removeInRFC="true">
      <name>Document Updates</name>
      <section anchor="sec-01-02">
        <name>Version -01 to -02</name>
        <ul spacing="normal">
          <li>
            <t>Reply-To Option renamed as Reply-From.</t>
          </li>
          <li>
            <t>Multicast-Timeout Option set to 0 ultimately yields an empty value.</t>
          </li>
          <li>
            <t>Removed moot text on reverse-proxies that might use default timeouts.</t>
          </li>
          <li>
            <t>Improved description on using Proxy-Cri and Proxy-Scheme-Number.</t>
          </li>
          <li>
            <t>Improved error handling for inadequate timeouts with proxy chains.</t>
          </li>
          <li>
            <t>Revised the examples of message exchange with a reverse-proxy.</t>
          </li>
          <li>
            <t>Fixes in the IANA considerations.</t>
          </li>
          <li>
            <t>Editorial fixes and improvements.</t>
          </li>
        </ul>
      </section>
      <section anchor="sec-00-01">
        <name>Version -00 to -01</name>
        <ul spacing="normal">
          <li>
            <t>Definition of "individual request" in the terminology.</t>
          </li>
          <li>
            <t>UDP/IP multicast treated as the default transport protocol.</t>
          </li>
          <li>
            <t>Always use the Multicast-Timeout Option, also with reverse-proxies.</t>
          </li>
          <li>
            <t>Response-Forwarding Option:  </t>
            <ul spacing="normal">
              <li>
                <t>Renamed as "Reply-To".</t>
              </li>
              <li>
                <t>Revised encoding to use CRIs.</t>
              </li>
              <li>
                <t>Revised semantics to better address setups with reverse-proxies.</t>
              </li>
              <li>
                <t>Added before possible response caching.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Clarified response processing at reverse-proxies.</t>
          </li>
          <li>
            <t>Updated IANA considerations.</t>
          </li>
          <li>
            <t>Editorial fixes and improvements.</t>
          </li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors sincerely thank <contact fullname="Christian Amsüss"/>, <contact fullname="Carsten Bormann"/>, <contact fullname="Rikard Höglund"/>, <contact fullname="Jim Schaad"/>, and <contact fullname="Göran Selander"/> for their comments and feedback.</t>
      <t>The work on this document has been partly supported by the Sweden's Innovation Agency VINNOVA and the Celtic-Next projects CRITISEC and CYPRESS; and by the H2020 project SIFIS-Home (Grant agreement 952652).</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
inGW3uT7jH2YU+o/SVd2sCMNS5Ko5nOs9KrgEOY7hOZZyRZW1jJB73YyCkSx
piLXydhDd98Hc73YGlYk9aNRRHedWyqQmBh338KXN/LnuIQrZ8bFERQEJ4S4
E+hI00dTlUnaULye73LX500qSkuVKbEL6EIgSrAIw7DRl95qvm4L4pBWx9Q8
j+tPBExHrygAW9uCnGu/53LYpP5pRaXYsJRfBLOIKRr6NLZDF2oRwTNViTD/
HOI9NJb+ndD874nb/0FVkq5QYADghcYWGQC/1sELmF56njHOwYIFXiPW6RJd
LkpVpAuCW6xOwgUL8ZKqSI4DlDHLmVO/RTZ/i8Ic2P5q+wVnaJfFRX654KQe
LviDY5nejCR9FbB/pi1ry3JvuaCBZINWvunZQIj6kW6vSqQhV8g0SDaQxCU7
nwTRL5+QkqYaiVUo9OTYuRqnNIaixsRW7vASi5xLwHReQNdUSn0GZqZJdONO
YxOkRGXYWLRcav9K3uxWcvQOMw9t9IICqUpUC9ORULKDO2ouIUzvjKogZz4n
MxDhtQRPLomaXOUgaNrIhBlvggQ+OqPmCky9PTWJPRNhRxNQBapovRF0R5sK
b5h0osrDWo3TswsRyvCwmKJe91MnbbXaICrR7F91N27LEBGemY71EnBgr+px
UyrqucqGbCSL7paDzc0phh2uVXdy9K/ceBV+2W1OXZ7/lRUsDNg1Fb8vFpML
UNcknkftUmOEur5akYZiI8jFl71D62E+p3qalqZNdwKy9gwnuVGExPrDDGsc
6s8kstqyDahscQKfdaSYynwmQ58eCOuRs9odSTB3KN7c0cCQNg5pKnL5eKyS
1FuINzpIhHsto5ZGo/tU3fgKAGb7HF7diMywOi3rNogygEltCMJOCaOyHrtY
E9EOOAQwciUOZcqhi0/5II3UdQmVRqRHs3+IuuApWdFsmwZGdd3LIPdiPATQ
E9NX2j8S8YHOvcfwLJbwaGVxv02PEjFqFSXak11zalh3NN//Y+aYewK1KsDK
cc1zGW9n+GAAqiCh2Hri95n2Q6YvOgjlt1KScHXUHjDd4O714pKHnvuVqxh4
IGk40zm0eEfbZE0tVn7D1g6whtf27i9sgZeKC8BcS1OswwR8wlS7W9Z5zAUJ
vOPL0RuOzM7ve38mSMdZgSVVZhBjMyEetnanyonc3H1SjtKJ1+J9znWj7Tn3
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
Ymspl9kBAA==

-->

</rfc>
