-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-ENTITY-DISPLAY-MIB-V1SMI.my
347 lines (315 loc) · 9.24 KB
/
CISCO-ENTITY-DISPLAY-MIB-V1SMI.my
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
-- MIB file created 07-Jun-2011 14:35:13, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-ENTITY-DISPLAY-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-ENTITY-DISPLAY-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue
FROM SNMPv2-TC-v1
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
entPhysicalIndex
FROM ENTITY-MIB
ciscoMgmt
FROM CISCO-SMI
Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212;
ciscoEntityDisplayMIB OBJECT IDENTIFIER ::= { ciscoMgmt 344 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200910050000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- This MIB module provides information about the
-- status of display devices such as Light Emitting
-- Diodes (LEDs) and alphanumeric displays present
-- on the physical entities contained by the managed
-- system.
-- RevDate
-- 200910050000Z
-- RevDescr
-- Added the enumeration 'greenAndAmber' to
-- CDisplayColor TEXTUAL-CONVENTION.
-- Added support for ceDisplayBeaconGroup.
-- RevDate
-- 200303200000Z
-- RevDescr
-- Initial version of this MIB.
ciscoEntityDisplayMIBObjects OBJECT IDENTIFIER ::= { ciscoEntityDisplayMIB 1 }
ceDisplayMIBConformance OBJECT IDENTIFIER ::= { ciscoEntityDisplayMIB 2 }
ceDisplayMIBCompliances OBJECT IDENTIFIER ::= { ceDisplayMIBConformance 1 }
ceDisplayMIBGroups OBJECT IDENTIFIER ::= { ceDisplayMIBConformance 2 }
CDisplayType ::= INTEGER {
led(1),
alphanumeric(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An integer value that indicates the type of
-- display device.
CDisplayColor ::= INTEGER {
unknown(1),
white(2),
red(3),
green(4),
yellow(5),
amber(6),
blue(7),
greenAndAmber(8)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An integer value that describes the color of the
-- display.
--
-- 'greenAndAmber' - Indicates that the display color
-- toggles between green and amber.
CDisplayState ::= INTEGER {
unknown(1),
off(2),
on(3),
blinking(4)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An integer value that describes the state of the
-- display.
ceDisplayTable OBJECT-TYPE
SYNTAX SEQUENCE OF CeDisplayEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides information about the display
devices on the physical entities in the managed
system and their current display status."
::= { ciscoEntityDisplayMIBObjects 1 }
ceDisplayEntry OBJECT-TYPE
SYNTAX CeDisplayEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the ceDisplayTable that provides
information about an LED or an alphanumeric display
in the system including its current display status."
INDEX { entPhysicalIndex, ceDisplayIndex }
::= { ceDisplayTable 1 }
CeDisplayEntry ::= SEQUENCE {
ceDisplayIndex Gauge,
ceDisplayType CDisplayType,
ceDisplayName SnmpAdminString,
ceDisplayState CDisplayState,
ceDisplayColor CDisplayColor,
ceDisplayText SnmpAdminString
}
ceDisplayIndex OBJECT-TYPE
SYNTAX Gauge(1..1024)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An arbitrary index that uniquely identifies an LED or
an alphanumeric display on the physical entity
identified by entPhysicalIndex."
::= { ceDisplayEntry 1 }
ceDisplayType OBJECT-TYPE
SYNTAX CDisplayType
-- Rsyntax INTEGER {
-- led(1),
-- alphanumeric(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the type of display described
in this entry. i.e. whether it is an LED display or
an alphanumeric display."
::= { ceDisplayEntry 2 }
ceDisplayName OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object provides a human-readable string which is
the name for the display device specified in this entry."
::= { ceDisplayEntry 3 }
ceDisplayState OBJECT-TYPE
SYNTAX CDisplayState
-- Rsyntax INTEGER {
-- unknown(1),
-- off(2),
-- on(3),
-- blinking(4)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the current display state for
the display specified in this entry."
::= { ceDisplayEntry 4 }
ceDisplayColor OBJECT-TYPE
SYNTAX CDisplayColor
-- Rsyntax INTEGER {
-- unknown(1),
-- white(2),
-- red(3),
-- green(4),
-- yellow(5),
-- amber(6),
-- blue(7),
-- greenAndAmber(8)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the color currently seen on
the display specified in this entry. If the display
specified by this entry is an alphanumeric display,
i.e. ceDisplayType is of type 'alphanumeric' then,
color may not apply and the agent may choose to
indicate this by setting this object to 'unknown'."
::= { ceDisplayEntry 5 }
ceDisplayText OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object provides a human-readable string which is
the text currently displayed in the alphanumeric display
specified in this entry. If the display specified by
this entry is an LED, i.e. ceDisplayType is of type 'led'
then, this object would be an empty string."
::= { ceDisplayEntry 6 }
ceDisplayBeaconTable OBJECT-TYPE
SYNTAX SEQUENCE OF CeDisplayBeaconEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides functionality to manage
beacon display devices in the managed system."
::= { ciscoEntityDisplayMIBObjects 2 }
ceDisplayBeaconEntry OBJECT-TYPE
SYNTAX CeDisplayBeaconEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry containing management information of
beacon functionality of a particular beacon
display device.
Only those display devices, as specified by
entPhysicalIndex in ENTITY-MIB, that support
beacon functionality will be populated in this
table."
INDEX { entPhysicalIndex, ceDisplayIndex }
::= { ceDisplayBeaconTable 1 }
CeDisplayBeaconEntry ::= SEQUENCE {
ceDisplayBeaconEnabled TruthValue
}
ceDisplayBeaconEnabled OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies if the beacon functionality is
administratively enabled for this display device.
'true' - beacon functionality is administratively
enabled
'false' - beacon functionality is administratively
disabled."
::= { ceDisplayBeaconEntry 1 }
ceDisplayGroup OBJECT IDENTIFIER ::= { ceDisplayMIBGroups 1 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of managed objects that provide information
-- about a display in the system including its current state.
-- objects
-- ceDisplayType, ceDisplayName, ceDisplayState
ceDisplayLEDGroup OBJECT IDENTIFIER ::= { ceDisplayMIBGroups 2 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects relevant to LED display.
-- objects
-- ceDisplayColor
ceDisplayAlphaNumericGroup OBJECT IDENTIFIER ::= { ceDisplayMIBGroups 3 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects relevant to alphanumeric display.
-- objects
-- ceDisplayText
ceDisplayBeaconGroup OBJECT IDENTIFIER ::= { ceDisplayMIBGroups 4 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects relevant to beacon
-- functionality.
-- objects
-- ceDisplayBeaconEnabled
ceDisplayMIBCompliance OBJECT IDENTIFIER ::= { ceDisplayMIBCompliances 1 }
-- MODULE-COMPLIANCE
-- Status
-- deprecated
-- Descr
-- The compliance statement for entities that implement the
-- CISCO-ENTITY-DISPLAY-MIB.
--
-- This compliance statement is deprecated and superceded by
-- ceDisplayMIBCompliance2.
-- Module
-- >>current<<
-- MandGroup
-- ceDisplayGroup
-- OptGroup
-- ceDisplayLEDGroup
-- OptGroup
-- ceDisplayAlphaNumericGroup
ceDisplayMIBCompliance2 OBJECT IDENTIFIER ::= { ceDisplayMIBCompliances 2 }
-- MODULE-COMPLIANCE
-- Status
-- mandatory
-- Descr
-- The compliance statement for entities that implement the
-- CISCO-ENTITY-DISPLAY-MIB.
-- Module
-- >>current<<
-- MandGroup
-- ceDisplayGroup
-- OptGroup
-- ceDisplayLEDGroup
-- OptGroup
-- ceDisplayAlphaNumericGroup
-- OptGroup
-- ceDisplayBeaconGroup
-- ObjVar
-- ceDisplayBeaconEnabled
END