<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt"?>
<!DOCTYPE rfc SYSTEM 'rfc2629.dtd'>
<?rfc toc="yes"?>
<?rfc compact="no"?>
<?rfc subcompact="no"?>
<?rfc symrefs="yes" ?>
<?rfc sortrefs="yes"?>
<?rfc iprnotified="no"?>
<?rfc strict="yes"?>
<rfc ipr="trust200902"  obsoletes="rfc7223" category="std"
    docName="draft-ietf-netmod-rfc7223bis-03" >
    <front>
    <title abbrev="YANG Interface Management">A YANG Data Model for Interface Management</title>

    <author initials="M" surname="Bjorklund" fullname='Martin Bjorklund' >
      <organization>Tail-f Systems</organization>
      <address>
        <email>mbj@tail-f.com</email>
      </address>
    </author>
	<date/>
    <abstract>
	<t>
This document defines a YANG data model for the management of network
interfaces. It is expected that interface-type-specific data models
augment the generic interfaces data model defined in this document.
The data model includes definitions for configuration and system state (status
information and counters for the collection of statistics).
	</t>
	<t>
The YANG model in this document conforms to the Network Management
Datastore Architecture defined in I-D.ietf-netmod-revised-datastores.
	</t>
	<t>
This document obsoletes RFC 7223.
	</t>
</abstract>
</front>
<middle>
<section title="Introduction" anchor="introduction">
    <t>
This document defines a YANG <xref target="RFC7950"/> data model for the
management of network interfaces. It is expected that
interface-type-specific data models augment the generic interfaces
data model defined in this document.
    </t>
    <t>
Network interfaces are central to the management of many Internet
protocols.  Thus, it is important to establish a common data model for
how interfaces are identified, configured, and monitored.
    </t>
    <t>
The data model includes configuration data and state data (status
information and counters for the collection of statistics).
    </t>
    <t>
This version of the interfaces data model supports the Network
Management Datastore Architecture (NMDA)
<xref target="I-D.ietf-netmod-revised-datastores"/>.
    </t>
<section title="Summary of Changes from RFC 7223" anchor="summary-of-changes-from-rfc-7223">
    <t>
The &quot;/interfaces&#8209;state&quot; subtree with &quot;config false&quot; data nodes is
deprecated.  All &quot;config false&quot; data nodes are now present in the
&quot;/interfaces&quot; subtree.
    </t>
    <t>
Servers that do not implement NMDA, or that wish to support clients
that do not implement NMDA, MAY implement the deprecated
&quot;/interfaces&#8209;state&quot; tree.
    </t>
</section>
<section title="Terminology" anchor="terminology">
    <t>
The keywords &quot;MUST&quot;, &quot;MUST NOT&quot;, &quot;REQUIRED&quot;, &quot;SHALL&quot;, &quot;SHALL NOT&quot;,
&quot;SHOULD&quot;, &quot;SHOULD NOT&quot;, &quot;RECOMMENDED&quot;, &quot;NOT RECOMMENDED&quot;, &quot;MAY&quot;, and
&quot;OPTIONAL&quot; in this document are to be interpreted as described in BCP
14, <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals,
as shown here.
    </t>
    <t>
The following terms are used within this document:
    </t>
<t>
 <list style="symbols">
 <t>
system-controlled interface: An interface is said to be
system-controlled if the system creates and deletes the interface
independently of what has been explicitly configured.  Examples are
interfaces representing physical hardware that appear and disappear
when hardware (e.g., a line card or hot-pluggable wireless
interface) is added or removed.  System-controlled interfaces may
also appear if a certain functionality is enabled (e.g., a loopback
interface might appear if the IP protocol stack is enabled).
 </t>
 <t>
user-controlled interface: An interface is said to be
user-controlled if the creation of the interface is controlled by
adding explicit interface configuration to the intended configuration
and the removal of the interface is controlled by removing
explicit interface configuration from the intended configuration.
Examples are VLAN interfaces configured on a
system-controlled Ethernet interface.
 </t>
 </list>
</t>
    <t>
The following terms are defined in
<xref target="I-D.ietf-netmod-revised-datastores"/> and are not redefined here:
    </t>
<t>
 <list style="symbols">
 <t>
client
 </t>
 <t>
server
 </t>
 <t>
configuration
 </t>
 <t>
system state
 </t>
 <t>
operational state
 </t>
 <t>
intended configuration
 </t>
 </list>
</t>
    <t>
The following terms are defined in <xref target="RFC7950"/> and are not redefined
here:
    </t>
<t>
 <list style="symbols">
 <t>
augment
 </t>
 <t>
data model
 </t>
 <t>
data node
 </t>
 <t>
presence container
 </t>
 </list>
</t>
</section>
<section title="Tree Diagrams" anchor="tree-diagrams">
    <t>
Tree diagrams used in this document follow the notation defined in
<xref target="I-D.ietf-netmod-yang-tree-diagrams"/>.
    </t>
</section>
</section>
<section title="Objectives" anchor="objectives">
    <t>
This section describes some of the design objectives for the model
presented in <xref target="module"/>.
    </t>
<t>
 <list style="symbols">
 <t>
It is recognized that existing implementations will have to map the
interface data model defined in this memo to their proprietary
native data model.  To facilitate such mappings, the data model
should be simple.
 </t>
 <t>
The data model should be suitable for new implementations to use
as is, without requiring a mapping to a different native model.
 </t>
 <t>
References to interfaces should be as simple as possible,
preferably by using a single leafref.
 </t>
 <t>
The mapping to ifIndex <xref target="RFC2863"/> used by the Simple Network
Management Protocol (SNMP) to identify interfaces
must be clear.
 </t>
 <t>
The model must support interface layering: both (1) simple layering,
where one interface is layered on top of exactly one other
interface, and (2) more complex scenarios, where one interface
results from the aggregation of N other interfaces or when N
interfaces are multiplexed over one other interface.
 </t>
 <t>
The data model should support the pre-provisioning of interface
configuration, i.e., it should be possible to configure an interface
whose physical interface hardware is not present on the device.  It
is recommended that devices that support dynamic addition and
removal of physical interfaces also support pre-provisioning.
 </t>
 <t>
The data model should support physical interfaces as well as
logical interfaces.
 </t>
 <t>
The data model should include read-only counters in order to gather
statistics for sent and received octets and packets, received
packets with errors, and packets that could not be sent due to
errors.
 </t>
 </list>
</t>
</section>
<section title="Interfaces Data Model" anchor="interfaces-data-model">
    <t>
This document defines the YANG module &quot;ietf&#8209;interfaces&quot;, which has the
following structure, excluding the deprecated &quot;/interfaces&#8209;state&quot;
subtree:
    </t>
	<figure>
	    <artwork><![CDATA[
module: ietf-interfaces
    +--rw interfaces
       +--rw interface* [name]
          +--rw name                        string
          +--rw description?                string
          +--rw type                        identityref
          +--rw enabled?                    boolean
          +--rw link-up-down-trap-enable?   enumeration {if-mib}?
          +--ro admin-status                enumeration {if-mib}?
          +--ro oper-status                 enumeration
          +--ro last-change?                yang:date-and-time
          +--ro if-index                    int32 {if-mib}?
          +--ro phys-address?               yang:phys-address
          +--ro higher-layer-if*            interface-ref
          +--ro lower-layer-if*             interface-ref
          +--ro speed?                      yang:gauge64
          +--ro statistics
             +--ro discontinuity-time    yang:date-and-time
             +--ro in-octets?            yang:counter64
             +--ro in-unicast-pkts?      yang:counter64
             +--ro in-broadcast-pkts?    yang:counter64
             +--ro in-multicast-pkts?    yang:counter64
             +--ro in-discards?          yang:counter32
             +--ro in-errors?            yang:counter32
             +--ro in-unknown-protos?    yang:counter32
             +--ro out-octets?           yang:counter64
             +--ro out-unicast-pkts?     yang:counter64
             +--ro out-broadcast-pkts?   yang:counter64
             +--ro out-multicast-pkts?   yang:counter64
             +--ro out-discards?         yang:counter32
             +--ro out-errors?           yang:counter32
	    ]]></artwork>
	</figure>
<section title="The Interface List" anchor="the-interface-list">
    <t>
The data model for interfaces presented in this document uses a flat
list of interfaces (&quot;/interfaces/interface&quot;).  Each interface in the
list is identified by its name.  Furthermore, each interface has a
mandatory &quot;type&quot; leaf.
    </t>
    <t>
The &quot;iana&#8209;if&#8209;type&quot; module <xref target="RFC7224"/> defines
YANG identities for the interface types in the IANA-maintained &quot;ifType
definitions&quot; registry.
    </t>
    <t>
It is expected that interface-type-specific data models augment the
interface list and possibly use the &quot;type&quot; leaf to make the
augmentation conditional.
    </t>
    <t>
As an example of such an interface-type-specific augmentation, consider
this YANG snippet.  For a more complete example, see <xref target="eth"/>.
    </t>
	<figure>
	    <artwork><![CDATA[
  import interfaces {
      prefix "if";
  }
  import iana-if-type {
    prefix ianaift;
  }

  augment "/if:interfaces/if:interface" {
      when "if:type = 'ianaift:ethernetCsmacd'";

      container ethernet {
          leaf duplex {
              ...
          }
      }
  }
	    ]]></artwork>
	</figure>
    <t>
For system-controlled interfaces, the &quot;name&quot; is the device-specific
name of the interface.
    </t>
    <t>
If the device supports arbitrarily named user-controlled interfaces,
then the server will advertise the &quot;arbitrary&#8209;names&quot; feature.  If the
server does not advertise this feature, the names of user-controlled
interfaces MUST match the device&apos;s naming scheme.  How a client can
learn the naming scheme of such devices is outside the scope of this
document.  See <xref target="router-restricted"/> and <xref target="router-arbitrary"/> for
examples.
    </t>
    <t>
When a system-controlled interface is created in the operational state
by the system, the system tries to apply the interface
configuration in the intended configuration with the same
name as the new interface.  If no such interface configuration is
found, or if the configured type does not match the real interface
type, the system creates the interface without applying explicit
configuration.
    </t>
    <t>
When a user-controlled interface is created, the configuration
determines the name of the interface.
    </t>
    <t>
Depending on the operating system and the physical attachment point to
which a network interface may be attached or removed, it may be
impossible for an implementation to provide predictable and consistent
names for system-controlled interfaces across insertion/removal cycles
as well as in anticipation of initial insertion.  The ability to
provide configurations for such interfaces is therefore dependent on
the implementation and cannot be assumed in all cases.
    </t>
</section>
<section title="Interface References" anchor="interface-references">
    <t>
An interface is identified by its name, which is unique within the
server.  This property is captured in the &quot;interface&#8209;ref&quot; typedef,
which other YANG modules SHOULD use when they need to reference an
interface.
    </t>
</section>
<section title="Interface Layering" anchor="interface-layering">
    <t>
There is no generic mechanism for how an interface is configured to be
layered on top of some other interface.  It is expected that
interface-type-specific models define their own data nodes for
interface layering by using &quot;interface&#8209;ref&quot; types to reference lower
layers.
    </t>
    <t>
Below is an example of a model with such nodes.  For a more complete
example, see <xref target="eth-bonding"/>.
    </t>
	<figure>
	    <artwork><![CDATA[
  import interfaces {
      prefix "if";
  }
  import iana-if-type {
    prefix ianaift;
  }

  augment "/if:interfaces/if:interface" {
      when "if:type = 'ianaift:ieee8023adLag'";

      leaf-list slave-if {
          type if:interface-ref;
          must "/if:interfaces/if:interface[if:name = current()]"
             + "/if:type = 'ianaift:ethernetCsmacd'" {
              description
                  "The type of a slave interface must be
                   'ethernetCsmacd'.";
          }
      }
      // other bonding config params, failover times, etc.
  }
	    ]]></artwork>
	</figure>
    <t>
While the interface layering is configured in interface-type-specific
models, two generic state data leaf-lists, &quot;higher&#8209;layer&#8209;if&quot; and
&quot;lower&#8209;layer&#8209;if&quot;, represent a read-only view of the interface layering
hierarchy.
    </t>
</section>
</section>
<section title="Relationship to the IF-MIB" anchor="relationship-to-the-if-mib">
    <t>
If the device implements the IF-MIB <xref target="RFC2863"/>, each entry in the
&quot;/interfaces/interface&quot; list in the operational state is
typically mapped to one ifEntry.  The &quot;if&#8209;index&quot; leaf MUST contain the
value of the corresponding ifEntry&apos;s ifIndex.
    </t>
    <t>
In most cases, the &quot;name&quot; of an &quot;/interfaces/interface&quot; entry is
mapped to ifName.  The IF-MIB allows two different ifEntries to have
the same ifName.  Devices that support this feature and also support
the data model defined in this document cannot have a 1-1 mapping
between the &quot;name&quot; leaf and ifName.
    </t>
    <t>
The configured &quot;description&quot; of an &quot;interface&quot; has traditionally been
mapped to ifAlias in some implementations.  This document allows this
mapping, but implementers should be aware of the differences in the
value space and persistence for these objects.  See the YANG module
definition of the leaf &quot;description&quot; in <xref target="module"/> for details.
    </t>
    <t>
The IF-MIB also defines the writable object ifPromiscuousMode.  Since
this object typically is not implemented as a configuration object by
SNMP agents, it is not mapped to the &quot;ietf&#8209;interfaces&quot; module.
    </t>
    <t>
The ifMtu object from the IF-MIB is not mapped to the &quot;ietf&#8209;interfaces&quot;
module.  It is expected that interface-type-specific YANG modules
provide interface-type-specific MTU leafs by augmenting the
&quot;ietf&#8209;interfaces&quot; model.
    </t>
    <t>
There are a number of counters in the IF-MIB that exist in two
versions: one with 32 bits and one with 64 bits.  The 64-bit versions
were added to support high-speed interfaces with a data rate greater
than 20,000,000 bits/second.  Today&apos;s implementations generally
support such high-speed interfaces, and hence only 64-bit counters are
provided in this data model.  Note that the server that implements this
module and an SNMP agent may differ in the time granularity in which
they provide access to the counters.  For example, it is common that
SNMP implementations cache counter values for some time.
    </t>
    <t>
The objects ifDescr and ifConnectorPresent from the IF-MIB are not
mapped to the &quot;ietf&#8209;interfaces&quot; module.
    </t>
    <t>
The following tables list the YANG data nodes with corresponding
objects in the IF-MIB.
    </t>
<?rfc compact="yes"?>
<texttable title="YANG Data Nodes and Related IF-MIB Objects">
<ttcol align='left'>YANG data node in /interfaces/interface</ttcol>
<ttcol align='left'>IF-MIB object</ttcol>
<c>name</c>
<c>ifName</c>
<c>type</c>
<c>ifType</c>
<c>description</c>
<c>ifAlias</c>
<c>admin-status</c>
<c>ifAdminStatus</c>
<c>oper-status</c>
<c>ifOperStatus</c>
<c>last-change</c>
<c>ifLastChange</c>
<c>if-index</c>
<c>ifIndex</c>
<c>link-up-down-trap-enable</c>
<c>ifLinkUpDownTrapEnable</c>
<c>phys-address</c>
<c>ifPhysAddress</c>
<c>higher-layer-if and lower-layer-if</c>
<c>ifStackTable</c>
<c>speed</c>
<c>ifSpeed and ifHighSpeed</c>
<c>discontinuity-time</c>
<c>ifCounterDiscontinuityTime</c>
<c>in-octets</c>
<c>ifHCInOctets</c>
<c>in-unicast-pkts</c>
<c>ifHCInUcastPkts</c>
<c>in-broadcast-pkts</c>
<c>ifHCInBroadcastPkts</c>
<c>in-multicast-pkts</c>
<c>ifHCInMulticastPkts</c>
<c>in-discards</c>
<c>ifInDiscards</c>
<c>in-errors</c>
<c>ifInErrors</c>
<c>in-unknown-protos</c>
<c>ifInUnknownProtos</c>
<c>out-octets</c>
<c>ifHCOutOctets</c>
<c>out-unicast-pkts</c>
<c>ifHCOutUcastPkts</c>
<c>out-broadcast-pkts</c>
<c>ifHCOutBroadcastPkts</c>
<c>out-multicast-pkts</c>
<c>ifHCOutMulticastPkts</c>
<c>out-discards</c>
<c>ifOutDiscards</c>
<c>out-errors</c>
<c>ifOutErrors</c>
</texttable>
<?rfc compact="no"?>
</section>
<section title="Interfaces YANG Module" anchor="module">
    <t>
This YANG module imports typedefs from <xref target="RFC6991"/>.
    </t>
<t>&lt;CODE BEGINS> file "ietf-interfaces@2018-01-09.yang"</t>
	<figure>
	    <artwork><![CDATA[
module ietf-interfaces {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-interfaces";
  prefix if;

  import ietf-yang-types {
    prefix yang;
  }

  organization
    "IETF NETMOD (Network Modeling) Working Group";

  contact
    "WG Web:   <http://tools.ietf.org/wg/netmod/>
     WG List:  <mailto:netmod@ietf.org>

     Editor:   Martin Bjorklund
               <mailto:mbj@tail-f.com>";

  description
    "This module contains a collection of YANG definitions for
     managing network interfaces.

     Copyright (c) 2018 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
     (http://trustee.ietf.org/license-info).

     This version of this YANG module is part of RFC XXXX; see
     the RFC itself for full legal notices.";

  revision 2018-01-09 {
    description
      "Updated to support NMDA.";
    reference
      "RFC XXXX: A YANG Data Model for Interface Management";
  }

  revision 2014-05-08 {
    description
      "Initial revision.";
    reference
      "RFC 7223: A YANG Data Model for Interface Management";
  }

  /*
   * Typedefs
   */

  typedef interface-ref {
    type leafref {
      path "/if:interfaces/if:interface/if:name";
    }
    description
      "This type is used by data models that need to reference
       interfaces.";
  }

  /*
   * Identities
   */

  identity interface-type {
    description
      "Base identity from which specific interface types are
       derived.";
  }

  /*
   * Features
   */

  feature arbitrary-names {
    description
      "This feature indicates that the device allows user-controlled
       interfaces to be named arbitrarily.";
  }
  feature pre-provisioning {
    description
      "This feature indicates that the device supports
       pre-provisioning of interface configuration, i.e., it is
       possible to configure an interface whose physical interface
       hardware is not present on the device.";
  }
  feature if-mib {
    description
      "This feature indicates that the device implements
       the IF-MIB.";
    reference
      "RFC 2863: The Interfaces Group MIB";
  }

  /*
   * Data nodes
   */

  container interfaces {
    description
      "Interface parameters.";

    list interface {
      key "name";

      description
        "The list of interfaces on the device.

         The status of an interface is available in this list in the
         operational state.  If the configuration of a
         system-controlled interface cannot be used by the system
         (e.g., the interface hardware present does not match the
         interface type), then the configuration is not applied to
         the system-controlled interface shown in the operational
         state.  If the configuration of a user-controlled interface
         cannot be used by the system, the configured interface is
         not instantiated in the operational state.

         System-controlled interfaces created by the system are
         always present in this list in the operational state,
         whether they are configured or not.";

     leaf name {
        type string;
        description
          "The name of the interface.

           A device MAY restrict the allowed values for this leaf,
           possibly depending on the type of the interface.
           For system-controlled interfaces, this leaf is the
           device-specific name of the interface.

           If a client tries to create configuration for a
           system-controlled interface that is not present in the
           operational state, the server MAY reject the request if
           the implementation does not support pre-provisioning of
           interfaces or if the name refers to an interface that can
           never exist in the system.  A NETCONF server MUST reply
           with an rpc-error with the error-tag 'invalid-value' in
           this case.

           If the device supports pre-provisioning of interface
           configuration, the 'pre-provisioning' feature is
           advertised.

           If the device allows arbitrarily named user-controlled
           interfaces, the 'arbitrary-names' feature is advertised.

           When a configured user-controlled interface is created by
           the system, it is instantiated with the same name in the
           operational state.

           A server implementation MAY map this leaf to the ifName
           MIB object.  Such an implementation needs to use some
           mechanism to handle the differences in size and characters
           allowed between this leaf and ifName.  The definition of
           such a mechanism is outside the scope of this document.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifName";
      }

      leaf description {
        type string;
        description
          "A textual description of the interface.

           A server implementation MAY map this leaf to the ifAlias
           MIB object.  Such an implementation needs to use some
           mechanism to handle the differences in size and characters
           allowed between this leaf and ifAlias.  The definition of
           such a mechanism is outside the scope of this document.

           Since ifAlias is defined to be stored in non-volatile
           storage, the MIB implementation MUST map ifAlias to the
           value of 'description' in the persistently stored
           configuration.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifAlias";
      }

      leaf type {
        type identityref {
          base interface-type;
        }
        mandatory true;
        description
          "The type of the interface.

           When an interface entry is created, a server MAY
           initialize the type leaf with a valid value, e.g., if it
           is possible to derive the type from the name of the
           interface.

           If a client tries to set the type of an interface to a
           value that can never be used by the system, e.g., if the
           type is not supported or if the type does not match the
           name of the interface, the server MUST reject the request.
           A NETCONF server MUST reply with an rpc-error with the
           error-tag 'invalid-value' in this case.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifType";
      }

      leaf enabled {
        type boolean;
        default "true";
        description
          "This leaf contains the configured, desired state of the
           interface.

           Systems that implement the IF-MIB use the value of this
           leaf in the intended configuration to set
           IF-MIB.ifAdminStatus to 'up' or 'down' after an ifEntry
           has been initialized, as described in RFC 2863.

           Changes in this leaf in the intended configuration are
           reflected in ifAdminStatus.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifAdminStatus";
      }

      leaf link-up-down-trap-enable {
        if-feature if-mib;
        type enumeration {
          enum enabled {
            value 1;
            description
              "The device will generate linkUp/linkDown SNMP
               notifications for this interface.";
          }
          enum disabled {
            value 2;
            description
              "The device will not generate linkUp/linkDown SNMP
               notifications for this interface.";
          }
        }
        description
          "Controls whether linkUp/linkDown SNMP notifications
           should be generated for this interface.

           If this node is not configured, the value 'enabled' is
           operationally used by the server for interfaces that do
           not operate on top of any other interface (i.e., there are
           no 'lower-layer-if' entries), and 'disabled' otherwise.";
        reference
          "RFC 2863: The Interfaces Group MIB -
                     ifLinkUpDownTrapEnable";
      }

      leaf admin-status {
        if-feature if-mib;
        type enumeration {
          enum up {
            value 1;
            description
              "Ready to pass packets.";
          }
          enum down {
            value 2;
            description
              "Not ready to pass packets and not in some test mode.";
          }
          enum testing {
            value 3;
            description
              "In some test mode.";
          }
        }
        config false;
        mandatory true;
        description
          "The desired state of the interface.

           This leaf has the same read semantics as ifAdminStatus.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifAdminStatus";
      }

      leaf oper-status {
        type enumeration {
          enum up {
            value 1;
            description
              "Ready to pass packets.";
          }
          enum down {
            value 2;
            description
              "The interface does not pass any packets.";
          }
          enum testing {
            value 3;
            description
              "In some test mode.  No operational packets can
               be passed.";
          }
          enum unknown {
            value 4;
            description
              "Status cannot be determined for some reason.";
          }
          enum dormant {
            value 5;
            description
              "Waiting for some external event.";
          }
          enum not-present {
            value 6;
            description
              "Some component (typically hardware) is missing.";
          }
          enum lower-layer-down {
            value 7;
            description
              "Down due to state of lower-layer interface(s).";
          }
        }
        config false;
        mandatory true;
        description
          "The current operational state of the interface.

           This leaf has the same semantics as ifOperStatus.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifOperStatus";
      }

      leaf last-change {
        type yang:date-and-time;
        config false;
        description
          "The time the interface entered its current operational
           state.  If the current state was entered prior to the
           last re-initialization of the local network management
           subsystem, then this node is not present.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifLastChange";
      }

      leaf if-index {
        if-feature if-mib;
        type int32 {
          range "1..2147483647";
        }
        config false;
        mandatory true;
        description
          "The ifIndex value for the ifEntry represented by this
           interface.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifIndex";
      }

      leaf phys-address {
        type yang:phys-address;
        config false;
        description
          "The interface's address at its protocol sub-layer.  For
           example, for an 802.x interface, this object normally
           contains a Media Access Control (MAC) address.  The
           interface's media-specific modules must define the bit
           and byte ordering and the format of the value of this
           object.  For interfaces that do not have such an address
           (e.g., a serial line), this node is not present.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifPhysAddress";
      }

      leaf-list higher-layer-if {
        type interface-ref;
        config false;
        description
          "A list of references to interfaces layered on top of this
           interface.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifStackTable";
      }

      leaf-list lower-layer-if {
        type interface-ref;
        config false;
        description
          "A list of references to interfaces layered underneath this
           interface.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifStackTable";
      }

      leaf speed {
        type yang:gauge64;
        units "bits/second";
        config false;
        description
            "An estimate of the interface's current bandwidth in bits
             per second.  For interfaces that do not vary in
             bandwidth or for those where no accurate estimation can
             be made, this node should contain the nominal bandwidth.
             For interfaces that have no concept of bandwidth, this
             node is not present.";
        reference
          "RFC 2863: The Interfaces Group MIB -
                     ifSpeed, ifHighSpeed";
      }

      container statistics {
        config false;
        description
          "A collection of interface-related statistics objects.";

        leaf discontinuity-time {
          type yang:date-and-time;
          mandatory true;
          description
            "The time on the most recent occasion at which any one or
             more of this interface's counters suffered a
             discontinuity.  If no such discontinuities have occurred
             since the last re-initialization of the local management
             subsystem, then this node contains the time the local
             management subsystem re-initialized itself.";
        }

        leaf in-octets {
          type yang:counter64;
          description
            "The total number of octets received on the interface,
             including framing characters.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifHCInOctets";
        }

        leaf in-unicast-pkts {
          type yang:counter64;
          description
            "The number of packets, delivered by this sub-layer to a
             higher (sub-)layer, that were not addressed to a
             multicast or broadcast address at this sub-layer.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifHCInUcastPkts";
        }

        leaf in-broadcast-pkts {
          type yang:counter64;
          description
            "The number of packets, delivered by this sub-layer to a
             higher (sub-)layer, that were addressed to a broadcast
             address at this sub-layer.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB -
                       ifHCInBroadcastPkts";
        }

        leaf in-multicast-pkts {
          type yang:counter64;
          description
            "The number of packets, delivered by this sub-layer to a
             higher (sub-)layer, that were addressed to a multicast
             address at this sub-layer.  For a MAC-layer protocol,
             this includes both Group and Functional addresses.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB -
                       ifHCInMulticastPkts";
        }

        leaf in-discards {
          type yang:counter32;
          description
            "The number of inbound packets that were chosen to be
             discarded even though no errors had been detected to
             prevent their being deliverable to a higher-layer
             protocol.  One possible reason for discarding such a
             packet could be to free up buffer space.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifInDiscards";
        }

        leaf in-errors {
          type yang:counter32;
          description
            "For packet-oriented interfaces, the number of inbound
             packets that contained errors preventing them from being
             deliverable to a higher-layer protocol.  For character-
             oriented or fixed-length interfaces, the number of
             inbound transmission units that contained errors
             preventing them from being deliverable to a higher-layer
             protocol.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifInErrors";
        }

        leaf in-unknown-protos {
          type yang:counter32;
          description
            "For packet-oriented interfaces, the number of packets
             received via the interface that were discarded because
             of an unknown or unsupported protocol.  For
             character-oriented or fixed-length interfaces that
             support protocol multiplexing, the number of
             transmission units received via the interface that were
             discarded because of an unknown or unsupported protocol.
             For any interface that does not support protocol
             multiplexing, this counter is not present.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifInUnknownProtos";
        }


        leaf out-octets {
          type yang:counter64;
          description
            "The total number of octets transmitted out of the
             interface, including framing characters.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifHCOutOctets";
        }

        leaf out-unicast-pkts {
          type yang:counter64;
          description
            "The total number of packets that higher-level protocols
             requested be transmitted, and that were not addressed
             to a multicast or broadcast address at this sub-layer,
             including those that were discarded or not sent.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifHCOutUcastPkts";
        }

        leaf out-broadcast-pkts {
          type yang:counter64;
          description
            "The total number of packets that higher-level protocols
             requested be transmitted, and that were addressed to a
             broadcast address at this sub-layer, including those
             that were discarded or not sent.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB -
                       ifHCOutBroadcastPkts";
        }

        leaf out-multicast-pkts {
          type yang:counter64;
          description
            "The total number of packets that higher-level protocols
             requested be transmitted, and that were addressed to a
             multicast address at this sub-layer, including those
             that were discarded or not sent.  For a MAC-layer
             protocol, this includes both Group and Functional
             addresses.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB -
                       ifHCOutMulticastPkts";
        }

        leaf out-discards {
          type yang:counter32;
          description
            "The number of outbound packets that were chosen to be
             discarded even though no errors had been detected to
             prevent their being transmitted.  One possible reason
             for discarding such a packet could be to free up buffer
             space.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifOutDiscards";
        }

        leaf out-errors {
          type yang:counter32;
          description
            "For packet-oriented interfaces, the number of outbound
             packets that could not be transmitted because of errors.
             For character-oriented or fixed-length interfaces, the
             number of outbound transmission units that could not be
             transmitted because of errors.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifOutErrors";
        }
      }

    }
  }

  /*
   * Legacy typedefs
   */

  typedef interface-state-ref {
    type leafref {
      path "/if:interfaces-state/if:interface/if:name";
    }
    status deprecated;
    description
      "This type is used by data models that need to reference
       the operationally present interfaces.";
  }

  /*
   * Legacy operational state data nodes
   */

  container interfaces-state {
    config false;
    status deprecated;
    description
      "Data nodes for the operational state of interfaces.";

    list interface {
      key "name";
      status deprecated;

      description
        "The list of interfaces on the device.

         System-controlled interfaces created by the system are
         always present in this list, whether they are configured or
         not.";

      leaf name {
        type string;
        status deprecated;
        description
          "The name of the interface.

           A server implementation MAY map this leaf to the ifName
           MIB object.  Such an implementation needs to use some
           mechanism to handle the differences in size and characters
           allowed between this leaf and ifName.  The definition of
           such a mechanism is outside the scope of this document.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifName";
      }

      leaf type {
        type identityref {
          base interface-type;
        }
        mandatory true;
        status deprecated;
        description
          "The type of the interface.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifType";
      }

      leaf admin-status {
        if-feature if-mib;
        type enumeration {
          enum up {
            value 1;
            description
              "Ready to pass packets.";
          }
          enum down {
            value 2;
            description
              "Not ready to pass packets and not in some test mode.";
          }
          enum testing {
            value 3;
            description
              "In some test mode.";
          }
        }
        mandatory true;
        status deprecated;
        description
          "The desired state of the interface.

           This leaf has the same read semantics as ifAdminStatus.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifAdminStatus";
      }

      leaf oper-status {
        type enumeration {
          enum up {
            value 1;
            description
              "Ready to pass packets.";
          }
          enum down {
            value 2;
            description
              "The interface does not pass any packets.";
          }
          enum testing {
            value 3;
            description
              "In some test mode.  No operational packets can
               be passed.";
          }
          enum unknown {
            value 4;
            description
              "Status cannot be determined for some reason.";
          }
          enum dormant {
            value 5;
            description
              "Waiting for some external event.";
          }
          enum not-present {
            value 6;
            description
              "Some component (typically hardware) is missing.";
          }
          enum lower-layer-down {
            value 7;
            description
              "Down due to state of lower-layer interface(s).";
          }
        }
        mandatory true;
        status deprecated;
        description
          "The current operational state of the interface.

           This leaf has the same semantics as ifOperStatus.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifOperStatus";
      }

      leaf last-change {
        type yang:date-and-time;
        status deprecated;
        description
          "The time the interface entered its current operational
           state.  If the current state was entered prior to the
           last re-initialization of the local network management
           subsystem, then this node is not present.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifLastChange";
      }

      leaf if-index {
        if-feature if-mib;
        type int32 {
          range "1..2147483647";
        }
        mandatory true;
        status deprecated;
        description
          "The ifIndex value for the ifEntry represented by this
           interface.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifIndex";
      }

      leaf phys-address {
        type yang:phys-address;
        status deprecated;
        description
          "The interface's address at its protocol sub-layer.  For
           example, for an 802.x interface, this object normally
           contains a Media Access Control (MAC) address.  The
           interface's media-specific modules must define the bit
           and byte ordering and the format of the value of this
           object.  For interfaces that do not have such an address
           (e.g., a serial line), this node is not present.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifPhysAddress";
      }

      leaf-list higher-layer-if {
        type interface-state-ref;
        status deprecated;
        description
          "A list of references to interfaces layered on top of this
           interface.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifStackTable";
      }

      leaf-list lower-layer-if {
        type interface-state-ref;
        status deprecated;
        description
          "A list of references to interfaces layered underneath this
           interface.";
        reference
          "RFC 2863: The Interfaces Group MIB - ifStackTable";
      }

      leaf speed {
        type yang:gauge64;
        units "bits/second";
        status deprecated;
        description
            "An estimate of the interface's current bandwidth in bits
             per second.  For interfaces that do not vary in
             bandwidth or for those where no accurate estimation can
             be made, this node should contain the nominal bandwidth.
             For interfaces that have no concept of bandwidth, this
             node is not present.";
        reference
          "RFC 2863: The Interfaces Group MIB -
                     ifSpeed, ifHighSpeed";
      }

      container statistics {
        status deprecated;
        description
          "A collection of interface-related statistics objects.";

        leaf discontinuity-time {
          type yang:date-and-time;
          mandatory true;
          status deprecated;
          description
            "The time on the most recent occasion at which any one or
             more of this interface's counters suffered a
             discontinuity.  If no such discontinuities have occurred
             since the last re-initialization of the local management
             subsystem, then this node contains the time the local
             management subsystem re-initialized itself.";
        }

        leaf in-octets {
          type yang:counter64;
          status deprecated;
          description
            "The total number of octets received on the interface,
             including framing characters.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifHCInOctets";
        }

        leaf in-unicast-pkts {
          type yang:counter64;
          status deprecated;
          description
            "The number of packets, delivered by this sub-layer to a
             higher (sub-)layer, that were not addressed to a
             multicast or broadcast address at this sub-layer.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifHCInUcastPkts";
        }

        leaf in-broadcast-pkts {
          type yang:counter64;
          status deprecated;
          description
            "The number of packets, delivered by this sub-layer to a
             higher (sub-)layer, that were addressed to a broadcast
             address at this sub-layer.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB -
                       ifHCInBroadcastPkts";
        }

        leaf in-multicast-pkts {
          type yang:counter64;
          status deprecated;
          description
            "The number of packets, delivered by this sub-layer to a
             higher (sub-)layer, that were addressed to a multicast
             address at this sub-layer.  For a MAC-layer protocol,
             this includes both Group and Functional addresses.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB -
                       ifHCInMulticastPkts";
        }

        leaf in-discards {
          type yang:counter32;
          status deprecated;
          description
            "The number of inbound packets that were chosen to be
             discarded even though no errors had been detected to
             prevent their being deliverable to a higher-layer
             protocol.  One possible reason for discarding such a
             packet could be to free up buffer space.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifInDiscards";
        }

        leaf in-errors {
          type yang:counter32;
          status deprecated;
          description
            "For packet-oriented interfaces, the number of inbound
             packets that contained errors preventing them from being
             deliverable to a higher-layer protocol.  For character-
             oriented or fixed-length interfaces, the number of
             inbound transmission units that contained errors
             preventing them from being deliverable to a higher-layer
             protocol.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifInErrors";
        }

        leaf in-unknown-protos {
          type yang:counter32;
          status deprecated;
          description
            "For packet-oriented interfaces, the number of packets
             received via the interface that were discarded because
             of an unknown or unsupported protocol.  For
             character-oriented or fixed-length interfaces that
             support protocol multiplexing, the number of
             transmission units received via the interface that were
             discarded because of an unknown or unsupported protocol.
             For any interface that does not support protocol
             multiplexing, this counter is not present.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifInUnknownProtos";
        }


        leaf out-octets {
          type yang:counter64;
          status deprecated;
          description
            "The total number of octets transmitted out of the
             interface, including framing characters.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifHCOutOctets";
        }

        leaf out-unicast-pkts {
          type yang:counter64;
          status deprecated;
          description
            "The total number of packets that higher-level protocols
             requested be transmitted, and that were not addressed
             to a multicast or broadcast address at this sub-layer,
             including those that were discarded or not sent.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifHCOutUcastPkts";
        }

        leaf out-broadcast-pkts {
          type yang:counter64;
          status deprecated;
          description
            "The total number of packets that higher-level protocols
             requested be transmitted, and that were addressed to a
             broadcast address at this sub-layer, including those
             that were discarded or not sent.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB -
                       ifHCOutBroadcastPkts";
        }

        leaf out-multicast-pkts {
          type yang:counter64;
          status deprecated;
          description
            "The total number of packets that higher-level protocols
             requested be transmitted, and that were addressed to a
             multicast address at this sub-layer, including those
             that were discarded or not sent.  For a MAC-layer
             protocol, this includes both Group and Functional
             addresses.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB -
                       ifHCOutMulticastPkts";
        }

        leaf out-discards {
          type yang:counter32;
          status deprecated;
          description
            "The number of outbound packets that were chosen to be
             discarded even though no errors had been detected to
             prevent their being transmitted.  One possible reason
             for discarding such a packet could be to free up buffer
             space.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifOutDiscards";
        }

        leaf out-errors {
          type yang:counter32;
          status deprecated;
          description
            "For packet-oriented interfaces, the number of outbound
             packets that could not be transmitted because of errors.
             For character-oriented or fixed-length interfaces, the
             number of outbound transmission units that could not be
             transmitted because of errors.

             Discontinuities in the value of this counter can occur
             at re-initialization of the management system, and at
             other times as indicated by the value of
             'discontinuity-time'.";
          reference
            "RFC 2863: The Interfaces Group MIB - ifOutErrors";
        }
      }
    }
  }
}
	    ]]></artwork>
	</figure>
<t>&lt;CODE ENDS></t>
</section>
<section title="IANA Considerations" anchor="iana">
    <t>
This document registers a URI in the &quot;IETF XML Registry&quot; <xref target="RFC3688"/>.
Following the format in RFC 3688, the following registration has been
made.
    </t>
	<figure>
	    <artwork><![CDATA[
  URI: urn:ietf:params:xml:ns:yang:ietf-interfaces

  Registrant Contact: The IESG.

  XML: N/A, the requested URI is an XML namespace.
	    ]]></artwork>
	</figure>
    <t>
This document registers a YANG module in the &quot;YANG Module Names&quot;
registry <xref target="RFC6020"/>.
    </t>
	<figure>
	    <artwork><![CDATA[
  name:         ietf-interfaces
  namespace:    urn:ietf:params:xml:ns:yang:ietf-interfaces
  prefix:       if
  reference:    RFC XXXX
	    ]]></artwork>
	</figure>
</section>
<section title="Security Considerations" anchor="security-considerations">
    <t>
The YANG module specified in this document defines a schema for data
that is designed to be accessed via network management protocols such
as NETCONF <xref target="RFC6241"/> or RESTCONF <xref target="RFC8040"/>. The lowest NETCONF layer
is the secure transport layer, and the mandatory-to-implement secure
transport is Secure Shell (SSH) <xref target="RFC6242"/>. The lowest RESTCONF layer
is HTTPS, and the mandatory-to-implement secure transport is TLS
<xref target="RFC5246"/>.
    </t>
    <t>
The NETCONF access control model <xref target="RFC6536"/> provides the means to
restrict access for particular NETCONF or RESTCONF users to a
preconfigured subset of all available NETCONF or RESTCONF protocol
operations and content.
    </t>
    <t>
There are a number of data nodes defined in the YANG module
which are writable/creatable/deletable (i.e., config true,
which is the default).  These data nodes may be considered sensitive
or vulnerable in some network environments.  Write operations (e.g.,
&lt;edit&#8209;config&gt;) 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:
    </t>
<t>
 <list style="hanging">
	<t hangText="/interfaces/interface:">
This list specifies the configured interfaces on a device.
Unauthorized access to this list could cause the device to ignore
packets it should receive and process.
 </t>
	<t hangText="/interfaces/interface/enabled:">
This leaf controls whether an interface is enabled or not.  Unauthorized
access to this leaf could cause the device to ignore packets it should
receive and process.
 </t>
 </list>
</t>
</section>
<section title="Acknowledgments" anchor="acknowledgments">
    <t>
The author wishes to thank Alexander Clemm, Per Hedeland, Ladislav
Lhotka, and Juergen Schoenwaelder for their helpful comments.
    </t>
</section>
</middle>
<back>
<references title="Normative References">
<reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author initials="S." surname="Bradner" fullname="S. Bradner">
      <organization/>
    </author>
    <date year="1997" month="March"/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
  <seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>
<reference anchor="RFC2863" target="https://www.rfc-editor.org/info/rfc2863">
  <front>
    <title>The Interfaces Group MIB</title>
    <author initials="K." surname="McCloghrie" fullname="K. McCloghrie">
      <organization/>
    </author>
    <author initials="F." surname="Kastenholz" fullname="F. Kastenholz">
      <organization/>
    </author>
    <date year="2000" month="June"/>
    <abstract>
      <t>This memo discusses the 'interfaces' group of MIB-II, especially the experience gained from the definition of numerous media-specific MIB modules for use in conjunction with the 'interfaces' group for managing various sub-layers beneath the internetwork-layer.  It specifies clarifications to, and extensions of, the architectural issues within the MIB-II model of the 'interfaces' group.  [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2863"/>
  <seriesInfo name="DOI" value="10.17487/RFC2863"/>
</reference>
<reference anchor="RFC3688" target="https://www.rfc-editor.org/info/rfc3688">
  <front>
    <title>The IETF XML Registry</title>
    <author initials="M." surname="Mealling" fullname="M. Mealling">
      <organization/>
    </author>
    <date year="2004" month="January"/>
    <abstract>
      <t>This document describes an IANA maintained registry for IETF standards which use Extensible Markup Language (XML) related items such as Namespaces, Document Type Declarations (DTDs), Schemas, and Resource Description Framework (RDF) Schemas.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="81"/>
  <seriesInfo name="RFC" value="3688"/>
  <seriesInfo name="DOI" value="10.17487/RFC3688"/>
</reference>
<reference anchor="RFC5246" target="https://www.rfc-editor.org/info/rfc5246">
  <front>
    <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
    <author initials="T." surname="Dierks" fullname="T. Dierks">
      <organization/>
    </author>
    <author initials="E." surname="Rescorla" fullname="E. Rescorla">
      <organization/>
    </author>
    <date year="2008" month="August"/>
    <abstract>
      <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="5246"/>
  <seriesInfo name="DOI" value="10.17487/RFC5246"/>
</reference>
<reference anchor="RFC6020" target="https://www.rfc-editor.org/info/rfc6020">
  <front>
    <title>YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)</title>
    <author initials="M." surname="Bjorklund" fullname="M. Bjorklund" role="editor">
      <organization/>
    </author>
    <date year="2010" month="October"/>
    <abstract>
      <t>YANG is a data modeling language used to model configuration and state data manipulated by the Network Configuration Protocol (NETCONF), NETCONF remote procedure calls, and NETCONF notifications. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6020"/>
  <seriesInfo name="DOI" value="10.17487/RFC6020"/>
</reference>
<reference anchor="RFC6241" target="https://www.rfc-editor.org/info/rfc6241">
  <front>
    <title>Network Configuration Protocol (NETCONF)</title>
    <author initials="R." surname="Enns" fullname="R. Enns" role="editor">
      <organization/>
    </author>
    <author initials="M." surname="Bjorklund" fullname="M. Bjorklund" role="editor">
      <organization/>
    </author>
    <author initials="J." surname="Schoenwaelder" fullname="J. Schoenwaelder" role="editor">
      <organization/>
    </author>
    <author initials="A." surname="Bierman" fullname="A. Bierman" role="editor">
      <organization/>
    </author>
    <date year="2011" month="June"/>
    <abstract>
      <t>The Network Configuration Protocol (NETCONF) defined in this document provides mechanisms to install, manipulate, and delete the configuration of network devices.  It uses an Extensible Markup Language (XML)-based data encoding for the configuration data as well as the protocol messages.  The NETCONF protocol operations are realized as remote procedure calls (RPCs).  This document obsoletes RFC 4741.  [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6241"/>
  <seriesInfo name="DOI" value="10.17487/RFC6241"/>
</reference>
<reference anchor="RFC6242" target="https://www.rfc-editor.org/info/rfc6242">
  <front>
    <title>Using the NETCONF Protocol over Secure Shell (SSH)</title>
    <author initials="M." surname="Wasserman" fullname="M. Wasserman">
      <organization/>
    </author>
    <date year="2011" month="June"/>
    <abstract>
      <t>This document describes a method for invoking and running the Network Configuration Protocol (NETCONF) within a Secure Shell (SSH) session as an SSH subsystem.  This document obsoletes RFC 4742.  [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6242"/>
  <seriesInfo name="DOI" value="10.17487/RFC6242"/>
</reference>
<reference anchor="RFC6536" target="https://www.rfc-editor.org/info/rfc6536">
  <front>
    <title>Network Configuration Protocol (NETCONF) Access Control Model</title>
    <author initials="A." surname="Bierman" fullname="A. Bierman">
      <organization/>
    </author>
    <author initials="M." surname="Bjorklund" fullname="M. Bjorklund">
      <organization/>
    </author>
    <date year="2012" month="March"/>
    <abstract>
      <t>The standardization of network configuration interfaces for use with the Network Configuration Protocol (NETCONF) requires a structured and secure operating environment that promotes human usability and multi-vendor interoperability.  There is a need for standard mechanisms to restrict NETCONF protocol access for particular users to a pre-configured subset of all available NETCONF protocol operations and content.  This document defines such an access control model.  [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6536"/>
  <seriesInfo name="DOI" value="10.17487/RFC6536"/>
</reference>
<reference anchor="RFC6991" target="https://www.rfc-editor.org/info/rfc6991">
  <front>
    <title>Common YANG Data Types</title>
    <author initials="J." surname="Schoenwaelder" fullname="J. Schoenwaelder" role="editor">
      <organization/>
    </author>
    <date year="2013" month="July"/>
    <abstract>
      <t>This document introduces a collection of common data types to be used with the YANG data modeling language.  This document obsoletes RFC 6021.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6991"/>
  <seriesInfo name="DOI" value="10.17487/RFC6991"/>
</reference>
<reference anchor="RFC7950" target="https://www.rfc-editor.org/info/rfc7950">
  <front>
    <title>The YANG 1.1 Data Modeling Language</title>
    <author initials="M." surname="Bjorklund" fullname="M. Bjorklund" role="editor">
      <organization/>
    </author>
    <date year="2016" month="August"/>
    <abstract>
      <t>YANG is a data modeling language used to model configuration data, state data, Remote Procedure Calls, and notifications for network management protocols.  This document describes the syntax and semantics of version 1.1 of the YANG language.  YANG version 1.1 is a maintenance release of the YANG language, addressing ambiguities and defects in the original specification.  There are a small number of backward incompatibilities from YANG version 1.  This document also specifies the YANG mappings to the Network Configuration Protocol (NETCONF).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7950"/>
  <seriesInfo name="DOI" value="10.17487/RFC7950"/>
</reference>
<reference anchor="RFC8040" target="https://www.rfc-editor.org/info/rfc8040">
  <front>
    <title>RESTCONF Protocol</title>
    <author initials="A." surname="Bierman" fullname="A. Bierman">
      <organization/>
    </author>
    <author initials="M." surname="Bjorklund" fullname="M. Bjorklund">
      <organization/>
    </author>
    <author initials="K." surname="Watsen" fullname="K. Watsen">
      <organization/>
    </author>
    <date year="2017" month="January"/>
    <abstract>
      <t>This document describes an HTTP-based protocol that provides a programmatic interface for accessing data defined in YANG, using the datastore concepts defined in the Network Configuration Protocol (NETCONF).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8040"/>
  <seriesInfo name="DOI" value="10.17487/RFC8040"/>
</reference>
<reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author initials="B." surname="Leiba" fullname="B. Leiba">
      <organization/>
    </author>
    <date year="2017" month="May"/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="8174"/>
  <seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>
<reference anchor="I-D.ietf-netmod-revised-datastores">
  <front>
    <title>Network Management Datastore Architecture</title>
    <author initials="M" surname="Bjorklund" fullname="Martin Bjorklund">
      <organization/>
    </author>
    <author initials="J" surname="Schoenwaelder" fullname="Juergen Schoenwaelder">
      <organization/>
    </author>
    <author initials="P" surname="Shafer" fullname="Philip Shafer">
      <organization/>
    </author>
    <author initials="K" surname="Watsen" fullname="Kent Watsen">
      <organization/>
    </author>
    <author initials="R" surname="Wilton" fullname="Robert Wilton">
      <organization/>
    </author>
    <date month="November" day="29" year="2017"/>
    <abstract>
      <t>Datastores are a fundamental concept binding the data models written in the YANG data modeling language to network management protocols such as NETCONF and RESTCONF.  This document defines an architectural framework for datastores based on the experience gained with the initial simpler model, addressing requirements that were not well supported in the initial model.</t>
    </abstract>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-netmod-revised-datastores-07"/>
  <format type="TXT" target="http://www.ietf.org/internet-drafts/draft-ietf-netmod-revised-datastores-07.txt"/>
</reference>
</references>
<references title="Informative References">
<reference anchor="RFC7224" target="https://www.rfc-editor.org/info/rfc7224">
  <front>
    <title>IANA Interface Type YANG Module</title>
    <author initials="M." surname="Bjorklund" fullname="M. Bjorklund">
      <organization/>
    </author>
    <date year="2014" month="May"/>
    <abstract>
      <t>This document defines the initial version of the iana-if-type YANG module.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7224"/>
  <seriesInfo name="DOI" value="10.17487/RFC7224"/>
</reference>
<reference anchor="I-D.ietf-netmod-yang-tree-diagrams">
  <front>
    <title>YANG Tree Diagrams</title>
    <author initials="M" surname="Bjorklund" fullname="Martin Bjorklund">
      <organization/>
    </author>
    <author initials="L" surname="Berger" fullname="Lou Berger">
      <organization/>
    </author>
    <date month="October" day="25" year="2017"/>
    <abstract>
      <t>This document captures the current syntax used in YANG module Tree Diagrams.  The purpose of the document is to provide a single location for this definition.  This syntax may be updated from time to time based on the evolution of the YANG language.</t>
    </abstract>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-netmod-yang-tree-diagrams-02"/>
  <format type="TXT" target="http://www.ietf.org/internet-drafts/draft-ietf-netmod-yang-tree-diagrams-02.txt"/>
</reference>
</references>
<section title="Example: Ethernet Interface Module" anchor="eth">
    <t>
This section gives a simple example of how an Ethernet interface
module could be defined.  It demonstrates how media-specific
configuration parameters can be conditionally augmented to the generic
interface list.  It also shows how operational state parameters can be
conditionally augmented to the operational interface list.  The
example is not intended as a complete module for Ethernet
configuration.
    </t>
	<figure>
	    <artwork><![CDATA[
module example-ethernet {
  namespace "http://example.com/ethernet";
  prefix "eth";

  import ietf-interfaces {
    prefix if;
  }
  import iana-if-type {
    prefix ianaift;
  }

  // configuration and state parameters for Ethernet interfaces
  augment "/if:interfaces/if:interface" {
    when "if:type = 'ianaift:ethernetCsmacd'";

    container ethernet {
      container transmission {
        choice transmission-params {
          case auto {
            leaf auto-negotiate {
              type empty;
            }
          }
          case manual {
            container manual {
              leaf duplex {
                type enumeration {
                  enum "half";
                  enum "full";
                }
              }
              leaf speed {
                type enumeration {
                  enum "10Mb";
                  enum "100Mb";
                  enum "1Gb";
                  enum "10Gb";
                }
              }
            }
          }
        }
        leaf duplex {
          type enumeration {
            enum "half";
            enum "full";
          }
          config false;
        }
      }
      // other Ethernet-specific params...
    }
  }
}
	    ]]></artwork>
	</figure>
</section>
<section title="Example: Ethernet Bonding Interface Module" anchor="eth-bonding">
    <t>
This section gives an example of how interface layering can be
defined.  An Ethernet bonding interface that bonds
several Ethernet interfaces into one logical interface is defined.
    </t>
	<figure>
	    <artwork><![CDATA[
module example-ethernet-bonding {
  namespace "http://example.com/ethernet-bonding";
  prefix "bond";

  import ietf-interfaces {
    prefix if;
  }
  import iana-if-type {
    prefix ianaift;
  }

  augment "/if:interfaces/if:interface" {
    when "if:type = 'ianaift:ieee8023adLag'";

    leaf-list slave-if {
      type if:interface-ref;
      must "/if:interfaces/if:interface[if:name = current()]"
         + "/if:type = 'ianaift:ethernetCsmacd'" {
        description
          "The type of a slave interface must be 'ethernetCsmacd'.";
      }
    }
    leaf bonding-mode {
      type enumeration {
        enum round-robin;
        enum active-backup;
        enum broadcast;
      }
    }
    // other bonding config params, failover times, etc.
  }
}
	    ]]></artwork>
	</figure>
</section>
<section title="Example: VLAN Interface Module" anchor="vlan">
    <t>
This section gives an example of how a VLAN interface module can be
defined.
    </t>
	<figure>
	    <artwork><![CDATA[
module example-vlan {
  namespace "http://example.com/vlan";
  prefix "vlan";

  import ietf-interfaces {
    prefix if;
  }
  import iana-if-type {
    prefix ianaift;
  }

  augment "/if:interfaces/if:interface" {
    when "if:type = 'ianaift:ethernetCsmacd' or
          if:type = 'ianaift:ieee8023adLag'";
    leaf vlan-tagging {
      type boolean;
      default false;
    }
  }

  augment "/if:interfaces/if:interface" {
    when "if:type = 'ianaift:l2vlan'";

    leaf base-interface {
      type if:interface-ref;
      must "/if:interfaces/if:interface[if:name = current()]"
         + "/vlan:vlan-tagging = 'true'" {
        description
          "The base interface must have VLAN tagging enabled.";
      }
    }
    leaf vlan-id {
      type uint16 {
        range "1..4094";
      }
      must "../base-interface" {
        description
          "If a vlan-id is defined, a base-interface must
           be specified.";
      }
    }
  }
}
	    ]]></artwork>
	</figure>
</section>
<section title="Example: NETCONF &lt;get&#8209;config&gt; Reply" anchor="example-netconf-get-config-reply">
    <t>
This section gives an example of a reply to the NETCONF &lt;get&#8209;config&gt;
request for &lt;running&gt; for a device that implements the example data
models above.
    </t>
	<figure>
	    <artwork><![CDATA[
<rpc-reply
    xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
    message-id="101">
  <data>
    <interfaces
        xmlns="urn:ietf:params:xml:ns:yang:ietf-interfaces"
        xmlns:ianaift="urn:ietf:params:xml:ns:yang:iana-if-type"
        xmlns:vlan="http://example.com/vlan">

      <interface>
        <name>eth0</name>
        <type>ianaift:ethernetCsmacd</type>
        <enabled>false</enabled>
      </interface>

      <interface>
        <name>eth1</name>
        <type>ianaift:ethernetCsmacd</type>
        <enabled>true</enabled>
        <vlan:vlan-tagging>true</vlan:vlan-tagging>
      </interface>

      <interface>
        <name>eth1.10</name>
        <type>ianaift:l2vlan</type>
        <enabled>true</enabled>
        <vlan:base-interface>eth1</vlan:base-interface>
        <vlan:vlan-id>10</vlan:vlan-id>
      </interface>

      <interface>
        <name>lo1</name>
        <type>ianaift:softwareLoopback</type>
        <enabled>true</enabled>
      </interface>

    </interfaces>
  </data>
</rpc-reply>
	    ]]></artwork>
	</figure>
</section>
<section title="Example: NETCONF &lt;get&#8209;data&gt; Reply" anchor="example-netconf-get-data-reply">
    <t>
This section gives an example of a reply to the NETCONF &lt;get&#8209;data&gt;
request for &lt;operational&gt; for a device that implements the example
data models above.
    </t>
    <t>
This example uses the &quot;origin&quot; annotation, which is defined in the
module &quot;ietf&#8209;origin&quot; <xref target="I-D.ietf-netmod-revised-datastores"/>.
    </t>
	<figure>
	    <artwork><![CDATA[
<rpc-reply
    xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
    message-id="101">
  <data xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-datastores">
    <interfaces
        xmlns="urn:ietf:params:xml:ns:yang:ietf-interfaces"
        xmlns:ianaift="urn:ietf:params:xml:ns:yang:iana-if-type"
        xmlns:vlan="http://example.com/vlan"
        xmlns:or="urn:ietf:params:xml:ns:yang:ietf-origin">

      <interface or:origin="or:intended">
        <name>eth0</name>
        <type>ianaift:ethernetCsmacd</type>
        <enabled>false</enabled>
        <admin-status>down</admin-status>
        <oper-status>down</oper-status>
        <if-index>2</if-index>
        <phys-address>00:01:02:03:04:05</phys-address>
        <statistics>
          <discontinuity-time>
            2013-04-01T03:00:00+00:00
          </discontinuity-time>
          <!-- counters now shown here -->
        </statistics>
      </interface>

      <interface or:origin="or:intended">
        <name>eth1</name>
        <type>ianaift:ethernetCsmacd</type>
        <enabled>true</enabled>
        <admin-status>up</admin-status>
        <oper-status>up</oper-status>
        <if-index>7</if-index>
        <phys-address>00:01:02:03:04:06</phys-address>
        <higher-layer-if>eth1.10</higher-layer-if>
        <statistics>
          <discontinuity-time>
            2013-04-01T03:00:00+00:00
          </discontinuity-time>
          <!-- counters now shown here -->
        </statistics>
        <vlan:vlan-tagging>true</vlan:vlan-tagging>
      </interface>

      <interface or:origin="or:intended">
        <name>eth1.10</name>
        <type>ianaift:l2vlan</type>
        <enabled>true</enabled>
        <admin-status>up</admin-status>
        <oper-status>up</oper-status>
        <if-index>9</if-index>
        <lower-layer-if>eth1</lower-layer-if>
        <statistics>
          <discontinuity-time>
            2013-04-01T03:00:00+00:00
          </discontinuity-time>
          <!-- counters now shown here -->
        </statistics>
        <vlan:base-interface>eth1</vlan:base-interface>
        <vlan:vlan-id>10</vlan:vlan-id>
      </interface>

      <!-- This interface is not configured -->
      <interface or:origin="or:system">
        <name>eth2</name>
        <type>ianaift:ethernetCsmacd</type>
        <admin-status>down</admin-status>
        <oper-status>down</oper-status>
        <if-index>8</if-index>
        <phys-address>00:01:02:03:04:07</phys-address>
        <statistics>
          <discontinuity-time>
            2013-04-01T03:00:00+00:00
          </discontinuity-time>
          <!-- counters now shown here -->
        </statistics>
      </interface>

      <interface or:origin="or:intended">
        <name>lo1</name>
        <type>ianaift:softwareLoopback</type>
        <enabled>true</enabled>
        <admin-status>up</admin-status>
        <oper-status>up</oper-status>
        <if-index>1</if-index>
        <statistics>
          <discontinuity-time>
            2013-04-01T03:00:00+00:00
          </discontinuity-time>
          <!-- counters now shown here -->
        </statistics>
      </interface>

    </interfaces>
  </data>
</rpc-reply>
	    ]]></artwork>
	</figure>
</section>
<section title="Examples: Interface Naming Schemes" anchor="examples-interface-naming-schemes">
    <t>
This section gives examples of some implementation strategies.
    </t>
    <t>
The examples make use of the example data model &quot;example&#8209;vlan&quot; (see
<xref target="vlan"/>) to show how user-controlled interfaces can be configured.
    </t>
<section title="Router with Restricted Interface Names" anchor="router-restricted">
    <t>
In this example, a router has support for 4 line cards, each with 8
ports.  The slots for the cards are physically numbered from 0 to 3,
and the ports on each card from 0 to 7.  Each card has Fast Ethernet
or Gigabit Ethernet ports.
    </t>
    <t>
The device-specific names for these physical interfaces are
&quot;fastethernet&#8209;N/M&quot; or &quot;gigabitethernet&#8209;N/M&quot;.
    </t>
    <t>
The name of a VLAN interface is restricted to the form
&quot;&lt;physical&#8209;interface&#8209;name&gt;.&lt;subinterface&#8209;number&gt;&quot;.
    </t>
    <t>
It is assumed that the operator is aware of this naming scheme.  The
implementation auto-initializes the value for &quot;type&quot; based on the
interface name.
    </t>
    <t>
The NETCONF server does not advertise the &quot;arbitrary&#8209;names&quot; feature in
the &lt;hello&gt; message.
    </t>
    <t>
An operator can configure a physical interface by sending an
&lt;edit&#8209;config&gt; containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="create">
    <name>fastethernet-1/0</name>
  </interface>
	    ]]></artwork>
	</figure>
    <t>
When the server processes this request, it will set the leaf &quot;type&quot; to
&quot;ianaift:ethernetCsmacd&quot;.  Thus, if the client performs a &lt;get&#8209;config&gt;
right after the &lt;edit&#8209;config&gt; above, it will get:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface>
    <name>fastethernet-1/0</name>
    <type>ianaift:ethernetCsmacd</type>
  </interface>
	    ]]></artwork>
	</figure>
    <t>
The client can configure a VLAN interface by sending an
&lt;edit&#8209;config&gt; containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="create">
    <name>fastethernet-1/0.10005</name>
    <type>ianaift:l2vlan</type>
    <vlan:base-interface>fastethernet-1/0</vlan:base-interface>
    <vlan:vlan-id>5</vlan:vlan-id>
  </interface>
	    ]]></artwork>
	</figure>
    <t>
If the client tries to change the type of the physical interface with
an &lt;edit&#8209;config&gt; containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="merge">
    <name>fastethernet-1/0</name>
    <type>ianaift:tunnel</type>
  </interface>
	    ]]></artwork>
	</figure>
    <t>
then the server will reply with an &quot;invalid&#8209;value&quot; error, since the
new type does not match the name.
    </t>
</section>
<section title="Router with Arbitrary Interface Names" anchor="router-arbitrary">
    <t>
In this example, a router has support for 4 line cards, each with 8
ports.  The slots for the cards are physically numbered from 0 to 3,
and the ports on each card from 0 to 7.  Each card has Fast Ethernet
or Gigabit Ethernet ports.
    </t>
    <t>
The device-specific names for these physical interfaces are
&quot;fastethernet&#8209;N/M&quot; or &quot;gigabitethernet&#8209;N/M&quot;.
    </t>
    <t>
The implementation does not restrict the user-controlled interface
names.  This allows an operator to more easily apply the interface
configuration to a different interface.  However, the additional level
of indirection also makes it a bit more complex to map interface names
found in other protocols to configuration entries.
    </t>
    <t>
The NETCONF server advertises the &quot;arbitrary&#8209;names&quot; feature in the
&lt;hello&gt; message.
    </t>
    <t>
Physical interfaces are configured as in <xref target="router-restricted"/>.
    </t>
    <t>
An operator can configure a VLAN interface by sending an
&lt;edit&#8209;config&gt; containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="create">
    <name>acme-interface</name>
    <type>ianaift:l2vlan</type>
    <vlan:base-interface>fastethernet-1/0</vlan:base-interface>
    <vlan:vlan-id>5</vlan:vlan-id>
  </interface>
	    ]]></artwork>
	</figure>
    <t>
If necessary, the operator can move the configuration named
&quot;acme&#8209;interface&quot; over to a different physical interface with an
&lt;edit&#8209;config&gt; containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="merge">
    <name>acme-interface</name>
    <vlan:base-interface>fastethernet-1/1</vlan:base-interface>
  </interface>
	    ]]></artwork>
	</figure>
</section>
<section title="Ethernet Switch with Restricted Interface Names" anchor="ethernet-switch-with-restricted-interface-names">
    <t>
In this example, an Ethernet switch has a number of ports, each
identified by a simple port number.
    </t>
    <t>
The device-specific names for the physical interfaces are numbers that
match the physical port number.
    </t>
    <t>
An operator can configure a physical interface by sending an
&lt;edit&#8209;config&gt; containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="create">
    <name>6</name>
  </interface>
	    ]]></artwork>
	</figure>
    <t>
When the server processes this request, it will set the leaf &quot;type&quot; to
&quot;ianaift:ethernetCsmacd&quot;.  Thus, if the client performs a &lt;get&#8209;config&gt;
right after the &lt;edit&#8209;config&gt; above, it will get:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface>
    <name>6</name>
    <type>ianaift:ethernetCsmacd</type>
  </interface>
	    ]]></artwork>
	</figure>
</section>
<section title="Generic Host with Restricted Interface Names" anchor="generic-restricted">
    <t>
In this example, a generic host has interfaces named by the kernel.
The system identifies the physical interface by the name assigned by
the operating system to the interface.
    </t>
    <t>
The name of a VLAN interface is restricted to the form
&quot;&lt;physical&#8209;interface&#8209;name&gt;:&lt;vlan&#8209;number&gt;&quot;.
    </t>
    <t>
The NETCONF server does not advertise the &quot;arbitrary&#8209;names&quot; feature in
the &lt;hello&gt; message.
    </t>
    <t>
An operator can configure an interface by sending an &lt;edit&#8209;config&gt;
containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="create">
    <name>eth8</name>
  </interface>
	    ]]></artwork>
	</figure>
    <t>
When the server processes this request, it will set the leaf &quot;type&quot; to
&quot;ianaift:ethernetCsmacd&quot;.  Thus, if the client performs a &lt;get&#8209;config&gt;
right after the &lt;edit&#8209;config&gt; above, it will get:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface>
    <name>eth8</name>
    <type>ianaift:ethernetCsmacd</type>
  </interface>
	    ]]></artwork>
	</figure>
    <t>
The client can configure a VLAN interface by sending an
&lt;edit&#8209;config&gt; containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="create">
    <name>eth8:5</name>
    <type>ianaift:l2vlan</type>
    <vlan:base-interface>eth8</vlan:base-interface>
    <vlan:vlan-id>5</vlan:vlan-id>
  </interface>
	    ]]></artwork>
	</figure>
</section>
<section title="Generic Host with Arbitrary Interface Names" anchor="generic-host-with-arbitrary-interface-names">
    <t>
In this example, a generic host has interfaces named by the kernel.
The system identifies the physical interface by the name assigned by
the operating system to the interface.
    </t>
    <t>
The implementation does not restrict the user-controlled interface
names.  This allows an operator to more easily apply the interface
configuration to a different interface.  However, the additional level
of indirection also makes it a bit more complex to map interface names
found in other protocols to configuration entries.
    </t>
    <t>
The NETCONF server advertises the &quot;arbitrary&#8209;names&quot; feature in the
&lt;hello&gt; message.
    </t>
    <t>
Physical interfaces are configured as in <xref target="generic-restricted"/>.
    </t>
    <t>
An operator can configure a VLAN interface by sending an
&lt;edit&#8209;config&gt; containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="create">
    <name>acme-interface</name>
    <type>ianaift:l2vlan</type>
    <vlan:base-interface>eth8</vlan:base-interface>
    <vlan:vlan-id>5</vlan:vlan-id>
  </interface>
	    ]]></artwork>
	</figure>
    <t>
If necessary, the operator can move the configuration named
&quot;acme&#8209;interface&quot; over to a different physical interface with an
&lt;edit&#8209;config&gt; containing:
    </t>
	<figure>
	    <artwork><![CDATA[
  <interface nc:operation="merge">
    <name>acme-interface</name>
    <vlan:base-interface>eth3</vlan:base-interface>
  </interface>
	    ]]></artwork>
	</figure>
</section>
</section>
</back></rfc>
