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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
|
-- *****************************************************************
-- CISCO-ENTITY-EXT-MIB.my
--
-- Cisco Extension to ENTITY-MIB(RFC2737)
--
-- April 2001, A S Kiran Koushik
-- May 2004, Arul Mozhi
-- Mar 2015, Neha Jagtap
--
-- Copyright (c) 2001-2018 by cisco Systems Inc.
-- All rights reserved.
--
-- *****************************************************************
CISCO-ENTITY-EXT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Unsigned32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
TruthValue
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
entPhysicalIndex,
entPhysicalEntry,
entPhysicalDescr,
entPhysicalName,
entPhysicalContainedIn
FROM ENTITY-MIB
Unsigned64
FROM CISCO-TC
ciscoMgmt
FROM CISCO-SMI;
ciscoEntityExtMIB MODULE-IDENTITY
LAST-UPDATED "201804040000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 W. Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-snmp@cisco.com"
DESCRIPTION
"This MIB is an extension of the ENTITY-MIB
specified in RFC2737.
This MIB module contains Cisco-defined extensions
to the entityPhysicalTable to represent information
related to entities of class module(entPhysicalClass
= 'module') which have a Processor.
A processor module is defined as a physical entity
that has a CPU, RAM and NVRAM so that
it can independently
- load a bootable image
- save configuration.
This module is the entry point for external
applications like SNMP Manager, CLI, FTP etc.
Line card is an interface card with at least a
Processor and RAM. This might be referred to as
Service Module in some cisco products.
A configuration register is a 16 bit
software register.
The configuration register is mainly used to
check for instructions on where to find the Cisco
Operating System software.
Some other functions of configuration register are:
- To select a boot source and default boot filename.
- To enable or disable the Break function.
- To control broadcast addresses.
- To set the console terminal baud rate.
- To load operating software from Flash memory.
- To allow us to manually boot the system using the
boot command at the bootstrap program prompt.
Booting is the process of initializing the
hardware and starting the Operating System."
REVISION "201804040000Z"
DESCRIPTION
"Added the following groups OBJECT-GROUP
ceExtNVRAMOverflowGroup
ceExtHCNVRAMGroup"
REVISION "201504170000Z"
DESCRIPTION
"Added ceExtUSBModemTable,
ceExtUSBModemPlugInNotif, ceExtUSBModemPlugOutNotif,
ceExtEntUsbModemNotifEnable."
REVISION "201409120000Z"
DESCRIPTION
"Changed the description ceExtEntDoorOpenNotif to
include ceExtEntDoorOpenNotif instead
of ceExtEntDoorCloseNotif."
REVISION "201403270000Z"
DESCRIPTION
"Changed the Max Access of ceExtEntDoorNotifEnable from
read-only to read-write."
REVISION "201308060000Z"
DESCRIPTION
"Added following object to ciscoEntityExtMIBNotifications
ceExtBreakOutPortInserted
ceExtBreakOutPortRemoved
Added following object to ceExtNotificationControlObjects
ceExtBreakOutPortNotifEnable
Added the following new groups to ciscoEntityExtMIBGroups
ceExtBreakOutPortNotifGroup
ceExtBreakOutPortNotifControlGroup.
Added a new compliance ciscoEntityExtMIBComplianceRev5 which
deprecates ciscoEntityExtMIBComplianceRev4
A port can be configured to act as multiple interfaces.
Ex: One Hundred GigE port can act as 10 TenGigE interface
Breakout is the term that can be used to define this behaviour.
Alternatively slice term is also used.
When a breakout config is applied on the interface, the base
interface will be replaced with multiple breakout interfaces.
Reference to the base interface will be removed from the system
and breakout interface will be made available. Vice versa will
happen when breakout config will be removed from the system."
REVISION "201308050000Z"
DESCRIPTION
"Added following new objects to ciscoEntityExtMIBNotifications.
ceExtEntDoorCloseNotif
ceExtEntDoorOpenNotif
Added following new groups to ciscoEntityExtMIBGroups.
ceExtNotificationControlObjects.
Added following new objects to ceExtNotificationControlObjects
ceExtEntDoorNotifEnable.
Added the following new groups to ciscoEntityExtMIBGroups
ceExtEntDoorNotifGroup
ceExtEntDoorNotifControlGroup.
Added a new compliance ciscoEntityExtMIBComplianceRev4 which
deprecates ciscoEntityExtMIBComplianceRev3."
REVISION "200811240000Z"
DESCRIPTION
"Added following new objects to ceExtPhysicalProcessorTable.
ceExtProcessorRamOverflow and ceExtHCProcessorRam
Added following new groups to ciscoEntityExtMIBGroups.
ceExtPhyProcessorOverflowGroup and ceExtPhyProcessorHCGroup.
Added a new compliance ciscoEntityExtMIBComplianceRev3 which
deprecates ciscoEntityExtMIBComplianceRev2."
REVISION "200407060000Z"
DESCRIPTION
"Added a new table object 'ceExtEntPhysicalTable' ."
REVISION "200403030000Z"
DESCRIPTION
"Importing Unsigned32 from SNMPv2-SMI, instead of CISCO-TC."
REVISION "200401260000Z"
DESCRIPTION
"Added new enum to ceExtEntityLEDType."
REVISION "200308240000Z"
DESCRIPTION
"Added ceExtEntityLEDTable. Added ceExtKickstartImageList to
ceExtConfigRegTable.
Added new group ciscoEntityExtLEDGroup.
Added group ceExtSysBootImageListGroupRev1."
REVISION "200105170000Z"
DESCRIPTION
"Corrected the description for the TC
ConfigRegisterValue."
REVISION "200104050000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 195 }
ciscoEntityExtMIBObjects OBJECT IDENTIFIER
::= { ciscoEntityExtMIB 1 }
-- textual conventions
ConfigRegisterValue ::= TEXTUAL-CONVENTION
DISPLAY-HINT "2x"
STATUS current
DESCRIPTION
"An Integer containing the value of config register.
The definition of individual bits from right to left
when set are as follows:
00 to
03 Boot Fields(Refer below for
explanation).
04 to
05 Not Used.
06 Causes system software to ignore the
contents of NVRAM.
07 Enable the original equipment
manufacturer (OEM) bit.
08 The Break function is disabled.
09 Not used.
10 Broadcast based on 0.0.0.0 IP address.
11 to
12 Defines the console baud rate as below:
Bits 11 & 12 unset: 9600 baud(default),
Bit 11 set & 12 unset: 4800 baud,
Bit 11 unset & 12 set: 1200 baud,
Bit 11 set & 12 set: 2400 baud
13 Boots default Flash software if
network boot fails.
14 IP broadcasts do not have network
numbers.
15 Enables diagnostic messages and ignores
the contents of NVRAM.
Meanings for different values of Boot Fields
(Bits 00 to 03) are explained below:
Value(in hex) Description
------------ -----------
00 On powerup or reload, the system
remains at the ROM monitor prompt
(rommon>), awaiting a user command
to boot the system manually by means
of the rommon boot command.
01 On powerup or reload, the system loads
the system image found in onboard
Flash memory.
02 to On powerup or reload, the system loads
0F the system image specified by
ceExtSysBootImageList.
It tries to boot the
image in the order in which
the image names are entered in
ceExtSysBootImageList. If
it cannot boot any image in the
ceExtSysBootImageList, it
stays in ROM monitor mode."
SYNTAX OCTET STRING (SIZE (2))
BootImageList ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This contains a list of boot images,
each separated by the ';' (semi-colon) character.
The following provides a syntax for parsing a single
boot image list item.
<device>:[filename] | <URL>
<device> can be (but not limited to):
flash, bootflash, slot0, rom, C
The transfer protocol used in the <URL>
can be (but not limited to):
tftp, ftp, rcp, mop.
The following is en example containing two boot image
names:
disk0:c7100-ik2s-mz;tftp://dirt/c7100-ik2s-mz
If the filename is not specified, then the
first file on the <device> will be used.
If the last two characters in the returned value
are ';+' this indicates that additional boot image
items are configured on the device but can not
be returned because the maximum string size limitation
would be exceeded.
For example:
disk0:image1;disk0:image2;+"
SYNTAX OCTET STRING (SIZE (0..255))
-- ceExtPhysicalProcessorTable
ceExtPhysicalProcessorTable OBJECT-TYPE
SYNTAX SEQUENCE OF CeExtPhysicalProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ceExtPhysicalProcessorTable extends
the ENTITY-MIB entPhysicalTable for modules
(Non FRUs(Field Replacable Units) or FRUs)."
REFERENCE "RFC2737: Section 2.12.1"
::= { ciscoEntityExtMIBObjects 1 }
ceExtPhysicalProcessorEntry OBJECT-TYPE
SYNTAX CeExtPhysicalProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A ceExtPhysicalProcessorTable entry extends
a corresponding entPhysicalTable entry of class
module(entPhysicalClass = 'module').
A processor module or line card which
has a processor will have an entry in
this table.
A processor module or line card having
multiple processors and is a SMP(Symmetric
multi processor) system will have only
one entry corresponding to all the processors
since the resources defined below are shared.
A processor module or line card having
multiple processors and is not an SMP system
would register the processors as separate entities.
Entries are created by the agent at the system power-up
or module insertion.
Entries are removed when the module is reset or removed."
INDEX { entPhysicalIndex }
::= { ceExtPhysicalProcessorTable 1 }
CeExtPhysicalProcessorEntry ::= SEQUENCE {
ceExtProcessorRam Unsigned32,
ceExtNVRAMSize Unsigned32,
ceExtNVRAMUsed Unsigned32,
ceExtProcessorRamOverflow Unsigned32,
ceExtHCProcessorRam Unsigned64,
ceExtNVRAMSizeOverflow Unsigned32,
ceExtHCNVRAMSize Unsigned64,
ceExtNVRAMUsedOverflow Unsigned32,
ceExtHCNVRAMUsed Unsigned64
}
ceExtProcessorRam OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes of RAM available on the
Processor."
::= { ceExtPhysicalProcessorEntry 1 }
ceExtNVRAMSize OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes of NVRAM in the entity.
A value of 0 for this object means the entity
does not support NVRAM or NVRAM information
is not available."
::= { ceExtPhysicalProcessorEntry 2 }
ceExtNVRAMUsed OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes of NVRAM in use. This object
is irrelevant if ceExtNVRAMSize is 0."
::= { ceExtPhysicalProcessorEntry 3 }
ceExtProcessorRamOverflow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the upper 32-bit of ceExtProcessorRam.
This object needs to be supported only if the available RAM
bytes exceeds 32-bit, otherwise this object value would be set
to 0."
::= { ceExtPhysicalProcessorEntry 4 }
ceExtHCProcessorRam OBJECT-TYPE
SYNTAX Unsigned64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the total number of bytes of RAM
available on the Processor. This object is a 64-bit version
of ceExtProcessorRam."
::= { ceExtPhysicalProcessorEntry 5 }
ceExtNVRAMSizeOverflow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the upper 32-bit of ceExtNVRAMSize.
This object needs to be supported only if the available NVRAM
bytes exceeds 32-bit, otherwise this object value would be set
to 0."
::= { ceExtPhysicalProcessorEntry 6 }
ceExtHCNVRAMSize OBJECT-TYPE
SYNTAX Unsigned64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the total number of bytes of NVRAM
available on the Processor. This object is a 64-bit version
of ceExtNVRAMSize."
::= { ceExtPhysicalProcessorEntry 7 }
ceExtNVRAMUsedOverflow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the upper 32-bit of ceExtNVRAMUsed.
This object needs to be supported only if the used NVRAM
bytes exceeds 32-bit, otherwise this object value would be set
to 0."
::= { ceExtPhysicalProcessorEntry 8 }
ceExtHCNVRAMUsed OBJECT-TYPE
SYNTAX Unsigned64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the number of bytes of NVRAM used
on the Processor. This object is a 64-bit version of
ceExtHCNVRAMUsed."
::= { ceExtPhysicalProcessorEntry 9 }
ceExtConfigRegTable OBJECT-TYPE
SYNTAX SEQUENCE OF CeExtConfigRegEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ceExtConfigRegTable extends
the ENTITY-MIB entPhysicalTable."
REFERENCE "RFC2737: Section 2.12.1"
::= { ciscoEntityExtMIBObjects 2 }
ceExtConfigRegEntry OBJECT-TYPE
SYNTAX CeExtConfigRegEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A ceExtConfigRegTable entry extends
a corresponding entPhysicalTable entry of class
module which has a configuration register.
Entries are created by the agent at the system power-up
or module insertion.
Entries are removed when the module is reset or
removed."
INDEX { entPhysicalIndex }
::= { ceExtConfigRegTable 1 }
CeExtConfigRegEntry ::= SEQUENCE {
ceExtConfigRegister ConfigRegisterValue,
ceExtConfigRegNext ConfigRegisterValue,
ceExtSysBootImageList BootImageList,
ceExtKickstartImageList BootImageList
}
ceExtConfigRegister OBJECT-TYPE
SYNTAX ConfigRegisterValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of configuration register with which
the processor module booted."
::= { ceExtConfigRegEntry 1 }
ceExtConfigRegNext OBJECT-TYPE
SYNTAX ConfigRegisterValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of configuration register in the
processor module at next reboot. Just after
the reboot this has the same value as
ceExtConfigRegister."
::= { ceExtConfigRegEntry 2 }
ceExtSysBootImageList OBJECT-TYPE
SYNTAX BootImageList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The list of system boot images which
can be used for booting."
DEFVAL { "" }
::= { ceExtConfigRegEntry 3 }
ceExtKickstartImageList OBJECT-TYPE
SYNTAX BootImageList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The list of system kickstart images which
can be used for booting."
DEFVAL { "" }
::= { ceExtConfigRegEntry 4 }
-- ceExtEntityLEDTable
ceExtEntityLEDTable OBJECT-TYPE
SYNTAX SEQUENCE OF CeExtEntityLEDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of LED on an entity."
::= { ciscoEntityExtMIBObjects 3 }
ceExtEntityLEDEntry OBJECT-TYPE
SYNTAX CeExtEntityLEDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the ceExtEntityLEDTable,
containing information about an LED on an entity, identified by
entPhysicalIndex."
INDEX {
entPhysicalIndex,
ceExtEntityLEDType
}
::= { ceExtEntityLEDTable 1 }
CeExtEntityLEDEntry ::= SEQUENCE {
ceExtEntityLEDType INTEGER,
ceExtEntityLEDColor INTEGER
}
ceExtEntityLEDType OBJECT-TYPE
SYNTAX INTEGER {
status(1),
system(2),
active(3),
power(4),
battery(5)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of LED on this entity.
'status' - indicates the entity status.
'system' - indicates the overall system status.
'active' - the redundancy status of a module, for e.g.
supervisor module.
'power' - indicates sufficient power availability for all
modules.
'battery'- indicates the battery status."
REFERENCE
"Cisco MDS 9500 Series Hardware Installation Guide,
Product Overview."
::= { ceExtEntityLEDEntry 1 }
ceExtEntityLEDColor OBJECT-TYPE
SYNTAX INTEGER {
off(1),
green(2),
amber(3),
red(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The color of the LED."
REFERENCE
"Cisco MDS 9500 Series Multilayer Switches, Product
Overview."
::= { ceExtEntityLEDEntry 2 }
-- ceExtEntityPhysicalTable
ceExtEntPhysicalTable OBJECT-TYPE
SYNTAX SEQUENCE OF CeExtEntPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains additional information about
a particular physical entity.
This table augments the 'entPhysicalTable' of
the ENTITY-MIB."
REFERENCE "RFC2737: Section 2.12.1"
::= { ciscoEntityExtMIBObjects 4 }
ceExtEntPhysicalEntry OBJECT-TYPE
SYNTAX CeExtEntPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the 'ceExtEntPhysicalTable',
containing additional information about a physical entity,
identified by 'entPhysicalIndex'."
AUGMENTS { entPhysicalEntry }
::= { ceExtEntPhysicalTable 1 }
CeExtEntPhysicalEntry ::= SEQUENCE {
ceEntPhysicalSecondSerialNum SnmpAdminString
}
ceEntPhysicalSecondSerialNum OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the vendor-specific second
serial number string for the physical entity.
The first serial number string of the physical
entity is represented in the value of corresponding
instance of the 'entPhysicalSerialNum' object.
On the first instantiation of an physical entity, the value
of this object is the correct vendor-assigned second
serial number, if this information is available to the agent.
If the second serial number is unknown or non-existent, then
the value of this object will be a zero-length string instead.
Note that implementations which can correctly identify the
second serial numbers of all installed physical entities do
not need to provide write access to this object.
Agents which cannot provide non-volatile storage for the
second serial number strings are not required to implement
write access for this object.
Not every physical component will have a serial number, or
even need one. Physical entities for which the associated
value of the entPhysicalIsFRU object is equal to 'false(2)'
(e.g., the repeater ports within a repeater module), do not
need their own unique serial number. An agent does not have
to provide write access for such entities, and may return a
zero-length string.
If write access is implemented for an instance of
'ceEntPhysicalSecondSerialNum', and a value is written into
the instance, the agent must retain the supplied value in the
'ceEntPhysicalSecondSerialNum' instance associated with the
same physical entity for as long as that entity remains
instantiated. This includes instantiations across all re-
initializations/reboots of the network management system,
including those which result in a change of the physical
entity's entPhysicalIndex value."
DEFVAL { "" }
::= { ceExtEntPhysicalEntry 1 }
ceExtNotificationControlObjects OBJECT IDENTIFIER
::= { ciscoEntityExtMIBObjects 5 }
ceExtEntDoorNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object controls the generation of
ceExtEntDoorCloseNotif and ceExtEntDoorOpenNotif
notifications as follows:
'true(1)' - the generation of ceExtEntDoorCloseNotif
and ceExtEntDoorOpenNotif
notifications are enabled.
'false(2)' - the generation of ceExtEntDoorCloseNotif
and ceExtEntDoorOpenNotif
notifications are disabled."
DEFVAL { false }
::= { ceExtNotificationControlObjects 1 }
ceExtEntBreakOutPortNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object controls the generation of
ceExtBreakOutPortInserted and
ceExtBreakOutPortRemoved as follows:
'true(1)' - the generation of ceExtBreakOutPortInserted
and ceExtBreakOutPortRemoved
notifications is enabled.
'false(2)' - the generation of ceExtBreakOutPortInserted
and ceExtBreakOutPortRemoved
notifications is disabled."
DEFVAL { false }
::= { ceExtNotificationControlObjects 2 }
ceExtEntUsbModemNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object controls the generation of
ceExtUSBModemPlugInNotif and
ceExtUSBModemPlugOutNotif as follows:
'true(1)' - the generation of ceExtUSBModemPlugInNotif
and ceExtUSBModemPlugOutNotif
notifications is enabled.
'false(2)' - the generation of ceExtUSBModemPlugOutNotif
and ceExtUSBModemPlugOutNotif
notifications is disabled."
DEFVAL { false }
::= { ceExtNotificationControlObjects 3 }
-- ceExtUSBModemTable
ceExtUSBModemTable OBJECT-TYPE
SYNTAX SEQUENCE OF CeExtUSBModemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of USB MODEMs on an entity."
::= { ciscoEntityExtMIBObjects 6 }
ceExtUSBModemEntry OBJECT-TYPE
SYNTAX CeExtUSBModemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the ceExtUSBModemTable,
containing information about an USB MODEM on an entity,
identified by entPhysicalIndex."
INDEX { entPhysicalIndex }
::= { ceExtUSBModemTable 1 }
CeExtUSBModemEntry ::= SEQUENCE {
ceExtUSBModemIMEI SnmpAdminString,
ceExtUSBModemIMSI SnmpAdminString,
ceExtUSBModemServiceProvider SnmpAdminString,
ceExtUSBModemSignalStrength SnmpAdminString
}
ceExtUSBModemIMEI OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The International Mobile Equipment Identifier (IMEI) of the
USB-MODEM"
REFERENCE "RFC 6155"
::= { ceExtUSBModemEntry 1 }
ceExtUSBModemIMSI OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The International Mobile Subscriber Identifier(IMSI) -
for a GSM USB MODEM."
REFERENCE "RFC 4186"
::= { ceExtUSBModemEntry 2 }
ceExtUSBModemServiceProvider OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Service Provider name for a USB MODEM."
::= { ceExtUSBModemEntry 3 }
ceExtUSBModemSignalStrength OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The signal strength of the USB MODEM."
::= { ceExtUSBModemEntry 4 }
-- Notifications
ceExtMIBNotificationPrefix OBJECT IDENTIFIER
::= { ciscoEntityExtMIB 2 }
ciscoEntityExtMIBNotifications OBJECT IDENTIFIER
::= { ceExtMIBNotificationPrefix 0 }
ceExtEntDoorCloseNotif NOTIFICATION-TYPE
OBJECTS {
entPhysicalDescr,
entPhysicalName
}
STATUS current
DESCRIPTION
"A ceExtEntDoorCloseNotif is generated if the door of an entity
has been closed."
::= { ciscoEntityExtMIBNotifications 1 }
ceExtEntDoorOpenNotif NOTIFICATION-TYPE
OBJECTS {
entPhysicalDescr,
entPhysicalName
}
STATUS current
DESCRIPTION
"A ceExtEntDoorOpenNotif is generated if the door of an entity
has been opened."
::= { ciscoEntityExtMIBNotifications 2 }
ceExtBreakOutPortInserted NOTIFICATION-TYPE
OBJECTS {
entPhysicalContainedIn,
entPhysicalName
}
STATUS current
DESCRIPTION
"The ceExtBreakOutPortInserted notification indicates
that a Breakout port was inserted. The varbind for
this notification indicates the entPhysicalIndex of
the inserted Breakout port, and the entPhysicalIndex
of the BreakOut Port module that contains this port."
::= { ciscoEntityExtMIBNotifications 3 }
ceExtBreakOutPortRemoved NOTIFICATION-TYPE
OBJECTS {
entPhysicalContainedIn,
entPhysicalName
}
STATUS current
DESCRIPTION
"The ceExtBreakOutPortRemoved notification indicates
that a Breakout Port was removed. The varbind for this
notification indicates the entPhysicalIndex of the
removed Breakout port, and the entPhysicalIndex
of the BreakOut Port module that contains this port."
::= { ciscoEntityExtMIBNotifications 4 }
ceExtUSBModemPlugInNotif NOTIFICATION-TYPE
OBJECTS {
entPhysicalContainedIn,
entPhysicalDescr
}
STATUS current
DESCRIPTION
"The ceExtUSBModemPlugInNotif notification indicates that
a USB MODEM was inserted. The varbind for this notification
indicates the entPhysicalDescr of the inserted USB MODEM,
and the entPhysicalIndex of the USB MODEM's container."
::= { ciscoEntityExtMIBNotifications 5 }
ceExtUSBModemPlugOutNotif NOTIFICATION-TYPE
OBJECTS {
entPhysicalContainedIn,
entPhysicalDescr
}
STATUS current
DESCRIPTION
"The ceExtUSBModemPlugOutNotif notification indicates that
a USB MODEM was removed. The varbind for this notification
indicates the entPhysicalDescr of the removed USB MODEM,
and the entPhysicalIndex of the USB MODEM's container."
::= { ciscoEntityExtMIBNotifications 6 }
-- conformance information
ciscoEntityExtMIBConformance OBJECT IDENTIFIER
::= { ciscoEntityExtMIB 3 }
ciscoEntityExtMIBCompliances OBJECT IDENTIFIER
::= { ciscoEntityExtMIBConformance 1 }
ciscoEntityExtMIBGroups OBJECT IDENTIFIER
::= { ciscoEntityExtMIBConformance 2 }
-- compliance statements
ciscoEntityExtMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Compliance for SNMP Entities which support modules
with CPU, NVRAM and configuration register."
MODULE -- this module
MANDATORY-GROUPS { ceExtPhysicalProcessorGroup }
GROUP ciscoEntityExtConfigRegGroup
DESCRIPTION
"The ciscoEntityExtConfigRegGroup is an optional group
containing objects providing information about
configuration register."
GROUP ceExtSysBootImageListGroup
DESCRIPTION
"This group is an optional group containing an object
which provides information about the system boot images."
::= { ciscoEntityExtMIBCompliances 1 }
ciscoEntityExtMIBComplianceRev1 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Compliance for SNMP Entities which support modules
with CPU, NVRAM and configuration register."
MODULE -- this module
MANDATORY-GROUPS { ceExtPhysicalProcessorGroup }
GROUP ciscoEntityExtConfigRegGroup
DESCRIPTION
"The ciscoEntityExtConfigRegGroup is an optional group
containing objects providing information about
configuration register."
GROUP ceExtSysBootImageListGroup
DESCRIPTION
"This group is an optional group containing an object
which provides information about the system boot images."
GROUP ciscoEntityExtLEDGroup
DESCRIPTION
"This group is an optional group containing an object
which provides LED information."
GROUP ceExtSysBootImageListGroupRev1
DESCRIPTION
"This group is an optional group containing an object
which provides information about the system boot images."
::= { ciscoEntityExtMIBCompliances 2 }
ciscoEntityExtMIBComplianceRev2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Compliance for SNMP Entities which support modules
with CPU, NVRAM and configuration register."
MODULE -- this module
MANDATORY-GROUPS { ceExtPhysicalProcessorGroup }
GROUP ciscoEntityExtConfigRegGroup
DESCRIPTION
"The ciscoEntityExtConfigRegGroup is an optional group
containing objects providing information about
configuration register."
GROUP ceExtSysBootImageListGroup
DESCRIPTION
"This group is an optional group containing an object
which provides information about the system boot images."
GROUP ciscoEntityExtLEDGroup
DESCRIPTION
"This group is an optional group containing an object
which provides LED information."
GROUP ceExtSysBootImageListGroupRev1
DESCRIPTION
"This group is an optional group containing an object
which provides information about the system boot images."
GROUP ciscoExtEntityPhysicalGroup
DESCRIPTION
"This group is an optional group containing an object
which provides additional information about the
physical entity."
::= { ciscoEntityExtMIBCompliances 3 }
ciscoEntityExtMIBComplianceRev3 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Compliance for SNMP Entities which support modules
with CPU, NVRAM and configuration register."
MODULE -- this module
MANDATORY-GROUPS { ceExtPhysicalProcessorGroup }
GROUP ciscoEntityExtConfigRegGroup
DESCRIPTION
"The ciscoEntityExtConfigRegGroup is an optional group
containing objects providing information about
configuration register."
GROUP ceExtSysBootImageListGroup
DESCRIPTION
"This group is an optional group containing an object
which provides information about the system boot images."
GROUP ciscoEntityExtLEDGroup
DESCRIPTION
"This group is an optional group containing an object
which provides LED information."
GROUP ceExtSysBootImageListGroupRev1
DESCRIPTION
"This group is an optional group containing an object
which provides information about the system boot images."
GROUP ciscoExtEntityPhysicalGroup
DESCRIPTION
"This group is an optional group containing an object
which provides additional information about the
physical entity."
GROUP ceExtPhyProcessorOverflowGroup
DESCRIPTION
"This group is an optional group for the physical entities which
support 32-bit operating system."
GROUP ceExtPhyProcessorHCGroup
DESCRIPTION
"This group is an optional group for the physical entities which
support 32-bit operating system."
::= { ciscoEntityExtMIBCompliances 4 }
ciscoEntityExtMIBComplianceRev4 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Compliance for SNMP Entities which support modules
with CPU, NVRAM and configuration register."
MODULE -- this module
MANDATORY-GROUPS { ceExtPhysicalProcessorGroup }
GROUP ciscoEntityExtConfigRegGroup
DESCRIPTION
"The ciscoEntityExtConfigRegGroup is an
optional group containing objects providing
information about configuration register."
GROUP ceExtSysBootImageListGroup
DESCRIPTION
"This group is an optional group containing an object which
provides information about the system boot images."
GROUP ciscoEntityExtLEDGroup
DESCRIPTION
"This group is an optional group containing an object which
provides LED information."
GROUP ceExtSysBootImageListGroupRev1
DESCRIPTION
"This group is an optional group containing an object which
provides information about the system boot images."
GROUP ciscoExtEntityPhysicalGroup
DESCRIPTION
"This group is an optional group containing an object which
provides additional information about the physical entity."
GROUP ceExtPhyProcessorOverflowGroup
DESCRIPTION
"This group is an optional group for the physical entities which
support 32-bit operating system."
GROUP ceExtPhyProcessorHCGroup
DESCRIPTION
"This group is an optional group for the physical entities which
support 32-bit operating system."
GROUP ceExtEntDoorNotifGroup
DESCRIPTION
"This group is mandatory for platforms which support entity door
open/close notifications."
GROUP ceExtEntDoorNotifControlGroup
DESCRIPTION
"This group is mandatory for platforms which support entity door
open/close notifications."
OBJECT ceExtConfigRegNext
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT ceExtSysBootImageList
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT ceExtKickstartImageList
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT ceEntPhysicalSecondSerialNum
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT ceExtEntDoorNotifEnable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { ciscoEntityExtMIBCompliances 5 }
ciscoEntityExtMIBComplianceRev5 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Compliance for SNMP Entities which support modules
with CPU, NVRAM and configuration register."
MODULE -- this module
MANDATORY-GROUPS { ceExtPhysicalProcessorGroup }
GROUP ciscoEntityExtConfigRegGroup
DESCRIPTION
"The ciscoEntityExtConfigRegGroup is an
optional group containing objects providing
information about configuration register."
GROUP ceExtSysBootImageListGroup
DESCRIPTION
"This group is an optional group containing an object which
provides information about the system boot images."
GROUP ciscoEntityExtLEDGroup
DESCRIPTION
"This group is an optional group containing an object which
provides LED information."
GROUP ceExtSysBootImageListGroupRev1
DESCRIPTION
"This group is an optional group containing an object which
provides information about the system boot images."
GROUP ciscoExtEntityPhysicalGroup
DESCRIPTION
"This group is an optional group containing an object which
provides additional information about the physical entity."
GROUP ceExtPhyProcessorOverflowGroup
DESCRIPTION
"This group is an optional group for the physical entities which
support 32-bit operating system."
GROUP ceExtPhyProcessorHCGroup
DESCRIPTION
"This group is an optional group for the physical entities which
support 32-bit operating system."
GROUP ceExtEntDoorNotifGroup
DESCRIPTION
"This group is mandatory for platforms which support entity door
open/close notifications."
GROUP ceExtEntDoorNotifControlGroup
DESCRIPTION
"This group is mandatory for platforms which support entity door
open/close notifications."
GROUP ceExtBreakOutPortNotifGroup
DESCRIPTION
"This group is mandatory for platforms which support Breakout
port notifications."
GROUP ceExtBreakOutPortNotifControlGroup
DESCRIPTION
"This group is mandatory for platforms which support Breakout
port notifications."
OBJECT ceExtEntBreakOutPortNotifEnable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { ciscoEntityExtMIBCompliances 6 }
ciscoEntityExtMIBComplianceRev6 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance for SNMP Entities which support modules
with CPU, NVRAM and configuration register."
MODULE -- this module
MANDATORY-GROUPS { ceExtPhysicalProcessorGroup }
GROUP ciscoEntityExtConfigRegGroup
DESCRIPTION
"The ciscoEntityExtConfigRegGroup is an
optional group containing objects providing
information about configuration register."
GROUP ceExtSysBootImageListGroup
DESCRIPTION
"This group is an optional group containing an object which
provides information about the system boot images."
GROUP ciscoEntityExtLEDGroup
DESCRIPTION
"This group is an optional group containing an object which
provides LED information."
GROUP ceExtSysBootImageListGroupRev1
DESCRIPTION
"This group is an optional group containing an object which
provides information about the system boot images."
GROUP ciscoExtEntityPhysicalGroup
DESCRIPTION
"This group is an optional group containing an object which
provides additional information about the physical entity."
GROUP ceExtPhyProcessorOverflowGroup
DESCRIPTION
"This group is an optional group for the physical entities which
support 32-bit operating system."
GROUP ceExtPhyProcessorHCGroup
DESCRIPTION
"This group is an optional group for the physical entities which
support 32-bit operating system."
GROUP ceExtEntDoorNotifGroup
DESCRIPTION
"This group is mandatory for platforms which support entity door
open/close notifications."
GROUP ceExtEntDoorNotifControlGroup
DESCRIPTION
"This group is mandatory for platforms which support entity door
open/close notifications."
GROUP ceExtBreakOutPortNotifGroup
DESCRIPTION
"This group is mandatory for platforms which support Breakout
port notifications."
GROUP ceExtBreakOutPortNotifControlGroup
DESCRIPTION
"This group is mandatory for platforms which support Breakout
port notifications."
GROUP ceExtUSBModemGroup
DESCRIPTION
"This group is mandatory for platforms which support
USB Modem management."
GROUP ceExtUsbModemNotificationsGroup
DESCRIPTION
"This group is mandatory for platforms which support
USB Modem management."
GROUP ceExtUsbModemNotifControlGroup
DESCRIPTION
"This group is mandatory for platforms which support
USB Modem management."
OBJECT ceExtEntBreakOutPortNotifEnable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT ceExtEntUsbModemNotifEnable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { ciscoEntityExtMIBCompliances 7 }
-- units of conformance
ceExtPhysicalProcessorGroup OBJECT-GROUP
OBJECTS {
ceExtProcessorRam,
ceExtNVRAMSize,
ceExtNVRAMUsed
}
STATUS current
DESCRIPTION
"The collection of objects which give information about
the Processor RAM and NVRAM."
::= { ciscoEntityExtMIBGroups 1 }
ciscoEntityExtConfigRegGroup OBJECT-GROUP
OBJECTS {
ceExtConfigRegister,
ceExtConfigRegNext
}
STATUS current
DESCRIPTION
"The collection of objects which give information about
configuration register.
Implementation of this group is optional."
::= { ciscoEntityExtMIBGroups 2 }
ceExtSysBootImageListGroup OBJECT-GROUP
OBJECTS { ceExtSysBootImageList }
STATUS current
DESCRIPTION
"A group containing an object providing information
about the system boot images.
Implementation of this group is optional."
::= { ciscoEntityExtMIBGroups 3 }
ciscoEntityExtLEDGroup OBJECT-GROUP
OBJECTS { ceExtEntityLEDColor }
STATUS current
DESCRIPTION
"A collection of objects for giving led information."
::= { ciscoEntityExtMIBGroups 4 }
ceExtSysBootImageListGroupRev1 OBJECT-GROUP
OBJECTS { ceExtKickstartImageList }
STATUS current
DESCRIPTION
"A group containing an object providing information
about the system boot images.
Implementation of this group is optional."
::= { ciscoEntityExtMIBGroups 5 }
ciscoExtEntityPhysicalGroup OBJECT-GROUP
OBJECTS { ceEntPhysicalSecondSerialNum }
STATUS current
DESCRIPTION
"The collection of objects for providing additional
information about the physical entity.
Implementation of this group is optional."
::= { ciscoEntityExtMIBGroups 6 }
ceExtPhyProcessorOverflowGroup OBJECT-GROUP
OBJECTS { ceExtProcessorRamOverflow }
STATUS current
DESCRIPTION
"The collection of Overflow (upper 32-bit) objects which
provides information about physical processor, when the entity
runs on 64-bit Operating System (OS). This group is optional for
the entities which run on 32-bit OS."
::= { ciscoEntityExtMIBGroups 7 }
ceExtPhyProcessorHCGroup OBJECT-GROUP
OBJECTS { ceExtHCProcessorRam }
STATUS current
DESCRIPTION
"The collection of High Capacity (HC) objects which provides
information about physical processor, when the entity runs on
64-bit Operating System (OS). This group is optional for the
entities which run on 32-bit OS."
::= { ciscoEntityExtMIBGroups 8 }
ceExtEntDoorNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ceExtEntDoorCloseNotif,
ceExtEntDoorOpenNotif
}
STATUS current
DESCRIPTION
"A collection of objects providing the notification
information for door entitites."
::= { ciscoEntityExtMIBGroups 9 }
ceExtEntDoorNotifControlGroup OBJECT-GROUP
OBJECTS { ceExtEntDoorNotifEnable }
STATUS current
DESCRIPTION
"A collection of objects providing control for entity door
notifications."
::= { ciscoEntityExtMIBGroups 10 }
ceExtBreakOutPortNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ceExtBreakOutPortInserted,
ceExtBreakOutPortRemoved
}
STATUS current
DESCRIPTION
"A collection of objects providing the notification
information for supporting Breakout port feature."
::= { ciscoEntityExtMIBGroups 11 }
ceExtBreakOutPortNotifControlGroup OBJECT-GROUP
OBJECTS { ceExtEntBreakOutPortNotifEnable }
STATUS current
DESCRIPTION
"A collection of objects providing control for Breakout
Port notifications."
::= { ciscoEntityExtMIBGroups 12 }
ceExtUSBModemGroup OBJECT-GROUP
OBJECTS {
ceExtUSBModemIMEI,
ceExtUSBModemIMSI,
ceExtUSBModemServiceProvider,
ceExtUSBModemSignalStrength
}
STATUS current
DESCRIPTION
"A collection of objects for giving USB MODEM
config information."
::= { ciscoEntityExtMIBGroups 13 }
ceExtUsbModemNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ceExtUSBModemPlugInNotif,
ceExtUSBModemPlugOutNotif
}
STATUS current
DESCRIPTION
"A collection of notifications for USB MODEM removal and
insertion."
::= { ciscoEntityExtMIBGroups 14 }
ceExtUsbModemNotifControlGroup OBJECT-GROUP
OBJECTS { ceExtEntUsbModemNotifEnable }
STATUS current
DESCRIPTION
"A collection of objects providing control for USB
MODEM notifications."
::= { ciscoEntityExtMIBGroups 15 }
ceExtNVRAMOverflowGroup OBJECT-GROUP
OBJECTS {
ceExtNVRAMSizeOverflow,
ceExtNVRAMUsedOverflow
}
STATUS current
DESCRIPTION
"The collection of objects providing Overflow (upper 32-bit) objects
for processor NVRAM information."
::= { ciscoEntityExtMIBGroups 16 }
ceExtHCNVRAMGroup OBJECT-GROUP
OBJECTS {
ceExtHCNVRAMSize,
ceExtHCNVRAMUsed
}
STATUS current
DESCRIPTION
"The collection of objects providing High Capacity (HC) objects
for processor NVRAM information."
::= { ciscoEntityExtMIBGroups 17 }
END
|