Observium_CE/mibs/hp/HPN-ICF-MPLSOAM-MIB

495 lines
16 KiB
Plaintext

-- ==================================================================
-- Copyright (c) 2010-2013 Hewlett-Packard Development Company, L.P.
--
-- Description: MPLSOAM MIB
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 2007-03-31 Created by Lixufu ID: 05023
-- ==================================================================
HPN-ICF-MPLSOAM-MIB DEFINITIONS ::= BEGIN
IMPORTS
hpnicfCommon
FROM HPN-ICF-OID-MIB
IpAddress, Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
TruthValue, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC;
hpnicfMplsOam MODULE-IDENTITY
LAST-UPDATED "200703310000Z" -- March 31, 2007 at 00:00 GMT
ORGANIZATION
""
CONTACT-INFO
""
DESCRIPTION
"This MIB contains objects to configure OAM module.
The Operation, Administration and Maintenance (OAM)
is an effective means for decreasing the cost of network maintenance.
The MPLS OAM is used to administrate and maintain MPLS."
::= { hpnicfCommon 79 }
HpnicfMplsOAMDefectType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An indication of the OAM's defect type:
1: dServer, server layer defect;
2: dPeerMe, peer network maintenance entity defect;
3: dLOCV, Loss of Connectivity Verification defect;
4: dTTSIMismatch, Trail Termination Source Identifier Mismatch defect;
5: dTTSIMismerge, Trail Termination Source Identifier Mismerge defect;
6: dExcess, receiving excess rate of CV/FFD;
7: dUnknown, unknown defect in the MPLS network..
8: rlsn down;
9: dLspDown;
10: MPLS OAM ME;
11: no defect."
SYNTAX INTEGER
{
dServer(1),
dPeerMe(2),
dLOCV(3),
dTTSIMismatch(4),
dTTSIMismerge(5),
dExcess(6),
dUnknown(7),
dRlsnDown(8),
dLspDown(9),
dME(10),
noDefect(11)
}
HpnicfMplsOAMDetectFreq ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An indication of the OAM's frequent type( ITU-T: Y.1711(0402) ):
For CV: the frequency is static. The value is 1/s.
For FFD: the frequency is set by user. The value
can be 10ms, 20ms, 50ms, 100ms, 200ms, 500ms.
Any other frequency is wrong.
1: 10ms;
2: 20ms;
3: 50ms;
4: 100ms;
5: 200ms;
6: 500ms;
7: 1000ms(only for cv)."
SYNTAX INTEGER
{
ffd10ms(1),
ffd20ms(2),
ffd50ms(3),
ffd100ms(4),
ffd200ms(5),
ffd500ms(6),
cv1000ms(7)
}
-- ==================================================================
--
-- ======================= definition begin =========================
--
-- ==================================================================
hpnicfMplsOamScalarGroup OBJECT IDENTIFIER ::= { hpnicfMplsOam 1 }
hpnicfMplsOamCapability OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Whether OAM is globally capable.
false: incapable;
true: capable;
The default value is incapable."
DEFVAL { false }
::= { hpnicfMplsOamScalarGroup 1 }
hpnicfMplsOamTrapOpen OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Whether OAM trap is globally enabled.
false: disable;
true: enable;
The default value is disable."
DEFVAL { false }
::= { hpnicfMplsOamScalarGroup 2 }
hpnicfMplsOamTable OBJECT IDENTIFIER ::= { hpnicfMplsOam 2 }
hpnicfMplsOamIgrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpnicfMplsOamIgrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies per-LSP MPLS OAM ingress capability and
associated information, such as IgrLspName and IgrDetType."
::= { hpnicfMplsOamTable 1 }
hpnicfMplsOamIgrEntry OBJECT-TYPE
SYNTAX HpnicfMplsOamIgrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table is created by an LSR for every LSP
capable of supporting MPLS OAM at ingress."
INDEX
{
hpnicfMplsOamIgrIndex
}
::= { hpnicfMplsOamIgrTable 1 }
HpnicfMplsOamIgrEntry ::= SEQUENCE
{
hpnicfMplsOamIgrIndex Unsigned32,
hpnicfMplsOamIgrLspName OCTET STRING,
hpnicfMplsOamIgrDetectType INTEGER,
hpnicfMplsOamIgrDetectFreq HpnicfMplsOAMDetectFreq,
hpnicfMplsOamIgrRevType INTEGER,
hpnicfMplsOamIgrRevLspName OCTET STRING,
hpnicfMplsOamIgrLspId Integer32,
hpnicfMplsOamIgrEnable TruthValue,
hpnicfMplsOamIgrDefectType HpnicfMplsOAMDefectType,
hpnicfMplsOamIgrRowStatus RowStatus
}
hpnicfMplsOamIgrIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is an unique index for an OAM ingress entry in the OAM table."
::= { hpnicfMplsOamIgrEntry 1 }
hpnicfMplsOamIgrLspName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of an LSP.
It means the LSP name of the detected LSP."
::= { hpnicfMplsOamIgrEntry 2 }
hpnicfMplsOamIgrDetectType OBJECT-TYPE
SYNTAX INTEGER
{
cv(1),
ffd(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"There are two types of OAM packets, CV and FFD.
The CV flow is generated at the source LSR of the LSP with
a nominal frequency of 1/s and terminated at the sink LSR of the LSP.
FFD provides failure detection option for an LSP independent
of the CV based availability model and is not tied to the
CV insertion rate. Insertion rates at 1/s or faster may
also be used.
The CV/FFD packet contains a network-unique identifier (TTSI)
so that all types of defects can be detected.
1: CV;
2: FFD."
::= { hpnicfMplsOamIgrEntry 3 }
hpnicfMplsOamIgrDetectFreq OBJECT-TYPE
SYNTAX HpnicfMplsOAMDetectFreq
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indication of the OAM's frequent type."
::= { hpnicfMplsOamIgrEntry 4 }
hpnicfMplsOamIgrRevType OBJECT-TYPE
SYNTAX INTEGER
{
private(1),
share(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When an LSP is found to be in defect, the sink LSR of the LSP
should send BDI to inform the source LSR of the LSP, the BDI is
transferred through the reverse LSP.
The type of reverse LSP can be private or shared.
If private, then the reverse LSP can be used only by the oam ingress;
If shared, the reverse LSP which is shared between many forward
LSPs, whose source LSRs are the same and sink LSRs are the same.
1: private;
2: share."
::= { hpnicfMplsOamIgrEntry 5 }
hpnicfMplsOamIgrRevLspName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object indicates the name of the reverse LSP."
::= { hpnicfMplsOamIgrEntry 6 }
hpnicfMplsOamIgrLspId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For ingress, the object indicates the lsp ID of
the detected LSP."
::= { hpnicfMplsOamIgrEntry 7 }
hpnicfMplsOamIgrEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Whether one LSP is OAM enable.
If disable, LSP is not monitored;
If enable, CV/FFD is generated at the source LSR of the LSP and
checked at the sink LSR of the LSP, and user can set
other configuration.
false: The OAM function is disabled on the ingress;
true: The OAM function is enabled on the ingress."
DEFVAL { false }
::= { hpnicfMplsOamIgrEntry 8 }
hpnicfMplsOamIgrDefectType OBJECT-TYPE
SYNTAX HpnicfMplsOAMDefectType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication of the OAM's defect type."
::= { hpnicfMplsOamIgrEntry 9 }
hpnicfMplsOamIgrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation,
deletion and modification of rows, which support active
status and CreatAndGo, destroy operation.
To create a new row, hpnicfMplsOamIgrLspName, hpnicfMplsOamIgrDetectType,
hpnicfMplsOamIgrDetectFreq, hpnicfMplsOamIgrRevType, hpnicfMplsOamIgrRevLspName,
and hpnicfMplsOamIgrLspId must be specified."
::= { hpnicfMplsOamIgrEntry 10 }
hpnicfMplsOamEgrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpnicfMplsOamEgrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies per-LSP MPLS OAM capability and
associated information, such as DetectType, DetectFrequency."
::= { hpnicfMplsOamTable 2 }
hpnicfMplsOamEgrEntry OBJECT-TYPE
SYNTAX HpnicfMplsOamEgrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table is created by an LSR for every LSP
capable of supporting MPLS OAM at egress."
INDEX
{
hpnicfMplsOamEgrIndex
}
::= { hpnicfMplsOamEgrTable 1 }
HpnicfMplsOamEgrEntry ::= SEQUENCE
{
hpnicfMplsOamEgrIndex Unsigned32,
hpnicfMplsOamEgrLspName OCTET STRING,
hpnicfMplsOamEgrDetectType INTEGER,
hpnicfMplsOamEgrDetectFreq HpnicfMplsOAMDetectFreq,
hpnicfMplsOamEgrRevType INTEGER,
hpnicfMplsOamEgrRevLspName OCTET STRING,
hpnicfMplsOamEgrLsrId IpAddress,
hpnicfMplsOamEgrLspId Integer32,
hpnicfMplsOamEgrEnable TruthValue,
hpnicfMplsOamEgrDefectType HpnicfMplsOAMDefectType,
hpnicfMplsOamEgrRowStatus RowStatus
}
hpnicfMplsOamEgrIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a unique index for an OAM egress entry in the OAM table."
::= { hpnicfMplsOamEgrEntry 1 }
hpnicfMplsOamEgrLspName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object indicates the name of static LSP at egress."
::= { hpnicfMplsOamEgrEntry 2 }
hpnicfMplsOamEgrDetectType OBJECT-TYPE
SYNTAX INTEGER
{
cv(1),
ffd(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"There are two types of OAM packets, CV and FFD.
The CV flow is generated at the source LSR of the LSP with
a nominal frequency of 1/s and terminated at the sink LSR of the LSP.
FFD provides failure detection option for an LSP independent
of the CV based availability model and is not tied to the
CV insertion rate. Insertion rates at 1/s or faster may
also be used.
The CV/FFD packet contains a network-unique identifier (TTSI)
so that all types of defects can be detected.
1: CV;
2: FFD."
::= { hpnicfMplsOamEgrEntry 3 }
hpnicfMplsOamEgrDetectFreq OBJECT-TYPE
SYNTAX HpnicfMplsOAMDetectFreq
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indication of the OAM's frequent type."
::= { hpnicfMplsOamEgrEntry 4 }
hpnicfMplsOamEgrRevType OBJECT-TYPE
SYNTAX INTEGER
{
private(1),
share(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When an LSP is found to be in defect, the sink LSR of the LSP
should send BDI to inform the source LSR of the LSP, the BDI is
transferred through the reverse LSP.
The type of reverse LSP can be private or shared.
If private, then the reverse LSP can be used only when the only
LSP in defect;
If shared, the reverse LSP, which is shared between many forward
LSPs that have the same source LSRs and sink LSRs.
1: private;
2: share."
::= { hpnicfMplsOamEgrEntry 5 }
hpnicfMplsOamEgrRevLspName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object indicates the name of a reverse static-lsp."
::= { hpnicfMplsOamEgrEntry 6 }
hpnicfMplsOamEgrLsrId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object indicates the Ingress LSR ID of the LSP."
::= { hpnicfMplsOamEgrEntry 7 }
hpnicfMplsOamEgrLspId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object indicates the the Ingress session lsp ID of the
detected static-LSP."
::= { hpnicfMplsOamEgrEntry 8 }
hpnicfMplsOamEgrEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Whether one LSP is enabled with OAM.
If disable, LSP is not monitored;
If enable, CV/FFD is generated at the source LSR of the LSP and
checked at the sink LSR of the LSP, and user can set
other configuration.
false: The OAM function is disabled on the egress;
true: The OAM function is enabled on the egress."
DEFVAL { false }
::= { hpnicfMplsOamEgrEntry 9 }
hpnicfMplsOamEgrDefectType OBJECT-TYPE
SYNTAX HpnicfMplsOAMDefectType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication of the OAM's defect type."
::= { hpnicfMplsOamEgrEntry 10 }
hpnicfMplsOamEgrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation,
deletion and modification of rows, which support active
status and CreatAndGo, destroy operation.
To create a new row, hpnicfMplsOamEgrLspName, hpnicfMplsOamEgrDetectType,
hpnicfMplsOamEgrDetectFreq, hpnicfMplsOamEgrRevType, hpnicfMplsOamEgrRevLspName,
hpnicfMplsOamEgrLsrId and hpnicfMplsOamEgrLspId must be specified."
::= { hpnicfMplsOamEgrEntry 11 }
hpnicfMplsOamNotifications OBJECT IDENTIFIER ::= { hpnicfMplsOam 3 }
hpnicfMplsOamIgrLSPOutDefect NOTIFICATION-TYPE
OBJECTS
{
hpnicfMplsOamIgrLspName,
hpnicfMplsOamIgrDefectType
}
STATUS current
DESCRIPTION
"This notification is generated when the LSP is found
out of the defect state at the LSP ingress."
::= { hpnicfMplsOamNotifications 1 }
hpnicfMplsOamIgrLSPInDefect NOTIFICATION-TYPE
OBJECTS
{
hpnicfMplsOamIgrLspName,
hpnicfMplsOamIgrDefectType
}
STATUS current
DESCRIPTION
"This notification is generated when the LSP is found
in the defect state at the LSP ingress."
::= { hpnicfMplsOamNotifications 2 }
hpnicfMplsOamEgrLSPOutDefect NOTIFICATION-TYPE
OBJECTS
{
hpnicfMplsOamEgrLspName,
hpnicfMplsOamEgrDefectType
}
STATUS current
DESCRIPTION
"This notification is generated when the LSP is found
out of the defect state at the LSP egress."
::= { hpnicfMplsOamNotifications 3 }
hpnicfMplsOamEgrLSPInDefect NOTIFICATION-TYPE
OBJECTS
{
hpnicfMplsOamEgrLspName,
hpnicfMplsOamEgrDefectType
}
STATUS current
DESCRIPTION
"This notification is generated when the LSP is found
in the defect state at the LSP egress."
::= { hpnicfMplsOamNotifications 4 }
END