<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.13 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-duffy-csmp-07" category="info" submissionType="independent" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.21.0 -->
  <front>
    <title abbrev="CoAP Simple Management Protocol">Cisco's CoAP Simple Management Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-duffy-csmp-07"/>
    <author initials="P." surname="Duffy (ed)" fullname="Paul Duffy">
      <organization>Cisco Systems, Inc.</organization>
      <address>
        <email>paduffy@cisco.com</email>
      </address>
    </author>
    <date year="2024" month="June" day="06"/>
    <area>General</area>
    <workgroup>Independant Submission</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 48?>

<t>CoAP Simple Management Protocol (CSMP) is purpose-built to provide lifecycle management for resource constrained IoT devices deployed within large-scale, bandwidth constrained IoT networks. CSMP offers an efficient transport and message encoding supporting classic NMS functions such as device on-boarding, device configuration, device status reporting, securing the network, etc.</t>
      <t>This document describes the design and operation of CSMP.  This document does not represent an IETF consensus.</t>
    </abstract>
  </front>
  <middle>
    <?line 54?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Low Power Wide Area Network (LPWAN) technologies provide long range, low power connectivity for Internet of Things (IoT) applications.  LPWANs typically operate over distances of several kilometers with link bandwidths as low as 10s of Kbps. LPWAN devices are often compute, storage and power constrained (often optimized to operate for years on a single battery charge).</t>
      <t>This specification describes the design and operation of Cisco's CSMP which today is in-field managing approximately 25 million LPWAN devices deployed by a number of vendors. These devices are supporting a variety of critical infrastructure use cases for electric, water, and gas utilities along with a variety of smart cities use cases (municipal lighting, etc.).</t>
      <t>There is industry demand that CSMP managed devices be more quickly and widely available for an ever expanding set of use cases. This specification in intended to promote development of interoperable CSMP device and management system implementations. It is anticipated that this specification will be referenced by several industry fora.</t>
      <t>CSMP features include:</t>
      <ol spacing="normal" type="1"><li>
          <t>Onboarding.  Device startup registration and capabilities announcement with an NMS.</t>
        </li>
        <li>
          <t>Configuration management. Device acquisition of configuration from the NMS. Subsequent NMS configuration reads and updates to the device.</t>
        </li>
        <li>
          <t>Metrics reporting. Periodic device metrics reporting to the NMS. NMS on-demand metrics requests to a device.</t>
        </li>
        <li>
          <t>NMS commanded device operations. NMS command issuance to a single device or group of devices.</t>
        </li>
        <li>
          <t>Secure device firmware update.</t>
        </li>
      </ol>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
    </section>
    <section anchor="protocol-specification">
      <name>Protocol Specification</name>
      <t>CSMP is a usage profile of the Constrained Application Protocol <xref target="RFC7252"/>, which is designed for implementing RESTful messaging for resource constrained devices.  It is fair to view CoAP as a binary encoded functional subset of HTTP operating over UDP which also supports multicast messaging.  Resources (addressable objects) transported within CSMP message payloads are implemented using the Protocol Buffers compact binary encoding <xref target="PB"/>.</t>
      <t>It is assumed the reader is familiar with:</t>
      <ol spacing="normal" type="1"><li>
          <t>The basic concepts of RESTful architecture.</t>
        </li>
        <li>
          <t>The operation, message formats, and terminology of CoAP <xref target="RFC7252"/>.</t>
        </li>
        <li>
          <t>Protocol Buffers <xref target="PB"/>, which is used to describe and encode CSMP message payloads.</t>
        </li>
        <li>
          <t>OpenAPI <xref target="OPENAPI"/> is the interface definition language used to define CSMP Device and NMS interfaces.</t>
        </li>
      </ol>
      <section anchor="coap-usage-profile">
        <name>CoAP Usage Profile</name>
        <t>The NMS and devices communicate directly using CoAP. Acting as a CoAP client, a device issues RESTful requests to read or modify specific resources (objects) exposed by the NMS server.  Likewise, the device serves requests from the NMS to manipulate resources exposed by the device.</t>
        <t>CSMP specializes the usage of CoAP in the following ways:</t>
        <ol spacing="normal" type="1"><li>
            <t>CSMP does not use the Token capabilities described in <xref target="RFC7252"/>.  Request/response messaging MUST be implemented using the "synchronous" form of a CON request with response piggybacked in the subsequent ACK.  A client MUST elide the Token field from the request message.  The server SHOULD ignore the Token if received from a client request.</t>
          </li>
          <li>
            <t>Due to high latencies typical of LPWAN technologies, a client MUST NOT use the CoAP retransmission model when sending a CON message to a server. After sending a CON message, the client MUST accept a response from the server at any time up until the device sends its next CON message (containing a new CoAP Message ID).</t>
          </li>
        </ol>
      </section>
      <section anchor="interface-specification">
        <name>Interface Specification</name>
        <t>CSMP defines a CSMP Device interface and a CSMP NMS interface. Each of these interfaces defines a set of resources (objects), the addresses at which these resources exist (URLs), and the methods (GET, PUT, POST, DELETE) which may be used to manipulate the resources to implement device management operations. The CSMP Device and CSMP NMS interfaces are expressed using the OpenAPI interface definition language.</t>
        <t>OpenAPI's heritage is the expression of interfaces typically constructed with HTTP and JSON.  This document defines a few conventions required to express a CoAP interface in OpenAPI:</t>
        <ol spacing="normal" type="1"><li>
            <t>The generic RESTful verb designators GET, PUT, POST, and DELETE are used along with the text presentation of a resource's URL. This is done for developer readability.  An actual implementation must properly encode the CoAP message Code field along with the Uri-Host, Uri-Port, Uri-Path, and Uri-Query options as described in <xref target="RFC7252"/>.</t>
          </li>
          <li>
            <t>CoAP Response codes of the form X.YZ are expressed in the OpenAPI as XYZ (the actual response code  is scaled by 100 in the OpenAPI rendering).</t>
          </li>
          <li>
            <t>Placeholder objects are defined in OpenAPI to represent the Protocol Buffer binary objects which will be transported in CoAP messaging payloads.  The actual binary objects are defined in a separate Protocol Buffer file <xref target="csmpTlvs"/>.</t>
          </li>
          <li>
            <t>CoAP supports the NON messaging pattern.  OpenAPI syntax always requires a response be defined.  The CSMP interface definitions will note when a response is for a COAP NON request and not an actual CoAP response (no response is sent).</t>
          </li>
        </ol>
        <section anchor="csmpDev">
          <name>CSMP Device Interface</name>
          <t>A CSMP device MUST implement the interface described below.  The interface definition is also available at <xref target="CSMPDEV"/> which is directly importable into development tooling.</t>
          <t>Various forms of the GET method are used for retrieving registration information, device information, and monitoring information from the devices.  Various forms of the POST method are used to deliver configuration and commands to devices.   Usage of this interface is detailed in the sections which follow.</t>
          <artwork><![CDATA[
openapi: 3.0.0
info:
  description: |
    CSMP Device Interface.  RFC 2119 language is used to indicate 
    normative statements.
  version: 1.0.1
  title: CSMP Device Interface.
servers:
  #
  # Placeholder for the actual device-url
  #
  - url: 'https://CsmpDevice/1.0.1'
  
paths:
  /c:
    get:
      description: |
        Retrieve TlvIndex TLV or specific list of TLVs from a device.
      parameters:
      - $ref: '#/components/parameters/qOption'
      - $ref: '#/components/parameters/aOption'
      - $ref: '#/components/parameters/rOption'
      
      responses:
        '205':
          description: |
            Successful return of requested TLVs or TlvIndex. 
            Device MUST return the requested specific TLVs when 
            the "q" param is included (full tables are allowed). 
            Device MUST return only TlvIndex when the "q" param 
            is omitted.
          content:
            application/octet-stream:
              schema:
                oneOf:
                - $ref: 'https://TLVsGETFromDevice'
                - $ref: 'https://TlvIndex' 
        '400':
          description: Bad Request.
        '401':
          description: Unauthorized.
        '402':
          description: Bad option.
        '403':
          description: TLV not found, response won't fit in MTU.
        '404':
          description: Not found.          
        '405':
          description: Method not allowed.
          
    post:
      description: Process TLV updates from the NMS.  
        The q option MUST NOT be used. 
        A device MUST process the following TLVs (if present, in order)
        1. Signature - verify the message signature.
        2. SignatureValidity - verify if the signature is still valid. 
        3. GroupMatch - confirm device belongs indicated group.
        4. The TLVs to be updated.
      parameters:
      - $ref: '#/components/parameters/aOption'
      - $ref: '#/components/parameters/rOption'
      
      requestBody:
        description: One or more TLVs to be POSTed to the device.
        required: true
        content:
          application/octet-stream:
            schema:
              $ref: 'https://TLVsPOSTableToDevice'
      responses:
        '201':
          description: TLVs have been updated.
        '400':
          description: Bad Request.
        '401':
          description: Unauthorized.
        '402':
          description: Bad option.
        '403':
          description: Forbidden.
        '404':
          description: Not found.          
        '405':
          description: Method not allowed.
          
  /c/{tlvIdPath}:
    get:
      description: |
        Retrieve single TLV from a device.    
      parameters:
      - $ref: '#/components/parameters/tlvIdPath'
      - $ref: '#/components/parameters/aOption'
      - $ref: '#/components/parameters/rOption'

      responses:
        '205':
          description: Return the requested TLV.  Full table retreival 
            is allowed.
          content:
            application/octet-stream:
              schema:
                $ref: 'https://TLVsGETFromDevice'
        '400':
          description: Bad Request.
        '401':
          description: Unauthorized.
        '402':
          description: Bad option.
        '403':                
          description: TLV not found, response won't fit in MTU.          
        '404':
          description: Not found.          
        '405':
          description: Method not allowed.          
    #
    # Note that POST is not permitted on this URL.
    #
#
# Query parameters used for device requests.
#
components:  
  parameters:
    qOption:
      description: Q option for request to device for one or  
        more specific TLVs. When present in a request, the 
        response payload MUST contain the requested TLVs. 
        If a TLV does not exist on the device, it MUST NOT be 
        returned in the response and no error should be indicated.
      in: query
      name: q
      required: false
      schema:
        type: string
        description: Format is <tlvID1>+<tlvID2>+<tlvID3>+...  
    aOption:
      description: |
        A option. When omitted, the request MUST be CON. 
        When present, request MUST be NON and the device 
        MUST wait random interval from time of receipt up 
        to "a" seconds before responding with a NON POST 
        to <nms-url>/c. This form is often used with multicast
        requests to devices, but may also be used for unicast 
        requests to devices.
      in: query
      name: a
      required: false
      schema:
        type: integer
        description: The device will wait random interval from 
          receipt up to "a" seconds before sending.
    rOption:
      description: |
        R option MAY be used with the A option to indicate device 
        MUST respond with a NON POST to specified URL (overriding 
        <nms-url>/c).
      in: query
      name: r
      required: false
      schema:
        type: string    

    tlvIdPath:
      description: Path param specifying TLV ID.
      in: path
      name: tlvIdPath
      required: true 
      schema:
        type: integer
]]></artwork>
        </section>
        <section anchor="csmpNms">
          <name>CSMP NMS Interface</name>
          <t>A CSMP NMS MUST implement the interface described below.  The interface definition is also available at <xref target="CSMPNMS"/> which is directly importable into development tooling.</t>
          <t>Various forms of the POST method are used for device registration, device metrics reporting, and asynchronous GET responses (resulting from a request including the "a" option and default response URL). Usage of this interface is detailed in the sections which follow.</t>
          <artwork><![CDATA[
openapi: 3.0.0
info:
  description: CSMP NMS Interface. RFC 2119 language is used to 
    indicate normative statements. 
  version: 1.0.1
  title: CSMP NMS Interface

servers:
  #
  # Placeholder for the actual nms-url.
  #
  - url: 'https://CsmpNms/1.0.0'
  
paths:
  /r:
    post:
      description: Device registration POST to the NMS. 
        RequestBody MAY include any of the RegistrationRequest
        TLVs (see CsmpComponents). RequestBody MUST include 
        DeviceID and CurrentTime TLVs. POSTs to this address MUST 
        be CON (acknowledged).
      requestBody:
        required: true
        content:
          application/octet-stream:
            schema:
              $ref: 'https://RegistrationRequestTLVs'
      responses:
        '203':
          description: Successful registration response to device. 
            The response MAY include any of the RegistrationResponse 
            TLVs (see CsmpComponents).
          content:
            application/octet-stream:
              schema:
                $ref: 'https://RegistrationResponseTLVs'
        '403':
          description: Duplicate DeviceID was received or DeviceID
            was not recognized or authorized by the NMS.  
            There is no payload in this response.
        '404':
          description: Multiple Session IDs were found for the device.  
            There is no payload for this response.
  /c:
    post:
      description: Devices POST periodic metrics, command responses, 
        events, and asychronous GET responses to the NMS. A POST to 
        this address MUST be NON (non acknowledged... to avoid 
        excessive acknowledgement, 4.03 or 4.04 conditions are handled
        silently by the NMS). RequestBody MAY include any of 
        TLVsPOSTAbleToNms TLVs (see CsmpComponents).  The RequestBody 
        MUST include the CurrentTime and SessionID TLVs 
        (see CsmpComponents).  
      requestBody:
        required: true
        content:
          application/octet-stream:
            schema:
              $ref: 'https://TLVsPostAbleToNMS'
      responses:
        '100':
          description: There is no response to this (NON) request 
            (100 is used to indicate no response).
]]></artwork>
        </section>
        <section anchor="csmpComp">
          <name>CSMP Common Components.</name>
          <t>This section contains definitions common to both the CSMP Device and NMS interfaces. The definitions are also available at <xref target="CSMPCOMP"/> which is directly importable into development tooling.</t>
          <artwork><![CDATA[
# OpenAPI version identifier - required for OpenAPI 3.0 domains
openapi: 3.0.0

info:
  title: CSMP Components
  description: Common components for CSMP APIs
  version: '1.0'

components:
  schemas:
    TLVsGetAbleFromDevice:
      description: |
        TLVs which are GET-able from a <device-url>/c.
        Metrics and settings.
      anyOf:
      - $ref: '#/components/schemas/TlvIndex'
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'  
      - $ref: '#/components/schemas/ReportSubscribe'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/IPRoute'
      - $ref: '#/components/schemas/CurrentTime'
      - $ref: '#/components/schemas/RPLSettings' 
      - $ref: '#/components/schemas/Uptime'
      - $ref: '#/components/schemas/InterfaceMetrics'
      - $ref: '#/components/schemas/IPRouteRPLMetrics'  
      - $ref: '#/components/schemas/Ieee8021xStatus'
      - $ref: '#/components/schemas/Ieee80211iStatus'  
      - $ref: '#/components/schemas/WPANStatus'
      - $ref: '#/components/schemas/DHCP6ClientStatus'
      - $ref: '#/components/schemas/NMSSettings'
      - $ref: '#/components/schemas/NMSStatus'
      - $ref: '#/components/schemas/Ieee8021xSettings'
      - $ref: '#/components/schemas/Ieee802154BeaconStats'
      - $ref: '#/components/schemas/RPLInstance'
      - $ref: '#/components/schemas/FirmwareImageInfo'  
      - $ref: '#/components/schemas/SysResetStats'
      - $ref: '#/components/schemas/MplStats'
      - $ref: '#/components/schemas/RPLStats' 
      - $ref: '#/components/schemas/DHCP6Stats'
      - $ref: '#/components/schemas/EventReport'  
      - $ref: '#/components/schemas/EventIndex'
      - $ref: '#/components/schemas/EventSubscribe'
      - $ref: '#/components/schemas/EventStats'
      - $ref: '#/components/schemas/NetworkRole'  
      - $ref: '#/components/schemas/NetStat'

    RegistrationRequestTLVs:
      description: |
        TLVs which may be contained in a registration POST request 
        to the NMS.
      anyOf:
      - $ref: '#/components/schemas/DeviceID'
      - $ref: '#/components/schemas/CurrentTime'
              
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/NMSStatus'
      - $ref: '#/components/schemas/WPANStatus'
      - $ref: '#/components/schemas/RPLSettings'
                
      - $ref: '#/components/schemas/SessionID'
      - $ref: '#/components/schemas/GroupInfo'
      - $ref: '#/components/schemas/ReportSubscribe'

    RegistrationResponseTLVs:
      description: |
        TLVs which may be contained in a registration response from 
        the NMS.
      anyOf:
      - $ref: '#/components/schemas/SessionID'
      - $ref: '#/components/schemas/GroupAssign'
      - $ref: '#/components/schemas/ReportSubscribe'
      - $ref: '#/components/schemas/DescriptionRequest'
      - $ref: '#/components/schemas/NMSRedirectRequest'

    TLVsPostAbleToNMS:
      description: |
        TLVs which may be POSTed to <nms-url>/c
        There are several situations under which this can occur ...
        1. Periodic metrics reports from a device.
        2. Command responses from a device.
        3. Asynchronous events reported by a device.
        4. Asynchronous GET responses from a device.
      anyOf:
      - $ref: '#/components/schemas/TlvIndex'
      - $ref: '#/components/schemas/DeviceID'
      - $ref: '#/components/schemas/NMSRedirectRequest'
      - $ref: '#/components/schemas/SessionID'
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'
      - $ref: '#/components/schemas/ReportSubscribe'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/IPRoute'
      - $ref: '#/components/schemas/CurrentTime'
      - $ref: '#/components/schemas/RPLSettings'
      - $ref: '#/components/schemas/Uptime'
      - $ref: '#/components/schemas/InterfaceMetrics'
      - $ref: '#/components/schemas/IPRouteRPLMetrics'
      - $ref: '#/components/schemas/PingResponse'
      - $ref: '#/components/schemas/Ieee8021xStatus'
      - $ref: '#/components/schemas/Ieee80211iStatus'
      - $ref: '#/components/schemas/WPANStatus'
      - $ref: '#/components/schemas/DHCP6ClientStatus'
      - $ref: '#/components/schemas/NMSSettings'
      - $ref: '#/components/schemas/NMSStatus'
      - $ref: '#/components/schemas/Ieee8021xSettings'
      - $ref: '#/components/schemas/Ieee802154BeaconStats'
      - $ref: '#/components/schemas/RPLInstance'
      - $ref: '#/components/schemas/GroupInfo'
      - $ref: '#/components/schemas/LowpanMacStats'
      - $ref: '#/components/schemas/LowpanPhySettings'
      - $ref: '#/components/schemas/TransferResponse'
      - $ref: '#/components/schemas/LoadResponse'
      - $ref: '#/components/schemas/CancelLoadResponse'
      - $ref: '#/components/schemas/SetBackupResponse'
      - $ref: '#/components/schemas/FirmwareImageInfo'
      - $ref: '#/components/schemas/SysResetStats'
      - $ref: '#/components/schemas/MplStats'
      - $ref: '#/components/schemas/RPLStats'
      - $ref: '#/components/schemas/DHCP6Stats'
      - $ref: '#/components/schemas/EventReport'
      - $ref: '#/components/schemas/EventIndex'
      - $ref: '#/components/schemas/EventStats'

    TLVsPostAbleToDevice:
      description: |
        TLVs which may be POSTed to <device-url>/c.
        Commands and settings.
      anyOf:
      - $ref: '#/components/schemas/NMSRedirectRequest'
      - $ref: '#/components/schemas/RPLSettings'
      - $ref: '#/components/schemas/PingRequest'
      - $ref: '#/components/schemas/RebootRequest'
      - $ref: '#/components/schemas/NMSSettings'
      - $ref: '#/components/schemas/Ieee8021xSettings'
      - $ref: '#/components/schemas/GroupMatch'
      - $ref: '#/components/schemas/LowpanPhySettings'
      - $ref: '#/components/schemas/TransferRequest'
      - $ref: '#/components/schemas/ImageBlock'
      - $ref: '#/components/schemas/LoadRequest'
      - $ref: '#/components/schemas/CancelLoadRequest'
      - $ref: '#/components/schemas/SetBackupRequest'
      - $ref: '#/components/schemas/SignatureValidity'
      - $ref: '#/components/schemas/Signature'
      - $ref: '#/components/schemas/SignatureSettings'
      - $ref: '#/components/schemas/NetworkRole'
      - $ref: '#/components/schemas/MplReset'
      - $ref: '#/components/schemas/EventSubscribe'

    TableTLVs:
      description: |
        Table TLVs.
      anyOf:
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/IPRoute'
      - $ref: '#/components/schemas/InterfaceMetrics'
      - $ref: '#/components/schemas/IPRouteRPLMetrics'
      - $ref: '#/components/schemas/Ieee802154BeaconStats'
      - $ref: '#/components/schemas/RPLInstance'
      - $ref: '#/components/schemas/FirmwareImageInfo'
      - $ref: '#/components/schemas/NetStat'
      - $ref: '#/components/schemas/CertBundle'        

    AllTLVs:
      description: |
        All CSMP defined TLVs.
        This is used as an editorial starting point for the 
        other TLV collections defined within.
      anyOf:
      - $ref: '#/components/schemas/TlvIndex'
      - $ref: '#/components/schemas/DeviceID'
      - $ref: '#/components/schemas/NMSRedirectRequest'
      - $ref: '#/components/schemas/SessionID'
      - $ref: '#/components/schemas/DescriptionRequest'
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'
      - $ref: '#/components/schemas/ReportSubscribe'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/IPRoute'
      - $ref: '#/components/schemas/CurrentTime'
      - $ref: '#/components/schemas/RPLSettings'
      - $ref: '#/components/schemas/Uptime'
      - $ref: '#/components/schemas/InterfaceMetrics'
      - $ref: '#/components/schemas/IPRouteRPLMetrics'
      - $ref: '#/components/schemas/PingRequest'
      - $ref: '#/components/schemas/PingResponse'
      - $ref: '#/components/schemas/RebootRequest'
      - $ref: '#/components/schemas/Ieee8021xStatus'
      - $ref: '#/components/schemas/Ieee80211iStatus'
      - $ref: '#/components/schemas/WPANStatus'
      - $ref: '#/components/schemas/DHCP6ClientStatus'
      - $ref: '#/components/schemas/NMSSettings'
      - $ref: '#/components/schemas/NMSStatus'
      - $ref: '#/components/schemas/Ieee8021xSettings'
      - $ref: '#/components/schemas/Ieee802154BeaconStats'
      - $ref: '#/components/schemas/RPLInstance'
      - $ref: '#/components/schemas/GroupAssign'
      - $ref: '#/components/schemas/GroupEvict'
      - $ref: '#/components/schemas/GroupMatch'
      - $ref: '#/components/schemas/GroupInfo'
      - $ref: '#/components/schemas/LowpanMacStats'
      - $ref: '#/components/schemas/LowpanPhySettings'
      - $ref: '#/components/schemas/TransferRequest'
      - $ref: '#/components/schemas/ImageBlock'
      - $ref: '#/components/schemas/LoadRequest'
      - $ref: '#/components/schemas/CancelLoadRequest'
      - $ref: '#/components/schemas/SetBackupRequest'
      - $ref: '#/components/schemas/TransferResponse'
      - $ref: '#/components/schemas/LoadResponse'
      - $ref: '#/components/schemas/CancelLoadResponse'
      - $ref: '#/components/schemas/SetBackupResponse'
      - $ref: '#/components/schemas/FirmwareImageInfo'
      - $ref: '#/components/schemas/SignatureValidity'
      - $ref: '#/components/schemas/Signature'
      - $ref: '#/components/schemas/SignatureSettings'
      - $ref: '#/components/schemas/SysResetStats'
      - $ref: '#/components/schemas/NetStat'
      - $ref: '#/components/schemas/NetworkRole'
      - $ref: '#/components/schemas/CertBundle'      
      - $ref: '#/components/schemas/MplStats'
      - $ref: '#/components/schemas/MplReset'
      - $ref: '#/components/schemas/RPLStats'
      - $ref: '#/components/schemas/DHCP6Stats'
      - $ref: '#/components/schemas/EventReport'
      - $ref: '#/components/schemas/EventIndex'
      - $ref: '#/components/schemas/EventSubscribe'
      - $ref: '#/components/schemas/EventStats'
      
    #
    # Object (TLV) placeholders to allow OpenAPI to compile.
    # Each of these is authoritatively defined in
    # the CSMP TLV definitions.
    #
    TlvIndex:
      type: object
    DeviceID:
      type: object
    NMSRedirectRequest:
      type: object
    SessionID:
      type: object
    DescriptionRequest:
      type: object
    HardwareDesc:
      type: object
    InterfaceDesc:
      type: object
    ReportSubscribe:
      type: object
    IPAddress:
      type: object
    IPRoute:
      type: object
    CurrentTime:
      type: object
    RPLSettings:
      type: object
    Uptime:
      type: object
    InterfaceMetrics:
      type: object
    IPRouteRPLMetrics:
      type: object
    PingRequest:
      type: object
    PingResponse:
      type: object
    RebootRequest:
      type: object
    Ieee8021xStatus:
      type: object
    Ieee80211iStatus:
      type: object
    WPANStatus:
      type: object
    DHCP6ClientStatus:
      type: object
    NMSSettings:
      type: object
    NMSStatus:
      type: object
    Ieee8021xSettings:
      type: object
    Ieee802154BeaconStats:
      type: object
    RPLInstance:
      type: object
    GroupAssign:
      type: object
    GroupEvict:
      type: object
    GroupMatch:
      type: object
    GroupInfo:
      type: object
    LowpanMacStats:
      type: object
    LowpanPhySettings:
      type: object
    TransferRequest:
      type: object
    ImageBlock:
      type: object
    LoadRequest:
      type: object
    CancelLoadRequest:
      type: object
    SetBackupRequest:
      type: object
    TransferResponse:
      type: object
    LoadResponse:
      type: object
    CancelLoadResponse:
      type: object
    SetBackupResponse:
      type: object
    FirmwareImageInfo:
      type: object
    SignatureValidity:
      type: object
    Signature:
      type: object
    SignatureSettings:
      type: object
    SysResetStats:
      type: object
    NetStat:
      type: object
    NetworkRole:
      type: object
    CertBundle:
      type: object
    MplStats:
      type: object
    MplReset:
      type: object
    RPLStats:
      type: object
    DHCP6Stats:
      type: object
    EventReport:
      type: object
    EventIndex:
      type: object
    EventSubscribe:
      type: object
    EventStats:
      type: object
]]></artwork>
        </section>
      </section>
      <section anchor="resources">
        <name>Resources</name>
        <t>CSMP devices and CSMP NMS use the CoAP GET, POST, and DELETE methods to manipulate the resources specified in <xref target="csmpTlvs"/>, which are the Protocol Buffer object payloads contained in the various CoAP requests and responses.  Usage of these payloads is detailed in the sections which follow.</t>
        <section anchor="base-url">
          <name>Base URL</name>
          <t>A CSMP server is located at a &lt;base-url&gt; of the form coap://hostname:port/&lt;base-path&gt;</t>
          <t>The &lt;base-path&gt; for all CSMP resources at a particular hostname:port MUST be identical.</t>
          <t>It is RECOMMENDED that a default &lt;base-path&gt; of "/." be used.</t>
          <t>Because an NMS CSMP request message may be multicast to a large number of devices, all CSMP devices within a multicast domain MUST have identical port and &lt;base-path&gt;.</t>
          <t>The following &lt;base-path&gt; are reserved for future use:</t>
          <ol spacing="normal" type="1"><li>
              <t>/o</t>
            </li>
          </ol>
          <t>Full details of the Device and NMS service URLs are defined in <xref target="csmpDev"/> and <xref target="csmpNms"/>.</t>
        </section>
        <section anchor="resource-encoding">
          <name>Resource Encoding</name>
          <section anchor="standard-tlvs">
            <name>Standard TLVs</name>
            <t>The message payloads of CSMP requests and responses MUST be formatted as a sequence of Type-Length-Value objects. Each TLV object has the following format:</t>
            <artwork><![CDATA[
| Type | Length | Value |
]]></artwork>
            <t>The Type field is an unsigned integer identifying a specific CSMP TLV ID and MUST be encoded as a Protocol Buffers varint.</t>
            <t>The Length field is an unsigned integer containing the number of octets occupied by the Value field.  The Length field MUST be encoded as a Protocol Buffers varint.</t>
            <t>The Value field MUST contain the Protocol Buffers encoded TLV corresponding to the indicated Type.</t>
            <t>The set of objects defined by CSMP and their Type (TLV ID) are specified in <xref target="csmpTlvs"/>.</t>
          </section>
          <section anchor="csmpTlvs">
            <name>CSMP TLV Definitions</name>
            <t>This section contains the CSMP TLV definitions (defined using <xref target="PB"/>). The definitions are also available at <xref target="CSMPMSG"/> which is directly importable into development tooling.</t>
            <artwork><![CDATA[
syntax = "proto3";

/*
The definitions for CSMP TLVs.
This file is directly consumable by the Protocol Buffer tool chain.
Requirements are specified using the terminology and conventions as 
referenced in [RFC2119]. Requirements key words referenced in [RFC2119] 
must be capitalized. Full details re: Protocol Buffers are accessible 
at https://developers.google.com/protocol-buffers
*/

/*
CSMP TLV ID Mapping to Protocol Buffer messages.

A unique TLV ID MUST be assigned to each CSMP Protocol Buffer 
message (defined within).  An unused TLV ID MAY be assigned to a new 
message (the new TLV ID assignment MUST be recorded within, along with 
the defintion of the new message). A Reserved TLV ID MUST NOT be 
assigned to a message. An existing TLV ID assignment MUST NOT be 
re-assigned to a new message.

NOTE the legend.

- Unused: available for assignment.
- Reserved: not available for assignment.
- All other named messages are currently used by CSMP.

All TLV assignments MUST be recorded in the table below.  
Take care to maintain the numbering.

TLVID   Message
1       TlvIndex
2       DeviceID
3       Reserved
4       Unused
5       Unused
6       NMSRedirectRequest
7       SessionID
8       DescriptionRequest
9       Unused
10          Reserved
11          HardwareDesc
12          InterfaceDesc
13          ReportSubscribe
14          Reserved
15          Reserved
16          IPAddress
17          IPRoute
18          CurrentTime
19          Reserved
20          Reserved
21          RPLSettings
22          Uptime
23          InterfaceMetrics
24          Reserved
25          IPRouteRPLMetrics
26          Unused
27-29   Reserved
30          PingRequest
31          PingResponse
32          RebootRequest
33          Ieee8021xStatus
34          Ieee80211iStatus
35          WPANStatus
36          DHCP6ClientStatus
37-41   Reserved
42          NMSSettings
43          NMSStatus
44-46   Reserved
47          Ieee8021xSettings
48          Ieee802154BeaconStats
49-52   Reserved
53          RPLInstance
54          Reserved
55          GroupAssign
56          GroupEvict
57          GroupMatch
58          GroupInfo
59      Unused
60      Unused
61          Reserved
62          LowpanMacStats
63          LowpanPhySettings
64      Unused
65          TransferRequest
66          Reserved
67          ImageBlock
68          LoadRequest
69          CancelLoadRequest
70          SetBackupRequest
71          TransferResponse
72          LoadResponse
73          CancelLoadResponse
74          SetBackupResponse
75          FirmwareImageInfo
76          SignatureValidity
77          Signature
78          Reserved
79          SignatureSettings
80          Reserved
81          Reserved
82      Unused
83      Unused
84          Reserved
85      Unused
86          SysResetStats
87      Unused
88          Reserved
89      Unused
90      Unused
91-97   Reserved
98      Unused
99      Unused
100         Reserved
101     Unused
102     Unused
103     Unused
104     Unused
105     Unused
106     Unused
107         Reserved
108         Reserved
109     Unused
110-112 Reserved
113     Unused
114     Unused
115-117 Reserved
118     Unused
119     Unused
120-122 Reserved
123     Unused
124         NetStat
125         Reserved
126         Reserved
127     Vendor Defined TLV
128-131 Reserved
132-139 Unused
140         Reserved
141         NetworkRole
142-151 Reserved
152-154 Unused
155-157 Reserved
158-159 Unused
160-165 Reserved
166-169 Unused
170-171 Reserved
172     CertBundle
173-179 Unused
180     Reserved
181-199 Unused
200-202 Reserved
203-209 Unused
210         Reserved
211         Reserved
212-216 Unused
217-220 Reserved
221-239 Unused
240         Reserved
241         MplStats
242         MplReset
243-299 Unused
301-303 Reserved
304     Unused
305-307 Reserved
308-309 Unused
310-312 Reserved
313         RPLStats
314         DHCP6Stats
315     Reserved
316     Reserved
317-324 Unused
325-337 Reserved
338-339 Unused
340-399 Reserved
400-499 Unused
500         Reserved
501         Reserved
502         Reserved
503-509 Unused
510         Reserved
511     Reserved
512-519 Unused
520         Reserved
521         Reserved
522-529 Unused
530     Reserved
531     Reserved
532-539 Unused
540         Reserved
541-599 Unused
600-607 Reserved
608 ... Unused

*/

/*
Message definitions follow.

Tag notation used within ...

Class:: designates class of device for which the TLV is relevant. 
    Generic (any IP addressable device) 
    Mesh (Wi-SUN mesh devices)
    Others TBD.
*/

package csmp.tlvs;
option java_package = "com.cisco.cgms.protocols.csmp.tlvs";

// TLV 1
// A list of zero or more TLV IDs
// Class:: Generic
//

message TlvIndex {
  // list of TLV IDs (string encoded) supported by the device.
  repeated string tlvid = 1;    
}

// TLV 2
// Primary identifier for a specific device.
// Class:: Generic
//

message DeviceID {
  oneof type_present {
    // Set to 1 to indicate EUI-64 format.
    uint32 type = 1; 
  }
  oneof id_present {
    // The unique identifier of the device in EUI-64 format
    string id = 2; 
  }
}

// TLV 6
// Used by NMS to force device registration to a specific NMS.
// Class:: Generic
//

message NMSRedirectRequest {
  oneof url_present {
    // NMS <base-url> to which the device registration will be directed.  
    // MUST be formatted per section 6 of RFC 7252
    string url = 1;
  }
  oneof immediate_present {
    // True == device should immediately send registration request 
    // to the specificed NMS url.
    bool immediate = 2;  
  }
}

// TLV 7
// Session ID used by NMS to track device CSMP messaging.
// Assigned by the NMS, used in all subsequent Device to NMS messaging.
// Class:: Generic
//

message SessionID {
  oneof id_present {
    string id = 1; // session ID
  }
}

// TLV 8
// List of zero or more TLVs requested by the NMS from a Device.
// The requested TLV values will be sent to the NMS asynchronously.
// Class:: Generic
//

message DescriptionRequest {
  // list of TLV IDs in string format.
  repeated string tlvid = 1;    
}

// A list of hardware modules with their firmware versions.
//
message HardwareModule {
  oneof moduleType_present {
    // hardware module type. Rf Dsp=1, PLC Dsp=2, CPU=3, FPGA=4
    uint32 moduleType = 1; 
  }
  oneof firmwareRev_present {
    // firmware version of the hardware module
    string firmwareRev = 2; 
  }
}

// TLV 11
// This TLV contains hardware description information for the device.
// The contents of the fields are defined by the equivalently-named 
// fields in the entry of the SNMP MIB object entPhysicalTable.
// Class:: Generic
//

message HardwareDesc {
  oneof entPhysicalIndex_present {
    // index of this hardware being described.
    int32 entPhysicalIndex = 1; 
  }
  oneof entPhysicalDescr_present {
    // A textual description of physical entity.
    string entPhysicalDescr = 2; 
  }
  oneof entPhysicalVendorType_present {
    // An indication of the vendor-specific hardware type of the 
    // physical entity.
    bytes entPhysicalVendorType = 3; 
  }
  oneof entPhysicalContainedIn_present {
    // The value of entPhysicalIndex for the physical entity which 
    // 'contains' this physical entity.
    int32 entPhysicalContainedIn = 4;  
  }
  oneof entPhysicalClass_present {
    // An indication of the general hardware type of the physical 
    // entity.
    int32 entPhysicalClass = 5; 
  }
  oneof entPhysicalParentRelPos_present {
    // An indication of the relative position of this 'child' component 
    // among all its 'sibling' components.
    int32 entPhysicalParentRelPos = 6; 
  }
  oneof entPhysicalName_present {
    // The textual name of the physical entity.
    string entPhysicalName = 7; 
  }
  oneof entPhysicalHardwareRev_present {
    // The vendor-specific hardware revision string for the physical 
    // entity.
    string entPhysicalHardwareRev = 8; 
  }
  oneof entPhysicalFirmwareRev_present {
    // The vendor-specific firmware revision string for the physical 
    // entity.
    string entPhysicalFirmwareRev = 9; 
  }
  oneof entPhysicalSoftwareRev_present {
    // The vendor-specific software revision string for the physical 
    // entity.
    string entPhysicalSoftwareRev = 10; 
  }
  oneof entPhysicalSerialNum_present {
    // The vendor-specific serial number string for the physical 
    // entity.
    string entPhysicalSerialNum = 11; 
  }
  oneof entPhysicalMfgName_present {
    // The name of the manufacturer of this physical component.
    string entPhysicalMfgName = 12; 
  }
  oneof entPhysicalModelName_present {
    // The vendor-specific model name identifier string associated 
    // with this physical component.
    string entPhysicalModelName = 13; 
  }
  oneof entPhysicalAssetID_present {
    // This object is a user-assigned asset tracking identifier for 
    // the physical entity and provides non-volatile storage of this 
    // information.
    string entPhysicalAssetID = 14; 
  }
  oneof entPhysicalMfgDate_present {
    // This object contains the date of manufacturing of the managed 
    // entity.
    uint32 entPhysicalMfgDate = 15; 
  }
  oneof entPhysicalURIs_present {
    // This object contains additional identification information about 
    // the physical entity.
    string entPhysicalURIs = 16; 
  }
  oneof entPhysicalFunction_present {
    // This field can take the following values: METER = 1, 
    // RANGE_EXTENDER = 2, DA_GATEWAY = 3, CGE = 4, ROOT = 5, 
    // CONTROLLER = 6, SENSOR = 7, NETWORKNODE = 8.
    uint32 entPhysicalFunction = 17; 
  }
  oneof entPhysicalOUI_present {
    // uniquely identifies a vendor
    bytes entPhysicalOUI = 18; 
  }
  // This defines a list of hardware modules with their 
  // firmware versions
  repeated HardwareModule hwModule = 19; 
}

// TLV 12
// This TLV contains description information for an interface on 
// the device. The contents of these fields are defined by the 
// equivalently-named fields in the SNMP MIB object ifTable.
// Class:: Generic
//

message InterfaceDesc {
  oneof ifIndex_present {
    // A unique value, greater than zero, for each interface.
    int32 ifIndex = 1; 
  }
  oneof ifName_present {
    // The textual name of the interface.
    string ifName = 2; 
  }
  oneof ifDescr_present {
    // A textual string containing information about the interface.
    string ifDescr = 3; 
  }
  oneof ifType_present {
    // The type of interface.
    int32 ifType = 4; 
  }
  oneof ifMtu_present {
    // The size of the largest packet which can be sent/received 
    // on the interface, specified in octets.
    int32 ifMtu = 5; 
  }
  oneof ifPhysAddress_present {
    // The interface's address at its protocol sub-layer.
    bytes ifPhysAddress = 6; 
  }
}

// TLV 13
// This TLV specifies the periodic reporting of a set of TLVs.
// Class:: Generic
//

message ReportSubscribe {
  oneof interval_present {
    // The periodic time interval (in seconds) at which the device 
    // sends the tlvid set of tlvs.
    uint32 interval = 1; 
  }
  // The tlvs to be sent on the interval.
  repeated string tlvid = 2; 

  oneof intervalHeartBeat_present {
    // The periodic time interval at which the device sends the 
    // tlvidHeartBeat set of tlvs.
    uint32 intervalHeartBeat = 3; 
  }
  // The tlvs to be sent on the heartbeat interval.
  repeated string tlvidHeartBeat = 4; 
}

// TLV 16
// Describes a particular IP address (identified by the index) attached 
// to an interface.
// Class:: Generic
//

message IPAddress {
  oneof ipAddressIndex_present {
    // A unique value, greater than zero, for each IP address
    int32 ipAddressIndex = 1; 
  }
  oneof ipAddressAddrType_present {
    // Address type defined as integers : 
    // ipv4=1, ipvv6=2, ipv4z=3, ipv6z=4, ipv6am=5
    uint32 ipAddressAddrType = 2; 
  }
  oneof ipAddressAddr_present {
    // The IP address
    bytes ipAddressAddr = 3; 
  }
  oneof ipAddressIfIndex_present {
    // Index of the associated interface
    int32 ipAddressIfIndex = 4; 
  }
  oneof ipAddressType_present {
    // IP type defined as integers : 
    // unicast=1, anycast=2, broadcast=3
    uint32 ipAddressType = 5; 
  }
  oneof ipAddressOrigin_present {
    // Address origin defined as integers: 
    // other=1, manual=2, dhcp=4, linklayer=5, random=6
    uint32 ipAddressOrigin = 6; 
  }
  oneof ipAddressStatus_present {
    // status defined as integers: 
    // preferred=1, deprecated=2, invalid=3, inaccessible=4, unknown=5, 
    // tentative=6, duplicate=7, optimistic=8
    uint32 ipAddressStatus = 7; 
  }
  reserved 8;
  reserved 9;
  oneof ipAddressPfxLen_present {
    // The prefix length associated with the IP address.
    uint32 ipAddressPfxLen = 10; 
  }
}

// TLV 17
// Describes a particular IP route (identified by the index) attached 
// to an interface.
// Class:: Generic
//

message IPRoute {
  oneof inetCidrRouteIndex_present {
    // A unique value, greater than zero, for each route.
    int32 inetCidrRouteIndex = 1; 
  }
  oneof inetCidrRouteDestType_present {
    // Destination Addresss type defined as integers:
    // ipv4=1, ipvv6=2, ipv4z=3, ipv6z=4, ipv6am=5.
    uint32 inetCidrRouteDestType = 2; 
  }
  oneof inetCidrRouteDest_present {
    // IP address of the destination of the route.
    bytes inetCidrRouteDest = 3; 
  }
  oneof inetCidrRoutePfxLen_present {
    // Associated prefix length of the route destination.
    uint32 inetCidrRoutePfxLen = 4; 
  }
  oneof inetCidrRouteNextHopType_present {
    // Next hop Addresss type defined as integers: 
    // ipv4=1, ipvv6=2, ipv4z=3, ipv6z=4, ipv6am=5.
    uint32 inetCidrRouteNextHopType = 5; 
  }
  oneof inetCidrRouteNextHop_present {
    // IP address of the next hop of the route (device parent).
    bytes inetCidrRouteNextHop = 6;   
  }
  oneof inetCidrRouteIfIndex_present {
    // Index of the associated interface.
    int32 inetCidrRouteIfIndex = 7; 
  }
  reserved 8;
  reserved 9;
  reserved 10;
}

// TLV 18
// Contains the current time as maintainced on the device.
// For time stamping purposes, this tlvid MUST also be sent along with 
// every periodic metric report. It MAY contain a POSIX timestamp 
// or an ISO 8601 timestamp.
// Class:: Generic
//

message CurrentTime {
  oneof posix_present {
    // posix timestamp.
    uint32 posix = 1; 
  }
  oneof iso8601_present {
    // iso 8601 timestamp.
    string iso8601 = 2; 
  }
  oneof source_present {
    // time service from:
    // local=1, admin=2, network=3.
    uint32 source = 3; 
  }
}

// TLV 21
// For retrieving the RPL Settings on the device.
// Class:: Mesh
//

message RPLSettings {
  oneof ifIndex_present {
    // interface id
    int32 ifIndex = 1; 
  }
  oneof enabled_present {
    // whether RPL feature is enabled.
    bool enabled = 2; 
  }
  oneof dioIntervalMin_present {
    // min interval of DIO trickle timer in milliseconds.
    uint32 dioIntervalMin = 3; 
  }
  oneof dioIntervalMax_present {
    // max interval of DIO trickle timer in milliseconds.
    uint32 dioIntervalMax = 4; 
  }
  oneof daoIntervalMin_present {
    // min interval of DAO trickle timer in milliseconds.
    uint32 daoIntervalMin = 5; 
  }
  oneof daoIntervalMax_present {
    // max interval of DAO trickle timer in milliseconds.
    uint32 daoIntervalMax = 6; 
  }
  oneof mopType_present {
    // mode of operation for RPL. 1: non-storing mode; 2: storing mode.
    uint32 mopType = 7; 
  }
}

// TLV 22
// Contains the total system uptime of the device (seconds).
// Class:: Generic
//

message Uptime {
  oneof sysUpTime_present {
    // uptime info in seconds.
    uint32 sysUpTime = 1; 
  }
}

// TLV 23
// The statistics of an interface
// Class:: Generic
//

message InterfaceMetrics {
  oneof ifIndex_present {
    // A unique value, greater than zero, for each interface. 
    // Is same as in InterfaceDesc's ifIndex for the same interface.
    int32 ifIndex = 1; 
  }
  oneof ifInSpeed_present {
    // The speed at which the incoming packets are received on the 
    // interface.
    uint32 ifInSpeed = 2; 
  }
  oneof ifOutSpeed_present {
    // The speed at which the outgoing packets are transmitted on 
    // the interface.
    uint32 ifOutSpeed = 3; 
  }
  oneof ifAdminStatus_present {
    // The desired state of the interface.
    uint32 ifAdminStatus = 4; 
  }
  oneof ifOperStatus_present {
    // The current operational state of the interface.
    uint32 ifOperStatus = 5; 
  }
  oneof ifLastChange_present {
    // The value of sysUpTime at the time the interface entered its 
    // current operational state.
    uint32 ifLastChange = 6; 
  }
  oneof ifInOctets_present {
    // The total number of octets received on the interface, 
    // including framing characters.
    uint32 ifInOctets = 7; 
  }
  oneof ifOutOctets_present {
    // The total number of octets transmitted out of the interface, 
    // including framing characters.
    uint32 ifOutOctets = 8; 
  }
  oneof ifInDiscards_present {
    // The number of inbound packets which were chosen to be discarded 
    // even though no errors had been detected to prevent their being 
    // deliverable to a higher-layer protocol (application dependant).
    uint32 ifInDiscards = 9; 
  }
  oneof ifInErrors_present {
    // For packet-oriented interfaces, the number of inbound packets 
    // that contained errors preventing them from being deliverable to 
    // a higher-layer protocol (subset of ifInDiscards).
    uint32 ifInErrors = 10; 
  }
  oneof ifOutDiscards_present {
    // The number of outbound packets which were chosen to be discarded 
    // even though no errors had been detected to prevent their being 
    // transmitted.
    uint32 ifOutDiscards = 11; 
  }
  oneof ifOutErrors_present {
    // For packet-oriented interfaces, the number of outbound packets 
    // that could not be transmitted because of errors.
    uint32 ifOutErrors = 12; 
  }
}

// TLV 25
// Describes status of each RPL router
// Class:: Mesh
//

message IPRouteRPLMetrics {
  oneof inetCidrRouteIndex_present {
    // refers to a particular index in the IPRoute table.
    int32 inetCidrRouteIndex = 1; 
  }
  oneof instanceIndex_present {
    // Corresponding RPL instance of this route.
    int32 instanceIndex = 2; 
  }
  oneof rank_present {
    // advertised rank.
    int32 rank = 3; 
  }
  oneof hops_present {
    // Not currently used, future use of hops metric.
    int32 hops = 4; 
  }
  oneof pathEtx_present {
    // advertised path ethx.
    int32 pathEtx = 5;  
  }
  oneof linkEtx_present {
    // next-hop link ETX.
    int32 linkEtx = 6;  
  }
  oneof rssiForward_present {
    // forward RSSI value (relative to the device).
    sint32 rssiForward = 7; 
  }
  oneof rssiReverse_present {
    // reverse RSSI value (relative to the device).
    sint32 rssiReverse = 8; 
  }
  oneof lqiForward_present {
    // forward LQI value.
    int32 lqiForward = 9; 
  }
  oneof lqiReverse_present {
    // reverse LQI value.
    int32 lqiReverse = 10; 
  }
  oneof dagSize_present {
    // nodes count of this pan (number of joined devices).
    uint32 dagSize = 11; 
  }
  reserved 12 to 17;
  // forward phy mode value.
  PhyModeInfo phyModeForward = 18; 
  // reverse phy mode value.
  PhyModeInfo phyModeReverse = 19; 
}

// TLV 30
// Request the device to perform a ping operation to a 
// destination address.
// Class:: Generic
//

message PingRequest {
  oneof dest_present {
    // IP address to be pinged from the device.
    string dest = 1; 
  }
  oneof count_present {
    // number of times to ping.
    uint32 count = 2; 
  }
  oneof delay_present {
    // delay between ping in seconds.
    uint32 delay = 3; 
  }
}

// TLV 31
// Acquire the current status of the last PingRequest.
// Class:: Generic
//

message PingResponse {
  oneof sent_present {
    // number of packets sent
    uint32 sent = 1;  
  }
  oneof received_present {
    // number of packets received
    uint32 received = 2; 
  }
  oneof minRtt_present {
    // min round trip time
    uint32 minRtt = 3; 
  }
  oneof meanRtt_present {
    // mean round trip time
    uint32 meanRtt = 4; 
  }
  oneof maxRtt_present {
    // max round trip time
    uint32 maxRtt = 5; 
  }
  oneof stdevRtt_present {
    // standard deviation of the round trip time
    uint32 stdevRtt = 6; 
  }
  oneof src_present {
    // source IP address for the ping
    string src = 7; 
  }
}

// TLV 32
// Request a device to reboot.
// Class:: Generic
//

message RebootRequest {
  oneof flag_present {
    // 0 : reboot and transfer to designated running image. 
    // 1 : reboot and stop at bootloader CLI.
    uint32 flag = 1; 
  }
}

// TLV 33
// 802.1x status
// Class:: Mesh
//

message Ieee8021xStatus {
  oneof ifIndex_present {
    // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
    int32 ifIndex = 1; 
  }
  oneof enabled_present {
    // 802.1x enabled or not?
    bool enabled = 2; 
  }
  oneof identity_present {
    // subject name of certificate, max len 32
    string identity = 3; 
  }
  oneof state_present {
    // state of tls handshake
    uint32 state = 4; 
  }
  oneof pmKId_present {
    // hash value of pmk, len 16
    bytes pmkId = 5; 
  }
  oneof clientCertValid_present {
    // whether client cert is valid
    bool clientCertValid = 6; 
  }
  oneof caCertValid_present {
    // whether ca cert is valid
    bool caCertValid = 7; 
  }
  oneof privateKeyValid_present {
    // whether private key of client cert is valid
    bool privateKeyValid = 8; 
  }
  oneof rlyPanid_present {
    // panid of relay node
    uint32 rlyPanid = 9; 
  }
  oneof rlyAddress_present {
    // eui64 address of relay node, len 8
    bytes rlyAddress = 10; 
  }
  oneof rlyLastHeard_present {
    // last heard from relay node in seconds
    uint32 rlyLastHeard = 11; 
  }
}

// TLV 34
// 802.11i status
// Class:: Mesh
//

message Ieee80211iStatus {
  oneof ifIndex_present {
    // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
    int32 ifIndex = 1; 
  }
  oneof enabled_present {
    // 802.11i is eabled or not
    bool enabled = 2; 
  }
  oneof pmkId_present {
    // hash value of pmk, len 16
    bytes pmkId = 3; 
  }
  oneof ptkId_present {
    // hash value of ptk, len 16
    bytes ptkId = 4; 
  }
  oneof gtkIndex_present {
    // index of gtk
    int32 gtkIndex = 5; 
  }
  oneof gtkAllFresh_present {
    // whether all gtk are fresh
    bool gtkAllFresh = 6; 
  }
  // list of hash value for each gtk, hash len 8, max repeat 4
  repeated bytes gtkList = 7; 
  // list of lifetime for each gtk, hash len 8, max repeat 4
  repeated uint32 gtkLifetimes = 8; 
  oneof authAddress_present {
    // eui64 address of authenticate node
    bytes authAddress = 9; 
  }
}

message PhyModeInfo {
  oneof phyMode_present {
    // phy operating mode value (as defined in section 5.2 of 
    // PHYWG Wi-SUN PHY Technical Specification - Amendment 1VA8)
    uint32 phyMode = 1; 
  }
  oneof txPower_present {
    // transmit power value in dbm.
    int32 txPower = 2; 
  }
}

// TLV 35
// Configuration of WPAN-specific interface settings
// Class:: Mesh
//

message WPANStatus {
  oneof ifIndex_present {
    // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
    int32 ifIndex = 1; 
  }
  oneof SSID_present {
    // Max len 32 (Wi-SUN NetName).
    bytes SSID = 2; 
  }
  oneof panid_present {
    uint32 panid = 3;
  }
  reserved 4;

  oneof dot1xEnabled_present {
    // Is dot1x enabled?
    bool dot1xEnabled = 5; 
  }
  oneof securityLevel_present {
    // Security level
    uint32 securityLevel = 6; 
  }
  oneof rank_present {
    uint32 rank = 7;
  }
  oneof beaconValid_present {
    // Is beacon valid (where invalid means receipt has 
    // timed-out/contact with PAN was lost)?  (PC frame for Wi-SUN)
    bool beaconValid = 8; 
  }  
  oneof beaconVersion_present {
    // Beacon version (Wi-SUN PAN version).
    uint32 beaconVersion = 9; 
  }
  oneof beaconAge_present {
    // Last heard beacon message in seconds  (PC frame for Wi-SUN).
    uint32 beaconAge = 10; 
  }
  oneof txPower_present {
    // Transmit power value in dbm
    int32 txPower = 11; 
  }
  oneof dagSize_present {
    // Count of nodes joined to this PAN
    uint32 dagSize = 12; 
  }
  oneof metric_present {
    // Metric to border router (Wi-SUN Routing Cost)
    uint32 metric = 13; 
  }
  oneof lastChanged_present {
    // seconds since last PAN change (PAN ID change).
    uint32 lastChanged = 14; 
  }
  oneof lastChangedReason_present {
    // Reason for last PAN change: 
    // -1 == unknown, 
    // 0 == mesh initializing, 
    // 1 ==  mesh connectivity lost, 
    // 2 == GTK timeout,  
    // 3 == default route lost, 
    // 4 == migrated to better PAN, 
    // 5 == reserved.
    uint32 lastChangedReason = 15; 
  }
  oneof demoModeEnabled_present {
    // Is demo mode enabled?
    bool demoModeEnabled = 16; 
  }
  oneof txFec_present {
    // Is FEC enabled?
    bool txFec = 17; 
  }
  oneof phyMode_present {
    // Phy operating mode value (as defined in section 5.2 of 
    // PHYWG Wi-SUN PHY Technical Specification - Amendment 1VA8)
    uint32 phyMode = 18; 
  }
  reserved 19;
  // Multi phy mode and transmit power value for adaptive modulation.
  repeated PhyModeInfo phyModeList = 20; 
}

// TLV 36
// Status of DHCP6 client
// Class:: Generic
//

message DHCP6ClientStatus {
  oneof ifIndex_present {
    // It is RECOMMENDED this be set to 2 for the 6LowPAN interface
    int32 ifIndex = 1;
  }
  oneof ianaIAID_present {
    // TA ID value.
    uint32 ianaIAID = 2;
  }
  oneof ianaT1_present {
    // T1 value.
    uint32 ianaT1 = 3;
  }
  oneof ianaT2_present {
    // T2 value.
    uint32 ianaT2 = 4; 
  }
}

// TLV 42 
// Configure device reporting settings.
// Class:: Generic
//

message NMSSettings {
  oneof regIntervalMin_present {
    // Min interval of register trickle timer in seconds.
    uint32 regIntervalMin = 1; 
  }
  oneof regIntervalMax_present {
    // Max interval of register trickle timer in seconds.
    uint32 regIntervalMax = 2; 
  }
  reserved 3 to 6;
}

// TLV 43
// Registration status to NMS.
// NMS uses this TLV to record the reason for the registration 
// operation as recorded in the lastRegReason field of the TLV.
// Class:: Generic
//

message NMSStatus {
  oneof registered_present {
    // True if device is registerd with NMS.
    bool registered = 1; 
  }
  oneof NMSAddr_present {
    // IPv6 address of NMS.
    bytes NMSAddr = 2; 
  }
  oneof NMSAddrOrigin_present {
    // Mechanism used to get NMS's IPv6 address.
    // (fixed/DHCPv6/redirect by TLV6 ... values).
    uint32 NMSAddrOrigin = 3;   
  }
  oneof lastReg_present {
    // Time since last succesful registration in seconds.
    uint32 lastReg = 4; 
  }
  oneof lastRegReason_present {
    // Reason for last registration:
    // 1: coldstart,
    // 2: administrative,
    // 3: IP address changed,
    // 4: NMS changed,
    // 5: NMS redirect, 
    // 6: NMS error,
    // 7: IDevID, LDevID, or NMS certificate changed,
    // 8: outage recovery.
    uint32 lastRegReason = 5; 
  }
  oneof nextReg_present {
    // Time to next registration attempt in seconds.
    uint32 nextReg = 6; 
  }
  oneof NMSCertValid_present {
    // True if NMS certificate is valid.
    bool NMSCertValid = 7; 
  }
}

// TLV 47
// Device settings for 802.1x
// Class:: Mesh
//

message Ieee8021xSettings {
  oneof ifIndex_present {
    // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
    int32 ifIndex = 1; 
  }
  oneof secMode_present {
    // Security mode, non-security or security (Security Level from 
    // Aux Security Header of IEEE 802.15.4-2020).
    uint32 secMode = 2; 
  }
  oneof authIntervalMin_present {
    // Min interval of 802.1x trickle timer in seconds.
    uint32 authIntervalMin = 3; 
  }
  oneof authIntervalMax_present {
    // Max interval of 802.1x trickle timer in seconds.
    uint32 authIntervalMax = 4; 
  }
  oneof immediate_present {
    // True == do 802.1x authentication immediately,  
    // False == do 802.1x authentication at next authentication 
    // interval.
    bool immediate = 5; 
  }
}

// TLV 48
// Statistic of 802.15.4 beacon packets
// Class:: Mesh
//

message Ieee802154BeaconStats {
  oneof ifIndex_present {
    // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
    int32 ifIndex = 1; 
  }
  oneof inFrames_present {
    // Count of received beacon.
    uint32 inFrames = 10; 
  }
  oneof inFramesBeaconPAS_present {
    // Count of received PAS beacon.
    uint32 inFramesBeaconPAS = 11; 
  }
  oneof inFramesBeaconPA_present {
    // Count of received PA beacon.
    uint32 inFramesBeaconPA = 12; 
  }
  oneof inFramesBeaconPCS_present {
    // Count of received PCS beacon.
    uint32 inFramesBeaconPCS = 13; 
  }
  oneof inFramesBeaconPC_present {
    // Count of received PC beacon.
    uint32 inFramesBeaconPC = 14; 
  }
  oneof outFrames_present {
    // Count of all sent out beacon.
    uint32 outFrames = 20; 
  }
  oneof outFramesBeaconPAS_present {
    // Count of sent out PAS beacon.
    uint32 outFramesBeaconPAS = 21; 
  }
  oneof outFramesBeaconPA_present {
    // Count of sent out PA beacon.
    uint32 outFramesBeaconPA = 22;
  }
  oneof outFramesBeaconPCS_present {
    // Count of sent out PCS beacon.
    uint32 outFramesBeaconPCS = 23; 
  }
  oneof outFramesBeaconPC_present {
    // Count of sent out PC beacon.
    uint32 outFramesBeaconPC = 24; 
  }
}

// TLV 53
// Indicates RPL instance information
// Class:: Mesh
//

message RPLInstance {
  oneof instanceIndex_present {
    // Index for instance.
    int32 instanceIndex = 1; 
  }
  oneof instanceId_present {
    // Instance id.
    int32 instanceId = 2; 
  }
  oneof doDagId_present {
    // DODAG id, len 16.
    bytes doDagId = 3; 
  }
  oneof doDagVersionNumber_present {
    // DODAG version number of instance.
    int32 doDagVersionNumber = 4; 
  }
  oneof rank_present {
    // Rank value.
    int32 rank = 5; 
  }
  oneof parentCount_present {
    // Count of available parents (Wi-SUN candidate parent set).
    int32 parentCount = 6; 
  }
  oneof dagSize_present {
    // Node count of this DODAG.
    uint32 dagSize = 7; 
  }
  // Max repeat 3.
  repeated RPLParent parents = 8; 
  // Max repeat 3.   
  repeated RPLParent candidates = 9;  
}

message RPLParent {
  oneof parentIndex_present {
    // This parent's index in the RPLParent table.
    int32 parentIndex = 1; 
  }
  oneof instanceIndex_present {
    // A particular index in the RPLInstance table that this 
    // parent underlies.
    int32 instanceIndex = 2; 
  }
  oneof routeIndex_present {
    // A particular index in the IPRoute table that this 
    // parent underlies.
    int32 routeIndex = 3; 
  }
  oneof ipv6AddressLocal_present {
    // IPv6 linklocal address.
    bytes ipv6AddressLocal = 4; 
  }
  oneof ipv6AddressGlobal_present {
    // IPv6 global address.
    bytes ipv6AddressGlobal = 5; 
  }
  oneof doDagVersionNumber_present {
    // DODAG version number if RPL parent.
    uint32 doDagVersionNumber = 6; 
  }
  oneof pathEtx_present {
    // The parent's ETX back to the root.
    int32 pathEtx = 7;  
  }
  oneof linkEtx_present {
    // The node's ETX to its next-hop.
    int32 linkEtx = 8;  
  }
  oneof rssiForward_present {
    // Forward RSSI value.
    sint32 rssiForward = 9; 
  }
  oneof rssiReverse_present {
    // Reverse RSSI value.
    sint32 rssiReverse = 10; 
  }
  oneof lqiForward_present {
    // Forward LQI value.
    int32 lqiForward = 11; 
  }
  oneof lqiReverse_present {
    // Reverse LQI value.
    int32 lqiReverse = 12; 
  }
  oneof hops_present {
    // parent's hop value.
    int32 hops = 13; 
  }
}

// Groups in CSMP provide a mechanism to realize application 
// layer multicast in the network. A group is uniquely defined by 
// a type, id pair. Membership within a group type is exclusive,
// i.e., a device can be a member of only one group-id within a 
// group-type. However, a device can be a member of more than one 
// group of different group-types.

// A device is informed about its membership to a group using the
// GroupAssign TLV. On their very first boot, devices do not 
// belong to any group. A device is added to a group by sending a 
// GroupAssign TLV to the device. Receipt of a GroupAssign TLV 
// replaces any existing group assignments.  GroupAssign may occur 
// either by direct unicast to a device or in the registration 
// response from the NMS to the device.  Note that a GroupAssign 
// should not be sent over multicast, because it would possibly 
// cause some group members to change and some group members not 
// to change.

// Group membership information MUST be stored in persistent 
// storage so that once a device has been assigned any group it is 
// remembered across reboots.  A device will only process multicast 
// messages containing a GroupMatch TLV if the device belongs to a 
// group specified by the GroupMatch TLV.

// TLV 55
// Class:: Generic
//

message GroupAssign {
  oneof type_present {
    uint32 type = 1;
  }
  oneof id_present {
    uint32 id = 2;
  }
}

// TLV 57
// Class:: Generic
//

message GroupMatch {
  oneof type_present {
    uint32 type = 1;
  }
  oneof id_present {
    uint32 id = 2;
  }
}

// TLV 58
// Class:: Generic
// GET to a device for this TLV MAY illicit a response with one or 
// more GroupInfo TLVs. 
//

message GroupInfo {
  oneof type_present {
    uint32 type = 1;
  }
  oneof id_present {
    uint32 id = 2;
  }
}

message LowpanMacCounters {
  oneof inFrames_present {
    // Count of all received frames.
    uint32 inFrames = 1; 
  }
  oneof inFramesBeacon_present {
    // Count of received beacon frames (Note: Wi-SUN does 
    // not use Beacon frames).
    uint32 inFramesBeacon = 2; 
  }
  oneof inFramesData_present {
    // Count of received data frames.
    uint32 inFramesData = 3; 
  }
  oneof inFramesAck_present {
    // Count of received ack frames.
    uint32 inFramesAck = 4; 
  }
  oneof inFramesCmd_present {
    // Count of received command frames.
    uint32 inFramesCmd = 5; 
  }
  oneof inFramesAsync_present {
    // Count of received async frames.
    uint32 inFramesAsync = 6; 
  }
  oneof inFramesBcast_present {
    // Count of received broadcast frames.
    uint32 inFramesBcast = 7; 
  }
  oneof inFramesUcast_present {
    // Count of received unicast frames.
    uint32 inFramesUcast = 8; 
  }
  oneof outFrames_present {
    // Count of all sent out frames.
    uint32 outFrames = 9; 
  }
  oneof outFramesBeacon_present {
    // Count of sent out beacon frames.
    uint32 outFramesBeacon = 10; 
  }
  oneof outFramesData_present {
    // Count of sent out data frames.
    uint32 outFramesData = 11; 
  }
  oneof outFramesAck_present {
    // Count of sent out ack frames.
    uint32 outFramesAck = 12; 
  }
  oneof outFramesCmd_present {
    // Count of sent out command frames.
    uint32 outFramesCmd = 13; 
  }
  oneof outFramesAsync_present {
    // Count of sent out async frames.
    uint32 outFramesAsync = 14; 
  }
  oneof outFramesBcast_present {
    // Count of recesent outived broadcast frames.
    uint32 outFramesBcast = 15; 
  }
  oneof outFramesUcast_present {
    // Count of sent out unicast frames.
    uint32 outFramesUcast = 16; 
  }
}

// TLV 62
// Statistic of lowpan mac layer
// Class:: Mesh
//

message LowpanMacStats {
  // Total counter of lowpan mac layer.
  LowpanMacCounters total = 1;  
  // RF counter of lowpan mac layer.
  LowpanMacCounters rf = 2;     
  reserved 3;
}

// TLV 63
// Configuration of RF PHY
// Class:: Mesh
//

message LowpanPhySettings {
  oneof lowpanRF_present {
    // 1 == enable lowpan RF, 0 == disable.
    uint32 lowpanRF = 1; 
  }
  reserved 2;   
}

// TLV 65 - 75 are for firmware upgrade.
// Usage is detailed in main body of the CSMP specification.
//
message HardwareInfo {
  oneof hwId_present {
    // Hardware information, max len 32.
    string hwId = 1; 
  }
  oneof vendorHwId_present {
    // Sub hardware information, max len 32.
    string vendorHwId = 2; 
  }
}

// TLV 65
// Start to transfer firmware
// Class:: Generic
//

message TransferRequest {
  // Hardware information.
  HardwareInfo hwInfo = 1; 
  oneof fileHash_present {
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 2; 
  }
  oneof fileName_present {
    // Name of image file, max len 128.
    string fileName = 3; 
  }
  oneof version_present {
    // Version number, max len 32.
    string version = 4; 
  }
  oneof fileSize_present {
    // Total size of image file.
    uint32 fileSize = 5; 
  }
  oneof blockSize_present {
    // Block size of image file.
    uint32 blockSize = 6; 
  }
  reserved 7 to 11;
}

// TLV 67
// Class:: Generic
//

message ImageBlock {
  oneof fileHash_present{
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 1; 
  }
  oneof blockNum_present {
    // Block number 0, 1, 2, etc.
    uint32 blockNum = 2; 
  }
  oneof blockData_present {
    // Block context, max len 1024.
    bytes blockData = 4; 
  }
}

// TLV 68
// Firmware load request
// Class:: Generic
//

message LoadRequest {
  oneof fileHash_present {
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 1; 
  }
  oneof loadTime_present {
    // UTC time to load image, set to 1 to load immediately.
    uint32 loadTime = 2; 
  }
}

// TLV 69
// Firmware cancel load request
// Class:: Generic
//

message CancelLoadRequest {
  oneof fileHash_present {
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 1; 
  }
}

// TLV 70
// Set firmware to backup slot
// Class:: Generic
//

message SetBackupRequest {
  oneof fileHash_present {
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 1; 
  }
}

/* ResponseCodes

enum {
  // The request was successfully processed.
  OK = 0;
  // Device hardware type does not match 
  // the request's hardware type.
  INCOMPATIBLE_HW = 1;   
  // Image operation cannot be completed, 
  // device only has partial image.
  IMAGE_INCOMPLETE = 2;
  // File hash does not match any image 
  // available on the device.  
  UNKNOWN_HASH = 3;   
  // Image download is denied, filesize 
  // of the new image is too large.    
  FILE_SIZE_TOO_BIG = 4;  
  // Image signature check failed.
  SIGNATURE_FAILED = 5;   
  // Invalid request.
  INVALID_REQ = 6;    
  // Invalid image block size.    
  INVALID_BLOCK_SIZE = 7;
  // Request cannot be processed, 
  // conflict with a pending device reboot. 
  PENDING_REBOOT = 8; 
  // Cancel reboot request cannot be processed, 
  // image is already running.    
  IMAGE_RUNNING = 9;      
}
*/

// TLV 71
// Response for TLV 65 TransferRequest
// Class:: Generic
//

message TransferResponse {
  oneof fileHash_present {
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 1; 
  }
  oneof response_present {
    // Refer to ResponseCodes.
    uint32 response = 2; 
  }
}

// TLV 72
// Response for TLV 68 LoadRequest
// Class:: Generic
//

message LoadResponse {
  oneof fileHash_present {
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 1; 
  }
  oneof response_present {
    // refer to ResponseCodes.
    uint32 response = 2; 
  }
  oneof loadTime_present {
    // UTC time to load image.
    uint32 loadTime = 3; 
  }
}

// TLV 73
// Response for TLV 69 CancelLoadRequest
// Class:: Generic
//

message CancelLoadResponse {
  oneof fileHash_present {
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 1; 
  }
  oneof response_present {
    // Refer to ResponseCodes.
    uint32 response = 2; 
  }
}

// TLV 74
// Class:: Generic
//

message SetBackupResponse {
  oneof fileHash_present {
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 1; 
  }
  oneof response_present {
    // Refer to ResponseCodes.
    uint32 response = 2; 
  }
}

// TLV 75
// Image information
// Class:: Generic
//

message FirmwareImageInfo {
  oneof index_present {
    uint32 index = 1;
  }
  oneof fileHash_present {
    // SAH256 hash value of image file, len 32.
    bytes fileHash = 2; 
  }
  oneof fileName_present {
    // name of image file, max len 128.
    string fileName = 3; 
  }
  oneof version_present {
    // version number, man len 32.
    string version = 4; 
  }
  oneof fileSize_present {
    // total size of image file.
    uint32 fileSize = 5; 
  }
  oneof blockSize_present {
    // block size of image file.
    uint32 blockSize = 6; 
  }
  oneof bitmap_present {
    // bitmap of image file, max len 128. Big endian. 
    // 1 means block was received, 0 means block was not received.
    bytes bitmap = 7; 
  }
  oneof isDefault_present {
    // True if default image.
    bool isDefault = 8; 
  }
  oneof isRunning_present {
    // True if running image.
    bool isRunning = 9; 
  }
  oneof loadTime_present {
    // UTC time to load.  1 means load immediately.
    uint32 loadTime = 10; 
  }
  // hardware information
  HardwareInfo hwInfo = 11; 
  oneof bitmapOffset_present {
    // When present, MUST be set to indicate the start block 
    // number of bitmap.  Block numbering is 0 based.
    uint32 bitmapOffset = 12; 
  }
  reserved 13 to 15;
}

// TLV 76
// Class:: Generic
//

message SignatureValidity {
  oneof notBefore_present {
    // Posix time.
    uint32 notBefore = 1; 
  }
  oneof notAfter_present {
    // Posix time.
    uint32 notAfter = 2; 
  }
}

// TLV 77
// Class:: Generic
//

message Signature {
  oneof value_present {
    bytes value = 1;
  }
}

// TLV 79
// Configuration of signature check settings about message from NMS
// Class:: Generic
//

message SignatureSettings {
  oneof reqSignedPost_present {
    // Check signature in POST message from NMS?
    bool reqSignedPost = 1; 
  }
  oneof reqValidCheckPost_present {
    // Time valid check in POST message from NMS?
    bool reqValidCheckPost = 2; 
  }
  oneof reqTimeSyncPost_present {
    // Return fail when node doesn't have global time in 
    // POST message from NMS?
    bool reqTimeSyncPost = 3; 
  }
  oneof reqSecLocalPost_present {
    // Check signature in POST message from console?
    bool reqSecLocalPost = 4; 
  }
  oneof reqSignedResp_present {
    // Check signature in response message from NMS 
    // during registration?
    bool reqSignedResp = 5; 
  }
  oneof reqValidCheckResp_present {
    // Time valid check in response message from NMS 
    // during registration?
    bool reqValidCheckResp = 6; 
  }
  oneof reqTimeSyncResp_present {
    // Return fail when node doesn't have global time in 
    // response message from NMS during registration?
    bool reqTimeSyncResp = 7; 
  }
  oneof reqSecLocalResp_present {
    // Check signature in response message from console 
    // during registation?
    bool reqSecLocalResp = 8; 
  }
  oneof cert_present {
    // Certificate context, used to change NMS's 
    // certificate, max len 512.
    bytes cert = 9; 
  }
}

message HardwareResetCount {
  oneof total_present {
    uint32 total = 1;
  }
  oneof externalReset_present {
    // External reset reason.
    uint32 externalReset = 2; 
  }
  oneof powerOnReset_present {
    // Power on reset reason.
    uint32 powerOnReset = 3; 
  }
}

message SoftwareResetCount {
  oneof total_present {
    uint32 total = 1;
  }
  oneof FWLoadReset_present {
    // Firmware reload.
    uint32 FWLoadReset = 2; 
  }
  oneof CSMPRebootReset_present {
    // Reload forced by CSMP TLV.
    uint32 CSMPRebootReset = 3; 
  }
  oneof vendorProgramReset_present {
    // Reload forced by vendor's APP.
    uint32 vendorProgramReset = 4; 
  }
  oneof cfgLoadReset_present {
    // Reload config file.
    uint32 cfgLoadReset = 5; 
  }
}

message ExceptionResetCount {
  oneof total_present {
    uint32 total = 1;
  }
  oneof IWDGReset_present {
    // Watchdog forced reset.
    uint32 IWDGReset = 2; 
  }
  oneof cstackOverflowReset_present {
    // Stack over flow reset.
    uint32 cstackOverflowReset = 3; 
  }
  oneof EPFReset_present {
    // GPIO reset.
    uint32 EPFReset = 4; 
  }
}

// TLV 86
// Count of all types of reset in the system, include hardware reset, 
// software reset and exception reset.
// Class:: Generic
//

message SysResetStats {
  oneof total_present {
    // Reset counters.
    uint32 total = 1; 
  }
  HardwareResetCount hardwareReset = 2;
  SoftwareResetCount softwareReset = 3;
  ExceptionResetCount exceptionReset = 4;
}

// TLV 124
// Status of device network module, similar as netstat command in linux
// Class:: Generic
//

message NetStat {
  oneof sessionIndex_present {
    // Session index.
    int32 sessionIndex = 1;  
  }
  oneof protocol_present {
    // 6 TCP, 
    // 17 UDP.
    uint32 protocol = 2; 
  }
  oneof localAddress_present {
    //IPv4 or IPv6 local address.
    bytes localAddress = 3; 
  }
  oneof localPort_present {
    // Local port number.
    uint32 localPort = 4; 
  }
  oneof peerAddress_present {
    // IPv4 or IPv6 peer address.
    bytes peerAddress = 5; 
  }
  oneof peerPort_present {
    // Peer port number.
    uint32 peerPort = 6; 
  }
  oneof state_present {
    uint32 state = 7;
  }
  oneof role_present {
    // 1 - server/incoming, 
    // 2 - client/outgoing.
    uint32 role = 8; 
  }
}

// TLV 141
// Indicate the network role of device
// Class:: Generic
//

message NetworkRole {
  // 0 - SYSTEM_DEFAULT, 
  // 1 - TRANSIT_NODE, 
  // 2 - LEAF_NODE.
  uint32 preference = 1; 
}

message CertInfoEntry {
  oneof type_present {
    // 1 - FND public key,
    // 2 - 802.1x CA,
    // 3 - 802.1x public key,
    // 4 - iDevID public key.
    uint32 type = 1;   
  }
  oneof certSubj_present {
    // Certificate subject name, max length 128.
    string certSubj = 2;  
  }
  oneof certValidNotBefore_present {
    // Not before of valid time, max length 16.
    string certValidNotBefore = 3;  
  }
  oneof certValidNotAfter_present {
    // Not after of valid time, max length 16.
    string certValidNotAfter = 4;  
  }
  oneof certFingerprint_present {
    // Certificate finger print, max length 20.
    bytes certFingerprint = 5;  
  }
}

// TLV 172
// Device Certificate Bundle TLV.
//
message CertBundle {
  // Max repeat is 5.
  repeated CertInfoEntry certInfo = 1; 
}

// TLV 241
// Statistic of MPL packet
// Class:: Mesh
//

message MplStats {
  oneof dataSent_present {
    // Count of sent data packets.
    uint32 dataSent = 1; 
  }
  oneof dataReceived_present {
    // Count of received data packets.
    uint32 dataReceived = 2; 
  }
  oneof dataError_present {
    // Count of error data packets.
    uint32 dataError = 3; 
  }
  oneof dataSentDuplicate_present {
    // Count of duplicate sent data packets.
    uint32 dataSentDuplicate = 4; 
  }
  oneof dataReceivedDuplicate_present {
    // Count of duplicate received data packets.
    uint32 dataReceivedDuplicate = 5; 
  }
  oneof controlSent_present {
    // Count of send control packets.
    uint32 controlSent = 6; 
  }
  oneof controlReceived_present {
    // Count of received control packets.
    uint32 controlReceived = 7; 
  }
  oneof controlError_present {
    // Count of error control packets.
    uint32 controlError = 8; 
  }
}

// TLV 242
// Reset statistic of MPL packet
// Class:: Mesh
//

message MplReset {
  oneof stats_present {
    // True means reset MPL statistics.
    bool stats = 8; 
  }
}

// TLV 313
// Statistics for RPL messages
// Class:: Mesh
//

message RPLStats {
  oneof inFramesDIS_present {
    // Count of received DIS packets.
    uint32 inFramesDIS = 1; 
  }
  oneof inFramesDIO_present {
    // Count of received DIO packets.
    uint32 inFramesDIO = 2; 
  }
  oneof inFramesDAO_present {
    // Count of received DAO packets.
    uint32 inFramesDAO = 3; 
  }
  oneof outFramesDIS_present {
    // Count of sent DIS packets.
    uint32 outFramesDIS = 4; 
  }
  oneof outFramesDIO_present {
    // Count of sent DIO packets.
    uint32 outFramesDIO = 5; 
  }
  oneof outFramesDAO_present {
    // Count of sent DAO packets.
    uint32 outFramesDAO = 6; 
  }
  oneof outFramesNoPathDAO_present {
    // Count of sent no-path DAO packets.
    uint32 outFramesNoPathDAO = 7; 
  }
  oneof outFramesNS_present {
    // Count of sent neighbor solicit packets.
    uint32 outFramesNS = 8; 
  }
}

// TLV 314
// Statistics for DHCPv6 messages
// Class:: Generic
//

message DHCP6Stats {
  oneof clientFramesSolicit_present {
    // Count of sent solicit packets.
    uint32 clientFramesSolicit = 1; 
  }
  oneof clientFramesAdvertise_present {
    // Count of sent advertise packets.
    uint32 clientFramesAdvertise = 2; 
  }
  oneof clientFramesRequest_present {
    // Count of sent request packets.
    uint32 clientFramesRequest = 3; 
  }
  oneof clientFramesReply_present {
    // Count of sent reply packets.
    uint32 clientFramesReply = 4; 
  }
  oneof relayFramesForward_present {
    // Count of DHCP relay packets forwarded by node.
    uint32 relayFramesForward = 5; 
  }
  oneof relayFramesReply_present {
    // Count of DHCP relay packets relayed by node.
    uint32 relayFramesReply = 6; 
  }
}


]]></artwork>
          </section>
        </section>
        <section anchor="large-requests">
          <name>Large Requests</name>
          <t>A single CSMP TLV MUST NOT be larger than the space available in a single CoAP request message payload, minus the space occupied by mandatory TLVs.  CSMP requests containing large TLVs or many TLVs may exceed available space within a CoAP request / UDP datagram.</t>
          <t>If a POST request is larger than the UDP MTU, the request MUST be split into multiple POST requests with the TLVs spread across the message bodies. The server MUST be prepared to handle the TLVs in any order.</t>
          <t>If a GET request exceeds the UDP MTU because the max length of the "q" option is exceeded, the request MUST be split into multiple GET requests, each with a subset of the query option.</t>
          <t>The GET response from a server may not be able to fit all requested TLVs into the response.  The server will respond with only the TLVs it is able to fit within the message body.  A client SHOULD issue additional GET requests to obtain the missing TLVs.</t>
          <t>Recommended network MTU will be deployment / technology dependent.  For example, an MTU of 1024 is often used for large scale IEEE 802.15.4 mesh networks.</t>
        </section>
      </section>
      <section anchor="csmp-security-model">
        <name>CSMP Security Model</name>
        <t>The NMS signs outgoing device messaging.  Devices verify the signature to confirm source and integrity of incoming NMS messages.  NMS-Device trust is established with an NMS certificate/public key programmed into the device at time of manufacture.   Signing TLVs included in the message payload enable signature verification by a device.   The Signing TLVs are:</t>
        <ol spacing="normal" type="1"><li>
            <t>Signature TLV. When included, the Signature TLV MUST be the last TLV in a message payload. The signature is calculated over the first byte of the message payload up to but not including the Signature TLV itself. Unless otherwise specified, the signature MUST be calculated as ECDSA with SHA-256 signature cipher using the signer's (NMS) private key.  If the message signature is incorrect, the device MUST ignore the message.</t>
          </li>
          <li>
            <t>SignatureValidity TLV. The SignatureValidity TLV defines the validity period for the message.  The  SignatureValidity  TLV MUST be included when the Signature TLV is included. If the message is received outside the defined validity period, the device MUST ignore the message.</t>
          </li>
        </ol>
        <t>If either of the Signing TLVs are missing from a message payload, the device MUST ignore the message.</t>
        <t>Additional layer 2, 3, or 4 security mechanisms may be utilized to meet the requirements of specific deployment models (Wi-SUN layer 2 security, VPN at layer 3, DTLS at layer 4, etc.).  Details of these additional security mechanisms are out of scope of this specification.</t>
        <section anchor="signature-exemption">
          <name>Signature Exemption</name>
          <t>For situations in which a request payload signature adds overhead without improving security, the Signing TLVs may be elided for certain payloads. For example, the overhead of signing each block of a firmware update may be unnecessary as a full image integrity check is performed over the entire file and reported to the NMS.</t>
          <t>The signature exemptible TLVs are:</t>
          <ol spacing="normal" type="1"><li>
              <t>ImageBlock</t>
            </li>
            <li>
              <t>DescriptionRequest</t>
            </li>
          </ol>
          <t>The NMS MAY elide the Signing TLVs provided the request body contains only exemptible TLVs.  Otherwise, the Signing TLVs MUST be included.</t>
          <t>A device MAY accept incoming message payloads without Signing TLVs provided the payload contains only exemptible TLVs.</t>
        </section>
      </section>
      <section anchor="device-groups">
        <name>Device Groups</name>
        <t>CSMP groups are used to support multicast messaging to devices.</t>
        <t>A group is uniquely defined by a group-type/group-id pair. A device MAY be a member of multiple group-types, but MUST be a member of only one group-id within a group-type.  A device MUST support membership in at least two group types.</t>
        <t>The NMS assigns a device to a group using the GroupAssign TLV. On initial boot, a device has no group assignments. To be assigned to a device group, a GroupAssign TLV MUST be sent to the device either by a POST request from the NMS or within the response to the device's registration request to the NMS.</t>
        <t>The NMS removes a device from a group by POST-ing a GroupEvict TLV to the device.</t>
        <t>If a device's group assignment is changed at the NMS, upon receipt of the next metrics report from the device, the NMS MUST POST a new GroupAssign TLV to the device.</t>
        <t>Group assignments are not additive.  Assignments MUST be replaced upon receipt of a subsequent GroupAssign TLV.</t>
        <t>A GroupAssign TLV MUST NOT be sent within a multicast message.</t>
        <t>A GroupEvict TLV MUST NOT be sent within a multicast message.</t>
        <t>Devices MUST maintain group assignments in durable storage (across power cyclings / reboots).</t>
        <t>CSMP multicast messages MUST contain a GroupMatch TLV.  Upon receipt of a multicast CSMP message:</t>
        <ol spacing="normal" type="1"><li>
            <t>A device MUST process the message if the contained GroupMatch TLV matches a group to which the device is assigned.</t>
          </li>
          <li>
            <t>A device MUST ignore the message if the message does not contain a GroupMatch TLV.</t>
          </li>
          <li>
            <t>A device MUST ignore the message if the GroupMatch TLV does not match a device group assignment.</t>
          </li>
        </ol>
        <section anchor="reserved-group-types">
          <name>Reserved Group Types</name>
          <t>Group type 1 is reserved for configuration.</t>
          <t>Group type 2 is reserved for firmware.</t>
        </section>
      </section>
      <section anchor="device-tlv-processing-order">
        <name>Device TLV Processing Order</name>
        <t>A device processes message payload TLVs in the following order:</t>
        <ol spacing="normal" type="1"><li>
            <t>If present, the Signature and SignatureValidity TLVs MUST be processed first.</t>
          </li>
          <li>
            <t>If present, the GroupMatch TLV MUST be processed next.</t>
          </li>
          <li>
            <t>The remaining payload TLVs MUST be processed in the order they appear in the payload.</t>
          </li>
          <li>
            <t>TLVs within a payload SHOULD NOT be duplicated.  In the case of a duplicate TLV, the last payload instance of TLV MUST be used.</t>
          </li>
          <li>
            <t>The index field of a TLV table entry is used to determine uniqueness of the TLV.  TLVs with identical index values MUST be considered to be duplicates (table entry TLVs are identified in <xref target="csmpComp"/>.</t>
          </li>
          <li>
            <t>TLV specific error handling is described in the OpenAPI definitions.</t>
          </li>
        </ol>
      </section>
    </section>
    <section anchor="functional-description">
      <name>Functional Description</name>
      <t>This section describes the major operational flows of the CSMP protocol.</t>
      <section anchor="device-lifecyle-states">
        <name>Device Lifecyle States</name>
        <t>For understanding of CSMP device behavior, it is helpful to consider the NMS' view of device states and state transitions (presented below).</t>
        <t>The NMS views a device as transitioning through the following states:</t>
        <figure>
          <name>NMS View of Device State</name>
          <artset>
            <artwork type="ascii-art"><![CDATA[
                                                   
,--------.   ,---------.   ,-------------.   ,-----.   ,------.
| *start |-->| Unheard |-->| Registering |-->| Up  |-->| Down |
|        |   |         |   |             |<--|     |<--|      |
`--------'   `---------'   |             |   `-----'   |      |
                           |             |<------------|      |
                           `-------------'             `------'

    ]]></artwork>
          </artset>
        </figure>
        <ol spacing="normal" type="1"><li>
            <t>A device pre-populated into the NMS prior to deployment exists in the Unheard state.</t>
          </li>
          <li>
            <t>Upon receipt of a device registration request, the NMS records the device's presence on the network and the device enters the Registering state. The NMS responds with a Registration ACK payload containing configuration for the device.</t>
          </li>
          <li>
            <t>The device transitions to the Up state upon NMS receipt of a device metrics report (indicating device configuration was successful).   This is the normal operating state of a healthy device.</t>
          </li>
          <li>
            <t>If subsequent metrics reports are lost (poor network conditions, device failure, etc.), the device transitions to the Down state. NMS receipt of a new metrics report transitions the device back to the Up state.</t>
          </li>
          <li>
            <t>From the Up or Down state, a device may issue new registration requests due to a variety of reasons discussed below.</t>
          </li>
        </ol>
      </section>
      <section anchor="nms-discovery">
        <name>NMS Discovery</name>
        <t>A device requires the &lt;nms-base-url&gt; of its NMS.  Acquisition of the NMS URL may be accomplished via a variety of means including a DHCP option, pre-deployment administrative configuration setting, etc. The specific mechanism to be used is beyond the scope of this specification.</t>
        <t>For devices using DHCPv6 address assignment, a device MAY request DHCPv6 option 26484 sub-option 1 to obtain the URL of its NMS.</t>
      </section>
      <section anchor="device-registration-and-configuration">
        <name>Device Registration and Configuration</name>
        <t>Registration is the messaging flow via which a device announces its entry onto the network and provides a means for the NMS to push configuration information to the device.</t>
        <t>A device registers with an NMS by issuing a registration request to an NMS.  The NMS subsequently responds to reject or accept the registration, with device configuration included in a successful registration response.  A device issues a registration request for a variety of reasons:</t>
        <ol spacing="normal" type="1"><li>
            <t>A device MUST register when the device reboots (power cycled or receipt of RebootRequest TLV from the NMS).</t>
          </li>
          <li>
            <t>A device MUST register when its IP address has changed (usually indicating a network re-join).</t>
          </li>
          <li>
            <t>A device MUST register if its mesh parent has changed (mesh networks only).</t>
          </li>
          <li>
            <t>A device MUST register if it detects the NMS IP address has changed.</t>
          </li>
          <li>
            <t>A device MUST register upon receipt of NMSRedirectRequest TLV from the NMS.  This can be caused by the removal of a device from the NMS inventory but the device continues to communicate with a Session ID now unknown to the NMS.</t>
          </li>
        </ol>
        <t>A device and NMS implement the registration messaging flow depicted in Figure 2.</t>
        <figure>
          <name>Device Registration, Configuration, and Metrics</name>
          <artset>
            <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e9c763102bee617e4f6f6a526d39de081660a25f/RegistrationConfigurationMetrics.svg?raw=true"/>
            <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
          </artset>
        </figure>
        <section anchor="device-registration-request">
          <name>Device Registration Request</name>
          <t>A device MUST implement two configurable parameters used to control the registration process, initially set at manufacture time, and MUST be maintained in durable storage.</t>
          <ol spacing="normal" type="1"><li>
              <t>tIntervalMin defaults to 300 seconds (5 minutes). Also configurable via TLV 42/regIntervalMin field.</t>
            </li>
            <li>
              <t>tIntervalMax defaults to 3600 seconds (1 hour). Also configurable via TLV 42/regIntervalMax field.</t>
            </li>
          </ol>
          <t>A device MUST issue registration requests using the following algorithm.</t>
          <artwork><![CDATA[
    Set tInterval = tIntervalMin.
    Wait an initial period between 0 and tInterval seconds.
    Do {
      1. Wait tBackoff seconds, where tBackoff is a random
        interval between tInterval/2 and tInterval seconds. 
        A tBackoff value in the latter half of the interval 
        ensures a minimum time between successive registration 
        attempts.
      2. Send new CoAP CON POST request to NMS <nms-base-url>/r.  
        The message payload MUST contain the registration TLVs 
        described in section 3.3.1.2.
      3. Wait the remaining (tInterval - tBackoff) seconds.
      4. Set tInterval to 2 * tInterval. 
        If tInterval is greater than tIntervalMax, 
        set tInterval to tIntervalMax.
    } While the device has not received ACK to its registration POST.
]]></artwork>
          <t>An example execution of a full registration POST retry sequence is presented in <xref target="appendixA"/>.</t>
          <t>If the device receives an ACK message with CoAP response code 2.03 (valid) from the NMS at any time before the device's next registration POST, the TLVs within the ACK message MUST be processed.</t>
        </section>
        <section anchor="registration-post-payload">
          <name>Registration POST Payload</name>
          <t>The following TLVs MUST be included in the device registration POST to the NMS:</t>
          <ol spacing="normal" type="1"><li>
              <t>DeviceID (primary identifier of the device).</t>
            </li>
            <li>
              <t>CurrentTime (used to validate device local time).</t>
            </li>
          </ol>
          <t>Previously registered devices SHOULD already have (durably stored) values for the Session ID, GroupInfo,and ReportSubscribe TLVs and MUST include these TLVs in the device registration POST to the NMS:</t>
          <ol spacing="normal" type="1"><li>
              <t>SessionID</t>
            </li>
            <li>
              <t>GroupInfo (one per group)</t>
            </li>
            <li>
              <t>ReportSubscribe</t>
            </li>
          </ol>
          <t>The following Device Information TLVs MUST be included in the registration POST:</t>
          <ol spacing="normal" type="1"><li>
              <t>HardwareDesc</t>
            </li>
            <li>
              <t>InterfaceDesc (one per interface)</t>
            </li>
            <li>
              <t>IPAddress (one per address)</t>
            </li>
            <li>
              <t>NMSStatus (reason for the registration operation)</t>
            </li>
            <li>
              <t>WPANStatus</t>
            </li>
            <li>
              <t>RPLSettings</t>
            </li>
          </ol>
          <t>Note that the SessionID, GroupAssign, and ReportSubscribe TLV set is considered to be generic device Configuration.  The Configuration TLV set is technology specific and MAY be extended with additional technology specific TLVs (beyond the scope of this specification).</t>
        </section>
        <section anchor="nms-registration-response">
          <name>NMS Registration Response</name>
          <t>Upon receipt of a registration request, the NMS looks up the information for the device identified by DeviceID to confirm correctness of the request.  See <xref target="csmpNms"/> for details of DeviceID and SessionID validation and related error response codes.</t>
          <t>If the device is found in inventory, authorized to register, and all other registration request content is confirmed to be valid, the NMS MUST send an ACK response message with response code 2.03(Valid)to the device.  The ACK takes one of two forms, depending upon whether or not the NMS will redirect the device to another NMS.</t>
          <t>In the case where the NMS is not redirecting, the response body to a valid registration request contains the following TLVs:</t>
          <ol spacing="normal" type="1"><li>
              <t>SessionID MUST be elided from the ACK if the SessionID  contained in the registration request is correct, otherwise the correct SessionID TLV MUST be included in the ACK.</t>
            </li>
            <li>
              <t>GroupAssign MUST be elided from the ACK if the GroupAssign  contained in the registration request is correct, otherwise the correct GroupAssign TLV MUST be included in the ACK.</t>
            </li>
            <li>
              <t>ReportSubscribe MUST be elided from the ACK if the ReportSubscribe contained in the registration request is correct, otherwise the correct ReportSubscribe TLV MUST be included in the ACK.</t>
            </li>
            <li>
              <t>Signing TLVs MUST be included.</t>
            </li>
          </ol>
          <t>In the case where the NMS is redirecting, the response body to a valid registration request contains the following TLVs:</t>
          <ol spacing="normal" type="1"><li>
              <t>NMSRedirectRequest MUST be included.</t>
            </li>
            <li>
              <t>Signing TLVs MUST be included.</t>
            </li>
          </ol>
          <t>When the response contains a SessionID TLV, the device MUST durably store this TLV and SessionID TLV MUST be included in all future CSMP requests to the NMS.</t>
          <t>When the response contains a GroupAssign TLV, the device MUST durably store the group-id (overwriting any other stored group-id for the same group-type) and MUST use the new GroupAssign values for comparison with all future receipt of GroupMatch TLVs.</t>
          <t>When the response contains a ReportSubscribe TLV, the device MUST begin reporting the indicated metrics TLVs (ignoring any TLVs requested by the ReportSubscribe which are unknown to the device).</t>
          <t>The NMS includes the NMSRedirectRequest TLV in a registration response to request the device register with an alternate NMS instance (load balancing, etc.). Upon receipt of this TLV, the device MUST cease registration attempts with the original NMS and start the registration process with the NMS indicated in the NMSRedirectRequest TLV.  If registration succeeds with this new NMS, all subsequent device CSMP messaging MUST be directed to this new NMS.   Note that device receipt of NMSRedirectRequest TLV is a one-time redirect and not persisted across device restarts.</t>
        </section>
        <section anchor="registration-complete">
          <name>Registration Complete</name>
          <t>The NMS considers device registration to be complete when all of the following conditions are met:</t>
          <ol spacing="normal" type="1"><li>
              <t>The registration ACK to the device indicates code 2.03 (Valid) and message ID match is confirmed as described in CoAP.</t>
            </li>
            <li>
              <t>The ACK response body does not contain an NMSRedirectRequest TLV.</t>
            </li>
            <li>
              <t>The first metrics report from the device is received by the NMS.</t>
            </li>
          </ol>
        </section>
      </section>
      <section anchor="device-metrics-reporting">
        <name>Device Metrics Reporting</name>
        <t>Upon receipt of a ReportSubscribe TLV, a device configures as many as two metrics reports:</t>
        <ol spacing="normal" type="1"><li>
            <t>A primary metrics report using the interval and TLV ID set.</t>
          </li>
          <li>
            <t>A secondary metrics report using the heartbeat interval and heartbeat TLV ID set.</t>
          </li>
        </ol>
        <t>The primary metrics report MUST be used for mains powered devices (with the secondary report disabled).  To conserve power, metrics reporting for low power devices MAY be split across primary and secondary reports, with the primary report configured to provide TLVs needed at more frequent interval and the secondary configured for TLVs required at a more relaxed interval.</t>
        <t>A device configures metrics parameters to control the device's primary metrics report as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>tMetricsInterval (how often a device MUST report its metrics) is typically set between 5 minutes and 8 hours (depends on application requirements). Designated by the interval field of the ReportSubscribe TLV.</t>
          </li>
          <li>
            <t>tlvList (the list of TLVs the device MUST report) is designated by the tlvId field of the ReportSubscribe TLV.</t>
          </li>
        </ol>
        <t>A device configures metrics parameters to control a device's secondary metrics report as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>tMetricsInterval is designated by the intervalHeartBeat field of the ReportSubscribe TLV.</t>
          </li>
          <li>
            <t>tlvList is designated by the tlvIdHeartBeat field of the ReportSubscribe TLV.</t>
          </li>
        </ol>
        <t>The TLV content of the primary and secondary metrics reports are deployment and application specific.  For example, the primary metrics report for a 6LoWPAN, mains-powered mesh node might be configured as:</t>
        <ol spacing="normal" type="1"><li>
            <t>InterfaceMetrics</t>
          </li>
          <li>
            <t>GroupInfo</t>
          </li>
          <li>
            <t>FirmwareImageInfo</t>
          </li>
          <li>
            <t>Uptime</t>
          </li>
          <li>
            <t>LowpanPhyStats</t>
          </li>
          <li>
            <t>DifServMetrics</t>
          </li>
          <li>
            <t>ReportSubscribe</t>
          </li>
        </ol>
        <t>TLV content of the secondary metrics report is similarly application specific and beyond the scope of this specification.</t>
        <t>For each configured metrics report, a device MUST commence reporting immediately after receipt of a successful registration ACK by sending a NON POST to &lt;nms-url&gt;/c containing the following TLVs:</t>
        <ol spacing="normal" type="1"><li>
            <t>SessionID</t>
          </li>
          <li>
            <t>CurrentTime</t>
          </li>
          <li>
            <t>The TLVs from tlvList. The entirety of all table entries MUST be included.</t>
          </li>
        </ol>
        <t>Following the initial metrics report, the device MUST implement the following algorithm for subsequent metric reports (for both primary and secondary report):</t>
        <artwork><![CDATA[
    Send a new CoAP NON POST to <nms-url>/c with required metrics TLVs.
    Wait initial random interval between 0 and tMetricsInterval seconds.
    Do {
        1. Wait tMetricsBackoff seconds, where tMetricsBackoff is 
          random value between tMetricsInterval/2 and tMetricsInterval
          seconds.
        2. Send a new CoAP NON POST message to <nms-url>/c 
          with the required metrics TLVs
        3. Wait the remaining (tMetricsInterval - tMetricsBackoff) 
          seconds so that the full tMetricsInterval has expired.
    } While the device has a valid IP address.
]]></artwork>
      </section>
      <section anchor="device-firmware-update">
        <name>Device Firmware Update</name>
        <t>CSMP defines a device firmware update process optimized for LPWANs. A key aspect of this process is the separation of image placement on a device from activation (execution) of the image on the device.</t>
        <t>The device firmware update process consists of three sub-flows:</t>
        <ol spacing="normal" type="1"><li>
            <t>Firmware download.  A new image is placed on one or more members of a device group.</t>
          </li>
          <li>
            <t>Image load.  Activate an image on one or more members of a device group at a scheduled time.</t>
          </li>
          <li>
            <t>Set backup image.  Optional designation of an image to be used when load of all other images fails.</t>
          </li>
        </ol>
        <t>A device should implement the following mechanisms in support of firmware update:</t>
        <ol spacing="normal" type="1"><li>
            <t>It is RECOMMENDED that vendors implement digital signing of images prior to image release to production.</t>
          </li>
          <li>
            <t>It is RECOMMENDED that a device implement a secure bootloader which (upon device receipt of a LoadRequest TLV or at device power-up) validates the activated image's signature, loads the image from durable storage into operating memory, and transfers execution to the image.  Specific details of image signing and the secure bootloader are left to the vendor beyond the scope of this specification.</t>
          </li>
          <li>
            <t>A device MUST be capable of storing at least two firmware images: the running image and at least one additional image.</t>
          </li>
          <li>
            <t>It is RECOMMENDED that a device also support a backup image. A device boots into the backup image when the device is unable to boot into any other image.</t>
          </li>
          <li>
            <t>A device MUST be capable of scheduling an image load (activation) at a specific future time (i.e. the device must maintain a time source).</t>
          </li>
        </ol>
        <section anchor="firmware-image-format">
          <name>Firmware Image Format</name>
          <t>A CSMP firmware image file consists of three main parts: a CSMP defined image header, the vendor defined image binary, and the vendor defined image signature (as depicted below).</t>
          <table>
            <name>Firmware Image Format</name>
            <thead>
              <tr>
                <th align="left">Field</th>
                <th align="left">Size (octets)</th>
                <th align="left">Description</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">Begin Header</td>
              </tr>
              <tr>
                <td align="left">Header Version</td>
                <td align="left">4</td>
                <td align="left">32 bit unsigned integer which MUST be set to 2.</td>
              </tr>
              <tr>
                <td align="left">Header Length</td>
                <td align="left">4</td>
                <td align="left">32 bit unsigned integer which MUST be set to 256.</td>
              </tr>
              <tr>
                <td align="left">App Rev Major</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the major revision number of the application image.</td>
              </tr>
              <tr>
                <td align="left">App Rev Minor</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the minor revision number of the application image.</td>
              </tr>
              <tr>
                <td align="left">App Build</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the build of the application image.</td>
              </tr>
              <tr>
                <td align="left">App Length</td>
                <td align="left">4</td>
                <td align="left">32 bit unsigned integer which MUST be set to the octet length of the Header + Image Binary field.</td>
              </tr>
              <tr>
                <td align="left">App Name</td>
                <td align="left">32</td>
                <td align="left">Vendor specific 32 octet string which is set to indicate the name of the application.</td>
              </tr>
              <tr>
                <td align="left">App SCC Branch</td>
                <td align="left">32</td>
                <td align="left">Vendor specific 32 octet string which is set to indicate the source code control system branch ID.</td>
              </tr>
              <tr>
                <td align="left">App SCC Commit</td>
                <td align="left">8</td>
                <td align="left">Vendor specific 8 octet string which is set to indicate the source code control system commit ID.</td>
              </tr>
              <tr>
                <td align="left">App SCC Flags</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the source code control system build flags.</td>
              </tr>
              <tr>
                <td align="left">App Build Date</td>
                <td align="left">16</td>
                <td align="left">Vendor specific 16 octet string which is set to indicate the build date and time of the application image.</td>
              </tr>
              <tr>
                <td align="left">hwid</td>
                <td align="left">32</td>
                <td align="left">32 octet field which is RECOMMENDED to be set to a concatenation of a unique manufacturer ID and product model identifier.</td>
              </tr>
              <tr>
                <td align="left">sub_hwid</td>
                <td align="left">32</td>
                <td align="left">32 octet field which MAY be set for a manufacturer specific purpose, or functionally elided by filling with 0x20 (ASCII space character).</td>
              </tr>
              <tr>
                <td align="left">kernel_rev</td>
                <td align="left">16</td>
                <td align="left">16 octet field which MAY be set for a manufacturer specific purpose, or functionally elided by filling with 0x20 (ASCII space character).</td>
              </tr>
              <tr>
                <td align="left">sub_kernel_rev</td>
                <td align="left">16</td>
                <td align="left">16 octet field which MAY be set for a manufacturer specific purpose, or functionally elided by filling with 0x20 (ASCII space character).</td>
              </tr>
              <tr>
                <td align="left">Reserved</td>
                <td align="left">44</td>
                <td align="left">Pad to 256 octets, octets MUST be set to 0.</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">End Header, Begin Image</td>
              </tr>
              <tr>
                <td align="left">Image Binary</td>
                <td align="left">Variable</td>
                <td align="left">Vendor specific image data.</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">End Image, Begin Signature</td>
              </tr>
              <tr>
                <td align="left">Signature     Variable</td>
                <td align="left">Vendor specific image signature.</td>
                <td align="left">Calculated over entire content of this structure except the signature and pad fields.</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">End Signature, Begin Pad</td>
              </tr>
              <tr>
                <td align="left">Pad</td>
                <td align="left">Variable</td>
                <td align="left">Optional pad field to enable image to fill vendor specific flash memory boundary.  When present, octets MUST be set to 0xFF.</td>
              </tr>
            </tbody>
          </table>
          <t>All multi-octet fields are encoded as little-endian.</t>
        </section>
        <section anchor="firmware-download">
          <name>Firmware Download</name>
          <t>An NMS implements the messaging flow depicted in Figure 3 and Figure 4 to download an image to a group of devices.  Unicast distribution is also supported, with the difference being use of unicast addresses, omission of the GroupMatch TLV and omission of the "a" query option.</t>
          <figure>
            <name>Firmware Download</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/aacaed091f902852e85446d63c393bbf62fc5885/FirmwareLoadA.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <figure>
            <name>Firmware Download (cont)</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/aacaed091f902852e85446d63c393bbf62fc5885/FirmwareLoadB.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <t>A firmware download begins with the NMS informing the device group of the meta-data of an image the NMS wishes to download, and the devices subsequently informing the NMS of the images already loaded on the devices.</t>
          <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>A GroupMatch TLV MUST be included for the desired group.</t>
            </li>
            <li>
              <t>The "a" option MUST be specified to randomize subsequent device responses.</t>
            </li>
            <li>
              <t>The request MAY contain an "r" option to redirect the subsequent TransferResponse.</t>
            </li>
            <li>
              <t>The request MUST contain a TranferRequest TLV (meta-data for the file to be downloaded)</t>
            </li>
            <li>
              <t>The request MUST contain the Signing TLVs.</t>
            </li>
          </ol>
          <t>Devices receiving a TransferRequest message:</t>
          <ol spacing="normal" type="1"><li>
              <t>MUST process the Signing TLVs and the GroupMatch TLV as described in section 2.6.</t>
            </li>
            <li>
              <t>MUST wait the specified period when the "a" option is included.</t>
            </li>
            <li>
              <t>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the TransferResponse TLV.  The &lt;nms-url&gt; MUST be overridden by the "r" option if specified.</t>
            </li>
          </ol>
          <t>The NMS MUST proceed with image block transfer when at least one member of the target device group indicates Response Code of OK in the TransferResponse TLV.  Otherwise, the transfer MUST be aborted.</t>
          <t>Images are often multiple 100s of Kilobytes in size and likely require fragmentation into multiple blocks (N) to be transferred to a device.</t>
          <t>For the transfer of each image block, the NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>The request MUST contain the GroupMatch TLV for the desired group.</t>
            </li>
            <li>
              <t>The request MUST contain an ImageBlock TLV</t>
            </li>
            <li>
              <t>The request MAY contain the Signing TLVs.</t>
            </li>
          </ol>
          <t>To determine image download progress, the NMS MUST periodically include a DescriptionRequest TLV, requesting the FirmwareImageInfo TLV, in the image block request.  It is RECOMMENDED that the NMS request the FirmwareImageInfo TLV at 10% increments of the image download.  The NMS MUST request the FirmwareImageInfo TLV with the transfer of the last block of the image.</t>
          <t>Devices receiving the image block request message:</t>
          <ol spacing="normal" type="1"><li>
              <t>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</t>
            </li>
            <li>
              <t>MUST cache the image block for final image assembly.</t>
            </li>
            <li>
              <t>When the FirmwareImageInfo TLV is requested, the device MUST wait the specified period when the 'a' option is included and MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the FirmwareImageInfo TLV (meta-data for files loaded on the device). The &lt;nms-url&gt; MUST be overridden by the "r" option if specified.</t>
            </li>
          </ol>
          <t>Receipt of the final FirmwareImageInfo TLV enables the NMS to confirm the integrity of the completely downloaded image.</t>
        </section>
        <section anchor="image-activation">
          <name>Image Activation</name>
          <t>The messaging flow for scheduling image activation across a group of devices and cancelling a scheduled image activation are depicted in Figure 5 and described below.  Unicast activation is also supported, with the difference being use of unicast addresses, omission of the GroupMatch TLV and omission of the "a" query option.</t>
          <figure>
            <name>Image Activation</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/0f91f16aec32bee2238dabf5a972169dc4d93c69/ActivationFirmware.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <section anchor="image-load">
            <name>Image Load</name>
            <t>An NMS implements the following message flow to command devices to designate an image as the active executable and the time at which the image is to be activated.</t>
            <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
            <ol spacing="normal" type="1"><li>
                <t>A GroupMatch TLV MUST be included for the desired group.</t>
              </li>
              <li>
                <t>The "a" option MUST be specified to randomize subsequent device responses.</t>
              </li>
              <li>
                <t>The request MAY contain an "r" option to redirect the subsequent LoadResponse.</t>
              </li>
              <li>
                <t>The request MUST contain a LoadRequest TLV (designating the image and time at which the image is to be activated).</t>
              </li>
              <li>
                <t>The request MUST contain the Signing TLVs.</t>
              </li>
            </ol>
            <t>Devices receiving a LoadRequest message:</t>
            <ol spacing="normal" type="1"><li>
                <t>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</t>
              </li>
              <li>
                <t>MUST wait the specified period when the "a" option is included.</t>
              </li>
              <li>
                <t>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the LoadResponse TLV (indicating success or reason for failure). The &lt;nms-url&gt; MUST be overridden by the "r" option if specified.</t>
              </li>
            </ol>
          </section>
          <section anchor="cancel-image-load">
            <name>Cancel Image Load</name>
            <t>An NMS implements the following message flow to cancel a previously scheduled image activation.</t>
            <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
            <ol spacing="normal" type="1"><li>
                <t>A GroupMatch TLV MUST be included for the desired group.</t>
              </li>
              <li>
                <t>The "a" option MUST be specified to randomize subsequent device responses.</t>
              </li>
              <li>
                <t>The request MAY contain an "r" option to redirect the subsequent CancelLoadResponse.</t>
              </li>
              <li>
                <t>The request MUST contain a CancelLoadRequest TLV (designating the image load to be cancelled).</t>
              </li>
              <li>
                <t>The request MUST contain the Signing TLVs.</t>
              </li>
            </ol>
            <t>Devices receiving a CancelLoadRequest message:</t>
            <ol spacing="normal" type="1"><li>
                <t>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</t>
              </li>
              <li>
                <t>MUST wait the specified period when the "a" option is included.</t>
              </li>
              <li>
                <t>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the CancelLoadResponse TLV (indicating success or reason for failure). The &lt;nms-url&gt; MUST be overridden by the "r" option if specified.</t>
              </li>
            </ol>
          </section>
        </section>
        <section anchor="set-backup-image">
          <name>Set Backup Image</name>
          <t>An NMS implements the following message flow to command a device to designate a stored image as the backup image.</t>
          <figure>
            <name>Set Backup Image</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/0f91f16aec32bee2238dabf5a972169dc4d93c69/SetDefaultImage.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>A GroupMatch TLV MUST be included for the desired group.</t>
            </li>
            <li>
              <t>The "a" option MUST be specified to randomize subsequent device responses.</t>
            </li>
            <li>
              <t>The request MAY contain an "r" option to redirect the subsequent SetBackupResponse.</t>
            </li>
            <li>
              <t>The request MUST contain a SetBackupRequest TLV (designating the image load to be cancelled).</t>
            </li>
            <li>
              <t>The request MUST contain the Signing TLVs.</t>
            </li>
          </ol>
          <t>Devices receiving a SetBackupRequest message:</t>
          <ol spacing="normal" type="1"><li>
              <t>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</t>
            </li>
            <li>
              <t>MUST wait the specified period when the "a" option is included.</t>
            </li>
            <li>
              <t>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the SetBackupResponse TLV (indicating success or reason for failure). The &lt;nms-url&gt; MUST be overridden by the "r" option if specified.</t>
            </li>
          </ol>
        </section>
      </section>
      <section anchor="device-commands">
        <name>Device Commands</name>
        <t>Many TLVs served by a device are used by the NMS to interrogate the device for configuration state and operational  status.  There are, however, several TLVs which direct a device to execute internal actions.  Examples of these TLVs are PingRequest and RebootRequest.</t>
        <t>Usage of a command TLVs is illustrated with the following PingRequest example directed at a single device.</t>
        <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>A GroupMatch TLV MUST NOT be included for the designed device.</t>
          </li>
          <li>
            <t>The request MAY contain an "r" option to redirect the subsequent PingResponse.</t>
          </li>
          <li>
            <t>The request MUST contain a PingRequest TLV (describing the Ping action to be performed).</t>
          </li>
          <li>
            <t>The request MUST contain the Signing TLVs.</t>
          </li>
        </ol>
        <t>Devices receiving a PingRequest message:</t>
        <ol spacing="normal" type="1"><li>
            <t>MUST process the Signing TLVs as described in section 2.6.</t>
          </li>
          <li>
            <t>MUST begin the requested Ping operation.</t>
          </li>
        </ol>
        <t>The NMS will subsequently interrogate the device with one or more GET requests to the device for the  PingResponse TLV.</t>
        <t>Note the specific messaging exchanges vary per the definition of each commands.  Details are provided within <xref target="csmpTlvs"/>.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Threat models and appropriate mitigations are highly specific to individual CSMP/LPWAN deployments.</t>
      <t>CSMP defines only the NMS signing of outgoing Device messaging using an NMS private key (for Device commands and firmware load). Signing TLVs included in the message payload enable signature verification by a Device using an NMS signing certificate\public key.  The verified signature provides source authentication integrity check of the message incoming to the Device. Lifecycle management of the public/private keypair is out of scope of the specification.</t>
      <t>Where additional security mechanisms are needed (source and integrity checking of Device to NMS communication, confidentially of CSMP messaging, authentication and authorization of CSMP actors, replay protection), additional layer 2, 3, or 4 security mechanisms are utilized to meet security requirements of a specific deployment. Examples include:</t>
      <ol spacing="normal" type="1"><li>
          <t>Layer 2 802.1X/EAP-TLS is used to provide mutual authentication of Device and NMS as well as distribution of key material to be used with IEEE 802.15.4 frame security (providing confidentially, source authentication, and replay protection).</t>
        </li>
        <li>
          <t>Layer 3 VPN may be used to provide confidentially, source authentication, and message integrity for messaging between Device and NMS.</t>
        </li>
        <li>
          <t>Layer 4 DTLS may be used to provide confidentially, source authentication, and message integrity for messaging between Device and NMS.</t>
        </li>
      </ol>
      <t>Specific usage profile details for these additional security mechanisms are out of scope of this specification.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requires no IANA actions.</t>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <t>This work is based upon the considerable efforts of CSMP's original designer Gilman Tolle (with contributions from Phil Buonadonna, and Sumit Rangwala).  The Editor further acknowledges the contributions made to the content of this document by the following individuals:</t>
      <ol spacing="normal" type="1"><li>
          <t>Jasvinder Bhasin, Cisco Systems, Inc. (jassi@cisco.com)</t>
        </li>
        <li>
          <t>Chris Hett, Landis+Gyr (Chris.Hett@landisgyr.com)</t>
        </li>
        <li>
          <t>Johannes van der Horst, MMB Networks (johannes.vanderhorst@mmbresearch.com)</t>
        </li>
        <li>
          <t>Klaus Hueske, Renesas (Klaus.Hueske@renesas.com).</t>
        </li>
        <li>
          <t>Hideyuki Kuribayashi, ROHM Semiconductor (Hideyuki.Kuribayashi@mnf.rohm.co.jp)</t>
        </li>
        <li>
          <t>Kit-Mui Leung, Cisco Systems, Inc. (kml@cisco.com)</t>
        </li>
        <li>
          <t>Huimin She, Cisco Systems, Inc. (hushe@cisco.com)</t>
        </li>
        <li>
          <t>Li Zhao, Cisco Systems, Inc. (liz3@cisco.com)</t>
        </li>
      </ol>
    </section>
    <section anchor="appendixA">
      <name>Appendix A Registration Retry Example</name>
      <ol spacing="normal" type="1"><li>
          <t>Device powers up.</t>
        </li>
        <li>
          <t>Device sets interval for 0 to 5 minutes.</t>
        </li>
        <li>
          <t>Device wait a random time between 2.5 and 5 minutes.</t>
        </li>
        <li>
          <t>Device sends a confirmable registration POST message.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 5 minutes have passed.</t>
        </li>
        <li>
          <t>Device waits a random time between 5 and 10 minutes.</t>
        </li>
        <li>
          <t>Device sends the registration message again, with a new CoAP message ID.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 10 minutes have passed.</t>
        </li>
        <li>
          <t>Device waits a random time between 10 and 20 minutes.</t>
        </li>
        <li>
          <t>Device sends the registration message again, with a new CoAP message ID.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 20 minutes have passed.</t>
        </li>
        <li>
          <t>Device waits a random time between 20 and 40 minutes.</t>
        </li>
        <li>
          <t>Device sends the registration message again, with a new CoAP message ID.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 40 minutes have passed.</t>
        </li>
        <li>
          <t>Device waits a random time between 40 and 60 minutes.</t>
        </li>
        <li>
          <t>Device sends the registration message again, with a new CoAP message ID.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 60 minutes have passed.</t>
        </li>
        <li>
          <t>Repeat steps 15, 16, and 17 forever.</t>
        </li>
      </ol>
    </section>
    <section anchor="appendix-b-change-log">
      <name>Appendix B Change Log</name>
      <section anchor="draft-00-to-01">
        <name>draft 00 to 01</name>
        <ol spacing="normal" type="1"><li>
            <t>Abstract reworded to clarify multi-vendor aspects of CSMP.</t>
          </li>
          <li>
            <t>Introduction reworded to clarify multi-vendor aspects of CSMP.</t>
          </li>
          <li>
            <t>OpenAPI definitions are placed in-line.</t>
          </li>
          <li>
            <t>Protocol Buffer Definitions are placed in-line.</t>
          </li>
          <li>
            <t>Due to IETF author limits, all authors except the Editor have been credited in the Contributors section.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-01-to-02">
        <name>draft 01 to 02</name>
        <ol spacing="normal" type="1"><li>
            <t>"Cisco" added to title as requested.</t>
          </li>
          <li>
            <t>There are no IP disclosures to be made for this work. This point has been confirmed by Cisco legal.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-02-to-03">
        <name>draft 02 to 03</name>
        <ol spacing="normal" type="1"><li>
            <t>Trial attempt to convert Figures 2 and 6 to ASCII Art using PlantUML.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-03-to-04">
        <name>draft 03 to 04</name>
        <ol spacing="normal" type="1"><li>
            <t>Formatted OpenAPI and Protocol Buffer content to fit 72 char margin.  NOTE due to limits on URL length, the OpenAPI content no longer will compile without modification.  Reader should refer to source URLs for actual working OpenAPI definitions.</t>
          </li>
          <li>
            <t>Removed -03 Figures 2 and 6 sequence diagram ASCII Art (generated from PlantUML ... still too wide) and restored the SVG.</t>
          </li>
          <li>
            <t>Converted Figure 1 state machine SVG to ASCII art (gag).</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-04-to-05">
        <name>draft 04 to 05</name>
        <ol spacing="normal" type="1"><li>
            <t>Keepalive revision while associated code base work progresses.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-05-to-06">
        <name>draft 05 to 06</name>
        <ol spacing="normal" type="1"><li>
            <t>Keepalive revision while associated code base work progresses.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-06-to-07">
        <name>draft 06 to 07</name>
        <ol spacing="normal" type="1"><li>
            <t>Keepalive revision while open source code base integrates FreeRTOS contributions.</t>
          </li>
        </ol>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-normative-references">
      <name>Normative References</name>
      <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="PB" target="https://developers.google.com/protocol-buffers/docs/proto3">
        <front>
          <title>Protocol Buffers Version 3</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="OPENAPI" target="https://spec.openapis.org/oas/v3.0.0">
        <front>
          <title>OpenAPI Specification v3.0.0</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPNMS" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpNms-1.0.1.yaml">
        <front>
          <title>CSMP NMS Interface</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPDEV" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpDevice-1.0.1.yaml">
        <front>
          <title>CSMP Device Interface</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPCOMP" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpComponents-1.0.yaml">
        <front>
          <title>CSMP Components</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPMSG" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpTLVsPublic.proto">
        <front>
          <title>CSMP Payload Definitions</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="RFC8174">
        <front>
          <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
          <author fullname="B. Leiba" initials="B." surname="Leiba"/>
          <date month="May" year="2017"/>
          <abstract>
            <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="8174"/>
        <seriesInfo name="DOI" value="10.17487/RFC8174"/>
      </reference>
      <reference anchor="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>
    </references>
    <?line 3358?>



  </back>
  <!-- ##markdown-source:
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
J5g7ZlkPmNPYlv3nNHPk/TntSjL+vB6VXD+3DUm1c1pY8vs8qIzMPqcVy+nL
IEFk7MWQG3l8TltLBl/Yik+UuQtgydrzAHTl6yVaKpl6TlMjR88jz7LsPH9v
LLFwWkZear6L+/PKwvPJS8m/c1pZMu+iViTnLmpEsu2iRqfK69vfxpVhFza0
5NY5bUuy6jxEa/l07tBatpzHCMpy6Fwm6sqeS81l4c6zRcUlAV3YuCJLzmlb
kR/n9VuWGZdpu0ybJcjDkQfn7WpuMr+FkvvmIVzLenMaKclufhOCe8E5s6AX
I7XNaWRJaotaLRJAXIlsYcM5gJlwHFP1QSfwlkJFdiJqJ+c5p1kuZ1hWKbTn
5cU2eQIoG7FJhtuwokJ8eXwZblNhwvE/xA/uJdpcMtFKHgjHz6zlpC2Ncqtg
xYqR3BjE9Cbk+HAdli9J2GMsnMWJ2DAfe/DfX/egJV4Q//c3TmrlfhpODzY2
RmleUEYBJJANaY0h0dBclVxwn1JWXmWcN7il0aZodu8D6rPA6dik/qfQo36Y
cMUCrq1hlX/hNDqhDoV3hwb4X2y0Xuh0e9jFm6gfziirC1GKQOXk8Vf35qbs
CKXBpwp2VsUsnfIjNFcPTItSbSS0euDoKJ4X5UbTMwt0KTsH+JbCpkn/504u
5DQnuIwcjDWcqepbB5KFfIOKrVL6KqYXndigFHKGveBvTDNfThLNdI+pjn+m
9vwbUzz8rJMkq00ZHEtBFHnxVXCDFVFBzqfrGJ5Qpf6KlL2r2QeaFjh/sNTs
wdTVWLehT/vjFrhF8yya3BWjJhwrM10FRtL0UyJZ3pOjsJxVkfs9UBdOP1Fv
8A/3B39wjz9x0UXKTYgNOO05VdsKZhMpriN5MlTI3CMXKNDpkLReJ0H2amqq
Ug5NrFKTBZkFlrzSG0wgmwuBVSGBihNqsqVIzpw8ZKexiYPmSVKXEq/qjLIS
pApOq89qJqfKx6prvmXLrBQ+Em1gckbiAlj4kDoLKsu5Il6YGSFc8g7FGS/c
Gi/AOjsU17F4VVpGBYDiR1bdK4n+pLZ1sZ91mnywpiDkugj/dfXmf9ZXi/U8
v3n7GUI9nz+T7OyvgxdcpvfFH/Hpxh8YrzY0OgJT7lU5WRJmibfHx7oLszGN
L3RVPhoRCiyPSPel1xxMSvk+SsthSkbYtYw4x7dVjQwDojNTwg4W8b+kcNf/
cDC37t5UKKtpDz1R1QOMF+DaXZTfLnD4Z+YrX0wrRXkfYpz582ewTquVSn7+
7A8bCvM2kzgPp1PZAWVEChvlwp9dTC8F/FB/J9s1zIUtYPkK5IRcUbbUFUxc
FVZxr7TXuUTEbEK35qpvTsxkd801WKxuiOXAI8XrqC1RoYIM8zJkAz1Swy4g
8fxZoahP1bhQHcoI65hc4FqdfvakdV43Fz5dogemQ3nhTOakCnS6iyxqVmep
ekK0Q8tjAi0BnjthAaMZvCd0HZQLR+pRWthIAX/AOQPnNUXXBnZAQAFJl7xl
uuuzFYqKWBmex0QB3+EUTXd5Ff3CjZlnqARMsL3DD7gNuGQeii6ab/NJohgJ
9A8YDFTpHRA7WH7XBsrnzzryxOTp2JInCgfPn23LE0bd82c7pd+78rtqsHz+
bE/eafvk82f7esiyOfL5s1elrtubgf7PANRum6e2nRLedMwbxzQJr7bsrhxr
JLzc9o6z4326a42hjJXweM9+TFY+eLhvHlomSXjxytd1xzvdjjVdy2IJL6zZ
spESnlnTLNsl4a13nh1rnhUDJby2JqwWprPX7LxyOtmyYLcsl/CiXX7BwiO8
seB37JPwyp6Ga5KEl9vVl8oKCW+t2RjDIzy3plGxNcLrveZ225nRtgWeZXCE
F1vuC+lhe7u5vev2YNNE2dAIr/errx3bIjR51dzpOH3u2HRsDIzwwru2OxY2
LEsjvNgtvSDjIjzfKz0neyI83y89R1MSPBZC1sxgs/TbJl4N1a6FWtfWCO+2
yu8s8yK83i4NYE2wZGGEl9YkrdHtZdGmRnhuTdGyGMILa7dWDIrA5CzSL9sQ
4a2FgbLZEN52ymPqN1v+QfX7be+o+rWFl4oJEF5bmKlY/eD1nuc1PLYwZPC5
98rT2KzYvper7XsJY1/QoVZ3f6v020vk+zulVvbkbLMivNorNfXOaL9E1a9K
VP2q3Xy153zxar/UotQD5rapjtPebJdadUq/t0q/t0u/d0q/d0u/97yj7nuf
vnK/bW8223Cg2uduCZp2CZr2Dnyx53yxX2pRGqMDY3ScMTqlMawjSyy/+HDH
NwHroLKfMgq+oxrqrCayWIrv9pttOJ+s1lsdePLKDL/tXbbttg2UMjbjC/h8
x+lwB59smw53AEc7Do52AIgda8hdwAlwNVvi2IUnVos9aLHnjCJsxNi08dkW
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
ddSp7ajjaH/2Cm53AkfKtfJaqthkJdcum2XT52WdRXfzPXbPSx67nJsSTbZl
n1nvvYvbv1fAtZt4PXbPSx67vwCEsHyRrzftFlLnbilqYntLjORWPk65EOJM
lox6KYyYM7Hjh2RFxzowkqVLH1j80+qOoxn0/V+YVwrIIKsHCNSpR2lG5GoB
hlp68Su7WKHR742JmUpjnd6Ykhlzc4nI48lrfm46864xtK6JjT29ut+1lWqr
X9Jf5EuvCiPvaqNBzyMUC+J8zFlJYVHugAvBVy9zZ9yW/mJtGH+MBlSF/X53
I5O0tBgGCKjepfzSnMqlJNc4kLChqOofwevoQzaFbhhpKp9hJOdwlrikUkfg
0rHXkOQQzxKylD2gCSBpH4AslAyA9LOiYUSgAw4okQ/uI/Nq68C+oGLhbGBe
bx/Qnqk83+HnCu+WKLTLb8gnyrTfg2GOovvTo0ZwJv/CRKhrcxNRHWb/AP2z
cGPgXsNoJC9CtWBVlavQo2XOWgKlUfSZs3yYW3g8LWqXUfr0aqswpXn2f7Vb
yzNX9nh7p9pd1d4ObqtQWcm3IAcHkgnfJa1wTbZSbM8XMakA+mskTG1SGNM1
AEVkqEdpps0KwZpuyBYGMurrXrqzj6andxHdTMKwp8fHx4y+ndY21mrYLHER
gcvL69CeuNpJLZd+yx2Spe69tm6nzVIn9dNBqAkwWiq5dqrGtQy0xD9Nnm1b
WzsJk3z+h2HB27n0WPegplyXgHvHv8f2tYxOMSwaYUAdyiAinhpL7zanANXv
aMfFkxM04fjM6tpKoh1PeO7lkGHuoMZPWd7y5K+6N0uNA+3mjqV7q3EXLjVb
csylhvRbgUqtDpec5uFS0zy88duCys2WHHOpIf02IDibF1ML5Zen8JJZ4R1L
96IVZP8gS9GMHqmOZqrd4bBVoqm0W3LU5QbFMSsKbrnVfLIxY9aQTbU7HLVK
N5V2S4663KA4pl9x3mGd7VQKbeSuu7eVym2ZwGRVoM91e5/vbG4C+FTLuW7l
c7zZvfY6PZOBv9ua+OT0KLzzdnh0edR9C72pC2pH+5LP/PHG+E5s/xfkW1jb
u7pRsCNjPKip9ugVAmrc7q/x2qbqviy3OVUZnjNAHNa4rBpGowvI8ge5tq33
Q6Axyp7Kb/DAXHfGtobwivX1dwcXKAe6ntOEyjoHaduMKoKY3IJvuVZEIGrO
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
nz/7/wG1RfzNydABAA==

-->

</rfc>
