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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
|
-- ****************************************************************************
-- COLUBRIS-DEVICE-MIB definitions
--
-- Copyright (c) 2006, Colubris Networks, Inc.
-- All Rights Reserved.
--
-- Colubris Device MIB file.
--
-- ****************************************************************************
COLUBRIS-DEVICE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, Unsigned32, IpAddress, TimeTicks, Counter32
FROM SNMPv2-SMI
DisplayString, MacAddress
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
colubrisMgmtV2
FROM COLUBRIS-SMI
ColubrisNotificationEnable
FROM COLUBRIS-TC
;
colubrisDeviceMIB MODULE-IDENTITY
LAST-UPDATED "200609050000Z"
ORGANIZATION "Colubris Networks, Inc."
CONTACT-INFO "Colubris Networks
Postal: 200 West Street Ste 300
Waltham, Massachusetts 02451-1121
UNITED STATES
Phone: +1 781 684 0001
Fax: +1 781 684 0009
E-mail: cn-snmp@colubris.com"
DESCRIPTION "Colubris Device MIB."
::= { colubrisMgmtV2 23 }
-- colubrisDeviceMIB definition
colubrisDeviceMIBObjects OBJECT IDENTIFIER ::= { colubrisDeviceMIB 1 }
-- colubris Device groups
coDeviceConfigGroup OBJECT IDENTIFIER ::= { colubrisDeviceMIBObjects 1 }
coDeviceDiscoveryGroup OBJECT IDENTIFIER ::= { colubrisDeviceMIBObjects 2 }
coDeviceInformationGroup OBJECT IDENTIFIER ::= { colubrisDeviceMIBObjects 3 }
coDeviceStatusGroup OBJECT IDENTIFIER ::= { colubrisDeviceMIBObjects 4 }
-- The Device Config Group
coDeviceStateChangeNotificationEnabled OBJECT-TYPE
SYNTAX ColubrisNotificationEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies if the coDeviceStateChangeNotification notification
is generated."
DEFVAL { disable }
::= { coDeviceConfigGroup 1 }
coDeviceAuthorizationFailureNotificationEnabled OBJECT-TYPE
SYNTAX ColubrisNotificationEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies if the coDeviceAuthorizationFailureNotification
notification is generated."
DEFVAL { enable }
::= { coDeviceConfigGroup 2 }
coDeviceSecurityFailureNotificationEnabled OBJECT-TYPE
SYNTAX ColubrisNotificationEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies if the coDeviceSecurityFailureNotification
notification is generated."
DEFVAL { enable }
::= { coDeviceConfigGroup 3 }
coDeviceFirmwareFailureNotificationEnabled OBJECT-TYPE
SYNTAX ColubrisNotificationEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies if the coDeviceFirmwareFailureNotification
notification is generated."
DEFVAL { enable }
::= { coDeviceConfigGroup 4 }
coDeviceConfigurationFailureNotificationEnabled OBJECT-TYPE
SYNTAX ColubrisNotificationEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies if the coDeviceConfigurationFailureNotification
notification is generated."
DEFVAL { enable }
::= { coDeviceConfigGroup 5 }
-- The Device Discovery Group
coDeviceDiscoveryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceDiscoveryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device discovery attributes."
::= { coDeviceDiscoveryGroup 1 }
coDeviceDiscoveryEntry OBJECT-TYPE
SYNTAX CoDeviceDiscoveryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceDiscoveryTable.
coDevDisIndex - Uniquely identifies a device on the
MultiService Controller."
INDEX { coDevDisIndex }
::= { coDeviceDiscoveryTable 1 }
CoDeviceDiscoveryEntry ::= SEQUENCE
{
coDevDisIndex Integer32,
coDevDisSerialNumber DisplayString,
coDevDisMacAddress MacAddress,
coDevDisIpAddress IpAddress,
coDevDisState INTEGER,
coDevDisSystemName DisplayString,
coDevDisLocation DisplayString,
coDevDisContact DisplayString,
coDevDisGroupName DisplayString,
coDevDisConnectionTime Counter32
}
coDevDisIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Specifies the index of the device."
::= { coDeviceDiscoveryEntry 1 }
coDevDisSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Device serial number."
::= { coDeviceDiscoveryEntry 2 }
coDevDisMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Ethernet MAC address of the device."
::= { coDeviceDiscoveryEntry 3 }
coDevDisIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "IP address of the device."
::= { coDeviceDiscoveryEntry 4 }
coDevDisState OBJECT-TYPE
SYNTAX INTEGER
{
disconnected(1),
authorized(2),
join(3),
firmware(4),
security(5),
configuration(6),
running(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Device operational state."
::= { coDeviceDiscoveryEntry 5 }
coDevDisSystemName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Name assigned to the device by the configuration tool."
::= { coDeviceDiscoveryEntry 6 }
coDevDisLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Location assigned to the device by the configuration tool."
::= { coDeviceDiscoveryEntry 7 }
coDevDisContact OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Contact assigned to the device by the configuration tool."
::= { coDeviceDiscoveryEntry 8 }
coDevDisGroupName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies the group that the device belongs to."
::= { coDeviceDiscoveryEntry 9 }
coDevDisConnectionTime OBJECT-TYPE
SYNTAX Counter32
UNITS "minutes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Elapsed time in minutes since the device was last authorized."
::= { coDeviceDiscoveryEntry 10 }
-- The Device Information Group
coDeviceInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device information attributes."
::= { coDeviceInformationGroup 1 }
coDeviceInfoEntry OBJECT-TYPE
SYNTAX CoDeviceInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceInfoTable.
coDevDisIndex - Uniquely identifies a device on the
MultiService Controller."
AUGMENTS { coDeviceDiscoveryEntry }
::= { coDeviceInfoTable 1 }
CoDeviceInfoEntry ::= SEQUENCE
{
coDevInfoProductType OBJECT IDENTIFIER,
coDevInfoProductName DisplayString,
coDevInfoFirmwareRevision DisplayString,
coDevInfoBootRevision DisplayString,
coDevInfoHardwareRevision DisplayString
}
coDevInfoProductType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Refer to a Colubris product inside colubrisProductsMIB."
::= { coDeviceInfoEntry 1 }
coDevInfoProductName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Colubris Networks product name for the device."
::= { coDeviceInfoEntry 2 }
coDevInfoFirmwareRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Revision number of the device firmware."
::= { coDeviceInfoEntry 3 }
coDevInfoBootRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Revision number of the device boot loader."
::= { coDeviceInfoEntry 4 }
coDevInfoHardwareRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Revision number of the system hardware."
::= { coDeviceInfoEntry 5 }
-- The Device Status Group
coDeviceStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CoDeviceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Device status attributes."
::= { coDeviceStatusGroup 1 }
coDeviceStatusEntry OBJECT-TYPE
SYNTAX CoDeviceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the coDeviceStatusTable.
coDevDisIndex - Uniquely identifies a device on the
MultiService Controller."
AUGMENTS { coDeviceDiscoveryEntry }
::= { coDeviceStatusTable 1 }
CoDeviceStatusEntry ::= SEQUENCE
{
coDevStUpTime TimeTicks,
coDevStLoadAverage1Min Unsigned32,
coDevStLoadAverage5Min Unsigned32,
coDevStLoadAverage15Min Unsigned32,
coDevStCpuUseNow Unsigned32,
coDevStCpuUse5Sec Unsigned32,
coDevStCpuUse10Sec Unsigned32,
coDevStCpuUse20Sec Unsigned32,
coDevStRamTotal Unsigned32,
coDevStRamFree Unsigned32,
coDevStRamBuffer Unsigned32,
coDevStRamCached Unsigned32,
coDevStStorageUsePermanent Unsigned32,
coDevStStorageUseTemporary Unsigned32
}
coDevStUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Time elapsed after the device powered up."
::= { coDeviceStatusEntry 1 }
coDevStLoadAverage1Min OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average number of processes running during the last minute."
::= { coDeviceStatusEntry 2 }
coDevStLoadAverage5Min OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average number of processes running during the last 5 minutes."
::= { coDeviceStatusEntry 3 }
coDevStLoadAverage15Min OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average number of processes running during the last 15 minutes."
::= { coDeviceStatusEntry 4 }
coDevStCpuUseNow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current CPU usage."
::= { coDeviceStatusEntry 5 }
coDevStCpuUse5Sec OBJECT-TYPE
SYNTAX Unsigned32
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average CPU usage during the last 5 seconds."
::= { coDeviceStatusEntry 6 }
coDevStCpuUse10Sec OBJECT-TYPE
SYNTAX Unsigned32
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average CPU usage during the last 10 seconds."
::= { coDeviceStatusEntry 7 }
coDevStCpuUse20Sec OBJECT-TYPE
SYNTAX Unsigned32
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average CPU usage during the last 20 seconds."
::= { coDeviceStatusEntry 8 }
coDevStRamTotal OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Kb"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total system RAM."
::= { coDeviceStatusEntry 9 }
coDevStRamFree OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Kb"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Available system RAM."
::= { coDeviceStatusEntry 10 }
coDevStRamBuffer OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Kb"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Memory used by the buffers."
::= { coDeviceStatusEntry 11 }
coDevStRamCached OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Kb"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Memory used by the system cache."
::= { coDeviceStatusEntry 12 }
coDevStStorageUsePermanent OBJECT-TYPE
SYNTAX Unsigned32
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Percentage of the permanent storage in use."
::= { coDeviceStatusEntry 13 }
coDevStStorageUseTemporary OBJECT-TYPE
SYNTAX Unsigned32
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Percentage of the temporary storage in use."
::= { coDeviceStatusEntry 14 }
-- Device notifications
colubrisDeviceMIBNotificationPrefix OBJECT IDENTIFIER ::= { colubrisDeviceMIB 2 }
colubrisDeviceMIBNotifications OBJECT IDENTIFIER ::= { colubrisDeviceMIBNotificationPrefix 0 }
coDeviceStateChangeNotification NOTIFICATION-TYPE
OBJECTS {
coDevDisSerialNumber,
coDevDisIpAddress,
coDevDisState,
coDevDisSystemName
}
STATUS current
DESCRIPTION "A coDeviceStateChangeNotification trap signifies that the
SNMP entity has detected a device state change."
::= { colubrisDeviceMIBNotifications 1 }
coDeviceAuthorizationFailureNotification NOTIFICATION-TYPE
OBJECTS {
coDevDisSerialNumber,
coDevDisIpAddress,
coDevDisState,
coDevDisSystemName
}
STATUS current
DESCRIPTION "A coDeviceAuthorizationFailureNotification trap
signifies that the SNMP entity has detected a device
authentication failure."
::= { colubrisDeviceMIBNotifications 2 }
coDeviceSecurityFailureNotification NOTIFICATION-TYPE
OBJECTS {
coDevDisSerialNumber,
coDevDisIpAddress,
coDevDisState,
coDevDisSystemName
}
STATUS current
DESCRIPTION "A coDeviceSecurityFailureNotification trap signifies
that the SNMP entity has detected a device connection
failure."
::= { colubrisDeviceMIBNotifications 3 }
coDeviceFirmwareFailureNotification NOTIFICATION-TYPE
OBJECTS {
coDevDisSerialNumber,
coDevDisIpAddress,
coDevDisState,
coDevDisSystemName
}
STATUS current
DESCRIPTION "A coDeviceFirmwareFailureNotification trap signifies
that the SNMP entity has detected a device firmware
failure."
::= { colubrisDeviceMIBNotifications 4 }
coDeviceConfigurationFailureNotification NOTIFICATION-TYPE
OBJECTS {
coDevDisSerialNumber,
coDevDisIpAddress,
coDevDisState,
coDevDisSystemName
}
STATUS current
DESCRIPTION "A coDeviceConfigurationFailureNotification trap
signifies that the SNMP entity has detected a device
configuration failure."
::= { colubrisDeviceMIBNotifications 5 }
-- conformance information
colubrisDeviceMIBConformance OBJECT IDENTIFIER ::= { colubrisDeviceMIB 3 }
colubrisDeviceMIBCompliances OBJECT IDENTIFIER ::= { colubrisDeviceMIBConformance 1 }
colubrisDeviceMIBGroups OBJECT IDENTIFIER ::= { colubrisDeviceMIBConformance 2 }
-- compliance statements
colubrisDeviceMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for the Device MIB."
MODULE MANDATORY-GROUPS
{
colubrisDeviceConfigMIBGroup,
colubrisDeviceDiscoveryMIBGroup,
colubrisDeviceInformationMIBGroup,
colubrisDeviceStatusMIBGroup,
colubrisDeviceNotificationGroup
}
::= { colubrisDeviceMIBCompliances 1 }
-- units of conformance
colubrisDeviceConfigMIBGroup OBJECT-GROUP
OBJECTS {
coDeviceStateChangeNotificationEnabled,
coDeviceAuthorizationFailureNotificationEnabled,
coDeviceSecurityFailureNotificationEnabled,
coDeviceFirmwareFailureNotificationEnabled,
coDeviceConfigurationFailureNotificationEnabled
}
STATUS current
DESCRIPTION "A collection of configuration objects."
::= { colubrisDeviceMIBGroups 1 }
colubrisDeviceDiscoveryMIBGroup OBJECT-GROUP
OBJECTS {
coDevDisSerialNumber,
coDevDisMacAddress,
coDevDisIpAddress,
coDevDisState,
coDevDisSystemName,
coDevDisLocation,
coDevDisContact,
coDevDisGroupName,
coDevDisConnectionTime
}
STATUS current
DESCRIPTION "A collection of objects for Device
discovery status."
::= { colubrisDeviceMIBGroups 2 }
colubrisDeviceInformationMIBGroup OBJECT-GROUP
OBJECTS {
coDevInfoProductType,
coDevInfoProductName,
coDevInfoFirmwareRevision,
coDevInfoBootRevision,
coDevInfoHardwareRevision
}
STATUS current
DESCRIPTION "A collection of objects for device
configuration items."
::= { colubrisDeviceMIBGroups 3 }
colubrisDeviceStatusMIBGroup OBJECT-GROUP
OBJECTS {
coDevStUpTime,
coDevStLoadAverage1Min,
coDevStLoadAverage5Min,
coDevStLoadAverage15Min,
coDevStCpuUseNow,
coDevStCpuUse5Sec,
coDevStCpuUse10Sec,
coDevStCpuUse20Sec,
coDevStRamTotal,
coDevStRamFree,
coDevStRamBuffer,
coDevStRamCached,
coDevStStorageUsePermanent,
coDevStStorageUseTemporary
}
STATUS current
DESCRIPTION "A collection of objects for device
status."
::= { colubrisDeviceMIBGroups 4 }
colubrisDeviceNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
coDeviceStateChangeNotification,
coDeviceAuthorizationFailureNotification,
coDeviceSecurityFailureNotification,
coDeviceFirmwareFailureNotification,
coDeviceConfigurationFailureNotification
}
STATUS current
DESCRIPTION "A collection of supported device notifications."
::= { colubrisDeviceMIBGroups 5 }
END
|