diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/cisco/CISCOSB-LBD-MIB | |
| download | mibs-main.tar.gz mibs-main.zip | |
Diffstat (limited to 'MIBS/cisco/CISCOSB-LBD-MIB')
| -rw-r--r-- | MIBS/cisco/CISCOSB-LBD-MIB | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/MIBS/cisco/CISCOSB-LBD-MIB b/MIBS/cisco/CISCOSB-LBD-MIB new file mode 100644 index 0000000..80d913e --- /dev/null +++ b/MIBS/cisco/CISCOSB-LBD-MIB @@ -0,0 +1,128 @@ +CISCOSB-LBD-MIB DEFINITIONS ::= BEGIN + +-- Title: CISCOSB LBD 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 + switch001 FROM CISCOSB-MIB; + + + +rlLbd MODULE-IDENTITY + LAST-UPDATED "200711070001Z" + ORGANIZATION "Cisco Systems, Inc." + + CONTACT-INFO + "Postal: 170 West Tasman Drive + San Jose , CA 95134-1706 + USA + + + Website: Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>" + DESCRIPTION + "The private MIB module definition for Loopback Detection MIB." + REVISION "200711070000Z" + DESCRIPTION + "Initial version of this MIB." + ::= { switch001 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(5..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), + broadcast-mac-addr (3), + predefined-multicast-mac-addr (4), + user-defined-mac-addr (5) + } + 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" + ::= { 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 |