Commit version 24.12.13800
This commit is contained in:
@ -40,6 +40,10 @@ HP-ICF-OSPFV3-MIB DEFINITIONS ::= BEGIN
|
||||
DESCRIPTION "The MIB module contains HP proprietary
|
||||
extensions to the OSPFV3-MIB module."
|
||||
|
||||
REVISION "201803070000Z" -- March 7, 2018
|
||||
DESCRIPTION "Added hpicfOspfv3DistributeListEntry.
|
||||
Added hpicfOspfv3DistributeListGroup."
|
||||
|
||||
REVISION "201705180000Z"
|
||||
DESCRIPTION "Added hpicfOspfv3ReferenceCost.
|
||||
Added hpicfOspfv3IfFlagValue
|
||||
@ -1853,6 +1857,72 @@ hpicfOspfv3SpfReason OBJECT-TYPE
|
||||
DEFVAL { 0 }
|
||||
::= { hpicfOspfv3AreaLsdbStatsEntry 5 }
|
||||
|
||||
--Distribution List table
|
||||
hpicfOspfv3DistributeListTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HpicfOspfv3DistributeListEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "A table of route prefixes for filtering out
|
||||
intra-area routes that OSPFv3 should not install into
|
||||
local routing table. Any route that is contained by
|
||||
a range in this table (in other words, has a longer mask
|
||||
than that specified by hpicfOspfv3DistributeListPrefixLength
|
||||
and where the route destination ANDed with the
|
||||
hpicfOspfv3DistributeListPrefixLength is equal to
|
||||
hpicfOspfv3DistributeListAddr) will not be
|
||||
installed into FIB by OSPFv3."
|
||||
::= { hpicfOspfv3Objects 21 }
|
||||
|
||||
hpicfOspfv3DistributeListEntry OBJECT-TYPE
|
||||
SYNTAX HpicfOspfv3DistributeListEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "A single entry in the table. Any intra-area route,
|
||||
which is contained within the specified range will not
|
||||
be installed into FIB by OSPFv3. Entries in this
|
||||
table are created dynamically using the
|
||||
hpicfOspfv3DistributeListStatus object."
|
||||
INDEX { hpicfOspfv3DistributeListAddr,
|
||||
hpicfOspfv3DistributeListPrefixLength }
|
||||
::= { hpicfOspfv3DistributeListTable 1 }
|
||||
|
||||
HpicfOspfv3DistributeListEntry ::=
|
||||
SEQUENCE {
|
||||
hpicfOspfv3DistributeListAddr InetAddressIPv6,
|
||||
hpicfOspfv3DistributeListPrefixLength InetAddressPrefixLength,
|
||||
hpicfOspfv3DistributeListSeqNum Unsigned32,
|
||||
hpicfOspfv3DistributeListStatus RowStatus
|
||||
}
|
||||
|
||||
hpicfOspfv3DistributeListAddr OBJECT-TYPE
|
||||
SYNTAX InetAddressIPv6
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "The IP address of the range of route entries
|
||||
to exclude from installing into FIB by OSPFv3."
|
||||
::= { hpicfOspfv3DistributeListEntry 1 }
|
||||
|
||||
hpicfOspfv3DistributeListPrefixLength OBJECT-TYPE
|
||||
SYNTAX InetAddressPrefixLength
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "The mask for the range of route entries to
|
||||
exclude from installing into FIB by OSPFv3."
|
||||
::= { hpicfOspfv3DistributeListEntry 2 }
|
||||
|
||||
hpicfOspfv3DistributeListSeqNum OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "The sequence number of this entry."
|
||||
::= {hpicfOspfv3DistributeListEntry 3 }
|
||||
|
||||
hpicfOspfv3DistributeListStatus OBJECT-TYPE
|
||||
SYNTAX RowStatus
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "The status of this entry."
|
||||
::= { hpicfOspfv3DistributeListEntry 4 }
|
||||
|
||||
-- conformance information
|
||||
|
||||
@ -1959,6 +2029,11 @@ hpicfOspfv3SpfReason OBJECT-TYPE
|
||||
"The flags in this group will identify manual or
|
||||
global configuration of ospfv3 cost."
|
||||
|
||||
GROUP hpicfOspfv3DistributeListGroup
|
||||
DESCRIPTION
|
||||
"This group is mandatory for systems
|
||||
that support OSPFv3 intra-area routes."
|
||||
|
||||
::= { hpicfOspfv3Compliances 2 }
|
||||
|
||||
-- units of conformance
|
||||
@ -2162,4 +2237,15 @@ hpicfOspfv3SpfReason OBJECT-TYPE
|
||||
configuration."
|
||||
::= { hpicfOspfv3Groups 17 }
|
||||
|
||||
hpicfOspfv3DistributeListGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
hpicfOspfv3DistributeListSeqNum,
|
||||
hpicfOspfv3DistributeListStatus
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION "A collection of objects for controlling the
|
||||
installation of intra-area routes by OSPFv3."
|
||||
::= { hpicfOspfv3Groups 19 }
|
||||
|
||||
|
||||
END
|
||||
|
Reference in New Issue
Block a user