-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCPQIDE-MIB.mib
1577 lines (1322 loc) · 50.7 KB
/
CPQIDE-MIB.mib
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
-- ****************************************************************************
--
-- Manegeable IDE Drive
-- Management Information Base for SNMP Network Management
--
--
-- Copyright 1992,2003 Hewlett-Packard Development Company, L.P.
-- Hewlett-Packard Company shall not be liable for technical or
-- editorial errors or omissions contained herein. The information in
-- this document is provided "as is" without warranty of any kind and
-- is subject to change without notice. The warranties for HP products
-- are set forth in the express limited warranty statements
-- accompanying such products. Nothing herein should be construed as
-- constituting an additional warranty.
--
-- Confidential computer software. Valid license from HP required for
-- possession, use or copying. Consistent with FAR 12.211 and 12.212,
-- Commercial Computer Software, Computer Software Documentation, and
-- Technical Data for Commercial Items are licensed to the U.S.
-- Government under vendor's standard commercial license.
--
-- Refer to the READMIB.RDM file for more information about the
-- organization of the information in the Compaq Enterprise.
--
-- The Compaq Enterprise number is 232.
-- The ASN.1 prefix to, and including the Compaq Enterprise is:
-- 1.3.6.1.4.1.232
--
-- ****************************************************************************
CPQIDE-MIB DEFINITIONS ::= BEGIN
IMPORTS
compaq FROM CPQHOST-MIB
enterprises FROM RFC1155-SMI
Counter FROM RFC1155-SMI
Gauge FROM RFC1155-SMI
DisplayString FROM RFC1213-MIB
OBJECT-TYPE FROM RFC-1212
TRAP-TYPE FROM RFC-1215
sysName FROM RFC1213-MIB
cpqHoTrapFlags FROM CPQHOST-MIB;
-- compaq OBJECT IDENTIFIER ::= { enterprises 232 }
cpqIde OBJECT IDENTIFIER ::= { compaq 14 }
cpqIdeMibRev OBJECT IDENTIFIER ::= { cpqIde 1 }
cpqIdeComponent OBJECT IDENTIFIER ::= { cpqIde 2 }
cpqIdeInterface OBJECT IDENTIFIER ::= { cpqIdeComponent 1 }
cpqIdeIdent OBJECT IDENTIFIER ::= { cpqIdeComponent 2 }
cpqIdeController OBJECT IDENTIFIER ::= { cpqIdeComponent 3 }
cpqIdeAtaDisk OBJECT IDENTIFIER ::= { cpqIdeComponent 4 }
cpqIdeAtapiDevice OBJECT IDENTIFIER ::= { cpqIdeComponent 5 }
cpqIdeLogicalDrive OBJECT IDENTIFIER ::= { cpqIdeComponent 6 }
cpqIdeOsCommon OBJECT IDENTIFIER ::= { cpqIdeInterface 4 }
-- ****************************************************************************
-- Ide MIB Revision
-- ================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqIde Group (1.3.6.1.4.1.232.14)
-- cpqIdeMibRev Group (1.3.6.1.4.1.232.14.1)
--
--
-- An Insight Agent conforming to this document will return a mibRevMajor
-- of one (1) and a mibRevMinor of six (6).
--
--
-- Implementation of the MibRev group is mandatory for all agents
-- supporting the Ide MIB.
--
-- ****************************************************************************
cpqIdeMibRevMajor OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Major Revision level.
A change in the major revision level represents a major change
in the architecture of the MIB. A change in the major revision
level may indicate a significant change in the information
supported and/or the meaning of the supported information,
correct interpretation of data may require a MIB document with
the same major revision level."
::= { cpqIdeMibRev 1 }
cpqIdeMibRevMinor OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Minor Revision level.
A change in the minor revision level may represent some minor
additional support; no changes to any pre-existing information
has occurred."
::= { cpqIdeMibRev 2 }
cpqIdeMibCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2), -- default
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The overall condition.
This object represents the overall status of the Ide system
represented by this MIB."
::= { cpqIdeMibRev 3 }
-- ****************************************************************************
-- Ide OS Common
-- ==============
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqIde Group (1.3.6.1.4.1.232.14)
-- cpqIdeComponent Group (1.3.6.1.4.1.232.14.2)
-- cpqIdeInterface Group (1.3.6.1.4.1.232.14.2.1)
-- cpqIdeOsCommon Group (1.3.6.1.4.1.232.14.2.1.4)
--
--
-- The cpqIdeOsCommon group describes the Ide common OS interface.
-- This information describes the interface modules general OS interface
-- architectural information.
--
-- Implementation of the cpqIdeOsCommon group is mandatory for all
-- agents that support the Ide MIB.
--
-- ****************************************************************************
cpqIdeOsCommonPollFreq OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Insight Agent's polling frequency.
The frequency, in seconds, at which the Insight Agent requests
information from the device driver. A frequency of zero
indicates that the Insight Agent retrieves the information upon
request of a management station, it does not poll the device
driver at a specific interval.
If the poll frequency is zero (0) all attempts to write to this
object will fail. If the poll frequency is non-zero,
setting this value will change the polling frequency of the
Insight Agent. Setting the poll frequency to zero will always
fail, an agent may also choose to fail any request to change
the poll frequency to a value that would severely impact system
performance."
::= { cpqIdeOsCommon 1 }
-- ****************************************************************************
-- Ide OS Common Module
-- =====================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqIde Group (1.3.6.1.4.1.232.14)
-- cpqIdeComponent Group (1.3.6.1.4.1.232.14.2)
-- cpqIdeInterface Group (1.3.6.1.4.1.232.14.2.1)
-- cpqIdeOsCommon Group (1.3.6.1.4.1.232.14.2.1.4)
-- cpqIdeOsCommonModuleTable (1.3.6.1.4.1.232.14.2.1.4.2) deprecated
--
-- ****************************************************************************
cpqIdeOsCommonModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqIdeOsCommonModuleEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A table of software modules that provide an interface to the
device this MIB describes."
::= { cpqIdeOsCommon 2 }
cpqIdeOsCommonModuleEntry OBJECT-TYPE
SYNTAX CpqIdeOsCommonModuleEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A description of a software modules that provide an interface
to the device this MIB describes."
INDEX { cpqIdeOsCommonModuleIndex }
::= { cpqIdeOsCommonModuleTable 1 }
CpqIdeOsCommonModuleEntry ::= SEQUENCE {
cpqIdeOsCommonModuleIndex INTEGER,
cpqIdeOsCommonModuleName DisplayString,
cpqIdeOsCommonModuleVersion DisplayString,
cpqIdeOsCommonModuleDate OCTET STRING,
cpqIdeOsCommonModulePurpose DisplayString
}
cpqIdeOsCommonModuleIndex OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS deprecated
DESCRIPTION
"A unique index for this module description."
::= { cpqIdeOsCommonModuleEntry 1 }
cpqIdeOsCommonModuleName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The module name."
::= { cpqIdeOsCommonModuleEntry 2 }
cpqIdeOsCommonModuleVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..5))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The module version in XX.YY format.
Where XX is the major version number and YY is the minor version
number. This field will be a null (size 0) string if the agent
cannot provide the module version."
::= { cpqIdeOsCommonModuleEntry 3 }
cpqIdeOsCommonModuleDate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (7))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The module date.
field octets contents range
===== ====== ======= =====
1 1-2 year 0..65536
2 3 month 1..12
3 4 day 1..31
4 5 hour 0..23
5 6 minute 0..59
6 7 second 0..60
(use 60 for leap-second)
This field will be set to year = 0 if the agent cannot provide
the module date. The hour, minute, and second field will be set
to zero (0) if they are not relevant."
::= { cpqIdeOsCommonModuleEntry 4 }
cpqIdeOsCommonModulePurpose OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The purpose of the module described in this entry."
::= { cpqIdeOsCommonModuleEntry 5 }
-- ****************************************************************************
-- IDE Ident Group
-- ===============
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqIde Group (1.3.6.1.4.1.232.14)
-- cpqIdeComponent Group (1.3.6.1.4.1.232.14.2)
-- cpqIdeIdent Group (1.3.6.1.4.1.232.14.2.2)
-- cpqIdeIdentTable (1.3.6.1.4.1.232.14.2.2.1)
--
--
-- The Ident group contains basic indentification information about the
-- IDE drives in the system.
--
-- Implementation of the Ident group is mandatory for all agents that
-- support the IDE MIB.
--
-- ****************************************************************************
cpqIdeIdentTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqIdeIdentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IDE Drive Identification Table."
::= { cpqIdeIdent 1 }
cpqIdeIdentEntry OBJECT-TYPE
SYNTAX CpqIdeIdentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IDE Identification Table Entry."
INDEX { cpqIdeIdentIndex }
::= { cpqIdeIdentTable 1 }
CpqIdeIdentEntry ::= SEQUENCE
{
cpqIdeIdentIndex INTEGER,
cpqIdeIdentModel DisplayString,
cpqIdeIdentSerNum DisplayString,
cpqIdeIdentFWVers DisplayString,
cpqIdeIdentCondition INTEGER,
cpqIdeIdentErrorNumber DisplayString,
cpqIdeIdentType INTEGER,
cpqIdeIdentTypeExtended INTEGER,
cpqIdeIdentCondition2 INTEGER,
cpqIdeIdentStatus INTEGER,
cpqIdeIdentUltraAtaAvailability INTEGER
}
cpqIdeIdentIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An index that uniquely specifies each device. For disks,
this index value will match the value of the cpqSeFixedDiskIndex
in the Standard Equipment MIB (CPQSTDEQ.MIB) when the same
disk is being described.
Each possible index value indicates a specific drive as shown in
the table below:
Drive Index IDE Controller Drive Unit
=========== ============== ==========
0 Primary 1
1 Primary 2
2 Secondary 1
3 Secondary 2
Any other index value would be implementation specific."
::= { cpqIdeIdentEntry 1 }
cpqIdeIdentModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..41))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Drive Model.
The is the drive model name and can be used for identification
purposes."
::= { cpqIdeIdentEntry 2 }
cpqIdeIdentSerNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..21))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Drive Serial Number.
The is the drive serial number and can be used for identification
purposes."
::= { cpqIdeIdentEntry 3 }
cpqIdeIdentFWVers OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..9))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Firmware Version.
This is the version of the firmware on the IDE drive.
If the IDE drive firmware version is unavailable, then this
string will be of length zero (0)."
::= { cpqIdeIdentEntry 4 }
cpqIdeIdentCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS deprecated
DESCRIPTION
"IDE Drive Condition.
This is the overall condition of the IDE drive.
The following values are defined:
other(1)
The drive does not support drive condition monitoring.
ok(2)
The drive is operating normally. No user action is required.
degraded(3)
The drive is degraded. The drive may need to be replaced.
failed(4)
The drive has failed. The drive should be replaced."
::= { cpqIdeIdentEntry 5 }
cpqIdeIdentErrorNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Error Number.
This value represents the error code associated with a failing
IDE drive."
::= { cpqIdeIdentEntry 6 }
cpqIdeIdentType OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
disk(2),
tape(3),
printer(4),
processor(5),
wormDrive(6),
cd-rom(7),
scanner(8),
optical(9),
jukeBox(10),
commDev(11)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Device Type.
This is the type of ATAPI device. The following types are defined:
other(1)
The Insight agent does not recognize this type.
You may need to upgrade your software.
disk(2)
This is a direct-access device like a disk drive.
tape(3)
This is a sequential-access device like a tape drive.
printer(4)
This is a printer device.
processor(5)
This is a processor device.
worm(6)
This is a write-once, read-many times device.
cd-rom(7)
This is a CD or DVD device.
scanner(8)
This is a scanner device.
optical(9)
This is an optical memory device.
jukeBox(10)
This is a media changer device like a jukebox.
commDev(11)
This is a communications device like a LAN bridge."
::= { cpqIdeIdentEntry 7 }
cpqIdeIdentTypeExtended OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
pdcd(2),
removableDisk(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Extended Device Type.
This is additional information about the type of IDE device.
The following types are defined:
other(1)
This target does not have any extended type information.
pdcd(2)
This is a power-drive CD-ROM.
removableDisk(3)
This is a removable media disk device like a floppy drive."
::= { cpqIdeIdentEntry 8 }
cpqIdeIdentCondition2 OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Drive Condition.
This is the overall condition of the IDE drive.
The following values are defined:
other(1)
The drive does not support drive condition monitoring.
ok(2)
The drive is operating normally.
No user action is required.
degraded(3)
The drive is degraded.
See cpqIdeIdentStatus for the appropriate action.
failed(4)
The drive has failed.
See cpqIdeIdentStatus for the appropriate action."
::= { cpqIdeIdentEntry 9 }
cpqIdeIdentStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
preFailureDegraded(3),
ultraAtaDegraded(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Drive Satus.
This indicates the status of the IDE drive.
The following values are defined:
other(1)
The drive does not support drive status monitoring.
ok(2)
The drive is operating normally. No user action is required.
preFailureDegraded(3)
The drive has detected that at least one pre-failure SMART
attribute has gone out of range. The drive may need to be
replaced.
ultraAtaDegraded(4)
The Ultra ATA Integrity Monitor has detected data transmission
errors between the hard drive and processor. For best
performance, move Ultra ATA devices to the primary
controller and non Ultra ATA devices to the secondary
controller. If errors still persist, consider replacing the
standard 40-conductor cable with and 80-conductor cable."
::= { cpqIdeIdentEntry 10 }
cpqIdeIdentUltraAtaAvailability OBJECT-TYPE
SYNTAX INTEGER {
other(1),
noNotSupportedByDeviceAndController(2),
noNotSupportedByDevice(3),
noNotSupportedByController(4),
noDisabledInSetup(5),
yesEnabledInSetup(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This describes the availability of Ultra ATA
transfers between this device and the controller.
The following values are defined:
other(1)
The agents do not support reporting this variable or the
agent need to be upgraded.
noNotSupportedByDeviceAndController(2),
The device and the controller do not support Ultra ATA.
noNotSupportedByDevice(3),
The device does not support Ultra ATA but the controller
does support Ultra ATA.
noNotSupportedByController(4),
The controller does not support Ultra ATA but the device
does support Ultra ATA.
NoDisabledInSetup(5),
The device and the controller do support Ultra ATA but it
has been disabled in F10 Setup.
yesEnabledInSetup(6),
The device and the controller do support Ultra ATA and it
is enabled in F10 Setup."
::= { cpqIdeIdentEntry 11 }
-- ****************************************************************************
-- IDE Controller Group
-- ====================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqIde Group (1.3.6.1.4.1.232.14)
-- cpqIdeComponent Group (1.3.6.1.4.1.232.14.2)
-- cpqIdeController Group (1.3.6.1.4.1.232.14.2.3)
-- cpqIdeControllerTable (1.3.6.1.4.1.232.14.2.3.1)
--
--
-- The controller group contains information about the IDE controllers
-- in a system.
--
-- Implementation of the controller group is mandatory for all agents that
-- support the IDE MIB.
--
-- ****************************************************************************
cpqIdeControllerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqIdeControllerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IDE Controller Table."
::= { cpqIdeController 1 }
cpqIdeControllerEntry OBJECT-TYPE
SYNTAX CpqIdeControllerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IDE Controller Table Entry."
INDEX { cpqIdeControllerIndex }
::= { cpqIdeControllerTable 1 }
CpqIdeControllerEntry ::= SEQUENCE
{
cpqIdeControllerIndex INTEGER,
cpqIdeControllerOverallCondition INTEGER,
cpqIdeControllerModel DisplayString,
cpqIdeControllerFwRev DisplayString,
cpqIdeControllerSlot INTEGER
}
cpqIdeControllerIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An index that uniquely identifies each controller."
::= { cpqIdeControllerEntry 1 }
cpqIdeControllerOverallCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Controller Overall Condition.
This is the overall condition of the IDE controller and any
associated devices."
::= { cpqIdeControllerEntry 2 }
cpqIdeControllerModel OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Controller Model.
The is the IDE controller model name."
::= { cpqIdeControllerEntry 3 }
cpqIdeControllerFwRev OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Controller Firmware Revision.
The is the IDE controller firmware revision."
::= { cpqIdeControllerEntry 4 }
cpqIdeControllerSlot OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IDE Controller Slot.
This identifies the physical slot where the IDE controller
resides in the system. For example, if this value is three,
the controller is located in slot three of your computer.
If the value cannot be determined or is not applicable, the
value is set to -1."
::= { cpqIdeControllerEntry 5 }
-- ****************************************************************************
-- IDE ATA Disk Group
-- ==================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqIde Group (1.3.6.1.4.1.232.14)
-- cpqIdeComponent Group (1.3.6.1.4.1.232.14.2)
-- cpqIdeAtaDisk Group (1.3.6.1.4.1.232.14.2.4)
-- cpqIdeAtaDiskTable (1.3.6.1.4.1.232.14.2.4.1)
--
--
-- The ATA disk group contains information about the disks attached to a
-- controller.
--
-- Implementation of the ATA disk group is mandatory for all agents that
-- support the IDE MIB.
--
-- ****************************************************************************
cpqIdeAtaDiskTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqIdeAtaDiskEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IDE ATA Disk Table."
::= { cpqIdeAtaDisk 1 }
cpqIdeAtaDiskEntry OBJECT-TYPE
SYNTAX CpqIdeAtaDiskEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IDE ATA Disk Table Entry."
INDEX { cpqIdeAtaDiskControllerIndex, cpqIdeAtaDiskIndex }
::= { cpqIdeAtaDiskTable 1 }
CpqIdeAtaDiskEntry ::= SEQUENCE
{
cpqIdeAtaDiskControllerIndex INTEGER,
cpqIdeAtaDiskIndex INTEGER,
cpqIdeAtaDiskModel DisplayString,
cpqIdeAtaDiskFwRev DisplayString,
cpqIdeAtaDiskSerialNumber DisplayString,
cpqIdeAtaDiskStatus INTEGER,
cpqIdeAtaDiskCondition INTEGER,
cpqIdeAtaDiskCapacity INTEGER,
cpqIdeAtaDiskSmartEnabled INTEGER,
cpqIdeAtaDiskTransferMode INTEGER,
cpqIdeAtaDiskChannel INTEGER,
cpqIdeAtaDiskNumber INTEGER,
cpqIdeAtaDiskLogicalDriveMember INTEGER,
cpqIdeAtaDiskIsSpare INTEGER,
cpqIdeAtaDiskOsName DisplayString
}
cpqIdeAtaDiskControllerIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An index that uniquely identifies each controller."
::= { cpqIdeAtaDiskEntry 1 }
cpqIdeAtaDiskIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An index that uniquely identifies each disk."
::= { cpqIdeAtaDiskEntry 2 }
cpqIdeAtaDiskModel OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk Model.
The is the model name of the ATA disk."
::= { cpqIdeAtaDiskEntry 3 }
cpqIdeAtaDiskFwRev OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk Firmware Revision.
The is the firmware revision of the ATA disk."
::= { cpqIdeAtaDiskEntry 4 }
cpqIdeAtaDiskSerialNumber OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk Serial Number.
The is the serial number of the ATA disk."
::= { cpqIdeAtaDiskEntry 5 }
cpqIdeAtaDiskStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
smartError(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk Status.
This is the status of the ATA disk."
::= { cpqIdeAtaDiskEntry 6 }
cpqIdeAtaDiskCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk Condition.
This is the condition of the ATA disk."
::= { cpqIdeAtaDiskEntry 7 }
cpqIdeAtaDiskCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk Capacity.
This is the capacity of the ATA disk in megabytes."
::= { cpqIdeAtaDiskEntry 8 }
cpqIdeAtaDiskSmartEnabled OBJECT-TYPE
SYNTAX INTEGER {
other(1),
true(2),
false(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk S.M.A.R.T Enabled?
other(1)
The agent cannot determine the state of S.M.A.R.T. monitoring
on this ATA disk.
true(2)
The ATA disk has S.M.A.R.T motitoring enabled.
false(3)
The ATA disk does not have S.M.A.R.T motitoring enabled."
::= { cpqIdeAtaDiskEntry 9 }
cpqIdeAtaDiskTransferMode OBJECT-TYPE
SYNTAX INTEGER {
other(1),
pioMode0(2),
pioMode1(3),
pioMode2(4),
pioMode3(5),
pioMode4(6),
dmaMode0(7),
dmaMode1(8),
dmaMode2(9),
ultraDmaMode0(10),
ultraDmaMode1(11),
ultraDmaMode2(12),
ultraDmaMode3(13),
ultraDmaMode4(14),
ultraDmaMode5(15)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk Transfer Mode.
other(1)
The agent cannot determine the transfer mode on this ATA disk.
pioMode0(2)
The ATA disk is using PIO mode 0.
pioMode1(3)
The ATA disk is using PIO mode 1.
pioMode2(4)
The ATA disk is using PIO mode 2.
pioMode3(5)
The ATA disk is using PIO mode 3.
pioMode4(6)
The ATA disk is using PIO mode 4.
dmaMode0(7)
The ATA disk is using DMA mode 0.
dmaMode1(8)
The ATA disk is using DMA mode 1.
dmaMode2(9)
The ATA disk is using DMA mode 2.
ultraDmaMode0(10)
The ATA disk is using Ultra DMA mode 0.
ultraDmaMode1(11)
The ATA disk is using Ultra DMA mode 1.
ultraDmaMode2(12)
The ATA disk is using Ultra DMA mode 2.
ultraDmaMode3(13)
The ATA disk is using Ultra DMA mode 3.
ultraDmaMode4(14)
The ATA disk is using Ultra DMA mode 4.
ultraDmaMode5(15)
The ATA disk is using Ultra DMA mode 5."
::= { cpqIdeAtaDiskEntry 10 }
cpqIdeAtaDiskChannel OBJECT-TYPE
SYNTAX INTEGER {
other(1),
channel0(2),
channel1(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk Channel.
other(1)
The agent cannot determine the channel to which the ATA disk
is attached.
channel0(2)
The ATA disk is attached to the primary channel.
channel1(3)
The ATA disk is attached to the secondary channel."
::= { cpqIdeAtaDiskEntry 11 }
cpqIdeAtaDiskNumber OBJECT-TYPE
SYNTAX INTEGER {
other(1),
device0(2),
device1(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ATA Disk Number.
other(1)
The agent cannot determine the number of the ATA disk.
device0(2)
The ATA disk is device 0 (master).
device1(3)
The ATA disk is device 1 (slave)."
::= { cpqIdeAtaDiskEntry 12 }
cpqIdeAtaDiskLogicalDriveMember OBJECT-TYPE
SYNTAX INTEGER {
other(1),
true(2),
false(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Logical Drive Membership?
other(1)
The agent cannot determine if the ATA disk is part of a
logical drive.
true(2)
The ATA disk is part of a logical drive.
false(3)
The ATA disk is not part of a logical drive."
::= { cpqIdeAtaDiskEntry 13 }
cpqIdeAtaDiskIsSpare OBJECT-TYPE