summaryrefslogtreecommitdiff
path: root/MIBS/ibm/IBM-TS4500-MIBv2
blob: fb09349685258b14b8ac8f05b20b1695a51b47f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
-- MIB module odule defining SNMPv2 traps for the 3584 family of IBM tape libraries.
IBM-TS4500-MIBv2 DEFINITIONS ::= BEGIN


-- Imports from other sources that are used in this MIB module.
IMPORTS
        MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, enterprises, Integer32
                FROM SNMPv2-SMI         -- RFC1902

        DisplayString
                FROM SNMPv2-TC          -- RFC1903

        MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
                FROM SNMPv2-CONF;       -- RFC1904


-- Module identification.
ibm3584 MODULE-IDENTITY
        LAST-UPDATED    "201404150000Z"   -- April 15, 2012
        ORGANIZATION    "IBM RMSS - 3584 Development"
        CONTACT-INFO    "IBM Help"
                        
        DESCRIPTION     "Initial revision of this module."

        ::= { ibmProd 182 }

-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Tree structure ID setup

ibm OBJECT IDENTIFIER
        ::= { enterprises 2 }

ibmProd OBJECT IDENTIFIER
        ::= { ibm 6 }

--ibm3584 OBJECT IDENTIFIER
--        ::= { ibmProd 182 }

ibm3584MIB OBJECT IDENTIFIER
        ::= { ibm3584 1 }

ibm3584MIBTraps OBJECT IDENTIFIER
        ::= { ibm3584MIB 0 }

ibm3584MIBAdmin OBJECT IDENTIFIER
        ::= { ibm3584MIB 1 }

ibm3584MIBObjects OBJECT IDENTIFIER
        ::= { ibm3584MIB 2 }

ibm3584MIBConformance OBJECT IDENTIFIER
        ::= { ibm3584MIB 3 }

-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Specific trap object setup

-- Machine type, model number, library serial number ID
ibm3584MIBGroupMTMNLSN OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 11 }

-- Sense key, additional sense code, additional sense code qualifier ID
ibm3584MIBGroupSKASCASCQ OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 21 }

-- Hardware error code, hardware error code qualifier ID
ibm3584MIBGroupErrorCode OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 31 }

-- URC ID
ibm3584MIBGroupURC OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 41 }

-- Text description ID
ibm3584MIBGroupTD OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 51 }

-- Cartridge Volume Serial Number
ibm3584MIBGroupVOLSER OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 61 }

-- Logical Library Number
ibm3584MIBGroupLL OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 71 }

-- World Wide Node Name
ibm3584MIBGroupWWNN OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 81 }

-- Drive Serial Number
ibm3584MIBGroupDrvSN OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 91 }

-- Severity Code
ibm3584MIBSeverity OBJECT IDENTIFIER
        ::= { ibm3584MIBObjects 101 }

-- UserID
ibm3584MIBUserID OBJECT IDENTIFIER    
        ::= { ibm3584MIBObjects 111 }
        
-- Location
ibm3584MIBLocation OBJECT IDENTIFIER    
        ::= { ibm3584MIBObjects 121 }

-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Trap object definitions

-- Machine type, model number, library serial number definition
-- Size is 14 plus one space b/n MT and MN and one space b/n MN and LSN
ibm3584MIBObjectsMTMNLSN OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..16))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "This is the machine type associated with the trap."
        ::= { ibm3584MIBGroupMTMNLSN 1 }

-- Sense key, additional sense code, additional sense code qualifier definition
-- Size is 6 plus one space b/n SK and ASC and one space b/n ASC and ASCQ
ibm3584MIBObjectsSKASCASCQ OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..8))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "This is the sense key associated with the trap."
        ::= { ibm3584MIBGroupSKASCASCQ 1 }

-- Hardware error code, hardware error code qualifier definition
-- Size is 4 plus one space b/n ErrorCode
ibm3584MIBObjectsErrorCode OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..5))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "This is the hardware error code associated with the trap."
        ::= { ibm3584MIBGroupErrorCode 1 }

-- URC definition
ibm3584MIBObjectsURC OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..4))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "This is the URC associated with the trap."
        ::= { ibm3584MIBGroupURC 1 }

-- Text description definition
ibm3584MIBObjectsTD OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..255))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "This is the text description of the trap."
        ::= { ibm3584MIBGroupTD 1 }

-- Text description definition
ibm3584MIBObjectsVOLSER OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..8))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "This is the Volume Serial number on the cartridge."
        ::= { ibm3584MIBGroupVOLSER 1 }


-- Logical Library Definition
ibm3584MIBObjectsLL OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..16))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "This is the Logical Library that is having a problem within the physical library."
        ::= { ibm3584MIBGroupLL 1 }

-- World Wide Node Name Definition
ibm3584MIBObjectsWWNN OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..8))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "The World Wide Node Name of the Drive that is having problems."
        ::= { ibm3584MIBGroupWWNN 1 }

-- Element Address Definition
ibm3584MIBObjectsDrvSN OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..12))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "The Serial Number of the Drive that is having problems."
        ::= { ibm3584MIBGroupDrvSN 1 }


-- Severity Code
ibm3584MIBObjectsSeverity OBJECT-TYPE
            SYNTAX          INTEGER { 
                              error (0),
                              warning  (1),
                              information (4)
                              }
    MAX-ACCESS      read-only
    STATUS          current
    DESCRIPTION     
         "Indicates the percieved severity of the problem"
::= { ibm3584MIBSeverity 1 }

-- User ID of request from external UI
ibm3584MIBObjectsUserID OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..20))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "This is the User ID associated with a request via external UI."
::= { ibm3584MIBUserID 1 }

-- Trap device location
ibm3584MIBObjectsLocation OBJECT-TYPE
        SYNTAX DisplayString (SIZE (1..50))
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
                "This is the location of the device that generated the trap."
::= { ibm3584MIBLocation 1 }


-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Trap definitions - Specific TapeAlert traps for the 3584 library
-- Range is 001 to 199

-- Trap for library TapeAlert 1
ibm3584Trap001 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsSKASCASCQ, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 001.
                 Flag: Library hardware A
                 Type: C
                 Cause: The library has trouble communicating with the drive.
                 Required host message:
                 The library has trouble communicating with the drive.
                 1. Restart the operation.
                 2. If the problem persists, call your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 1 }

-- Trap for library TapeAlert 002
ibm3584Trap002 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsSKASCASCQ, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 002.
                 Flag: Library hardware B.
                 Type: W
                 Cause: The library has a hardware failure.
                 Required host message:
                 The library has a hardware failure.
                 1. Restart the operation.
                 2. If the problem persists, call your IBM Service Representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 2 }

-- Trap for library TapeAlert 004
ibm3584Trap004 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsSKASCASCQ, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 004.
                 Flag: Library hardware D.
                 Type: C
                 Cause: The library has a hardware fault that is not mechanically.
                 Required host message:
                 The library has a hardware fault that is not mechanically related.
                 1. Restart the operation.
                 2. If the problem persists, call your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 4 }

-- Trap for library TapeAlert 007
ibm3584Trap007 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsSKASCASCQ, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 007.
                 Flag: Predictive failure.
                 Type: W
                 Cause: The library detected that a hardware component is degraded but stil operational.
                 Required host message:
                 A hardware The library detected that a hardware component is degraded but stil operational.
                 Call your IBM service representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 7 }

-- Trap for library TapeAlert 016
ibm3584Trap016 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD,      
                          ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 016.
                 Flag: Library door.
                 Type: C
                 Cause: A library door is open and prevents the library from functioning.
                 Required host message:
                 A library door is open and prevents the library from functioning.
                 1. Close the library door.
                 2. If the problem persists, call your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 16 }

-- Trap for library TapeAlert 017
ibm3584Trap017 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsSKASCASCQ, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 017.
                 Flag: Library I/O station.
                 Type: C
                 Cause: A problem with an I/O station exists.
                 Required host message:
                 A problem with an I/O station exists.
                 1. Ensure that there is no obstruction in the I/O station.
                 2. Restart the operation.
                 3. If the problem persists, call your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 17 }

-- Trap for library TapeAlert 020
ibm3584Trap020 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD,      
                          ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 020.
                 Flag: Library security mode.
                 Type: I
                 Cause: Library security mode has changed.
                 Required host message:
                 The security mode of the library has been changed. Either the library
                 has been put into secure mode or the library has exited secure mode.
                 This is for informational purposes only. No action is required."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 20 }

-- Trap for library TapeAlert 021
ibm3584Trap021 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD,      
                          ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 021.
                 Flag: Library offline.
                 Type: I
                 Cause: Library manually turned offline.
                 Required host message:
                 The library has been manually turned offline and is unavailable for use."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 21 }

-- Trap for library TapeAlert 022
ibm3584Trap022 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD,      
                          ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 022.
                 Flag: Library drive offline.
                 Type: I
                 Cause: Library turned internal drive offline.
                 Required host message:
                 A drive inside the library has been taken offline. This is for
                 informational purposes only. No action is required."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 22 }

-- Trap for library TapeAlert 024
ibm3584Trap024 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD,      
                          ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 024.
                 Flag: Library inventory.
                 Type: C
                 Cause: An inventory of the media was inconsistent.
                 Required host message:
                 An inventory of the media was inconsistent.
                 1. Run a library inventory to correct the inconsistency.
                 2. Restart operation.
                 3. If the problem persists, call your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 24 }

-- Trap for library TapeAlert 028
ibm3584Trap028 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsSKASCASCQ, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 028.
                 Flag: Power supply.
                 Type: W
                 Cause: A redundant power supply failure exists inside the library subsystem.
                 Required host message:
                 A redundant power supply failure exists inside the library subsystem.
                 Call your IBM service representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 28 }

-- Trap for library TapeAlert 030
ibm3584Trap030 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsSKASCASCQ, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 030.
                 Flag: Shuttle mechanism failure.
                 Type: C
                 Cause: A failure has occurred in the shuttle mechanism while attempting to transfer a cartridge between two library strings.
                 Required host message:
                 A failure has occurred in the shuttle mechanism while attempting to transfer a cartridge between two library strings.
                 1. Restart the operation.
                 2. If the problem persists, call your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 30 }

-- Trap for library TapeAlert 031
ibm3584Trap031 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsSKASCASCQ, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 031.
                 Flag: Cartridge in pass-through mechanism.
                 Type: C
                 Cause: Cartridge left in the pass-through mechanism between two library
                        modules.
                 Required host message:
                 A cartridge has been left in the library pass-through mechanism from a
                 previous hardware fault. Check the library users guide for instructions
                 on clearing this fault."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 31 }

-- Trap for library TapeAlert 032
ibm3584Trap032 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsSKASCASCQ, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for library TapeAlert 032.
                 Flag: Unreadable bar code labels.
                 Type: I
                 Cause: During an inventory or scan, the library was unable to read a bar code label on a cartridge.
                 Required host message:
                 During an inventory or scan, the library was unable to read a bar code label on a cartridge.
                 1. Check for damaged, misaligned, or peeling barcode labels on the cartridge.
                 2. If you find a damaged, misaligned or peeling bar code label, replace it with a new barcode label.  To request a new barcode
                 label, call you IBM Service Representative.
                 2. If no problem is found, call your IBM Service Representative."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 32 }


-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Trap definitions - Specific TapeAlert traps for the LTO tape drive
-- Range is 201 to 399

-- Trap for drive TapeAlert 001
ibm3584Trap201 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsVOLSER, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 001.
                 Flag: Read warning.
                 Type: W
                 Cause: The drive is having problems reading data.
                 Required host message:
                 The tape drive is having problems reading data. No data has been
                 lost, but there has been a reduction in the performance of the
                 tape.
                 Isolate the fault between the drive and the tape by doing the following:
                 1) Use a known good cartidge in the suspect drive.  If the drive fails, contact your IBM Service Representative.
                 2) Use the suspect tape cartrige in a known good drive.  If the test fails, discard the cartridge."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 201 }

-- Trap for drive TapeAlert 002
ibm3584Trap202 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 002.
                 Flag: Write warning.
                 Type: W
                 Cause: The drive is having problems writing data.
                 Required host message:
                 The tape drive is having problems writing data. No data has been lost,
                 but there has been a reduction in the performance of the tape.
                 Isolate the fault between the drive and the tape by doing the following:
                 1) Use a known good cartidge in the suspect drive.  If the drive fails, contact your IBM Service Representative.
                 2) Use the suspect tape cartrige in a known good drive.  If the test fails, discard the cartridge."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 202 }

-- Trap for drive TapeAlert 003
ibm3584Trap203 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 003.
                 Flag: Hard error.
                 Type: W
                 Cause: The drive had an unrecoverable read, write, or positioning error.
                 Required host message:
                 The drive had an unrecoverable read, write, or positioning error.
                 Determine if flags 4, 5, or 6, exist; follow the actions there."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 203 }

-- Trap for drive TapeAlert 004
ibm3584Trap204 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 004.
                 Flag: Media.
                 Type: C
                 Cause: The drive had an unrecoverable read, write, or positioning error that is due to faulty media.
                 Required host message:
                 The drive had an unrecoverable read, write, or positioning error that is due to faulty media. 
                 Replace the tape cartridge."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 204 }

-- Trap for drive TapeAlert 005
ibm3584Trap205 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,   ibm3584MIBObjectsVOLSER, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 005.
                 Flag: Read failure.
                 Type: C
                 Cause: The drive can not determine if an unrecoverable read failure is due to faulty media or drive hardware.
                 Required host message:
                 The drive can not determine if an unrecoverable read failure is due to faulty media or drive hardware.
                 1) Discard the tape cartridge.
                 2) If the problem persists, contact your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 205 }

-- Trap for drive TapeAlert 006
ibm3584Trap206 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER, 
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 006.
                 Flag: Write failure.
                 Type: C
                 Cause: The drive can not determine if an unrecoverable write failure is due to faulty media or drive hardware.
                 Required host message:
                 The drive can not determine if an unrecoverable write failure is due to faulty media or drive hardware.
                 1) Discard the tape cartridge.
                 2) If the problem persists, contact your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 206 }

-- Trap for drive TapeAlert 007
ibm3584Trap207 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 007.
                 Flag: Media life.
                 Type: W
                 Cause: The media has reached its end of life.
                 Required host message:
                 The media has reached its end of life.
                 1. Copy the data to another tape cartridge.
                 2. Discard the old tape cartridge."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 207 }

-- Trap for drive TapeAlert 008
ibm3584Trap208 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 008.
                 Flag: Not data grade.
                 Type: W
                 Cause: The cartridge is not data-grade.  Any data that you write to the tape is at risk.
                 Required host message:
                 The cartridge is not data-grade.  Any data that you write to the tape is at risk.
                 Replace the tape with a data-grade tape.
                 1) Discard the tape cartridge.
                 2) If the problem persists, contact your IBM Service Representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 208 }

-- Trap for drive TapeAlert 009
ibm3584Trap209 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 009.
                 Flag: Write protect.
                 Type: C
                 Cause: The drive has detected a write command for a write protected tape cartridge.
                 Required host message:
                 The drive has detected a write command for a write protected tape cartridge.
                 1) Set the write protect switch on the cartridge to OFF.
                 2) Enusre that the tape cartridge is not logically protected.
                 3) If the problem persists, contact your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 209 }

-- Trap for drive TapeAlert 010
ibm3584Trap210 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 010.
                 Flag: No removal.
                 Type: I
                 Cause: The tape drive received an UNLOAD command after the server prevented
                 the tape cartridge from being removed.
                 Required host message:
                 The tape drive received an UNLOAD command after the server prevented
                 the tape cartridge from being removed.
                 1) If the error is an operator error, no action is required.
                 2) If the error is a customer software error, see the documentation for
                 your server's operating system."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 210 }

-- Trap for drive TapeAlert 011
ibm3584Trap211 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 011.
                 Flag: Cleaning media.
                 Type: I
                 Cause: Cleaning tape loaded into drive.
                 Required host message:
                 A cleaning tape has been loaded into drive.  No action is required."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 211 }

-- Trap for drive TapeAlert 012
ibm3584Trap212 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 012.
                 Flag: Unsupported format.
                 Type: I
                 Cause: The drive has detected a tape cartridge with an unsupported tape format.
                 Required host message:
                 The drive has detected a tape cartridge with an unsupported tape format.
                 1) Remove the invalid tape cartridge.
                 2) If the problem persists, contact your IBM Service Representative."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 212 }

-- Trap for drive TapeAlert 013
ibm3584Trap213 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 013.
                 Flag: Recoverable snapped tape.
                 Type: C
                 Cause: Tape snapped/cut in the drive where media can be ejected.
                 Required host message:
                 The tape has split apart. Do not attempt to extract the old tape cartridge.
                 Call your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 213 }

-- Trap for drive TapeAlert 014
ibm3584Trap214 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 014.
                 Flag: Unrecoverable snapped tape.
                 Type: C
                 Cause: Tape snapped/cut in the drive where media cannot be ejected.
                 Required host message:
                 The operation has failed because the tape in the drive has snapped:
                 1. Do not attempt to extract the tape cartridge.
                 2. Call the tape drive supplier helpline."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 214 }

-- Trap for drive TapeAlert 015
ibm3584Trap215 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 015.
                 Flag: Memory chip in cartridge failure.
                 Type: W
                 Cause: Memory chip failed in cartridge.
                 Required host message:
                 The memory in the tape cartridge has failed, which reduces performance. 
                 1) Replace the tape cartridge.
                 2) If this error occurs on multiple cartridges, see Error Code 6 located in the list of drive error
                 codes in the 3584 Maintenance Information Guide."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 215 }

-- Trap for drive TapeAlert 016
ibm3584Trap216 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 016.
                 Flag: Forced eject.
                 Type: C
                 Cause: Manual or forced eject while drive actively writing or reading.
                 Required host message:
                 The operation has failed because the tape cartridge was manually ejected
                 while the tape drive was actively writing or reading.  No action required."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 216 }

-- Trap for drive TapeAlert 017
ibm3584Trap217 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 017.
                 Flag: Read only format.
                 Type: W
                 Cause: Media loaded that is read-only format.
                 Required host message:
                 You have loaded a cartridge of a type that is read-only in this drive.
                 The cartridge will appear as write-protected.  No action required."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 217 }

-- Trap for drive TapeAlert 018
ibm3584Trap218 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 018.
                 Flag: Tape directory corrupted on load.
                 Type: W
                 Cause: Tape drive powered down with tape loaded, or permanent error
                        prevented the tape directory being updated.
                 Required host message:
                 The drive detected that the tape directory in the cartridge memory has been
                 corrupted.  Re-read all data from the tape to rebuild the tape directory."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 218 }

-- Trap for drive TapeAlert 020
ibm3584Trap220 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 020.
                 Flag: Clean now.
                 Type: C
                 Cause: The drive thinks it has a head clog, or needs cleaning.
                 Required host message:
                 The tape drive needs cleaning:
                 1. If the operation has stopped, eject the tape and clean the drive.
                 2. If the operation has not stopped, wait for it to finish and then clean
                    the drive."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 220 }

-- Trap for drive TapeAlert 021
ibm3584Trap221 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 021.
                 Flag: Clean periodic.
                 Type: W
                 Cause: The drive is ready for a periodic clean
                 Required host message:
                 The tape drive is due for routine cleaning:
                 1. Wait for the current operation to finish.
                 2. Clean the drive as soon as possible."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 221 }

-- Trap for drive TapeAlert 022
ibm3584Trap222 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 022.
                 Flag: Expired cleaning media.
                 Type: C
                 Cause: The cleaning tape has expired.
                 Required host message:
                 The last cleaning cartridge used in the tape drive has worn out:
                 1. Discard the worn out cleaning cartridge."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 222 }

-- Trap for drive TapeAlert 023
ibm3584Trap223 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 023.
                 Flag: Invalid cleaning tape.
                 Type: C
                 Cause: Invalid cleaning tape type used.
                 Required host message:
                 The last cleaning cartridge used in the tape drive was an invalid type:
                 1. Do not use this cleaning cartridge in this drive.
                 2. Wait for the current operation to finish.
                 3. Then use a valid cleaning cartridge."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 223 }

-- Trap for drive TapeAlert 025
ibm3584Trap225 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 025.
                 Flag: Dual-port interface error.
                 Type: W
                 Cause: Failure of one interface port in a dual-port configuration, eg
                        Fibrechannel.
                 Required host message:
                 A redundant interface port on the tape drive has failed.
                 Contact your IBM Service Representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 225 }



-- Trap for drive TapeAlert 026
ibm3584Trap226 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 026.
                 Flag: Cooling fan failure.
                 Type: W
                 Cause: Fan failure inside tape drive mechanism or tape drive enclosure.
                 Required host message:
                 A tape drive cooling fan has failed.
                 Contact your IBM Service Representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 226 }

-- Trap for drive TapeAlert 027
ibm3584Trap227 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 027.
                 Flag: Power supply.
                 Type: W
                 Cause: Redundant PSU failure inside the tape drive enclosure or rack
                        subsystem.
                 Required host message:
                 A redundant power supply has failed inside the tape drive enclosure.
                 Contact your IBM Service Representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 227 }

-- Trap for drive TapeAlert 030
ibm3584Trap230 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 030.
                 Flag: Hardware A.
                 Type: C
                 Cause: The drive has a hardware fault that requires reset to recover.
                 Required host message:
                 A hardware failure has occurred that requires a tape drive reset to recover.
                 1) Reset the drive.
                 2) If the problem persists, contact your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 230 }

-- Trap for drive TapeAlert 031
ibm3584Trap231 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 031.
                 Flag: Hardware B.
                 Type: C
                 Cause: The drive has a hardware fault which is not read/write related
                        or requires a power cycle to recover.
                 Required host message:
                 The tape drive failed it's internal Power-On Self Test.  
                 Contact your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 231 }

-- Trap for drive TapeAlert 032
ibm3584Trap232 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 032.
                 Flag: Interface.
                 Type: W
                 Cause: The drive has identified an interfacing fault.
                 Required host message:
                 The tape drive has detected a problem with the Fibre Channel Interface.
                 Contact your IBM Service Representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 232 }

-- Trap for drive TapeAlert 033
ibm3584Trap233 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 033.
                 Flag: Eject media.
                 Type: C
                 Cause: A failure has occurred that requires you to unload the cartridge from the drive.
                 Required host message:
                 A failure has occurred that requires you to unload
                 the cartridge from the drive. 
                 1) Unload the tape cartridge and try different media.
                 2) If the problem persists, contact your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 233 }

-- Trap for drive TapeAlert 034
ibm3584Trap234 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 034.
                 Flag: Download failed.
                 Type: W
                 Cause: Firmware download failed.
                 Required host message:
                 The firmware download has failed.
                 Contact you IBM Service Representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 234 }

-- Trap for drive TapeAlert 035
ibm3584Trap235 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 035.
                 Flag: Drive humidity.
                 Type: W
                 Cause: Drive humidity limits exceeded.
                 Required host message:
                 Environmental conditions inside the tape drive are outside the specified
                 humidity range."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 235 }

-- Trap for drive TapeAlert 036
ibm3584Trap236 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 036.
                 Flag: Drive temperature.
                 Type: W
                 Cause: Drive temperature limits exceeded.
                 Required host message:
                 The drive detected the temperature is exceeding the recommended temperature
                 of the library. 
                 Contact your IBM Service Representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 236 }

-- Trap for drive TapeAlert 037
ibm3584Trap237 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsURC,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 037.
                 Flag: Drive voltage.
                 Type: W
                 Cause: Drive voltage limits exceeded.
                 Required host message:
                 The drive detected externally supplied voltages are approaching or outside
                 the specified voltage limits.  
                 Contact your IBM Service Representative."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 237 }

-- Trap for drive TapeAlert 049
ibm3584Trap249 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 049.
                 Flag: Media.
                 Type: C
                 Cause: The beginning of partition 0 for cartridge was written to unexpectedly.
                 Required host message:
                 The beginning of partition 0 for cartridge was written to unexpectedly."
                 --#SEVERITY Critical
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 249 }

-- Trap for drive TapeAlert 052
ibm3584Trap252 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 052.
                 Flag: Tape system area write failure.
                 Type: C
                 Cause: Write errors while writing the system log on unload.
                 Required host message:
                 The tape cartridge that was previously unloaded could not write it's system area
                 successfully.  
                 Copy the data to another tape cartridge, then discard the old cartridge."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 252 }

-- Trap for drive TapeAlert 053
ibm3584Trap253 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 053.
                 Flag: Tape system area read failure.
                 Type: C
                 Cause: Read errors while reading the system area on load.
                 Required host message:
                 The tape system area could not be read successfully at load time. 
                 Copy the data to another tape cartridge, then discard the old cartridge."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 253 }


-- Trap for drive TapeAlert 054
ibm3584Trap254 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for LTO drive TapeAlert 054.
                 Flag: No start of data.
                 Type: C
                 Cause: Tape damaged, bulk erased, or incorrect format.
                 Required host message:
                 The start of data could not be found on the tape:
                 1. Check you are using the correct format tape.
                 2. If correct, discard the tape cartridge and try another one.
                 3. If the problem persists, contact your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 254 }
        

-- Trap for drive TapeAlert 055
ibm3584Trap255 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 055.
                 Flag: Load Failure.
                 Type: C
                 Cause: Loading failure
                 Required host message:
                 The operation has failed because the media cannot be loaded and threaded.
                 1. Discard the tape cartridge and try another one.
                 2. If the problem persists, contact your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 255 }


-- Trap for drive TapeAlert 056
ibm3584Trap256 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER,  
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 056.
                 Flag: Unrecoverable unload failure.
                 Type: C
                 The operation has failed because the medium cannot be unloaded:
                 1. Do not attempt to extract the tape cartridge.
                 2. Contact your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 256 }

-- Trap for drive TapeAlert 057
ibm3584Trap257 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,     
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 057.
                 Flag: Automation interface failure.
                 Type: C
                 The tape drive has a problem with the automation
                 interface:
                 1. Check the power to the automation system.
                 2. Check the cables and cable connections.
                 3. If the problem persists, contract your IBM Service Representative."
                 --#SEVERITY CRITICAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 257 }

-- Trap for drive TapeAlert 059
ibm3584Trap259 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER, 
                           ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 059.
                 Flag: WORM Medium - Integrity Check Failed
                 Type: W
                 The tape drive has detected an inconsistency during
                 the WORM medium integrity checks. 
                 1) Copy the data to another WORM tape cartridge.
                 2) Discard the faulty WORM tape cartridge."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 259 }
        
-- Trap for drive TapeAlert 060
ibm3584Trap260 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode,   ibm3584MIBObjectsVOLSER, 
                           ibm3584MIBObjectsTD, ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for drive TapeAlert 060.
                 Flag: WORM Medium - Overwrite Attempted
                 Type: W
                 An attempt had been made to overwrite user data on a WORM medium:
                 1. If a WORM medium was used inadvertently, replace
                 it with a normal data medium.
                 2. If a WORM medium was used intentionally:
                 a) check that the software application is compatible
                 with the WORM medium format you are using.
                 b) check that the medium is bar-coded correctly for
                 WORM."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 260 }
        
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Trap definitions - Non TapeAlert traps
-- Range is 401 to 599

-- Trap for non TapeAlert 001
ibm3584Trap401 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 001.
                 Cause: I/O station full.
                 Required host message:
                 The Import/Export station is full."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 401 }

-- Trap for non TapeAlert 002
ibm3584Trap402 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsLL, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 002.
                 Cause: All cartridge slots in the associated logical library are occupied.
                 Required host message:
                 The logical library is full."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 402 }

-- Trap for non TapeAlert 003
ibm3584Trap403 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 003.
                 Cause: Library out of LTO cleaning cartridges.
                 Required host message:
                 The library is out of LTO cleaning cartridges."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 403 }

ibm3584Trap405 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 005.
                 Cause: I/O station door has been open for five minutes.
                 Required host message:
                 The Import/Export station has been open for five minutes."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 405 }

-- Trap for non TapeAlert 006
ibm3584Trap406 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsVOLSER, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 006.
                 Cause: LTO cleaning cartridge expired.
                 Required host message:
                 An LTO cleaning cartridge has expired."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 406 }

-- Trap for non TapeAlert 007
ibm3584Trap407 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 007.
                 Cause: A shuffle operation failed because there were no open slots in the library.
                 Required host message:
                 A shuffle operation failed because there were no open slots in the library."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 407 }
-- Trap for non TapeAlert 008
ibm3584Trap408 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 008.
                 Cause: Test initiated from operator panel.
                 Required host message:
                 This is a test SNMP trap."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 408 }

-- Trap for non TapeAlert 009
ibm3584Trap409 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 009.
                 Cause: Library out of 3592 Enterprise Tape cleaning cartridges.
                 Required host message:
                 The library is out of Enterprise Tape cleaning cartridges."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 409 }

-- Trap for non TapeAlert 010
ibm3584Trap410 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsVOLSER, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 010.
                 Cause: 3592 Enterprise Tape cleaning cartridge expired.
                 Required host message:
                 A Enterprise Tape cleaning cartridge has expired."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 410 }

-- Trap for non TapeAlert 015
ibm3584Trap415 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                "Trap for non TapeAlert 015.
                 Cause: The library attempted to call home, but was unsuccessful.
                 Required host message:
                 The library attempted to call home, but was unsuccessful."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::= { ibm3584MIBTraps 415 }
        
-- Trap for non TapeAlert 016
ibm3584Trap416 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsLL,
                          ibm3584MIBObjectsTD,      ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 016.
                 Cause: The associated logical library is nearing full capacity.
                 Required host message:
                 The logical library is almost full."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 416 }
        
-- Trap for non TapeAlert 019
ibm3584Trap419 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 019.
                 Cause: Unable to reach associated EKM.
                 Required host message:
                 Library is unable to communicate with the associated EKM address."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 419 }
        
-- Trap for non TapeAlert 020
ibm3584Trap420 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsLL,
                          ibm3584MIBObjectsVOLSER, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 020.
                 Cause: A cartridge that can not be encrypted has is loaded in a drives that is used to encrypt all cartridges.
                 Required host message:
                 A cartridge that can not be encrypted has been loaded into a drive that is setup for encryption."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 420 }
        
ibm3584Trap421 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsVOLSER,
                          ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 021.
                 Cause: A new unassigned cartridge is in the library.
                 Required host message:
                 A new cartridge is in the library and is currently unassigned."
                 --#SEVERITY WARNING
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 421 }
        
ibm3584Trap422 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 022.
                 Cause: All library doors are closed.  The library will inventory and resume operations.
                 Required host message:
                 All library doors have been closed.  The library will now inventory and resume operations."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 422 }  

ibm3584Trap424 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 024.
                                Cause: The library was almost out of licensed LTO storage slots.
                                Required host message:
                                The library was almost out of licensed LTO storage slots."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 424 }
                
ibm3584Trap425 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 025.
                                Cause: The library was almost out of licensed 3592 storage slots.
                                Required host message:
                                The library was almost out of licensed 3592 storage slots."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 425 }
                
ibm3584Trap426 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 026.
                                Cause: The library ran out of licensed 3592 storage slots.
                                Required host message:
                                The library ran out of licensed 3592 storage slots."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 426 }
                
ibm3584Trap427 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 027.
                                Cause: The library ran out of licensed LTO storage slots:
                                The library ran out of licensed LTO storage slots."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 427 }
                
ibm3584Trap428 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 028.
                                Cause: A fixed home slot was not available.
                                Required host message:
                                A fixed home slot was not available."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 428 }
                
ibm3584Trap429 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 029.
                                Cause: An inventory of the library was started.
                                Required host message:
                                An inventory of the library was started."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 429 }
                
ibm3584Trap430 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 030.
                                Cause: An inventory of the library ended.
                                Required host message:
                                An inventory of the library ended."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 430 }
                
ibm3584Trap431 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 031.
                                Cause: Call home request initiated from the host.
                                Required host message:
                                Call home request initiated from the host."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 431 }
                
ibm3584Trap432 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 032.
                                Cause: Test call home sent.
                                Required host message:
                                Test call home sent."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 432 }
                
ibm3584Trap433 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsVOLSER,
                                        ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 033.
                                Cause: No LTO diagnostic cartridge found in the library.
                                Required host message:
                                No LTO diagnostic cartridge found in the library."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 433 }
                
ibm3584Trap434 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsVOLSER,
                                        ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 034.
                                Cause: No 3592 diagnostic cartridge found in the library.
                                Required host message:
                                No 3592 diagnostic cartridge found in the library."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 434 }
                
ibm3584Trap435 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 035.
                                Cause: The humidity was higher than what is recommended.
                                Required host message:
                                The humidity was higher than what is recommended."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 435 }
                
ibm3584Trap436 NOTIFICATION-TYPE
                
                OBJECTS { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                                }
                STATUS          current
                DESCRIPTION
                                "Trap for non TapeAlert 036.
                                Cause: The temperature was higher than what is recommended.
                                Required host message:
                                The temperature was higher than what is recommended."
                                --#SEVERITY WARNING
                                --#SOURCE_ID "T"
                                --#CATEGORY "Error Events" 
                ::=  { ibm3584MIBTraps 436 }

ibm3584Trap440 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD,
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                        }
        STATUS          current                  
        DESCRIPTION
                 "Trap for non TapeAlert 040.
                 Cause: A user has successfully logged in to the web or operator panel.
                 Required host message:
                 A user has successfully logged into the Web Specialist or Operator Panel."
                 --#SEVERITY AUTHENTICATION
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 440 }
        
-- Trap for non TapeAlert 041
ibm3584Trap441 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD,
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                          }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 041.
                 Cause: A user has attempted to log in to the web or operator panel and was unsuccessful.
                 Required host message:
                 A user has attempted to log in to the Web Specialist or Operator Panel and was unsuccessful."
                 --#SEVERITY AUTHENTICATION
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 441 }
        
-- Trap for non TapeAlert 042
ibm3584Trap442 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD,
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                          }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 042.
                 Cause: A user has logged out of the web or operator panel.
                 Required host message:
                 A user has logged out of the Web Specialist or Operator Panel."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 442 }
        
-- Trap for non TapeAlert 043
ibm3584Trap443 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD,
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                          }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 043.
                 Cause: A library configuration setting has been changed.
                 Required host message:
                 A library configuration setting has been changed via the Op Panel or Web Specialist."
                 --#SEVERITY CONFIGURATION CHANGE
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 443 }
        
-- Trap for non TapeAlert 044
ibm3584Trap444 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, 
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsLL, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 044.
                 Cause: A logical library configuration setting has been changed.
                 Required host message:
                 A logical library configuration setting has been changed."
                 --#SEVERITY CONFIGURATION CHANGE
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 444 }
        
-- Trap for non TapeAlert 045
ibm3584Trap445 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, 
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsLL,
                          ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity 
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 045.
                 Cause: A tape drive configuration setting has been changed.
                 Required host message:
                 A tape drive configuration setting has been changed."
                 --#SEVERITY CONFIGURATION CHANGE
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 445 }
        
-- Trap for non TapeAlert 046
ibm3584Trap446 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, 
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsLL,
                          ibm3584MIBObjectsVOLSER, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 046.
                 Cause: A cartridge has been modified from an external UI.
                 Required host message:
                 A cartridge has been modified from the Web Specialist or Op Panel."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 446 }
        
-- Trap for non TapeAlert 047
ibm3584Trap447 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 047.
                 Cause: A library, drive, or shuttle code load has been initiated from an external UI.
                 Required host message:
                 A library, drive, or shuttle code load has been initiated from the Web Specialist, Op Panel, or CE Tool."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 447 }
        
-- Trap for non TapeAlert 048
ibm3584Trap448 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 048.
                 Cause: An Accessor FRU been prepared/finished.
                 Required host message:
                 An Accessor has been placed in the prepared or finished Accessor service state."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 448 }
        
-- Trap for non TapeAlert 049
ibm3584Trap449 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, 
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsLL,
                          ibm3584MIBObjectsWWNN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation 
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 049.
                 Cause: A drive FRU been prepared/finished.
                 Required host message:
                 A drive has been placed in the prepared or finished Drive service state."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 449 }
        
-- Trap for non TapeAlert 050
ibm3584Trap450 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, 
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsLL, 
                          ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 050.
                 Cause: A drive Serial number has changed.
                 Required host message:
                 A drive Serial number has changed."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 450 }
        
-- Trap for non TapeAlert 051
ibm3584Trap451 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, 
                          ibm3584MIBObjectsUserID, ibm3584MIBObjectsLL, 
                          ibm3584MIBObjectsWWNN, ibm3584MIBObjectsDrvSN, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 051.
                 Cause: A drive has been power cycled from the web UI.
                 Required host message:
                 A drive has been power cycled via the Web Specialist."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 451 }
        
-- Trap for non TapeAlert 052
ibm3584Trap452 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 052.
                 Cause: A node card has been reset from the web UI.
                 Required host message:
                 A node card has been reset via the Web Specialist."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 452 }
        
-- Trap for non TapeAlert 053
ibm3584Trap453 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 053.
                 Cause: The admin password has been changed from the web UI or Op Panel.
                 Required host message:
                 The admin password has been changed from the web UI or Op Panel."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 453 }
        
-- Trap for non TapeAlert 054
ibm3584Trap454 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsLL, 
                          ibm3584MIBObjectsVOLSER, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 054.
                 Cause: A cartridge has been left in a gripper.
                 Required host message:
                 A cartridge has been left in a gripper."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 454 }
        
-- Trap for non TapeAlert 055
ibm3584Trap455 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 055.
                 Cause: A library firmware update failed.
                 Required host message:
                 A library firmware update failed."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 455 }
        
-- Trap for non TapeAlert 056
ibm3584Trap456 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 056.
                 Cause: A corrupted library firwmware image was downloaded.
                 Required host message:
                 A corrupted library firwmware image was downloaded."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 456 }
        
-- Trap for non TapeAlert 057
ibm3584Trap457 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity, ibm3584MIBObjectsLocation
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 057.
                 Cause: A drive firmware update failed.
                 Required host message:
                 A drive firmware update failed."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 457 }
        
-- Trap for non TapeAlert 058
ibm3584Trap458 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 058.
                 Cause: A library firmware update finished.
                 Required host message:
                 A A library firmware update finished."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 458 }
        
-- Trap for non TapeAlert 059
ibm3584Trap459 NOTIFICATION-TYPE
        OBJECTS         { ibm3584MIBObjectsMTMNLSN, ibm3584MIBObjectsErrorCode, ibm3584MIBObjectsTD, ibm3584MIBObjectsUserID, ibm3584MIBObjectsSeverity
                        }
        STATUS          current
        DESCRIPTION
                 "Trap for non TapeAlert 059.
                 Cause: A A library firmware update finished.
                 Required host message:
                 A A library firmware update finished."
                 --#SEVERITY INFORMATIONAL
                 --#SOURCE_ID "T"
                 --#CATEGORY "Error Events"
        ::=  { ibm3584MIBTraps 459 }



-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Conformance information (mandatory)


ibm3584MIBCompliances OBJECT IDENTIFIER ::= { ibm3584MIBConformance 1 }
ibm3584MIBGroups      OBJECT IDENTIFIER ::= { ibm3584MIBConformance 2 }

-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- Compliance statements

ibm3584MIBCompliance MODULE-COMPLIANCE
      STATUS current
      DESCRIPTION
          "The compliance statement for the SNMP entities that
          implement this MIB."

      MODULE -- this module

--    Unconditionally mandatory groups
      MANDATORY-GROUPS  { ibm3584MIBNotificationsGroup1,
                          ibm3584MIBObjectsGroup
                        }
      ::= { ibm3584MIBCompliances 1 }

-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-- MIB groupings
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-- Traps used in the MIB
ibm3584MIBNotificationsGroup1 NOTIFICATION-GROUP
      NOTIFICATIONS
         { ibm3584Trap001,
           ibm3584Trap002,
           ibm3584Trap004,
           ibm3584Trap007,
           ibm3584Trap016,
           ibm3584Trap017,
           ibm3584Trap020,
           ibm3584Trap021,
           ibm3584Trap022,
           ibm3584Trap024,
           ibm3584Trap028,
           ibm3584Trap030,
           ibm3584Trap031,
           ibm3584Trap032,
           ibm3584Trap201,
           ibm3584Trap202,
           ibm3584Trap203,
           ibm3584Trap204,
           ibm3584Trap205,
           ibm3584Trap206,
           ibm3584Trap207,
           ibm3584Trap208,
           ibm3584Trap209,
           ibm3584Trap210,
           ibm3584Trap211,
           ibm3584Trap212,
           ibm3584Trap213,
           ibm3584Trap214,
           ibm3584Trap215,
           ibm3584Trap216,
           ibm3584Trap217,
           ibm3584Trap218,
           ibm3584Trap220,
           ibm3584Trap221,
           ibm3584Trap222,
           ibm3584Trap223,
           ibm3584Trap225,
           ibm3584Trap226,
           ibm3584Trap227,
           ibm3584Trap230,
           ibm3584Trap231,
           ibm3584Trap232,
           ibm3584Trap233,
           ibm3584Trap234,
           ibm3584Trap235,
           ibm3584Trap236,
           ibm3584Trap237,
           ibm3584Trap249,
           ibm3584Trap252,
           ibm3584Trap253,
           ibm3584Trap254,
           ibm3584Trap255,
           ibm3584Trap256,
           ibm3584Trap257,
           ibm3584Trap259,
           ibm3584Trap260,
           ibm3584Trap401,
           ibm3584Trap402,
           ibm3584Trap403,
           ibm3584Trap405,
           ibm3584Trap406,
           ibm3584Trap407,
           ibm3584Trap408,
           ibm3584Trap409,
           ibm3584Trap410,
           ibm3584Trap415,
           ibm3584Trap416,
           ibm3584Trap419,
           ibm3584Trap420,
           ibm3584Trap421,
           ibm3584Trap422,
           ibm3584Trap424,
           ibm3584Trap425,
           ibm3584Trap426,
           ibm3584Trap427,
           ibm3584Trap428,
           ibm3584Trap429,
           ibm3584Trap430,
           ibm3584Trap431,
           ibm3584Trap432,
           ibm3584Trap433,
           ibm3584Trap434,
           ibm3584Trap435,
           ibm3584Trap436,
           ibm3584Trap440,
           ibm3584Trap441,
           ibm3584Trap442,
           ibm3584Trap443,
           ibm3584Trap444,
           ibm3584Trap445,
           ibm3584Trap446,
           ibm3584Trap447,
           ibm3584Trap448,
           ibm3584Trap449,
           ibm3584Trap450,
           ibm3584Trap451,
           ibm3584Trap452,
           ibm3584Trap453,
           ibm3584Trap454,
           ibm3584Trap455,
           ibm3584Trap456,
           ibm3584Trap457,
           ibm3584Trap458,
           ibm3584Trap459       
         }
      STATUS current
      DESCRIPTION
          "Mandatory notification for entities implemented in this MIB."
      ::= { ibm3584MIBGroups 1 }

-- Objects used in the traps
ibm3584MIBObjectsGroup OBJECT-GROUP
      OBJECTS
         { ibm3584MIBObjectsMTMNLSN,
           ibm3584MIBObjectsSKASCASCQ,
           ibm3584MIBObjectsErrorCode,
           ibm3584MIBObjectsURC,
           ibm3584MIBObjectsTD,
           ibm3584MIBObjectsVOLSER,
           ibm3584MIBObjectsLL,
           ibm3584MIBObjectsWWNN,
           ibm3584MIBObjectsDrvSN,
           ibm3584MIBObjectsSeverity,
           ibm3584MIBObjectsUserID,
           ibm3584MIBObjectsLocation
         }
      STATUS current
      DESCRIPTION
          "Mandatory objects for entities implemented in this MIB."
      ::= { ibm3584MIBGroups 3 }



END