<?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.1.2) -->
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc subcompact="no"?>
<?rfc iprnotified="no"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-amsuess-core-resource-directory-extensions-08" category="exp" tocDepth="3" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.16.0 -->
  <front>
    <title>CoRE Resource Directory Extensions</title>
    <seriesInfo name="Internet-Draft" value="draft-amsuess-core-resource-directory-extensions-08"/>
    <author initials="C." surname="Amsüss" fullname="Christian Amsüss">
      <organization/>
      <address>
        <email>christian@amsuess.com</email>
      </address>
    </author>
    <date year="2023" month="March" day="13"/>
    <area>Internet</area>
    <workgroup>CoRE</workgroup>
    <keyword>CoRE, Web Linking, Resource Discovery, Resource Directory, Proxy</keyword>
    <abstract>
      <t>A collection of extensions to the Resource Directory <xref target="rfc9176"/>
that can stand on their own, and have no clear future in specification yet.</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://gitlab.com/chrysn/resource-directory-extensions"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>This document pools some extensions to the Resource Directory
<xref target="rfc9176"/> that might be useful but have no place in
the original document.</t>
      <t>They might become individual documents for IETF submission, simple
registrations in the RD Parameter Registry at IANA, or grow into a shape where
they can be submitted as a collection of tools.</t>
      <t>At its current state, this draft is a collection of ideas.</t>
    </section>
    <section anchor="reverseproxy">
      <name>Reverse Proxy requests</name>
      <t>When a registrant registers at a Resource Directory, it might not have a
suitable address it can use as a base address.
Typical reasons include being inside a NAT without control over port forwarding,
or only being able to open outgoing connections
(as program running inside a web browser utilizing CoAP over WebSocket <xref target="RFC8323"/> might be).</t>
      <t><xref target="rfc9176"/> suggests (in the Cellular M2M use case) that proxy access to such endpoints can be provided,
it gives no concrete mechanism to do that; this is such a mechanism.</t>
      <t>This mechanism is intended to be a last-resort option to provide connectivity.
Where possible, direct connections are preferred.
Before registering for proxying,
the registrant should attempt to obtain a publicly available port,
for example using PCP (<xref target="RFC6887"/>).</t>
      <t>The same mechanism can also be employed by registrants that want to conceal their network address from its clients.</t>
      <t>A deployed application where this is implicitly done is LwM2M [citation missing].
Notable differences are that the protocol used between the client and the proxying RD is not CoAP but application specific,
and that the RD (depending on some configuration) eagerly populates its proxy caches
by sending requests and starting observations at registration time.</t>
      <section anchor="discovery">
        <name>Discovery</name>
        <t>An RD that provides proxying functionality advertises it by announcing the additional resource type "TBD1" on its directory resource.</t>
      </section>
      <section anchor="registration">
        <name>Registration</name>
        <t>A client passes the "proxy=yes" or "proxy=ondemand" query parameter
in addition to (but typically instead of) a "base" query parameter.</t>
        <t>A server that receives a "proxy=yes" query parameter in a registration
(or receives "proxy=ondemand" and decides it needs to proxy)
MUST come up with a "Proxy URL" on which it accepts requests,
and which it uses as a Registration Base URI for lookups on the present registration.</t>
        <t>The Proxy URL SHOULD have no path component,
as acting as a reverse proxy in such a scenario
means that any relative references in all representations that are proxied must be recognized
and possibly rewritten.</t>
        <t>The RD MAY accept connections also on alternative Registration Base URIs
using different protocols;
it can advertise them using the mechanisms of <xref target="I-D.ietf-core-transport-indication"/>.</t>
        <t>The registrant is not informed of the chosen public name by the RD.</t>
        <t>This mechanism is applicable to all transports that can be used to register.
If proxying is active, the restrictions on when the base parameter needs to be present
(<xref target="rfc9176"/> Registration template)
are relaxed:
The base parameter may also be absent if the connection originates from an ephemeral port,
as long as the underlying protocol supports role reversal,
and link-local IPv6 addresses may be used without any concerns of expressibility.</t>
        <t>If the client uses the role reversal rule relaxation,
both it and the server keep that connection open for as long as it wants to be reachable.
When the connection terminates, the RD SHOULD treat the registration as having timed out
(even if its lifetime has not been exceeded) and MAY eventually remove the registration.
It is yet to be decided whether the RD's announced ability to do proxying
should imply that infinite lifetimes are necessarily supported for such registrations;
at least, it is RECOMMENDED.</t>
        <section anchor="registration-updates">
          <name>Registration updates</name>
          <t>The "proxy" query parameter can not be changed or repeated in a registration update;
RD servers MUST answer 4.00 Bad Request to any registration update that has a "proxy" query parameter.</t>
          <t>As always, registration updates can explicitly or implicitly update the Registration Base URI.
In proxied registrations, those changes are not propagated to lookup,
but do change the forwarding address of the proxy.</t>
          <t>For example, if a registration is established over TCP,
an update can come along in a new TCP connection.
Starting then, proxied requests are forwarded along that new connection.</t>
        </section>
      </section>
      <section anchor="proxy-behavior">
        <name>Proxy behavior</name>
        <t>The RD operates as a reverse-proxy as described in <xref target="RFC7252"/> Section 5.7.3 at the announced Proxy URL(s),
where it decides based on the requested host and port
to which registrant endpoint to forward the request.</t>
        <t>The address the incoming request are forwarded to is the base address of the registration.
If an explicit "base" paremter is given,
the RD will forward requests to that location.
Otherwise, it forwards to the registration's source address
(which is the implied base parameter).</t>
        <t>When an implicit base is used,
the requests forwarded by the RD to the EP contain no Uri-Host option.
EPs that want to run multiple parallel registrations
(especially gateway-like devices)
can either open up separate connections,
or use an additional (to-be-specified) mechanism to set the "virtual host name" for that registration in a separate argument.</t>
        <section anchor="limitations-from-using-a-reverse-proxy">
          <name>Limitations from using a reverse proxy</name>
          <t>The registrant requesting the reverse proxying needs to ensure that all services it provides are compatible with being operated behind a reverse proxy with an unknown name.
In particular, this rules out all applications that refer to local resources by a full URI
(as opposed to relative references without scheme and host).
Applications behind a reverse proxy can not use role reversal.</t>
          <t>Some of these limitations can be mitigated if the application knows its advertised address.</t>
        </section>
      </section>
      <section anchor="on-demand-proxying">
        <name>On-Demand proxying</name>
        <t>If an endpoint is deployed in an unknown network,
it might not know whether it is behind a NAT that would require it to configure an explicit base address,
and ask the RD to assist by proxying if necessary by registering with the "proxy=ondemand" query parameter.</t>
        <t>A server receiving that SHOULD use a different IP address to try
to access the registrant's .well-known/core file using a GET request under the Registration Base URI.
If that succeeds, it may assume that no NAT is present, and ignore the proxying request.
Otherwise, it configures proxying as if "proxy=yes" were requested.</t>
        <t>Note that this is only a heuristic
[ and not tested in deployments yet ].</t>
      </section>
      <section anchor="multiple-upstreams">
        <name>Multiple upstreams</name>
        <t>When a proxying RD is operating behind a router that has uplinks with multiple provisioning domains (see <xref target="RFC7556"/>) or a similar setup,
it MAY mint multiple addresses that are reachable on the respective provisioning domains.
When possible, it is preferred to keep the number of URIs handed out low (avoiding URI aliasing);
this can be achieved by announcing both the proxy's public addresses under the same wildcard name.</t>
        <t>If RDs are announced by the uplinks using RDAO,
the proxy may use the methods of <xref target="I-D.amsuess-core-rd-replication"/> to distribute its registrations to all the announced upstream RDs.</t>
        <t>In such setups, the router can forward the upstream RDs using the PvD option (<xref target="RFC8801"/>) to PvD-aware hosts
and only announce the local RD to PvD-unaware ones (which then forwards their registrations).
It can be expected that PvD-aware endpoints are capable of registering with multiple RDs simultaneously.</t>
      </section>
      <section anchor="examples">
        <name>Examples</name>
        <section anchor="registration-through-a-firewall">
          <name>Registration through a firewall</name>
          <artwork><![CDATA[
Req from [2001:db8:42::9876]:5683:
POST coap://rd.example.net/rd?ep=node9876&proxy=ondemand
</some-resource>;rt="example.x"

Req from other-address.rd.example.net:
GET coap://[2001:db8:42::9876]/.well-known/core

Request blocked by stateful firewall around [2001:db8:42::]

RD decides that proxying is necessary

Res: 2.04 Created
Location: /reg/abcd
]]></artwork>
          <t>Later, lookup of that registration might say:</t>
          <artwork><![CDATA[
Req: GET coap://rd.example.net/lookup/res?rt=example.x

Res: 2.05 Content
<coap://node987.rd.example.net/some-resource>;rt="example.x
]]></artwork>
          <t>A request to that resource will end up at an IP address of the RD,
which will forward it using its the IP and port on which the registrant had registered as source port,
thus reaching the registrant through the stateful firewall.</t>
        </section>
        <section anchor="browser">
          <name>Registration from a browser context</name>
          <artwork><![CDATA[
Req: POST coaps+ws://rd.example.net/rd?ep=node1234&proxy=yes
</gyroscope>;rt="core.s"

Res: 2.04 Created
Location: /reg/123
]]></artwork>
          <t>The gyroscope can now not only be looked up in the RD, but also be reached:</t>
          <artwork><![CDATA[
Req: GET coap://rd.example.net/lookup/res?rt=core.s

Res: 2.05 Content
<coap://[2001:db8:1::1]:10123/gyroscope>;rt="core.s"
]]></artwork>
          <t>In this example, the RD has chosen to do port-based rather than host-based virtual hosting
and announces its literal IP address
as that allows clients to not send the lengthy Uri-Host option with all requests.</t>
        </section>
      </section>
      <section anchor="notes-on-stability-and-maturity">
        <name>Notes on stability and maturity</name>
        <t>Using this with UDP can be quite fragile;
the author only draws on own experience that this can work across cell-phone NATs
and does not claim that this will work over generic firewalls.</t>
        <t>[ It may make sense to have the example as TCP right away. ]</t>
      </section>
      <section anchor="security-considerations">
        <name>Security considerations</name>
        <t>An RD MAY impose additional restrictions on which endpoints can register for proxying,
and thus respond 4.01 Unauthorized to request that would pass had they not requested proxying.</t>
        <t>Attackers could do third party registrations with an attacked device's address as base URI,
though the RD would probably not amplify any attacks in that case.</t>
        <t>The RD MUST NOT reveal the address at which it reaches the registrant
except for adaequately authenticated and authorized debugging purposes,
as that address could reveal sensitive location data the registrant may wish to hide by using a proxy.</t>
        <t>Usual caveats for proxies apply.</t>
      </section>
      <section anchor="alternatives-to-be-explored">
        <name>Alternatives to be explored</name>
        <t>With the mechanisms of <xref target="I-D.ietf-core-transport-indication"/>,
an RD could also operate as a forward proxy,
and indicate its availability for that purpose in a <tt>has-proxy</tt> link it creates on its own,
and which it makes discoverable through its lookup interfaces.</t>
        <t>How a registrant opts in to that behavior,
how it selects a suitable public address (using the <tt>base</tt> attribute is tempting, but conflicts with the currently prescribed proxy behavior)
and for which scenarios this is preferable is a topic being explored.</t>
      </section>
    </section>
    <section anchor="infinite-lifetime">
      <name>Infinite lifetime</name>
      <t>An RD can indicate support for infinite lifetimes
by adding the resoruce type "TBD2" to its list of resource types.</t>
      <t>A registrant that wishes to keep its registration alive indefinitely
can set the lifetime value as "lt=inf".</t>
      <t>Registrations with infinite lifetimes never time out.
Unlike regular registrations, they are not "soft state";
the registrant can expect the RD to persist the registrations
across network changes, reboots, softare updates and that like.</t>
      <t>Typical use cases for infinite life times are:</t>
      <ul spacing="normal">
        <li>Commissioning tools (CTs) that do not return to the deployment site,
and thus can not refresh the soft state</li>
        <li>Proxy registrations whose lifetime is limited by a connection that is kept alive</li>
      </ul>
      <section anchor="example">
        <name>Example</name>
        <t>Had the example of <xref target="browser"/> discovered support for infinite lifetimes during lookup like this:</t>
        <artwork><![CDATA[
Req: GET coaps+ws://rd.example.net/.well-known/core?rt=core.rd*

Res: 2.05 Content
</rd>;rt="core.rd TBD1 TBD2";ct=40
]]></artwork>
        <t>it could register like that:</t>
        <artwork><![CDATA[
Req: POST coaps+ws://rd.example.net/rd?ep=node1234&proxy=yes&lt=inf
</gyroscope>;rt="core.s"

Res: 2.04 Created
Location: /reg/123
]]></artwork>
        <t>and never need to update the registration for as long as the websocket connection is open.</t>
        <t>(When it gets terminated, it could try renewing the registration,
but needs to be prepared for the RD to already have removed the original registration.)</t>
      </section>
    </section>
    <section anchor="limited-lifetimes">
      <name>Limited lifetimes</name>
      <t>Even if an RD supports infinite lifetimes,
it may not accept them from just any registrant.
Even more, an RD may have policies in place that require a certain frequency of updates
and thus place an upper limit on lt lower than the technical limit of 136 years.</t>
      <t>This document does not define any means of communicating lifetime limits,
but explores a few options:</t>
      <ul spacing="normal">
        <li>
          <t>Administrative channels.  </t>
          <t>
An RD that sees registrations with unreasonably long lifetimes can flag them for its operator
to take further measures.  </t>
          <t>
While sounding tediously manual,
this captures the observation that different components are configured in a softly incompatible way,
and need operator intervention (because if there were automatic means, they obviously failed).</t>
        </li>
        <li>
          <t>General advertisement of preferred lifetimes.  </t>
          <t>
When the limitations on the lifetimes are not from authorization
but from general setup,
an RD could advertise that property in a to-be-created link target attribute of its registration resource.
Different attributes could express preference or hard limits.  </t>
          <t>
This information is also available easily for registrants,
which may then heed the advice if supported,
and may notify their operators that they just started spending more resources than they were configured to.  </t>
          <t>
It is also available to tools that provision endpoints with their RD address (and parameters),
as they can use the same lookup interface.</t>
        </li>
        <li>
          <t>Per-registration information.  </t>
          <t>
For soft limits, the RD can offer the endpoint additional metadata if it queries them post-registration.
That query can use the endpoint lookup interface (where the endpoint would see additional metadata to its own registration resource)
or special media types for GETting the registration resource itself.
Either way, this requires additional round-trips on the part of endpoint.</t>
        </li>
        <li>
          <t>Hard limits informed by error codes.  </t>
          <t>
An RD can reject registrations with overly long lifetimes if the endpoint is not authorized to use such long lifetimes
with a 4.01 Unauthorized error.
The mechanisms of <xref target="RFC9290"/>,
with a to-be-defined error detail on the permissible lifetime,
can be used to propagate information back to then endpoint.  </t>
          <t>
This behavior is explicitly NOT RECOMMENDED,
because devices may crucially depend on the RD's services --
this rejection may even be the reason why the device is not configured with the new settings that would contain a shorter lifetime.</t>
        </li>
      </ul>
    </section>
    <section anchor="lookup-across-link-relations">
      <name>Lookup across link relations</name>
      <t>Resource lookup occasionally needs execute multiple queries to follow links.</t>
      <t>An RD server
(or any other server that supports <xref target="RFC6690"/> compatible lookup),
can announce support for following links in resource lookups
by announcing support for the TBD3 interface type on its resource lookup.</t>
      <t>A client can the query that server to not only provide the matched links,
but also links that are reachable over relations given in "follow" query parameters.</t>
      <section anchor="example-1">
        <name>Example</name>
        <t>Assume a node presents the following data in its &lt;.well-known/core&gt; resource
(and submitted the same to the RD):</t>
        <artwork><![CDATA[
</temp>;if="core.s";rt="example.temperature",
</t-prot>;rel="calibration-protocol";anchor="/temp",
<http://vendor.example.com/temp9000>;rel="describedby";anchor="/temp",
</hum>;if="core.s";rt="example.humidity",
</h-prot>;rel="calibration-protocol";anchor="/hum",
]]></artwork>
        <t>A lookup client can, in one query,
find the temperature sensor
and its relevant metadata:</t>
        <artwork><![CDATA[
Req: GET /rd-lookup/res?rt=example.temperature&follow=calibration-protocol&follow=describedby

<coap://node1/temp>;if="core.s";rt="example.temperature";anchor="coap://node1",
<coap://node1/t-prot>;rel="calibration-protocol";anchor="coap://node1/temp",
<http://vendor.example.com/temp9000>;rel="describedby";anchor="coap://node1/temp",
]]></artwork>
        <t>[
There is a <eref target="https://github.com/ace-wg/ace-oauth/issues/120#issuecomment-407997786">better example</eref> in an earlier stage of <xref target="I-D.tiloca-core-oscore-discovery"/>
]</t>
        <t>Given the likelihood of a CoRAL based successor to <xref target="RFC6690"/>,
this lookup variant might easily be superseeded by a
CoRAL FETCH format;
it might look like this there:</t>
        <artwork><![CDATA[
Req: FETCH /reef-lookup
Content-Format: application/template-coral+cbor
Payload:
#using core = <...>
#using reef = <...>
reef:content ?x {
  core:rt "example.temperature"
  calibration-protocol ?y {
    core:describedby ?z
  }
}

Res: 2.01 Content
Content-Format: aplication/coral+cbor
Payload:
reef:content <coap://node1/temp> {
    core:rt "example.temperature"
    calibration-protocol <coap://node1/t-prot> {
      core:describedby <http://vendor.example.com/temp9000>
    }
}
]]></artwork>
      </section>
    </section>
    <section anchor="lifetime-age">
      <name>Lifetime Age</name>
      <t>This extension is described in <xref target="I-D.amsuess-core-rd-replication"/> Section 5.2.</t>
      <t>The "provenance" extension in Section 5.1 of the same document
should probably be expressed differently to avoid using non-target link attributes.</t>
    </section>
    <section anchor="zone-identifier-introspection">
      <name>Zone identifier introspection</name>
      <t>The 'split-horizon' mechanism of <xref target="rfc9176"/>
(that registrations with link-local bases can only be read from the zone they registered on)
reduces the usability of the endpoint lookup interface for debugging purposes.</t>
      <t>To allow an administrator to read out the "show-zone-id" query parameter for endpoint and resource lookup is introduced.</t>
      <t>A Resource Directory that understands this parameter MUST NOT limit lookup results to registrations from the lookup's zone,
and MUST use <xref target="RFC6874"/> zone identifiers to annotate which zone those registrations are valid on.</t>
      <t>The RD MUST limit such requests to authenticated and authorized debugging requests,
as registrants may rely on the RD to keep their presence secret from other links.</t>
      <section anchor="example-2">
        <name>Example</name>
        <artwork><![CDATA[
Req: GET /rd-lookup/ep?show-zone-id&et=printer

Res: 2.05 Content
</reg/1>;base="coap://[2001:db8::1]";et=printer;ep="bigprinter",
</reg/2>;base="coap://[fe80::99%wlan0]";et=printer;ep="localprinter-1234",
</reg/3>;base="coap://[fe80::99%eth2]";et=printer;ep="localprinter-5678",
]]></artwork>
      </section>
    </section>
    <section anchor="proxying-multicast-requests">
      <name>Proxying multicast requests</name>
      <t>Multicast requests are hard to forward at a proxy:
Even if a media type is used
in which multiple responses can be aggregated transparently,
the proxy can not reliably know when all responses have come in.
<xref target="RFC7390"/> Section 2.9 describes the difficulties in more detail.</t>
      <t>Note that <xref target="I-D.tiloca-core-groupcomm-proxy"/> provides a mechanism
that <em>does</em> allow the forwarding of multicast requests.
It is yet to be determined what the respective pros and cons are.
Conversely, that lookup mechanism may also serve as an alternative to resource lookup on an RD.</t>
      <t>A proxy MAY expose an interface compatible with the RD lookup interface,
which SHOULD be advertised by a link to it that indicates the resource types
core.rd-lookup-res and TBD4.</t>
      <t>The proxy sends multicast requests to All CoAP Nodes (<xref target="RFC7252"/> Section 12.8)
requesting their .well-known/core files
either eagerly (ie. in regular intervals independent of queries)
or on demand
(in which case it SHOULD limit the results by applying <xref target="RFC6690"/> query filtering;
if it has received multiple query parameters it should forward the one it deems most likely to limit the results,
as .well-known/core only supports a single query parameter).</t>
      <t>In comparison to classical RD operation,
this RD behaves roughly as if it had received a simple registration
with a All CoAP Nodes address as the source address,
if such behavior were specified.
The individual registrations that result from this
neither have an explicit registration resource
nor an explicit endpoint name;
given that the endpoint lookup interface is not present on such proxies,
neither can be queried.</t>
      <t>Clients that would intend to do run a multicast discovery operation behind the proxy
can then instead query that resource lookup interface.
They SHOULD use observation on lookups,
as an on-demand implementation MAY return the first result before others have arrived,
or MAY even return an empty link set immediately.</t>
      <section anchor="example-3">
        <name>Example</name>
        <artwork><![CDATA[
Req: GET coap+ws://gateway.example.com/.well-known/core?rt=TBD4

Res: 2.05 Content
</discover>;rt="core.rd-lookup-res TBD4";ct=40

Req: GET coap+ws://gateway.example.com/discover?rt=core.s
Observe: 0

Res: 2.05 Content
Observe: 0
Content-Format: 40
(empty payload)
]]></artwork>
        <t>At the same time, the proxy sends out multicast requests on its interfaces:</t>
        <artwork><![CDATA[
Req: GET coap://ff05::fd/.well-known/core?rt=core.s

Res (from [2001:db8::1]:5683): 2.05 Content
</temp>;ct="0 112";rt="core.s"

Res (from [2001:db8::2]:5683): 2.05 Content
</light>;ct="0 112";rt="core.s"
]]></artwork>
        <t>upon receipt of which it sends out a notification to the websocket client:</t>
        <artwork><![CDATA[
Res: 2.05 Content
Observe: 1
Content-Format: 40
<coap://[2001:db8::1]/temp>;ct="0 112";rt="core.s";anchor="coap://[2001:db8::1]",
<coap://[2001:db8::2]/light>;ct="0 112";rt="core.s";anchro="coap://[2001:db8::2]"
]]></artwork>
      </section>
    </section>
    <section anchor="opportunistic-rd">
      <name>Opportunistic RD</name>
      <t>An application that wants to advertise its resources in Resource Directory
can find itself in a network that has no RD deployed.
It may be able to start an RD on its own to fill in that gap until an explicitly configured one gets installed.</t>
      <t>This bears the risk of having competing RDs on the same network,
where resources registered at one can not be discovered on the other.
To mitigate that, such Opportunistic Resource Directories should follow those steps:</t>
      <ul spacing="normal">
        <li>
          <t>The RD chooses its own Opportunistic Capability value.
That integer number is an estimate of number of target attributes it expects to be able to store,
where in absence of better estimates one would assume that a registration contains 16 links,
and each links contains three target attributes each with an eight byte key and a 16 byte value.  </t>
          <t>
The Opportunistic Capability value is advertised as a TBD5-cap= target attribute on the registration resource.</t>
        </li>
        <li>
          <t>The RD chooses its own Opportunistic Tie-Break value.
That integer number needs no other properties than being likely to be different
even for two instances of the same device being started;
numeric forms of MAC addresses or random numbers make good candidates.  </t>
          <t>
The Opportunistic Capability value is advertised as a TBD5-tie= target attribute on the registration resource.</t>
        </li>
        <li>The Opportunistic RD, before advertising its resources, performs RD discovery itself,
using at least all the discovery paths it may become discoverable on itself.</li>
        <li>
          <t>If the Opportunistic RD finds no other RD,
or if the RD it finds is less capable than itself,
it can start advertising itself as a Resource Directory.  </t>
          <t>
An RD is called more capable than another if its TBD5-cap value is greater than the other's,
or if its TBD5-tie value is greater than the other's if the former results in a tie.
Absent or unparsable attributes are considered greater than any present attribute.  </t>
          <t>
In case an RD observes a tie even after evaluating the tie breaker,
it may change its Opportunistic Tie-Break value if that was picked randomly,
or reevaluate its life choices if it uses its own MAC address.</t>
        </li>
        <li>
          <t>A running Opportunistic RD needs to perform discovery for other RDs repeatedly.
If it discovers a more capable RD,
it stops advertising its own resources.
It should continue to serve lookup requests,
but refuse any new registration or registration updates
(which will trigger the registrant endpoints to look for a new RD).  </t>
          <t>
An inactive Opportunistic RD will be notified of the highter capability RD's shutdown
by the expiry of whatever it may be started to advertise that was now advertised there;
see below for possible improvements.</t>
        </li>
        <li>
          <t>An RD that discovers an Opportunistic RD of lower capability may speed up the transition process
by (not mutually exclusive) two ways
          </t>
          <ul spacing="normal">
            <li>It can register its own (registration) resource(s) into the lower capability directory.
That RD can take that as having discovered a higher capability RD and stop advertising.</li>
            <li>It can expose resources and registrations of the lower capability directory
using the methods described in <xref target="I-D.amsuess-core-rd-replication"/>.</li>
          </ul>
        </li>
        <li>An Opportunistic RD that yields to a more capable RD may ease the transition
by attempting to register its active registrations at the more capable RD,
taking the role of a CT.
The lifetimes picked for those must not exceed the remaining lifetime of its registrations,
and it must not renew those registrations.</li>
      </ul>
      <t>Future iterations of this document may want to cut down on the possibilities listed above.</t>
      <t>Some ideas are around for making the shutdown of a commissioned or otherwise high-capability RD more graceful,
but they still have some problems</t>
      <ul spacing="normal">
        <li>Setting a commissioned or high-capability RD's Capability to zero in preparation of the shutdown
may create loops in any distributed lookups.</li>
        <li>Asking the lower capability RD to register its registration resource
(even though not otherwise advertised) at the higher capability RD
still creates a situation where clients may find two RDs running simultaneously,
and we can't expect clients to make any decisions based on TBD5 values.</li>
        <li>Asking the higher capability RD to register its registration resource
with the lower capability RD contradicts the current recommendation for the
passive Opportunistic RD to not accept registrations / renewals.
Also, the deployed RD may not know that Opportunistic RDs are a thing.</li>
        <li>Advertising an almost-but-not-quite rt= value on passive registration resources may be an option,
but needs to be thought through thoroughly.</li>
      </ul>
      <t>Installations of Opportunistic RDs are at special risk of resource exhaustion
because they are not sized with their actual deployment in mind,
but rely on defaults set by the application that starts the RD.
Opportunistic RDs should only be started if the application's administrator
can be informed in a timely fashion when the RD's resources are nearing exhaustion;
guidance towards installing a more capable RD on the network should be provided in that case.</t>
      <section anchor="applications">
        <name>Applications</name>
        <ul spacing="normal">
          <li>Group managers using <xref target="I-D.tiloca-core-oscore-discovery"/> can ship its own low-priority Opportunistic RD
to announce its join resources.
This provides benefits over announcing them on multicast discovery
if the network can efficiently route requests to the All CoAP Resource Directories multicast address
(so group members get a response back from an early focused request to all RDs
rather than falling back to multicasting All CoAP Nodes for <tt>?rt=osc.j&amp;...</tt>),
or if discovery of the group's multicast address is used.</li>
          <li>
            <t>Administrative tools that try to provide a broad overview of a network's CoAP devices
could offer to open an Opportunistic RD if they find no active RD on the network
(but should ask the user in interactive scenarios).  </t>
            <t>
That allows them to see devices that newly join the network quickly (by observing their own or the found RD),
rather than relying periodic multicasts.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="registrations-that-update-dns-records">
      <name>Registrations that update DNS records</name>
      <t>An RD that is provisioned with means to update a DNS zone
and that has a known mapping from registrants to host names
could use registrations to populate DNS records from registration base addresses.</t>
      <t>When combined with <xref target="reverseproxy"/>,
these records point to the RD's built-in proxy rather than to the base address.</t>
      <t>This mechanism is not described in further detail yet as it does not interact well yet
with how the <tt>base</tt> registration attribute interacts with the proxy announcements of <xref target="I-D.ietf-core-transport-indication"/>.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="rfc9176">
          <front>
            <title>Constrained RESTful Environments (CoRE) Resource Directory</title>
            <author fullname="C. Amsüss" initials="C." role="editor" surname="Amsüss">
              <organization/>
            </author>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="M. Koster" initials="M." surname="Koster">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. van der Stok" initials="P." surname="van der Stok">
              <organization/>
            </author>
            <date month="April" year="2022"/>
            <abstract>
              <t>In many Internet of Things (IoT) applications, direct discovery of resources is not practical due to sleeping nodes or networks where multicast traffic is inefficient. These problems can be solved by employing an entity called a Resource Directory (RD), which contains information about resources held on other servers, allowing lookups to be performed for those resources. The input to an RD is composed of links, and the output is composed of links constructed from the information stored in the RD. This document specifies the web interfaces that an RD supports for web servers to discover the RD and to register, maintain, look up, and remove information on resources. Furthermore, new target attributes useful in conjunction with an RD are defined.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9176"/>
          <seriesInfo name="DOI" value="10.17487/RFC9176"/>
        </reference>
        <reference anchor="I-D.amsuess-core-rd-replication">
          <front>
            <title>Resource Directory Replication</title>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <date day="11" month="March" year="2019"/>
            <abstract>
              <t>   Discovery of endpoints and resources in M2M applications over large
   networks is enabled by Resource Directories, but no special
   consideration has been given to how such directories can scale beyond
   what can be managed by a single device.

   This document explores different ways in which Resource Directories
   can be scaled up from single network to enterprise and global scale.
   It does not attempt to standardize any of those methods, but only to
   demonstrate the feasibility of such extensions and to provide
   terminology and exploratory groundwork for later documents.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-amsuess-core-rd-replication-02"/>
        </reference>
        <reference anchor="RFC6874">
          <front>
            <title>Representing IPv6 Zone Identifiers in Address Literals and Uniform Resource Identifiers</title>
            <author fullname="B. Carpenter" initials="B." surname="Carpenter">
              <organization/>
            </author>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="R. Hinden" initials="R." surname="Hinden">
              <organization/>
            </author>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document describes how the zone identifier of an IPv6 scoped address, defined as &lt;zone_id&gt; in the IPv6 Scoped Address Architecture (RFC 4007), can be represented in a literal IPv6 address and in a Uniform Resource Identifier that includes such a literal address.  It updates the URI Generic Syntax specification (RFC 3986) accordingly.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6874"/>
          <seriesInfo name="DOI" value="10.17487/RFC6874"/>
        </reference>
        <reference anchor="RFC7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC8323">
          <front>
            <title>CoAP (Constrained Application Protocol) over TCP, TLS, and WebSockets</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="S. Lemay" initials="S." surname="Lemay">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <author fullname="B. Silverajan" initials="B." surname="Silverajan">
              <organization/>
            </author>
            <author fullname="B. Raymor" initials="B." role="editor" surname="Raymor">
              <organization/>
            </author>
            <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="RFC6887">
          <front>
            <title>Port Control Protocol (PCP)</title>
            <author fullname="D. Wing" initials="D." role="editor" surname="Wing">
              <organization/>
            </author>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="M. Boucadair" initials="M." surname="Boucadair">
              <organization/>
            </author>
            <author fullname="R. Penno" initials="R." surname="Penno">
              <organization/>
            </author>
            <author fullname="P. Selkirk" initials="P." surname="Selkirk">
              <organization/>
            </author>
            <date month="April" year="2013"/>
            <abstract>
              <t>The Port Control Protocol allows an IPv6 or IPv4 host to control how incoming IPv6 or IPv4 packets are translated and forwarded by a Network Address Translator (NAT) or simple firewall, and also allows a host to optimize its outgoing NAT keepalive messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6887"/>
          <seriesInfo name="DOI" value="10.17487/RFC6887"/>
        </reference>
        <reference anchor="I-D.ietf-core-transport-indication">
          <front>
            <title>CoAP Protocol Indication</title>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <date day="11" month="July" year="2022"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP, [RFC7252]) is available
   over different transports (UDP, DTLS, TCP, TLS, WebSockets), but
   lacks a way to unify these addresses.  This document provides
   terminology and provisions based on Web Linking [RFC8288] to express
   alternative transports available to a device, and to optimize
   exchanges using these.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-transport-indication-01"/>
        </reference>
        <reference anchor="RFC7556">
          <front>
            <title>Multiple Provisioning Domain Architecture</title>
            <author fullname="D. Anipko" initials="D." role="editor" surname="Anipko">
              <organization/>
            </author>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document is a product of the work of the Multiple Interfaces Architecture Design team.  It outlines a solution framework for some of the issues experienced by nodes that can be attached to multiple networks simultaneously.  The framework defines the concept of a Provisioning Domain (PvD), which is a consistent set of network configuration information.  PvD-aware nodes learn PvD-specific information from the networks they are attached to and/or other sources.  PvDs are used to enable separation and configuration consistency in the presence of multiple concurrent connections.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7556"/>
          <seriesInfo name="DOI" value="10.17487/RFC7556"/>
        </reference>
        <reference anchor="RFC8801">
          <front>
            <title>Discovering Provisioning Domain Names and Data</title>
            <author fullname="P. Pfister" initials="P." surname="Pfister">
              <organization/>
            </author>
            <author fullname="É. Vyncke" initials="É." surname="Vyncke">
              <organization/>
            </author>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <author fullname="W. Shao" initials="W." surname="Shao">
              <organization/>
            </author>
            <date month="July" year="2020"/>
            <abstract>
              <t>Provisioning Domains (PvDs) are defined as consistent sets of network configuration information. PvDs allows hosts to manage connections to multiple networks and interfaces simultaneously, such as when a home router provides connectivity through both a broadband and cellular network provider.</t>
              <t>This document defines a mechanism for explicitly identifying PvDs through a Router Advertisement (RA) option. This RA option announces a PvD identifier, which hosts can compare to differentiate between PvDs. The option can directly carry some information about a PvD and can optionally point to PvD Additional Information that can be retrieved using HTTP over TLS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8801"/>
          <seriesInfo name="DOI" value="10.17487/RFC8801"/>
        </reference>
        <reference anchor="RFC9290">
          <front>
            <title>Concise Problem Details for Constrained Application Protocol (CoAP) APIs</title>
            <author fullname="T. Fossati" initials="T." surname="Fossati">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="October" year="2022"/>
            <abstract>
              <t>This document defines a concise "problem detail" as a way to carry machine-readable details of errors in a Representational State Transfer (REST) response to avoid the need to define new error response formats for REST APIs for constrained environments. The format is inspired by, but intended to be more concise than, the problem details for HTTP APIs defined in RFC 7807.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9290"/>
          <seriesInfo name="DOI" value="10.17487/RFC9290"/>
        </reference>
        <reference anchor="RFC6690">
          <front>
            <title>Constrained RESTful Environments (CoRE) Link Format</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <date month="August" year="2012"/>
            <abstract>
              <t>This specification defines Web Linking using a link format for use by constrained web servers to describe hosted resources, their attributes, and other relationships between links.  Based on the HTTP Link Header field defined in RFC 5988, the Constrained RESTful Environments (CoRE) Link Format is carried as a payload and is assigned an Internet media type.  "RESTful" refers to the Representational State Transfer (REST) architecture.  A well-known URI is defined as a default entry point for requesting the links hosted by a server.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6690"/>
          <seriesInfo name="DOI" value="10.17487/RFC6690"/>
        </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">
              <organization>Consultant</organization>
            </author>
            <date day="8" month="March" year="2023"/>
            <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-13"/>
        </reference>
        <reference anchor="RFC7390">
          <front>
            <title>Group Communication for the Constrained Application Protocol (CoAP)</title>
            <author fullname="A. Rahman" initials="A." role="editor" surname="Rahman">
              <organization/>
            </author>
            <author fullname="E. Dijk" initials="E." role="editor" surname="Dijk">
              <organization/>
            </author>
            <date month="October" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for constrained devices and constrained networks. It is anticipated that constrained devices will often naturally operate in groups (e.g., in a building automation scenario, all lights in a given room may need to be switched on/off as a group). This specification defines how CoAP should be used in a group communication context.  An approach for using CoAP on top of IP multicast is detailed based on existing CoAP functionality as well as new features introduced in this specification.  Also, various use cases and corresponding protocol flows are provided to illustrate important concepts.  Finally, guidance is provided for deployment in various network topologies.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7390"/>
          <seriesInfo name="DOI" value="10.17487/RFC7390"/>
        </reference>
        <reference anchor="I-D.tiloca-core-groupcomm-proxy">
          <front>
            <title>Proxy Operations for CoAP Group Communication</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Esko Dijk" initials="E." surname="Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <date day="28" month="February" year="2023"/>
            <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 over IP
   multicast to a group of servers.  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>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tiloca-core-groupcomm-proxy-08"/>
        </reference>
      </references>
    </references>
    <section anchor="change-log">
      <name>Change log</name>
      <t>Since -07:</t>
      <ul spacing="normal">
        <li>Update references.</li>
      </ul>
      <t>Since -06:</t>
      <ul spacing="normal">
        <li>Add sketch for DNS updates.</li>
        <li>Add sketch for forward proxying.</li>
        <li>Fix erroneous section numbers.</li>
      </ul>
      <t>Since -05:</t>
      <ul spacing="normal">
        <li>Add section on Limited Lifetimes.</li>
        <li>Point out limitations to applications that use reverse proxying.</li>
        <li>Minor reference and bugfix updates.</li>
      </ul>
      <t>Since -04:</t>
      <ul spacing="normal">
        <li>
          <t>Minor adjustments:
          </t>
          <ul spacing="normal">
            <li>Mention LwM2M and how it is already doing RD proxying.</li>
            <li>Tie proxying in with infinite lifetimes.</li>
            <li>Remove note on not being able to switch protocols: RDs that support some future protocol negotiation can do that.</li>
            <li>Point out that there is no Uri-Host from the RD proxy to the EP, but there could be.</li>
            <li>Infinite lifetimes: Take up CTs more explicitly from RD discussion.</li>
            <li>Start exploring interactions with groupcomm-proxy.</li>
          </ul>
        </li>
      </ul>
      <t>Since -03:</t>
      <ul spacing="normal">
        <li>Added interaction with PvD (Provisioning Domains)</li>
      </ul>
      <t>Since -02:</t>
      <ul spacing="normal">
        <li>Added abstract</li>
        <li>Added example of CoRAL FETCH to Lookup across link relations section</li>
      </ul>
      <t>Since -01:</t>
      <ul spacing="normal">
        <li>Added section on Opportunistic RDs</li>
      </ul>
      <t>Since -00:</t>
      <ul spacing="normal">
        <li>Add multicast proxy usage pattern</li>
        <li>ondemand proxying: Probing queries must be sent from a different address</li>
        <li>proxying: Point to RFC7252 to describe how the actual proxying happens</li>
        <li>proxying: Describe this as a last-resort options and suggest attempting PCP first</li>
      </ul>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>[ Reviews from: Jaime Jimenez ]</t>
      <t><xref target="limited-lifetimes"/> was inspired by Ben Kaduk's comments from reviewing <xref target="rfc9176"/>.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA61965LbRpLufzwFth3H7tY2qe7WnRrZ2+6Wx9qVLIUsxcRZ
j2MNAkWyRiDARQFN0Qq92f47L3byy8wqFEBKlnd3YmJGTQJ1ycr68p6cTCZJ
a9vSzNKr+vXT9LVxddfkJr22jcnbutmlT9+3pnK2rlxS1HmVrenZoskW7SRb
u844N8nrxkwafXNS+DcnJrw5OXuYuDariv/IyrqiAdqmM4ndNPwv116cnT06
u0jyrJ2l5v0m2dhZkqaubWxOn3yzM+4b+rut88Efhdm0K/rkDv52u3VjFq5/
wNVNO/wkr9ebLB6QPlibqqVH6AO80s37Z6oaj9Aaq7q1C2sK/SxrTDZLn1Wt
aSrTJtulkC55t5V/nKZ/M/P0ua3e2Wp5GlPU5fWNaXanB6h8mr5q6ve7JOva
Vd3MkklqK1rW1TS9XLv/918OqxPSX60a61qbVdE3Zp3Zcpbm/qt/0ZOZ0m6S
qm7WWWtvDEjaLPJH5w/u45/PJtfT4QkWdIib0tIp0JnNElst+leTyWSSZnM6
EqJOklwS7cqS1k5PpvUi7Y+aDiZtV+YQJ334oNN//Ji0q6xNc9oFs0VKo9BL
tknrbXWa4pNVdmPSqk7z0mRNuujarjFElNRtTE7HIYukc2unsra1LYrSJMlX
OJqmLjpZ24evbPTnxyR5s7IuJUbucPLppq5LR6yyNl+0hSTaQspbWNvlqk3n
Ju2cWXRlOu/asPRNmeVYc4LB6sYubZWVYe4p1mJ2YYQci7BVYW9s0UXPuZSO
IX329M0P4M+1dVjjaersekP7bczS4lBaXritZOHX6ausIXYhHqVd8BO7lFb7
7PKny1NaSrps6i09TRvNUrfKNibdrkxjsNIdHwvtiGdrW1OkmaPHhgfegnC0
hcs2tbTEvGsa0JNOszWntAgQGSCR2v13bWEyvPsVrY0uhDPC/Glj/pO4kUb7
8FUjX2zwOR3a31amomH8Zmki+Sc9g21lB2+U9adDF1jOJEtcZ9tsXtI/i4IQ
y+EhbJdOT3Y5z1z4cpq82W2I00qaLXNC37zsCkPUobuNK0pboZd+unyTbi3d
XDr8vAa/lSmuOrFX0+L4tllTAA0SIn1dlTsdgFdCZ1BvaHv08rLGpzRCJcRy
yTEtioiwpMNMm66qBtNuCWfmdJCOZupaW9rf8fVVfflKZicc+rnO35mWbt53
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
f8uKDlqO/8FHL+wwvmjSIQt9mvx/XfQMwRRzAAA=

-->

</rfc>
