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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
CISCOSB-rlLcli-MIB DEFINITIONS ::= BEGIN
-- Title: CISCOSB LCLI MIB
-- Version: 7.36
-- Date: 26 Mar 2004
--
IMPORTS
switch001 FROM CISCOSB-MIB
TruthValue, DisplayString, RowStatus FROM SNMPv2-TC
Unsigned32, TimeTicks,
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI;
rlLCli MODULE-IDENTITY
LAST-UPDATED "200503280000Z"
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 CISCOSB CLI MIB."
REVISION "200707260000Z"
DESCRIPTION
"Removed ranges of rlLCliTimeout, rlLCliSshTimeout, rlLCliTelnetTimeout since the range is dynamic
according to device capabilities. "
REVISION "200504110000Z"
DESCRIPTION
"Changed lower range of rlLCliTimeout, rlLCliSshTimeout, rlLCliTelnetTimeout to 0
to support 0 as 'no timeout' "
REVISION "200503280000Z"
DESCRIPTION
"1) Added Module-identity range.
2) Changed description of rlLCliMibVersion
3) Added ranges to rlLCliTimeout, rlLCliSshTimeout, rlLCliTelnetTimeout "
REVISION "200403260000Z"
DESCRIPTION
"Initial version of this MIB."
::= { switch001 74 }
rlLCliMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 3."
::= { rlLCli 1 }
rlLCliTimeout OBJECT-TYPE
SYNTAX Unsigned32 (0..3932159)
-- (0..65535*60+59)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LCLI Timeout indicates the interval in seconds, that
the system waits until user input is detected."
DEFVAL {600}
::= { rlLCli 2 }
rlLCliHistoryEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if command history function is supported."
DEFVAL {true}
::= { rlLCli 3 }
rlLCliHistorySize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates number of commands that the system will record
in its history buffer."
DEFVAL {10}
::= { rlLCli 4 }
rlLcliCommandLevelTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlLcliCommandLevelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This Table maps a CLI command to its level. "
::= { rlLCli 5 }
rlLcliCommandLevelEntry OBJECT-TYPE
SYNTAX RlLcliCommandLevelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table."
INDEX {rlLcliCommandLevelCommandName,
rlLcliCommandLevelContextName }
::= { rlLcliCommandLevelTable 1 }
RlLcliCommandLevelEntry ::= SEQUENCE {
rlLcliCommandLevelCommandName DisplayString,
rlLcliCommandLevelContextName DisplayString,
rlLcliCommandLevelInsertTime TimeTicks,
rlLcliCommandLevelCommandLevel INTEGER,
rlLcliCommandLevelActionMode INTEGER,
rlLcliCommandLevelStatus RowStatus
}
rlLcliCommandLevelCommandName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The CLI command name "
::= { rlLcliCommandLevelEntry 1 }
rlLcliCommandLevelContextName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The CLI context ID which the command name is associated with "
::= { rlLcliCommandLevelEntry 2 }
rlLcliCommandLevelInsertTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time elapsed until this entry was created."
::= { rlLcliCommandLevelEntry 3 }
rlLcliCommandLevelCommandLevel OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The level which is associated with the command name "
::= { rlLcliCommandLevelEntry 4 }
rlLcliCommandLevelActionMode OBJECT-TYPE
SYNTAX INTEGER {
set (1),
reset (2),
setAll (3),
resetAll (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The level action which is associated with the command name "
DEFVAL { set }
::= { rlLcliCommandLevelEntry 5 }
rlLcliCommandLevelStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The status of the commandLevel table entry. "
::= { rlLcliCommandLevelEntry 6 }
rlLCliSshTimeout OBJECT-TYPE
SYNTAX Unsigned32 (0..3932159)
-- (0..65535*60+59)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LCLI Timeout indicates the interval in seconds, that
the system waits until user input is detected on SSH LCLI."
DEFVAL {600}
::= { rlLCli 6 }
rlLCliTelnetTimeout OBJECT-TYPE
SYNTAX Unsigned32 (0..3932159)
-- (0..65535*60+59)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LCLI Timeout indicates the interval in seconds, that
the system waits until user input is detected on telnet LCLI."
DEFVAL {600}
::= { rlLCli 7 }
rlLCliTelnetHistoryEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if command history function is supported for Telnet."
DEFVAL {true}
::= { rlLCli 8 }
rlLCliTelnetHistorySize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates number of commands that the system will record
in its history buffer for Telnet."
DEFVAL {10}
::= { rlLCli 9 }
rlLCliSshHistoryEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if command history function is supported for Ssh."
DEFVAL {true}
::= { rlLCli 10 }
rlLCliSshHistorySize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates number of commands that the system will record
in its history buffer for Ssh."
DEFVAL {10}
::= { rlLCli 11 }
END
|