summaryrefslogtreecommitdiff
path: root/MIBS/nokia/ALCATEL-IND1-DEVICES
blob: a6caf3617e38288bcbd0d5065c34e237bad0511e (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
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
ALCATEL-IND1-DEVICES DEFINITIONS ::= BEGIN


IMPORTS
    MODULE-IDENTITY, OBJECT-IDENTITY
FROM
    SNMPv2-SMI

    hardwareIND1Devices
FROM
    ALCATEL-IND1-BASE;


alcatelIND1DevicesMIB MODULE-IDENTITY

    LAST-UPDATED  "200704030000Z"
    ORGANIZATION  "Alcatel-Lucent"
    CONTACT-INFO
        "Please consult with Customer Service to ensure the most appropriate
         version of this document is used with the products in question:

                    Alcatel-Lucent, Enterprise Solutions Division
                   (Formerly Alcatel Internetworking, Incorporated)
                           26801 West Agoura Road
                        Agoura Hills, CA  91301-5122
                          United States Of America

        Telephone:               North America  +1 800 995 2696
                                 Latin America  +1 877 919 9526
                                 Europe         +31 23 556 0100
                                 Asia           +65 394 7933
                                 All Other      +1 818 878 4507

        Electronic Mail:         support@ind.alcatel.com
        World Wide Web:          http://alcatel-lucent.com/wps/portal/enterprise
        File Transfer Protocol:  ftp://ftp.ind.alcatel.com/pub/products/mibs"

    DESCRIPTION
        "This module describes an authoritative enterprise-specific Simple
         Network Management Protocol (SNMP) Management Information Base (MIB):

             This module provides Object Indentifier definitions for
             Chassis and Modules of the Alcatel Internetworking
             OmniSwitch 9000/8000/7000/4000 Series Product Lines.

         The right to make changes in specification and other information
         contained in this document without prior notice is reserved.

         No liability shall be assumed for any incidental, indirect, special, or
         consequential damages whatsoever arising from or related to this
         document or the information contained herein.

         Vendors, end-users, and other interested parties are granted
         non-exclusive license to use this specification in connection with
         management of the products for which it is intended to be used.

                     Copyright (C) 1995-2007 Alcatel-Lucent
                         ALL RIGHTS RESERVED WORLDWIDE"

    REVISION      "200704030000Z"
    DESCRIPTION
        "Initial version of this MIB Module."

    ::= { hardwareIND1Devices 1 }



familyOmniSwitch7000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 7000 Series Product Family."
    ::= { alcatelIND1DevicesMIB 1 }




chassisOmniSwitch7000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 7000 Series Chassis."
    ::= { familyOmniSwitch7000 1 }


deviceOmniSwitch7700 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7700 10-Slot Chassis.
        Model Name: OS7700
        Assembly:   901749-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.1.1"
    ::= { chassisOmniSwitch7000 1 }


deviceOmniSwitch7800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7800 18-Slot Chassis.
        Model Name: OS7800
        Assembly:   901748-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.1.2"
    ::= { chassisOmniSwitch7000 2 }




fansOmniSwitch7000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 7000 Series Fan Trays."
    ::= { familyOmniSwitch7000 2 }


fansOmniSwitch7000FT OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Fan Tray.
        Model Name: OS7000-FT
        Assembly:   901752-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.2.1"
    ::= { fansOmniSwitch7000 1 }




powersOmniSwitch7000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 7000 Series Power Supplies."
    ::= { familyOmniSwitch7000 3 }


powersOmniSwitch7000PS600AC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series 600 Watt A/C Power Supply.
        Model Name: OS7-PS-0600AC
        Assembly:   901750-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.3.1"
    ::= { powersOmniSwitch7000 1 }


powersOmniSwitch7000PS600DC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series 600 Watt D/C Power Supply.
        Model Name: OS7-PS-0600DC
        Assembly:   902076-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.3.2"
    ::= { powersOmniSwitch7000 2 }


powersOmniSwitch7000PDShelf OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Inline Power Shelf.
        Model Name: OS7-PD-Shelf
        Assembly:   902067-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.3.3"
    ::= { powersOmniSwitch7000 3 }


powersOmniSwitch7000PDPS600AC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series 600 Watt A/C Inline Power Supply.
        Model Name: OS7-PDPS-0900AC
        Assembly:   902068-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.3.4"
    ::= { powersOmniSwitch7000 4 }


powersOmniSwitch7000PDPS900DC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series 900 Watt D/C Inline Power Supply.
        Model Name: OS7-PDPS-0900DC
        Assembly:   902069-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.3.5"
    ::= { powersOmniSwitch7000 5 }




modulesOmniSwitch7000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 7000 Series Modules."
    ::= { familyOmniSwitch7000 4 }




modulesOmniSwitch7000CM OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 7000 Series Chassis Management (CM) Modules."
    ::= { modulesOmniSwitch7000 1 }



cmmOmniSwitch7700 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7700 Series Chassis Management Module.
        Model Name: OS7700-CMM
        Assembly:   901750-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.1.1"
    ::= { modulesOmniSwitch7000CM 1 }


cmmOmniSwitch7700PROC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7700 Series Chassis Management Module Processor.
        Model Name: OS7700-CMM Processor
        Assembly:   050358-06
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.1.1.1"
    ::= { cmmOmniSwitch7700 1 }


cmmOmniSwitch7700BBUS OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7700 Series Chassis Management Module BBUS Bridge.
        Model Name: OS7700-CMM BBUS Bridge
        Assembly:   050373-06
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.1.1.2"
    ::= { cmmOmniSwitch7700 2 }



cmmOmniSwitch7800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7800 Series Chassis Management Module.
        Model Name: OS7800-CMM
        Assembly:   901953-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.1.2"
    ::= { modulesOmniSwitch7000CM 2 }


cmmOmniSwitch7800PROC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7800 Series Chassis Management Module Processor.
        Model Name: OS7800-CMM Processor
        Assembly:   050358-06
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.1.2.1"
    ::= { cmmOmniSwitch7800 1 }


cmmOmniSwitch7800BBUS OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7800 Series Chassis Management Module BBUS Bridge.
        Model Name: OS7800-CMM BBUS Bridge
        Assembly:   050352-06
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.1.2.2"
    ::= { cmmOmniSwitch7800 2 }




modulesOmniSwitch7000NI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Network Interface (NI) Modules."
    ::= { modulesOmniSwitch7000 2 }




niOmniSwitch7000ENI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series 10/100BaseX Ethernet Network Interface (ENI) Modules."
    ::= { modulesOmniSwitch7000NI 1 }


eniOmniSwitch7000C24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Copper 24-Port 10/100BaseTX Ethernet Network Interface Module.
        Model Name: OS7-ENI-C24
        Assembly:   901765-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.2.1.1"
    ::= { niOmniSwitch7000ENI 1 }


eniOmniSwitch7000FM12 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Fiber 12-Port 10/100BaseFX Ethernet Network Interface Module.
        Model Name: OS7-ENI-FM12
        Assembly:   901766-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.2.1.2"
    ::= { niOmniSwitch7000ENI 2 }

eniOmniSwitch7000PDPS24ENI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series 24 Port ENI Inline Power Supply.
        Model Name: OS7-PDPS-0900DC
        Assembly:   902066-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.2.1.3"
    ::= { niOmniSwitch7000ENI 3 }


niOmniSwitch7000GNI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series 1000BaseX Ethernet Network Interface (GNI) Modules."
    ::= { modulesOmniSwitch7000NI 2 }



gniOmniSwitch7000U2 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Universal 2-Port 1000BaseX Ethernet Network Interface Module.
        Model Name: OS7-GNI-U2
        Assembly:   901759-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.2.2.1"
    ::= { niOmniSwitch7000GNI 1 }


gni2OmniSwitch7000C12 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Copper 12-Port 10/100BaseTX/1000BaseCX Ethernet Network Interface Module.
        Model Name: OS7-GNI2-C12
        Assembly:   902063-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.2.2.2"
    ::= { niOmniSwitch7000GNI 2 }


gni2OmniSwitch7000U12 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Universal 12-Port 1000BaseX Ethernet Network Interface Module.
        Model Name: OS7-GNI2-U12
        Assembly:   902064-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.2.2.3"
    ::= { niOmniSwitch7000GNI 3 }



niOmniSwitch7000IC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Network Interface Module Interface Cards (IC)."
    ::= { modulesOmniSwitch7000NI 3 }



icOmniSwitch7000GIC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series 1000BaseX Interface Cards (IC)."
    ::= { niOmniSwitch7000IC 1 }


gicOmniSwitch7000LH70 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Long Haul 70km Fiber 1000BaseX Interface Card.
        Model Name: GBIC-LH-70
        Assembly:   901953-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.3.1.1"
    ::= { icOmniSwitch7000GIC 1 }


gicOmniSwitch7000LX OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Single Mode Fiber 1000BaseLX Interface Card.
        Model Name: GBIC-LX
        Assembly:   901952-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.3.1.2"
    ::= { icOmniSwitch7000GIC 2 }


gicOmniSwitch7000SX OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Multi Mode Fiber 1000BaseSX Interface Card.
        Model Name: GBIC-SX
        Assembly:   901951-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.3.1.3"
    ::= { icOmniSwitch7000GIC 3 }


gicOmniSwitch7000C OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Copper 1000BaseCX Interface Card.
        Model Name: GBIC-C
        Assembly:   902088-11
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.3.1.4"
    ::= { icOmniSwitch7000GIC 4 }


niOmniSwitch7000DM OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Network Daughter Module (DM)."
    ::= { modulesOmniSwitch7000NI 4 }

dmOmniSwitch7000Power OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series daughter modules (DM) for in line power."
    ::= { niOmniSwitch7000DM 1 }


dmOmniSwitch7000PowerDsine OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series  Card.
        Model Name:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.1.4.2.4.1.1"
    ::= { dmOmniSwitch7000Power 1 }


niOmniSwitch7000ANI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series ATM Network Interface (ANI) Modules."
    ::= { modulesOmniSwitch7000NI 5 }

aniOmniSwitch7000U4 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Universal 4-Port OC3 ATM uplink module.
        Model Name: OS7-ANI3-U4
        Assembly:   902310-10
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.1.4.2.5.1"
    ::= { niOmniSwitch7000ANI 1 }

aniOmniSwitch7000U1 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 7000 Series Universal 1-Port OC12 ATM uplink module.
        Model Name: OS7-ANI12-U1
        Assembly:   902311-10
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.1.4.2.5.2"
    ::= { niOmniSwitch7000ANI 2 }


familyOmniSwitch8000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Product Family."
    ::= { alcatelIND1DevicesMIB 2 }

chassisOmniSwitch8000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 8000 Series Chassis."
    ::= { familyOmniSwitch8000 1 }


deviceOmniSwitch8800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8800 18-Slot Chassis.
        Model Name: OS8800
        Assembly:   901977-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.1.1"
    ::= { chassisOmniSwitch8000 1 }




fansOmniSwitch8000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 8000 Series Fan Trays."
    ::= { familyOmniSwitch8000 2 }


fansOmniSwitch8800CFT OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8800 Series Chassis Fan Tray.
        Model Name: OS8800-CFT
        Assembly:   902074-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.2.1"
    ::= { fansOmniSwitch8000 1 }


fansOmniSwitch8800FFT OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8800 Series Fabric Fan Tray.
        Model Name: OS8800-FFT
        Assembly:   902075-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.2.2"
    ::= { fansOmniSwitch8000 2 }



powersOmniSwitch8000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 8000 Series Power Supplies."
    ::= { familyOmniSwitch8000 3 }


powersOmniSwitch8000PS1375AC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series 1375 Watt A/C Power Supply.
        Model Name: OS8-PS-1375AC
        Assembly:   901978-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.3.1"
    ::= { powersOmniSwitch8000 1 }


powersOmniSwitch8000PS1375DC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series 1375 Watt D/C Power Supply.
        Model Name: OS8-PS-1375DC
        Assembly:   902054-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.3.2"
    ::= { powersOmniSwitch8000 2 }




modulesOmniSwitch8000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 8000 Series Modules."
    ::= { familyOmniSwitch8000 4 }




modulesOmniSwitch8000CM OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 8000 Series Chassis Management (CM) Modules."
    ::= { modulesOmniSwitch8000 1 }



cmmOmniSwitch8800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8800 Series Chassis Management Module.
        Model Name: OS8800-CMM
        Assembly:   901980-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.1.1"
    ::= { modulesOmniSwitch8000CM 1 }


cmmOmniSwitch8800PROC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8800 Series Chassis Management Module Processor.
        Model Name: OS8800-CMM Processor
        Assembly:   050358-06
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.1.1.1"
    ::= { cmmOmniSwitch8800 1 }


cmmOmniSwitch8800BBUS OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8800 Series Chassis Management Module BBUS Bridge.
        Model Name: OS8800-CMM BBUS Bridge
        Assembly:   050386-06
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.1.1.2"
    ::= { cmmOmniSwitch8800 2 }




modulesOmniSwitch8000NI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Network Interface (NI) Modules."
    ::= { modulesOmniSwitch8000 2 }




niOmniSwitch8000ENI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series 10/100BaseX Ethernet Network Interface (ENI) Modules."
    ::= { modulesOmniSwitch8000NI 1 }


eniOmniSwitch8000C24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Copper 24-Port 10/100BaseTX Ethernet Network Interface Module.
        Model Name: OS8-ENI-C24
        Assembly:   902055-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.1.1"
    ::= { niOmniSwitch8000ENI 1 }




niOmniSwitch8000GNI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series 1000BaseX Ethernet Network Interface (GNI) Modules."
    ::= { modulesOmniSwitch8000NI 2 }



gniOmniSwitch8000U8 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Universal 8-Port 1000BaseX Ethernet Network Interface Module.
        Model Name: OS8-GNI-U8
        Assembly:   901981-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.2.1"
    ::= { niOmniSwitch8000GNI 1 }


gniOmniSwitch8000C8 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Copper 8-Port 1000BaseCX Ethernet Network Interface Module.
        Model Name: OS8-GNI-C8
        Assembly:   902057-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.2.2"
    ::= { niOmniSwitch8000GNI 2 }


gni2OmniSwitch8000U8 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Universal 8-Port 1000BaseX Ethernet Network Interface Module.
        Model Name: OS8-GNI2-U8
        Assembly:   902070-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.2.3"
    ::= { niOmniSwitch8000GNI 3 }


gni2OmniSwitch8000C24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Copper 24-Port 10/100BaseTX/1000BaseCX Ethernet Network Interface Module.
        Model Name: OS8-GNI2-C24
        Assembly:   902072-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.2.4"
    ::= { niOmniSwitch8000GNI 4 }


gni2OmniSwitch8000U24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Universal 24-Port 1000BaseX Ethernet Network Interface Module.
        Model Name: OS8-GNI2-U24
        Assembly:   902073-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.2.5"
    ::= { niOmniSwitch8000GNI 5 }




niOmniSwitch8000G10NI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series 10-Gigabit Ethernet Network Interface (G10NI) Modules."
    ::= { modulesOmniSwitch8000NI 3 }



g10niOmniSwitch8000U1 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Universal 1-Port 10-Gigabit Ethernet Network Interface Module.
        Model Name: OS8-10GNI-U1
        Assembly:   902056-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.3.1"
    ::= { niOmniSwitch8000G10NI 1 }




niOmniSwitch8000IC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Network Interface Module Interface Cards (IC)."
    ::= { modulesOmniSwitch8000NI 4 }



icOmniSwitch8000GIC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series 1000BaseX Interface Cards (IC)."
    ::= { niOmniSwitch8000IC 1 }


mgicOmniSwitch8000SX OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Multi Mode Fiber 1000BaseSX Interface Card.
        Model Name: MiniGBIC-SX
        Assembly:   902053-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.4.1.1"
    ::= { icOmniSwitch8000GIC 1 }


mgicOmniSwitch8000LX OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Single Mode Fiber 1000BaseLX Interface Card.
        Model Name: MiniGBIC-LX
        Assembly:   902052-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.4.1.2"
    ::= { icOmniSwitch8000GIC 2 }


mgicOmniSwitch8000LH70 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Long Haul 70km Fiber 1000BaseX Interface Card.
        Model Name: MiniGBIC-LH-70
        Assembly:   902051-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.4.1.3"
    ::= { icOmniSwitch8000GIC 3 }




modulesOmniSwitch8000SF OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 8000 Series Switch Fabric (SF) Modules."
    ::= { modulesOmniSwitch8000 3 }


sfOmniSwitch8800SFM OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8800 Series Switch Fabric Module.
        Model Name: OS8800-SFM
        Assembly:   901979-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.3.1"
    ::= { modulesOmniSwitch8000SF 1 }


familyOmniSwitch6600 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6600 Series Product Family."
    ::= { alcatelIND1DevicesMIB 3 }



chassisOmniSwitch6600 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6600 Series Switch."
    ::= { familyOmniSwitch6600 1 }

deviceOmniSwitch6624 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6624 Stackable Switch.
        Model Number:   OSW-6624
        Assembly:       902083-10
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.1.1"
    ::= { chassisOmniSwitch6600 1 }

deviceOmniSwitch6648 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6648 Stackable Switch.
        Model Number:   OSW-6648
        Assembly:       902098-10
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.1.2"
    ::= { chassisOmniSwitch6600 2 }

deviceOmniSwitch6624Fiber OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6624 Stackable Switch - Fiber.
        Model Number:
        Assembly:
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.1.3"
    ::= { chassisOmniSwitch6600 3 }

deviceOmniSwitch660224 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6624 Stackable Switch - Reduced cost (24Rj45 + 2Stk +2 1G Upl)
        Model Number:
        Assembly: 902285-10
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.1.4"
    ::= { chassisOmniSwitch6600 4 }

deviceOmniSwitch660248 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6648 Stackable Switch - Reduced cost(48Rj45 + 2Stk +2 1G Upl)
        Model Number:
        Assembly:   902286-10
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.1.5"
    ::= { chassisOmniSwitch6600 5 }

deviceOmniSwitch6624PoE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6624 Stackable Power over Ethernet Switch.
        Model Number:   OS66-P24
        Assembly:       902296-10
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.1.6"
    ::= { chassisOmniSwitch6600 6 }

deviceOmniSwitch6648PoE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6648 Stackable Power over Ethernet Switch.
        Model Number:   OS66-P48
        Assembly:
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.1.7"
    ::= { chassisOmniSwitch6600 7 }

fansOmniSwitch6600 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6600 Series Fan Trays."
    ::= { familyOmniSwitch6600 2 }

powersOmniSwitch6600 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6600 Series Power Supplies."
    ::= { familyOmniSwitch6600 3 }

powersOmniSwitch6600BSP OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6600 Hawk Back Up Power Supply
        Model Number:   OSW-6600-BPS
        Assembly:       902087-10
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.3.1"
    ::= { powersOmniSwitch6600 1 }

modulesOmniSwitch6600 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6600 Series Modules."
    ::= { familyOmniSwitch6600 4 }

expOmniSwitch6600 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6600 Expantion Modules."
    ::= { modulesOmniSwitch6600 1 }

mgicOmniSwitch66002 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6600 - MiniGBIC - Fiber Module
        Model Number:   OSW-66MiniGBIC2
        Assembly:       902084-10
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.4.1.1"
    ::= { expOmniSwitch6600 1 }

gsmOmniSwitch6600T2 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6600 -T-2 - Copper Module.
        Model Number:   OSW-66-GSM-T-2
        Assembly:       902085-10
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.4.1.2"
    ::= { expOmniSwitch6600 2 }

stkOmniSwitch6600Kit OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
       "OmniSwitch 6600 STK Kit.
        Model Number:   OSW-66-STK-Kit
        Assembly:       902086-10
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.3.4.1.3"
    ::= { expOmniSwitch6600 3 }

icOmniSwitch6600GIC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6600 Series 1000BaseX Interface Cards (IC)."
    ::= { modulesOmniSwitch6600 2 }


mgicOmniSwitch6600SX OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6600 Series Multi Mode Fiber 1000BaseSX Interface Card.
        Model Name: MiniGBIC-SX
        Assembly:   902053-10
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.3.4.2.1 "
    ::= { icOmniSwitch6600GIC 1 }


mgicOmniSwitch6600LX OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6600 Series Single Mode Fiber 1000BaseLX Interface Card.
        Model Name: MiniGBIC-LX
        Assembly:   902052-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.3.4.2.2"
    ::= { icOmniSwitch6600GIC 2 }


mgicOmniSwitch6600LH70 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6600 Series Long Haul 70km Fiber 1000BaseX Interface Card.
        Model Name: MiniGBIC-LH-70
        Assembly:   902051-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.3.4.2.3"
    ::= { icOmniSwitch6600GIC 3 }


familyOmniAccess200 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 8000 Series Product Family."
    ::= { alcatelIND1DevicesMIB 4 }

chassisOmniAccess200 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniAccess 200 Series Chassis."
    ::= { familyOmniAccess200 1 }

deviceOmniAccess210 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniAccess 210 VPN product Chassis.
        Model Number:
        Assembly:
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.4.1.1"
    ::= { chassisOmniAccess200 1 }

deviceOmniAccess250 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniAccess 250 VPN product Chassis.
        Model Number:
        Assembly:
        sysObjectID:    1.3.6.1.4.1.6486.800.1.1.2.1.4.1.2"
    ::= { chassisOmniAccess200 2 }


fansOmniSwitch200 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniAccess 200 Series Fan Trays."
    ::= { familyOmniAccess200 2 }

powersOmniAccess200 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniAccess 200 Series Power Supplies."
    ::= { familyOmniAccess200 3 }

modulesOmniAccess200 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniAccess 200 Series Modules."
    ::= { familyOmniAccess200 4 }



familyOmniStack6300 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Omni Stack 6300 Series Product Family."
    ::= { alcatelIND1DevicesMIB 5 }

chassisOmniStack6300 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniStack 6300 Series Chassis."
    ::= { familyOmniStack6300 1 }

deviceOmniStack6324  OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniStack 24 port product Chassis.
        Model Number:
        Assembly:
        sysObjectID:      1.3.6.1.4.1.6486.800.1.1.2.1.5.1.1"
    ::= { chassisOmniStack6300 1 }

fansOmniStack6300 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniStack 6300 Series Fan Trays."
    ::= { familyOmniStack6300 2 }

powersOmniStack6300 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniStack 6300 Series Power Supplies."
    ::= { familyOmniStack6300 3 }

modulesOmniStack6300 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For family OmniStack 6300 Series Modules."
    ::= { familyOmniStack6300 4 }



familyOmniSwitch6800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6800 Series Product Family."
    ::= { alcatelIND1DevicesMIB 6 }

chassisOmniSwitch6800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6800 Series Switch."
    ::= { familyOmniSwitch6800 1 }

deviceOmniSwitch6824 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6824 Stackable Switch consisting
        of 20 RJ-45 connectors individually configurable to 10/100/1000 Base-T
        and 4 combo ports individually configurable to be 10/100/1000 Base-T or
        1000 Base-X; with 2 stacking ports.
        Model Number:
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.6.1.1"
    ::= { chassisOmniSwitch6800 1 }

deviceOmniSwitch6848 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6848 Stackable Switch consisting of 44 RJ-45 connectors
        individually configurable to 10/100/1000 Base-T and 4 combo ports
        individually configurable to be 10/100/1000 Base-T or 1000 Base-X; with 2
        stacking ports.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.2"
    ::= { chassisOmniSwitch6800 2 }

deviceOmniSwitch6824Fiber OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6824 (Non-Stackable) Switch - Fiber consisting of 20 1000 Base-X ports
        and 4 combo ports ports individually configurable to be 10/100/1000 Base-T
        or 1000 Base-X. The 20 fiber ports will be equipped with 20 pluggable SFP
        transceivers that can support short, long, very long distances.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.3"
    ::= { chassisOmniSwitch6800 3 }

deviceOmniSwitch6824PoE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6824 Stackable Power over Ethernet Switch.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.4"
    ::= { chassisOmniSwitch6800 4 }

deviceOmniSwitch6848PoE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6848 Stackable Power over Ethernet Switch.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.5"
    ::= { chassisOmniSwitch6800 5 }

deviceOmniSwitch6824L OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6824 Stackable Lite.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.6"
    ::= { chassisOmniSwitch6800 6 }

deviceOmniSwitch6848L OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6848 Stackable Lite.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.7"
    ::= { chassisOmniSwitch6800 7 }

deviceOmniSwitch6824LU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6824 Stackable Lite Upgraded.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.8"
    ::= { chassisOmniSwitch6800 8 }

deviceOmniSwitch6848LU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6848 Stackable Lite upgraded.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.9"
    ::= { chassisOmniSwitch6800 9 }

deviceOmniSwitch6824LPoE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6824 Stackable Lite Power over Ethernet.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.10"
    ::= { chassisOmniSwitch6800 10 }

deviceOmniSwitch6848LPoE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6848 Stackable Lite Power over Ethernet.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.11"
    ::= { chassisOmniSwitch6800 11 }

deviceOmniSwitch6824LUPoE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6824 Stackable Lite Upgraded power over Ethernet.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.12"
    ::= { chassisOmniSwitch6800 12 }

deviceOmniSwitch6848LUPoE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6848 Stackable Lite upgraded Power over Ethernet.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.1.13"
    ::= { chassisOmniSwitch6800 13 }

fansOmniSwitch6800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6800 Series Fan Trays."
    ::= { familyOmniSwitch6800 2 }

powersOmniSwitch6800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6800 Series Power Supplies."
    ::= { familyOmniSwitch6800 3 }


powersOmniSwitch6800BPS OBJECT-IDENTITY
        STATUS current
        DESCRIPTION
        "Omni Switch 6800 Series Backup Power supply.
        Model Name: OS6800-BPS-PS
        Assembly: 902279-10
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.6.3.1 "
    ::= { powersOmniSwitch6800 1 }

powersOmniSwitch6800MOD OBJECT-IDENTITY
        STATUS current
        DESCRIPTION
        "Power interface module, that plugs into the primary unit.
        Model Name: OS6800-BP-MOD
        Assembly: 902292-10
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.6.3.2 "
    ::= { powersOmniSwitch6800 2 }

powersOmniSwitch6800SHLF OBJECT-IDENTITY
        STATUS current
        DESCRIPTION
        "Chassis, that accepts the power supply modules.
        Model Name: OS6800-BPS-SHLF
        Assembly: 902278-10
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.6.3.3 "
    ::= { powersOmniSwitch6800 3 }

modulesOmniSwitch6800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6800 Series Modules."
    ::= { familyOmniSwitch6800 4 }

icOmniSwitch8000TenGIC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6800 Series 10 GIG Interface Cards (IC)."
    ::= { modulesOmniSwitch6800 1 }

mgicOmniSwitch6800SR OBJECT-IDENTITY
        STATUS current
        DESCRIPTION
        "OmniSwitch 6800 Series Single Mode Fiber 1000BaseLX Interface Card.
        Model Name: 10G-XFP-SR
        Assembly:   902343-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.4.1.1"
    ::= { icOmniSwitch8000TenGIC 1 }

mgicOmniSwitch6800LR OBJECT-IDENTITY
        STATUS current
        DESCRIPTION
        "OmniSwitch 6800 Series Single Mode Fiber 1000BaseLX Interface Card.
        Model Name: 10G-XFP-LR
        Assembly:   902344-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.2.4.2.4.1.2"
    ::= { icOmniSwitch8000TenGIC 2 }

icOmniSwitch6800GIC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6800 Series 1000BaseX Interface Cards (IC)."
    ::= { modulesOmniSwitch6800 2 }


mgicOmniSwitch6800SX OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6800 Series Multi Mode Fiber 1000BaseSX Interface Card.
        Model Name: MiniGBIC-SX
        Assembly:   902053-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.4.2.1"
    ::= { icOmniSwitch6800GIC 1 }


mgicOmniSwitch6800LX OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6800 Series Single Mode Fiber 1000BaseLX Interface Card.
        Model Name: MiniGBIC-LX
        Assembly:   902052-10
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.6.4.2.2 "
    ::= { icOmniSwitch6800GIC 2 }


mgicOmniSwitch6800LH70 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6800 Series Long Haul 70km Fiber 1000BaseX Interface Card.
        Model Name: MiniGBIC-LH-70
        Assembly:   902051-10
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.6.4.2.3"
    ::= { icOmniSwitch6800GIC 3 }

expOmniSwitch6800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6800 Expantion Modules."
    ::= { modulesOmniSwitch6800 3 }

expOmniSwitch6800U2 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6800 Series Universal 2-Port 10 gig Network Interface Module.
        Model Name: OS6800-XNI-U2
        Assembly:   902277-10
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.6.4.3.1 "
    ::= { expOmniSwitch6800 1 }

familyOmniSwitch6850 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850 Series Product Family."
    ::= { alcatelIND1DevicesMIB 7 }

chassisOmniSwitch6850 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6850 Series Switch."
    ::= { familyOmniSwitch6850 1 }

deviceOmniSwitch685024 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-24 Stackable switch consisting of
        24 copper GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports and
        2 stacking ports.
        Model Number: OS6850-24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.1"
    ::= { chassisOmniSwitch6850 1 }

deviceOmniSwitch685048 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-48 Stackable switch consisting of
        48 copper GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports and
        2 stacking ports.
        Model Number: OS6850-48
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.7.1.2"
    ::= { chassisOmniSwitch6850 2 }

deviceOmniSwitch685024X OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-24X Stackable switch consisting of
        24 copper GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports
        2 10Gig ports and 2 stacking ports.
        Model Number: OS6850-24X
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.3 "
    ::= { chassisOmniSwitch6850 3 }

deviceOmniSwitch685048X OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-48X Stackable switch consisting of
        48 copper GigE Ports, 2 10Gig ports and 2 stacking ports.
        Model Number: OS6850-48X
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.4 "
    ::= { chassisOmniSwitch6850 4 }

deviceOmniSwitch6850P24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P24 Stackable switch consisting of
        24 copper PoE Ports, 4 Fiber_GigE/Copper_GigE combo ports, and 2 stacking ports.
        Model Number: OS6850-P24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.5 "
    ::= { chassisOmniSwitch6850 5 }

deviceOmniSwitch6850P48 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P48 Stackable switch consisting of
        48 copper PoE Ports, 4 Fiber_GigE/Copper_GigE combo ports, and 2 stacking ports.
        Model Number: OS6850-P48
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.6 "
    ::= { chassisOmniSwitch6850 6 }

deviceOmniSwitch6850P24X OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P24X Stackable switch consisting of
        24 copper PoE Ports, 4 Fiber_GigE/Copper_GigE combo ports,
        2 10 Gig ports, and 2 stacking ports.
        Model Number: OS6850-P24X
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.7 "
    ::= { chassisOmniSwitch6850 7 }

deviceOmniSwitch6850P48X OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P48X Stackable switch consisting of
        48 copper PoE Ports, 2 10 Gig ports, and 2 stacking ports.
        Model Number: OS6850-P48X
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.8 "
    ::= { chassisOmniSwitch6850 8 }

deviceOmniSwitch6850U24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-U24 Stackable switch consisting of 24
        fiber GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports ,
        and 2 stacking ports.
        Model Number: OS6850-U24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.9 "
    ::= { chassisOmniSwitch6850 9 }

deviceOmniSwitch6850U24X OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-U24X Stackable switch consisting of
        24 fiber GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports,
        2 10 Gig ports, and 2 stacking ports.
        Model Number: OS6850-U24X
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.10 "
    ::= { chassisOmniSwitch6850 10 }


deviceOmniSwitch685024L OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-24 Stackable switch consisting of
        24 copper GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports and
        2 stacking ports.
        Model Number: OS6850-24L
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.11 "
    ::= { chassisOmniSwitch6850 11 }

deviceOmniSwitch685048L OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-48 Stackable switch consisting of
        48 copper GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports and
        2 stacking ports.
        Model Number: OS6850-48L
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.12 "
    ::= { chassisOmniSwitch6850 12 }

deviceOmniSwitch685024XL OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-24X Stackable switch consisting of
        24 copper GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports
        2 10Gig ports and 2 stacking ports.
        Model Number: OS6850-24XL
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.13 "
    ::= { chassisOmniSwitch6850 13 }

deviceOmniSwitch685048XL OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-48X Stackable switch consisting of
        48 copper GigE Ports, 2 10Gig ports and 2 stacking ports.
        Model Number: OS6850-48XL
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.14 "
    ::= { chassisOmniSwitch6850 14 }

deviceOmniSwitch6850P24L OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P24 Stackable switch consisting of
        24 copper PoE Ports, 4 Fiber_GigE/Copper_GigE combo ports, and 2 stacking ports.
        Model Number: OS6850-P24L
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.15 "
    ::= { chassisOmniSwitch6850 15 }

deviceOmniSwitch6850P48L OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P48 Stackable switch consisting of
        48 copper PoE Ports, 4 Fiber_GigE/Copper_GigE combo ports, and 2 stacking ports.
        Model Number: OS6850-P48L
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.16 "
    ::= { chassisOmniSwitch6850 16 }

deviceOmniSwitch6850P24XL OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P24X Stackable switch consisting of
        24 copper PoE Ports, 4 Fiber_GigE/Copper_GigE combo ports,
        2 10 Gig ports, and 2 stacking ports.
        Model Number: OS6850-P24XL
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.17 "
    ::= { chassisOmniSwitch6850 17 }

deviceOmniSwitch6850P48XL OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P48X Stackable switch consisting of
        48 copper PoE Ports, 2 10 Gig ports, and 2 stacking ports.
        Model Number: OS6850-P48XL
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.18 "
    ::= { chassisOmniSwitch6850 18 }

deviceOmniSwitch685024LU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-24 Lite upgraded version.
        Model Number:
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.19 "
    ::= { chassisOmniSwitch6850 19 }

deviceOmniSwitch685048LU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-48 Lite upgraded version.
        Model Number:
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.7.1.20 "
    ::= { chassisOmniSwitch6850 20 }

deviceOmniSwitch685024XLU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-24X Lite upgraded
        Model Number:
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.21 "
    ::= { chassisOmniSwitch6850 21 }

deviceOmniSwitch685048XLU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-48X Lite upgraded version
        Model Number:
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.22 "
    ::= { chassisOmniSwitch6850 22 }

deviceOmniSwitch6850P24LU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P24 Lite upgraded version
        Model Number:
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.23 "
    ::= { chassisOmniSwitch6850 23 }

deviceOmniSwitch6850P48LU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P48 Lite upgraded version
        Model Number:
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.24 "
    ::= { chassisOmniSwitch6850 24 }

deviceOmniSwitch6850P24XLU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P24X Lite Upgraded version
        Model Number:
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.25 "
    ::= { chassisOmniSwitch6850 25 }

deviceOmniSwitch6850P48XLU OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6850-P48X Lite upgraded version
        Model Number:
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.1.26 "
    ::= { chassisOmniSwitch6850 26 }

fansOmniSwitch6850 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6800 Series Fan Trays."
    ::= { familyOmniSwitch6850 2 }

powersOmniSwitch6850 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6800 Series Power Supplies."
    ::= { familyOmniSwitch6850 3 }

powersOmniSwitch6850BPS OBJECT-IDENTITY
        STATUS current
        DESCRIPTION
        "Omni Switch 6850 Series Backup Power supply.
        Model Name: OS6850-BPS-PS
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.7.3.1 "
    ::= { powersOmniSwitch6850 1 }

modulesOmniSwitch6850 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6850 Series Modules."
    ::= { familyOmniSwitch6850 4 }

--------------------------------------------------------------------------------

familyOmniSwitch9000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 9000 Series Product Family."
    ::= { alcatelIND1DevicesMIB 8 }


chassisOmniSwitch9000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 9000 Series Chassis."
    ::= { familyOmniSwitch9000 1 }


deviceOmniSwitch9700 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9700 10-Slot Chassis.
        Model Name: OS9700
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.1.1 "
    ::= { chassisOmniSwitch9000 1 }


deviceOmniSwitch9800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9800 18-Slot Chassis.
        Model Name: OS9800
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.1.2 "
    ::= { chassisOmniSwitch9000 2 }


deviceOmniSwitch9600 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9600 5-Slot Chassis.
        Model Name: OS9600
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.1.3 "
    ::= { chassisOmniSwitch9000 3 }

deviceOmniSwitch9700E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9700E 8-Slot Chassis.
        Model Name: OS9700E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.1.4 "
    ::= { chassisOmniSwitch9000 4 }

deviceOmniSwitch9800E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9800E 16-Slot Chassis.
        Model Name: OS9800E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.1.5 "
    ::= { chassisOmniSwitch9000 5 }

deviceOmniSwitch9600E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9600E 5-Slot Chassis.
        Model Name: OS9600E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.1.6 "
    ::= { chassisOmniSwitch9000 6 }


fansOmniSwitch9000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 9000 Series Fan Trays."
    ::= { familyOmniSwitch9000 2 }


powersOmniSwitch9000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 9000 Series Power Supplies."
    ::= { familyOmniSwitch9000 3 }


modulesOmniSwitch9000 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 9000 Series Modules."
    ::= { familyOmniSwitch9000 4 }



modulesOmniSwitch9000CM OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 9000 Series Chassis Management (CM) Modules."
    ::= { modulesOmniSwitch9000 1 }



cmmOmniSwitch9700 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9700 Series Chassis Management Module.
        Model Name: OS9700-CMM
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.8.4.1.1"
    ::= { modulesOmniSwitch9000CM 1 }


cmmOmniSwitch9700PROC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9700 Series Chassis Management Module Processor.
        Model Name: OS9700-CMM Processor
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.8.4.1.1.1"
    ::= { cmmOmniSwitch9700 1 }


cmmOmniSwitch9800 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9800 Series Chassis Management Module.
        Model Name: OS9800-CMM
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.8.4.1.2"
    ::= { modulesOmniSwitch9000CM 2 }


cmmOmniSwitch9800PROC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9800 Series Chassis Management Module Processor.
        Model Name: OS9800-CMM Processor
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.1.2.1 "
    ::= { cmmOmniSwitch9800 1 }


cmmOmniSwitch9600 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9600 Series Chassis Management Module.
        Model Name: OS9600-CMM
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.8.4.1.3"
    ::= { modulesOmniSwitch9000CM 3 }


cmmOmniSwitch9600PROC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9600 Series Chassis Management Module Processor.
        Model Name: OS9600-CMM Processor
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.1.3.1 "
    ::= { cmmOmniSwitch9600 1 }


modulesOmniSwitch9000NI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Network Interface (NI) Modules."
    ::= { modulesOmniSwitch9000 2 }


niOmniSwitch9000ENI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series 10/100BaseX Ethernet Network Interface (ENI) Modules."
    ::= { modulesOmniSwitch9000NI 1 }


niOmniSwitch9000GNI OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series 1000BaseX Ethernet Network Interface (GNI) Modules."
    ::= { modulesOmniSwitch9000NI 2 }


gniOmniSwitch9000C24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series .
        Model Name: OS9-GNI-C24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.1 "
    ::= { niOmniSwitch9000GNI 1 }


gniOmniSwitch9000U24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module.
        Model Name: OS9-GNI-U24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.2 "
    ::= { niOmniSwitch9000GNI 2 }


gniOmniSwitch9000U2 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module.
        Model Name: OS9-XNI-U2
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.3 "
    ::= { niOmniSwitch9000GNI 3 }


gniOmniSwitch9000U6 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module.
        Model Name: OS9-XNI-U6
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.4 "
    ::= { niOmniSwitch9000GNI 4 }

gniOmniSwitch9000P24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module.
        Model Name: OS9-GNI-P24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.5"
    ::= { niOmniSwitch9000GNI 5 }


gniOmniSwitch900048T OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module.
        Model Name: OS9_GNI_C48T
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.6"
    ::= { niOmniSwitch9000GNI 6 }


gniOmniSwitch9000GC20L OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module.
        Model Name: OS9_GNI_C20L
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.7"
    ::= { niOmniSwitch9000GNI 7 }


gniOmniSwitch9000EC20L OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module.
        Model Name: OS9_GNI_C20L
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.8"
    ::= { niOmniSwitch9000GNI 8 }


gniOmniSwitchLockedC20L OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Locked Ethernet Network Interface Module.
        Model Name: OS9_ENI_LOCKED
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.9"
    ::= { niOmniSwitch9000GNI 9 }



gniOmniSwitch900048TE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module with FB1r2.
        Model Name: OS9_GNI_C48T_E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.10"
    ::= { niOmniSwitch9000GNI 10 }


gniOmniSwitch9000EC20LE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module with FB1r2.
        Model Name: OS9_GNI_C20L_E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.11"
    ::= { niOmniSwitch9000GNI 11 }


gniOmniSwitchLockedC20LE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Locked Ethernet Network Interface Module, FB1r2.
        Model Name: OS9_ENI_LOCKED_E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.12"
    ::= { niOmniSwitch9000GNI 12 }


gniOmniSwitch9000C24E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series .
        Model Name: OS9-GNI-C24-E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.13"
    ::= { niOmniSwitch9000GNI 13 }


gniOmniSwitch9000P24E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module with FB1r2.
        Model Name: OS9-GNI-P24-E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.14"
    ::= { niOmniSwitch9000GNI 14 }


gniOmniSwitch9000U24E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module with FB1r2.
        Model Name: OS9-GNI-U24-E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.15"
    ::= { niOmniSwitch9000GNI 15 }


gniOmniSwitch9000GC20LE OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module with FB1r2.
        Model Name: OS9_GNI_C20L_E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.16"
    ::= { niOmniSwitch9000GNI 16 }


gniOmniSwitch9000U2E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module with FB1r2.
        Model Name: OS9-XNI-U2-E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.17"
    ::= { niOmniSwitch9000GNI 17 }


gniOmniSwitch9000U6E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module FB1r2.
        Model Name: OS9-XNI-U6-E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.18"
    ::= { niOmniSwitch9000GNI 18 }

gniOmniSwitch9000C24FJ2E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module TRIUMPH.
        Model Name: OS9-GNI-C24-FJ2-E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.19"
    ::= { niOmniSwitch9000GNI 19 }

gniOmniSwitch9000U24FJ2E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module TRIUMPH.
        Model Name: OS9-GNI-U24-FJ2-E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.20"
    ::= { niOmniSwitch9000GNI 20 }


gniOmniSwitch9000U2FJ2E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module TRIUMPH.
        Model Name: OS9-XNI-U2-FJ2-E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.21"
    ::= { niOmniSwitch9000GNI 21 }


gniOmniSwitch9000U12PlusFJ2E OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Ethernet Network Interface Module SCORPION.
        Model Name: OS9-XNI-U12Plus-FJ2-E
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.8.4.2.2.23"
    ::= { niOmniSwitch9000GNI 22 }


niOmniSwitch9000IC OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Network Interface Module Interface Cards (IC)."
    ::= { modulesOmniSwitch9000NI 3 }

niOmniSwitch9000DM OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 9000 Series Network Daughter Module (DM)."
    ::= { modulesOmniSwitch9000NI 4 }


---------------------------------------------------------------


familyOmniSwitch6855 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6855 Series Product Family."
    ::= { alcatelIND1DevicesMIB 9 }

chassisOmniSwitch6855 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6855 Series Switch."
    ::= { familyOmniSwitch6855 1 }

deviceOmniSwitch685514 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6855-14 Industrial Grade Temperature Switch 
        consisting of 12 copper GigE Ports and 2 Fiber ports.
        Model Number: OS6855-14
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.9.1.1"
    ::= { chassisOmniSwitch6855 1 }

deviceOmniSwitch6855U10 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6855-U10 Industrial Grade Temperature Switch
        consisting of 2 copper GigE Ports and 8 Fiber ports.
        Model Number: OS6855-U10-ITEMP
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.9.1.2"
    ::= { chassisOmniSwitch6855 2 }

deviceOmniSwitch685524 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6855-24 Industrial Grade Temperature Switch 
        consisting of 24 copper GigE Ports and 
        4 Fiber_GigE/Copper_GigE combo ports.
        Model Number: OS6855-24-ITEMP
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.9.1.3"
    ::= { chassisOmniSwitch6855 3 }

deviceOmniSwitch6855U24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6855-U24 Industrial Grade Temperature Switch
        consisting of 24 fiber ports and 
        2 Fiber_GigE/Copper_GigE combo ports.
        Model Number: OS6855-U24-ITEMP
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.9.1.4"
    ::= { chassisOmniSwitch6855 4 }

deviceOmniSwitch6855U24X OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6855-U24X Industrial Grade LAN switch that has 24 fiber ports,
        2 Fiber_GigE/Copper_GigE combo ports and 2 10gig ports that can be used 
	either as stacking or uplink ports.
        Model Number: OS6855-U24X-ITEMP
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.9.1.5"
    ::= { chassisOmniSwitch6855 5 }


fansOmniSwitch6855 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6855 Series Fan Trays."
    ::= { familyOmniSwitch6855 2 }

powersOmniSwitch6855 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6855 Series Power Supplies."
    ::= { familyOmniSwitch6855 3 }

modulesOmniSwitch6855 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6855 Series Modules."
    ::= { familyOmniSwitch6855 4 }

--------------------------------------------------------------------------------

familyOmniSwitch6400 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6400 Series Product Family."
    ::= { alcatelIND1DevicesMIB 10 }

chassisOmniSwitch6400 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6400 Series Chassis."
    ::= { familyOmniSwitch6400 1 }

deviceOmniSwitch640024 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6400-24 Stackable Switch consisting of
        24 copper GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports and
        2 stacking ports.
        Model Number: OS6400-24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.10.1.1"
    ::= { chassisOmniSwitch6400 1 }


deviceOmniSwitch6400P24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6400-P24 Stackable Switch consisting of
        24 copper PoE Ports, 4 Fiber_GigE/Copper_GigE combo ports, and 2 stacking ports.
        Model Number: OS6400-P24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.10.1.2 "
    ::= { chassisOmniSwitch6400 2 }

deviceOmniSwitch6400U24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6400-U24 Stackable Switch consisting of 24
        fiber GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports ,
        and 2 stacking ports.
        Model Number: OS6400-U24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.10.1.3 "
    ::= { chassisOmniSwitch6400 3 }

deviceOmniSwitch6400DU24 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6400-DU24 Stackable Switch consisting of 24
        fiber GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports ,
        and 2 stacking ports, internal DC power suplly.
        Model Number: OS6400-DU24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.10.1.4 "
    ::= { chassisOmniSwitch6400 4 }

deviceOmniSwitch640048 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6400-48 Stackable Switch consisting of
        48 copper GigE Ports, 4 Fiber_GigE/Copper_GigE combo ports and
        2 stacking ports.
        Model Number: OS6400-48
        Assembly:
        sysObjectID:  1.3.6.1.4.1.6486.800.1.1.2.1.10.1.5"
    ::= { chassisOmniSwitch6400 5 }


deviceOmniSwitch6400P48 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6400-P48 Stackable Switch consisting of
        48 copper PoE Ports, 4 Fiber_GigE/Copper_GigE combo ports, and 2 stacking ports.
        Model Number: OS6400-P48
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.10.1.6 "
    ::= { chassisOmniSwitch6400 6 }

fansOmniSwitch6400 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6400 Series Fan Trays."
    ::= { familyOmniSwitch6400 2 }

powersOmniSwitch6400 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6400 Series Power Supplies."
    ::= { familyOmniSwitch6400 3 }

powersOmniSwitch6400BPS OBJECT-IDENTITY
        STATUS current
        DESCRIPTION
        "Omni Switch 6400 Series Backup Power supply.
        Model Name: OS6400-BPS-PS
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.10.3.1 "
    ::= { powersOmniSwitch6400 1 }

modulesOmniSwitch6400 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6400 Series Modules."
    ::= { familyOmniSwitch6400 4 }

--------------------------------------------------------------------------------

familyOmniSwitch6250 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6250 Series Product Family."
    ::= { alcatelIND1DevicesMIB 11 }

chassisOmniSwitch6250M OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6250 Series Metro Stackable Switch."
    ::= { familyOmniSwitch6250 1 }

chassisOmniSwitch6250ENT OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6250 Series Enterprise Stackable Switch."
    ::= { familyOmniSwitch6250 2 }

-- Metro Models

deviceOmniSwitch62508M OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6250-8M Metro Stackable Switch consisting of
        8 copper FastE Ports, 2 Fiber_GigE/Copper_GigE combo ports
                and 2 Fiber_GigE user/stacking ports.
        Model Number: OS6250-8M
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.11.1.1"
    ::= { chassisOmniSwitch6250M 1 }

deviceOmniSwitch625024M OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6250-24M Metro Stackable Switch consisting of
        24 copper FastE Ports, 2 Fiber_GigE/Copper_GigE combo ports
                and 2 Fiber_GigE user/stacking ports.
        Model Number: OS6250-24M
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.11.1.2"
    ::= { chassisOmniSwitch6250M 2 }

deviceOmniSwitch625024MD OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6250-24M Metro Stackable Switch consisting of
        24 copper FastE Ports, 2 Fiber_GigE/Copper_GigE combo ports,
                2 Fiber_GigE user/stacking ports and DC power.
        Model Number: OS6250-24MD
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.11.1.3"
    ::= { chassisOmniSwitch6250M 3 }

-- Enterprise Models

deviceOmniSwitch625024ENT OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6250-24 Stackable Switch consisting of
        24 copper FastE Ports, 2 Fiber_GigE/Copper_GigE combo ports and
        2 HDMI stacking ports.
        Model Number: OS6250-24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.11.2.1"
    ::= { chassisOmniSwitch6250ENT 1 }

deviceOmniSwitch6250P24ENT OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "OmniSwitch 6250-P24 Stackable Switch consisting of
        24 copper PoE Ports, 2 Fiber_GigE/Copper_GigE combo ports and
        2 HDMI stacking ports.
        Model Number: OS6250-P24
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.11.2.2"
    ::= { chassisOmniSwitch6250ENT 2 }

fansOmniSwitch6250 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6250 Series Fan Trays."
    ::= { familyOmniSwitch6250 3 }

powersOmniSwitch6250 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6250 Series Power Supplies."
    ::= { familyOmniSwitch6250 4 }

powersOmniSwitch6250BPS OBJECT-IDENTITY
        STATUS current
        DESCRIPTION
        "Omni Switch 6250 Series Backup Power supply.
        Model Name: OS6250-BPS-PS
        Assembly:
        sysObjectID: 1.3.6.1.4.1.6486.800.1.1.2.1.11.4.1"
    ::= { powersOmniSwitch6250 1 }

modulesOmniSwitch6250 OBJECT-IDENTITY
    STATUS current
    DESCRIPTION
        "Branch For OmniSwitch 6250 Series Modules."
    ::= { familyOmniSwitch6250 5 }

END