-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCISCOSB-LBD-MIB
executable file
·86 lines (65 loc) · 2.5 KB
/
CISCOSB-LBD-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
CISCOSB-LBD-MIB DEFINITIONS ::= BEGIN
-- Title: CISCO 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
PortList FROM Q-BRIDGE-MIB
switch001 FROM CISCOSB-MIB;
rlLbd MODULE-IDENTITY
LAST-UPDATED "200711070000Z"
ORGANIZATION "Cisco Small Business"
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Home http://www.cisco.com/smb>;,
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(30..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)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Loopback detection mode."
::= { rlLbd 3 }
-------------------------------------------------------------------------------
rlLbdIfAdminStatus OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Loopback Detection admin status. Each port of the system is represented by a
single bit within the value of this object. If that bit has
a value of '1' then that port has enabled admin status,;
if the port is disabled, its bit has a value of '0'."
::= { rlLbd 4 }
END