-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-SYSTEM-EXT-MIB-V1SMI.my
1382 lines (1281 loc) · 40.6 KB
/
CISCO-SYSTEM-EXT-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
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
-- MIB file created 19-Jul-2016 14:41:11, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-SYSTEM-EXT-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-SYSTEM-EXT-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue, DateAndTime
FROM SNMPv2-TC-v1
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
sysName
FROM RFC1213-MIB
EntPhysicalIndexOrZero, TimeIntervalSec
FROM CISCO-TC
ciscoMgmt
FROM CISCO-SMI
Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoSystemExtMIB OBJECT IDENTIFIER ::= { ciscoMgmt 305 }
-- MODULE-IDENTITY
-- LastUpdated
-- 201606140000Z
-- 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
-- MIB module for monitoring High Availability, SNMP SET
-- errors and bandwidths. This mib module also provides the
-- information on core files that are generated in the
-- system.
-- GLOSSARY
-- FIPS Federal Information Processing Standards Publication.
-- RevDate
-- 201607190000Z
-- RevDescr
-- Added support for ciscoSysReloadGroup.
-- RevDate
-- 201606070000Z
-- RevDescr
-- Added cseMaintModeState object.
-- Added new notifications cseNormalModeChangeNotify and
-- cseMaintModeChangeNotify.
-- Added new group ciscoSystemMaintModeGroup.
-- Added new objects ciscoSystemNormalModeNotifEnable and
-- ciscoSystemMaintModeNotifEnable.
-- Added new group ciscoSystemMaintModeNotifControl.
-- Added compilance ciscoSystemExtMIBComplianceRev10 to replace
-- ciscoSystemExtMIBComplianceRev9.
-- Added object group ciscoSystemMaintModeObjectsGroup and
-- notification group ciscoSystemMaintModeNotificationGroup.
-- RevDate
-- 201508190000Z
-- RevDescr
-- Added support for ciscoSystemSwitchingModeObjectsGroup.
-- RevDate
-- 200708060000Z
-- RevDescr
-- -Added a scalar object 'cseSysUpTime'
-- -Added an Object Group ciscoSystemExtInfoGroupRev3 and
-- a MODULE-COMPLIANCE ciscoSystemExtMIBComplianceRev8
-- to include the new object.
-- RevDate
-- 200611290000Z
-- RevDescr
-- Added ciscoSystemExtInfoFIPSGroup.
-- Added a new object cseSysFIPSModeActivation.
-- RevDate
-- 200609250000Z
-- RevDescr
-- -Added cseSwCoresFileName in cseSwCoresTable.
-- -Added new notification cseFailSwCoreNotifyExtended.
-- -Added new group ciscoSystemExtSwFailureGroup3.
-- -Added new group ciscoSystemExtNotificationGroupSup2.
-- -Added compliance ciscoSystemExtMIBComplianceRev6 to
-- replace ciscoSystemExtMIBComplianceRev5.
-- -Added new group ciscoSystemExtSwFailureControlGroup.
-- -Added new ciscoSwFailureNotifEnable object.
-- RevDate
-- 200511090000Z
-- RevDescr
-- Added a new group ciscoSystemExtInfoTelnetGroup.
-- Added a new object cseSysTelnetServiceActivation.
-- RevDate
-- 200506140000Z
-- RevDescr
-- Updated CseHaRestartReason
-- Added a new table cseSwCoresTable.
-- Added notifications - cseFailSwCoreNotify
-- - cseShutDownNotify
-- Added a new group ciscoSystemExtSwFailureGroup2.
-- Added a new group ciscoSystemExtNotificationGroup1.
--
-- Added a new object cseSysConsolePortStatus.
-- Added a new group ciscoSystemExtInfoGroupRev2.
-- Added a new compliance group
-- ciscoSystemExtMIBComplianceRev4.
-- RevDate
-- 200404190000Z
-- RevDescr
-- Added a new object cseSwCorePath.
-- RevDate
-- 200305020000Z
-- RevDescr
-- Added a new object cseWriteErase.
-- Added a new group ciscoSystemExtInfoGroupOptional.
-- A new compliance ciscoSystemExtMIBComplianceRev2
-- added to replace ciscoSystemExtMIBComplianceRev1.
-- RevDate
-- 200303020000Z
-- RevDescr
-- Added cseSysAutoSync and cseSysAutoSyncState.
-- RevDate
-- 200211190000Z
-- RevDescr
-- Added cseSysConfLastChange.
-- RevDate
-- 200210040000Z
-- RevDescr
-- Initial version of this MIB module.
ciscoSystemExtMIBNotifsPrefix OBJECT IDENTIFIER ::= { ciscoSystemExtMIB 0 }
ciscoSystemExtMIBObjects OBJECT IDENTIFIER ::= { ciscoSystemExtMIB 1 }
ciscoSystemExtMIBConformance OBJECT IDENTIFIER ::= { ciscoSystemExtMIB 2 }
ciscoSysInfoGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBObjects 1 }
ciscoSysErrorGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBObjects 2 }
ciscoHaGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBObjects 3 }
ciscoSwFailureGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBObjects 4 }
ciscoSwFailureNotifControl OBJECT IDENTIFIER ::= { ciscoSystemExtMIBObjects 5 }
ciscoSystemSwitchingModeGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBObjects 6 }
ciscoSystemMaintModeGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBObjects 7 }
ciscoSystemMaintModeNotifControl OBJECT IDENTIFIER ::= { ciscoSystemExtMIBObjects 8 }
ciscoSystemReloadGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBObjects 9 }
cseHaNotification OBJECT IDENTIFIER ::= { ciscoHaGroup 5 }
cseHaNotificationPrefix OBJECT IDENTIFIER ::= { cseHaNotification 0 }
cseFailNotification OBJECT IDENTIFIER ::= { ciscoSwFailureGroup 3 }
cseFailNotificationPrefix OBJECT IDENTIFIER ::= { cseFailNotification 0 }
cseMaintModeNotification OBJECT IDENTIFIER ::= { ciscoSystemMaintModeGroup 2 }
cseMaintModeNotificationPrefix OBJECT IDENTIFIER ::= { cseMaintModeNotification 0 }
ciscoSystemExtMIBCompliances OBJECT IDENTIFIER ::= { ciscoSystemExtMIBConformance 1 }
ciscoSystemExtMIBGroups OBJECT IDENTIFIER ::= { ciscoSystemExtMIBConformance 2 }
CseHaRestartReason ::= INTEGER {
unknown(1),
ungracefulExit(2),
otherSignal(3),
sigterm(4),
softwareUpgrade(5),
configUpdate(6),
configRemove(7),
shutdown(8),
aborted(9),
heartbeatFailure(10),
userTerminate(11),
gracefulExit(12),
noCallHomeFailure(13),
serviceTimeout(14)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Reason codes for the restart of a service.
-- unknown (1) - ungraceful exit
-- ungracefulExit (2) - ungraceful exit
-- otherSignal (3) - service got some other signal
-- sigterm (4) - received SIGTERM
-- softwareUpgrade (5) - software upgrade
-- configUpdate (6) - config update
-- configRemove (7) - config removal
-- shutdown (8) - manually shutdown
-- aborted (9) - aborted
-- heartbeatFailure (10) - heartbeat failure
-- userTerminate (11) - user termination
-- gracefulExit (12) - graceful exit
-- failureNoCallhome (13)- service exited but it
-- does not want a callhome
-- message to be generated
-- serviceTimeout (14) - service timeout
CiscoMaintModeState ::= INTEGER {
normal(1),
maintenance(2),
unplannedMaint(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Maintenance Mode state for the system.
-- normal (1) - normal operational state
-- maintenance (2) - maintenance mode operational state
-- unplannedMaint (3) - unplanned maintenance state
cseSysCPUUtilization OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- %
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The average utilization of CPU on the active
supervisor."
::= { ciscoSysInfoGroup 1 }
cseSysMemoryUtilization OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- %
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The average utilization of memory on the active
supervisor."
::= { ciscoSysInfoGroup 2 }
cseSysConfLastChange OBJECT-TYPE
SYNTAX DateAndTime
-- Rsyntax OCTET STRING(SIZE(8|11))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The local date and time when the
configuration was last changed. This object will
be set to zero on power cycle or on reboot of
the system. Also, if the clock is changed on
local system it is set to zero."
::= { ciscoSysInfoGroup 3 }
cseSysAutoSync OBJECT-TYPE
SYNTAX INTEGER {
sync(1),
noSync(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of the auto synchronization of images
between the active and standby supervisor.
Setting the value to sync when the existing value
is sync, has no effect on the operation."
DEFVAL { noSync }
::= { ciscoSysInfoGroup 4 }
cseSysAutoSyncState OBJECT-TYPE
SYNTAX INTEGER {
inProgress(1),
succeeded(2),
failed(3),
notStarted(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the current auto synchronization
process, or if no such process is in progress,
then the state of the most recent one. The
value 'notStarted' indicates no auto synchronization
process has occurred recently."
::= { ciscoSysInfoGroup 5 }
cseWriteErase OBJECT-TYPE
SYNTAX INTEGER {
noOp(1),
eraseAll(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to initiate a write erase on the
device's saved configuration file(s) from which the
device loads its configuration when it restarts.
If the value of this object is set to 'eraseAll', then
all the saved configurations are removed.
No action is taken when the this object is set to
'noOp'.
When read, the value of this object is always 'noOp'."
::= { ciscoSysInfoGroup 6 }
cseSysConsolePortStatus OBJECT-TYPE
SYNTAX INTEGER {
connected(1),
notConnected(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object describes the status of the console
port on this device.
The status 'connected' means that there is
a cable attached to the console port.
The status 'notConnected' means that there is
no connection out of the console port."
::= { ciscoSysInfoGroup 7 }
cseSysTelnetServiceActivation OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enables or disables the Telnet service on the
device. In other words, it enables or disables
the telneting to the device."
DEFVAL { true }
::= { ciscoSysInfoGroup 8 }
cseSysFIPSModeActivation OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The object to enable/disable FIPS mode on the device.
FIPS 140-2 is a set of security requirements for cryptographic
modules and it details the U.S. Government requirements for
cryptographic modules.
A module will comprise both hardware and software, eg a
datacenter switching or routing module. The module is said to
be in FIPS enabled mode when a request is recieved to enable the
FIPS mode and a set of self-tests are successfully run in
response to the request. If the self-tests fail, then an
appropriate error is returned."
REFERENCE
"FIPS PUB 140-2 Security Requirements for Cryptographic
Modules"
DEFVAL { false }
::= { ciscoSysInfoGroup 9 }
cseSysUpTime OBJECT-TYPE
SYNTAX TimeIntervalSec
-- Rsyntax Gauge
-- Units
-- Seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time (in seconds) since the entire system
was last re-initialized as a result of reload. The
initialization being system loaded and running with a system
image software on the first active supervisor (SUP). In High
Availibility (HA) capable system / System that provides
Supervisor module redundancy, this uptime indicates time
elapsed since the first active SUP was booted. This will not
change even if the active SUP goes down and stand-by takes
over as active."
::= { ciscoSysInfoGroup 10 }
cseSnmpErrorTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseSnmpErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table containing information about the errors which have
recently caused the generation of a SNMP Response PDU with a
non-zero value in its error-status field for SNMP Set Response
PDU.
This table serves as an extension to the SNMP's error status
when a SNMP Set request fails. SNMP returns only a pre-defined
set of standard error codes which does not convey the specific
cause for an error. Typically, there is an incumbent and
sizable burden on the configuration application to determine
if the configuration request failure is the result of a
resource issue, a security issue, or an application error
(like an object depending on some other objects). So from a
user perspective, it is important that a specific error be
made known.
Ideally, when a 'badValue' error occurs for a given set
request, an application can query the command responder for
more details on the error.
This table provides a framework for the command responders to
provide more information on the SET errors.
It is up to the implementation to create entries in this table
for either only certain SNMP errors or all of the SNMP errors.
Note that only most recent incarnation of an entry is kept in
this table."
::= { ciscoSysErrorGroup 1 }
cseSnmpErrorEntry OBJECT-TYPE
SYNTAX CseSnmpErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry (conceptual row) in the cseSnmpErrorTable, containing
information about an error which has recently caused a SNMP
SetRequest to fail. An entry is created by the agent
on the occurrence of an error, and is deleted approximately 5
minutes later. The reasons for this are :
- to prevent old entries clogging the table.
- optimal utilization of the resources like memory."
INDEX { cseSnmpErrorAddressType, cseSnmpErrorAddress, cseSnmpErrorRequestId }
::= { cseSnmpErrorTable 1 }
CseSnmpErrorEntry ::= SEQUENCE {
cseSnmpErrorAddressType InetAddressType,
cseSnmpErrorAddress InetAddress,
cseSnmpErrorRequestId Gauge,
cseSnmpErrorCode Gauge,
cseSnmpErrorDescription SnmpAdminString
}
cseSnmpErrorAddressType OBJECT-TYPE
SYNTAX InetAddressType
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- unknown(0),
-- ipv4(1),
-- ipv6(2),
-- ipv4z(3),
-- ipv6z(4),
-- dns(16)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The type of address from which the error-ed SetRequest
originated."
::= { cseSnmpErrorEntry 1 }
cseSnmpErrorAddress OBJECT-TYPE
SYNTAX InetAddress
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The address from which the error-ed SetRequest originated."
::= { cseSnmpErrorEntry 2 }
cseSnmpErrorRequestId OBJECT-TYPE
SYNTAX Gauge
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The request-id of the error-ed SetRequest."
::= { cseSnmpErrorEntry 3 }
cseSnmpErrorCode OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The code for the Mib object specific error which
caused a SetRequest to fail.
This error code is platform-specific and for debugging
purposes only. For information on this code, the
corresponding instance of cseSnmpErrorDescription must be
used.
This code is not the same as the value contained
in the error-status field of SNMP Response PDU."
::= { cseSnmpErrorEntry 4 }
cseSnmpErrorDescription OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The error description for the error happened for the
SetRequest."
::= { cseSnmpErrorEntry 5 }
cseHaRestartReason OBJECT-TYPE
SYNTAX CseHaRestartReason
-- Rsyntax INTEGER {
-- unknown(1),
-- ungracefulExit(2),
-- otherSignal(3),
-- sigterm(4),
-- softwareUpgrade(5),
-- configUpdate(6),
-- configRemove(7),
-- shutdown(8),
-- aborted(9),
-- heartbeatFailure(10),
-- userTerminate(11),
-- gracefulExit(12),
-- noCallHomeFailure(13),
-- serviceTimeout(14)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The reason for most recent restart of a service on the
'active' supervisor."
::= { ciscoHaGroup 2 }
cseHaRestartStateless OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Tells if the most recent restart of a service on the
'active' supervisor was 'stateless' or not.
A 'stateless' restart of a service is where no runtime
information is preserved while restarting the service."
::= { ciscoHaGroup 3 }
cseHaRestartService OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..255))
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Name of the service (or process) that was restarted on
the 'active' supervisor."
::= { ciscoHaGroup 4 }
cseHaShutDownReason OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..255))
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The description of the reason as to why the system
is going to go down."
::= { ciscoHaGroup 6 }
cseSwCorePath OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..255))
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Provides the path where the software cores are
stored on the system. The management application can
use this path to copy the cores from the system using
CISCO-FLASH-MIB."
::= { ciscoSwFailureGroup 1 }
cseSwCoresTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseSwCoresEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table containing information about the system cores that
have been generated as an effect of some system failures."
::= { ciscoSwFailureGroup 2 }
cseSwCoresEntry OBJECT-TYPE
SYNTAX CseSwCoresEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry (conceptual row) in the cseSwCoresTable, containing
information about cores that have been generated."
INDEX { cseSwCoresModule, cseSwCoresProcName, cseSwCoresInstance }
::= { cseSwCoresTable 1 }
CseSwCoresEntry ::= SEQUENCE {
cseSwCoresModule EntPhysicalIndexOrZero,
cseSwCoresProcName SnmpAdminString,
cseSwCoresInstance Gauge,
cseSwCoresPID Gauge,
cseSwCoresTimeCreated DateAndTime,
cseSwCoresSlotNum Gauge,
cseSwCoresFileName SnmpAdminString
}
cseSwCoresModule OBJECT-TYPE
SYNTAX EntPhysicalIndexOrZero
-- Rsyntax INTEGER(0..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The physical module on which the process crashed."
::= { cseSwCoresEntry 1 }
cseSwCoresProcName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..64))
-- Rsyntax OCTET STRING(SIZE(1..64))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The name of the process that crashed and generated core."
::= { cseSwCoresEntry 2 }
cseSwCoresInstance OBJECT-TYPE
SYNTAX Gauge
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The instance of the core for a process identified by
cseSwCoresProcName and on the module identified by
cseSwCoresModule.
To uniquely identify a core, the module number and
process name are not sufficient as there could be
multiple cores for the same module number and process
name."
::= { cseSwCoresEntry 3 }
cseSwCoresPID OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The process identifier of the process that dumped the
core."
::= { cseSwCoresEntry 4 }
cseSwCoresTimeCreated OBJECT-TYPE
SYNTAX DateAndTime
-- Rsyntax OCTET STRING(SIZE(8|11))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time at which the core was created."
::= { cseSwCoresEntry 5 }
cseSwCoresSlotNum OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The slot number corresponding to the cseSwCoresModule
in this chassis."
::= { cseSwCoresEntry 6 }
cseSwCoresFileName OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains the core file-name(including the
path, relative to the value in the cseSwCorePath object).
If the cseSwCorePath contains zero length octet string,
then this object will contain the filename with absolute
path. If this object contains zero length octet string,
then the core file is available in path identified in
cseSwCorePath."
::= { cseSwCoresEntry 7 }
ciscoSystemSwitchingModeAdmin OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notApplicable(2),
nexus3000(3),
nexus9000(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Object to specify system's switching mode.
'other' - any other state not covered by below enumerations
'notApplicable' - switching mode configuration is not applicable
for this system
'nexus3000' - system switching mode is configured as Nexus 3000
'nexus9000' - system switching mode is configured as Nexus 9000."
::= { ciscoSystemSwitchingModeGroup 1 }
ciscoSystemSwitchingModeOper OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notApplicable(2),
nexus3000(3),
nexus9000(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Object indicate system's operational switching mode.
'other' - any other state not covered by below enumerations
'notApplicable' - switching mode configuration is not applicable
for this system
'nexus3000' - system is opeerating in Nexus 3000 mode
'nexus9000' - system is opeerating in Nexus 9000 mode."
::= { ciscoSystemSwitchingModeGroup 2 }
cseMaintModeState OBJECT-TYPE
SYNTAX CiscoMaintModeState
-- Rsyntax INTEGER {
-- normal(1),
-- maintenance(2),
-- unplannedMaint(3)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maintenance mode operational state for the system."
::= { ciscoSystemMaintModeGroup 1 }
cseSystemReloadPending OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is used to indicate if a system reload is needed to
make feature configuration change effective.
The object returns 'true' if a system reload is required; it returns
'false' if no system reload is required."
::= { ciscoSystemReloadGroup 1 }
ciscoSwFailureNotifEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used for administratively
enabling/disabling the cseFailSwCoreNotify or
cseFailSwCoreNotifyExtended notifications."
DEFVAL { false }
::= { ciscoSwFailureNotifControl 1 }
ciscoSystemNormalModeNotifEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used for administratively
enabling/disabling the cseNormalModeChangeNotify."
DEFVAL { false }
::= { ciscoSystemMaintModeNotifControl 1 }
ciscoSystemMaintModeNotifEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used for administratively
enabling/disabling the cseMaintModeChangeNotify."
DEFVAL { false }
::= { ciscoSystemMaintModeNotifControl 2 }
cseHaRestartNotify TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE cseHaNotification
VARIABLES {
cseHaRestartReason, cseHaRestartService,
cseHaRestartStateless }
-- Status
-- mandatory
DESCRIPTION
"A service restart notification is generated
whenever a service (or a process) on the 'active'
supervisor is restarted."
::= 1
cseShutDownNotify TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE cseHaNotification
VARIABLES {
cseHaShutDownReason }
-- Status
-- mandatory
DESCRIPTION
"A system shutdown notification is generated
whenever a system is going to shut down. The
cseHaShutDownReason, describes the reason as to
why the system is going to go down."
::= 2
cseFailSwCoreNotify TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE cseFailNotification
-- Status
-- mandatory
DESCRIPTION
"A notification is generated whenever a software
crash occurs and a core file is generated."
::= 1
cseFailSwCoreNotifyExtended TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE cseFailNotification
VARIABLES {
sysName, cseSwCoresFileName, cseSwCorePath, cseSwCoresPID }
-- Status
-- mandatory
DESCRIPTION
"A notification is generated whenever a software
crash occurs and a core file is generated."
::= 2
cseNormalModeChangeNotify TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE cseMaintModeNotification
VARIABLES {
cseMaintModeState }
-- Status
-- mandatory
DESCRIPTION
"A normal mode state change is generated when the system
is changed from maintenance mode to normal mode."
::= 1
cseMaintModeChangeNotify TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE cseMaintModeNotification
VARIABLES {
cseMaintModeState }
-- Status
-- mandatory
DESCRIPTION
"A maintenance mode state change is generated when the system
is changed from normal mode to maintenance mode."
::= 2
ciscoSystemExtInfoGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 1 }
-- OBJECT-GROUP
-- Status
-- deprecated
-- Descr
-- A collection of objects for system information.
-- ciscoSystemExtInfoGroup object is superseded by ciscoSystemExtInfoGroupRev1.
-- objects
-- cseSysCPUUtilization, cseSysMemoryUtilization,
-- cseSysConfLastChange
ciscoSystemExtErrorGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 2 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects for logging SNMP set error.
-- objects
-- cseSnmpErrorCode, cseSnmpErrorDescription
ciscoSystemExtHaGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 3 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects for High Availability.
-- objects
-- cseHaRestartReason, cseHaRestartService,
-- cseHaRestartStateless
ciscoSystemExtInfoGroupRev1 OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 5 }
-- OBJECT-GROUP
-- Status
-- deprecated
-- Descr
-- A collection of objects for system information.
-- ciscoSystemExtInfoGroupRev1 object is superseded by ciscoSystemExtInfoGroupRev3.
-- objects
-- cseSysCPUUtilization, cseSysMemoryUtilization,
-- cseSysConfLastChange, cseSysAutoSync, cseSysAutoSyncState
ciscoSystemExtInfoGroupOptional OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 6 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects for system information
-- which are optional.
-- objects
-- cseWriteErase
ciscoSystemExtSwFailureGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 7 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects for system software failure
-- information which are optional.
-- objects
-- cseSwCorePath
ciscoSystemExtInfoGroupRev2 OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 8 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects for system information.
-- objects
-- cseSysConsolePortStatus
ciscoSystemExtSwFailureGroup2 OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 9 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects for system software failure
-- information which are optional.
-- objects
-- cseSwCoresPID, cseSwCoresTimeCreated, cseSwCoresSlotNum
ciscoSystemExtHaGroupRev1 OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 11 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects for High Availability.
-- objects
-- cseHaShutDownReason
ciscoSystemExtInfoTelnetGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 12 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects related to telnet support
-- to the device.
-- objects
-- cseSysTelnetServiceActivation
ciscoSystemExtSwFailureGroup3 OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 14 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects related to the core file.
-- objects
-- cseSwCoresFileName
ciscoSystemExtSwFailureControlGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 15 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- This group of objects controls the sending of
-- notifications defined in this MIB module.
-- objects
-- ciscoSwFailureNotifEnable
ciscoSystemExtInfoFIPSGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 16 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects related to FIPS support
-- to the device.
-- objects
-- cseSysFIPSModeActivation
ciscoSystemExtInfoGroupRev3 OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 17 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects for system information.
-- objects
-- cseSysCPUUtilization, cseSysMemoryUtilization,
-- cseSysConfLastChange, cseSysAutoSync, cseSysAutoSyncState,
-- cseSysUpTime
ciscoSystemSwitchingModeObjectsGroup OBJECT IDENTIFIER ::= { ciscoSystemExtMIBGroups 18 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects to support Switching Mode feature.
-- objects
-- ciscoSystemSwitchingModeAdmin, ciscoSystemSwitchingModeOper