Observium_CE/mibs/radlan/MARVELL-LBD-MIB

126 lines
3.7 KiB
Plaintext

MARVELL-LBD-MIB DEFINITIONS ::= BEGIN
-- Title: MARVELLLBD Configuration
-- Version: 7.45.00.00
-- Date: 24-Oct-2007
--
IMPORTS
TruthValue,TEXTUAL-CONVENTION FROM SNMPv2-TC
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
ifIndex FROM IF-MIB
rnd FROM RADLAN-MIB;
rlLbd MODULE-IDENTITY
LAST-UPDATED "201505290000Z"
ORGANIZATION "Marvell Semiconductor, Inc."
CONTACT-INFO
"www.marvell.com"
DESCRIPTION
"The private MIB module definition for Loopback Detection MIB."
REVISION "201505290000Z"
DESCRIPTION
"Add multicast-mac-addr value for rlLbdMode."
REVISION "200711070000Z"
DESCRIPTION
"Initial version of this MIB."
::= { rnd 127 }
-------------------------------------------------------------------------------
rlLbdEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable Loopback Detection in the switch."
::= { rlLbd 1 }
-------------------------------------------------------------------------------
rlLbdDetectionInterval OBJECT-TYPE
SYNTAX INTEGER(1..60)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time in seconds that should pass between unicast LBD packets."
::= { rlLbd 2 }
-------------------------------------------------------------------------------
rlLbdMode OBJECT-TYPE
SYNTAX INTEGER {
source-mac-addr (1),
base-mac-addr (2),
multicast-mac-addr (3),
broadcast-mac-addr (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Loopback detection mode."
::= { rlLbd 3 }
-------------------------------------------------------------------------------
rlLbdPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlLbdPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains Admin configuration and operational status per port."
::= { rlLbd 4 }
rlLbdPortEntry OBJECT-TYPE
SYNTAX RlLbdPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represent a port.
Per port contains LBD Admin configuration (SET) and status (GET),
LBD Operational status and LBD Vlan configuration (SET) and status (GET)."
INDEX { ifIndex }
::= { rlLbdPortTable 1 }
RlLbdPortEntry ::= SEQUENCE {
rlLbdPortAdminStatus INTEGER,
rlLbdPortOperStatus INTEGER
}
rlLbdPortAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable Loopback Detection on port"
DEFVAL { disabled }
::= { rlLbdPortEntry 1 }
rlLbdPortOperStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive (1),
active (2),
loopDetected (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates Loopback Detection operational status on port.
'inactive' means that the port is not working in loop-detected operational state;
'active' means that the port is Up and working in state of loop-detecting;
'loop-detected' means that the system has detected loop on the port."
DEFVAL { inactive }
::= { rlLbdPortEntry 2 }
END