<?xml version='1.0'?>
<!DOCTYPE rfc SYSTEM "rfc2629.dtd">

<?rfc toc="yes"?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes" ?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc linkmailto="no" ?>
<?rfc editing="no" ?>
<?rfc comments="yes" ?>
<?rfc inline="yes"?>
<?rfc rfcedstyle="yes"?>
<?rfc-ext allow-markup-in-artwork="yes" ?>
<?rfc-ext include-index="no" ?>
<!--<?rfc strict="no"?> -->

<rfc category="std"
     ipr="trust200902"
     docName="draft-ietf-netconf-restconf-client-server-18" >
    <front>
        <title>RESTCONF Client and Server Models</title>
        <author initials="K." surname="Watsen" fullname="Kent Watsen">
            <organization>Watsen Networks</organization>
            <address>
                <email>kent+ietf@watsen.net</email>
            </address>
        </author>
        <date/>
        <area>Operations</area>
        <workgroup>NETCONF Working Group</workgroup>
        <abstract>
            <t>This document defines two YANG modules,
            one module to configure a RESTCONF client and the other module to
            configure a RESTCONF server.  Both modules support the TLS transport
            protocol with both standard RESTCONF and RESTCONF Call Home connections.</t>

        </abstract>
        <note title="Editorial Note (To be removed by RFC Editor)">
          <t>This draft contains many placeholder values that need to be replaced
          with finalized values at the time of publication.  This note summarizes
          all of the substitutions that are needed.  No other RFC Editor
          instructions are specified elsewhere in this document.</t>

          <t>This document contains references to other drafts in progress, both in
          the Normative References section, as well as in body text throughout.  
          Please update the following references to reflect their final RFC assignments:
            <list style="symbols">
              <t>I-D.ietf-netconf-keystore</t>
              <t>I-D.ietf-netconf-tcp-client-server</t>
              <t>I-D.ietf-netconf-tls-client-server</t>
              <t>I-D.ietf-netconf-http-client-server</t>
            </list>
          </t>
          <t>Artwork in this document contains shorthand references to drafts in 
          progress.  Please apply the following replacements:
            <list  style="symbols">
              <t><spanx style="verb">XXXX</spanx> --&gt; the assigned RFC value for this draft</t>
              <t><spanx style="verb">AAAA</spanx> --&gt; the assigned RFC value for I-D.ietf-netconf-tcp-client-server</t>
              <t><spanx style="verb">BBBB</spanx> --&gt; the assigned RFC value for I-D.ietf-netconf-tls-client-server</t>
              <t><spanx style="verb">CCCC</spanx> --&gt; the assigned RFC value for I-D.ietf-netconf-http-client-server</t>
            </list>
          </t>
          <t>Artwork in this document contains placeholder values for the date of publication of this
          draft.  Please apply the following replacement:
            <list  style="symbols">
              <t><spanx style="verb">2020-03-08</spanx> --&gt; the publication date of this draft</t>
            </list>
          </t>
          <t>The following Appendix section is to be removed prior to publication:
            <list  style="symbols">
              <t><xref target="change-log"/>.  Change Log</t>
            </list>
          </t>
        </note>
    </front> <middle>

        <section title="Introduction">

            <t>This document defines two YANG <xref target="RFC7950"/> modules,
            one module to configure a RESTCONF client and the other module to
            configure a RESTCONF server <xref target="RFC8040"/>.
            Both modules support the TLS <xref target="RFC8446"/> transport
            protocol with both standard RESTCONF and RESTCONF Call Home connections
            <xref target="RFC8071"/>.</t>

            <section title="Terminology">
             <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>

        <section title="The RESTCONF Client Model">
        <t>The RESTCONF client model presented in this section supports
        both clients initiating connections to servers, as well as
        clients listening for connections from servers calling home.</t>

        <t>YANG feature statements are used to enable implementations to
        advertise which potentially uncommon parts of the model the
        RESTCONF client supports.</t>

        <section title="Tree Diagram" anchor="restconf-client-tree">
          <t>The following tree diagram <xref target="RFC8340"/> provides an
            overview of the data model for the "ietf-restconf-client" module.</t>
          <t>This tree diagram only shows the nodes defined in this module; it does
            show the nodes defined by "grouping" statements used by this module.</t>
          <t>Please see <xref target="restconf-client-tree-expanded"/> for a tree
            diagram that illustrates what the module looks like with all the
            "grouping" statements expanded.</t>
          <t>
            <figure>
              <artwork><![CDATA[
module: ietf-restconf-client
  +--rw restconf-client
     +---u restconf-client-app-grouping

  grouping restconf-client-grouping
  grouping restconf-client-initiate-stack-grouping
    +-- (transport)
       +--:(https) {https-initiate}?
          +-- https
             +-- tcp-client-parameters
             |  +---u tcpc:tcp-client-grouping
             +-- tls-client-parameters
             |  +---u tlsc:tls-client-grouping
             +-- http-client-parameters
             |  +---u httpc:http-client-grouping
             +-- restconf-client-parameters
  grouping restconf-client-listen-stack-grouping
    +-- (transport)
       +--:(http) {http-listen}?
       |  +-- FIXME
       +--:(https) {https-listen}?
          +-- https
             +-- tcp-server-parameters
             |  +---u tcps:tcp-server-grouping
             +-- tls-client-parameters
             |  +---u tlsc:tls-client-grouping
             +-- http-client-parameters
             |  +---u httpc:http-client-grouping
             +-- restconf-client-parameters
  grouping restconf-client-app-grouping
    +-- initiate! {https-initiate}?
    |  +-- restconf-server* [name]
    |     +-- name?                 string
    |     +-- endpoints
    |     |  +-- endpoint* [name]
    |     |     +-- name?                                      string
    |     |     +---u restconf-client-initiate-stack-grouping
    |     +-- connection-type
    |     |  +-- (connection-type)
    |     |     +--:(persistent-connection)
    |     |     |  +-- persistent!
    |     |     +--:(periodic-connection)
    |     |        +-- periodic!
    |     |           +-- period?         uint16
    |     |           +-- anchor-time?    yang:date-and-time
    |     |           +-- idle-timeout?   uint16
    |     +-- reconnect-strategy
    |        +-- start-with?     enumeration
    |        +-- max-attempts?   uint8
    +-- listen! {http-listen or https-listen}?
       +-- idle-timeout?   uint16
       +-- endpoint* [name]
          +-- name?                                    string
          +---u restconf-client-listen-stack-grouping
]]></artwork>
            </figure>
          </t>
        </section>

        <section title="Example Usage">
          <t>The following example illustrates configuring a RESTCONF
          client to initiate connections, as well as listening for call-home
          connections.</t>
          <t>This example is consistent with the examples presented in
          Section 2 of <xref target="I-D.ietf-netconf-trust-anchors"/> 
          and Section 3.2 of <xref target="I-D.ietf-netconf-keystore"/>.</t>
          <t>
            <figure>
              <artwork><![CDATA[
========== NOTE: '\' line wrapping per BCP XXX (RFC XXXX) ===========

<restconf-client
  xmlns="urn:ietf:params:xml:ns:yang:ietf-restconf-client"
  xmlns:ct="urn:ietf:params:xml:ns:yang:ietf-crypto-types">

  <!-- RESTCONF servers to initiate connections to -->
  <initiate>
    <restconf-server>
      <name>corp-fw1</name>
      <endpoints>
        <endpoint>
          <name>corp-fw1.example.com</name>
          <https>
            <tcp-client-parameters>
              <remote-address>corp-fw1.example.com</remote-address>
              <keepalives>
                <idle-time>15</idle-time>
                <max-probes>3</max-probes>
                <probe-interval>30</probe-interval>
              </keepalives>
            </tcp-client-parameters>
            <tls-client-parameters>
              <client-identity>
                <certificate>
                  <local-definition>
                    <algorithm>rsa2048</algorithm>
                    <public-key-format>ct:subject-public-key-info-fo\
rmat</public-key-format>
                    <public-key>base64encodedvalue==</public-key>
                    <private-key-format>ct:rsa-private-key-format</p\
rivate-key-format>
                    <private-key>base64encodedvalue==</private-key>
                    <cert>base64encodedvalue==</cert>
                  </local-definition>
                </certificate>
              </client-identity>
              <server-authentication>
                <ca-certs>
                  <truststore-reference>trusted-server-ca-certs</tru\
ststore-reference>
                </ca-certs>
                <server-certs>
                  <truststore-reference>trusted-server-ee-certs</tru\
ststore-reference>
                </server-certs>
              </server-authentication>
              <keepalives>
                <max-wait>30</max-wait>
                <max-attempts>3</max-attempts>
              </keepalives>
            </tls-client-parameters>
            <http-client-parameters>
              <client-identity>
                <basic>
                  <user-id>bob</user-id>
                  <password>secret</password>
                </basic>
              </client-identity>
            </http-client-parameters>
          </https>
        </endpoint>
        <endpoint>
          <name>corp-fw2.example.com</name>
          <https>
            <tcp-client-parameters>
              <remote-address>corp-fw2.example.com</remote-address>
              <keepalives>
                <idle-time>15</idle-time>
                <max-probes>3</max-probes>
                <probe-interval>30</probe-interval>
              </keepalives>
            </tcp-client-parameters>
            <tls-client-parameters>
              <client-identity>
                <certificate>
                  <local-definition>
                    <algorithm>rsa2048</algorithm>
                    <public-key-format>ct:subject-public-key-info-fo\
rmat</public-key-format>
                    <public-key>base64encodedvalue==</public-key>
                    <private-key-format>ct:rsa-private-key-format</p\
rivate-key-format>
                    <private-key>base64encodedvalue==</private-key>
                    <cert>base64encodedvalue==</cert>
                  </local-definition>
                </certificate>
              </client-identity>
              <server-authentication>
                <ca-certs>
                  <truststore-reference>trusted-server-ca-certs</tru\
ststore-reference>
                </ca-certs>
                <server-certs>
                  <truststore-reference>trusted-server-ee-certs</tru\
ststore-reference>
                </server-certs>
              </server-authentication>
              <keepalives>
                <max-wait>30</max-wait>
                <max-attempts>3</max-attempts>
              </keepalives>
            </tls-client-parameters>
            <http-client-parameters>
              <client-identity>
                <basic>
                  <user-id>bob</user-id>
                  <password>secret</password>
                </basic>
              </client-identity>
            </http-client-parameters>
          </https>
        </endpoint>
      </endpoints>
      <connection-type>
        <persistent/>
      </connection-type>
    </restconf-server>
  </initiate>

  <!-- endpoints to listen for RESTCONF Call Home connections on -->
  <listen>
    <endpoint>
      <name>Intranet-facing listener</name>
      <https>
        <tcp-server-parameters>
          <local-address>11.22.33.44</local-address>
        </tcp-server-parameters>
        <tls-client-parameters>
          <client-identity>
            <certificate>
              <local-definition>
                <algorithm>rsa2048</algorithm>
                <public-key-format>ct:subject-public-key-info-format\
</public-key-format>
                <public-key>base64encodedvalue==</public-key>
                <private-key-format>ct:rsa-private-key-format</priva\
te-key-format>
                <private-key>base64encodedvalue==</private-key>
                <cert>base64encodedvalue==</cert>
              </local-definition>
            </certificate>
          </client-identity>
          <server-authentication>
            <ca-certs>
              <truststore-reference>trusted-server-ca-certs</trustst\
ore-reference>
            </ca-certs>
            <server-certs>
              <truststore-reference>trusted-server-ee-certs</trustst\
ore-reference>
            </server-certs>
          </server-authentication>
        </tls-client-parameters>
        <http-client-parameters>
          <client-identity>
            <basic>
              <user-id>bob</user-id>
              <password>secret</password>
            </basic>
          </client-identity>
        </http-client-parameters>
      </https>
    </endpoint>
  </listen>
</restconf-client>
]]></artwork>
            </figure>
          </t>
        </section>

        <section title="YANG Module" anchor="ietf-restconf-client-module">
          <t>This YANG module has normative references to <xref target="RFC6991"/>,
          <xref target="RFC8040"/>, and <xref target="RFC8071"/>,
          <xref target="I-D.kwatsen-netconf-tcp-client-server"/>,
          <xref target="I-D.ietf-netconf-tls-client-server"/>, and
          <xref target="I-D.kwatsen-netconf-http-client-server"/>.</t>
          <t>
            <figure>
              <preamble>&lt;CODE BEGINS&gt; file "ietf-restconf-client@2020-03-08.yang"</preamble>
              <artwork><![CDATA[
module ietf-restconf-client {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-restconf-client";
  prefix rcc;

  import ietf-yang-types {
    prefix yang;
    reference
      "RFC 6991: Common YANG Data Types";
  }

  import ietf-tcp-client {
    prefix tcpc;
    reference
      "RFC AAAA: YANG Groupings for TCP Clients and TCP Servers";
  }

  import ietf-tcp-server {
    prefix tcps;
    reference
      "RFC AAAA: YANG Groupings for TCP Clients and TCP Servers";
  }
 
  import ietf-tls-client {
    prefix tlsc;
    reference
      "RFC BBBB: YANG Groupings for TLS Clients and TLS Servers";
  }

  import ietf-http-client {
    prefix httpc;
    reference
      "RFC CCCC: YANG Groupings for HTTP Clients and HTTP Servers";
  }

  organization
    "IETF NETCONF (Network Configuration) Working Group";

  contact
    "WG Web:   <http://datatracker.ietf.org/wg/netconf/>
     WG List:  <mailto:netconf@ietf.org>
     Author:   Kent Watsen <mailto:kent+ietf@watsen.net>
     Author:   Gary Wu <mailto:garywu@cisco.com>";

  description
    "This module contains a collection of YANG definitions
     for configuring RESTCONF clients.

     Copyright (c) 2019 IETF Trust and the persons identified
     as authors of the code. All rights reserved.

     Redistribution and use in source and binary forms, with
     or without modification, is permitted pursuant to, and
     subject to the license terms contained in, the Simplified
     BSD License set forth in Section 4.c of the IETF Trust's
     Legal Provisions Relating to IETF Documents
     (https://trustee.ietf.org/license-info).

     This version of this YANG module is part of RFC XXXX
     (https://www.rfc-editor.org/info/rfcXXXX); see the RFC
     itself for full legal notices.

     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 (RFC 2119)
     (RFC 8174) when, and only when, they appear in all
     capitals, as shown here.";

  revision 2020-03-08 {
    description
      "Initial version";
    reference
      "RFC XXXX: RESTCONF Client and Server Models";
  }

  // Features

  feature https-initiate {
    description
      "The 'https-initiate' feature indicates that the RESTCONF
       client supports initiating HTTPS connections to RESTCONF
       servers. This feature exists as HTTPS might not be a
       mandatory to implement transport in the future.";
    reference
      "RFC 8040: RESTCONF Protocol";
  }

  feature http-listen {
    description
      "The 'https-listen' feature indicates that the RESTCONF client
       supports opening a port to listen for incoming RESTCONF
       server call-home connections.  This feature exists as not
       all RESTCONF clients may support RESTCONF call home.";
    reference
      "RFC 8071: NETCONF Call Home and RESTCONF Call Home";
  }

  feature https-listen {
    description
      "The 'https-listen' feature indicates that the RESTCONF client
       supports opening a port to listen for incoming RESTCONF
       server call-home connections.  This feature exists as not
       all RESTCONF clients may support RESTCONF call home.";
    reference
      "RFC 8071: NETCONF Call Home and RESTCONF Call Home";
  }

  // Groupings

  grouping restconf-client-grouping {
    description
      "A reusable grouping for configuring a RESTCONF client
       without any consideration for how underlying transport
       sessions are established.

       This grouping currently doesn't define any nodes.";
  }

  grouping restconf-client-initiate-stack-grouping {
    description
      "A reusable grouping for configuring a RESTCONF client
       'initiate' protocol stack for a single connection.";

    choice transport {
      mandatory true;
      description
        "Selects between available transports. This is a
         'choice' statement so as to support additional
         transport options to be augmented in.";
      case https {
        if-feature "https-initiate";
        container https {
          description
            "Specifies HTTPS-specific transport
             configuration.";
          container tcp-client-parameters {
            description
              "A wrapper around the TCP client parameters
               to avoid name collisions.";
            uses tcpc:tcp-client-grouping {
              refine "remote-port" {
                default "443";
                description
                  "The RESTCONF client will attempt to
                   connect to the IANA-assigned well-known
                   port value for 'https' (443) if no value
                   is specified.";
              }
            }
          }
          container tls-client-parameters {
            must 'client-identity' {
              description
                "NETCONF/TLS clients MUST pass some
                 authentication credentials.";
            }
            description
              "A wrapper around the TLS client parameters
               to avoid name collisions.";
            uses tlsc:tls-client-grouping;
          }
          container http-client-parameters {
            description
              "A wrapper around the HTTP client parameters
               to avoid name collisions.";
            uses httpc:http-client-grouping;
          }
          container restconf-client-parameters {
            description
              "A wrapper around the HTTP client parameters
               to avoid name collisions.";
            uses rcc:restconf-client-grouping;
          }
        }
      }
    }
  } // restconf-client-initiate-stack-grouping

  grouping restconf-client-listen-stack-grouping {
    description
      "A reusable grouping for configuring a RESTCONF client
       'listen' protocol stack for a single connection.";
    choice transport {
      mandatory true;
      description
        "Selects between available transports. This is a
         'choice' statement so as to support additional
         transport options to be augmented in.";
      case http {
        if-feature "http-listen";
        container FIXME {
          description
            "FIXME";
        }
      }
      case https {
        if-feature "https-listen";
        container https {
          description
            "HTTPS-specific listening configuration for inbound
             connections.";
          container tcp-server-parameters {
            description
              "A wrapper around the TCP client parameters
               to avoid name collisions.";
            uses tcps:tcp-server-grouping {
              refine "local-port" {
                default "4336";
                description
                  "The RESTCONF client will listen on the IANA-
                   assigned well-known port for 'restconf-ch-tls'
                   (4336) if no value is specified.";
              }
            }
          }
          container tls-client-parameters {
            must 'client-identity' {
              description
                "NETCONF/TLS clients MUST pass some
                 authentication credentials.";
            }
            description
              "A wrapper around the TLS client parameters
               to avoid name collisions.";
            uses tlsc:tls-client-grouping;
          }
          container http-client-parameters {
            description
              "A wrapper around the HTTP client parameters
               to avoid name collisions.";
            uses httpc:http-client-grouping;
          }
          container restconf-client-parameters {
            description
              "A wrapper around the RESTCONF client parameters
               to avoid name collisions.";
            uses rcc:restconf-client-grouping;
          }
        }
      }
    }
  } // restconf-client-listen-stack-grouping

  grouping restconf-client-app-grouping {
    description
      "A reusable grouping for configuring a RESTCONF client
       application that supports both 'initiate' and 'listen'
       protocol stacks for a multiplicity of connections.";
    container initiate {
      if-feature "https-initiate";
      presence "Enables client to initiate TCP connections";
      description
        "Configures client initiating underlying TCP connections.";
      list restconf-server {
        key "name";
        min-elements 1;
        description
          "List of RESTCONF servers the RESTCONF client is to
           maintain simultaneous connections with.";
        leaf name {
          type string;
          description
            "An arbitrary name for the RESTCONF server.";
        }
        container endpoints {
          description
            "Container for the list of endpoints.";
          list endpoint {
            key "name";
            min-elements 1;
            ordered-by user;
            description
              "A non-empty user-ordered list of endpoints for this
               RESTCONF client to try to connect to in sequence.
               Defining more than one enables high-availability.";
            leaf name {
              type string;
              description
                "An arbitrary name for this endpoint.";
            }
            uses restconf-client-initiate-stack-grouping;
          }
        }
        container connection-type {
          description
            "Indicates the RESTCONF client's preference for how
             the RESTCONF connection is maintained.";
          choice connection-type {
            mandatory true;
            description
              "Selects between available connection types.";
            case persistent-connection {
              container persistent {
                presence "Indicates that a persistent connection
                          is to be maintained.";
                description
                  "Maintain a persistent connection to the
                   RESTCONF server. If the connection goes down,
                   immediately start trying to reconnect to the
                   RESTCONF server, using the reconnection strategy.

                   This connection type minimizes any RESTCONF server
                   to RESTCONF client data-transfer delay, albeit
                   at the expense of holding resources longer.";
              }
            }
            case periodic-connection {
              container periodic {
                presence "Indicates that a periodic connection is
                          to be maintained.";
                description
                  "Periodically connect to the RESTCONF server.

                   This connection type increases resource
                   utilization, albeit with increased delay
                   in RESTCONF server to RESTCONF client
                   interactions.

                   The RESTCONF client SHOULD gracefully close
                   the underlying TLS connection upon completing
                   planned activities.

                   In the case that the previous connection is
                   still active, establishing a new connection
                   is NOT RECOMMENDED.";
                leaf period {
                  type uint16;
                  units "minutes";
                  default "60";
                  description
                    "Duration of time between periodic
                     connections.";
                }
                leaf anchor-time {
                  type yang:date-and-time {
                    // constrained to minute-level granularity
                    pattern '\d{4}-\d{2}-\d{2}T\d{2}:\d{2}'
                          + '(Z|[\+\-]\d{2}:\d{2})';
                  }
                  description
                    "Designates a timestamp before or after which
                     a series of periodic connections are
                     determined.  The periodic connections occur
                     at a whole multiple interval from the anchor
                     time.  For example, for an anchor time is 15
                     minutes past midnight and a period interval
                     of 24 hours, then a periodic connection will
                     occur 15 minutes past midnight everyday.";
                }
                leaf idle-timeout {
                  type uint16;
                  units "seconds";
                  default 120; // two minutes
                  description
                    "Specifies the maximum number of seconds
                     that the underlying TCP session may remain
                     idle. A TCP session will be dropped if it
                     is idle for an interval longer than this
                     number of seconds If set to zero, then the
                     RESTCONF client will never drop a session
                     because it is idle.";
                }
              }
            } // periodic-connection
          } // connection-type
        } // connection-type
        container reconnect-strategy {
          description
            "The reconnection strategy directs how a RESTCONF
             client reconnects to a RESTCONF server, after
             discovering its connection to the server has
             dropped, even if due to a reboot.  The RESTCONF
             client starts with the specified endpoint and
             tries to connect to it max-attempts times before
             trying the next endpoint in the list (round
             robin).";
          leaf start-with {
            type enumeration {
              enum first-listed {
                description
                  "Indicates that reconnections should start
                   with the first endpoint listed.";
              }
              enum last-connected {
                description
                  "Indicates that reconnections should start
                   with the endpoint last connected to.  If
                   no previous connection has ever been
                   established, then the first endpoint
                   configured is used.   RESTCONF clients
                   SHOULD be able to remember the last
                   endpoint connected to across reboots.";
              }
              enum random-selection {
                description
                  "Indicates that reconnections should start with
                   a random endpoint.";
              }
            }
            default "first-listed";
            description
              "Specifies which of the RESTCONF server's
               endpoints the RESTCONF client should start
               with when trying to connect to the RESTCONF
               server.";
          }
          leaf max-attempts {
            type uint8 {
              range "1..max";
            }
            default "3";
            description
              "Specifies the number times the RESTCONF client
               tries to connect to a specific endpoint before
               moving on to the next endpoint in the list
               (round robin).";
          }
        }
      }
    } // initiate
    container listen {
      if-feature "http-listen or https-listen";
      presence "Enables client to accept call-home connections";
      description
        "Configures client accepting call-home TCP connections.";
      leaf idle-timeout {
        type uint16;
        units "seconds";
        default 3600; // one hour
        description
          "Specifies the maximum number of seconds that an
           underlying TCP session may remain idle. A TCP session
           will be dropped if it is idle for an interval longer
           then this number of seconds.  If set to zero, then
           the server will never drop a session because it is
           idle.  Sessions that have a notification subscription
           active are never dropped.";
      }
      list endpoint {
        key "name";
        min-elements 1;
        description
          "List of endpoints to listen for RESTCONF connections.";
        leaf name {
          type string;
          description
            "An arbitrary name for the RESTCONF listen endpoint.";
        }
        uses restconf-client-listen-stack-grouping;
      }
    }
  } // restconf-client-app-grouping

  // Protocol accessible node, for servers that implement this
  // module.

  container restconf-client {
    uses restconf-client-app-grouping;
    description
      "Top-level container for RESTCONF client configuration.";
  }
}
]]></artwork>
              <postamble>&lt;CODE ENDS&gt;</postamble>
            </figure>
          </t>
        </section>
      </section>

      <section title="The RESTCONF Server Model">
        <t>The RESTCONF server model presented in this section supports
        both listening for connections as well as initiating call-home
        connections.</t>

        <t>YANG feature statements are used to enable implementations to
        advertise which potentially uncommon parts of the model the
        RESTCONF server supports.</t>

        <section title="Tree Diagram" anchor="restconf-server-tree">
          <t>The following tree diagram <xref target="RFC8340"/> provides an
            overview of the data model for the "ietf-restconf-server" module.</t>
          <t>This tree diagram only shows the nodes defined in this module; it does
            show the nodes defined by "grouping" statements used by this module.</t>
          <t>Please see <xref target="restconf-server-tree-expanded"/> for a tree
            diagram that illustrates what the module looks like with all the
            "grouping" statements expanded.</t>
          <t>
            <figure>
              <artwork><![CDATA[
module: ietf-restconf-server
  +--rw restconf-server
     +---u restconf-server-app-grouping

  grouping restconf-server-grouping
    +-- client-identity-mappings
       +---u x509c2n:cert-to-name
  grouping restconf-server-listen-stack-grouping
    +-- (transport)
       +--:(http) {http-listen}?
       |  +-- http
       |     +-- external-endpoint!
       |     |  +-- address    inet:ip-address
       |     |  +-- port?      inet:port-number
       |     +-- tcp-server-parameters
       |     |  +---u tcps:tcp-server-grouping
       |     +-- http-server-parameters
       |     |  +---u https:http-server-grouping
       |     +-- restconf-server-parameters
       |        +---u rcs:restconf-server-grouping
       +--:(https) {https-listen}?
          +-- https
             +-- tcp-server-parameters
             |  +---u tcps:tcp-server-grouping
             +-- tls-server-parameters
             |  +---u tlss:tls-server-grouping
             +-- http-server-parameters
             |  +---u https:http-server-grouping
             +-- restconf-server-parameters
                +---u rcs:restconf-server-grouping
  grouping restconf-server-callhome-stack-grouping
    +-- (transport)
       +--:(https) {https-listen}?
          +-- https
             +-- tcp-client-parameters
             |  +---u tcpc:tcp-client-grouping
             +-- tls-server-parameters
             |  +---u tlss:tls-server-grouping
             +-- http-server-parameters
             |  +---u https:http-server-grouping
             +-- restconf-server-parameters
                +---u rcs:restconf-server-grouping
  grouping restconf-server-app-grouping
    +-- listen! {http-listen or https-listen}?
    |  +-- endpoint* [name]
    |     +-- name?                                    string
    |     +---u restconf-server-listen-stack-grouping
    +-- call-home! {https-call-home}?
       +-- restconf-client* [name]
          +-- name?                 string
          +-- endpoints
          |  +-- endpoint* [name]
          |     +-- name?                                      string
          |     +---u restconf-server-callhome-stack-grouping
          +-- connection-type
          |  +-- (connection-type)
          |     +--:(persistent-connection)
          |     |  +-- persistent!
          |     +--:(periodic-connection)
          |        +-- periodic!
          |           +-- period?         uint16
          |           +-- anchor-time?    yang:date-and-time
          |           +-- idle-timeout?   uint16
          +-- reconnect-strategy
             +-- start-with?     enumeration
             +-- max-attempts?   uint8
]]></artwork>
            </figure>
          </t>
        </section>

        <section title="Example Usage">
          <t>The following example illustrates configuring a RESTCONF server
          to listen for RESTCONF client connections, as well as configuring
          call-home to one RESTCONF client.</t>
          <t>This example is consistent with the examples presented in
          Section 2 of <xref target="I-D.ietf-netconf-trust-anchors"/> 
          and Section 3.2 of <xref target="I-D.ietf-netconf-keystore"/>.</t>
          <t>
            <figure>
              <artwork><![CDATA[
========== NOTE: '\' line wrapping per BCP XXX (RFC XXXX) ===========

<restconf-server 
  xmlns="urn:ietf:params:xml:ns:yang:ietf-restconf-server"
  xmlns:ct="urn:ietf:params:xml:ns:yang:ietf-crypto-types"
  xmlns:x509c2n="urn:ietf:params:xml:ns:yang:ietf-x509-cert-to-name">

  <!-- endpoints to listen for RESTCONF connections on -->
  <listen>
    <endpoint>
      <name>netconf/tls</name>
      <https>
        <tcp-server-parameters>
          <local-address>11.22.33.44</local-address>
        </tcp-server-parameters>
        <tls-server-parameters>
          <server-identity>
            <certificate>
              <local-definition>
                <algorithm>rsa2048</algorithm>
                <public-key-format>ct:subject-public-key-info-format\
</public-key-format>
                <public-key>base64encodedvalue==</public-key>
                <private-key-format>ct:rsa-private-key-format</priva\
te-key-format>
                <private-key>base64encodedvalue==</private-key>
                <cert>base64encodedvalue==</cert>
              </local-definition>
            </certificate>
          </server-identity>
          <client-authentication>
            <ca-certs>
              <truststore-reference>trusted-client-ca-certs</trustst\
ore-reference>
            </ca-certs>
            <client-certs>
              <truststore-reference>trusted-client-ee-certs</trustst\
ore-reference>
            </client-certs>
          </client-authentication>
        </tls-server-parameters>
        <http-server-parameters>
          <server-name>foo.example.com</server-name>
          <protocol-versions>
            <protocol-version>HTTP/1.1</protocol-version>
            <protocol-version>HTTP/2.0</protocol-version>
          </protocol-versions>
        </http-server-parameters>
        <restconf-server-parameters>
          <client-identity-mappings>
            <cert-to-name>
              <id>1</id>
              <fingerprint>11:0A:05:11:00</fingerprint>
              <map-type>x509c2n:specified</map-type>
              <name>scooby-doo</name>
            </cert-to-name>
              <cert-to-name>
              <id>2</id>
              <map-type>x509c2n:san-any</map-type>
            </cert-to-name>
          </client-identity-mappings>
        </restconf-server-parameters>
      </https>
    </endpoint>
  </listen>

  <!-- call home to a RESTCONF client with two endpoints -->
  <call-home>
    <restconf-client>
      <name>config-manager</name>
      <endpoints>
        <endpoint>
          <name>east-data-center</name>
          <https>
            <tcp-client-parameters>
              <remote-address>east.example.com</remote-address>
            </tcp-client-parameters>
            <tls-server-parameters>
              <server-identity>
                <certificate>
                  <local-definition>
                    <algorithm>rsa2048</algorithm>
                    <public-key-format>ct:subject-public-key-info-fo\
rmat</public-key-format>
                    <public-key>base64encodedvalue==</public-key>
                    <private-key-format>ct:rsa-private-key-format</p\
rivate-key-format>
                    <private-key>base64encodedvalue==</private-key>
                    <cert>base64encodedvalue==</cert>
                  </local-definition>
                </certificate>
              </server-identity>
              <client-authentication>
                <ca-certs>
                  <truststore-reference>trusted-client-ca-certs</tru\
ststore-reference>
                </ca-certs>
                <client-certs>
                  <truststore-reference>trusted-client-ee-certs</tru\
ststore-reference>
                </client-certs>
              </client-authentication>
            </tls-server-parameters>
            <http-server-parameters>
              <server-name>foo.example.com</server-name>
              <protocol-versions>
                <protocol-version>HTTP/1.1</protocol-version>
                <protocol-version>HTTP/2.0</protocol-version>
              </protocol-versions>
            </http-server-parameters>
            <restconf-server-parameters>
              <client-identity-mappings>
                <cert-to-name>
                  <id>1</id>
                  <fingerprint>11:0A:05:11:00</fingerprint>
                  <map-type>x509c2n:specified</map-type>
                  <name>scooby-doo</name>
                </cert-to-name>
                <cert-to-name>
                  <id>2</id>
                  <map-type>x509c2n:san-any</map-type>
                </cert-to-name>
              </client-identity-mappings>
            </restconf-server-parameters>
          </https>
        </endpoint>
        <endpoint>
          <name>west-data-center</name>
          <https>
            <tcp-client-parameters>
              <remote-address>west.example.com</remote-address>
            </tcp-client-parameters>
            <tls-server-parameters>
              <server-identity>
                <certificate>
                  <local-definition>
                    <algorithm>rsa2048</algorithm>
                    <public-key-format>ct:subject-public-key-info-fo\
rmat</public-key-format>
                    <public-key>base64encodedvalue==</public-key>
                    <private-key-format>ct:rsa-private-key-format</p\
rivate-key-format>
                    <private-key>base64encodedvalue==</private-key>
                    <cert>base64encodedvalue==</cert>
                  </local-definition>
                </certificate>
              </server-identity>
              <client-authentication>
                <ca-certs>
                  <truststore-reference>trusted-client-ca-certs</tru\
ststore-reference>
                </ca-certs>
                <client-certs>
                  <truststore-reference>trusted-client-ee-certs</tru\
ststore-reference>
                </client-certs>
              </client-authentication>
            </tls-server-parameters>
            <http-server-parameters>
              <server-name>foo.example.com</server-name>
              <protocol-versions>
                <protocol-version>HTTP/1.1</protocol-version>
                <protocol-version>HTTP/2.0</protocol-version>
              </protocol-versions>
            </http-server-parameters>
            <restconf-server-parameters>
              <client-identity-mappings>
                <cert-to-name>
                  <id>1</id>
                  <fingerprint>11:0A:05:11:00</fingerprint>
                  <map-type>x509c2n:specified</map-type>
                  <name>scooby-doo</name>
                </cert-to-name>
                <cert-to-name>
                  <id>2</id>
                  <map-type>x509c2n:san-any</map-type>
                </cert-to-name>
              </client-identity-mappings>
            </restconf-server-parameters>
          </https>
        </endpoint>
      </endpoints>
      <connection-type>
        <periodic>
          <idle-timeout>300</idle-timeout>
          <period>60</period>
        </periodic>
      </connection-type>
      <reconnect-strategy>
        <start-with>last-connected</start-with>
        <max-attempts>3</max-attempts>
      </reconnect-strategy>
    </restconf-client>
  </call-home>
</restconf-server>
]]></artwork>
            </figure>
          </t>
        </section>

        <section title="YANG Module" anchor="ietf-restconf-server-module">
          <t>This YANG module has normative references to <xref target="RFC6991"/>,
          <xref target="RFC7407"/>, <xref target="RFC8040"/>, <xref target="RFC8071"/>,
          <xref target="I-D.kwatsen-netconf-tcp-client-server"/>,
          <xref target="I-D.ietf-netconf-tls-client-server"/>, and
          <xref target="I-D.kwatsen-netconf-http-client-server"/>.</t>
          <t>
            <figure>
              <preamble>&lt;CODE BEGINS&gt; file "ietf-restconf-server@2020-03-08.yang"</preamble>
              <artwork><![CDATA[
module ietf-restconf-server {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-restconf-server";
  prefix rcs;

  import ietf-yang-types {
    prefix yang;
    reference
      "RFC 6991: Common YANG Data Types";
  }

  import ietf-inet-types {
    prefix inet;
    reference
      "RFC 6991: Common YANG Data Types";
  }

  import ietf-x509-cert-to-name {
    prefix x509c2n;
    reference
      "RFC 7407: A YANG Data Model for SNMP Configuration";
  }

  import ietf-tcp-client {
    prefix tcpc;
    reference
      "RFC AAAA: YANG Groupings for TCP Clients and TCP Servers";
  }

  import ietf-tcp-server {
    prefix tcps;
    reference
      "RFC AAAA: YANG Groupings for TCP Clients and TCP Servers";
  }

  import ietf-tls-server {
    prefix tlss;
    reference
      "RFC BBBB: YANG Groupings for TLS Clients and TLS Servers";
  }

  import ietf-http-server {
    prefix https;
    reference
      "RFC CCCC: YANG Groupings for HTTP Clients and HTTP Servers";
  }

  organization
    "IETF NETCONF (Network Configuration) Working Group";

  contact
    "WG Web:   <http://datatracker.ietf.org/wg/netconf/>
     WG List:  <mailto:netconf@ietf.org>
     Author:   Kent Watsen <mailto:kent+ietf@watsen.net>
     Author:   Gary Wu <mailto:garywu@cisco.com>
     Author:   Juergen Schoenwaelder
               <mailto:j.schoenwaelder@jacobs-university.de>";

  description
    "This module contains a collection of YANG definitions
     for configuring RESTCONF servers.

     Copyright (c) 2019 IETF Trust and the persons identified
     as authors of the code. All rights reserved.

     Redistribution and use in source and binary forms, with
     or without modification, is permitted pursuant to, and
     subject to the license terms contained in, the Simplified
     BSD License set forth in Section 4.c of the IETF Trust's
     Legal Provisions Relating to IETF Documents
     (https://trustee.ietf.org/license-info).

     This version of this YANG module is part of RFC XXXX
     (https://www.rfc-editor.org/info/rfcXXXX); see the RFC
     itself for full legal notices.

     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 (RFC 2119)
     (RFC 8174) when, and only when, they appear in all
     capitals, as shown here.";

  revision 2020-03-08 {
    description
      "Initial version";
    reference
      "RFC XXXX: RESTCONF Client and Server Models";
  }

  // Features

  feature http-listen {
    description
      "The 'http-listen' feature indicates that the RESTCONF server
       supports opening a port to listen for incoming RESTCONF over
       TPC client connections, whereby the TLS connections are
       terminated by an external system.";
    reference
      "RFC 8040: RESTCONF Protocol";
  }

  feature https-listen {
    description
      "The 'https-listen' feature indicates that the RESTCONF server
       supports opening a port to listen for incoming RESTCONF over
       TLS client connections, whereby the TLS connections are 
       terminated by the server itself.";
    reference
      "RFC 8040: RESTCONF Protocol";
  }

  feature https-call-home {
    description
      "The 'https-call-home' feature indicates that the RESTCONF
       server supports initiating connections to RESTCONF clients.";
    reference
      "RFC 8071: NETCONF Call Home and RESTCONF Call Home";
  }


  // Groupings

  grouping restconf-server-grouping {
    description
      "A reusable grouping for configuring a RESTCONF server
       without any consideration for how underlying transport
       sessions are established.

       Note that this grouping uses a fairly typical descendent
       node name such that a stack of 'uses' statements will
       have name conflicts.  It is intended that the consuming
       data model will resolve the issue by wrapping the 'uses'
       statement in a container called, e.g., 
       'restconf-server-parameters'.  This model purposely does
       not do this itself so as to provide maximum flexibility
       to consuming models.";

    container client-identity-mappings {
      //if-feature "client-certificates-supported"; // FIXME: yes?
      description
        "Specifies mappings through which RESTCONF client X.509
         certificates are used to determine a RESTCONF username.
         If no matching and valid cert-to-name list entry can be
         found, then the RESTCONF server MUST close the connection,
         and MUST NOT accept RESTCONF messages over it.";
      reference
        "RFC 7407: A YANG Data Model for SNMP Configuration.";
      uses x509c2n:cert-to-name {
        refine "cert-to-name/fingerprint" {
          mandatory false;
          description
            "A 'fingerprint' value does not need to be specified
             when the 'cert-to-name' mapping is independent of
             fingerprint matching.  A 'cert-to-name' having no
             fingerprint value will match any client certificate
             and therefore should only be present at the end of
             the user-ordered 'cert-to-name' list.";
        }
      }
    }
  }

  grouping restconf-server-listen-stack-grouping {
    description
      "A reusable grouping for configuring a RESTCONF server
       'listen' protocol stack for a single connection.";
    choice transport {
      mandatory true;
      description
        "Selects between available transports. This is a
         'choice' statement so as to support additional
         transport options to be augmented in.";
      case http {
        if-feature "http-listen";
        container http {
          description
            "Configures RESTCONF server stack assuming that
             TLS-termination is handled externally.";
          container external-endpoint {
            presence
              "Specifies configuration for an external endpoint.";
            description
              "Identifies contact information for the external
               system that terminates connections before passing
               them thru to this server (e.g., a network address
               translator or a load balancer).  These values have
               no effect on the local operation of this server, but
               may be used by the application when needing to
               inform other systems how to contact this server.";
            leaf address {
              type inet:ip-address;
              mandatory true;
              description
                "The IP address or hostname of the external system
                 that terminates incoming RESTCONF client
                 connections before forwarding them to this
                 server.";
            }
            leaf port {
              type inet:port-number;
              default "443";
              description
                "The port number that the external system listens
                 on for incoming RESTCONF client connections that
                 are forwarded to this server.  The default HTTPS
                 port (443) is used, as expected for a RESTCONF
                 connection.";
            }
          }
          container tcp-server-parameters {
            description
              "A wrapper around the TCP server parameters
               to avoid name collisions.";
            uses tcps:tcp-server-grouping {
              refine "local-port" {
                default "80";
                description
                  "The RESTCONF server will listen on the IANA-
                   assigned well-known port value for 'http'
                   (80) if no value is specified.";
              }
            }
          }
          container http-server-parameters {
            description
              "A wrapper around the HTTP server parameters
               to avoid name collisions.";
            uses https:http-server-grouping;
          }
          container restconf-server-parameters {
            description
              "A wrapper around the RESTCONF server parameters
               to avoid name collisions.";
            uses rcs:restconf-server-grouping;
          }
        }
      }
      case https {
        if-feature "https-listen";
        container https {
          description
            "Configures RESTCONF server stack assuming that
             TLS-termination is handled internally.";
          container tcp-server-parameters {
            description
              "A wrapper around the TCP server parameters
               to avoid name collisions.";
            uses tcps:tcp-server-grouping {
              refine "local-port" {
                default "443";
                description
                  "The RESTCONF server will listen on the IANA-
                   assigned well-known port value for 'https'
                   (443) if no value is specified.";
              }
            }
          }
          container tls-server-parameters {
            description
              "A wrapper around the TLS server parameters
               to avoid name collisions.";
            uses tlss:tls-server-grouping;
          }
          container http-server-parameters {
            description
              "A wrapper around the HTTP server parameters
               to avoid name collisions.";
            uses https:http-server-grouping;
          }
          container restconf-server-parameters {
            description
              "A wrapper around the RESTCONF server parameters
               to avoid name collisions.";
            uses rcs:restconf-server-grouping;
          }
        }
      }
    }
  }

  grouping restconf-server-callhome-stack-grouping {
    description
      "A reusable grouping for configuring a RESTCONF server
       'call-home' protocol stack, for a single connection.";
    choice transport {
      mandatory true;
      description
        "Selects between available transports. This is a
         'choice' statement so as to support additional
         transport options to be augmented in.";
      case https {
        if-feature "https-listen";
        container https {
          description
            "Configures RESTCONF server stack assuming that
             TLS-termination is handled internally.";
          container tcp-client-parameters {
            description
              "A wrapper around the TCP client parameters
               to avoid name collisions.";
            uses tcpc:tcp-client-grouping {
              refine "remote-port" {
                default "4336";
                description
                  "The RESTCONF server will attempt to
                   connect to the IANA-assigned well-known
                   port for 'restconf-ch-tls' (4336) if no
                   value is specified.";
              }
            }
          }
          container tls-server-parameters {
            description
              "A wrapper around the TLS server parameters
               to avoid name collisions.";
            uses tlss:tls-server-grouping; /* {
              FIXME: commented out since auth could also be external.
                       ^-- need a better 'must' expression?
              refine "client-authentication" {
              must 'ca-certs or client-certs';
                description
                  "NETCONF/TLS servers MUST validate client
                   certificates.";
              }*/
          }
          container http-server-parameters {
            description
              "A wrapper around the HTTP server parameters
               to avoid name collisions.";
            uses https:http-server-grouping;
          }
          container restconf-server-parameters {
            description
              "A wrapper around the RESTCONF server parameters
               to avoid name collisions.";
            uses rcs:restconf-server-grouping;
          }
        }
      }
    }
  }


  grouping restconf-server-app-grouping {
    description
      "A reusable grouping for configuring a RESTCONF server
       application that supports both 'listen' and 'call-home'
       protocol stacks for a multiplicity of connections.";
    container listen {
      if-feature "http-listen or https-listen";
      presence
        "Enables the RESTCONF server to listen for RESTCONF
         client connections.";
      description "Configures listen behavior";
      list endpoint {
        key "name";
        min-elements 1;
        description
          "List of endpoints to listen for RESTCONF connections.";
        leaf name {
          type string;
          description
            "An arbitrary name for the RESTCONF listen endpoint.";
        }
        uses restconf-server-listen-stack-grouping;
      }
    }
    container call-home {
      if-feature "https-call-home";
      presence
        "Enables the RESTCONF server to initiate the underlying
         transport connection to RESTCONF clients.";
      description "Configures call-home behavior";
      list restconf-client {
        key "name";
        min-elements 1;
        description
          "List of RESTCONF clients the RESTCONF server is to
           maintain simultaneous call-home connections with.";
        leaf name {
          type string;
          description
            "An arbitrary name for the remote RESTCONF client.";
        }
        container endpoints {
          description
            "Container for the list of endpoints.";
          list endpoint {
            key "name";
            min-elements 1;
            ordered-by user;
            description
              "User-ordered list of endpoints for this RESTCONF
               client.  Defining more than one enables high-
               availability.";
            leaf name {
              type string;
              description
                "An arbitrary name for this endpoint.";
            }
            uses restconf-server-callhome-stack-grouping;
          }
        }
        container connection-type {
          description
            "Indicates the RESTCONF server's preference for how the
             RESTCONF connection is maintained.";
          choice connection-type {
            mandatory true;
            description
              "Selects between available connection types.";
            case persistent-connection {
              container persistent {
                presence "Indicates that a persistent connection is
                          to be maintained.";
                description
                  "Maintain a persistent connection to the RESTCONF
                   client. If the connection goes down, immediately
                   start trying to reconnect to the RESTCONF server,
                   using the reconnection strategy.

                   This connection type minimizes any RESTCONF
                   client to RESTCONF server data-transfer delay,
                   albeit at the expense of holding resources
                   longer.";
              }
            }
            case periodic-connection {
              container periodic {
                presence "Indicates that a periodic connection is
                          to be maintained.";
                description
                  "Periodically connect to the RESTCONF client.

                   This connection type increases resource
                   utilization, albeit with increased delay in
                   RESTCONF client to RESTCONF client interactions.

                   The RESTCONF client SHOULD gracefully close
                   the underlying TLS connection upon completing
                   planned activities.  If the underlying TLS
                   connection is not closed gracefully, the
                   RESTCONF server MUST immediately attempt
                   to reestablish the connection.

                   In the case that the previous connection is
                   still active (i.e., the RESTCONF client has not
                   closed it yet), establishing a new connection
                   is NOT RECOMMENDED.";

                leaf period {
                  type uint16;
                  units "minutes";
                  default "60";
                  description
                    "Duration of time between periodic connections.";
                }
                leaf anchor-time {
                  type yang:date-and-time {
                    // constrained to minute-level granularity
                    pattern '\d{4}-\d{2}-\d{2}T\d{2}:\d{2}'
                          + '(Z|[\+\-]\d{2}:\d{2})';
                  }
                  description
                    "Designates a timestamp before or after which a
                     series of periodic connections are determined.
                     The periodic connections occur at a whole
                     multiple interval from the anchor time.  For
                     example, for an anchor time is 15 minutes past
                     midnight and a period interval of 24 hours, then
                     a periodic connection will occur 15 minutes past
                     midnight everyday.";
                }
                leaf idle-timeout {
                  type uint16;
                  units "seconds";
                  default 120; // two minutes
                  description
                    "Specifies the maximum number of seconds that
                     the underlying TCP session may remain idle.
                     A TCP session will be dropped if it is idle
                     for an interval longer than this number of
                     seconds.  If set to zero, then the server
                     will never drop a session because it is idle.";
                }
              }
            }
          }
        }
        container reconnect-strategy {
          description
            "The reconnection strategy directs how a RESTCONF server
             reconnects to a RESTCONF client after discovering its
             connection to the client has dropped, even if due to a
             reboot.  The RESTCONF server starts with the specified
             endpoint and tries to connect to it max-attempts times
             before trying the next endpoint in the list (round
             robin).";
          leaf start-with {
            type enumeration {
              enum first-listed {
                description
                  "Indicates that reconnections should start with
                   the first endpoint listed.";
              }
              enum last-connected {
                description
                  "Indicates that reconnections should start with
                   the endpoint last connected to.  If no previous
                   connection has ever been established, then the
                   first endpoint configured is used.   RESTCONF
                   servers SHOULD be able to remember the last
                   endpoint connected to across reboots.";
              }
              enum random-selection {
                description
                  "Indicates that reconnections should start with
                   a random endpoint.";
              }
            }
            default "first-listed";
            description
              "Specifies which of the RESTCONF client's endpoints
               the RESTCONF server should start with when trying
               to connect to the RESTCONF client.";
          }
          leaf max-attempts {
            type uint8 {
              range "1..max";
            }
            default "3";
            description
              "Specifies the number times the RESTCONF server tries
               to connect to a specific endpoint before moving on to
               the next endpoint in the list (round robin).";
          }
        }
      } // restconf-client
    } // call-home
  } // restconf-server-app-grouping



  // Protocol accessible node, for servers that implement this
  // module.

  container restconf-server {
    uses restconf-server-app-grouping;
    description
      "Top-level container for RESTCONF server configuration.";
  }

}
]]></artwork>
              <postamble>&lt;CODE ENDS&gt;</postamble>
            </figure>
          </t>
        </section>
      </section>

      <section title="Security Considerations">
        <t>The YANG module defined in this document uses groupings defined in
          <xref target="I-D.kwatsen-netconf-tcp-client-server"/>,
          <xref target="I-D.ietf-netconf-tls-client-server"/>, and
          <xref target="I-D.kwatsen-netconf-http-client-server"/>.  Please
          see the Security Considerations section in those documents for
          concerns related those groupings.</t>

        <t>The YANG modules defined in this document are designed to be accessed
          via YANG based management protocols, such as NETCONF <xref target="RFC6241"/>
          and RESTCONF <xref target="RFC8040"/>.  Both of these protocols have
          mandatory-to-implement secure transport layers (e.g., SSH, TLS) with
          mutual authentication.</t>

        <t>The NETCONF access control model (NACM) <xref target="RFC8341"/>
          provides the means to restrict access for particular users to a
          pre-configured subset of all available protocol operations and content.</t>

        <t>There are a number of data nodes defined in the YANG modules that are
          writable/creatable/deletable (i.e., config true, which is the default). 
          Some of these data nodes may be considered sensitive or vulnerable in 
          some network environments.  Write operations (e.g., edit-config) to 
          these data nodes without proper protection can have a negative effect 
          on network operations. These are the subtrees and data nodes and their 
          sensitivity/vulnerability: 
          <list style="hanging" hangIndent="6">
            <t hangText="   None of the subtrees or data nodes in the modules defined in this document need to be protected from write operations."/>
          </list>
        </t>

        <t>Some of the readable data nodes in the YANG modules may be considered
          sensitive or vulnerable in some network environments. It is thus 
          important to control read access (e.g., via get, get-config, or 
          notification) to these data nodes. These are the subtrees and data 
          nodes and their sensitivity/vulnerability:
          <list style="hanging" hangIndent="6">
            <t hangText="   None of the subtrees or data nodes in the modules defined in this document need to be protected from read operations."/>
          </list>
        </t>

        <t>Some of the RPC operations in the YANG modules may be considered
          sensitive or vulnerable in some network environments. It is thus 
          important to control access to these operations. These are the 
          operations and their sensitivity/vulnerability:
          <list style="hanging" hangIndent="6">
            <t hangText="   The modules defined in this document do not define any 'RPC' or 'action' statements."/>
          </list>
        </t>
      </section>

      <section title="IANA Considerations">
        <section title="The IETF XML Registry">
          <t>This document registers two URIs in the "ns" subregistry of the IETF XML
          Registry <xref target="RFC3688"/>.  Following the format in
          <xref target="RFC3688"/>, the following registrations are
          requested:</t>
          <t>
            <figure>
                <artwork><![CDATA[
   URI: urn:ietf:params:xml:ns:yang:ietf-restconf-client
   Registrant Contact: The NETCONF WG of the IETF.
   XML: N/A, the requested URI is an XML namespace.

   URI: urn:ietf:params:xml:ns:yang:ietf-restconf-server
   Registrant Contact: The NETCONF WG of the IETF.
   XML: N/A, the requested URI is an XML namespace.
]]></artwork>
            </figure>
          </t>
        </section>

        <section title="The YANG Module Names Registry">
          <t>This document registers two YANG modules in the
          YANG Module Names registry <xref target="RFC6020"/>.
          Following the format in <xref target="RFC6020"/>, the
          the following registrations are requested:</t>
          <t>
            <figure>
                <artwork><![CDATA[
   name:         ietf-restconf-client
   namespace:    urn:ietf:params:xml:ns:yang:ietf-restconf-client
   prefix:       ncc
   reference:    RFC XXXX

   name:         ietf-restconf-server
   namespace:    urn:ietf:params:xml:ns:yang:ietf-restconf-server
   prefix:       ncs
   reference:    RFC XXXX
]]></artwork>
            </figure>
          </t>
        </section>
      </section>

  </middle>
  <back>

    <references title="Normative References">
      <?rfc include="reference.RFC.2119.xml"?>
      <?rfc include="reference.RFC.6020.xml"?>
      <?rfc include="reference.RFC.6991.xml"?>
      <?rfc include="reference.RFC.7407.xml"?>
      <?rfc include="reference.RFC.7950.xml"?>
      <?rfc include="reference.RFC.8040.xml"?>
      <?rfc include="reference.RFC.8071.xml"?>
      <?rfc include="reference.RFC.8174.xml"?>
      <?rfc include="reference.I-D.ietf-netconf-keystore"?>
      <?rfc include="reference.I-D.kwatsen-netconf-tcp-client-server"?>
      <?rfc include="reference.I-D.ietf-netconf-tls-client-server"?>
      <?rfc include="reference.I-D.kwatsen-netconf-http-client-server"?>
    </references>

    <references title="Informative References">
      <?rfc include="reference.RFC.3688.xml"?>
      <?rfc include="reference.RFC.6241.xml"?>
      <?rfc include="reference.RFC.8340.xml"?>
      <?rfc include="reference.RFC.8341.xml"?>
      <?rfc include="reference.RFC.8446.xml"?>
      <?rfc include="reference.I-D.ietf-netconf-trust-anchors"?>
    </references>

    <section title="Expanded Tree Diagrams">
      <section title="Expanded Tree Diagram for 'ietf-restconf-client'" anchor="restconf-client-tree-expanded">
        <t>The following tree diagram <xref target="RFC8340"/> provides an
          overview of the data model for the "ietf-restconf-client" module.</t>
        <t>This tree diagram shows all the nodes defined in this module,
          including those defined by "grouping" statements used by this module.</t>
        <t>Please see <xref target="restconf-client-tree"/> for a tree
          diagram that illustrates what the module looks like without
          all the "grouping" statements expanded.</t>
        <t>
          <figure>
            <artwork><![CDATA[
========== NOTE: '\\' line wrapping per BCP XXX (RFC XXXX) ==========

module: ietf-restconf-client
  +--rw restconf-client
     +--rw initiate! {https-initiate}?
     |  +--rw restconf-server* [name]
     |     +--rw name                  string
     |     +--rw endpoints
     |     |  +--rw endpoint* [name]
     |     |     +--rw name           string
     |     |     +--rw (transport)
     |     |        +--:(https) {https-initiate}?
     |     |           +--rw https
     |     |              +--rw tcp-client-parameters
     |     |              |  +--rw remote-address    inet:host
     |     |              |  +--rw remote-port?      inet:port-number
     |     |              |  +--rw local-address?    inet:ip-address
     |     |              |  |       {local-binding-supported}?
     |     |              |  +--rw local-port?       inet:port-number
     |     |              |  |       {local-binding-supported}?
     |     |              |  +--rw keepalives!
     |     |              |          {keepalives-supported}?
     |     |              |     +--rw idle-time         uint16
     |     |              |     +--rw max-probes        uint16
     |     |              |     +--rw probe-interval    uint16
     |     |              +--rw tls-client-parameters
     |     |              |  +--rw client-identity
     |     |              |  |  +--rw (auth-type)?
     |     |              |  |     +--:(certificate)
     |     |              |  |     |        {x509-certificate-auth}?
     |     |              |  |     |  +--rw certificate
     |     |              |  |     |     +--rw (local-or-keystore)
     |     |              |  |     |        +--:(local)
     |     |              |  |     |        |        {local-definiti\
\ons-supported}?
     |     |              |  |     |        |  +--rw local-definition
     |     |              |  |     |        |     +--rw algorithm
     |     |              |  |     |        |     |       iasa:asymm\
\etric-algorithm-type
     |     |              |  |     |        |     +--rw public-key-f\
\ormat
     |     |              |  |     |        |     |       identityref
     |     |              |  |     |        |     +--rw public-key
     |     |              |  |     |        |     |       binary
     |     |              |  |     |        |     +--rw private-key-\
\format?
     |     |              |  |     |        |     |       identityref
     |     |              |  |     |        |     +--rw (private-key\
\-type)
     |     |              |  |     |        |     |  +--:(private-ke\
\y)
     |     |              |  |     |        |     |  |  +--rw privat\
\e-key?
     |     |              |  |     |        |     |  |          bina\
\ry
     |     |              |  |     |        |     |  +--:(hidden-pri\
\vate-key)
     |     |              |  |     |        |     |  |  +--rw hidden\
\-private-key?
     |     |              |  |     |        |     |  |          empty
     |     |              |  |     |        |     |  +--:(encrypted-\
\private-key)
     |     |              |  |     |        |     |     +--rw encryp\
\ted-private-key
     |     |              |  |     |        |     |        +--rw (ke\
\y-type)
     |     |              |  |     |        |     |        |  +--:(s\
\ymmetric-key-ref)
     |     |              |  |     |        |     |        |  |  +--\
\rw symmetric-key-ref?    leafref
     |     |              |  |     |        |     |        |  |     \
\     {keystore-supported}?
     |     |              |  |     |        |     |        |  +--:(a\
\symmetric-key-ref)
     |     |              |  |     |        |     |        |     +--\
\rw asymmetric-key-ref?   leafref
     |     |              |  |     |        |     |        |        \
\     {keystore-supported}?
     |     |              |  |     |        |     |        +--rw val\
\ue?
     |     |              |  |     |        |     |                b\
\inary
     |     |              |  |     |        |     +--rw cert?
     |     |              |  |     |        |     |       end-entity\
\-cert-cms
     |     |              |  |     |        |     +---n certificate-\
\expiration
     |     |              |  |     |        |     |  +-- expiration-\
\date
     |     |              |  |     |        |     |          yang:da\
\te-and-time
     |     |              |  |     |        |     +---x generate-cer\
\tificate-signing-request
     |     |              |  |     |        |        +---w input
     |     |              |  |     |        |        |  +---w subject
     |     |              |  |     |        |        |  |       bina\
\ry
     |     |              |  |     |        |        |  +---w attrib\
\utes?
     |     |              |  |     |        |        |          bina\
\ry
     |     |              |  |     |        |        +--ro output
     |     |              |  |     |        |           +--ro certif\
\icate-signing-request
     |     |              |  |     |        |                   bina\
\ry
     |     |              |  |     |        +--:(keystore)
     |     |              |  |     |                 {keystore-suppo\
\rted}?
     |     |              |  |     |           +--rw keystore-refere\
\nce
     |     |              |  |     |              +--rw asymmetric-k\
\ey?
     |     |              |  |     |              |       ks:asymmet\
\ric-key-ref
     |     |              |  |     |              +--rw certificate?\
\      leafref
     |     |              |  |     +--:(raw-public-key)
     |     |              |  |     |        {raw-public-key-auth}?
     |     |              |  |     |  +--rw raw-private-key
     |     |              |  |     |     +--rw (local-or-keystore)
     |     |              |  |     |        +--:(local)
     |     |              |  |     |        |        {local-definiti\
\ons-supported}?
     |     |              |  |     |        |  +--rw local-definition
     |     |              |  |     |        |     +--rw algorithm
     |     |              |  |     |        |     |       iasa:asymm\
\etric-algorithm-type
     |     |              |  |     |        |     +--rw public-key-f\
\ormat
     |     |              |  |     |        |     |       identityref
     |     |              |  |     |        |     +--rw public-key
     |     |              |  |     |        |     |       binary
     |     |              |  |     |        |     +--rw private-key-\
\format?
     |     |              |  |     |        |     |       identityref
     |     |              |  |     |        |     +--rw (private-key\
\-type)
     |     |              |  |     |        |        +--:(private-ke\
\y)
     |     |              |  |     |        |        |  +--rw privat\
\e-key?
     |     |              |  |     |        |        |          bina\
\ry
     |     |              |  |     |        |        +--:(hidden-pri\
\vate-key)
     |     |              |  |     |        |        |  +--rw hidden\
\-private-key?
     |     |              |  |     |        |        |          empty
     |     |              |  |     |        |        +--:(encrypted-\
\private-key)
     |     |              |  |     |        |           +--rw encryp\
\ted-private-key
     |     |              |  |     |        |              +--rw (ke\
\y-type)
     |     |              |  |     |        |              |  +--:(s\
\ymmetric-key-ref)
     |     |              |  |     |        |              |  |  +--\
\rw symmetric-key-ref?    leafref
     |     |              |  |     |        |              |  |     \
\     {keystore-supported}?
     |     |              |  |     |        |              |  +--:(a\
\symmetric-key-ref)
     |     |              |  |     |        |              |     +--\
\rw asymmetric-key-ref?   leafref
     |     |              |  |     |        |              |        \
\     {keystore-supported}?
     |     |              |  |     |        |              +--rw val\
\ue?
     |     |              |  |     |        |                      b\
\inary
     |     |              |  |     |        +--:(keystore)
     |     |              |  |     |                 {keystore-suppo\
\rted}?
     |     |              |  |     |           +--rw keystore-refere\
\nce?
     |     |              |  |     |                   ks:asymmetric\
\-key-ref
     |     |              |  |     +--:(psk) {psk-auth}?
     |     |              |  |        +--rw psk
     |     |              |  |           +--rw (local-or-keystore)
     |     |              |  |              +--:(local)
     |     |              |  |              |        {local-definiti\
\ons-supported}?
     |     |              |  |              |  +--rw local-definition
     |     |              |  |              |     +--rw algorithm
     |     |              |  |              |     |       isa:symmet\
\ric-algorithm-type
     |     |              |  |              |     +--rw key-format?
     |     |              |  |              |     |       identityref
     |     |              |  |              |     +--rw (key-type)
     |     |              |  |              |     |  +--:(key)
     |     |              |  |              |     |  |  +--rw key?
     |     |              |  |              |     |  |          bina\
\ry
     |     |              |  |              |     |  +--:(hidden-key)
     |     |              |  |              |     |  |  +--rw hidden\
\-key?
     |     |              |  |              |     |  |          empty
     |     |              |  |              |     |  +--:(encrypted-\
\key)
     |     |              |  |              |     |     +--rw encryp\
\ted-key
     |     |              |  |              |     |        +--rw (ke\
\y-type)
     |     |              |  |              |     |        |  +--:(s\
\ymmetric-key-ref)
     |     |              |  |              |     |        |  |  +--\
\rw symmetric-key-ref?    leafref
     |     |              |  |              |     |        |  |     \
\     {keystore-supported}?
     |     |              |  |              |     |        |  +--:(a\
\symmetric-key-ref)
     |     |              |  |              |     |        |     +--\
\rw asymmetric-key-ref?   leafref
     |     |              |  |              |     |        |        \
\     {keystore-supported}?
     |     |              |  |              |     |        +--rw val\
\ue?
     |     |              |  |              |     |                b\
\inary
     |     |              |  |              |     +--rw id?
     |     |              |  |              |             string
     |     |              |  |              |             {ks:local-\
\definitions-supported}?
     |     |              |  |              +--:(keystore)
     |     |              |  |                       {keystore-suppo\
\rted}?
     |     |              |  |                 +--rw keystore-refere\
\nce?
     |     |              |  |                         ks:symmetric-\
\key-ref
     |     |              |  +--rw server-authentication
     |     |              |  |  +--rw ca-certs!
     |     |              |  |  |       {x509-certificate-auth}?
     |     |              |  |  |  +--rw (local-or-truststore)
     |     |              |  |  |     +--:(local)
     |     |              |  |  |     |        {local-definitions-su\
\pported}?
     |     |              |  |  |     |  +--rw local-definition
     |     |              |  |  |     |     +--rw cert*
     |     |              |  |  |     |     |       trust-anchor-cer\
\t-cms
     |     |              |  |  |     |     +---n certificate-expira\
\tion
     |     |              |  |  |     |        +-- expiration-date
     |     |              |  |  |     |                yang:date-and\
\-time
     |     |              |  |  |     +--:(truststore)
     |     |              |  |  |              {truststore-supported\
\,x509-certificates}?
     |     |              |  |  |        +--rw truststore-reference?
     |     |              |  |  |                ts:certificate-bag-\
\ref
     |     |              |  |  +--rw server-certs!
     |     |              |  |  |       {x509-certificate-auth}?
     |     |              |  |  |  +--rw (local-or-truststore)
     |     |              |  |  |     +--:(local)
     |     |              |  |  |     |        {local-definitions-su\
\pported}?
     |     |              |  |  |     |  +--rw local-definition
     |     |              |  |  |     |     +--rw cert*
     |     |              |  |  |     |     |       trust-anchor-cer\
\t-cms
     |     |              |  |  |     |     +---n certificate-expira\
\tion
     |     |              |  |  |     |        +-- expiration-date
     |     |              |  |  |     |                yang:date-and\
\-time
     |     |              |  |  |     +--:(truststore)
     |     |              |  |  |              {truststore-supported\
\,x509-certificates}?
     |     |              |  |  |        +--rw truststore-reference?
     |     |              |  |  |                ts:certificate-bag-\
\ref
     |     |              |  |  +--rw raw-public-keys!
     |     |              |  |  |       {raw-public-key-auth}?
     |     |              |  |  |  +--rw (local-or-truststore)
     |     |              |  |  |     +--:(local)
     |     |              |  |  |     |        {local-definitions-su\
\pported}?
     |     |              |  |  |     |  +--rw local-definition
     |     |              |  |  |     |     +--rw public-key* [name]
     |     |              |  |  |     |        +--rw name
     |     |              |  |  |     |        |       string
     |     |              |  |  |     |        +--rw algorithm
     |     |              |  |  |     |        |       iasa:asymmetr\
\ic-algorithm-type
     |     |              |  |  |     |        +--rw public-key-form\
\at
     |     |              |  |  |     |        |       identityref
     |     |              |  |  |     |        +--rw public-key
     |     |              |  |  |     |                binary
     |     |              |  |  |     +--:(truststore)
     |     |              |  |  |              {truststore-supported\
\,public-keys}?
     |     |              |  |  |        +--rw truststore-reference?
     |     |              |  |  |                ts:public-key-bag-r\
\ef
     |     |              |  |  +--rw psks! {psk-auth}?
     |     |              |  +--rw hello-params
     |     |              |  |       {tls-client-hello-params-config\
\}?
     |     |              |  |  +--rw tls-versions
     |     |              |  |  |  +--rw tls-version*   identityref
     |     |              |  |  +--rw cipher-suites
     |     |              |  |     +--rw cipher-suite*   identityref
     |     |              |  +--rw keepalives!
     |     |              |          {tls-client-keepalives}?
     |     |              |     +--rw max-wait?       uint16
     |     |              |     +--rw max-attempts?   uint8
     |     |              +--rw http-client-parameters
     |     |              |  +--rw client-identity
     |     |              |  |  +--rw (auth-type)
     |     |              |  |     +--:(basic)
     |     |              |  |        +--rw basic {basic-auth}?
     |     |              |  |           +--rw user-id     string
     |     |              |  |           +--rw password    string
     |     |              |  +--rw proxy-server! {proxy-connect}?
     |     |              |     +--rw tcp-client-parameters
     |     |              |     |  +--rw remote-address    inet:host
     |     |              |     |  +--rw remote-port?
     |     |              |     |  |       inet:port-number
     |     |              |     |  +--rw local-address?
     |     |              |     |  |       inet:ip-address
     |     |              |     |  |       {local-binding-supported}?
     |     |              |     |  +--rw local-port?
     |     |              |     |  |       inet:port-number
     |     |              |     |  |       {local-binding-supported}?
     |     |              |     |  +--rw keepalives!
     |     |              |     |          {keepalives-supported}?
     |     |              |     |     +--rw idle-time         uint16
     |     |              |     |     +--rw max-probes        uint16
     |     |              |     |     +--rw probe-interval    uint16
     |     |              |     +--rw tls-client-parameters
     |     |              |     |  +--rw client-identity
     |     |              |     |  |  +--rw (auth-type)?
     |     |              |     |  |     +--:(certificate)
     |     |              |     |  |     |        {x509-certificate-\
\auth}?
     |     |              |     |  |     |  +--rw certificate
     |     |              |     |  |     |     +--rw (local-or-keyst\
\ore)
     |     |              |     |  |     |        +--:(local)
     |     |              |     |  |     |        |        {local-de\
\finitions-supported}?
     |     |              |     |  |     |        |  +--rw local-def\
\inition
     |     |              |     |  |     |        |     +--rw algori\
\thm
     |     |              |     |  |     |        |     |       iasa\
\:asymmetric-algorithm-type
     |     |              |     |  |     |        |     +--rw public\
\-key-format
     |     |              |     |  |     |        |     |       iden\
\tityref
     |     |              |     |  |     |        |     +--rw public\
\-key
     |     |              |     |  |     |        |     |       bina\
\ry
     |     |              |     |  |     |        |     +--rw privat\
\e-key-format?
     |     |              |     |  |     |        |     |       iden\
\tityref
     |     |              |     |  |     |        |     +--rw (priva\
\te-key-type)
     |     |              |     |  |     |        |     |  +--:(priv\
\ate-key)
     |     |              |     |  |     |        |     |  |  +--rw \
\private-key?
     |     |              |     |  |     |        |     |  |        \
\  binary
     |     |              |     |  |     |        |     |  +--:(hidd\
\en-private-key)
     |     |              |     |  |     |        |     |  |  +--rw \
\hidden-private-key?
     |     |              |     |  |     |        |     |  |        \
\  empty
     |     |              |     |  |     |        |     |  +--:(encr\
\ypted-private-key)
     |     |              |     |  |     |        |     |     +--rw \
\encrypted-private-key
     |     |              |     |  |     |        |     |        +--\
\rw (key-type)
     |     |              |     |  |     |        |     |        |  \
\+--:(symmetric-key-ref)
     |     |              |     |  |     |        |     |        |  \
\|  +--rw symmetric-key-ref?    leafref
     |     |              |     |  |     |        |     |        |  \
\|          {keystore-supported}?
     |     |              |     |  |     |        |     |        |  \
\+--:(asymmetric-key-ref)
     |     |              |     |  |     |        |     |        |  \
\   +--rw asymmetric-key-ref?   leafref
     |     |              |     |  |     |        |     |        |  \
\           {keystore-supported}?
     |     |              |     |  |     |        |     |        +--\
\rw value?
     |     |              |     |  |     |        |     |           \
\     binary
     |     |              |     |  |     |        |     +--rw cert?
     |     |              |     |  |     |        |     |       end-\
\entity-cert-cms
     |     |              |     |  |     |        |     +---n certif\
\icate-expiration
     |     |              |     |  |     |        |     |  +-- expir\
\ation-date
     |     |              |     |  |     |        |     |          y\
\ang:date-and-time
     |     |              |     |  |     |        |     +---x genera\
\te-certificate-signing-request
     |     |              |     |  |     |        |        +---w inp\
\ut
     |     |              |     |  |     |        |        |  +---w \
\subject
     |     |              |     |  |     |        |        |  |     \
\  binary
     |     |              |     |  |     |        |        |  +---w \
\attributes?
     |     |              |     |  |     |        |        |        \
\  binary
     |     |              |     |  |     |        |        +--ro out\
\put
     |     |              |     |  |     |        |           +--ro \
\certificate-signing-request
     |     |              |     |  |     |        |                 \
\  binary
     |     |              |     |  |     |        +--:(keystore)
     |     |              |     |  |     |                 {keystore\
\-supported}?
     |     |              |     |  |     |           +--rw keystore-\
\reference
     |     |              |     |  |     |              +--rw asymme\
\tric-key?
     |     |              |     |  |     |              |       ks:a\
\symmetric-key-ref
     |     |              |     |  |     |              +--rw certif\
\icate?      leafref
     |     |              |     |  |     +--:(raw-public-key)
     |     |              |     |  |     |        {raw-public-key-au\
\th}?
     |     |              |     |  |     |  +--rw raw-private-key
     |     |              |     |  |     |     +--rw (local-or-keyst\
\ore)
     |     |              |     |  |     |        +--:(local)
     |     |              |     |  |     |        |        {local-de\
\finitions-supported}?
     |     |              |     |  |     |        |  +--rw local-def\
\inition
     |     |              |     |  |     |        |     +--rw algori\
\thm
     |     |              |     |  |     |        |     |       iasa\
\:asymmetric-algorithm-type
     |     |              |     |  |     |        |     +--rw public\
\-key-format
     |     |              |     |  |     |        |     |       iden\
\tityref
     |     |              |     |  |     |        |     +--rw public\
\-key
     |     |              |     |  |     |        |     |       bina\
\ry
     |     |              |     |  |     |        |     +--rw privat\
\e-key-format?
     |     |              |     |  |     |        |     |       iden\
\tityref
     |     |              |     |  |     |        |     +--rw (priva\
\te-key-type)
     |     |              |     |  |     |        |        +--:(priv\
\ate-key)
     |     |              |     |  |     |        |        |  +--rw \
\private-key?
     |     |              |     |  |     |        |        |        \
\  binary
     |     |              |     |  |     |        |        +--:(hidd\
\en-private-key)
     |     |              |     |  |     |        |        |  +--rw \
\hidden-private-key?
     |     |              |     |  |     |        |        |        \
\  empty
     |     |              |     |  |     |        |        +--:(encr\
\ypted-private-key)
     |     |              |     |  |     |        |           +--rw \
\encrypted-private-key
     |     |              |     |  |     |        |              +--\
\rw (key-type)
     |     |              |     |  |     |        |              |  \
\+--:(symmetric-key-ref)
     |     |              |     |  |     |        |              |  \
\|  +--rw symmetric-key-ref?    leafref
     |     |              |     |  |     |        |              |  \
\|          {keystore-supported}?
     |     |              |     |  |     |        |              |  \
\+--:(asymmetric-key-ref)
     |     |              |     |  |     |        |              |  \
\   +--rw asymmetric-key-ref?   leafref
     |     |              |     |  |     |        |              |  \
\           {keystore-supported}?
     |     |              |     |  |     |        |              +--\
\rw value?
     |     |              |     |  |     |        |                 \
\     binary
     |     |              |     |  |     |        +--:(keystore)
     |     |              |     |  |     |                 {keystore\
\-supported}?
     |     |              |     |  |     |           +--rw keystore-\
\reference?
     |     |              |     |  |     |                   ks:asym\
\metric-key-ref
     |     |              |     |  |     +--:(psk) {psk-auth}?
     |     |              |     |  |        +--rw psk
     |     |              |     |  |           +--rw (local-or-keyst\
\ore)
     |     |              |     |  |              +--:(local)
     |     |              |     |  |              |        {local-de\
\finitions-supported}?
     |     |              |     |  |              |  +--rw local-def\
\inition
     |     |              |     |  |              |     +--rw algori\
\thm
     |     |              |     |  |              |     |       isa:\
\symmetric-algorithm-type
     |     |              |     |  |              |     +--rw key-fo\
\rmat?
     |     |              |     |  |              |     |       iden\
\tityref
     |     |              |     |  |              |     +--rw (key-t\
\ype)
     |     |              |     |  |              |     |  +--:(key)
     |     |              |     |  |              |     |  |  +--rw \
\key?
     |     |              |     |  |              |     |  |        \
\  binary
     |     |              |     |  |              |     |  +--:(hidd\
\en-key)
     |     |              |     |  |              |     |  |  +--rw \
\hidden-key?
     |     |              |     |  |              |     |  |        \
\  empty
     |     |              |     |  |              |     |  +--:(encr\
\ypted-key)
     |     |              |     |  |              |     |     +--rw \
\encrypted-key
     |     |              |     |  |              |     |        +--\
\rw (key-type)
     |     |              |     |  |              |     |        |  \
\+--:(symmetric-key-ref)
     |     |              |     |  |              |     |        |  \
\|  +--rw symmetric-key-ref?    leafref
     |     |              |     |  |              |     |        |  \
\|          {keystore-supported}?
     |     |              |     |  |              |     |        |  \
\+--:(asymmetric-key-ref)
     |     |              |     |  |              |     |        |  \
\   +--rw asymmetric-key-ref?   leafref
     |     |              |     |  |              |     |        |  \
\           {keystore-supported}?
     |     |              |     |  |              |     |        +--\
\rw value?
     |     |              |     |  |              |     |           \
\     binary
     |     |              |     |  |              |     +--rw id?
     |     |              |     |  |              |             stri\
\ng
     |     |              |     |  |              |             {ks:\
\local-definitions-supported}?
     |     |              |     |  |              +--:(keystore)
     |     |              |     |  |                       {keystore\
\-supported}?
     |     |              |     |  |                 +--rw keystore-\
\reference?
     |     |              |     |  |                         ks:symm\
\etric-key-ref
     |     |              |     |  +--rw server-authentication
     |     |              |     |  |  +--rw ca-certs!
     |     |              |     |  |  |       {x509-certificate-auth\
\}?
     |     |              |     |  |  |  +--rw (local-or-truststore)
     |     |              |     |  |  |     +--:(local)
     |     |              |     |  |  |     |        {local-definiti\
\ons-supported}?
     |     |              |     |  |  |     |  +--rw local-definition
     |     |              |     |  |  |     |     +--rw cert*
     |     |              |     |  |  |     |     |       trust-anch\
\or-cert-cms
     |     |              |     |  |  |     |     +---n certificate-\
\expiration
     |     |              |     |  |  |     |        +-- expiration-\
\date
     |     |              |     |  |  |     |                yang:da\
\te-and-time
     |     |              |     |  |  |     +--:(truststore)
     |     |              |     |  |  |              {truststore-sup\
\ported,x509-certificates}?
     |     |              |     |  |  |        +--rw truststore-refe\
\rence?
     |     |              |     |  |  |                ts:certificat\
\e-bag-ref
     |     |              |     |  |  +--rw server-certs!
     |     |              |     |  |  |       {x509-certificate-auth\
\}?
     |     |              |     |  |  |  +--rw (local-or-truststore)
     |     |              |     |  |  |     +--:(local)
     |     |              |     |  |  |     |        {local-definiti\
\ons-supported}?
     |     |              |     |  |  |     |  +--rw local-definition
     |     |              |     |  |  |     |     +--rw cert*
     |     |              |     |  |  |     |     |       trust-anch\
\or-cert-cms
     |     |              |     |  |  |     |     +---n certificate-\
\expiration
     |     |              |     |  |  |     |        +-- expiration-\
\date
     |     |              |     |  |  |     |                yang:da\
\te-and-time
     |     |              |     |  |  |     +--:(truststore)
     |     |              |     |  |  |              {truststore-sup\
\ported,x509-certificates}?
     |     |              |     |  |  |        +--rw truststore-refe\
\rence?
     |     |              |     |  |  |                ts:certificat\
\e-bag-ref
     |     |              |     |  |  +--rw raw-public-keys!
     |     |              |     |  |  |       {raw-public-key-auth}?
     |     |              |     |  |  |  +--rw (local-or-truststore)
     |     |              |     |  |  |     +--:(local)
     |     |              |     |  |  |     |        {local-definiti\
\ons-supported}?
     |     |              |     |  |  |     |  +--rw local-definition
     |     |              |     |  |  |     |     +--rw public-key*
     |     |              |     |  |  |     |             [name]
     |     |              |     |  |  |     |        +--rw name
     |     |              |     |  |  |     |        |       string
     |     |              |     |  |  |     |        +--rw algorithm
     |     |              |     |  |  |     |        |       iasa:as\
\ymmetric-algorithm-type
     |     |              |     |  |  |     |        +--rw public-ke\
\y-format
     |     |              |     |  |  |     |        |       identit\
\yref
     |     |              |     |  |  |     |        +--rw public-key
     |     |              |     |  |  |     |                binary
     |     |              |     |  |  |     +--:(truststore)
     |     |              |     |  |  |              {truststore-sup\
\ported,public-keys}?
     |     |              |     |  |  |        +--rw truststore-refe\
\rence?
     |     |              |     |  |  |                ts:public-key\
\-bag-ref
     |     |              |     |  |  +--rw psks! {psk-auth}?
     |     |              |     |  +--rw hello-params
     |     |              |     |  |       {tls-client-hello-params-\
\config}?
     |     |              |     |  |  +--rw tls-versions
     |     |              |     |  |  |  +--rw tls-version*
     |     |              |     |  |  |          identityref
     |     |              |     |  |  +--rw cipher-suites
     |     |              |     |  |     +--rw cipher-suite*
     |     |              |     |  |             identityref
     |     |              |     |  +--rw keepalives!
     |     |              |     |          {tls-client-keepalives}?
     |     |              |     |     +--rw max-wait?       uint16
     |     |              |     |     +--rw max-attempts?   uint8
     |     |              |     +--rw proxy-client-identity
     |     |              |        +--rw (auth-type)
     |     |              |           +--:(basic)
     |     |              |              +--rw basic {basic-auth}?
     |     |              |                 +--rw user-id     string
     |     |              |                 +--rw password    string
     |     |              +--rw restconf-client-parameters
     |     +--rw connection-type
     |     |  +--rw (connection-type)
     |     |     +--:(persistent-connection)
     |     |     |  +--rw persistent!
     |     |     +--:(periodic-connection)
     |     |        +--rw periodic!
     |     |           +--rw period?         uint16
     |     |           +--rw anchor-time?    yang:date-and-time
     |     |           +--rw idle-timeout?   uint16
     |     +--rw reconnect-strategy
     |        +--rw start-with?     enumeration
     |        +--rw max-attempts?   uint8
     +--rw listen! {http-listen or https-listen}?
        +--rw idle-timeout?   uint16
        +--rw endpoint* [name]
           +--rw name           string
           +--rw (transport)
              +--:(http) {http-listen}?
              |  +--rw FIXME
              +--:(https) {https-listen}?
                 +--rw https
                    +--rw tcp-server-parameters
                    |  +--rw local-address    inet:ip-address
                    |  +--rw local-port?      inet:port-number
                    |  +--rw keepalives! {keepalives-supported}?
                    |     +--rw idle-time         uint16
                    |     +--rw max-probes        uint16
                    |     +--rw probe-interval    uint16
                    +--rw tls-client-parameters
                    |  +--rw client-identity
                    |  |  +--rw (auth-type)?
                    |  |     +--:(certificate)
                    |  |     |        {x509-certificate-auth}?
                    |  |     |  +--rw certificate
                    |  |     |     +--rw (local-or-keystore)
                    |  |     |        +--:(local)
                    |  |     |        |        {local-definitions-su\
\pported}?
                    |  |     |        |  +--rw local-definition
                    |  |     |        |     +--rw algorithm
                    |  |     |        |     |       iasa:asymmetric-\
\algorithm-type
                    |  |     |        |     +--rw public-key-format
                    |  |     |        |     |       identityref
                    |  |     |        |     +--rw public-key
                    |  |     |        |     |       binary
                    |  |     |        |     +--rw private-key-format?
                    |  |     |        |     |       identityref
                    |  |     |        |     +--rw (private-key-type)
                    |  |     |        |     |  +--:(private-key)
                    |  |     |        |     |  |  +--rw private-key?
                    |  |     |        |     |  |          binary
                    |  |     |        |     |  +--:(hidden-private-k\
\ey)
                    |  |     |        |     |  |  +--rw hidden-priva\
\te-key?
                    |  |     |        |     |  |          empty
                    |  |     |        |     |  +--:(encrypted-privat\
\e-key)
                    |  |     |        |     |     +--rw encrypted-pr\
\ivate-key
                    |  |     |        |     |        +--rw (key-type)
                    |  |     |        |     |        |  +--:(symmetr\
\ic-key-ref)
                    |  |     |        |     |        |  |  +--rw sym\
\metric-key-ref?    leafref
                    |  |     |        |     |        |  |          {\
\keystore-supported}?
                    |  |     |        |     |        |  +--:(asymmet\
\ric-key-ref)
                    |  |     |        |     |        |     +--rw asy\
\mmetric-key-ref?   leafref
                    |  |     |        |     |        |             {\
\keystore-supported}?
                    |  |     |        |     |        +--rw value?
                    |  |     |        |     |                binary
                    |  |     |        |     +--rw cert?
                    |  |     |        |     |       end-entity-cert-\
\cms
                    |  |     |        |     +---n certificate-expira\
\tion
                    |  |     |        |     |  +-- expiration-date
                    |  |     |        |     |          yang:date-and\
\-time
                    |  |     |        |     +---x generate-certifica\
\te-signing-request
                    |  |     |        |        +---w input
                    |  |     |        |        |  +---w subject
                    |  |     |        |        |  |       binary
                    |  |     |        |        |  +---w attributes?
                    |  |     |        |        |          binary
                    |  |     |        |        +--ro output
                    |  |     |        |           +--ro certificate-\
\signing-request
                    |  |     |        |                   binary
                    |  |     |        +--:(keystore)
                    |  |     |                 {keystore-supported}?
                    |  |     |           +--rw keystore-reference
                    |  |     |              +--rw asymmetric-key?
                    |  |     |              |       ks:asymmetric-ke\
\y-ref
                    |  |     |              +--rw certificate?      \
\leafref
                    |  |     +--:(raw-public-key)
                    |  |     |        {raw-public-key-auth}?
                    |  |     |  +--rw raw-private-key
                    |  |     |     +--rw (local-or-keystore)
                    |  |     |        +--:(local)
                    |  |     |        |        {local-definitions-su\
\pported}?
                    |  |     |        |  +--rw local-definition
                    |  |     |        |     +--rw algorithm
                    |  |     |        |     |       iasa:asymmetric-\
\algorithm-type
                    |  |     |        |     +--rw public-key-format
                    |  |     |        |     |       identityref
                    |  |     |        |     +--rw public-key
                    |  |     |        |     |       binary
                    |  |     |        |     +--rw private-key-format?
                    |  |     |        |     |       identityref
                    |  |     |        |     +--rw (private-key-type)
                    |  |     |        |        +--:(private-key)
                    |  |     |        |        |  +--rw private-key?
                    |  |     |        |        |          binary
                    |  |     |        |        +--:(hidden-private-k\
\ey)
                    |  |     |        |        |  +--rw hidden-priva\
\te-key?
                    |  |     |        |        |          empty
                    |  |     |        |        +--:(encrypted-privat\
\e-key)
                    |  |     |        |           +--rw encrypted-pr\
\ivate-key
                    |  |     |        |              +--rw (key-type)
                    |  |     |        |              |  +--:(symmetr\
\ic-key-ref)
                    |  |     |        |              |  |  +--rw sym\
\metric-key-ref?    leafref
                    |  |     |        |              |  |          {\
\keystore-supported}?
                    |  |     |        |              |  +--:(asymmet\
\ric-key-ref)
                    |  |     |        |              |     +--rw asy\
\mmetric-key-ref?   leafref
                    |  |     |        |              |             {\
\keystore-supported}?
                    |  |     |        |              +--rw value?
                    |  |     |        |                      binary
                    |  |     |        +--:(keystore)
                    |  |     |                 {keystore-supported}?
                    |  |     |           +--rw keystore-reference?
                    |  |     |                   ks:asymmetric-key-r\
\ef
                    |  |     +--:(psk) {psk-auth}?
                    |  |        +--rw psk
                    |  |           +--rw (local-or-keystore)
                    |  |              +--:(local)
                    |  |              |        {local-definitions-su\
\pported}?
                    |  |              |  +--rw local-definition
                    |  |              |     +--rw algorithm
                    |  |              |     |       isa:symmetric-al\
\gorithm-type
                    |  |              |     +--rw key-format?
                    |  |              |     |       identityref
                    |  |              |     +--rw (key-type)
                    |  |              |     |  +--:(key)
                    |  |              |     |  |  +--rw key?
                    |  |              |     |  |          binary
                    |  |              |     |  +--:(hidden-key)
                    |  |              |     |  |  +--rw hidden-key?
                    |  |              |     |  |          empty
                    |  |              |     |  +--:(encrypted-key)
                    |  |              |     |     +--rw encrypted-key
                    |  |              |     |        +--rw (key-type)
                    |  |              |     |        |  +--:(symmetr\
\ic-key-ref)
                    |  |              |     |        |  |  +--rw sym\
\metric-key-ref?    leafref
                    |  |              |     |        |  |          {\
\keystore-supported}?
                    |  |              |     |        |  +--:(asymmet\
\ric-key-ref)
                    |  |              |     |        |     +--rw asy\
\mmetric-key-ref?   leafref
                    |  |              |     |        |             {\
\keystore-supported}?
                    |  |              |     |        +--rw value?
                    |  |              |     |                binary
                    |  |              |     +--rw id?
                    |  |              |             string
                    |  |              |             {ks:local-defini\
\tions-supported}?
                    |  |              +--:(keystore)
                    |  |                       {keystore-supported}?
                    |  |                 +--rw keystore-reference?
                    |  |                         ks:symmetric-key-ref
                    |  +--rw server-authentication
                    |  |  +--rw ca-certs! {x509-certificate-auth}?
                    |  |  |  +--rw (local-or-truststore)
                    |  |  |     +--:(local)
                    |  |  |     |        {local-definitions-supporte\
\d}?
                    |  |  |     |  +--rw local-definition
                    |  |  |     |     +--rw cert*
                    |  |  |     |     |       trust-anchor-cert-cms
                    |  |  |     |     +---n certificate-expiration
                    |  |  |     |        +-- expiration-date
                    |  |  |     |                yang:date-and-time
                    |  |  |     +--:(truststore)
                    |  |  |              {truststore-supported,x509-\
\certificates}?
                    |  |  |        +--rw truststore-reference?
                    |  |  |                ts:certificate-bag-ref
                    |  |  +--rw server-certs!
                    |  |  |       {x509-certificate-auth}?
                    |  |  |  +--rw (local-or-truststore)
                    |  |  |     +--:(local)
                    |  |  |     |        {local-definitions-supporte\
\d}?
                    |  |  |     |  +--rw local-definition
                    |  |  |     |     +--rw cert*
                    |  |  |     |     |       trust-anchor-cert-cms
                    |  |  |     |     +---n certificate-expiration
                    |  |  |     |        +-- expiration-date
                    |  |  |     |                yang:date-and-time
                    |  |  |     +--:(truststore)
                    |  |  |              {truststore-supported,x509-\
\certificates}?
                    |  |  |        +--rw truststore-reference?
                    |  |  |                ts:certificate-bag-ref
                    |  |  +--rw raw-public-keys!
                    |  |  |       {raw-public-key-auth}?
                    |  |  |  +--rw (local-or-truststore)
                    |  |  |     +--:(local)
                    |  |  |     |        {local-definitions-supporte\
\d}?
                    |  |  |     |  +--rw local-definition
                    |  |  |     |     +--rw public-key* [name]
                    |  |  |     |        +--rw name
                    |  |  |     |        |       string
                    |  |  |     |        +--rw algorithm
                    |  |  |     |        |       iasa:asymmetric-alg\
\orithm-type
                    |  |  |     |        +--rw public-key-format
                    |  |  |     |        |       identityref
                    |  |  |     |        +--rw public-key
                    |  |  |     |                binary
                    |  |  |     +--:(truststore)
                    |  |  |              {truststore-supported,publi\
\c-keys}?
                    |  |  |        +--rw truststore-reference?
                    |  |  |                ts:public-key-bag-ref
                    |  |  +--rw psks! {psk-auth}?
                    |  +--rw hello-params
                    |  |       {tls-client-hello-params-config}?
                    |  |  +--rw tls-versions
                    |  |  |  +--rw tls-version*   identityref
                    |  |  +--rw cipher-suites
                    |  |     +--rw cipher-suite*   identityref
                    |  +--rw keepalives! {tls-client-keepalives}?
                    |     +--rw max-wait?       uint16
                    |     +--rw max-attempts?   uint8
                    +--rw http-client-parameters
                    |  +--rw client-identity
                    |  |  +--rw (auth-type)
                    |  |     +--:(basic)
                    |  |        +--rw basic {basic-auth}?
                    |  |           +--rw user-id     string
                    |  |           +--rw password    string
                    |  +--rw proxy-server! {proxy-connect}?
                    |     +--rw tcp-client-parameters
                    |     |  +--rw remote-address    inet:host
                    |     |  +--rw remote-port?      inet:port-number
                    |     |  +--rw local-address?    inet:ip-address
                    |     |  |       {local-binding-supported}?
                    |     |  +--rw local-port?       inet:port-number
                    |     |  |       {local-binding-supported}?
                    |     |  +--rw keepalives!
                    |     |          {keepalives-supported}?
                    |     |     +--rw idle-time         uint16
                    |     |     +--rw max-probes        uint16
                    |     |     +--rw probe-interval    uint16
                    |     +--rw tls-client-parameters
                    |     |  +--rw client-identity
                    |     |  |  +--rw (auth-type)?
                    |     |  |     +--:(certificate)
                    |     |  |     |        {x509-certificate-auth}?
                    |     |  |     |  +--rw certificate
                    |     |  |     |     +--rw (local-or-keystore)
                    |     |  |     |        +--:(local)
                    |     |  |     |        |        {local-definiti\
\ons-supported}?
                    |     |  |     |        |  +--rw local-definition
                    |     |  |     |        |     +--rw algorithm
                    |     |  |     |        |     |       iasa:asymm\
\etric-algorithm-type
                    |     |  |     |        |     +--rw public-key-f\
\ormat
                    |     |  |     |        |     |       identityref
                    |     |  |     |        |     +--rw public-key
                    |     |  |     |        |     |       binary
                    |     |  |     |        |     +--rw private-key-\
\format?
                    |     |  |     |        |     |       identityref
                    |     |  |     |        |     +--rw (private-key\
\-type)
                    |     |  |     |        |     |  +--:(private-ke\
\y)
                    |     |  |     |        |     |  |  +--rw privat\
\e-key?
                    |     |  |     |        |     |  |          bina\
\ry
                    |     |  |     |        |     |  +--:(hidden-pri\
\vate-key)
                    |     |  |     |        |     |  |  +--rw hidden\
\-private-key?
                    |     |  |     |        |     |  |          empty
                    |     |  |     |        |     |  +--:(encrypted-\
\private-key)
                    |     |  |     |        |     |     +--rw encryp\
\ted-private-key
                    |     |  |     |        |     |        +--rw (ke\
\y-type)
                    |     |  |     |        |     |        |  +--:(s\
\ymmetric-key-ref)
                    |     |  |     |        |     |        |  |  +--\
\rw symmetric-key-ref?    leafref
                    |     |  |     |        |     |        |  |     \
\     {keystore-supported}?
                    |     |  |     |        |     |        |  +--:(a\
\symmetric-key-ref)
                    |     |  |     |        |     |        |     +--\
\rw asymmetric-key-ref?   leafref
                    |     |  |     |        |     |        |        \
\     {keystore-supported}?
                    |     |  |     |        |     |        +--rw val\
\ue?
                    |     |  |     |        |     |                b\
\inary
                    |     |  |     |        |     +--rw cert?
                    |     |  |     |        |     |       end-entity\
\-cert-cms
                    |     |  |     |        |     +---n certificate-\
\expiration
                    |     |  |     |        |     |  +-- expiration-\
\date
                    |     |  |     |        |     |          yang:da\
\te-and-time
                    |     |  |     |        |     +---x generate-cer\
\tificate-signing-request
                    |     |  |     |        |        +---w input
                    |     |  |     |        |        |  +---w subject
                    |     |  |     |        |        |  |       bina\
\ry
                    |     |  |     |        |        |  +---w attrib\
\utes?
                    |     |  |     |        |        |          bina\
\ry
                    |     |  |     |        |        +--ro output
                    |     |  |     |        |           +--ro certif\
\icate-signing-request
                    |     |  |     |        |                   bina\
\ry
                    |     |  |     |        +--:(keystore)
                    |     |  |     |                 {keystore-suppo\
\rted}?
                    |     |  |     |           +--rw keystore-refere\
\nce
                    |     |  |     |              +--rw asymmetric-k\
\ey?
                    |     |  |     |              |       ks:asymmet\
\ric-key-ref
                    |     |  |     |              +--rw certificate?\
\      leafref
                    |     |  |     +--:(raw-public-key)
                    |     |  |     |        {raw-public-key-auth}?
                    |     |  |     |  +--rw raw-private-key
                    |     |  |     |     +--rw (local-or-keystore)
                    |     |  |     |        +--:(local)
                    |     |  |     |        |        {local-definiti\
\ons-supported}?
                    |     |  |     |        |  +--rw local-definition
                    |     |  |     |        |     +--rw algorithm
                    |     |  |     |        |     |       iasa:asymm\
\etric-algorithm-type
                    |     |  |     |        |     +--rw public-key-f\
\ormat
                    |     |  |     |        |     |       identityref
                    |     |  |     |        |     +--rw public-key
                    |     |  |     |        |     |       binary
                    |     |  |     |        |     +--rw private-key-\
\format?
                    |     |  |     |        |     |       identityref
                    |     |  |     |        |     +--rw (private-key\
\-type)
                    |     |  |     |        |        +--:(private-ke\
\y)
                    |     |  |     |        |        |  +--rw privat\
\e-key?
                    |     |  |     |        |        |          bina\
\ry
                    |     |  |     |        |        +--:(hidden-pri\
\vate-key)
                    |     |  |     |        |        |  +--rw hidden\
\-private-key?
                    |     |  |     |        |        |          empty
                    |     |  |     |        |        +--:(encrypted-\
\private-key)
                    |     |  |     |        |           +--rw encryp\
\ted-private-key
                    |     |  |     |        |              +--rw (ke\
\y-type)
                    |     |  |     |        |              |  +--:(s\
\ymmetric-key-ref)
                    |     |  |     |        |              |  |  +--\
\rw symmetric-key-ref?    leafref
                    |     |  |     |        |              |  |     \
\     {keystore-supported}?
                    |     |  |     |        |              |  +--:(a\
\symmetric-key-ref)
                    |     |  |     |        |              |     +--\
\rw asymmetric-key-ref?   leafref
                    |     |  |     |        |              |        \
\     {keystore-supported}?
                    |     |  |     |        |              +--rw val\
\ue?
                    |     |  |     |        |                      b\
\inary
                    |     |  |     |        +--:(keystore)
                    |     |  |     |                 {keystore-suppo\
\rted}?
                    |     |  |     |           +--rw keystore-refere\
\nce?
                    |     |  |     |                   ks:asymmetric\
\-key-ref
                    |     |  |     +--:(psk) {psk-auth}?
                    |     |  |        +--rw psk
                    |     |  |           +--rw (local-or-keystore)
                    |     |  |              +--:(local)
                    |     |  |              |        {local-definiti\
\ons-supported}?
                    |     |  |              |  +--rw local-definition
                    |     |  |              |     +--rw algorithm
                    |     |  |              |     |       isa:symmet\
\ric-algorithm-type
                    |     |  |              |     +--rw key-format?
                    |     |  |              |     |       identityref
                    |     |  |              |     +--rw (key-type)
                    |     |  |              |     |  +--:(key)
                    |     |  |              |     |  |  +--rw key?
                    |     |  |              |     |  |          bina\
\ry
                    |     |  |              |     |  +--:(hidden-key)
                    |     |  |              |     |  |  +--rw hidden\
\-key?
                    |     |  |              |     |  |          empty
                    |     |  |              |     |  +--:(encrypted-\
\key)
                    |     |  |              |     |     +--rw encryp\
\ted-key
                    |     |  |              |     |        +--rw (ke\
\y-type)
                    |     |  |              |     |        |  +--:(s\
\ymmetric-key-ref)
                    |     |  |              |     |        |  |  +--\
\rw symmetric-key-ref?    leafref
                    |     |  |              |     |        |  |     \
\     {keystore-supported}?
                    |     |  |              |     |        |  +--:(a\
\symmetric-key-ref)
                    |     |  |              |     |        |     +--\
\rw asymmetric-key-ref?   leafref
                    |     |  |              |     |        |        \
\     {keystore-supported}?
                    |     |  |              |     |        +--rw val\
\ue?
                    |     |  |              |     |                b\
\inary
                    |     |  |              |     +--rw id?
                    |     |  |              |             string
                    |     |  |              |             {ks:local-\
\definitions-supported}?
                    |     |  |              +--:(keystore)
                    |     |  |                       {keystore-suppo\
\rted}?
                    |     |  |                 +--rw keystore-refere\
\nce?
                    |     |  |                         ks:symmetric-\
\key-ref
                    |     |  +--rw server-authentication
                    |     |  |  +--rw ca-certs!
                    |     |  |  |       {x509-certificate-auth}?
                    |     |  |  |  +--rw (local-or-truststore)
                    |     |  |  |     +--:(local)
                    |     |  |  |     |        {local-definitions-su\
\pported}?
                    |     |  |  |     |  +--rw local-definition
                    |     |  |  |     |     +--rw cert*
                    |     |  |  |     |     |       trust-anchor-cer\
\t-cms
                    |     |  |  |     |     +---n certificate-expira\
\tion
                    |     |  |  |     |        +-- expiration-date
                    |     |  |  |     |                yang:date-and\
\-time
                    |     |  |  |     +--:(truststore)
                    |     |  |  |              {truststore-supported\
\,x509-certificates}?
                    |     |  |  |        +--rw truststore-reference?
                    |     |  |  |                ts:certificate-bag-\
\ref
                    |     |  |  +--rw server-certs!
                    |     |  |  |       {x509-certificate-auth}?
                    |     |  |  |  +--rw (local-or-truststore)
                    |     |  |  |     +--:(local)
                    |     |  |  |     |        {local-definitions-su\
\pported}?
                    |     |  |  |     |  +--rw local-definition
                    |     |  |  |     |     +--rw cert*
                    |     |  |  |     |     |       trust-anchor-cer\
\t-cms
                    |     |  |  |     |     +---n certificate-expira\
\tion
                    |     |  |  |     |        +-- expiration-date
                    |     |  |  |     |                yang:date-and\
\-time
                    |     |  |  |     +--:(truststore)
                    |     |  |  |              {truststore-supported\
\,x509-certificates}?
                    |     |  |  |        +--rw truststore-reference?
                    |     |  |  |                ts:certificate-bag-\
\ref
                    |     |  |  +--rw raw-public-keys!
                    |     |  |  |       {raw-public-key-auth}?
                    |     |  |  |  +--rw (local-or-truststore)
                    |     |  |  |     +--:(local)
                    |     |  |  |     |        {local-definitions-su\
\pported}?
                    |     |  |  |     |  +--rw local-definition
                    |     |  |  |     |     +--rw public-key* [name]
                    |     |  |  |     |        +--rw name
                    |     |  |  |     |        |       string
                    |     |  |  |     |        +--rw algorithm
                    |     |  |  |     |        |       iasa:asymmetr\
\ic-algorithm-type
                    |     |  |  |     |        +--rw public-key-form\
\at
                    |     |  |  |     |        |       identityref
                    |     |  |  |     |        +--rw public-key
                    |     |  |  |     |                binary
                    |     |  |  |     +--:(truststore)
                    |     |  |  |              {truststore-supported\
\,public-keys}?
                    |     |  |  |        +--rw truststore-reference?
                    |     |  |  |                ts:public-key-bag-r\
\ef
                    |     |  |  +--rw psks! {psk-auth}?
                    |     |  +--rw hello-params
                    |     |  |       {tls-client-hello-params-config\
\}?
                    |     |  |  +--rw tls-versions
                    |     |  |  |  +--rw tls-version*   identityref
                    |     |  |  +--rw cipher-suites
                    |     |  |     +--rw cipher-suite*   identityref
                    |     |  +--rw keepalives!
                    |     |          {tls-client-keepalives}?
                    |     |     +--rw max-wait?       uint16
                    |     |     +--rw max-attempts?   uint8
                    |     +--rw proxy-client-identity
                    |        +--rw (auth-type)
                    |           +--:(basic)
                    |              +--rw basic {basic-auth}?
                    |                 +--rw user-id     string
                    |                 +--rw password    string
                    +--rw restconf-client-parameters
]]></artwork>
          </figure>
        </t>
      </section>
      <section title="Expanded Tree Diagram for 'ietf-restconf-server'" anchor="restconf-server-tree-expanded">
        <t>The following tree diagram <xref target="RFC8340"/> provides an
          overview of the data model for the "ietf-restconf-server" module.</t>
        <t>This tree diagram shows all the nodes defined in this module,
          including those defined by "grouping" statements used by this module.</t>
        <t>Please see <xref target="restconf-server-tree"/> for a tree
          diagram that illustrates what the module looks like without
          all the "grouping" statements expanded.</t>
        <t>
          <figure>
            <artwork><![CDATA[
========== NOTE: '\\' line wrapping per BCP XXX (RFC XXXX) ==========

module: ietf-restconf-server
  +--rw restconf-server
     +--rw listen! {http-listen or https-listen}?
     |  +--rw endpoint* [name]
     |     +--rw name           string
     |     +--rw (transport)
     |        +--:(http) {http-listen}?
     |        |  +--rw http
     |        |     +--rw external-endpoint!
     |        |     |  +--rw address    inet:ip-address
     |        |     |  +--rw port?      inet:port-number
     |        |     +--rw tcp-server-parameters
     |        |     |  +--rw local-address    inet:ip-address
     |        |     |  +--rw local-port?      inet:port-number
     |        |     |  +--rw keepalives! {keepalives-supported}?
     |        |     |     +--rw idle-time         uint16
     |        |     |     +--rw max-probes        uint16
     |        |     |     +--rw probe-interval    uint16
     |        |     +--rw http-server-parameters
     |        |     |  +--rw server-name?             string
     |        |     |  +--rw protocol-versions
     |        |     |  |  +--rw protocol-version*   enumeration
     |        |     |  +--rw client-authentication!
     |        |     |          {client-auth-config-supported}?
     |        |     |     +--rw users
     |        |     |        +--rw user* [user-id]
     |        |     |           +--rw user-id        string
     |        |     |           +--rw (auth-type)?
     |        |     |              +--:(basic)
     |        |     |                 +--rw basic {basic-auth}?
     |        |     |                    +--rw user-id?    string
     |        |     |                    +--rw password?
     |        |     |                            ianach:crypt-hash
     |        |     +--rw restconf-server-parameters
     |        |        +--rw client-identity-mappings
     |        |           +--rw cert-to-name* [id]
     |        |              +--rw id             uint32
     |        |              +--rw fingerprint?
     |        |              |       x509c2n:tls-fingerprint
     |        |              +--rw map-type       identityref
     |        |              +--rw name           string
     |        +--:(https) {https-listen}?
     |           +--rw https
     |              +--rw tcp-server-parameters
     |              |  +--rw local-address    inet:ip-address
     |              |  +--rw local-port?      inet:port-number
     |              |  +--rw keepalives! {keepalives-supported}?
     |              |     +--rw idle-time         uint16
     |              |     +--rw max-probes        uint16
     |              |     +--rw probe-interval    uint16
     |              +--rw tls-server-parameters
     |              |  +--rw server-identity
     |              |  |  +--rw (auth-type)
     |              |  |     +--:(certificate)
     |              |  |     |        {x509-certificate-auth}?
     |              |  |     |  +--rw certificate
     |              |  |     |     +--rw (local-or-keystore)
     |              |  |     |        +--:(local)
     |              |  |     |        |        {local-definitions-su\
\pported}?
     |              |  |     |        |  +--rw local-definition
     |              |  |     |        |     +--rw algorithm
     |              |  |     |        |     |       iasa:asymmetric-\
\algorithm-type
     |              |  |     |        |     +--rw public-key-format
     |              |  |     |        |     |       identityref
     |              |  |     |        |     +--rw public-key
     |              |  |     |        |     |       binary
     |              |  |     |        |     +--rw private-key-format?
     |              |  |     |        |     |       identityref
     |              |  |     |        |     +--rw (private-key-type)
     |              |  |     |        |     |  +--:(private-key)
     |              |  |     |        |     |  |  +--rw private-key?
     |              |  |     |        |     |  |          binary
     |              |  |     |        |     |  +--:(hidden-private-k\
\ey)
     |              |  |     |        |     |  |  +--rw hidden-priva\
\te-key?
     |              |  |     |        |     |  |          empty
     |              |  |     |        |     |  +--:(encrypted-privat\
\e-key)
     |              |  |     |        |     |     +--rw encrypted-pr\
\ivate-key
     |              |  |     |        |     |        +--rw (key-type)
     |              |  |     |        |     |        |  +--:(symmetr\
\ic-key-ref)
     |              |  |     |        |     |        |  |  +--rw sym\
\metric-key-ref?    leafref
     |              |  |     |        |     |        |  |          {\
\keystore-supported}?
     |              |  |     |        |     |        |  +--:(asymmet\
\ric-key-ref)
     |              |  |     |        |     |        |     +--rw asy\
\mmetric-key-ref?   leafref
     |              |  |     |        |     |        |             {\
\keystore-supported}?
     |              |  |     |        |     |        +--rw value?
     |              |  |     |        |     |                binary
     |              |  |     |        |     +--rw cert?
     |              |  |     |        |     |       end-entity-cert-\
\cms
     |              |  |     |        |     +---n certificate-expira\
\tion
     |              |  |     |        |     |  +-- expiration-date
     |              |  |     |        |     |          yang:date-and\
\-time
     |              |  |     |        |     +---x generate-certifica\
\te-signing-request
     |              |  |     |        |        +---w input
     |              |  |     |        |        |  +---w subject
     |              |  |     |        |        |  |       binary
     |              |  |     |        |        |  +---w attributes?
     |              |  |     |        |        |          binary
     |              |  |     |        |        +--ro output
     |              |  |     |        |           +--ro certificate-\
\signing-request
     |              |  |     |        |                   binary
     |              |  |     |        +--:(keystore)
     |              |  |     |                 {keystore-supported}?
     |              |  |     |           +--rw keystore-reference
     |              |  |     |              +--rw asymmetric-key?
     |              |  |     |              |       ks:asymmetric-ke\
\y-ref
     |              |  |     |              +--rw certificate?      \
\leafref
     |              |  |     +--:(raw-private-key)
     |              |  |     |        {raw-public-key-auth}?
     |              |  |     |  +--rw raw-private-key
     |              |  |     |     +--rw (local-or-keystore)
     |              |  |     |        +--:(local)
     |              |  |     |        |        {local-definitions-su\
\pported}?
     |              |  |     |        |  +--rw local-definition
     |              |  |     |        |     +--rw algorithm
     |              |  |     |        |     |       iasa:asymmetric-\
\algorithm-type
     |              |  |     |        |     +--rw public-key-format
     |              |  |     |        |     |       identityref
     |              |  |     |        |     +--rw public-key
     |              |  |     |        |     |       binary
     |              |  |     |        |     +--rw private-key-format?
     |              |  |     |        |     |       identityref
     |              |  |     |        |     +--rw (private-key-type)
     |              |  |     |        |        +--:(private-key)
     |              |  |     |        |        |  +--rw private-key?
     |              |  |     |        |        |          binary
     |              |  |     |        |        +--:(hidden-private-k\
\ey)
     |              |  |     |        |        |  +--rw hidden-priva\
\te-key?
     |              |  |     |        |        |          empty
     |              |  |     |        |        +--:(encrypted-privat\
\e-key)
     |              |  |     |        |           +--rw encrypted-pr\
\ivate-key
     |              |  |     |        |              +--rw (key-type)
     |              |  |     |        |              |  +--:(symmetr\
\ic-key-ref)
     |              |  |     |        |              |  |  +--rw sym\
\metric-key-ref?    leafref
     |              |  |     |        |              |  |          {\
\keystore-supported}?
     |              |  |     |        |              |  +--:(asymmet\
\ric-key-ref)
     |              |  |     |        |              |     +--rw asy\
\mmetric-key-ref?   leafref
     |              |  |     |        |              |             {\
\keystore-supported}?
     |              |  |     |        |              +--rw value?
     |              |  |     |        |                      binary
     |              |  |     |        +--:(keystore)
     |              |  |     |                 {keystore-supported}?
     |              |  |     |           +--rw keystore-reference?
     |              |  |     |                   ks:asymmetric-key-r\
\ef
     |              |  |     +--:(psk) {psk-auth}?
     |              |  |        +--rw psk
     |              |  |           +--rw (local-or-keystore)
     |              |  |              +--:(local)
     |              |  |              |        {local-definitions-su\
\pported}?
     |              |  |              |  +--rw local-definition
     |              |  |              |     +--rw algorithm
     |              |  |              |     |       isa:symmetric-al\
\gorithm-type
     |              |  |              |     +--rw key-format?
     |              |  |              |     |       identityref
     |              |  |              |     +--rw (key-type)
     |              |  |              |     |  +--:(key)
     |              |  |              |     |  |  +--rw key?
     |              |  |              |     |  |          binary
     |              |  |              |     |  +--:(hidden-key)
     |              |  |              |     |  |  +--rw hidden-key?
     |              |  |              |     |  |          empty
     |              |  |              |     |  +--:(encrypted-key)
     |              |  |              |     |     +--rw encrypted-key
     |              |  |              |     |        +--rw (key-type)
     |              |  |              |     |        |  +--:(symmetr\
\ic-key-ref)
     |              |  |              |     |        |  |  +--rw sym\
\metric-key-ref?    leafref
     |              |  |              |     |        |  |          {\
\keystore-supported}?
     |              |  |              |     |        |  +--:(asymmet\
\ric-key-ref)
     |              |  |              |     |        |     +--rw asy\
\mmetric-key-ref?   leafref
     |              |  |              |     |        |             {\
\keystore-supported}?
     |              |  |              |     |        +--rw value?
     |              |  |              |     |                binary
     |              |  |              |     +--rw id?
     |              |  |              |             string
     |              |  |              |             {ks:local-defini\
\tions-supported}?
     |              |  |              +--:(keystore)
     |              |  |                       {keystore-supported}?
     |              |  |                 +--rw keystore-reference?
     |              |  |                         ks:symmetric-key-ref
     |              |  +--rw client-authentication!
     |              |  |       {client-auth-config-supported}?
     |              |  |  +--rw ca-certs! {x509-certificate-auth}?
     |              |  |  |  +--rw (local-or-truststore)
     |              |  |  |     +--:(local)
     |              |  |  |     |        {local-definitions-supporte\
\d}?
     |              |  |  |     |  +--rw local-definition
     |              |  |  |     |     +--rw cert*
     |              |  |  |     |     |       trust-anchor-cert-cms
     |              |  |  |     |     +---n certificate-expiration
     |              |  |  |     |        +-- expiration-date
     |              |  |  |     |                yang:date-and-time
     |              |  |  |     +--:(truststore)
     |              |  |  |              {truststore-supported,x509-\
\certificates}?
     |              |  |  |        +--rw truststore-reference?
     |              |  |  |                ts:certificate-bag-ref
     |              |  |  +--rw client-certs!
     |              |  |  |       {x509-certificate-auth}?
     |              |  |  |  +--rw (local-or-truststore)
     |              |  |  |     +--:(local)
     |              |  |  |     |        {local-definitions-supporte\
\d}?
     |              |  |  |     |  +--rw local-definition
     |              |  |  |     |     +--rw cert*
     |              |  |  |     |     |       trust-anchor-cert-cms
     |              |  |  |     |     +---n certificate-expiration
     |              |  |  |     |        +-- expiration-date
     |              |  |  |     |                yang:date-and-time
     |              |  |  |     +--:(truststore)
     |              |  |  |              {truststore-supported,x509-\
\certificates}?
     |              |  |  |        +--rw truststore-reference?
     |              |  |  |                ts:certificate-bag-ref
     |              |  |  +--rw raw-public-keys!
     |              |  |  |       {raw-public-key-auth}?
     |              |  |  |  +--rw (local-or-truststore)
     |              |  |  |     +--:(local)
     |              |  |  |     |        {local-definitions-supporte\
\d}?
     |              |  |  |     |  +--rw local-definition
     |              |  |  |     |     +--rw public-key* [name]
     |              |  |  |     |        +--rw name
     |              |  |  |     |        |       string
     |              |  |  |     |        +--rw algorithm
     |              |  |  |     |        |       iasa:asymmetric-alg\
\orithm-type
     |              |  |  |     |        +--rw public-key-format
     |              |  |  |     |        |       identityref
     |              |  |  |     |        +--rw public-key
     |              |  |  |     |                binary
     |              |  |  |     +--:(truststore)
     |              |  |  |              {truststore-supported,publi\
\c-keys}?
     |              |  |  |        +--rw truststore-reference?
     |              |  |  |                ts:public-key-bag-ref
     |              |  |  +--rw psks! {psk-auth}?
     |              |  +--rw hello-params
     |              |  |       {tls-server-hello-params-config}?
     |              |  |  +--rw tls-versions
     |              |  |  |  +--rw tls-version*   identityref
     |              |  |  +--rw cipher-suites
     |              |  |     +--rw cipher-suite*   identityref
     |              |  +--rw keepalives! {tls-server-keepalives}?
     |              |     +--rw max-wait?       uint16
     |              |     +--rw max-attempts?   uint8
     |              +--rw http-server-parameters
     |              |  +--rw server-name?             string
     |              |  +--rw protocol-versions
     |              |  |  +--rw protocol-version*   enumeration
     |              |  +--rw client-authentication!
     |              |          {client-auth-config-supported}?
     |              |     +--rw users
     |              |        +--rw user* [user-id]
     |              |           +--rw user-id        string
     |              |           +--rw (auth-type)?
     |              |              +--:(basic)
     |              |                 +--rw basic {basic-auth}?
     |              |                    +--rw user-id?    string
     |              |                    +--rw password?
     |              |                            ianach:crypt-hash
     |              +--rw restconf-server-parameters
     |                 +--rw client-identity-mappings
     |                    +--rw cert-to-name* [id]
     |                       +--rw id             uint32
     |                       +--rw fingerprint?
     |                       |       x509c2n:tls-fingerprint
     |                       +--rw map-type       identityref
     |                       +--rw name           string
     +--rw call-home! {https-call-home}?
        +--rw restconf-client* [name]
           +--rw name                  string
           +--rw endpoints
           |  +--rw endpoint* [name]
           |     +--rw name           string
           |     +--rw (transport)
           |        +--:(https) {https-listen}?
           |           +--rw https
           |              +--rw tcp-client-parameters
           |              |  +--rw remote-address    inet:host
           |              |  +--rw remote-port?      inet:port-number
           |              |  +--rw local-address?    inet:ip-address
           |              |  |       {local-binding-supported}?
           |              |  +--rw local-port?       inet:port-number
           |              |  |       {local-binding-supported}?
           |              |  +--rw keepalives!
           |              |          {keepalives-supported}?
           |              |     +--rw idle-time         uint16
           |              |     +--rw max-probes        uint16
           |              |     +--rw probe-interval    uint16
           |              +--rw tls-server-parameters
           |              |  +--rw server-identity
           |              |  |  +--rw (auth-type)
           |              |  |     +--:(certificate)
           |              |  |     |        {x509-certificate-auth}?
           |              |  |     |  +--rw certificate
           |              |  |     |     +--rw (local-or-keystore)
           |              |  |     |        +--:(local)
           |              |  |     |        |        {local-definiti\
\ons-supported}?
           |              |  |     |        |  +--rw local-definition
           |              |  |     |        |     +--rw algorithm
           |              |  |     |        |     |       iasa:asymm\
\etric-algorithm-type
           |              |  |     |        |     +--rw public-key-f\
\ormat
           |              |  |     |        |     |       identityref
           |              |  |     |        |     +--rw public-key
           |              |  |     |        |     |       binary
           |              |  |     |        |     +--rw private-key-\
\format?
           |              |  |     |        |     |       identityref
           |              |  |     |        |     +--rw (private-key\
\-type)
           |              |  |     |        |     |  +--:(private-ke\
\y)
           |              |  |     |        |     |  |  +--rw privat\
\e-key?
           |              |  |     |        |     |  |          bina\
\ry
           |              |  |     |        |     |  +--:(hidden-pri\
\vate-key)
           |              |  |     |        |     |  |  +--rw hidden\
\-private-key?
           |              |  |     |        |     |  |          empty
           |              |  |     |        |     |  +--:(encrypted-\
\private-key)
           |              |  |     |        |     |     +--rw encryp\
\ted-private-key
           |              |  |     |        |     |        +--rw (ke\
\y-type)
           |              |  |     |        |     |        |  +--:(s\
\ymmetric-key-ref)
           |              |  |     |        |     |        |  |  +--\
\rw symmetric-key-ref?    leafref
           |              |  |     |        |     |        |  |     \
\     {keystore-supported}?
           |              |  |     |        |     |        |  +--:(a\
\symmetric-key-ref)
           |              |  |     |        |     |        |     +--\
\rw asymmetric-key-ref?   leafref
           |              |  |     |        |     |        |        \
\     {keystore-supported}?
           |              |  |     |        |     |        +--rw val\
\ue?
           |              |  |     |        |     |                b\
\inary
           |              |  |     |        |     +--rw cert?
           |              |  |     |        |     |       end-entity\
\-cert-cms
           |              |  |     |        |     +---n certificate-\
\expiration
           |              |  |     |        |     |  +-- expiration-\
\date
           |              |  |     |        |     |          yang:da\
\te-and-time
           |              |  |     |        |     +---x generate-cer\
\tificate-signing-request
           |              |  |     |        |        +---w input
           |              |  |     |        |        |  +---w subject
           |              |  |     |        |        |  |       bina\
\ry
           |              |  |     |        |        |  +---w attrib\
\utes?
           |              |  |     |        |        |          bina\
\ry
           |              |  |     |        |        +--ro output
           |              |  |     |        |           +--ro certif\
\icate-signing-request
           |              |  |     |        |                   bina\
\ry
           |              |  |     |        +--:(keystore)
           |              |  |     |                 {keystore-suppo\
\rted}?
           |              |  |     |           +--rw keystore-refere\
\nce
           |              |  |     |              +--rw asymmetric-k\
\ey?
           |              |  |     |              |       ks:asymmet\
\ric-key-ref
           |              |  |     |              +--rw certificate?\
\      leafref
           |              |  |     +--:(raw-private-key)
           |              |  |     |        {raw-public-key-auth}?
           |              |  |     |  +--rw raw-private-key
           |              |  |     |     +--rw (local-or-keystore)
           |              |  |     |        +--:(local)
           |              |  |     |        |        {local-definiti\
\ons-supported}?
           |              |  |     |        |  +--rw local-definition
           |              |  |     |        |     +--rw algorithm
           |              |  |     |        |     |       iasa:asymm\
\etric-algorithm-type
           |              |  |     |        |     +--rw public-key-f\
\ormat
           |              |  |     |        |     |       identityref
           |              |  |     |        |     +--rw public-key
           |              |  |     |        |     |       binary
           |              |  |     |        |     +--rw private-key-\
\format?
           |              |  |     |        |     |       identityref
           |              |  |     |        |     +--rw (private-key\
\-type)
           |              |  |     |        |        +--:(private-ke\
\y)
           |              |  |     |        |        |  +--rw privat\
\e-key?
           |              |  |     |        |        |          bina\
\ry
           |              |  |     |        |        +--:(hidden-pri\
\vate-key)
           |              |  |     |        |        |  +--rw hidden\
\-private-key?
           |              |  |     |        |        |          empty
           |              |  |     |        |        +--:(encrypted-\
\private-key)
           |              |  |     |        |           +--rw encryp\
\ted-private-key
           |              |  |     |        |              +--rw (ke\
\y-type)
           |              |  |     |        |              |  +--:(s\
\ymmetric-key-ref)
           |              |  |     |        |              |  |  +--\
\rw symmetric-key-ref?    leafref
           |              |  |     |        |              |  |     \
\     {keystore-supported}?
           |              |  |     |        |              |  +--:(a\
\symmetric-key-ref)
           |              |  |     |        |              |     +--\
\rw asymmetric-key-ref?   leafref
           |              |  |     |        |              |        \
\     {keystore-supported}?
           |              |  |     |        |              +--rw val\
\ue?
           |              |  |     |        |                      b\
\inary
           |              |  |     |        +--:(keystore)
           |              |  |     |                 {keystore-suppo\
\rted}?
           |              |  |     |           +--rw keystore-refere\
\nce?
           |              |  |     |                   ks:asymmetric\
\-key-ref
           |              |  |     +--:(psk) {psk-auth}?
           |              |  |        +--rw psk
           |              |  |           +--rw (local-or-keystore)
           |              |  |              +--:(local)
           |              |  |              |        {local-definiti\
\ons-supported}?
           |              |  |              |  +--rw local-definition
           |              |  |              |     +--rw algorithm
           |              |  |              |     |       isa:symmet\
\ric-algorithm-type
           |              |  |              |     +--rw key-format?
           |              |  |              |     |       identityref
           |              |  |              |     +--rw (key-type)
           |              |  |              |     |  +--:(key)
           |              |  |              |     |  |  +--rw key?
           |              |  |              |     |  |          bina\
\ry
           |              |  |              |     |  +--:(hidden-key)
           |              |  |              |     |  |  +--rw hidden\
\-key?
           |              |  |              |     |  |          empty
           |              |  |              |     |  +--:(encrypted-\
\key)
           |              |  |              |     |     +--rw encryp\
\ted-key
           |              |  |              |     |        +--rw (ke\
\y-type)
           |              |  |              |     |        |  +--:(s\
\ymmetric-key-ref)
           |              |  |              |     |        |  |  +--\
\rw symmetric-key-ref?    leafref
           |              |  |              |     |        |  |     \
\     {keystore-supported}?
           |              |  |              |     |        |  +--:(a\
\symmetric-key-ref)
           |              |  |              |     |        |     +--\
\rw asymmetric-key-ref?   leafref
           |              |  |              |     |        |        \
\     {keystore-supported}?
           |              |  |              |     |        +--rw val\
\ue?
           |              |  |              |     |                b\
\inary
           |              |  |              |     +--rw id?
           |              |  |              |             string
           |              |  |              |             {ks:local-\
\definitions-supported}?
           |              |  |              +--:(keystore)
           |              |  |                       {keystore-suppo\
\rted}?
           |              |  |                 +--rw keystore-refere\
\nce?
           |              |  |                         ks:symmetric-\
\key-ref
           |              |  +--rw client-authentication!
           |              |  |       {client-auth-config-supported}?
           |              |  |  +--rw ca-certs!
           |              |  |  |       {x509-certificate-auth}?
           |              |  |  |  +--rw (local-or-truststore)
           |              |  |  |     +--:(local)
           |              |  |  |     |        {local-definitions-su\
\pported}?
           |              |  |  |     |  +--rw local-definition
           |              |  |  |     |     +--rw cert*
           |              |  |  |     |     |       trust-anchor-cer\
\t-cms
           |              |  |  |     |     +---n certificate-expira\
\tion
           |              |  |  |     |        +-- expiration-date
           |              |  |  |     |                yang:date-and\
\-time
           |              |  |  |     +--:(truststore)
           |              |  |  |              {truststore-supported\
\,x509-certificates}?
           |              |  |  |        +--rw truststore-reference?
           |              |  |  |                ts:certificate-bag-\
\ref
           |              |  |  +--rw client-certs!
           |              |  |  |       {x509-certificate-auth}?
           |              |  |  |  +--rw (local-or-truststore)
           |              |  |  |     +--:(local)
           |              |  |  |     |        {local-definitions-su\
\pported}?
           |              |  |  |     |  +--rw local-definition
           |              |  |  |     |     +--rw cert*
           |              |  |  |     |     |       trust-anchor-cer\
\t-cms
           |              |  |  |     |     +---n certificate-expira\
\tion
           |              |  |  |     |        +-- expiration-date
           |              |  |  |     |                yang:date-and\
\-time
           |              |  |  |     +--:(truststore)
           |              |  |  |              {truststore-supported\
\,x509-certificates}?
           |              |  |  |        +--rw truststore-reference?
           |              |  |  |                ts:certificate-bag-\
\ref
           |              |  |  +--rw raw-public-keys!
           |              |  |  |       {raw-public-key-auth}?
           |              |  |  |  +--rw (local-or-truststore)
           |              |  |  |     +--:(local)
           |              |  |  |     |        {local-definitions-su\
\pported}?
           |              |  |  |     |  +--rw local-definition
           |              |  |  |     |     +--rw public-key* [name]
           |              |  |  |     |        +--rw name
           |              |  |  |     |        |       string
           |              |  |  |     |        +--rw algorithm
           |              |  |  |     |        |       iasa:asymmetr\
\ic-algorithm-type
           |              |  |  |     |        +--rw public-key-form\
\at
           |              |  |  |     |        |       identityref
           |              |  |  |     |        +--rw public-key
           |              |  |  |     |                binary
           |              |  |  |     +--:(truststore)
           |              |  |  |              {truststore-supported\
\,public-keys}?
           |              |  |  |        +--rw truststore-reference?
           |              |  |  |                ts:public-key-bag-r\
\ef
           |              |  |  +--rw psks! {psk-auth}?
           |              |  +--rw hello-params
           |              |  |       {tls-server-hello-params-config\
\}?
           |              |  |  +--rw tls-versions
           |              |  |  |  +--rw tls-version*   identityref
           |              |  |  +--rw cipher-suites
           |              |  |     +--rw cipher-suite*   identityref
           |              |  +--rw keepalives!
           |              |          {tls-server-keepalives}?
           |              |     +--rw max-wait?       uint16
           |              |     +--rw max-attempts?   uint8
           |              +--rw http-server-parameters
           |              |  +--rw server-name?             string
           |              |  +--rw protocol-versions
           |              |  |  +--rw protocol-version*   enumeration
           |              |  +--rw client-authentication!
           |              |          {client-auth-config-supported}?
           |              |     +--rw users
           |              |        +--rw user* [user-id]
           |              |           +--rw user-id        string
           |              |           +--rw (auth-type)?
           |              |              +--:(basic)
           |              |                 +--rw basic {basic-auth}?
           |              |                    +--rw user-id?
           |              |                    |       string
           |              |                    +--rw password?
           |              |                            ianach:crypt-\
\hash
           |              +--rw restconf-server-parameters
           |                 +--rw client-identity-mappings
           |                    +--rw cert-to-name* [id]
           |                       +--rw id             uint32
           |                       +--rw fingerprint?
           |                       |       x509c2n:tls-fingerprint
           |                       +--rw map-type       identityref
           |                       +--rw name           string
           +--rw connection-type
           |  +--rw (connection-type)
           |     +--:(persistent-connection)
           |     |  +--rw persistent!
           |     +--:(periodic-connection)
           |        +--rw periodic!
           |           +--rw period?         uint16
           |           +--rw anchor-time?    yang:date-and-time
           |           +--rw idle-timeout?   uint16
           +--rw reconnect-strategy
              +--rw start-with?     enumeration
              +--rw max-attempts?   uint8
]]></artwork>
          </figure>
        </t>
      </section>
    </section>

    <section title="Change Log" anchor="change-log">
      <section title="00 to 01">
        <t>
          <list style="symbols">
            <t>Renamed "keychain" to "keystore".</t>
          </list>
        </t>
      </section>
      <section title="01 to 02">
        <t>
          <list style="symbols">
            <t>Filled in previously missing 'ietf-restconf-client' module.</t>
            <t>Updated the ietf-restconf-server module to accommodate new
            grouping 'ietf-tls-server-grouping'.</t>
          </list>
        </t>
      </section>
      <section title="02 to 03">
        <t>
          <list style="symbols">
            <t>Refined use of tls-client-grouping to add a must statement
               indicating that the TLS client must specify a client-certificate.</t>
            <t>Changed restconf-client??? to be a grouping (not a container).</t>
          </list>
        </t>
      </section>
      <section title="03 to 04">
        <t>
          <list style="symbols">
            <t>Added RFC 8174 to Requirements Language Section.</t>
            <t>Replaced refine statement in ietf-restconf-client
               to add a mandatory true.</t>
            <t>Added refine statement in ietf-restconf-server
               to add a must statement.</t>
            <t>Now there are containers and groupings, for both the
               client and server models.</t>
            <t>Now tree diagrams reference ietf-netmod-yang-tree-diagrams</t>
            <t>Updated examples to inline key and certificates (no longer 
               a leafref to keystore)</t>
          </list>
        </t>
      </section>
      <section title="04 to 05">
        <t>
          <list style="symbols">
            <t>Now tree diagrams reference ietf-netmod-yang-tree-diagrams</t>
            <t>Updated examples to inline key and certificates (no longer
               a leafref to keystore)</t>
          </list>
        </t>
      </section>
      <section title="05 to 06">
        <t>
          <list style="symbols">
            <t>Fixed change log missing section issue.</t>
            <t>Updated examples to match latest updates to the crypto-types,
               trust-anchors, and keystore drafts.</t>
            <t>Reduced line length of the YANG modules to fit within 69 columns.</t>
          </list>
        </t>
      </section>
      <section title="06 to 07">
        <t>
          <list style="symbols">
            <t>removed "idle-timeout" from "persistent" connection config.</t>
            <t>Added "random-selection" for reconnection-strategy's "starts-with" enum.</t>
            <t>Replaced "connection-type" choice default (persistent) with "mandatory true".</t>
            <t>Reduced the periodic-connection's "idle-timeout" from 5 to 2 minutes.</t>
            <t>Replaced reconnect-timeout with period/anchor-time combo.</t>
          </list>
        </t>
      </section>
      <section title="07 to 08">
        <t>
          <list style="symbols">
            <t>Modified examples to be compatible with new crypto-types algs</t>
          </list>
        </t>
      </section>
      <section title="08 to 09">
        <t>
          <list style="symbols">
            <t>Corrected use of "mandatory true" for "address" leafs.</t>
            <t>Updated examples to reflect update to groupings defined in the keystore draft.</t>
            <t>Updated to use groupings defined in new TCP and HTTP drafts.</t>
            <t>Updated copyright date, boilerplate template, affiliation, and folding algorithm.</t>
          </list>
        </t>
      </section>
      <section title="09 to 10">
        <t>
          <list style="symbols">
            <t>Reformatted YANG modules.</t>
          </list>
        </t>
      </section>
      <section title="10 to 11">
        <t>
          <list style="symbols">
              <t>Adjusted for the top-level "demux container" added to groupings
                imported from other modules.</t>
              <t>Added "must" expressions to ensure that keepalives are not configured
                for "periodic" connections.</t>
              <t>Updated the boilerplate text in module-level "description" statement
                to match copyeditor convention.</t>
              <t>Moved "expanded" tree diagrams to the Appendix.</t>
          </list>
        </t>
      </section>
      <section title="11 to 12">
        <t>
          <list style="symbols">
            <t>Removed the 'must' statement limiting keepalives in periodic
              connections.</t>
            <t>Updated models and examples to reflect removal of the "demux"
              containers in the imported models.</t>
            <t>Updated the "periodic-connnection" description statements to
              better describe behavior when connections are not closed
              gracefully.</t>
            <t>Updated text to better reference where certain examples come from
              (e.g., which Section in which draft).</t>
            <t>In the server model, commented out the "must 'pinned-ca-certs or 
              pinned-client-certs'" statement to reflect change made in the
              TLS draft whereby the trust anchors MAY be defined externally.</t>
            <t>Replaced the 'listen', 'initiate', and 'call-home' features
              with boolean expressions.</t>
          </list>
        </t>
      </section>
      <section title="12 to 13">
        <t>
          <list style="symbols">
            <t>Updated to reflect changes in trust-anchors drafts
              (e.g., s/trust-anchors/truststore/g + s/pinned.//)</t>
            <t>In ietf-restconf-server, Added 'http-listen' (not https-listen) choice, to support
              case when server is behind a TLS-terminator.</t>
            <t>Refactored server module to be more like other 'server' models.  If folks like it, will
              also apply to the client model, as well as to both the netconf client/server models.  Now
              the 'restconf-server-grouping' is just the RC-specific bits (i.e., the "demux" container
              minus the container), 'restconf-server-[listen|callhome]-stack-grouping' is the protocol
              stack for a single connection, and 'restconf-server-app-grouping' is effectively what
              was before (both listen+callhome for many inbound/outbound endpoints).</t>
          </list>
        </t>
      </section>
      <section title="13 to 14">
        <t>
          <list style="symbols">
            <t>Updated examples to reflect ietf-crypto-types change
              (e.g., identities --&gt; enumerations)</t>
            <t>Adjusting from change in TLS client model (removing the top-level
              'certificate' container).</t>
            <t>Added "external-endpoint" to the "http-listen" choice in ietf-restconf-server.</t>
          </list>
        </t>
      </section>
      <section title="14 to 15">
        <t>
          <list style="symbols">
            <t>Added missing "or https-listen" clause in a "must" expression.</t>
            <t>Refactored the client module similar to how the server module was refactored in -13.  Now
              the 'restconf-client-grouping' is just the RC-specific bits, the 
              'restconf-client-[initiate|listen]-stack-grouping' is the protocol
              stack for a single connection, and 'restconf-client-app-grouping' is effectively what
              was before (both listen+callhome for many inbound/outbound endpoints).</t>
          </list>
        </t>
      </section>
      <section title="15 to 16">
          <t>
            <list style="symbols">
              <t>Added refinement to make "cert-to-name/fingerprint" be mandatory false.</t>
              <t>Commented out refinement to "tls-server-grouping/client-authentication"
                until a better "must" expression is defined.</t>
              <t>Updated restconf-client example to reflect that http-client-grouping no
                longer has a "protocol-version" leaf.</t>
            </list>
          </t>
        </section>
        <section title="16 to 17">
          <t>
            <list style="symbols">
              <t>Updated examples to include the "*-key-format" nodes.</t>
              <t>Updated examples to remove the "required" nodes.</t>
            </list>
          </t>
        </section>
        <section title="17 to 18">
          <t>
            <list style="symbols">
              <t>Updated examples to reflect new "bag" addition to truststore.</t>
            </list>
          </t>
        </section>
    </section>

    <section title="Acknowledgements" numbered="no">
      <t>The authors would like to thank for following for
      lively discussions on list and in the halls (ordered
      by first name):
      Alan Luchuk,
      Andy Bierman,
      Balázs Kovács,
      Benoit Claise,
      Bert Wijnen
      David Lamparter,
      Juergen Schoenwaelder,
      Ladislav Lhotka,
      Martin Bjorklund,
      Mehmet Ersue,
      Phil Shafer,
      Radek Krejci,
      Ramkumar Dhanapal,
      Sean Turner,
      and
      Tom Petch.</t>
    </section>

  </back>
</rfc>

