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
|
IbmFaultMgmt-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises, Counter
FROM RFC1155-SMI
DisplayString
FROM RFC1213-MIB
OBJECT-TYPE
FROM RFC-1212;
-- High-level nodes under enterprises
ibm OBJECT IDENTIFIER ::= { enterprises 2 }
ibmArchitecture OBJECT IDENTIFIER ::= { ibm 5 }
alert OBJECT IDENTIFIER ::= { ibmArchitecture 1 }
-- This MIB defines fault management objects to be transported in an IBM
-- enterprise specific trap. The objects are compatible with IBM SNA
-- Management Services Generic Alert architecture. References to
-- subvectors and subfields are provided to facilitate mapping to the
-- architecture if desired. For additional information on IBM SNA
-- Management Services, refer to "IBM SNA Formats" (GA27-3136), and "IBM
-- SNA/Management Services Reference (SC30-3346).
--
-- Traps containing these objects have been designed to enable a
-- management station receiving such a trap to provide a network operator
-- with a notification of the problem or impending problem, the problem
-- type, description and probable cause, and recommended action for
-- problem resolution. The design also facilitates the conversion of the
-- trap to an SNA Alert that can be forwarded to a SNA focal point. It
-- should be noted that much of the fault management data is transported
-- in the form of code points that correspond to strings of text stored
-- at the trap reciever and Alert receiver.
-- Groups in Fault Management MIB
product-Set-ID OBJECT IDENTIFIER ::= { alert 3 } -- x10 subvector
supporting-Data-Correl OBJECT IDENTIFIER ::= { alert 7 } -- x48 subvector
generic-Alert-Data OBJECT IDENTIFIER ::= { alert 11 } -- x92 subvector
probable-Causes OBJECT IDENTIFIER ::= { alert 12 } -- x93 subvector
user-Causes OBJECT IDENTIFIER ::= { alert 13 } -- x94 subvector
install-Causes OBJECT IDENTIFIER ::= { alert 14 } -- x95 subvector
failure-Causes OBJECT IDENTIFIER ::= { alert 15 } -- x96 subvector
detailed-Data-SV OBJECT IDENTIFIER ::= { alert 17 } -- x98 subvector
------------------------------------------------------------------------
-- The product-Set-ID group { alert 3 } (X'10' MS Common Subvector)
--
-- This group is always present in a trap to describe the product
-- encountering the condition being reported.
--
-----------------------------------------------------------------------
------------------------------------------------------------------------
-- hwProductInstallSpecificInfoTable (X'11' MS Common Subvector)
------------------------------------------------------------------------
hwProductInstallSpecificInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwProductEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table containing information to identify hardware or
microcode products. One or more entries in this table
will be present in a trap."
::= { product-Set-ID 1 }
hwProductEntry OBJECT-TYPE
SYNTAX HwProductEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The information required to identify a single hardware product.
The index is the product being reported. The first entry
identifies the product sending the trap. A second entry will be
present in those traps reporting a condition in a product other
than the trap sender."
::= { hwProductInstallSpecificInfoTable 1 }
HwProductEntry ::=
SEQUENCE {
productClassificationHW INTEGER,
formatType INTEGER,
machineType DisplayString,
modelNum DisplayString,
plantOfManufacture DisplayString,
seqNum DisplayString,
microcodeECLevel DisplayString,
hardwareProdCommonName DisplayString,
vendorIDhw DisplayString
}
productClassificationHW OBJECT-TYPE
SYNTAX INTEGER {
hwIBM(1), -- (X'1') IBM hardware
hwIBM-NonIBM(3), -- (X'3') IBM or non-IBM hardware
-- (not distinguished)
hwNonIBM(9) -- (X'9') non-IBM hardware
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code identifying the general classification of a product."
::= { hwProductEntry 1 }
------------------------------------------------------------------------
-- Hardware Product ID (X'00' Product ID Subfield)
------------------------------------------------------------------------
formatType OBJECT-TYPE
SYNTAX INTEGER {
form11(17) -- (X'11') prod. instance identified by plant of mfg.
-- and sequence # (unique by machine type and model #)
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code identifying the format type of a product instance."
::= { hwProductEntry 2 }
machineType OBJECT-TYPE
SYNTAX DisplayString (SIZE (4)) -- numeric characters only
ACCESS read-only
STATUS optional
DESCRIPTION
"The machine type."
::= { hwProductEntry 3 }
modelNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (3))
ACCESS read-only
STATUS optional
DESCRIPTION
"Machine model number."
::= { hwProductEntry 4 }
plantOfManufacture OBJECT-TYPE
SYNTAX DisplayString (SIZE (2))
ACCESS read-only
STATUS optional
DESCRIPTION
"Plant of manufacture."
::= { hwProductEntry 5 }
seqNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (7))
ACCESS read-only
STATUS optional
DESCRIPTION
"Sequence number: right justified, with ASCII 0's fill on left."
::= { hwProductEntry 6}
------------------------------------------------------------------------
-- microcodeECLevel (X'0B' Product ID Subfield)
------------------------------------------------------------------------
microcodeECLevel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..8))
ACCESS read-only
STATUS optional
DESCRIPTION
"The Engineering Change (EC) level of the failing microcode
component. This object is included in a trap only when the
reported problem is most probably caused by a microcode failure.
This object continues to exist in the MIB even at times when it
is not included in a trap, but a get will result in the object
being returned with a length of 0."
::= { hwProductEntry 7 }
------------------------------------------------------------------------
-- hardwareProdCommonName (X'0E' Product ID Subfield)
------------------------------------------------------------------------
hardwareProdCommonName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..15))
ACCESS read-only
STATUS optional
DESCRIPTION
"The name commonly used to identify the product."
::= { hwProductEntry 8 }
------------------------------------------------------------------------
-- vendorIDhw (X'0F' Product ID Subfield)
------------------------------------------------------------------------
vendorIDhw OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
ACCESS read-only
STATUS optional
DESCRIPTION
"The name of the product vendor. This object is included in a
trap only when the productClassificationHW object is set to
'hwNonIBM' or 'hwIBM-NonIBM'.
This object continues to exist in the MIB even at times when it
is not included in a trap, but a get will result in the object
being returned with a length of 0."
::= { hwProductEntry 9 }
------------------------------------------------------------------------
-- swProductInstallSpecificInfoTable (X'11' MS Common Subvector)
------------------------------------------------------------------------
swProductInstallSpecificInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwProductEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table containing information to identify software products.
This table is present in a trap when the condition being reported
is in a software product or set of software products."
::= { product-Set-ID 2 }
swProductEntry OBJECT-TYPE
SYNTAX SwProductEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The information required to identify a single software product.
The index is the instnce of product being identified."
::= { swProductInstallSpecificInfoTable 1 }
SwProductEntry ::=
SEQUENCE {
productClassificationSW INTEGER (0..15),
commonVerID DisplayString (SIZE (0..2)),
commonRelID DisplayString (SIZE (0..2)),
commonModID DisplayString (SIZE (0..2)),
softwareProdCommonName DisplayString (SIZE (1..30)),
softwareProdProgNmbr DisplayString (SIZE (0..7)),
vendorIDsw DisplayString (SIZE (1..16))
}
productClassificationSW OBJECT-TYPE
SYNTAX INTEGER {
swIBM(4), -- (X'4') IBM software
swNonIBM(12), -- (X'C') non-IBM software
swIBM-NonIBM(14) -- (X'E') IBM or non-IBM software
-- (not distinguished)
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code identifying the general classification of a product."
::= { swProductEntry 1 }
------------------------------------------------------------------------
-- Software Product Common Level (X'04' Product ID Subfield)
------------------------------------------------------------------------
commonVerID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..2)) -- Numeric characters only
ACCESS read-only
STATUS optional
DESCRIPTION
"Common version ID: right justified, with ASCII 0 fill on left."
::= { swProductEntry 2 }
commonRelID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..2)) -- Numeric characters only
ACCESS read-only
STATUS optional
DESCRIPTION
"Common release ID: right justified, with ASCII 0 fill on left."
::= { swProductEntry 3 }
commonModID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..2)) -- Numeric characters only
ACCESS read-only
STATUS optional
DESCRIPTION
"Common modification ID: right justified, with ASCII 0 fill on
left."
::= { swProductEntry 4 }
------------------------------------------------------------------------
-- softwareProdCommonName (X'06' Product ID Subfield)
------------------------------------------------------------------------
softwareProdCommonName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..30))
ACCESS read-only
STATUS optional
DESCRIPTION
"The name commonly used to identify the product."
::= { swProductEntry 5 }
------------------------------------------------------------------------
-- softwareProdProgNmbr (X'08' Product ID Subfield)
------------------------------------------------------------------------
softwareProdProgNmbr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..7))
ACCESS read-only
STATUS optional
DESCRIPTION
"The program product number as assigned by distribution personnel,
or a substitute value supplied by a user-written software
program."
::= { swProductEntry 6 }
------------------------------------------------------------------------
-- vendorIDsw (X'0F' Product ID Subfield)
------------------------------------------------------------------------
vendorIDsw OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
ACCESS read-only
STATUS optional
DESCRIPTION
"The name of the product vendor. This object is included in a
trap only when the productClassificationSW object is set to
'swNonIBM' or 'swIBM-NonIBM'.
This object continues to exist in the MIB even at times when it
is not included in a trap, but a get will result in the object
being returned with a length of 0."
::= { swProductEntry 7 }
------------------------------------------------------------------------
-- The supporting-Data-Correl group { alert 7 } (X'48' MS Common Subvector)
-- This group is present in a trap when additional data is available
-- that relates to the problem being reported.
------------------------------------------------------------------------
--
--
------------------------------------------------------------------------
-- detailedDataSD (X'85' Supporting Data Correlation Subfield)
------------------------------------------------------------------------
detailedDataSDTable OBJECT-TYPE
SYNTAX SEQUENCE OF DetailedDataSDEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of information correlation data."
::= { supporting-Data-Correl 2 }
detailedDataSDEntry OBJECT-TYPE
SYNTAX DetailedDataSDEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The information required by the trap receiver to
correlate/retrieve additional data. All objects in this entry
will be provided. The index is the instance/number of the
correlator. Multiple entries will be provided when multiple sets
of data are available."
::= { detailedDataSDTable 1 }
DetailedDataSDEntry ::=
SEQUENCE {
productIDCodeSD INTEGER,
dataIDCodeSD INTEGER,
dataEncodingSD INTEGER,
dataSD OCTET STRING
}
productIDCodeSD OBJECT-TYPE
SYNTAX INTEGER {
displayNone(0), -- X'00'
displayFirstHW(41), -- X'29'
displaySecondHW(42), -- X'2A'
displayFirstSW(153), -- X'99'
displaySecondSW(154) -- X'9A'
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating what product identification, if any is
to displayed in conjunction with the data-type and data.
displayNone - Do not display any product identification
data in conjunction with the data-type and
data.
displayFirstHW - display machine type or product common name
from the first entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displaySecondHW - display machine type or product common name
from the second entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displayFirstSW - display software product common name
from the first entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable.
displaySecondSW - display software product common name
from the second entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable."
::= { detailedDataSDEntry 1 }
dataIDCodeSD OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A Detailed Data Code Point (Data ID code point)
(described in IBM document GA27-3136) indicating the type of data
provided. The English text associated with each code point or
its national language equivalent is displayed with the
correlation data."
::= { detailedDataSDEntry 2 }
dataEncodingSD OBJECT-TYPE
SYNTAX INTEGER {
hex(0), -- (X'00') encoded/displayed as hexadecimal digits
binary(1), -- (X'01') encoded as an unsigned integer value, the
-- decimal equivalent is displayed
ascii(17) -- (X'11') data is to be decoded as ASCII characters
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating how the accompanying correlation data is
encoded, and thus how it is to be decoded and displayed."
::= { detailedDataSDEntry 3 }
dataSD OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..44))
ACCESS read-only
STATUS optional
DESCRIPTION
"Correlation data encoded as specified by the dataEncodingSD
object."
::= { detailedDataSDEntry 4}
------------------------------------------------------------------------
-- The generic-Alert-Data group { alert 11 } (X'92' Alert MS Subvector)
--
-- This group is always provided in a trap to describe the problem being
-- reported.
------------------------------------------------------------------------
flags OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is always set to the value 0. It may be used
in the future to further indicate why/when the trap was
sent."
::= { generic-Alert-Data 1 }
alertType OBJECT-TYPE
SYNTAX INTEGER {
perm(1), -- (X'01') permanent loss of availability
temp(2), -- (X'02') temporary loss of availability
perf(3), -- (X'03') performance is below an acceptable level
pend(17), -- (X'11') impending loss of availability
unkn(18) -- (X'12') the severity of the problem is not known
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A code indicating the severity of the condition being reported."
::= { generic-Alert-Data 2 }
alertDescriptionCode OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An Alert Description Code Point (described in IBM document
GA27-3136) denoting the problem being reported."
::= { generic-Alert-Data 3 }
------------------------------------------------------------------------
-- The probable-Causes group { alert 12 } (X'93' Alert MS Subvector)
--
-- This group is always present in a trap to provide the probable
-- cause(s) of the condition being reported.
------------------------------------------------------------------------
probableCausesTable OBJECT-TYPE
SYNTAX SEQUENCE OF ProbableCausesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of probable cause data."
::= { probable-Causes 1 }
probableCausesEntry OBJECT-TYPE
SYNTAX ProbableCausesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry of probable cause data. The index is the
number/instance of the probable cause."
::= { probableCausesTable 1 }
ProbableCausesEntry ::= SEQUENCE { probableCause INTEGER }
probableCause OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A Probable Cause Code Point (described in IBM document
GA27-3136) denoting the probable cause of the reported problem.
From one to four instances of this object (in order of decreasing
probability) are provided in a trap."
::= { probableCausesEntry 1 }
------------------------------------------------------------------------
-- The user-Causes group { alert 13 } (X'94' Alert MS Subvector)
--
-- This group provides data detailing the probable user causes of the
-- problem and the recommended actions to be taken in connection with
-- these causes. It may also provide additional detailed data to be
-- inserted into the text indexed by the user cause and/or recommended
-- action code points.
--
-- This group is present in a trap if it possible that the problem could
-- have been caused by a user/customer.
------------------------------------------------------------------------
--
--
------------------------------------------------------------------------
-- userCause (X'01' User Causes Subfield)
------------------------------------------------------------------------
userCausesTable OBJECT-TYPE
SYNTAX SEQUENCE OF UserCausesEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of user cause data."
::= { user-Causes 1 }
userCausesEntry OBJECT-TYPE
SYNTAX UserCausesEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"An entry of user cause data. The index is the number/instance
of the user cause."
::= { userCausesTable 1}
UserCausesEntry ::= SEQUENCE { userCause INTEGER }
userCause OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A User Cause Code Point (described in IBM document GA27-3136)
denoting the probable user cause of the reported problem. From
From 0 to 4 instances of this object (in order of decreasing
probability) are provided in a trap."
::= { userCausesEntry 1}
------------------------------------------------------------------------
-- recommendedActionsUC (X'81' Network Alert Common Subfield)
------------------------------------------------------------------------
recommendedActionsUCTable OBJECT-TYPE
SYNTAX SEQUENCE OF RecommendedActionsUCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of recommended action data."
::= { user-Causes 2 }
recommendedActionsUCEntry OBJECT-TYPE
SYNTAX RecommendedActionsUCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"An entry of recommended action data. The index is the
number/instance of the recommended action."
::= { recommendedActionsUCTable 1}
RecommendedActionsUCEntry ::= SEQUENCE { recommendedActionUC INTEGER }
recommendedActionUC OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A Recommended Action Code Point (described in IBM document
GA27-3136) denoting the recommended action to take to resolve the
problem. From 0 to 4 instances of this object (in order of
decreasing probability) are provided in a trap. If an instance
of the userCause object is present, at least one instance of this
object will be present."
::= { recommendedActionsUCEntry 1 }
------------------------------------------------------------------------
-- detailedDataUC (X'85' Network Alert Common Subfield)
--
-- This subgroup is provided in a trap whenever detailed data is to be
-- inserted into the text indexed by the user cause and/or recommended
-- action code points.
------------------------------------------------------------------------
detailedDataUCTable OBJECT-TYPE
SYNTAX SEQUENCE OF DetailedDataUCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of data to be inserted into the text indexed by
the user cause and/or recommended action code points."
::= { user-Causes 3 }
detailedDataUCEntry OBJECT-TYPE
SYNTAX DetailedDataUCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The information required to display product identification, data
type, and detailed data. The index is the instance/number of the
detailed data. The following rules are used for providing
entries:
* An entry is provided for each instance of the userCause object
and/or recommendedActionUC object containing a codepoint whose
third character is 'A' or 'B'.
* Two entries are provided for each instance of the userCause
object and/or recommendedActionUC object containing a codepoint
whose third character is 'C'.
* Three entries are provided for each instance of the userCause
object and/or recommendedActionUC object containing a
codepoint whose third character is 'D'.
Entries are provided in the order of the occurrance of the code
points requiring them."
::= { detailedDataUCTable 1 }
DetailedDataUCEntry ::=
SEQUENCE {
productIDCodeUC INTEGER,
dataIDCodeUC INTEGER,
dataEncodingUC INTEGER,
dataUC OCTET STRING
}
productIDCodeUC OBJECT-TYPE
SYNTAX INTEGER {
displayNone(0), -- X'00'
displayFirstHW(41), -- X'29'
displaySecondHW(42), -- X'2A'
displayFirstSW(153), -- X'99'
displaySecondSW(154) -- X'9A'
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating what product identification, if any is
to displayed in conjunction with the data-type and data.
displayNone - Do not display any product identification
data in conjunction with the data-type and
data.
displayFirstHW - display machine type or product common name
from the first entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displaySecondHW - display machine type or product common name
from the second entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displayFirstSW - display software product common name
from the first entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable.
displaySecondSW - display software product common name
from the second entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable."
::= { detailedDataUCEntry 1 }
dataIDCodeUC OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A Detailed Data Code Point (Data ID code point)
(described in IBM document GA27-3136) indicating the type of data
provided. The English text associated with each code point or
its national language equivalent is displayed with the
detailed data."
::= { detailedDataUCEntry 2 }
dataEncodingUC OBJECT-TYPE
SYNTAX INTEGER {
hex(0), -- (X'00') encoded/displayed as hexadecimal digits
binary(1), -- (X'01') encoded as an unsigned integer value, the
-- decimal equivalent is displayed
ascii(17) -- (X'11') data is to be decoded as ASCII characters
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating how the accompanying detailed data is
encoded, and thus how it is to be decoded and displayed."
::= { detailedDataUCEntry 3 }
dataUC OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..44))
ACCESS read-only
STATUS optional
DESCRIPTION
"Detailed data encoded as specified by the dataEncodingUC
object."
::= { detailedDataUCEntry 4}
------------------------------------------------------------------------
-- productSetIDIndexUC (X'83' Network Alert Common Subfield)
--
-- This subgroup is provided in a trap whenever product identification
-- data is to be inserted into the text indexed by the user cause and/or
-- recommended action code points.
------------------------------------------------------------------------
productSetIDIndexUCTable OBJECT-TYPE
SYNTAX SEQUENCE OF ProductSetIDIndexUCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table a describing how product identification data will be
inserted into the text indexed by the user cause or recommended
action code points."
::= { user-Causes 4 }
productSetIDIndexUCEntry OBJECT-TYPE
SYNTAX ProductSetIDIndexUCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"An instance of information required to display product
identification data. The index is the instance of the Product Set
ID Index. An entry is provided for each instance of the userCause
object and/or recommendedActionUC object containing a codepoint
whose third character is 'E'. Entries are provided in the order
of the occurrance of the code points requiring them."
::= { productSetIDIndexUCTable 1 }
ProductSetIDIndexUCEntry ::= SEQUENCE { productSetIDIndexUC INTEGER }
productSetIDIndexUC OBJECT-TYPE
SYNTAX INTEGER {
displayFirstHW(41), -- X'29'
displaySecondHW(42), -- X'2A'
displayFirstSW(153), -- X'99'
displaySecondSW(154) -- X'9A'
}
ACCESS read-only
STATUS optional
DESCRIPTION
"This object provides a code indicating how product
identification data is to be inserted into the text
indexed by the user cause and/or recommended action code
points.
displayFirstHW - display machine type or product common name
from the first instance of the machineType
or hardwareProdCommonName objects.
displaySecondHW - display machine type or product common name
from the second instance of the machineType
or hardwareProdCommonName objects.
displayFirstSW - display software product common name
from the first entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable.
displaySecondSW - display software product common name
from the second entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable."
::= { productSetIDIndexUCEntry 1}
------------------------------------------------------------------------
-- The install-Causes group { alert 14 } (X'95' Alert MS Subvector)
--
-- This group provides data detailing the probable install causes of the
-- problem and the recommended actions to be taken in connection with
-- these causes. It may also provide additional detailed data to be
-- inserted into the text indexed by the install cause and/or recommended
-- action code points.
--
-- This group is present in a trap if it possible that the problem could
-- have been caused by an improper installation.
------------------------------------------------------------------------
--
--
------------------------------------------------------------------------
-- installCause (X'01' Install Causes Subfield)
------------------------------------------------------------------------
installCausesTable OBJECT-TYPE
SYNTAX SEQUENCE OF InstallCausesEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of install cause data."
::= { install-Causes 1 }
installCausesEntry OBJECT-TYPE
SYNTAX InstallCausesEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"An entry of install cause data. The index is the number/instance
of the install cause."
::= { installCausesTable 1}
InstallCausesEntry ::= SEQUENCE { installCause INTEGER }
installCause OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"An Install Cause Code Point (described in IBM document GA27-3136)
denoting the probable install cause of the reported problem. From
From 0 to 4 instances of this object (in order of decreasing
probability) are provided in a trap."
::= { installCausesEntry 1}
------------------------------------------------------------------------
-- recommendedActionsIC (X'81' Network Alert Common Subfield)
------------------------------------------------------------------------
recommendedActionsICTable OBJECT-TYPE
SYNTAX SEQUENCE OF RecommendedActionsICEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of recommended action data."
::= { install-Causes 2 }
recommendedActionsICEntry OBJECT-TYPE
SYNTAX RecommendedActionsICEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"An entry of recommended action data. The index is the
number/instance of the recommended action."
::= { recommendedActionsICTable 1}
RecommendedActionsICEntry ::= SEQUENCE { recommendedActionIC INTEGER }
recommendedActionIC OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A Recommended Action Code Point (described in IBM document
GA27-3136) denoting the recommended action to take to resolve the
problem. From 0 to 4 instances of this object (in order of
decreasing probability) are provided in a trap. If an instance
of the installCause object is present, at least one instance of this
object will be present."
::= { recommendedActionsICEntry 1 }
------------------------------------------------------------------------
-- detailedDataIC (X'85' Network Alert Common Subfield)
--
-- This subgroup is provided in a trap whenever detailed data is to be
-- inserted into the text indexed by the install cause and/or recommended
-- action code points.
------------------------------------------------------------------------
detailedDataICTable OBJECT-TYPE
SYNTAX SEQUENCE OF DetailedDataICEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of data to be inserted into the text indexed by
the install cause and/or recommended action code points."
::= { install-Causes 3 }
detailedDataICEntry OBJECT-TYPE
SYNTAX DetailedDataICEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The information required to display product identification, data
type, and detailed data. The index is the instance/number of the
detailed data. The following rules are used for providing
entries:
* An entry is provided for each instance of the installCause object
and/or recommendedActionIC object containing a codepoint whose
third character is 'A' or 'B'.
* Two entries are provided for each instance of the installCause
object and/or recommendedActionIC object containing a codepoint
whose third character is 'C'.
* Three entries are provided for each instance of the installCause
object and/or recommendedActionIC object containing a
codepoint whose third character is 'D'.
Entries are provided in the order of the occurrance of the code
points requiring them."
::= { detailedDataICTable 1 }
DetailedDataICEntry ::=
SEQUENCE {
productIDCodeIC INTEGER,
dataIDCodeIC INTEGER,
dataEncodingIC INTEGER,
dataIC OCTET STRING
}
productIDCodeIC OBJECT-TYPE
SYNTAX INTEGER {
displayNone(0), -- X'00'
displayFirstHW(41), -- X'29'
displaySecondHW(42), -- X'2A'
displayFirstSW(153), -- X'99'
displaySecondSW(154) -- X'9A'
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating what product identification, if any is
to displayed in conjunction with the data-type and data.
displayNone - Do not display any product identification
data in conjunction with the data-type and
data.
displayFirstHW - display machine type or product common name
from the first entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displaySecondHW - display machine type or product common name
from the second entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displayFirstSW - display software product common name
from the first entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable.
displaySecondSW - display software product common name
from the second entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable."
::= { detailedDataICEntry 1 }
dataIDCodeIC OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A Detailed Data Code Point (Data ID code point)
(described in IBM document GA27-3136) indicating the type of data
provided. The English text associated with each code point or
its national language equivalent is displayed with the
detailed data."
::= { detailedDataICEntry 2 }
dataEncodingIC OBJECT-TYPE
SYNTAX INTEGER {
hex(0), -- (X'00') encoded/displayed as hexadecimal digits
binary(1), -- (X'01') encoded as an unsigned integer value, the
-- decimal equivalent is displayed
ascii(17) -- (X'11') data is to be decoded as ASCII characters
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating how the accompanying detailed data is
encoded, and thus how it is to be decoded and displayed."
::= { detailedDataICEntry 3 }
dataIC OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..44))
ACCESS read-only
STATUS optional
DESCRIPTION
"Detailed data encoded as specified by the dataEncodingIC
object."
::= { detailedDataICEntry 4}
------------------------------------------------------------------------
-- productSetIDIndexIC (X'83' Network Alert Common Subfield)
--
-- This subgroup is provided in a trap whenever product identification
-- data is to be inserted into the text indexed by the install cause and/or
-- recommended action code points.
------------------------------------------------------------------------
productSetIDIndexICTable OBJECT-TYPE
SYNTAX SEQUENCE OF ProductSetIDIndexICEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table a describing how product identification data will be
inserted into the text indexed by the install cause or recommended
action code points."
::= { install-Causes 4 }
productSetIDIndexICEntry OBJECT-TYPE
SYNTAX ProductSetIDIndexICEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"An instance of information required to display product
identification data. The index is the instance of the Product Set
ID Index. An entry is provided for each instance of the installCause
object and/or recommendedActionIC object containing a codepoint
whose third character is 'E'. Entries are provided in the order
of the occurrance of the code points requiring them."
::= { productSetIDIndexICTable 1 }
ProductSetIDIndexICEntry ::= SEQUENCE { productSetIDIndexIC INTEGER }
productSetIDIndexIC OBJECT-TYPE
SYNTAX INTEGER {
displayFirstHW(41), -- X'29'
displaySecondHW(42), -- X'2A'
displayFirstSW(153), -- X'99'
displaySecondSW(154) -- X'9A'
}
ACCESS read-only
STATUS optional
DESCRIPTION
"This object provides a code indicating how product
identification data is to be inserted into the text
indexed by the install cause and/or recommended action code
points.
displayFirstHW - display machine type or product common name
from the first instance of the machineType
or hardwareProdCommonName objects.
displaySecondHW - display machine type or product common name
from the second instance of the machineType
or hardwareProdCommonName objects.
displayFirstSW - display software product common name
from the first entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable.
displaySecondSW - display software product common name
from the second entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable."
::= { productSetIDIndexICEntry 1}
------------------------------------------------------------------------
-- The failure-Causes group { alert 15 } (X'96' Alert MS Subvector)
--
-- This group provides data detailing the probable failure causes of the
-- problem and the recommended actions to be taken in connection with
-- these causes. It may also provide additional detailed data to be
-- inserted into the text indexed by the install cause and/or recommended
-- action code points.
--
-- This group is present in a trap if it possible that the problem could
-- have been caused by the failure of a hardware or software component.
------------------------------------------------------------------------
--
--
------------------------------------------------------------------------
-- failureCause (X'01' Install Causes Subfield)
------------------------------------------------------------------------
failureCausesTable OBJECT-TYPE
SYNTAX SEQUENCE OF FailureCausesEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of failure cause data."
::= { failure-Causes 1 }
failureCausesEntry OBJECT-TYPE
SYNTAX FailureCausesEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"An entry of failure cause data. The index is the number/instance
of the failure cause."
::= { failureCausesTable 1}
FailureCausesEntry ::= SEQUENCE { failureCause INTEGER }
failureCause OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A Failure Cause Code Point (described in IBM document GA27-3136)
denoting the probable failure cause of the reported problem.
From 0 to 4 instances of this object (in order of decreasing
probability) are provided in a trap."
::= { failureCausesEntry 1}
------------------------------------------------------------------------
-- recommendedActionsFC (X'81' Network Alert Common Subfield)
------------------------------------------------------------------------
recommendedActionsFCTable OBJECT-TYPE
SYNTAX SEQUENCE OF RecommendedActionsFCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of recommended action data."
::= { failure-Causes 2 }
recommendedActionsFCEntry OBJECT-TYPE
SYNTAX RecommendedActionsFCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"An entry of recommended action data. The index is the
number/instance of the recommended action."
::= { recommendedActionsFCTable 1}
RecommendedActionsFCEntry ::= SEQUENCE { recommendedActionFC INTEGER }
recommendedActionFC OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A Recommended Action Code Point (described in IBM document
GA27-3136) denoting the recommended action to take to resolve the
problem. From 0 to 4 instances of this object (in order of
decreasing probability) are provided in a trap. If an instance
of the failureCause object is present, at least one instance of this
object will be present."
::= { recommendedActionsFCEntry 1 }
------------------------------------------------------------------------
-- detailedDataFC (X'85' Network Alert Common Subfield)
--
-- This subgroup is provided in a trap whenever detailed data is to be
-- inserted into the text indexed by the failure cause and/or recommended
-- action code points.
------------------------------------------------------------------------
detailedDataFCTable OBJECT-TYPE
SYNTAX SEQUENCE OF DetailedDataFCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of data to be inserted into the text indexed by
the failure cause and/or recommended action code points."
::= { failure-Causes 3 }
detailedDataFCEntry OBJECT-TYPE
SYNTAX DetailedDataFCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The information required to display product identification, data
type, and detailed data. The index is the instance/number of the
detailed data. The following rules are used for providing
entries:
* An entry is provided for each instance of the failureCause object
and/or recommendedActionFC object containing a codepoint whose
third character is 'A' or 'B'.
* Two entries are provided for each instance of the failureCause
object and/or recommendedActionFC object containing a codepoint
whose third character is 'C'.
* Three entries are provided for each instance of the failureCause
object and/or recommendedActionFC object containing a
codepoint whose third character is 'D'.
Entries are provided in the order of the occurrance of the code
points requiring them."
::= { detailedDataFCTable 1 }
DetailedDataFCEntry ::=
SEQUENCE {
productIDCodeFC INTEGER,
dataIDCodeFC INTEGER,
dataEncodingFC INTEGER,
dataFC OCTET STRING
}
productIDCodeFC OBJECT-TYPE
SYNTAX INTEGER {
displayNone(0), -- X'00'
displayFirstHW(41), -- X'29'
displaySecondHW(42), -- X'2A'
displayFirstSW(153), -- X'99'
displaySecondSW(154) -- X'9A'
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating what product identification, if any is
to displayed in conjunction with the data-type and data.
displayNone - Do not display any product identification
data in conjunction with the data-type and
data.
displayFirstHW - display machine type or product common name
from the first entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displaySecondHW - display machine type or product common name
from the second entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displayFirstSW - display software product common name
from the first entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable.
displaySecondSW - display software product common name
from the second entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable."
::= { detailedDataFCEntry 1 }
dataIDCodeFC OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A Detailed Data Code Point (Data ID code point)
(described in IBM document GA27-3136) indicating the type of data
provided. The English text associated with each code point or
its national language equivalent is displayed with the
detailed data."
::= { detailedDataFCEntry 2 }
dataEncodingFC OBJECT-TYPE
SYNTAX INTEGER {
hex(0), -- (X'00') encoded/displayed as hexadecimal digits
binary(1), -- (X'01') encoded as an unsigned integer value, the
-- decimal equivalent is displayed
ascii(17) -- (X'11') data is to be decoded as ASCII characters
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating how the accompanying detailed data is
encoded, and thus how it is to be decoded and displayed."
::= { detailedDataFCEntry 3 }
dataFC OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..44))
ACCESS read-only
STATUS optional
DESCRIPTION
"Detailed data encoded as specified by the dataEncodingFC
object."
::= { detailedDataFCEntry 4}
------------------------------------------------------------------------
-- productSetIDIndexFC (X'83' Network Alert Common Subfield)
--
-- This subgroup is provided in a trap whenever product identification
-- data is to be inserted into the text indexed by the failure cause and/or
-- recommended action code points.
------------------------------------------------------------------------
productSetIDIndexFCTable OBJECT-TYPE
SYNTAX SEQUENCE OF ProductSetIDIndexFCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table a describing how product identification data will be
inserted into the text indexed by the failure cause or recommended
action code points."
::= { failure-Causes 4 }
productSetIDIndexFCEntry OBJECT-TYPE
SYNTAX ProductSetIDIndexFCEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"An instance of information required to display product
identification data. The index is the instance of the Product Set
ID Index. An entry is provided for each instance of the failureCause
object and/or recommendedActionFC object containing a codepoint
whose third character is 'E'. Entries are provided in the order
of the occurrance of the code points requiring them."
::= { productSetIDIndexFCTable 1 }
ProductSetIDIndexFCEntry ::= SEQUENCE { productSetIDIndexFC INTEGER }
productSetIDIndexFC OBJECT-TYPE
SYNTAX INTEGER {
displayFirstHW(41), -- X'29'
displaySecondHW(42), -- X'2A'
displayFirstSW(153), -- X'99'
displaySecondSW(154) -- X'9A'
}
ACCESS read-only
STATUS optional
DESCRIPTION
"This object provides a code indicating how product
identification data is to be inserted into the text
indexed by the failure cause and/or recommended action code
points.
displayFirstHW - display machine type or product common name
from the first instance of the machineType
or hardwareProdCommonName objects.
displaySecondHW - display machine type or product common name
from the second instance of the machineType
or hardwareProdCommonName objects.
displayFirstSW - display software product common name
from the first entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable.
displaySecondSW - display software product common name
from the second entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable."
::= { productSetIDIndexFCEntry 1}
------------------------------------------------------------------------
-- The detailed-Data-SV group { alert 17 } (X'98' Alert MS Subvector)
--
-- This group is provided in a trap when there is product-specific
-- detailed data to be reported.
------------------------------------------------------------------------
--
------------------------------------------------------------------------
-- detailedDataDD (X'85' Network Alert Common Subfield)
------------------------------------------------------------------------
detailedDataDDTable OBJECT-TYPE
SYNTAX SEQUENCE OF DetailedDataDDEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"A table of product-specific detailed data."
::= { detailed-Data-SV 1 }
detailedDataDDEntry OBJECT-TYPE
SYNTAX DetailedDataDDEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The information required to display product identification, data
type, and detailed data. The index is the instance/number of the
detailed data."
::= { detailedDataDDTable 1 }
DetailedDataDDEntry ::=
SEQUENCE {
productIDCodeDD INTEGER,
dataIDCodeDD INTEGER,
dataEncodingDD INTEGER,
dataDD OCTET STRING
}
productIDCodeDD OBJECT-TYPE
SYNTAX INTEGER {
displayNone(0), -- X'00'
displayFirstHW(41), -- X'29'
displaySecondHW(42), -- X'2A'
displayFirstSW(153), -- X'99'
displaySecondSW(154) -- X'9A'
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating what product identification, if any is
to displayed in conjunction with the data-type and data.
displayNone - Do not display any product identification
data in conjunction with the data-type and
data.
displayFirstHW - display machine type or product common name
from the first entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displaySecondHW - display machine type or product common name
from the second entry of the machineType
or hardwareProdCommonName objects in the
hwProductInstallSpecificInfoTable.
displayFirstSW - display software product common name
from the first entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable.
displaySecondSW - display software product common name
from the second entry of the
softwareProdCommonName object in the
swProductInstallSpecificInfoTable."
::= { detailedDataDDEntry 1 }
dataIDCodeDD OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS optional
DESCRIPTION
"A Detailed Data Code Point (Data ID code point)
(described in IBM document GA27-3136) indicating the type of data
provided. The English text associated with each code point or
its national language equivalent is displayed with the
detailed data."
::= { detailedDataDDEntry 2 }
dataEncodingDD OBJECT-TYPE
SYNTAX INTEGER {
hex(0), -- (X'00') encoded/displayed as hexadecimal digits
binary(1), -- (X'01') encoded as an unsigned integer value, the
-- decimal equivalent is displayed
ascii(17) -- (X'11') data is to be decoded as ASCII characters
}
ACCESS read-only
STATUS optional
DESCRIPTION
"A code indicating how the accompanying detailed data is
encoded, and thus how it is to be decoded and displayed."
::= { detailedDataDDEntry 3 }
dataDD OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..44))
ACCESS read-only
STATUS optional
DESCRIPTION
"Detailed data encoded as specified by the dataEncodingUC
object."
::= { detailedDataDDEntry 4}
END
|