NHRP-MIB

This MIB contains managed object definitions for the Next Hop Resolution Procol, NHRP, as defined in RFC 2332 [17].

  • Version: 1999-08-26

    NHRP-MIB@1999-08-26


    
      module NHRP-MIB {
    
        yang-version 1;
    
        namespace
          "urn:ietf:params:xml:ns:yang:smiv2:NHRP-MIB";
    
        prefix NHRP-MIB;
    
        import IANA-ADDRESS-FAMILY-NUMBERS-MIB {
          prefix iana-address;
        }
        import IF-MIB {
          prefix if-mib;
        }
        import SNMPv2-TC {
          prefix snmpv2-tc;
        }
        import ietf-yang-smiv2 {
          prefix smiv2;
        }
        import ietf-yang-types {
          prefix yang;
        }
    
        organization
          "Internetworking Over NBMA (ion) Working Group";
    
        contact
          "Maria Greene (maria@xedia.com)
        Contractor
        
        Joan Cucchiara (joan@ironbridgenetworks.com)
        IronBridge Networks
        
        James V. Luciani (luciani@baynetworks.com)
        Bay Networks";
    
        description
          "This MIB contains managed object definitions for the Next
        Hop Resolution Procol, NHRP, as defined in RFC 2332 [17].";
    
        revision "1999-08-26" {
          description
            "Initial version, published as RFC 2677.";
        }
    
        smiv2:alias "nhrpMIB" {
          smiv2:oid "1.3.6.1.2.1.71";
        }
        smiv2:alias "nhrpObjects" {
          smiv2:oid "1.3.6.1.2.1.71.1";
        }
        smiv2:alias "nhrpGeneralObjects" {
          smiv2:oid "1.3.6.1.2.1.71.1.1";
        }
        smiv2:alias "nhrpClientObjects" {
          smiv2:oid "1.3.6.1.2.1.71.1.2";
        }
        smiv2:alias "nhrpServerObjects" {
          smiv2:oid "1.3.6.1.2.1.71.1.3";
        }
        smiv2:alias "nhrpConformance" {
          smiv2:oid "1.3.6.1.2.1.71.2";
        }
        smiv2:alias "nhrpCompliances" {
          smiv2:oid "1.3.6.1.2.1.71.2.1";
        }
        smiv2:alias "nhrpGroups" {
          smiv2:oid "1.3.6.1.2.1.71.2.2";
        }
    
        typedef NhrpGenAddr {
          type binary {
            length "0..64";
          }
          description
            "The value of an internetwork layer or NBMA address.";
        }
    
        container NHRP-MIB {
          config false;
          container nhrpGeneralObjects {
            smiv2:oid "1.3.6.1.2.1.71.1.1";
            leaf nhrpNextIndex {
              smiv2:max-access "read-only";
              smiv2:oid "1.3.6.1.2.1.71.1.1.1";
              type uint32;
              description
                "This scalar is used for creating rows in the
              nhrpClientTable and the nhrpServerTable.
              The value of this variable is a currently unused value
              for nhrpClientIndex and nhrpServerIndex.
              
              
              
              
              The value returned when reading this variable must be
              unique for the NHC's and NHS's indices associated with
              this row. Subsequent attempts to read this variable
              must return different values.
              
              NOTE:  this object exists in the General Group because
              it is to be used in establishing rows in the
              nhrpClientTable and the nhrpServerTable.  In other words,
              the value retrieved from this object could become the
              value of nhrpClientIndex and nhprServerIndex.
              
              In the situation of an agent re-initialization the value
              of this object must be saved in non-volatile storage.
              
              This variable will return the special value 0 if no new
              rows can be created.";
            }
          }  // container nhrpGeneralObjects
    
          container nhrpCacheTable {
            smiv2:oid "1.3.6.1.2.1.71.1.1.2";
            description
              "This table contains mappings between internetwork layer
            addresses and NBMA subnetwork layer addresses.";
            list nhrpCacheEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.1.2.1";
              key "nhrpCacheInternetworkAddrType nhrpCacheInternetworkAddr ifIndex nhrpCacheIndex";
              description
                "A cached mapping between an internetwork layer address
              and an NBMA address. Entries can be created by the
              network administrator using the nhrpCacheRowStatus
              column, or they may be added dynamically based on
              protocol operation (including NHRP, SCSP, and others,
              such as ATMARP).
              
              When created based by NHRP protocol operations
              this entry is largely based on contents contained in
              the Client Information Entry (CIE).
              
              Zero or more Client Information Entries (CIEs) may be
              included in the NHRP Packet. For a complete description
              of the CIE, refer to Section 5.2.0.1 of
              RFC 2332 [17].";
              leaf ifIndex {
                type leafref {
                  path "/if-mib:IF-MIB/if-mib:ifTable/if-mib:ifEntry/if-mib:ifIndex";
                }
              }
    
              leaf nhrpCacheInternetworkAddrType {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.1";
                type iana-address:AddressFamilyNumbers;
                description
                  "The internetwork layer address type of this Next Hop
                Resolution Cache entry. The value of this object indicates
                how to interpret the values of nhrpCacheInternetworkAddr
                and nhrpCacheNextHopInternetworkAddr.";
              }
    
              leaf nhrpCacheInternetworkAddr {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.2";
                type NhrpGenAddr;
                description
                  "The value of the internetwork address of the
                destination.";
              }
    
              leaf nhrpCacheIndex {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.3";
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "An identifier for this entry that has local
                significance within the scope of the General
                Group.  This identifier is used here to
                uniquely identify this row, and also used
                in the 'nhrpPurgeTable' for the value of
                the 'nhrpPurgeCacheIdentifier'.";
              }
    
              leaf nhrpCachePrefixLength {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.4";
                type int32 {
                  range "0..255";
                }
                description
                  "The number of bits that define the internetwork layer
                prefix associated with the nhrpCacheInternetworkAddr.";
              }
    
              leaf nhrpCacheNextHopInternetworkAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.5";
                type NhrpGenAddr;
                description
                  "The value of the internetwork address of the next hop.";
              }
    
              leaf nhrpCacheNbmaAddrType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.6";
                type iana-address:AddressFamilyNumbers;
                description
                  "The NBMA address type. The value of this
                object indicates how to interpret
                the values of nhrpCacheNbmaAddr and
                nhrpCacheNbmaSubaddr.";
              }
    
              leaf nhrpCacheNbmaAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.7";
                type NhrpGenAddr;
                description
                  "The value of the NBMA subnetwork address of the next
                hop.";
              }
    
              leaf nhrpCacheNbmaSubaddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.8";
                type NhrpGenAddr;
                description
                  "The value of the NBMA subaddress of the next hop. If
                there is no subaddress concept for the NBMA address
                family, this value will be a zero-length OCTET STRING.";
              }
    
              leaf nhrpCacheType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.9";
                type enumeration {
                  enum "other" {
                    value 1;
                  }
                  enum "register" {
                    value 2;
                  }
                  enum "resolveAuthoritative" {
                    value 3;
                  }
                  enum "resoveNonauthoritative" {
                    value 4;
                  }
                  enum "transit" {
                    value 5;
                  }
                  enum "administrativelyAdded" {
                    value 6;
                  }
                  enum "atmarp" {
                    value 7;
                  }
                  enum "scsp" {
                    value 8;
                  }
                }
                description
                  "An indication of how this cache entry
                was created. The values are:
                
                'other(1)'                   The entry was added by some
                                             other means.
                
                'register(2)'                In a server, added based on a
                                             client registration.
                
                'resolveAuthoritative(3)'    In a client, added based on
                                             receiving an Authoritative
                                             NHRP Resolution Reply.
                
                
                
                
                'resolveNonauthoritative(4)' In a client, added based on
                                             receiving a Nonauthoritative
                                             NHRP Resolution Reply.
                
                'transit(5)'                 In a transit server, added by
                                             examining a forwarded NHRP
                                             packet.
                
                'administrativelyAdded(6)'   In a client or server,
                                             manually added by the
                                             administrator. The
                                             StorageType of this entry is
                                             reflected in
                                             'nhrpCacheStorageType'.
                
                'atmarp(7)'                  The entry was added due to an
                                             ATMARP.
                
                'scsp(8)'                    The entry was added due to
                                             SCSP.
                
                
                When the entry is under creation using the
                nhrpCacheRowStatus column, the only value that can be
                specified by the administrator is 'administrativelyAdded'.
                Attempting to set any other value will cause an
                'inconsistentValue' error.
                
                The value cannot be modified once the entry is active.";
              }
    
              leaf nhrpCacheState {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.10";
                type enumeration {
                  enum "incomplete" {
                    value 1;
                  }
                  enum "ackReply" {
                    value 2;
                  }
                  enum "nakReply" {
                    value 3;
                  }
                }
                description
                  "An indication of the state of this entry. The values are:
                
                'incomplete(1)' The client has sent a NHRP Resolution
                                Request but has not yet received the
                                NHRP Resolution Reply.
                
                
                'ackReply(2)'   For a client or server, this is a
                                cached valid mapping.
                
                'nakReply(3)'   For a client or server, this is a
                                cached NAK mapping.";
              }
    
              leaf nhrpCacheHoldingTimeValid {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.11";
                type boolean;
                description
                  "True(1) is returned if the value of
                'nhrpCacheType' is not
                'administrativelyAdded'.  Since the
                value of 'nhrpCacheType' was not
                configured by a user, the value of
                'nhrpCacheHoldingTime' is
                considered valid.  In other words, the value of
                'nhrpCacheHoldingTime' represents
                the Holding Time for the cache Entry.
                
                If 'nhrpCacheType has been configured by a
                user, (i.e. the value of 'nhrpCacheType' is
                'administrativelyAdded') then false(2) will be returned.
                This indicates that the value of
                'nhrpCacheHoldingTime' is undefined because this row
                could possibly be backed up in nonvolatile storage.";
              }
    
              leaf nhrpCacheHoldingTime {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.12";
                type uint32 {
                  range "0..65535";
                }
                units "seconds";
                description
                  "If the value of 'nhrpCacheHoldingTimeValid is
                true(1) then this object represents the number
                of seconds that the cache entry will remain in this
                table.  When this value reaches 0 (zero) the row should
                be deleted.
                
                If the value of 'nhrpCacheHoldingTimeValid is
                false(2) then this object is undefined.";
              }
    
              leaf nhrpCacheNegotiatedMtu {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.13";
                type int32 {
                  range "0..65535";
                }
                description
                  "The maximum transmission unit (MTU) that was negotiated
                or registered for this entity. In other words, this is the
                actual MTU being used.";
              }
    
              leaf nhrpCachePreference {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.14";
                type int32 {
                  range "0..255";
                }
                description
                  "An object which reflects the Preference value of the
                Client Information Entry (CIE).
                
                Zero or more Client Information Entries (CIEs) may be
                included in the NHRP Packet.  One of the fields in the
                CIE is the Preference.  For a complete description of
                the CIE, refer to Section 5.2.0.1 of  RFC 2332 [17].";
                reference
                  "Section 5.2.0.1 Mandatory Part Format, RFC 2332 [17].";
    
              }
    
              leaf nhrpCacheStorageType {
                smiv2:defval "nonVolatile";
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.15";
                type snmpv2-tc:StorageType;
                description
                  "This value only has meaning when the 'nhrpCacheType'
                has the value of 'administrativelyAdded'.
                
                When the row is created due to being
                'administrativelyAdded', this object reflects whether
                this row is kept in volatile storage
                and lost upon reboot or if this row is backed up by
                non-volatile or permanent storage.
                
                If the value of 'nhrpCacheType' has a value which
                is not 'administrativelyAdded, then the value of this
                object is 'other(1)'.";
              }
    
              leaf nhrpCacheRowStatus {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.2.1.16";
                type snmpv2-tc:RowStatus;
                description
                  "An object that allows entries in this table to be
                created and deleted using the RowStatus convention.";
              }
            }  // list nhrpCacheEntry
          }  // container nhrpCacheTable
    
          container nhrpPurgeReqTable {
            smiv2:oid "1.3.6.1.2.1.71.1.1.3";
            description
              "This table will track Purge Request Information.";
            list nhrpPurgeReqEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.1.3.1";
              key "nhrpPurgeIndex";
              description
                "Information regarding a Purge Request.";
              leaf nhrpPurgeIndex {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.2.1.71.1.1.3.1.1";
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "An index for this entry that has local significance
                within the scope of this table.";
              }
    
              leaf nhrpPurgeCacheIdentifier {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.3.1.2";
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "This object identifies which row in
                'nhrpCacheTable' is being purged.  This object
                should have the same value as the 'nhrpCacheIndex'
                in the 'nhrpCacheTable'.";
              }
    
              leaf nhrpPurgePrefixLength {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.1.3.1.3";
                type int32 {
                  range "0..255";
                }
                description
                  "In the case of NHRP Purge Requests, this specifies the
                equivalence class of addresses which match the first
                'Prefix Length' bit positions of the Client Protocol
                Address specified in the Client Information Entry (CIE).";
              }
    
              leaf nhrpPurgeRequestID {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.3.1.4";
                type uint32;
                description
                  "The Request ID used in the purge request.";
              }
    
              leaf nhrpPurgeReplyExpected {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.3.1.5";
                type boolean;
                description
                  "An indication of whether this Purge Request has the
                'N' Bit cleared (off).";
              }
    
              leaf nhrpPurgeRowStatus {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.1.3.1.6";
                type snmpv2-tc:RowStatus;
                description
                  "An object that allows entries in this table to be
                created and deleted using the RowStatus convention.";
              }
            }  // list nhrpPurgeReqEntry
          }  // container nhrpPurgeReqTable
    
          container nhrpClientTable {
            smiv2:oid "1.3.6.1.2.1.71.1.2.1";
            description
              "Information about NHRP clients (NHCs) managed by this
            agent.";
            list nhrpClientEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.2.1.1";
              key "nhrpClientIndex";
              description
                "Information about a single NHC.";
              leaf nhrpClientIndex {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.1";
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "An identifier for the NHRP client that is unique within
                the scope of this agent.  The 'nhrpNextIndex' value
                should be consulted (read), prior to creating a row in
                this table, and the value returned from reading
                'nhrpNextIndex' should be used as this object's value.";
              }
    
              leaf nhrpClientInternetworkAddrType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.2";
                type iana-address:AddressFamilyNumbers;
                description
                  "The type of the internetwork layer address of this
                client. This object indicates how the value of
                nhrpClientInternetworkAddr is to be interpreted.";
              }
    
              leaf nhrpClientInternetworkAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.3";
                type NhrpGenAddr;
                description
                  "The value of the internetwork layer address of this
                client.";
              }
    
              leaf nhrpClientNbmaAddrType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.4";
                type iana-address:AddressFamilyNumbers;
                description
                  "The type of the NBMA subnetwork address of this client.
                This object indicates how the values of
                nhrpClientNbmaAddr and nhrpClientNbmaSubaddr are to be
                interpreted.";
              }
    
              leaf nhrpClientNbmaAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.5";
                type NhrpGenAddr;
                description
                  "The NBMA subnetwork address of this client.";
              }
    
              leaf nhrpClientNbmaSubaddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.6";
                type NhrpGenAddr;
                description
                  "The NBMA subaddress of this client. For NBMA address
                families without a subaddress concept, this will be a
                zero-length OCTET STRING.";
              }
    
              leaf nhrpClientInitialRequestTimeout {
                smiv2:defval "10";
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.7";
                type int32 {
                  range "1..900";
                }
                units "seconds";
                description
                  "The number of seconds that the client will wait before
                timing out an NHRP initial request.  This object only has
                meaning for the initial timeout period.";
              }
    
              leaf nhrpClientRegistrationRequestRetries {
                smiv2:defval "3";
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.8";
                type int32 {
                  range "0..65535";
                }
                description
                  "The number of times the client will retry the
                registration request before failure. A value of
                0 means don't retry. A value of 65535 means
                retry forever.";
              }
    
              leaf nhrpClientResolutionRequestRetries {
                smiv2:defval "3";
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.9";
                type int32 {
                  range "0..65535";
                }
                description
                  "The number of times the client will retry the resolution
                request before failure. A value of 0 means don't retry.
                A value of 65535 means retry forever.";
              }
    
              leaf nhrpClientPurgeRequestRetries {
                smiv2:defval "3";
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.10";
                type int32 {
                  range "0..65535";
                }
                description
                  "The number of times the client will retry a purge request
                before failure. A value of 0 means don't retry. A value of
                65535 means retry forever.";
              }
    
              leaf nhrpClientDefaultMtu {
                smiv2:defval "9180";
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.11";
                type uint32 {
                  range "0..65535";
                }
                description
                  "The default maximum transmission unit (MTU) of the
                LIS/LAG which this client should use. This object
                will be initialized by the agent to the default MTU
                of the LIS/LAG (which is 9180) unless a different MTU
                value is specified during creation of this Client.";
                reference
                  "RFC 2225 [25], Classical IP and ARP over ATM, Section 7,
                  DEFAULT VALUE FOR IP MTU OVER ATM AAL5.";
    
              }
    
              leaf nhrpClientHoldTime {
                smiv2:defval "900";
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.12";
                type uint32 {
                  range "0..65535";
                }
                units "seconds";
                description
                  "The hold time the client will register.";
              }
    
              leaf nhrpClientRequestID {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.13";
                type uint32;
                description
                  "The Request ID used to register this client with its
                server. According to Section 5.2.3 of the NHRP
                Specification, RFC 2332 [17], the Request ID must
                be kept in non-volatile storage, so that if an NHC
                crashes and  re-initializes, it will use a different
                
                Request ID during the registration process
                when reregistering with the same NHS.";
                reference
                  "Section 5.2.3 NHRP Registration Request, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStorageType {
                smiv2:defval "nonVolatile";
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.14";
                type snmpv2-tc:StorageType;
                description
                  "This object defines whether this row is kept in
                volatile storage and lost upon a Client crash or
                reboot situation, or if this row is backed up by
                nonvolatile or permanent storage.";
              }
    
              leaf nhrpClientRowStatus {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.1.1.15";
                type snmpv2-tc:RowStatus;
                description
                  "An object that allows entries in this table to be
                created and deleted using the RowStatus convention.";
              }
            }  // list nhrpClientEntry
          }  // container nhrpClientTable
    
          container nhrpClientRegistrationTable {
            smiv2:oid "1.3.6.1.2.1.71.1.2.2";
            description
              "A table of Registration Request Information that
            needs to be maintained by the NHCs (clients).";
            reference
              "Section 5.2.3 NHRP Registration Request, RFC 2332 [17].";
    
            list nhrpClientRegistrationEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.2.2.1";
              key "nhrpClientIndex nhrpClientRegIndex";
              description
                "An NHC needs to maintain registration request information
              between the NHC and the NHS.  An entry in this table
              represents information for a single registration request.";
              leaf nhrpClientIndex {
                type leafref {
                  path "/NHRP-MIB:NHRP-MIB/NHRP-MIB:nhrpClientTable/NHRP-MIB:nhrpClientEntry/NHRP-MIB:nhrpClientIndex";
                }
              }
    
              leaf nhrpClientRegIndex {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.2.1.71.1.2.2.1.1";
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "An identifier for this entry such that it
                identifies a specific Registration Request from
                the NHC represented by the nhrpClientIndex.";
              }
    
              leaf nhrpClientRegUniqueness {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.2.1.2";
                type enumeration {
                  enum "requestUnique" {
                    value 1;
                  }
                  enum "requestNotUnique" {
                    value 2;
                  }
                }
                description
                  "The Uniqueness indicator for this Registration Request.
                If this object has the value of requestUnique(1), then
                the Uniqueness bit is set in the the NHRP Registration
                Request represented by this row.  The value cannot
                be changed once the row is created.";
              }
    
              leaf nhrpClientRegState {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.2.1.3";
                type enumeration {
                  enum "other" {
                    value 1;
                  }
                  enum "registering" {
                    value 2;
                  }
                  enum "ackRegisterReply" {
                    value 3;
                  }
                  enum "nakRegisterReply" {
                    value 4;
                  }
                }
                description
                  "The registration state of this client. The values are:
                'other(1)'             The state of the registration
                                       request is not one of
                                       'registering',
                                       'ackRegisterReply' or
                                       'nakRegisterReply'.
                
                'registering(2)'        A registration request has
                                        been issued and a registration
                                        reply is expected.
                
                'ackRegisterReply(3)'   A positive registration reply
                                        has been received.
                
                'nakRegisterReply(4)'   The client has received a
                                        negative registration
                                        reply (NAK).";
              }
    
              leaf nhrpClientRegRowStatus {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.2.1.4";
                type snmpv2-tc:RowStatus;
                description
                  "An object that allows entries in this table to be
                created and deleted using the RowStatus convention.";
              }
            }  // list nhrpClientRegistrationEntry
          }  // container nhrpClientRegistrationTable
    
          container nhrpClientNhsTable {
            smiv2:oid "1.3.6.1.2.1.71.1.2.3";
            description
              "A table of NHSes that are available for use by this NHC
            (client). By default, the agent will add an entry to this
            table that corresponds to the client's default router.";
            list nhrpClientNhsEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.2.3.1";
              key "nhrpClientIndex nhrpClientNhsIndex";
              description
                "An NHS that may be used by an NHC.";
              leaf nhrpClientIndex {
                type leafref {
                  path "/NHRP-MIB:NHRP-MIB/NHRP-MIB:nhrpClientTable/NHRP-MIB:nhrpClientEntry/NHRP-MIB:nhrpClientIndex";
                }
              }
    
              leaf nhrpClientNhsIndex {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.2.1.71.1.2.3.1.1";
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "An identifier for an NHS available to an NHC.";
              }
    
              leaf nhrpClientNhsInternetworkAddrType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.3.1.2";
                type iana-address:AddressFamilyNumbers;
                description
                  "The type of the internetwork layer address of the
                NHRP server represented in this entry. This object
                indicates how the value of
                nhrpClientNhsInternetworkAddr is to be interpreted.";
              }
    
              leaf nhrpClientNhsInternetworkAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.3.1.3";
                type NhrpGenAddr;
                description
                  "The value of the destination internetwork layer
                address of the NHRP server represented by this
                
                
                
                entry.  If this value is not known, this will be
                a zero-length OCTET STRING.";
              }
    
              leaf nhrpClientNhsNbmaAddrType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.3.1.4";
                type iana-address:AddressFamilyNumbers;
                description
                  "The type of the NBMA subnetwork address of the NHRP
                Server represented by this entry. This object indicates
                how the values of nhrpClientNhsNbmaAddr and
                nhrpClientNhsNbmaSubaddr are to be interpreted.";
              }
    
              leaf nhrpClientNhsNbmaAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.3.1.5";
                type NhrpGenAddr;
                description
                  "The NBMA subnetwork address of the NHS. The type of
                the address is indicated by the corresponding value of
                nhrpClientNhsNbmaAddrType.";
              }
    
              leaf nhrpClientNhsNbmaSubaddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.3.1.6";
                type NhrpGenAddr;
                description
                  "The NBMA subaddress of the NHS. For NMBA address
                families that do not have the concept of subaddress,
                     this will be a zero-length OCTET STRING.";
              }
    
              leaf nhrpClientNhsInUse {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.3.1.7";
                type boolean;
                description
                  "An indication of whether this NHS is in use by the NHC.";
              }
    
              leaf nhrpClientNhsRowStatus {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.2.3.1.8";
                type snmpv2-tc:RowStatus;
                description
                  "An object that allows entries in this table to be
                created and deleted using the RowStatus convention.";
              }
            }  // list nhrpClientNhsEntry
          }  // container nhrpClientNhsTable
    
          container nhrpClientStatTable {
            smiv2:oid "1.3.6.1.2.1.71.1.2.4";
            description
              "This table contains statistics collected by NHRP
            clients.";
            list nhrpClientStatEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.2.4.1";
              key "nhrpClientIndex";
              description
                "Statistics collected by a NHRP client.";
              leaf nhrpClientIndex {
                type leafref {
                  path "/NHRP-MIB:NHRP-MIB/NHRP-MIB:nhrpClientTable/NHRP-MIB:nhrpClientEntry/NHRP-MIB:nhrpClientIndex";
                }
              }
    
              leaf nhrpClientStatTxResolveReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.1";
                type yang:counter32;
                description
                  "The number of NHRP Resolution Requests transmitted
                by this client.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxResolveReplyAck {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.2";
                type yang:counter32;
                description
                  "The number of positively acknowledged NHRP Resolution
                Replies received by this client.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxResolveReplyNakProhibited {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.3";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Resolution Replies received
                by this client that contained the code indicating
                'Administratively Prohibited'.
                
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxResolveReplyNakInsufResources {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.4";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Resolution Replies received
                by this client that contained the code indicating
                'Insufficient Resources'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxResolveReplyNakNoBinding {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.5";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Resolution Replies received
                by this client that contained the code indicating
                'No Internetworking Layer Address to NBMA Address
                Binding Exists'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxResolveReplyNakNotUnique {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.6";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Resolution Replies received
                by this client that contained the code indicating
                'Binding Exists But Is Not Unique'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatTxRegisterReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.7";
                type yang:counter32;
                description
                  "The number of NHRP Registration Requests transmitted
                by this client.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxRegisterAck {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.8";
                type yang:counter32;
                description
                  "The number of positively acknowledged NHRP Registration
                Replies received by this client.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxRegisterNakProhibited {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.9";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Registration Replies received
                by this client that contained the code indicating
                'Administratively Prohibited'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxRegisterNakInsufResources {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.10";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Registration Replies received
                by this client that contained the code indicating
                'Insufficient Resources'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxRegisterNakAlreadyReg {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.11";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Registration Replies received
                by this client that contained the code indicating 'Unique
                Internetworking Layer Address Already Registered'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxPurgeReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.12";
                type yang:counter32;
                description
                  "The number of NHRP Purge Requests received by this
                client.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatTxPurgeReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.13";
                type yang:counter32;
                description
                  "The number of NHRP Purge Requests transmitted by this
                client.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatRxPurgeReply {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.14";
                type yang:counter32;
                description
                  "The number of NHRP Purge Replies received by this
                client.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatTxPurgeReply {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.15";
                type yang:counter32;
                description
                  "The number of NHRP Purge Replies transmitted by this
                client.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
              }
    
              leaf nhrpClientStatTxErrorIndication {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.16";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets transmitted
                by this client.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStatRxErrUnrecognizedExtension {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.17";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this client with the error code
                'Unrecognized Extension'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStatRxErrLoopDetected {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.18";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this client with the error code 'NHRP Loop Detected'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStatRxErrProtoAddrUnreachable {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.19";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this client with the error code 'Protocol Address
                Unreachable'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStatRxErrProtoError {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.20";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this client with the error code 'Protocol Error'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStatRxErrSduSizeExceeded {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.21";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this client with the error code 'NHRP SDU Size
                
                Exceeded'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStatRxErrInvalidExtension {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.22";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this client with the error code 'Invalid Extension'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStatRxErrAuthenticationFailure {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.23";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this client with the error code 'Authentication
                Failure'.
                
                
                
                
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStatRxErrHopCountExceeded {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.24";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this client with the error code 'Hop Count Exceeded'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Client re-initialization and at
                other times as indicated by the value of
                nhrpClientStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpClientStatDiscontinuityTime {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.2.4.1.25";
                type yang:timestamp;
                description
                  "The value of sysUpTime on the most recent occasion at
                which any one or more of this Client's counters
                suffered a discontinuity.  If no such discontinuities
                have occurred since the last re-initialization of the
                local management subsystem or the NHRP Client
                re-initialization associated with this entry, then
                this object contains a zero value.";
                reference
                  "RFC 2233 [18].";
    
              }
            }  // list nhrpClientStatEntry
          }  // container nhrpClientStatTable
    
          container nhrpServerTable {
            smiv2:oid "1.3.6.1.2.1.71.1.3.1";
            description
              "This table contains information for a set of NHSes
            associated with this agent.";
            list nhrpServerEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.3.1.1";
              key "nhrpServerIndex";
              description
                "Information about a single NHS.";
              leaf nhrpServerIndex {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.2.1.71.1.3.1.1.1";
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "An identifier for the server that is unique within the
                scope of this agent.";
              }
    
              leaf nhrpServerInternetworkAddrType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.1.1.2";
                type iana-address:AddressFamilyNumbers;
                description
                  "The type of the internetwork layer address of this
                server. This object is used to interpret the value of
                nhrpServerInternetworkAddr.";
              }
    
              leaf nhrpServerInternetworkAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.1.1.3";
                type NhrpGenAddr;
                description
                  "The value of the internetwork layer address of this
                server.";
              }
    
              leaf nhrpServerNbmaAddrType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.1.1.4";
                type iana-address:AddressFamilyNumbers;
                description
                  "The type of the NBMA subnetwork address of this server.
                This object is used to interpret the value of
                nhrpServerNbmaAddr.";
              }
    
              leaf nhrpServerNbmaAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.1.1.5";
                type NhrpGenAddr;
                description
                  "The value of the NBMA subnetwork address of this
                server.";
              }
    
              leaf nhrpServerNbmaSubaddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.1.1.6";
                type NhrpGenAddr;
                description
                  "The value of the NBMA subaddress of this server.
                For NBMA address families without a subaddress
                concept, this will be a zero-length OCTET STRING.";
              }
    
              leaf nhrpServerStorageType {
                smiv2:defval "nonVolatile";
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.1.1.7";
                type snmpv2-tc:StorageType;
                description
                  "This object defines whether this row is kept in
                volatile storage and lost upon a Server crash or
                reboot situation, or if this row is backed up by
                nonvolatile or permanent storage.";
              }
    
              leaf nhrpServerRowStatus {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.1.1.8";
                type snmpv2-tc:RowStatus;
                description
                  "An object that allows entries in this table to be
                created and deleted using the RowStatus convention.";
              }
            }  // list nhrpServerEntry
          }  // container nhrpServerTable
    
          container nhrpServerCacheTable {
            smiv2:oid "1.3.6.1.2.1.71.1.3.2";
            description
              "This table extends the nhrpCacheTable for
            NHSes.  If the nhrpCacheTable has a row added due to
            an NHS or based on information regarding an NHS then
            a row is also added in this table.
            
            The rows in this table will be created when rows in
            the nhrpCacheTable are created.  However, there may
            be rows created in the nhrpCacheTable which do not
            have corresponding rows in this table.  For example,
            if the nhrpCacheTable has a row added due to a Next
            Hop Client which is co-resident on the same device
            as the NHS, a row will not be added to this table.";
            list nhrpServerCacheEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.3.2.1";
              key "nhrpCacheInternetworkAddrType nhrpCacheInternetworkAddr ifIndex nhrpCacheIndex";
              description
                "Additional information kept by a NHS for a relevant
              Next Hop Resolution Cache entry.";
              leaf nhrpCacheInternetworkAddrType {
                type leafref {
                  path "/NHRP-MIB:NHRP-MIB/NHRP-MIB:nhrpCacheTable/NHRP-MIB:nhrpCacheEntry/NHRP-MIB:nhrpCacheInternetworkAddrType";
                }
              }
    
              leaf nhrpCacheInternetworkAddr {
                type leafref {
                  path "/NHRP-MIB:NHRP-MIB/NHRP-MIB:nhrpCacheTable/NHRP-MIB:nhrpCacheEntry/NHRP-MIB:nhrpCacheInternetworkAddr";
                }
              }
    
              leaf ifIndex {
                type leafref {
                  path "/if-mib:IF-MIB/if-mib:ifTable/if-mib:ifEntry/if-mib:ifIndex";
                }
              }
    
              leaf nhrpCacheIndex {
                type leafref {
                  path "/NHRP-MIB:NHRP-MIB/NHRP-MIB:nhrpCacheTable/NHRP-MIB:nhrpCacheEntry/NHRP-MIB:nhrpCacheIndex";
                }
              }
    
              leaf nhrpServerCacheAuthoritative {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.2.1.1";
                type boolean;
                description
                  "An indication of whether this cache entry is
                authoritative, which means the entry was added because
                of a direct registration request with this server or
                by Server Cache Synchronization Protocol (SCSP) from
                an authoritative source.";
              }
    
              leaf nhrpServerCacheUniqueness {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.2.1.2";
                type boolean;
                description
                  "The Uniqueness indicator for this cache
                entry used in duplicate address detection. This value
                cannot be changed after the entry is active.";
              }
            }  // list nhrpServerCacheEntry
          }  // container nhrpServerCacheTable
    
          container nhrpServerNhcTable {
            smiv2:oid "1.3.6.1.2.1.71.1.3.3";
            description
              "A table of NHCs that are available for use by this NHS
            (Server).";
            reference
              "Section 4 Configuration (Next Hop Servers),
               RFC 2332 [17].";
    
            list nhrpServerNhcEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.3.3.1";
              key "nhrpServerIndex nhrpServerNhcIndex";
              description
                "An NHC that may be used by an NHS.";
              leaf nhrpServerIndex {
                type leafref {
                  path "/NHRP-MIB:NHRP-MIB/NHRP-MIB:nhrpServerTable/NHRP-MIB:nhrpServerEntry/NHRP-MIB:nhrpServerIndex";
                }
              }
    
              leaf nhrpServerNhcIndex {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.2.1.71.1.3.3.1.1";
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "An identifier for an NHC available to an NHS.";
              }
    
              leaf nhrpServerNhcPrefixLength {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.3.1.2";
                type int32 {
                  range "0..255";
                }
                description
                  "The number of bits that define the internetwork
                layer prefix associated with the
                nhrpServerNhcInternetworkAddr.";
              }
    
              leaf nhrpServerNhcInternetworkAddrType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.3.1.3";
                type iana-address:AddressFamilyNumbers;
                description
                  "The type of the internetwork layer address of the
                NHRP Client represented in this entry. This object
                indicates how the value of nhrpServerNhcInternetworkAddr
                is to be interpreted.";
              }
    
              leaf nhrpServerNhcInternetworkAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.3.1.4";
                type NhrpGenAddr;
                description
                  "The value of the internetwork layer address of
                the NHRP Client represented by this entry.  If this
                value is not known, this will be a zero-length
                OCTET STRING.";
              }
    
              leaf nhrpServerNhcNbmaAddrType {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.3.1.5";
                type iana-address:AddressFamilyNumbers;
                description
                  "The type of the NBMA subnetwork address of the NHRP
                Client represented by this entry. This object indicates
                how the values of nhrpServerNhcNbmaAddr and
                nhrpServerNhcNbmaSubaddr are to be interpreted.";
              }
    
              leaf nhrpServerNhcNbmaAddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.3.1.6";
                type NhrpGenAddr;
                description
                  "The NBMA subnetwork address of the NHC. The type of the
                address is indicated by the corresponding value of
                nhrpServerNbmaAddrType.";
              }
    
              leaf nhrpServerNhcNbmaSubaddr {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.3.1.7";
                type NhrpGenAddr;
                description
                  "The NBMA subaddress of the NHC. For NMBA address familes
                that do not have the concept of subaddress, this will
                be a zero-length OCTET STRING.";
              }
    
              leaf nhrpServerNhcInUse {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.3.1.8";
                type boolean;
                description
                  "An indication of whether this NHC is in use by the NHS.";
              }
    
              leaf nhrpServerNhcRowStatus {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.2.1.71.1.3.3.1.9";
                type snmpv2-tc:RowStatus;
                description
                  "An object that allows entries in this table to be
                created and deleted using the RowStatus convention.";
              }
            }  // list nhrpServerNhcEntry
          }  // container nhrpServerNhcTable
    
          container nhrpServerStatTable {
            smiv2:oid "1.3.6.1.2.1.71.1.3.4";
            description
              "Statistics collected by Next Hop Servers.";
            list nhrpServerStatEntry {
              smiv2:oid "1.3.6.1.2.1.71.1.3.4.1";
              key "nhrpServerIndex";
              description
                "Statistics for a particular NHS. The statistics are
              broken into received (Rx), transmitted (Tx)
              and forwarded (Fw).  Forwarded (Fw) would be done
              by a transit NHS.";
              leaf nhrpServerIndex {
                type leafref {
                  path "/NHRP-MIB:NHRP-MIB/NHRP-MIB:nhrpServerTable/NHRP-MIB:nhrpServerEntry/NHRP-MIB:nhrpServerIndex";
                }
              }
    
              leaf nhrpServerStatRxResolveReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.1";
                type yang:counter32;
                description
                  "The number of NHRP Resolution Requests received by this
                server.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxResolveReplyAck {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.2";
                type yang:counter32;
                description
                  "The number of positively acknowledged NHRP
                Resolution Replies transmitted by this server.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxResolveReplyNakProhibited {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.3";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Resolution Replies
                transmitted by this server with the code
                'Administratively Prohibited'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxResolveReplyNakInsufResources {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.4";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Resolution Replies
                transmitted by this server with the code
                'Insufficient Resources'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxResolveReplyNakNoBinding {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.5";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Resolution Replies
                transmitted by this server with the code
                'No Internetworking Layer Address to NBMA
                Address Binding Exists'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxResolveReplyNakNotUnique {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.6";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Resolution Replies
                transmitted by this server with the code
                'Binding Exists But Is Not Unique'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatRxRegisterReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.7";
                type yang:counter32;
                description
                  "The number of NHRP Registration Requests received
                by this server.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxRegisterAck {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.8";
                type yang:counter32;
                description
                  "The number of positively acknowledged NHRP Registration
                Replies transmitted by this server.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxRegisterNakProhibited {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.9";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Registration Replies
                transmitted by this server with the code
                'Administratively Prohibited'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxRegisterNakInsufResources {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.10";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Registration Replies
                transmitted by this server with the code
                'Insufficient Resources'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxRegisterNakAlreadyReg {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.11";
                type yang:counter32;
                description
                  "The number of NAKed NHRP Registration Replies
                transmitted by this server with the code
                'Unique Internetworking Layer Address Already
                Registered'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatRxPurgeReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.12";
                type yang:counter32;
                description
                  "The number of NHRP Purge Requests received by
                this server.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxPurgeReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.13";
                type yang:counter32;
                description
                  "The number of NHRP Purge Requests transmitted by this
                server.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatRxPurgeReply {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.14";
                type yang:counter32;
                description
                  "The number of NHRP Purge Replies received by this
                server.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatTxPurgeReply {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.15";
                type yang:counter32;
                description
                  "The number of NHRP Purge Replies transmitted by
                this server.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatRxErrUnrecognizedExtension {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.16";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this server with the error code
                
                'Unrecognized Extension'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatRxErrLoopDetected {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.17";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this server with the error code 'NHRP Loop Detected'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatRxErrProtoAddrUnreachable {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.18";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this server with the error code 'Protocol Address
                Unreachable'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatRxErrProtoError {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.19";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this server with the error code 'Protocol Error'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatRxErrSduSizeExceeded {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.20";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this server with the error code 'NHRP SDU Size
                Exceeded'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatRxErrInvalidExtension {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.21";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this server with the error code 'Invalid Extension'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatRxErrInvalidResReplyReceived {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.22";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets received
                by this server with the error code 'Invalid Resolution
                Reply Received'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatRxErrAuthenticationFailure {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.23";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                received by this server with the error code
                'Authentication Failure'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatRxErrHopCountExceeded {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.24";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                received by this server with the error code
                'Hop Count Exceeded'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatTxErrUnrecognizedExtension {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.25";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                transmitted by this server with the error code
                'Unrecognized Extension'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatTxErrLoopDetected {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.26";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                transmitted by this server with the error code
                'NHRP Loop Detected'.
                
                
                
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatTxErrProtoAddrUnreachable {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.27";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                transmitted by this server with the error code
                'Protocol Address Unreachable'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatTxErrProtoError {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.28";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                transmitted by this server with the error
                code 'Protocol Error'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatTxErrSduSizeExceeded {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.29";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                transmitted by this server with the error code
                'NHRP SDU Size Exceeded'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatTxErrInvalidExtension {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.30";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                transmitted by this server with the error code
                
                'Invalid Extension'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatTxErrAuthenticationFailure {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.31";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                transmitted by this server with the error code
                'Authentication Failure'.
                
                
                
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatTxErrHopCountExceeded {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.32";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets
                transmitted by this server with the error
                code 'Hop Count Exceeded'.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
                reference
                  "Section 5.2.7 NHRP Error Indication, RFC 2332 [17].";
    
              }
    
              leaf nhrpServerStatFwResolveReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.33";
                type yang:counter32;
                description
                  "The number of NHRP Resolution Requests
                forwarded by this server acting as a transit NHS.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatFwResolveReply {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.34";
                type yang:counter32;
                description
                  "The number of NHRP Resolution Replies forwarded
                by this server acting as a transit NHS.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatFwRegisterReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.35";
                type yang:counter32;
                description
                  "The number of NHRP Registration Requests forwarded
                by this server acting as a transit NHS.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatFwRegisterReply {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.36";
                type yang:counter32;
                description
                  "The number of NHRP Registration Replies forwarded
                by this server acting as a transit NHS.
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatFwPurgeReq {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.37";
                type yang:counter32;
                description
                  "The number of NHRP Purge Requests forwarded
                by this server acting as a transit NHS.
                
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatFwPurgeReply {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.38";
                type yang:counter32;
                description
                  "The number of NHRP Purge Replies forwarded by this
                server acting as a transit NHS.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatFwErrorIndication {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.39";
                type yang:counter32;
                description
                  "The number of NHRP Error Indication packets forwarded
                by this server acting as a transit NHS.
                
                Discontinuities in the value of this counter can occur
                at re-initialization of the management system, at
                NHRP Server re-initialization and at
                other times as indicated by the value of
                nhrpServerStatDiscontinuityTime.";
              }
    
              leaf nhrpServerStatDiscontinuityTime {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.2.1.71.1.3.4.1.40";
                type yang:timestamp;
                description
                  "The value of sysUpTime on the most recent occasion at
                which any one or more of this Server's counters
                suffered a discontinuity.  If no such discontinuities
                have occurred since the last re-initialization of the
                
                
                
                local management subsystem or the NHRP Server
                re-initialization associated with this entry, then
                this object contains a zero value.";
                reference
                  "RFC 2233 [18].";
    
              }
            }  // list nhrpServerStatEntry
          }  // container nhrpServerStatTable
        }  // container NHRP-MIB
      }  // module NHRP-MIB
    

© 2023 YumaWorks, Inc. All rights reserved.