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
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
|
-- ==================================================================
-- Copyright (c) 2004-2014 Hangzhou H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: Lan Switch Device Physical Information MIB
-- Reference:
-- Version: V3.67
-- History:
-- v1.0 (1) Created by Hou Qiang, 2001.5.15
-- (2) Revised by Qi Zhenglin, 2002.01.08 ----r003 revision
-- v1.1 2004-7-12 add some card type define(hh3cLswSlotType 119-138)
-- v1.2 add enum value from 42 to 49 in hh3cLswPortType.
-- v1.3 2004-7-29 add some port type define(hh3cLswPortType 50-58)
-- v1.4 2004-8-11 add some slot type define
-- (hh3cLswSlotType type_LSA1FP8U(139))
-- (hh3cLswSubslotType type_LSA1FP8U(139))
-- v1.5 2004-08-25 change emunation name
-- from type_LS81SFCA(120) to type_LS81SRPG0(120),
-- from type_LS81SFCB(121) to type_LS81SRPG1(121),
-- from type_LS81SFCC(122) to type_LS81SRPG2(122),
-- from type_LS81SFCD(123) to type_LS81SRPG3(123).
-- modify comments for these emunations as well.
-- v1.6 2004-8-26 add some port types define(h2LswPortType 59-71)
-- v1.7 2004-09-08 add enum value from 140 to 148 in hh3cLswSlotType and hh3cLswSubSlotType by kangyinan
-- v1.8 2004-09-14 add enum value from 149 to 157 in hh3cLswSlotType and hh3cLswSubSlotType by wangyahui
-- add enum value from 158 to 159 in hh3cLswSlotType and hh3cLswSubSlotType by kangyinan
-- add enum value from 72 to 93 in hh3cLswPortType by wangyahui
-- add enum value from 94 to 96 in hh3cLswPortType by kangyinan
-- add type description for type_SP4, type_UP1, type_XP4 by kangyinan
-- v1.9 2004-10-12 updated by gaolong
-- Change all underscore('_') characters to hyphen characters('-') because underscore character is not allowed in MIB module.
-- The change refers to the value of hh3cLswSlotType, hh3cLswSlotAdminStatus, hh3cLswSubslotType, hh3cLswPortType, hh3cLswSubslotAdminStatus
-- Change MAX-ACCESS clause value of hh3cLswPortLoopbackOperate from write-only to read-write, and
-- update its DESCRIPTION.
-- v2.0 2004-10-19 add enum value from 160 to 162 in hh3cLswSlotType and hh3cLswSubSlotType by kangyinan
-- add enum value 97 in hh3cLswPortType by kangyinan
-- v2.1 2004-11-23 add enum value from 163 to 166 in hh3cLswSlotType and hh3cLswSubSlotType by zhangchengmei
-- V2.2 2004-12-23 add enum value from 167 to 169 in hh3cLswSlotType and hh3cLswSubSlotType by zhangjianfeng
-- V2.3 2004-12-26 add enum value 170 in hh3cLswSlotType and hh3cLswSubSlotType by wangyahui
-- V2.4 2004-12-23 add enum value from 171 to 172 in hh3cLswSlotType and hh3cLswSubSlotType
-- add enum value from 98 to 99 hh3cLswPortType by liyue
-- V2.5 2004-12-29 add enum value 173 in hh3cLswSlotType and hh3cLswSubSlotType by zhangjianfeng
-- add enum value from 100 in hh3cLswPortType by zhangjianfeng
-- V2.6 2005-01-07 add enum value 174 and 175 in hh3cLswSlotType and hh3cLswSubSlotType by wangyahui
-- V2.7 2005-01-31 add enum value 176 in hh3cLswSlotType and hh3cLswSubSlotType by wangyahui
-- V2.8 2005-02-03 define Hh3cLswTypeOfSlot
-- change the SYNTAX of hh3cLswSlotType and hh3cLswSubSlotType to Hh3cLswTypeOfSlot,add new enum vlaue to Hh3cLswTypeOfSlot
-- add enum value from 101 to 137 in hh3cLswPortType by zhangchengmei
-- add enum value 178 in Hh3cLswTypeOfSlot by zhouqiang
-- add enum value 138 in hh3cLswPortType by zhouqiang
-- add enum value from 179 to 180 in hh3cLswSubSlotType by wangyahui
-- V2.9 2005-03-22 add enum value from 181 to 187 in Hh3cLswTypeOfSlot by zhangchengmei
-- V3.0 2005-05-10 add enum value from 188 to 216 in Hh3cLswTypeOfSlot by zhangchengmei
-- V3.1 2005-07-18 add enum value from 217 to 219 in Hh3cLswTypeOfSlot by yangliming
-- 2005-06-25 add enum value from 139 to 142 in hh3cLswPortType by wangyahui
-- V3.11 2005-07-29 add enum value from 220 to 225 in Hh3cLswTypeOfSlot by wangyahui
-- V3.12 2005-07-21 change the name of subidentifier 183 in Hh3cLswTypeOfSlot by zhangchengmei
-- add enum value 226 to 227 in Hh3cLswTypeOfSlot by zhangchengmei
-- 2005-08-29 add enum value 143 in hh3cLswPortType by qianxiaoyu
-- V3.13 2005-09-13 add enum value 228 to 253 in Hh3cLswTypeOfSlot by zhangchengmei
-- 2005-09-13 add enum value 257 to 268 in Hh3cLswTypeOfSlot by zhangchengmei
-- V3.14 2005-11-04 add enum value 144 to 149 in hh3cLswPortType by zhangchengmei
-- add enum value 150 in hh3cLswPortType by huangyuetao
-- add enum value 269 to 271 in hh3cLswSlotType by yangxiaopeng
-- add enum value 272 in Hh3cLswTypeOfSlot by qianxiaoyu
-- V3.15 2005-11-24 add enum value 500 to 501 in hh3cLswSlotType by wangyahui
-- V3.16 2005-11-28 add enum value 300 to 316 in Hh3cLswTypeOfSlot by zhangchengmei
-- V3.17 2005-12-30 add enum value 151 to 170 in hh3cLswPortType by zhangchengmei
-- V3.18 2006-01-04 add enum value 701 in Hh3cLswTypeOfSlot by qianxiaoyu
-- V3.19 2006-02-12 add enum value 702 in Hh3cLswTypeOfSlot by chenxiaohui
-- add enum value 317 in Hh3cLswTypeOfSlot by zhangchengmei
-- V3.20 2006-02-20 add enum value 703 in Hh3cLswTypeOfSlot by chijuntao
-- V3.21 2006-02-28 add enum value 171 to 174 in hh3cLswPortType by wangshunli
-- add enum value 318 to 336 in Hh3cLswTypeOfSlot by zhaiyingying
-- Modify description of hh3cLswSysIpAddr, hh3cLswSlotCpuRatio, hh3cLswSysCpuRatio
-- and some wrong format of the description by wangyong
-- V3.22 2006-03-14 add enum value 175 in hh3cLswPortType by wangyahui
-- add enum value 502 to 504 in Hh3cLswTypeOfSlot by wangyahui
-- V3.23 2006-04-03 add enum value 176 in hh3cLswPortType by wangyahui
-- V3.24 2006-04-21 add enum value 337 to 340 in Hh3cLswTypeOfSlot by zhaiyingying
-- V3.25 2006-04-21 add enum value 704 to 705 under Hh3cLswTypeOfSlot by zhangxianguo
-- add enum value 505 to 506 under Hh3cLswTypeOfSlot by zhangjianfeng
-- add enum value 341 to 349 under Hh3cLswTypeOfSlot by zhaiyingying
-- add enum value 177 to 178 under hh3cLswPortType by zhangjianfeng
-- add enum value 179 to 180 under hh3cLswPortType by zhangxianguo
-- V3.26 2006-07-12 add enum value 507 to 509 in Hh3cLswTypeOfSlot by wangyahui
-- modify enum name 502 and 503 of Hh3cLswTypeOfSlot by wangyahui
-- add enum value 350 to 357 under Hh3cLswTypeOfSlot by zhaiyingying
-- Modify description of enum element(3) in Hh3cLswTypeOfSlot by zhangxianguo
-- V3.27 2006-08-31 add enum value 510 to 514 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 800 to 801 in Hh3cLswTypeOfSlot by luoguixing
-- V3.28 2006-10-26 add enum value 358 to 370 under Hh3cLswTypeOfSlot by zhaiyingying
-- add enum value 183 under hh3cLswPortType by zhaiyingying
-- add enum value 515 to 526 in Hh3cLswTypeOfSlot by wangyahui
-- modify enum 505 and 506 of Hh3cLswTypeOfSlot by wangyahui
-- add enum value 181 to 182 in hh3cLswPortType by wangyahui
-- V3.29 2006-11-02 add enum value 527 to 536 in Hh3cLswTypeOfSlot by wangyahui
-- modify description of 511 to 513 in Hh3cLswTypeOfSlot by wangyahui
-- 2006-11-10 add enum value 371 to 378 under Hh3cLswTypeOfSlot by shuxiongtao
-- 2006-11-08 add enum value 184 to 185 under hh3cLswPortType by zhaiyingying
-- V3.30 2007-03-19 add enum value 537 in Hh3cLswTypeOfSlot by wangyahui
-- V3.31 2007-04-25 add enum value 538 to 542 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 379 to 380 under Hh3cLswTypeOfSlot by zhaiyingying
-- add enum value 706 in Hh3cLswTypeOfSlot by zhangzongyi
-- V3.32 2007-05-28 add enum value 707 in Hh3cLswTypeOfSlot by ligaoxu
-- add enum value 381 to 392 in Hh3cLswTypeOfSlot by shuxiongtao
-- modify name of enum value 371 and 374 in Hh3cLswTypeOfSlot by shuxiongtao
-- add enum value 186 in hh3cLswPortType by jinzhaoqiong
-- V3.33 2007-07-09 add enum value 543 to 551 in Hh3cLswTypeOfSlot by Zhangjianfeng
-- add enum value 552 to 554 in Hh3cLswTypeOfSlot by wangyahui
-- V3.34 2007-07-26 add enum value 708 in Hh3cLswTypeOfSlot by Xiuyihong
-- V3.35 2007-08-27 add enum value 187 to 188 in hh3cLswPortType by ruanhan
-- add enum value 802 to 804 in Hh3cLswTypeOfSlot by luoguixing
-- add enum value 393 to 397 under Hh3cLswTypeOfSlot by shuxiongtao
-- V3.36 2007-09-25 add enum value 555 to 559 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 805 in Hh3cLswTypeOfSlot by luoguixing
-- add enum value 398 to 399 in Hh3cLswTypeOfSlot by hexuefei
-- V3.37 2007-10-16 add enum value 189 in hh3cLswPortType by liaoxin
-- V3.38 2007-11-20 add enum value 400 to 407 in Hh3cLswTypeOfSlot by shuxiongtao
-- V3.39 2007-12-27 add enum value 560 to 568 in Hh3cLswTypeOfSlot by wangyahui
-- V3.40 2008-01-30 add enum value 408 in Hh3cLswTypeOfSlot by hexuefei
-- add enum value 569 to 572 in Hh3cLswTypeOfSlot by wangyahui
-- V3.41 2008-02-20 add enum value 573 to 574 in Hh3cLswTypeOfSlot by zhangjianfeng
-- modify name and comments of enum value 546 in Hh3cLswTypeOfSlot by zhangjianfeng
-- add enum value 575 to 576 in Hh3cLswTypeOfSlot by wangyahui
-- V3.42 2008-03-31 add enum value 806 to 808 in Hh3cLswTypeOfSlot by luoguixing
-- add enum value 709 to 715 under Hh3cLswTypeOfSlot by wangcong
-- add enum value 191 to 196 under hh3cLswPortType by wangcong
-- add enum value 409 to 431 in Hh3cLswTypeOfSlot by zhaiyingying
-- add enum value 432 in Hh3cLswTypeOfSlot by shuxiongtao
-- V3.43 2008-04-29 add enum value 577 to 589 in Hh3cLswTypeOfSlot by wangyahui
-- V3.44 2008-07-28 add enum value 590 to 592 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 809 to 810 in Hh3cLswTypeOfSlot by luoguixing
-- V3.45 2008-08-26 modify name of enum value 379 and 399 in Hh3cLswTypeOfSlot by wangwei
-- modify description of 408 in Hh3cLswTypeOfSlot by wangwei
-- modify name and description of enum value 804 in Hh3cLswTypeOfSlot by wangwei
-- add enum value 433 to 434 in Hh3cLswTypeOfSlot by wangwei
-- add enum value 593 to 595 in Hh3cLswTypeOfSlot by wangyahui
-- V3.46 2008-10-13 add enum vlaue 197 in hh3cLswPortType by ruanhan
-- add enum value 811 in Hh3cLswTypeOfSlot by luoguixing
-- add enum value 596 and 601 in Hh3cLswTypeOfSlot by wangyahui
-- V3.47 2008-12-01 add enum vlaue 725 in Hh3cLswTypeOfSlot by ruanhan
-- add enum value 602 to 619 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 435 to 442 in Hh3cLswTypeOfSlot by zhaiyingying
-- modify name of enum value 546 in Hh3cLswTypeOfSlot by zhangjianfeng
-- add enum value 443 in Hh3cLswTypeOfSlot by shuxiongtao
-- V3.48 2008-12-25 add enum value 620 to 622 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 716 to 718 in Hh3cLswTypeOfSlot by zhangshilin
-- add enum value 444 to 445 in Hh3cLswTypeOfSlot by wangchang
-- V3.49 2009-01-05 add enum value 446 to 452 in Hh3cLswTypeOfSlot by wangchang
-- add enum value 719 in Hh3cLswTypeOfSlot by zhangshilin
-- add enum value 623 to 633 in Hh3cLswTypeOfSlot by wangyahui
-- V3.50 2009-03-19 add enum value 453 to 464 in Hh3cLswTypeOfSlot by huyinxing
-- V3.51 2009-07-02 add enum value 634 to 637 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 465 to 468 in Hh3cLswTypeOfSlot by zhaiyingying
-- add enum value 469 to 472 in Hh3cLswTypeOfSlot by huyinxing
-- add enum value 198 in hh3cLswPortType by huyinxing
-- add enum vlaue 199 in hh3cLswPortType by zhangjianfeng
-- V3.52 2009-08-28 add enum value 638 to 640 in Hh3cLswTypeOfSlot by wangyahui
-- V3.53 2009-11-09 add enum value 726 in Hh3cLswTypeOfSlot by ruanhan
-- add enum value 641 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 473 to 477 in Hh3cLswTypeOfSlot by yudongyang
-- add enum value 478 to 485 in Hh3cLswTypeOfSlot by heweibin
-- V3.54 2009-12-31 add enum value 200 to 201 in hh3cLswPortType by zhanghaiyang
-- add enum value 642 to 651 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 486 in Hh3cLswTypeOfSlot by yudongyang
-- add enum value 727 to 728 in Hh3cLswTypeOfSlot by xiaobing
-- add enum value 652 to 659 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 487 to 488 in Hh3cLswTypeOfSlot by huyinxing
-- add enum value 660 to 662 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 202 to 203 in hh3cLswPortType by yangdonghong
-- V3.55 2010-03-03 Added hh3cLswSysPhyMemory, hh3cLswSysMemory,
-- hh3cLswSysMemoryUsed, hh3cLswSysMemoryRatio by songhao
-- add enum value 812 in Hh3cLswTypeOfSlot by mashuhang
-- add enum value 489 to 497 in Hh3cLswTypeOfSlot by liubuxiang
-- add enum value 498 to 499 in Hh3cLswTypeOfSlot by shikejun
-- add enum value 900 in Hh3cLswTypeOfSlot by yangqiulin
-- add enum value 901 to 902 in Hh3cLswTypeOfSlot by huyinxing
-- V3.56 2010-08-29 add enum value 903 to 904 in Hh3cLswTypeOfSlot by huyinxing
-- add enum value 905 to 907 in Hh3cLswTypeOfSlot by shikejun
-- add enum value 663 to 685 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 813 in Hh3cLswTypeOfSlot by mashuhang
-- add enum value 729 in Hh3cLswTypeOfSlot by zhangshilin
-- add enum value 908 to 913 in Hh3cLswTypeOfSlot by yangbin
-- add enum value 914 to 918 in Hh3cLswTypeOfSlot by huyinxing
-- add enum value 919 to 927 in Hh3cLswTypeOfSlot by langgaoyi
-- add hh3cLswFabricTable by songhao
-- V3.57 2011-01-31 add enum value 686 to 691 in Hh3cLswTypeOfSlot by wangyahui
-- add enum value 928 to 929 in Hh3cLswTypeOfSlot by langgaoyi
-- add hh3cLswSysTemperature, hh3cLswSlotPhyMemory,
-- hh3cLswSlotMemory, hh3cLswSlotMemoryUsed,
-- hh3cLswSlotMemoryRatio and hh3cLswSlotTemperature by songhao
-- V3.58 2011-04-23 Add enum value 930 in Hh3cLswTypeOfSlot by liuhui
-- Add enum value 814 to 815 in Hh3cLswTypeOfSlot by mashuhang
-- Add enum value 692 to 694 in Hh3cLswTypeOfSlot by wangyahui
-- Add enum value 204 in hh3cLswPortType by yangliming
-- V3.59 2011-06-30 Add enum value 695, 1201 to 1211 in Hh3cLswTypeOfSlot by wangyahui
-- Add enum value 205 to 207 in hh3cLswPortType by gaoruichang
-- V3.60 2011-08-31 Add enum value 696 to 697 in Hh3cLswTypeOfSlot by langgaoyi
-- Add enum value 208 in hh3cLswPortType by wangshunli
-- Add enum value 931 to 933 in Hh3cLswTypeOfSlot by langgaoyi
-- Add enum value 934 in Hh3cLswTypeOfSlot by zhaohonghai
-- V3.61 2012-04-20 Add enum value 935 to 938, 942 in Hh3cLswTypeOfSlot by wangjiangnan
-- Add enum value 1212 to 1218 in Hh3cLswTypeOfSlot by wangyahui
-- Add enum value 939 to 941 in Hh3cLswTypeOfSlot by herui
-- Modify name of enum value 205 to 207 in hh3cLswPortType by xvman
-- Add enum value 943 to 945 in Hh3cLswTypeOfSlot by langgaoyi
-- Add enum value 209, 211 in hh3cLswPortType by wangyahui
-- Add enum value 730 to 731 in Hh3cLswTypeOfSlot by panxiyuan
-- Add enum value 210 in hh3cLswPortType by panxiyuan
-- Add enum value 946 to 948 in Hh3cLswTypeOfSlot by zhangheng
-- Add enum value 949 to 956 in Hh3cLswTypeOfSlot by zhengjiang
-- Add enum value 957 in Hh3cLswTypeOfSlot by zhaohonghai
-- Add enum value 212 in hh3cLswPortType by wangyahui
-- Add enum value 732 in Hh3cLswTypeOfSlot by houchengshuai
-- Add enum value 1219 to 1230 in Hh3cLswTypeOfSlot by wangyahui
-- V3.62 2013-01-07 Add enum value 733 in Hh3cLswTypeOfSlot by shixuemei
-- Add enum vlaue 958 to 959 in Hh3cLswTypeOfSlot by zhaohonghai
-- Add enum value 960 to 965, 996 in Hh3cLswTypeOfSlot by zhangheng
-- Add enum value 966 to 988 in Hh3cLswTypeOfSlot by yebiaoxiang
-- Add enum value 989 to 995 in Hh3cLswTypeOfSlot by zhaohonghai
-- Add enum value 1231 to 1255 in Hh3cLswTypeOfSlot by wangyahui
-- Add enum value 1400 to 1410 in Hh3cLswTypeOfSlot by qizhenglin
-- Add enum value 213 to 219 under hh3cLswPortType by yebiaoxiang
-- Modify the name of subidentifier 673, 1214, 1215 in Hh3cLswTypeOfSlot by by wangyahui
-- Added hh3cLswSlotPktBufFree, hh3cLswSlotPktBufInit,
-- hh3cLswSlotPktBufMin, hh3cLswSlotPktBufMiss by jixugang
-- V3.63 2013-04-26 Add enum value 1256 to 1269 in Hh3cLswTypeOfSlot by wangyahui
-- Add enum value 220 to 222 under hh3cLswPortType by jiangyongjiang
-- Modify name of enum value 975 to 982 in hh3cLswPortType by lihaijun
-- Add enum value 997 to 1015 in Hh3cLswTypeOfSlot by chenke
-- Add enum value 1016 to 1018 in Hh3cLswTypeOfSlot by jiangyongjiang
-- Add enum value 1270 to 1273 in Hh3cLswTypeOfSlot by sunzhenxing
-- Add hh3cLswSlotRunTime by qianhaiyun
-- Add hh3cLswNetworkHealthMonitor for reserving by wangcong
-- V3.64 2013-10-10 Add enum value 1274 to 1279, 1293 to 1296 in Hh3cLswTypeOfSlot by lihaijun
-- Add enum value 1019 to 1024 in Hh3cLswTypeOfSlot by zhaohonghai
-- Add enum value 1280 to 1287, 1298 to 1306 in Hh3cLswTypeOfSlot by sunzhenxing
-- Add enum value 1025, 1028, 1029, 1050 in Hh3cLswTypeOfSlot by jiangyongjiang
-- Add enum value 1026 to 1027, 1030 to 1049 in Hh3cLswTypeOfSlot by chenke
-- Add enum value 1288 to 1292, 1297 in Hh3cLswTypeOfSlot by wujili
-- Modify name of enum value 1234 to 1236 in Hh3cLswTypeOfSlot by lihaijun
-- Add enum value 223 to 224 under hh3cLswPortType by jiangyongjiang
-- Add hh3cLswSysMemRev, hh3cLswSysPhyMemRev, hh3cLswSysMemUsedRev and
-- hh3cLswSlotMemRev, hh3cLswSlotPhyMemRev, hh3cLswSlotMemUsedRev by fangliwen
-- V3.65 2014-01-26 Add enum value 734 to 739 in Hh3cLswTypeOfSlot by panxiyuan
-- Modify name of enum value 1032 to 1041 in Hh3cLswTypeOfSlot by chenke
-- Add enum value 1051 to 1055 in Hh3cLswTypeOfSlot by zhaohonghai
-- Add enum value 1056 to 1058 in Hh3cLswTypeOfSlot by chenke
-- Add enum value 1307 to 1313 in Hh3cLswTypeOfSlot by wujili
-- Add enum value 1314 to 1316 in Hh3cLswTypeOfSlot by lihaijun
-- Add enum value 1317 to 1319 in Hh3cLswTypeOfSlot by sunzhenxing
-- Add enum value 1320 to 1326 in Hh3cLswTypeOfSlot by jiangyongjiang
-- V3.66 2013-12-21 Add hh3cLswSlotModelDesc and hh3cLswExtendModelTable by zushuzhi
-- 2014-04-25 Add enum value 1059 to 1069 in Hh3cLswTypeOfSlot by youhua
-- Add enum value 1070 to 1102 in Hh3cLswTypeOfSlot by chenke
-- Add enum value 1103 to 1107 in Hh3cLswTypeOfSlot by lihaijun
-- Add enum value 1108 in Hh3cLswTypeOfSlot by zhaohonghai
-- Add enum value 1327 to 1328 in Hh3cLswTypeOfSlot by sunzhenxing
-- Add enum value 1329 to 1331 in Hh3cLswTypeOfSlot by lihaijun
-- Add enum value 1332 to 1371 in Hh3cLswTypeOfSlot by jiangyongjiang
-- Add enum value 1372 to 1373 in Hh3cLswTypeOfSlot by sunzhenxing
-- Modify enum value 1400, remove 1401 to 1410 in Hh3cLswTypeOfSlot by qizhenglin
-- Modify name of enum value 733 in Hh3cLswTypeOfSlot by chenke
-- Add enum value 225 to 232 under hh3cLswPortType by pantao
-- V3.67 2014-05-10 Add hh3cLswCpuTable by fangliwen
-- 2014-09-18 Add enum value 1109 to 1117 in Hh3cLswTypeOfSlot by chenke
-- Add enum value 1118 to 1119, 1375 to 1376 in Hh3cLswTypeOfSlot by lihaijun
-- Add enum value 1374, 1382 to 1385 in Hh3cLswTypeOfSlot by jiangyongjiang
-- Add enum value 1377 to 1381, 1386 to 1389 in Hh3cLswTypeOfSlot by sunzhenxing
-- Modify description of 1010 in Hh3cLswTypeOfSlot by chenke
-- Modify name of enum value 1320 to 1325, 1332 to 1371 in Hh3cLswTypeOfSlot by jiangyongjiang
-- ==================================================================
HH3C-LSW-DEV-ADM-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString, DateAndTime, TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Unsigned32, Integer32, Counter64
FROM SNMPv2-SMI
hh3clswCommon
FROM HH3C-OID-MIB
CounterBasedGauge64
FROM HCNUM-TC;
-- ==================================================================
--
-- ======================= definition begin =========================
--
-- ==================================================================
-- system information: hh3cLswDeviceAdmin
-- ==================================================================
hh3cLswDeviceAdmin MODULE-IDENTITY
LAST-UPDATED "200903190000Z"
ORGANIZATION
"Hangzhou H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team H3C Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip: 100085"
DESCRIPTION
"The latest baseline."
REVISION "200104040000Z"
DESCRIPTION
"The first baseline."
::= { hh3clswCommon 18 }
Hh3cLswTypeOfSlot ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The type of slots for lan switch devices."
SYNTAX INTEGER {
type-NULL(0), -- NULL
type-10OR100M(1), -- 10M/100M Ethernet Copper Interface Module
type-1000BASE-LX-SM(2), -- 1000BASE-X Module (SMF, LC)
type-1000BASE-SX-MM(3), -- 1000BASE-X Module (MMF, SC)
type-1000BASE-TX(4), --
type-100M-SINGLEMODE-FX(5), -- 100M Ethernet Single Mode Optical Interface Module
type-100M-MULTIMODE-FX(6), -- 100M Ethernet Multi-mode Optical Interface Module
type-100M-100BASE-TX(7), -- 100M Ethernet copper Interface Module(RJ45)
type-100M-HUB(8), -- 100M Base-TX transportation Interface Module
type-VDSL(9), -- VDSL
type-STACK(10), -- GigaStack Module
type-1000BASE-ZENITH-FX(11), -- 1000M Ethernet Single Mode Optical Interface Module(1550nm,70km,LC)
type-1000BASE-LONG-FX(12), -- 1000M Ethernet Single Mode Optical Interface Module(1550nm,40km,LC)
type-ADSL(13), -- ADSL
type-4T10OR100-4FX100SM(14), -- 4-Port Single Mode Optical Interface and 4-Port 10M/100M Ethernet Interface Module
type-4T10OR100-4FX100MM(15), -- 4-Port Multi-mode Optical Interface and 4-Port 10M/100M Ethernet Interface Module
type-VSPL(16), -- VDSL Board
type-ASPL(17), -- ADSL Board
type-1000M-SFP(18), -- 1000BASE-X SFP Module
type-LS82O2CM(19), -- ATM OC-3c/STM-1 Daughter Card (SFP)
type-LS82P2CM(20), -- POS OC-3c/STM-1 Daughter Card (SFP)
type-LS82O4GM(21), -- MPLS 1000BASE-X Daughter Card (GBIC)
type-LS82GB4C(22), -- 1000BASE-X Daughter Card (GBIC)
type-LS82GT4C(23), -- 1000BASE-T Daughter Card (RJ-45)
type-LS82ST4C(24), -- GigaStack Daughter Card
bOARD-TYPE-LS82DSPU(25), -- Dual Service Processing Module
bOARD-TYPE-LS81GP8U(26), -- Gigabit Ethernet Interface Process Module
bOARD-TYPE-LS82GT20(27), -- 1000BASE-T Module (RJ-45)
bOARD-TYPE-LS82FE48(28), -- 10/100BASE-TX Module (RJ-45)
type-LS82T24B(29), -- 24-Port 10/100BASE-TX (RJ-45) and 2 Port 1000BASE-X (GBIC) Module
type-LSB1SRPA(30), --
type-LSB1FT48A(31), -- 48-Port 10Base-T/100Base-TX Auto-sensing Fast Ethernet Board A
type-LSB1FT48B(32), -- 48-Port 10Base-T/100Base-TX Auto-sensing Fast Ethernet Board B
type-LSB1F48GA(33), -- 32-Port 10Base-T/100Base-TX Auto-sensing Fast Ethernet and 4-Port 1000Base-X (SFP) GE Board A
type-LSB1F48GB(34), -- 32-Port 10Base-T/100Base-TX Auto-sensing Fast Ethernet and 4-Port 1000Base-X (SFP) GE Board B
type-LSB1FP20A(35), -- 20-Port 100Base-FX (SFP) Fast Ethernet Board A
type-LSB1FP20B(36), -- 20-Port 100Base-FX (SFP) Fast Ethernet Board B
type-FT48A(37), -- 48-Port 10Base-T/100Base-TX Auto-sensing Fast Ethernet Interface Module
type-GP4U(38), -- 1000Base-X (SFP) GE Interface Module
type-GP2U(39), -- 1000Base-X (SFP) GE Interface Module
type-TGX1A(40), -- 10GBASE-R (XENPAK) Interface Module
type-1000BASE-LX-SM-IR-SC(41), -- 1000M Ethernet Single Mode Optical Interface Module(1310nm,10km,SC)
type-1000BASE-SX-MM-SR-SC(42), -- 1000M Ethernet Multi-mode Optical Interface Module(850nm,500m,SC)
type-1000BASE-T-RJ45(43), -- 1000M Ethernet Copper Interface Module(RJ45)
type-100BASE-FX-SM-IR-SC(44), -- 100M Ethernet Single Mode Optical SubCard
type-100BASE-FX-MM-SR-SC(45), -- 100M Ethernet Multi-mode Optical SubCard
type-GIGA-STACK-1M-PC(46), -- GigaStack Daughter SubCard
type-1000BASE-LX-SM-VLR-LC(47), -- 1000M Ethernet Single Mode Optical SubCard(1550nm,70km,LC)
type-1000BASE-LX-SM-LR-LC(48), -- 1000M Ethernet Single Mode Optical SubCard(1550nm,40km,LC)
type-100BASE-FX-SM-LR-SC(49), -- 100M Ethernet Single Mode Optical SubCard(1310nm,15km,SC)
type-1000BASE-X-GBIC(50), --
type-100M-SINGLEMODE-FX-LC(51), -- 100M Ethernet Single-mode Optical SubCard(1310nm,2km,SC)
type-100M-MULTIMODE-FX-LC(52), -- 100M Ethernet Multi-mode Optical SubCard(1310nm,2km,SC)
type-1000BASE-4SFP(53), -- 4-Port 1000BASE-FX Single Mode Fiber Optic Transceivers LR with SC Connector
type-1000BASE-4GBIC(54), -- 4-Port 1000BASE-X Module(GBIC)
type-1000BASE-FIXED-4SFP(55), -- 4-Port 1000BASE-FX Single Mode Fiber Optic Transceivers LR with SC Connector
type-1000BASE-FIXED-4GBIC(56), -- 4-Port 1000BASE-X Module(GBIC)
type-LSB1GP12A(57), -- 12-Port 1000Base-X (SFP) GE Board A
type-LSB1GP12B(58), -- 12-Port 1000Base-X (SFP) GE Board B
type-LSB1TGX1A(59), -- 1-Port 10GBASE-R (XENPAK) Board A
type-LSB1TGX1B(60), -- 1-Port 10GBASE-R (XENPAK) Board B
type-LSB1P4G8A(61), -- 4*155M POS Optical Interface Module 8-Port 1000Base-X (SFP) GE and 4-Port 155M POS Board A
type-LSB1P4G8B(62), -- 4*155M POS Optical Interface Module 8-Port 1000Base-X (SFP) GE and 4-Port 155M POS Board B
type-LSB1A4G8A(63), -- 4*155M ATM Optical Interface Module 8-Port 1000Base-X (SFP) GE and 4-Port 155M ATM Board A
type-LSB1A4G8B(64), -- 4*155M ATM Optical Interface Module 8-Port 1000Base-X (SFP) GE and 4-Port 155M ATM Board B
type-FT48C(65), -- 48-Port 10Base-T/100Base-TX Auto-sensing Fast Ethernet Board C
type-FP20(66), -- 20-port 100BASE-TX Module
bOARD-TYPE-LS81FT48(67), -- 48-Port 10/100BASE-TX Module (RJ-45)
bOARD-TYPE-LS81GB8U(68), -- 8-Port 1000BASE-X Module (GBIC)
bOARD-TYPE-LS81GT8U(69), -- 8-Port 1000BASE-T Module (RJ-45)
bOARD-TYPE-LS81FS24(70), -- 24-Port 100BASE-FX Module (SMF,MT-RJ)
bOARD-TYPE-LS81FM24(71), -- 24-Port 100BASE-FX Module (MMF,MT-RJ)
bOARD-TYPE-LS82GP20(72), -- Switching and Route Processing Board B (main board)
type-LSB1SRPB(73), --
type-LSB1F32GA(74), -- 32-Port Fast Ethernet + 4-Port Gigabit Ethernet module A
type-LSB1F32GB(75), -- 32-Port Fast Ethernet + 4-Port Gigabit Ethernet module B
type-LSB2FT48A(76), -- 48-Port 10Base-T/100Base-TX Auto-sensing Fast Ethernet Board A (ver 2)
type-LSB2FT48B(77), -- 48-Port 10Base-T/100Base-TX Auto-sensing Fast Ethernet Board B (ver 2)
type-LSB1GT12A(78), -- 12 Port 10/100/1000 Base-T Interface Module
type-LSB1GT12B(79), -- 12 Port 10/100/1000 Base-T Interface Module
type-PC4U(80), -- 4 Port155M POS(SFP) Interface Module
type-FT32A(81), -- 32 Port 10/100 Base-T FE Interface Module
type-GT4U(82), -- 4 Port 10/100/1000 Base-T Interface Module
bOARD-TYPE-LS83FP20A(83), --
bOARD-TYPE-LS82HGMU(84), --
type-LSB1GP8TB(85), --
type-LSB1GP8TC(86), --
type-LSB1GT8PB(87), --
type-LSB1GT8PC(88), --
type-LSB1FT48C(89), -- 48-Port 100Base-TX Ethernet Interface module C
type-LSB1FP20C(90), -- 20-Port 100Base-FX(SFP) Fast Ethernet Interface Module C
type-LSB1F32GC(91), -- 32-Port Fast Ethernet + 4-Port Gigabit Ethernet interface module C
type-LSB1GT12C(92), -- 12-Port 10/100/1000 Base-T Interface Module C
type-LSB1GP12C(93), -- 12-Port 1000Base-X(SFP) GE Interface Module C
type-LSB1P4G8C(94), -- 8-Port 1000Base-X(SFP) GE + 4-Port 155M POS Interface Module C
type-LSB1TGX1C(95), -- 1-Port 10GBase-R/X Ethernet XENPAK Optical Interface Module C
type-LSB1GT24B(96), -- 24-Ports 10/100/1000Base-T Ethernet Interface Module B
type-LSB1GT24C(97), -- 24-Ports 10/100/1000Base-T Ethernet Interface Module C
type-LSB1GP24B(98), -- 24-Ports 1000Base-X Ethernet Interface Module B
type-LSB1GP24C(99), -- 24-Ports 1000Base-X Ethernet Interface Module C
type-LSB1XP2B(100), -- 2-Port 10GBase-R/W Ethernet XFP Optical Interface Module B
type-LSB1XP2C(101), -- 2-Port 10GBase-R/W Ethernet XFP Optical Interface Module C
type-LSB1GV48B(102), -- 48-Ports 10/100/1000Base-T Ethernet Interface Module B
type-LSB1GV48C(103), -- 48-Ports 10/100/1000Base-T Ethernet Interface Module C
type-LSB1SRPC(104), -- Switching and Route Processing Board C
type-LSB1SRP1N0(105), -- Switching and Route Processing Board 1N0
type-LSB1SRP1N1(106), -- Switching and Route Processing Board 1N1
type-LSB1SRP1N2(107), -- Switching and Route Processing Board 1N2
type-GT24(108), --
type-GP24(109), --
type-XP2(110), --
type-GV48(111), --
type-LSG1GP8U(112), -- 8 Port 1000BASE Module (SFP)
type-LSG1GT8U(113), -- 8 Port 1000BASE-T Module (RJ45)
type-LSG1TG1U(114), -- 1 Port 10GBASE Module(XENPAK)
type-LSG1TD1U(115), -- 1 Port 10GBASE-CX4 Module(IB4X)
type-LSB2FT48C(116), -- 48-Ports 100Base-TX Ethernet Interface module C
type-LSB1GT48B(117), -- 48-Ports 10/100/1000Base-T Ethernet Interface Module B
type-LSB1GT48C(118), -- 48-Ports 10/100/1000Base-T Ethernet Interface Module C
type-LS81GT48(119), -- 48 Port Gigabit Ethernet Electric Interface Unit
type-LS81SRPG0(120), -- Salience III, Switch and Route Processing Board
type-LS81SRPG1(121), -- Salience III Plus
type-LS81SRPG2(122), -- Salience III Lite
type-LS81SRPG3(123), -- Salience III Edge
-- type-LS81SRPG(124), Switch And Route Processing Unit, Salience III. not used. not used.
type-SR01SRPUB(125), -- Switching and Route Processing Unit
type-SR01SRPUA(126), -- Switching and Route Processing Unit
type-SR01GP12L(127), -- 12-Port 1000Base-X Ethernet SFP Optical Interface Line Card(L)
type-SR01GP12W(128), -- 12-Port 1000Base-X Ethernet SFP Optical Interface Line Card(W)
type-SR01FT48L(129), -- 48-Port 10/100Base-TX Ethernet RJ45 Electrical Interface Line Card (L)
type-SR01FT48W(130), -- 48-Port 10/100Base-TX Ethernet RJ45 Electrical Interface Line Card (W)
type-SR01XK1W(131), -- 1-Port 10GBase-R Ethernet XENPAK Optical Interface Line Card (W)
type-SR01FP20W(132), -- 20-Port 100Base-FX Ethernet SFP Optical Interface Line Card (W)
type-SR01GT12W(133), -- 12-Port 10/100/1000Base-T Ethernet RJ45 Electrical Interface Line Card (W)
type-SR01F32GL(134), -- 32-Port 10/100Base-TX Ethernet RJ45 Electrical Interface + 4-Port 1000Base-X Ethernet SFP Optical interface Line Card (L)
type-SR01F32GW(135), -- 32-Port 10/100Base-TX Ethernet RJ45 Electrical Interface + 4-Port 1000Base-X Ethernet SFP Optical interface Line Card (W)
type-SR01GT8PL(136), -- 8-Port 10/100/1000Base-T Ethernet RJ45 Electrical Interface + 4-Port 1000Base-X Ethernet SFP Optical Line Card (L)
type-SR01GT8PW(137), -- 8-Port 10/100/1000Base-T Ethernet RJ45 Electrical Interface + 4-Port 1000Base-X Ethernet SFP Optical Line Card (W)
type-SR01P4G8W(138), -- 4-Port 155M POS Optical Interface + 8-Port 1000Base-X Ethernet SFP Optical Interface Line Card (W)
type-LSA1FP8U(139), -- 8 Ports 100Base-FX Ethernet SFP Card
type-LSB1SP4B(140), -- 4-Port OC-48 POS SFP Optical Interface Board B
type-LSB1SP4C(141), -- 4-Port OC-48 POS SFP Optical Interface Board C
type-LSB1UP1B(142), -- 1-Port OC-192 POS XFP Optical Interface Board B
type-LSB1UP1C(143), -- 1-Port OC-192 POS XFP Optical Interface Board C
type-LSB1XP4B(144), -- 4-Port 10GBase Ethernet XFP Optical Interface Board B
type-LSB1XP4C(145), -- 4-Port 10GBase Ethernet XFP Optical Interface Board C
type-SP4(146), -- 4-Port OC-48 POS SFP Optical Interface Module
type-UP1(147), -- 1-Port OC-192 POS XFP Optical Interface Module
type-XP4(148), -- 4-Port 10GBase Ethernet XFP Optical Interface Module
type-LS81VSNP(149), -- VerSatile Network Processing Board
type-LS81T12P(150), -- 12-Port 1000Base-T Gigabit Ethernet Interface(RJ45)+4-Port 1000BASE-X Gigabit Ethernet Optical Interface Board(SFP,LC)
type-LS81P12T(151), -- 12-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC)+4-Port 1000BASE-T Gigabit Ethernet Interface Board(RJ45)
type-LS81GP8UB(152), -- 8-Port 1000M Ethernet Optical Interface Board(SFP,LC),LC Connector
type-LS81FT48E(153), -- 48-Port 100M Ethernet Electrical Interface Switch Unit(RJ45)
type-LS81GP4UB(154), -- 4-Port 1000M Ethernet Optical Interface Board(SFP,LC)
type-LS81GT8UE(155), -- 8-Port 1000M Ethernet Electrical Interface Switch Unit (RJ45)
type-LS81GT48A(156), -- 48 Port Gigabit Ethernet Electric Interface Unit
type-LS81FP48(157), -- 48 Port 100M Ethernet Optical Interface Board(SFP,LC)
type-LSB1XK1B(158), -- 1-Port 10GBase-R Ethernet XENPAK Optical Interface Board B
type-LSB1XK1C(159), -- 1-Port 10GBase-R Ethernet XENPAK Optical Interface Board C
type-SR01SRPUC(160), -- Switching and Route Processing Unit C
type-SR01SRPUD(161), -- Switching and Route Processing Unit D
type-SR01SRPUE(162), -- Switching and Route Processing Unit E
type-LSB1SRP1N3(163), -- Switching and Route Process Unit, Clock Module
type-LSB1VP2B(164), -- 2*10G Resilient Packet Ring Interface Line Card (B)
type-LSB1NATB(165), -- NAT Service Processing Card (B)
type-LSB1VPNB(166), -- VPN Service Processing Card (B)
type-LSGP8P(167), -- 8-Port 1000M SFP Module
type-LSXK1P(168), -- 1-Port 10G Xenpak Module
type-LSXP2P(169), -- 2-Port 10G XFP Module
type-LS81FT48F(170), -- 48-Port 100M Ethernet Electrical Interface Switch Unit(RJ45)
type-LS81PT8G(171), -- 8 Port 1000BASE-X Gigabit Passive Optical Line Interface Board
type-LS81PT4G(172), -- 4 Port 1000BASE-X Gigabit Passive Optical Line Interface Board
type-LSSTK24G(173), -- 2-Port 24G Cascade Port Module
type-LS82GT20A(174), -- 20-Port 1000Base-T Gigabit Ethernet Electrical Interface Board(RJ45), BCM5697
type-LS82GP20A(175), -- 20-Port 1000BASE-X Gigabit Ethernet Optical Interface Board(SFP,LC), BCM5697
type-LS81TGX1C(176), -- 1-Port 10G Base-R Ethernet Board
type-VP2(177), -- 2*10G Resilient Packet Ring Interface Module
type-LSA1FB8U(178), -- 8-Port 100Base-Fx BIDI Ethernet Board
type-LS81T12PE(179), -- 12-Port 1000Base-T GE Interface+4-Port 1000BASE-X GE Optical Interface Board(SFP,LC)
type-LS81P12TE(180), -- 12-Port 1000BASE-X GE Optical Interface(SFP,LC)+4-Port 1000 BASE-T GE Interface Board(RJ45)
type-LSB1SRP2N0(181), -- Switching and Route Process Unit,12*LPU
type-LSB1SRP2N3(182), -- Switching and Route Process Unit, Clock Module
type-LSB1GV48DB(183), -- 48 Ports 1000Base-T Ethernet Interface Line Card with POE(DB)
type-LSB1FW8B(184), -- Firewall Service Processing Board with 8GE (B)
type-LSB1IPSEC8B(185), -- VPN Service Processing Board with 8GE (B)
type-LSB1IDSB(186), -- IDS Service Processing Board (B)
type-LSB1IPSB(187), -- IPS Service Processing Board (B)
type-LSB2FT48CA(188), -- 48 Ports 100Base-TX Ethernet Line Card (CA)
type-LSB1FP20CA(189), -- 20 Ports 100Base-FX Ethernet Interface Service Card (CA)
type-LSB1F32GCA(190), -- 32 Ports FE and 4 Ports GE Line Card(CA)
type-LSB1P4G8CA(191), -- 4 Ports OC-3c POS and 8 Ports GE Line Card(CA)
type-LSB1GT12CA(192), -- 12 Ports 1000Base-T Ethernet Interface Line Card(CA)
type-LSB1GT24CA(193), -- 24 Ports 1000Base-T Ethernet Interface Line Card(CA)
type-LSB1GP12CA(194), -- 12 Ports 1000Base Ethernet Optical Interface Service Card(CA)
type-LSB1GP24CA(195), -- 24 Ports 1000Base-X Ethernet Interface Line Card (CA)
type-LSB1GT8PCA(196), -- 8 Ports 1000Base-T Ethernet Interface & 4 Ports 1000Base-X Ethernet SFP Interface Line Card(CA)
type-LSB1XP2CA(197), -- 2-Port 10GBase-R/W Ethernet XFP Optical Interface Card(CA)
type-LSB1XK1CA(198), -- 10GBase-R Ethernet XENPAK Optical Interface Line Card(CA)
type-LSB1XP4CA(199), -- 4-Port 10GBase-R/X Ethernet Optical Interface Line Card(CA)
type-LSB1UP1CA(200), -- Single Port OC-192c POS XFP Optical Interface Card(CA)
type-LSB1SP4CA(201), -- 4-Port OC-48c POS SFP Optical Interface Card(CA)
type-LSB1VP2CA(202), -- 2*10G RPR Process Unit(CA)
type-SR01FT48WA(203), -- 48 Ports 100Base-TX Ethernet Line Card (WA)
type-SR01FP20WA(204), -- 20 Ports 100Base-FX Ethernet Interface Service Card (WA)
type-SR01F32GWA(205), -- 32 Ports FE and 4 Ports GE Line Card(WA)
type-SR01P4G8WA(206), -- 4 Ports OC-3c POS and 8 Ports GE Line Card(WA)
type-SR01GT12WA(207), -- 12 Ports 1000Base-T Ethernet Interface Line Card(WA)
type-SR01GT24WA(208), -- 24 Ports 1000Base-T Ethernet Interface Line Card(WA)
type-SR01GP12WA(209), -- 12 Ports 1000Base Ethernet Optical Interface Service Card(WA)
type-SR01GP24WA(210), -- 24 Ports 1000Base-X Ethernet Interface Line Card (WA)
type-SR01GT8PWA(211), -- 8 Ports 1000Base-T Ethernet Interface & 4 Ports 1000Base-X Ethernet SFP Interface Line Card(WA)
type-SR01XP2WA(212), -- 2-Port 10GBase-R/W Ethernet XFP Optical Interface Card(WA)
type-SR01XK1WA(213), -- 10GBase-R Ethernet XENPAK Optical Interface Line Card(WA)
type-SR01UP1WA(214), -- Single Port OC-192c POS XFP Optical Interface Card(WA)
type-SR01SP4WA(215), -- 4-Port OC-48c POS SFP Optical Interface Card(WA)
type-GP8U(216), -- 8-Port 1000Base-X SFP Optical Interface Module
type-LSEXP1P(217), -- Single 10G SFP Optical Interface Module
type-LSEXK1P(218), -- Single 10G XENPAK Interface Module
type-LSEXS1P(219), -- Single 10G STACK Interface Module
type-LS81GP48(220), -- 48-Port 1000M Ethernet Optical Interface Board(SFP,LC),LC Connector
type-LS81GT48B(221), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)
type-LS81T16P(222), -- 16-Port 1000Base-T Gigabit Ethernet Interface(RJ45) + 8-Port 1000BASE-X Gigabit Ethernet Optical Interface Board(SFP,LC)
type-LS81T32P(223), -- 32-Port 1000Base-T Gigabit Ethernet Interface(RJ45) + 16-Port 1000BASE-X Gigabit Ethernet Optical Interface Board(SFP,LC)
type-LS81TGX2(224), -- 2-Port 10GBASE Ethernet Interface Board(XFP,LC)
type-LS81TGX4(225), -- 4-Port 10GBASE Ethernet Interface Module(XFP,LC),XG
type-LSB1GV48DA(226), -- 48 Ports 1000Base-T Ethernet Interface Line Card with POE(DA)
type-SR01GV48VB(227), -- 48 Ports 1000Base-T Ethernet Interface Line Card with POE(VB)
type-LSB1GT24DB(228), -- 24 Ports 1000Base-T Ethernet Interface Line Card(DB)
type-LSB1GP24DB(229), -- 24 Ports 1000Base-X Ethernet Interface Line Card(DB)
type-LSB1GP24DC(230), -- 24 Ports 1000Base-X Ethernet Interface Line Card(DC)
type-LSB1FW8DB(231), -- 8-port 1000BASE-X (SFP) Firewall Service Card(DB)
type-LSB1IPSEC8DB(232), -- 8-port 1000BASE-X (SFP) IPSEC Service Card(DB)
type-SR01GT24VB(233), -- 24 Ports 1000Base-T Ethernet Interface Line Card(VB)
type-SR01GP24VC(234), -- 24 Ports 1000Base-X Ethernet Interface Line Card(VC)
type-SR01VP2WA(235), -- 2*10G RPR Process Unit(WA)
type-SR01FW8VB(236), -- 8-port 1000BASE-X (SFP) Firewall Service Card(VB)
type-SR01IPSEC8VB(237), -- 8-port 1000BASE-X (SFP) IPSEC Service Card(VB)
type-SR01NATL(238), -- NAT Service Processing Card (L)
type-SR01VPNL(239), -- VPN Service Processing Card (L)
type-LSB1GP24CB(240), -- 24 Ports 1000Base-X Ethernet Interface Line Card(CB)
type-LSB1GP48DB(241), -- 48-Port Gigabit Ethernet Optical Interface Line Card(DB)
type-LSB1XP2CB(242), -- 2-Port 10Gigabit Ethernet Optical Interface Card(CB)
type-XP4L(243), -- 4 Port 1000BASE Optic Interface Module (XFP)
type-LSB1XP4LDB(244), -- 4-Port 10GBase-R/W Ethernet XFP Optical Interface Line Speed Card(DB)
type-LSB1XP4LDC(245), -- 4-Port 10GBase-R/W Ethernet XFP Optical Interface Line Speed Card(DC)
type-AHP4(246), -- 2-Port OC-3 ATM and 2-Port OC-3/12 ATM Interface Module (SFP)
type-LSB1AHP4GCA(247), -- 2-Port OC-3 ATM and 2-Port OC-3/12 ATM and 8-Port 1000Base-X Ethernet Optical Interface Line Card(CA)
type-CLP4(248), -- 4 Ports OC-3/STM-1 CPOS Optical Interface Module(SFP)
type-LSB1CLP4GCA(249), -- 4 Ports OC-3/STM-1 CPOS Optical Interface and 4-Port 1000Base-X Ethernet Optical Interface Line Card(CA)
type-ET32(250), -- 32-Port Channelized E1/T1 Interface Module
type-LSB1ET32GCA(251), -- 32-Port Channelized E1/T1 Interface and 4-Port 1000Base-X Ethernet Optical Interface Line Card(CA)
type-LSB1IDSDB(252), -- Intrusion Detection Service Card(DB)
type-LSB1SRP2N1(253), -- Switching and Route Processing Board,8*LPU
bOARD-TYPE-LS82SRPB(254), --
bORAD-TYPE-LS83SRPC(255), --
type-Main(256), --
type-LSB1SRP2N2(257), -- Switching and Route Processing Board,5*LPU
type-LSB1NAMB(258), -- NAM Service Processing Card (B)
type-RSP2(259), -- 2*2.5G Resilient Packet Ring Interface
type-LSB1RSP2CA(260), -- 2*2.5G Resilient Packet Ring Interface Line Card(CA)
type-SR01XP4LVC(261), -- 4-Port 10GBase-R/W Ethernet XFP Optical Interface Line Speed Card(VC)
type-SR01AHP4GWA(262), -- 2-Port OC-3 ATM and 2-Port OC-3/12 ATM and 8-Port 1000Base-X Ethernet Optical Interface Line Card(WA)
type-SR01CLP4GWA(263), -- 4 Ports OC-3/STM-1 CPOS Optical Interface and 4-Port 1000Base-X Ethernet Optical Interface Line Card(WA)
type-SR01ET32GWA(264), -- 32-Port Channelized E1/T1 Interface and 4-Port 1000Base-X Ethernet Optical Interface Line Card(WA)
type-SR01IDSVB(265), -- Intrusion Detection Service Card(VB)
type-SR01SRPUF(266), -- Switching and Route Processing Board,12*LPU
type-SR01NAML(267), -- NAM Service Processing Card (L)
type-SR01RSP2WA(268), -- 2*2.5G Resilient Packet Ring Interface Line Card(WA)
type-LSPM1XP1P(269), -- 1-Port 10G XFP Module
type-LSPM1XP2P(270), -- 2-Port 10G XFP Module
type-LSPM1CX2P(271), -- 2-Port 10G CX4 Module
type-STK-1000BASE-T(272), -- Single Port 1000BASE-T Stack Ethernet Interface Card
--
-- 273 to 299 reserved for other product
--
--
-- 300 to 499 reserved for advanced switchs part I
--
type-LSB1SRP1M0(300), -- Switching and Route Process Unit,2*LPU or 3*LPU
type-LSB1SRP1M1(301), -- Switching and Route Process Unit
type-LSB1GP12DB(302), -- 12 Ports 1000Base Ethernet Optical Interface Service Card(DB)
type-LSB1GT12DB(303), -- 12 Ports 1000Base-T Ethernet Interface Line Card(DB)
type-LSB1XK1DB (304), -- 10GBase-R Ethernet XENPAK Optical Interface Line Card(DB)
type-LSB1XP2DB (305), -- 2-Port 10GBase-R/W Ethernet XFP Optical Interface Card(DB)
type-LSB1XP2DC (306), -- 2-Port 10GBase-R/W Ethernet XFP Optical Interface Card(DC)
type-LSB1GT48LDB(307), -- 48-Port Gigabit Ethernet RJ45 Electrical Interface Card (DB)
type-LSB1XP4TDB(308), -- 4-Port 10GBase-R/W Ethernet XFP Optical Interface Line Speed Test Card(DB)
type-LSB1XP4TDC(309), -- 4-Port 10GBase-R/W Ethernet XFP Optical Interface Line Speed Test Card(DC)
type-LSB1RSP2DC(310), -- 2*2.5G Resilient Packet Ring Interface Line Card(DC)
type-LSB1VP2DC (311), -- 2*10G Resilient Packet Ring Process Unit(DC)
type-LSB1XP4DB (312), -- 4-Port 10GBase-R/X Ethernet Optical Interface Line Card(DB)
type-LSB1SRP2E0(313), -- Switching and Route Process Unit,12*LPU
type-LSB1SRP2E1(314), -- Switching and Route Process Unit,8*LPU
type-LSB1SRP2E2(315), -- Switching and Route Process Unit,5*LPU
type-LSB1SRP2E3(316), -- Switching and Route Process Unit, Clock module
type-SR01SRPUQ(317), -- Switching and Route Processing Unit Q
type-AHP1(318), -- 1-Port OC-12c(3c)/STM-4(1) ATM Optical Interface Module(SFP)
type-AHP2(319), -- 2-Port OC-12c(3c)/STM-4(1) ATM Optical Interface Module(SFP)
type-CLP1(320), -- 1-Port OC-3/STM-1 CPOS Optical Interface Module(SFP)
type-CLP2(321), -- 2-Port OC-3/STM-1 CPOS Optical Interface Module(SFP)
type-ET16(322), -- 16-Port Channelized E1/T1 Interface Module
type-LSB1SRP1NA0(323), -- Switching and Route Process Unit,12*LPU
type-LSB1SRP1NA1(324), -- Switching and Route Process Unit,8*LPU
type-LSB1SRP1NA2(325), -- Switching and Route Process Unit,5*LPU
type-LSB1SRP1NA3(326), -- Switching and Route Process Unit, Clock module
type-SR01AHP1GWA(327), -- 1-Port OC-12c(3c)/STM-4(1) ATM Optical Interface and 4-Port 1000Base-X Ethernet Optical Interface Line Card(WA)
type-SR01AHP2GWA(328), -- 2-Port OC-12c(3c)/STM-4(1) ATM Optical Interface and 4-Port 1000Base-X Ethernet Optical Interface Line Card(WA)
type-SR01CLP1GWA(329), -- 1-Port OC-3/STM-1 CPOS Optical Interface and 4-Port 1000Base-X Ethernet Optical Interface Line Card(WA)
type-SR01CLP2GWA(330), -- 2-Port OC-3/STM-1 CPOS Optical Interface and 4-Port 1000Base-X Ethernet Optical Interface Line Card(WA)
type-SR01ET16GWA(331), -- 16-Port Channelized E1/T1 Interface and 4-Port 1000Base-X Ethernet Optical Interface Line Card(WA)
type-SR01GP12VB (332), -- 12-Port Gigabit Ethernet Optical Interface Card(VB)
type-SR01XK1VB(333), -- 1-Port 10Gigabit Ethernet Optical Interface Card(VB)
type-SR01XP2VC(334), -- 2-Port 10GBase-RW Ethernet XFP Optical Interface Line Card(VC)
type-SR01XP4LVB(335), -- 4-Port 10GBase-R/W Ethernet XFP Optical Interface Line Speed Card(VB)
type-SR01SRPUEA(336), -- Switching and Route Process Unit£¬Clock Module
type-LSB1SRP1N4(337), -- Switching and Route Process Unit, 12*LPU
type-LSB1SRP1N5(338), -- Switching and Route Process Unit, 8*LPU
type-LSB1SRP1N6(339), -- Switching and Route Process Unit, 5*LPU
type-LSB1SRP1N7(340), -- Switching and Route Process Unit, Clock Module
type-LSB1SRP2N4(341), -- Switching and Route Process Unit, 12*LPU
type-LSB1SRP2N5(342), -- Switching and Route Process Unit, 8*LPU
type-LSB1SRP2N6(343), -- Switching and Route Process Unit, 5*LPU
type-LSB1SRP2N7(344), -- Switching and Route Process Unit, Clock Module
type-LSB1SRP1NA4(345), -- Switching and Route Process Unit, 12*LPU
type-LSB1SRP1NA5(346), -- Switching and Route Process Unit, 8*LPU
type-LSB1SRP1NA6(347), -- Switching and Route Process Unit, 5*LPU
type-LSB1SRP1NA7(348), -- Switching and Route Process Unit, Clock Module
type-LSB2GV48DA(349), -- 48-Ports 1000Base-T Ethernet Interface Line Card with POE(DA)
type-LSB1RGP2GDB(350), -- 2-Port GE RPR and 8-Port GE Optical Interface Service Card(DB)
type-LSB1RGP4GDB(351), -- 4-Port GE RPR and 8-Port GE Optical Interface Service Card(DB)
type-LSB2GP24DB(352), -- 24-Port 1000BASE-X Interface Module(DB),(SFP,LC)
type-LSB2GP24DC(353), -- 24-Port 1000BASE-X Interface Module(DC),(SFP,LC)
type-LSB2GT24DB(354), -- 24-Port 10/100/1000BASE-T Interface Module(DB),(RJ45)
type-LSB2FW8DB (355), -- 8-Port 1000BASE-X Interface Firewall Service Module(DB),(SFP,LC)
type-LSB2IPSEC8DB(356), -- 8-Port 1000BASE-X Interface IPSEC Service Module(DB),(SFP,LC)
type-LSB2GV48DB(357), -- 48-Port 10/100/1000BASE-T Interface Module(DB),(PoE,RJ45)
type-RGP2(358), -- 2-Port GE Resilient Packet Ring Interface Module
type-RGP4(359), -- 4-Port GE Resilient Packet Ring Interface Module
type-SR02FW8VB(360), -- 8-Port 1000BASE-X Interface Firewall Service Module(VB),(SFP,LC)
type-SR02IPSEC8VB(361), -- 8-Port 1000BASE-X Interface IPSEC Service Module(VB),(SFP,LC)
type-LSB2SRP1N0(362), -- Switching and Route Process Unit, 12*LPU
type-LSB2SRP1N1(363), -- Switching and Route Process Unit, 8*LPU
type-LSB2SRP1N2(364), -- Switching and Route Process Unit, 5*LPU
type-LSB2SRP1N3(365), -- Switching and Route Process Unit, Clock module
type-LSB2SRP1N4(366), -- Switching and Route Process Unit, 12*LPU
type-LSB2SRP1N5(367), -- Switching and Route Process Unit, 8*LPU
type-LSB2SRP1N6(368), -- Switching and Route Process Unit, 5*LPU
type-LSB2SRP1N7(369), -- Switching and Route Process Unit, Clock module
type-SR02SRPUE (370), -- Switching and Route Process Unit, Clock module
type-SR01LN1BQH0(371), -- Single XG Service Board(BQH)
type-SR01DXP1L (372), -- 1-Port 10GBASE-R/W Ethernet Optical Interface Card,(XFP,LC)
type-SR01DGP10L(373), -- 10-Port 1000BASE-X Optical Interface Card,(SFP,LC)
type-SR01DRSP2L(374), -- 2-Port 2.5G RPR Optical Interface Card,(SFP,LC)
type-SR01DRUP1L(375), -- 1-Port 10G RPR Optical Interface Card,(XFP,LC)
type-SR01DGP20R(376), -- 20-Port 1000BASE-X Optical Interface Card,(SFP,LC)
type-SR01DPLP8L(377), -- 8-Port 155M POS Optical Interface Card,(SFP,LC)
type-SR01DXP2R (378), -- 2-Port 10GBASE-R/W Ethernet Optical Interface Card,(XFP,LC)
type-LSB1FW2A0(379), -- Gigabit Firewall Card, 4 Gigabit Port for Management
type-LSB1GP48LDB(380), -- 48-Port Line Rate Gigabit Ethernet Optical Interface Card(DB)
type-SR01LN1BNA0(381), -- Single XG Service Board(BNA)
type-SR01LN2BQH0(382), -- Dual XG Service Board(BQH)
type-SR01LN2BNA0(383), -- Dual XG Service Board(BNA)
type-SR01DGT20R(384), -- 20-Port 10/100/1000BASE-T Electrical Interface Card,(RJ45)
type-SR01DPSP4L(385), -- 4-Port 2.5G POS Optical Interface Card(SFP,LC)
type-SR01DPUP1L(386), -- 1-Port 10G POS Optical Interface Card,(XFP,LC)
type-SR01DPL2G6L(387), -- 2-Port 155M POS Optical Interface(SFP,LC)+6-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-SR01DPH2G6L(388), -- 2-Port 622M POS Optical Interface(SFP,LC)+6-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-SR01DPS2G4L(389), -- 2-Port 2.5G POS Optical Interface(SFP,LC)+4-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-SR01DCL1G8L(390), -- 1-Port 155M CPOS Optical Interface(SFP,LC)+8-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-SR01DCL2G8L(391), -- 2-Port 155M CPOS Optical Interface(SFP,LC)+8-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-SR01DET8G8L(392), -- 8-Port E1/T1 Electrical Interface(RJ45)+8-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-SR02SRP2E3(393), -- Switching and Route Process Unit, Clock Module
type-SR02SRP1E3(394), -- Switching and Route Process Unit, Clock Module
type-SR02SRP1M3(395), -- Switching and Route Process Unit, Clock Module
type-SR01DQCP4L(396), -- 4-Port OC-3c/OC-12c/OC-48c POS/GE Optical Interface Card,(SFP,LC)
type-SR01DTCP8L(397), -- 8-Port OC-3c/OC-12c POS/GE Optical Interface Card,(SFP,LC)
type-LSB1AFC1A0(398), -- Anomaly Flow Cleaner Board
type-LSB1SSL1A0(399), -- SSL VPN High-end Board
type-IMNAM(400), -- Net Analysis Service Processing Board
type-IMNAT(401), -- Network Address Translation Service Processing Board
type-PICAHP1L(402), -- 1-Port OC-12c/STM-4c ATM Optical Interface Card,(SFP,LC)
type-PICALP4L(403), -- 4-Port OC-3c/STM-1c ATM Optical Interface Card,(SFP,LC)
type-PICCHP4L(404), -- 4-Port 622M CPOS Optical Interface Card(SFP,LC)
type-PICCHS1G4L(405), -- 1-Port 622M CPOS Optical Interface(Channelized to E3/T3)+4-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-PICCLS4G4L(406), -- 4-Port 155M CPOS Optical Interface(Channelized to E3/T3)+4-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-PICCSP1L(407), -- 1-Port 2.5G CPOS Optical Interface Card(SFP,LC)
type-LSB1ACG1A0(408), -- Application Control Gateway Board
type-LST1MRPNC1(409), -- Management and Route Process Unit
type-LST1SF18B1(410), -- S12518 Switch Fabric Card
type-LST1SF08B1(411), -- S12508 Switch Fabric Card
type-LST1GT48LEC1(412), -- 48-Port 10/100/1000BASE-T Interface Module(LEC),(RJ45)
type-LST1GP48LEC1(413), -- 48-Port 1000BASE-X Interface Module (LEC),(SFP,LC)
type-LST1XP4LEC1(414), -- 4-Port 10GBASE-R/W Interface Module (LEC),(XFP,LC)
type-LST1XP8LEC1(415), -- 8-Port 10GBASE-R/W Interface Module (LEC),(XFP,LC)
type-LSR1SRP2B1(416), -- Switching and Route Process Unit
type-LSR1SRP2C1(417), -- Switching and Route Process Unit
type-LSR1SRP2B2(418), -- Switching and Route Process Unit
type-LSR1SRP2C2(419), -- Switching and Route Process Unit
type-LSR1GT24LEC1(420), -- 16-Port 10/100/1000BASE-T Interface and 8-port 1000BASE-T/1000BASE-X Combo Interface Service Card(LEC)
type-LSR1GP24LEB1(421), -- 16-Port 1000BASE-X Interface and 8-port 1000BASE-T/1000BASE-X Combo Interface Service Card(LEB)
type-LSR1GP24LEC1(422), -- 16-Port 1000BASE-X Interface and 8-port 1000BASE-T/1000BASE-X Combo Interface Service Card(LEC)
type-LSR1GT48LEB1(423), -- 48-Port 10/100/1000BASE-T Interface Module(LEB),(RJ45)
type-LSR1GT48LEC1(424), -- 48-Port 10/100/1000BASE-T Interface Module(LEC),(RJ45)
type-LSR1GP48LEB1(425), -- 48-Port 1000BASE-X Interface Module(LEB),(SFP,LC)
type-LSR1GP48LEC1(426), -- 48-Port 1000BASE-X Interface Module(LEC),(SFP,LC)
type-LSR2GV48REB1(427), -- 48-Port 10/100/1000BASE-T Interface Module(REB),(PoE,RJ45)
type-LSR1XP2LEB1(428), -- 2-Port 10GBase-R/W Interface Module (LEB),(XFP,LC)
type-LSR1XP2LEC1(429), -- 2-Port 10GBase-R/W Interface Module (LEC),(XFP,LC)
type-LSR1XP4LEB1(430), -- 4-Port 10GBase-R/W Interface Module (LEB),(XFP,LC)
type-LSR1XP4LEC1(431), -- 4-Port 10GBase-R/W Interface Module (LEC),(XFP,LC)
type-IMFW(432), -- Firewall Service Processing Board
type-LSB1LB1A0(433), -- Load Balance Board
type-LSB1IPS1A0(434), -- Gigabit IPS Card
type-LST1GT48LEB1(435), -- 48-Port 10/100/1000BASE-T Interface Module(LEB),(RJ45)
type-LST1GP48LEB1(436), -- 48-Port 1000BASE-X Interface Module (LEB),(SFP,LC)
type-LST1XP4LEB1(437), -- 4-Port 10GBASE-R/W Interface Module (LEB),(XFP,LC)
type-LST1XP8LEB1(438), -- 8-Port 10GBASE-R/W Interface Module (LEB),(XFP,LC)
type-LST1XP32REB1(439), -- 32-Port 10GBASE-R Interface Module (REB),(SFP+,LC)
type-LST1XP32REC1(440), -- 32-Port 10GBASE-R Interface Module (REC),(SFP+,LC)
type-LSR1FW2A1(441), -- Firewall Service Module
type-LSR1SSL1A1(442), -- SSL VPN Service Module
type-SR01DET32G2L(443), -- 32-Port E1/T1 75ohm Electrical Interface(DB56 Female Socket)+2-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-LSR1GP24LEF1(444), -- 16-Port 1000BASE-X Interface and 8-port 1000BASE-T/1000BASE-X Combo Interface Service Card(LEF)
type-LSR1XP4LEF1(445), -- 4-Port 10GBASE-R/W Interface Module (LEF),(XFP,LC)
type-LSR1LB1A1(446), -- Load Balance Module
type-LSR1NSM1A1(447), -- NetStream Module
type-LSR1ACG1A1(448), -- Application Control Gateway Service Module
type-LSR1IPS1A1(449), -- Intrusion Protection System Service Module
type-LSR2GP24LEB1(450), -- 16-Port 1000BASE-X Interface and 8-port 1000BASE-T/1000BASE-X Combo Interface Service Card(LEB)
type-LSR2GT24LEB1(451), -- 16-Port 10/100/1000BASE-T Interface and 8-port 1000BASE-T/1000BASE-X Combo Interface Service Card(LEB)
type-LSR2GT48LEB1(452), -- 48-Port 10/100/1000BASE-T Interface Module(LEB),(RJ45)
type-SPC-GP24L(453), -- 24-Port 1000BASE-X Interface Service Card,(SFP,LC)
type-SPC-GT48L(454), -- 48-Port 10/100/1000BASE-T Interface Module,(RJ45)
type-SPC-GP48L(455), -- 48-Port 1000BASE-X Interface Module,(SFP,LC)
type-SPC-XP2L(456), -- 2-Port 10GBASE-R/W Interface Service Card,(XFP,LC)
type-SPC-XP4L(457), -- 4-Port 10GBase-R/W Interface Module,(XFP,LC)
type-SR06SRP2E3(458), -- SDI,Routing Switch Processing Board
type-SPE-2010-E(459), -- SDI,Single XG Service Board
type-SPE-2020-E(460), -- SDI,Dual XG Service Board
type-SPC-XP4L-S-SDI(461), -- SDI 4-Port 10GBase-R/W Interface Module,(XFP,LC)
type-SPC-GT48L-SDI(462), -- SDI 48-Port 10/100/1000BASE-T Interface Module,(RJ45)
type-SPC-GP48L-S-SDI(463), -- SDI 48-Port 1000BASE-X Interface Module,(SFP,LC)
type-SR02OPMA0(464), -- Single Mode 1310&1550nm Optical Protect Board(LC)
type-LSR1XP16REB1(465), -- 16-Port 10GBASE-R Interface Module (REB),(SFP+,LC)
type-LSR1GP48LEF1(466), -- 48-Port 1000BASE-X Interface Module (LEF),(SFP,LC)
type-LST1GP48LEF1(467), -- 48-Port 1000BASE-X Interface Module (LEF),(SFP,LC)
type-LST1XP8LEF1(468), -- 8-Port 10GBASE-R/W Interface Module (LEF),(XFP,LC)
type-SPE-1010-II(469), -- Single XG Service Board-II
type-SPE-1010-E-II(470), -- Enhanced Single XG Service Board-II
type-SPE-1020-II(471), -- Double XG Service Board-II
type-SPE-1020-E-II(472), -- Enhanced Double XG Service Board-II
type-LST1FW2A1(473), -- Firewall Board (LEC)
type-LST1NSM1A1(474), -- NetStream Service Board (LEC)
type-LST1LB1A1(475), -- Load Balancing Board (LEC)
type-LST1ACG1A1(476), -- Application Control Gateway Board Module (LEC)
type-LST1IPS1A1(477), -- Gigabit Intrusion Prevention System Module
type-LSR1DRUP1L1(478), -- 1-Port OC-192c/STM-64c RPR Optical Interface Card,(XFP,LC)
type-LSR1DPUP1L1(479), -- 1-Port OC-192c/STM-64c POS Optical Interface Card,(XFP,LC)
type-LSR1DPSP4L1(480), -- 4-Port OC-48c/STM-16c POS Optical Interface Card,(SFP,LC)
type-LSR1DTCP8L1(481), -- 8-Port OC-3c/OC-12c POS/GE Optical Interface Card,(SFP,LC)
type-LSR1DXP1L1(482), -- 1-Port 10GBASE-R/W Ethernet Optical Interface Card,(XPF,LC)
type-LSR1DGP10L1(483), -- 10-Port 1000BASE-X Optical Interface Card,(SFP,LC)
type-LSR1LN1BNL1(484), -- Single Service Processing Board
type-LSR1LN2BL1(485), -- Dual Serivice Processing Board
type-LSR1SRP2D1(486), -- Switching and Route Process Unit With Clock
type-IM-NAT-II(487), -- Network Address Translation Service Processing Board,II
type-IM-NAM-II(488), -- Net Analysis Service Processing Board,II
type-CR-MRP-I(489), -- Management and Route Unit With OAM Module and Clock Module
type-CR-SF18C(490), -- Switch Fabric Card
type-CR-SF08C(491), -- Switch Fabric Card
type-CR-SPC-XP8LEF(492), -- 8-Port 10GBASE-R/W Interface Module,(XFP,LC)
type-CR-SPC-XP4LEF(493), -- 4-Port 10GBASE-R/W Interface Module,(XFP,LC)
type-CR-SPC-GP48LEF(494), -- 48-Port 1000BASE-X Interface Module,(SFP,LC)
type-CR-SPC-GT48LEF(495), -- 48-Port 10/100/1000BASE-T Interface Module
type-CR-SPE-3020-E(496), -- Double XG Service Board (Enhanced)
type-CR-SPC-PUP4L-E(497), -- 4-Port 10G POS Optical Interface Module,(XFP,LC)
type-LST1SF08C1(498), -- Switch Fabric Card
type-LST1SF18C1(499), -- Switch Fabric Card
--
-- 500 to 699 reserved for secondary switchs part I
--
type-LS81GP16TM(500), -- 12-port 1000BASE-X SFP Interface and 4-port 1000BASE-T/1000BASE-X Combo Interface Metro Switch and Route Processing Board
type-LS81VP4C(501), -- 4-port 1000BASE-X SFP Interface Virtual Daughter Card
type-LS8M1PT8P0(502), -- 8-Port 1000BASE-PX Optical Line Interface Board, SFP Req
type-LS8M1PT8GB0(503), -- 8-Port 1000BASE-PX20 Gigabit Passive Optical Line Interface Board B(20km, SFF), SC Connector
type-LS8M1PT4GB0(504), -- 4-Port 1000BASE-PX20 Gigabit Passive Optical Line Interface Board B(20km, SFF), SC Connector
type-LS81GP2R(505), -- 2-Port 1000M Ethernet Optical Interface RPR Board
type-LS81GP4R(506), -- 4-Port 1000M Ethernet Optical Interface RPR Board
type-LS81IPSECA(507), -- IPSec Service Board
type-LS81FWA(508), -- Firewall Service Board
type-LS82VSNP(509), -- Versatile Network Processing Service Module (PBR/NAT/NetStream) with 12-port 1000BASE-X SFP, XGBUS Uplink
type-LSQ1GV48SA(510), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)
type-LSQ1SRPB(511), -- Salience VI
type-LSQ1SRP2XB(512), -- Salience VI-10GE
type-LSQ1SRP1CB(513), -- Salience VI-Turbo
type-LSQ1FV48SA(514), -- 48-Port 100M Ethernet Electrical Interface Switch Unit(RJ45)
type-LSD1MPUA(515), -- Main Control Unit
type-LSD1GP20A0(516), -- 16-port 1000BASE-X SFP Interface and 4-port 1000BASE-T/1000BASE-X Combo Interface Line Card
type-LSD1GP20TA0(517), -- 16-port 1000BASE-X SFP Interface and 4-port 1000BASE-T/1000BASE-X Combo Interface and 16 1000BASE-T Interface Line Card
type-LSD1GP36A0(518), -- 32-port 1000BASE-X SFP Interface and 4-port 1000BASE-T/1000BASE-X Combo Interface Line Card
type-LSD1GP20XA0(519), -- 16-port 1000BASE-X SFP Interface and 4-port 1000BASE-T/1000BASE-X Combo Interface and 2-port 10GBASE-X XFP Interface Line Card
type-LSD1GP20EA0(520), -- 16-port 1000BASE-X SFP Interface and 4-port 1000BASE-T/1000BASE-X Combo Interface and 2-port GE RPR Interface Line Card
type-LSD1GP20RA0(521), -- 16-port 1000BASE-X SFP Interface and 4-port 1000BASE-T/1000BASE-X Combo Interface and 2-port OC48 RPR Interface Line Card
type-LSD1GP16A0(522), -- 16-port 1000BASE-X SFP Ethernet Interface SubCard
type-LSD1GT16A0(523), -- 16-port 1000BASE-T Ethernet Interface SubCard
type-LSD1XP2A0(524), -- 2-port 10GBASE-X XFP Ethernet Interface SubCard
type-LSD1EP2A0(525), -- 2-port 1000BASE-T Ethernet RPR Interface SubCard
type-LSD1RP2A0(526), -- 2-port OC48 RPR Interface SubCard
type-LSQ1GV48SC(527), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)-POE
type-LSQ1FP48SA(528), -- 48 Port 100M Ethernet Optical Interface Board(SFP,LC)
type-LSQ1GP24SC(529), -- 24 Port 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSQ1GT24SC(530), -- 24-Port 1000BASE-T Ethernet Interface Board (RJ45)
type-LSQ1TGX2SC(531), -- 2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1GP12EA(532), -- 12-Port 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSQ1TGX1EA(533), -- 1-Port 10GBASE Ethernet Optical Interface Module(XFP,LC)
type-LSQ1P24XGSC(534), -- 24-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC)+2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1T24XGSC(535), -- 24-Port 1000BASE-T Gigabit Ethernet Interface(RJ45)+2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LS81TGX1B(536), -- 1 Port 10GBase-R Ethernet Interface Board(XENPAK,SC)
type-LSQ1PT4PSC0(537), -- 4-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-LS81SRPG13(538), -- Salience V, Switch and Route Processing Board
type-LS81SRPG14(539), -- Salience V Edge
type-LS81SRPG15(540), -- Salience V Plus
type-LSQ1GP48SC0(541), -- 48-Port 1000BASE Ethernet Optical Interface Board(SFP,LC)
type-LSQ1GP12SC0(542), -- 12-Port 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSD1SRPA0(543), -- Salience VIII 160
type-LSD1SRPB0(544), -- Salience VIII 480
type-LSD1SRPC0(545), -- Salience VIII 800
type-LSD1GT16PES0(546), -- 16-Port 10/100/1000BASE-T and 8-Port 100/1000BASE-X SFP Interface Card
type-LSD1GP24ES0(547), -- 24-Port 1000BASE-X Ethernet SFP Interface Card
type-LSD1GT24XES0(548), -- 24-Port 10/100/1000BASE-T and 2-port 10GBASE-X Ethernet XFP Optical Interface Card
type-LSD1GP24XES0(549), -- 24-Port 1000BASE-X Ethernet SFP interface and 2-port 10GBASE-X Ethernet XFP Optical Interface Card
type-LSD1XP2ES0(550), -- 2-Port 10GBASE-X Ethernet XFP Optical Interface Card
type-LSD1GP48ES0(551), -- 48-Port 1000BASE-X Ethernet SFP Interface Card
type-LSQ1MPUA0(552), -- Master Process Board
type-LSQ1MPUA1(553), -- Master Process Unit
type-LSQ1FWBSC0(554), -- Gigabit Firewall Card£¬4 Gigabit Port for Management
type-LSQ1PT8PSC0(555), -- 8-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-LSQ1PT16PSC0(556), -- 16-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-SA11MPUA0(557), -- SmartEngine I-Lite
type-SA11MPUB0(558), -- SmartEngine I
type-LSQ1AFCBSC0(559), -- Anomaly Flow Cleaner Board
type-LSQ1MPUB0(560), -- Salience VI-Lite
type-LSQ1MPUB1(561), -- Salience VI-Lite
type-LSQ1PT4PSC1(562), -- 4-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-LSQ1PT8PSC1(563), -- 8-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-LSQ1PT16PSC1(564), -- 16-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-LSQ1FP48USA0(565), -- 48-Port 100M Ethernet Optical Interface Switch Unit(SFP,LC)
type-LSQ1FP48USA1(566), -- 48-Port 100M Ethernet Optical Interface Switch Unit(SFP,LC)
type-LSQ1FV48USA0(567), -- 48-Port 100M Ethernet Electrical Interface Switch Unit(RJ45),PoE
type-LSQ1FV48USA1(568), -- 48-Port 100M Ethernet Electrical Interface Switch Unit(RJ45),PoE
type-LSQ1SRPD0(569), -- Switch and Route Processing Unit, Salience VI-Plus
type-LSQ1CGP24TSC0(570), -- Switching and Routing Processing Unit with 24 1000BASE-X Gigabit Ethernet Optical Ports,including 8 Combo Ports,SFP Req.
type-LSQ1GP24TSC0(571), -- 16-Port 1000BASE-X Gigabit Ethernet Optical(SFP,LC) And 8-Port 10/100/1000BASE-T RJ45/1000BASE-X SFP Combo Interface Board
type-LSQ1ACGASC0(572), -- Application Control Gateway Board
type-LSD1XP1ES0(573), -- 1-Port 10GBASE-X Ethernet XFP Optical Interface Card
type-LSD1GP12ES0(574), -- 12-Port 1000BASE-X Ethernet SFP Interface Card
type-LSQ1SRP12GB0(575), -- Switch And Route Processing Unit with 12 1000BASE Ethernet Optical Interfaces(SFP,LC),Salience VI-GE
type-LSQ1GV40PSC0(576), -- 40-Port 10/100/1000BASE-T Electrical(RJ45) And 8-Port 1000BASE-X Optical Ethernet Interface Board(SFP,LC),PoE
type-LSQ1FWBSC1(577), -- Firewall Board
type-LSQ1NSMSC0(578), -- NetStream Board
type-LSQ1NSMSC1(579), -- NetStream Board
type-LSQ1AFDBSC0(580), -- Anomaly Flow Detector Board
type-LS81MPUB(581), -- Salience IV
type-LS81FP48XL(582), -- 48-Port 100M Ethernet Optical Interface Module,(SFP,LC)
type-LS81FT48XL(583), -- 48-Port 10/100M Ethernet Electrical Interface Module(RJ45)
type-LS81GP12XL(584), -- 12-Port 1000/100M Ethernet Optical Interface Module(SFP,LC)
type-LS81GP24XL(585), -- 24-Port 1000/100M Ethernet Optical Interface Module(SFP,LC)
type-LS81GP48XL(586), -- 48-Port 1000/100M Ethernet Optical Interface Module(SFP,LC)
type-LS81GT24XL(587), -- 24-Port 10/100/1000M Ethernet Electrical Interface Module(RJ45)
type-LS81GT48XL(588), -- 48-Port 10/100/1000M Ethernet Electrical Interface Module(RJ45)
type-LS81TGX2XL(589), -- 2-Port 10GBASE Ethernet Optical Interface Module(XFP,LC)
type-LSQ1GV48SD0(590), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45),PoE
type-LSQ1GP48EB0(591), -- 48-Port Enhanced 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSQ1IPSSC0(592), -- Gigabit IPS Card
type-LSQ1GV48SD1(593), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45),PoE
type-LSQ1GP48SD0(594), -- 48-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC) Interface Board
type-LSQ1GP48SD1(595), -- 48-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC) Interface Board
type-LSQ1SRPA0(596), -- Salience VI-Smart
type-LSQ1SRPA1(597), -- Salience VI-Smart
type-LSQ2FP48SA0(598), -- 48 Port 100M Ethernet Optical Interface Board(SFP,LC)
type-LSQ2FP48SA1(599), -- 48 Port 100M Ethernet Optical Interface Board(SFP,LC)
type-LSQ2FT48SA0(600), -- 48-Port 100M Ethernet Electrical Interface Switch Unit(RJ45)
type-LSQ2FT48SA1(601), -- 48-Port 100M Ethernet Electrical Interface Switch Unit(RJ45)
type-LSQ1GV24PSC0(602), -- 24-Port 10/100/1000BASE-T Electrical(RJ45) Interface Board,including 4 Combo Ports,SFP Req,PoE,No Spell
type-LSQ1GV24PSC1(603), -- 24-Port 10/100/1000BASE-T Electrical(RJ45) Interface Board,including 4 Combo Ports,SFP Req,PoE,No Spell
type-LSQ1CGV24PSC0(604), -- Switching and Routing Processing Unit with 24 10/100/1000BASE-T Electrical Ports(RJ45),including 4 Combo Ports,SFP Req,PoE,No Spell
type-LSQ1CGV24PSC1(605), -- Switching and Routing Processing Unit with 24 10/100/1000BASE-T Electrical Ports(RJ45),including 4 Combo Ports,SFP Req,PoE,No Spell
type-LSQ1GP24TEB0(606), -- 16-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC)+8-Port Combo Interface Board
type-LSQ1GP24TEB1(607), -- 16-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC)+8-Port Combo Interface Board
type-LSQ1GP24TSD0(608), -- 16-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC)+8-Port Combo Interface Board
type-LSQ1GP24TSD1(609), -- 16-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC)+8-Port Combo Interface Board
type-LSQ1GP24TXSD0(610), -- 16-Port GE Optical Interface(SFP,LC)+8-Port Combo Interface+2-Port 10GE Optical Interface Board(XFP,LC)
type-LSQ1GP24TXSD1(611), -- 16-Port GE Optical Interface(SFP,LC)+8-Port Combo Interface+2-Port 10GE Optical Interface Board(XFP,LC)
type-LSQ1TGX2EB0(612), -- 2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1TGX2EB1(613), -- 2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1TGX2SD0(614), -- 2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1TGX2SD1(615), -- 2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1TGX4SD0(616), -- 4-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1TGX4SD1(617), -- 4-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1TGX8SD0(618), -- 8-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1TGX8SD1(619), -- 8-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1GP48EB1(620), -- 48-Port Enhanced 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSQ1TGX4EB0(621), -- 4-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1TGX4EB1(622), -- 4-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSQ1GP12SC3(623), -- 12-Port 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSQ1GP24TSC3(624), -- 16-Port 1000BASE-X Gigabit Ethernet Optical(SFP,LC) And 8-Port 10/100/1000BASE-T RJ45/1000BASE-X SFP Combo Interface Board
type-LSQ1GP48SC3(625), -- 48-Port 1000BASE Ethernet Optical Interface Board(SFP,LC)
type-LSQ1GV48SC3(626), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45),PoE
type-LSQ1MPUA3(627), -- Master Process Board
type-LSQ1SRP1CB3(628), -- Salience VI-Turbo
type-LSQ1SRPA3(629), -- Salience VI-Smart
type-LSQ2FP48SA3(630), -- 48 Port 100M Ethernet Optical Interface Board(SFP,LC)
type-LSQ2FT48SA3(631), -- 48-Port 100M Ethernet Electrical Interface Switch Unit(RJ45)
type-LSQ1MPUB3(632), -- Salience VI-Lite
type-LSQ1CGP24TSC3(633), -- Switching and Routing Processing Unit with 24 1000BASE-X Gigabit Ethernet Optical Ports,including 8 Combo Ports,SFP Req.
type-LSQ1MPUB4(634), -- Salience VI-Lite
type-LSQ1SRPD4(635), -- Salience VI-Plus
type-LSQ1SSLSC0(636), -- SSL VPN Service Board(B)
type-LSQ1LBSC0(637), -- Gigabit Load Balancing Card
type-LSQ1NAT24SC0(638), -- NAT/NetStream-Supported Line Processing Unit with 24 10/100/1000BASE-T Electrical Ports(RJ45),including Combo Ports,Upgradeable to PoE
type-LSQ1SRP12GB4(639), -- Salience VI-GE
type-LSQ1TGS8SC0(640), -- 8-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSQ3PT4PSC0(641), -- 4-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-EWPXM2MPUB0(642), -- Salience VI-Lite
type-EWPXM2SRP12GB0(643), -- Salience VI-GE
type-EWPXM2SRPD0(644), -- Salience VI-Plus
type-EWPXM2GP24TSD0(645), -- 16-Port 1000BASE-X Ethernet Optical Interface(SFP Req.)+8-Port Combo Interface Module
type-EWPXM2GP24TXSD0(646), -- 16-Port 1000BASE-X Ethernet Optical Interface(SFP Req.)+8-Port Combo Interface+2-Port 10GE Optical Interface(XFP Req.) Module
type-EWPXM2TGX4SD0(647), -- 4-Port 10GBASE Ethernet Optical Interface Module,XFP Req
type-EWPXM2GP48SD0(648), -- 48-Port 1000BASE-X Gigabit Ethernet Optical Interface Module,SFP Req
type-EWPXM2GP24TSC0(649), -- 24-Port 1000BASE-X/100BASE-FX Optical Interface Module,including 8 Combo Ports,SFP Req
type-EWPXM2TGX2SC0(650), -- 2-Port 10GBASE Ethernet Optical Interface Module,XFP Req
type-EWPXM2GP48SC0(651), -- 48-Port 1000BASE-X/100BASE-FX Ethernet Optical Interface Module,SFP Req
type-LS7500-GP48-SC(652), -- 48-Port 1000BASE-X/100BASE-FX Ethernet Optical Interface Module(SFP,LC)
type-LS7500-GP48-SD(653), -- 48-Port 1000BASE-X Gigabit Ethernet Optical Interface Module(SFP,LC)
type-LS7500-GT48-SC(654), -- 48-Port 10/100/1000BASE-TX Ethernet Interface Module(RJ45)
type-LS7500-GT48-SD(655), -- 48-Port 10/100/1000BASE-T Ethernet Interface Module(RJ45)
type-LS7500-SRPG1(656), -- Main Control Unit
type-LS7500-SRPG2(657), -- Salience VI-Lite
type-LS7500-XP4-SD(658), -- 4-Port 10GBASE Ethernet Optical Interface Module(XFP,LC)
type-LS7500-XP8-SD(659), -- 8-Port 10GBASE Ethernet Optical Interface Module(XFP,LC)
type-LSQ4PT4PSC0(660), -- 4-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-LSQ4PT8PSC0(661), -- 8-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-LSQ4PT16PSC0(662), -- 16-Port 1000Base-PX Optical Line Terminal(EPON OLT SFP,SC)+8-Port 1000BASE-X Optical Interface Board(SFP,LC)
type-LSQ1GP24TSA0(663), -- 16-Port 1000BASE-X Gigabit Ethernet Optical(SFP,LC) And 8-Port 10/100/1000BASE-T RJ45/1000BASE-X SFP Combo Interface Board
type-LSQ1GV24PSA0(664), -- 24-Port 10/100/1000BASE-T Electrical(RJ45) Interface Board,including 4 Combo Ports,SFP Req,Upgradeable to PoE
type-LSQ1SRPD3(665), -- Salience VI-Plus
type-LSQ1SUPA0(666), -- Supervisor Engine Board
type-LSU1FAB04A0(667), -- Switch Fabric Board
type-LSU1FAB08A0(668), -- Switch Fabric Board
type-LSU1TGS8EA0(669), -- 8-Port 10GBASE Ethernet SFP+ Optical Interface Board(EA)
type-LSU1TGS8EB0(670), -- 8-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1TGS8SE0(671), -- 8-Port 10GBASE Ethernet SFP+ Optical Interface Board(SE)
type-LSUTGS16SC0(672), -- 16-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1SUPA0(673), -- Supervisor Engine Board
type-LSU1GP24TXEA0(674), -- 16-Port 1000BASE-X Optical Interface(SFP,LC)+8-Port Combo Interface+2-Port 10GE Optical Interface Board(XFP,LC)(EA)
type-LSU1GP24TXEB0(675), -- 16-Port 1000BASE-X Optical Interface(SFP,LC)+8-Port Combo Interface+2-Port 10GE Optical Interface Board(XFP,LC)(EB)
type-LSU1GP24TXSE0(676), -- 16-Port 1000BASE-X Optical Interface(SFP,LC)+8-Port Combo Interface+2-Port 10GE Optical Interface Board(XFP,LC)(SE)
type-LSU1GP48EA0(677), -- 48-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC) Interface Board(EA)
type-LSU1GP48EB0(678), -- 48-Port Enhanced 1000BASE-X Ethernet Optical Interface Board(SFP,LC)(EB)
type-LSU1GP48SE0(679), -- 48-Port 1000BASE Ethernet Optical Interface Board(SFP,LC)(SE)
type-LSU1GT48EA0(680), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(EA)
type-LSU1GT48SE0(681), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(SE)
type-LSU1TGX4EA0(682), -- 4-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)(EA)
type-LSU1TGX4EB0(683), -- 4-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)(EB)
type-LSU1TGX4SE0(684), -- 4-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)(SE)
type-LSQ1FAB08A0(685), -- Switching Fabric Board
type-EWPX2WCMD0(686), -- Access Controller Card
type-LSQ1WCMD0(687), -- Access Controller Card
type-LSQ1IAGSC0(688), -- Wireless&IAG Service Card
type-LSU1GP24TSE0(689), -- 16-Port 1000BASE-X Optical Interface(SFP,LC)+8-Port Combo Interface Board(SE)
type-LSQ1TGS16SC0(690), -- 16-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-EWPX2TGS16SC0(691), -- 16-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSQ1SUPA3(692), -- Supervisor Engine Board
type-LSQ1FAB04A3(693), -- 320G Switch Fabric Board
type-LSQ1FAB08A3(694), -- 640G Switch Fabric Board
type-LSQ1GT48SC0(695), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)
type-LSR2SRP2C1(696), -- Management and Route Process Unit
type-LSR2SRP2C2(697), -- Management and Route Process Unit
--
-- 700 to 799 reserved for primary switchs
--
type-1000BASE-X-COMBO(701), -- Single port 10/100/1000BASE-T/1000BASE-X Combo Interface Board
type-EPON-1000M(702), -- Optical Network Unit Interface Board
type-1000BASE-FIXED-2SFP-T-2RJ45(703), -- 2 port 10/100/1000BASE-T and 2 port 1000BASE-X Interface Board
type-100M-1550-BIDI(704), -- 100BASE-X BIDI Interface Board,Tx 1550nm, Rx 1310nm
type-100M-1310-BIDI(705), -- 100BASE-X BIDI reverse Interface Board,Tx 1310nm, Rx 1550nm
type-1000BASE-FIXED-4RJ45-4SFP-COMBO(706), -- 4 port 10/100/1000BASE-T and 4 port 1000BASE-X COMBO Interface Board
type-LSH1PK2T(707), -- OSM Interface Board
type-LSPM2GP2P(708), -- 2-Port 1000BASE-X SFP Module
type-LSWM1GT16P(709), -- 16-Port 10/100/1000BASE-T Ethernet Electrical Interface Module
type-LSWM1GP16P(710), -- 16-Port 100/1000BASE-X Ethernet Optical Interface Module
type-LSWM1XP2P(711), -- 2-Port 10G Ethernet XFP Optical Interface Module
type-LSWM1XP4P(712), -- 4-Port 10G Ethernet XFP Optical Interface Module
type-LSWM1SP2P(713), -- 2-Port 10G Ethernet SFP PLUS Optical Interface Module
type-LSWM1SP4P(714), -- 4-Port 10G Ethernet SFP PLUS Optical Interface Module
type-LSWM148POEM(715), -- 48 Port Mid Power PoE Module
type-LSWM1FW10(716), -- RMI CPU XLR 732, with Firewall software
type-LSWM1WCM10(717), -- RMI CPU XLR 732, with Wireless Access Controller software
type-LSWM1IPS10(718), -- RMI CPU XLR 732, with IPS/AV software
type-LSWM1WCM20(719), -- RMI CPU XLR 408, with Wireless Access Controller software
type-LSPM2SP2P(725), -- 2-Port 10G Ethernet SFP PLUS Optical Interface Module
type-LSPM2SP2PA(726), -- 2-Port Second Version SFP+ Module
type-LSP5GP8P(727), -- 8-Port 1G Ethernet SFP Optical Interface Module
type-LSP5GT8P(728), -- 8-Port 10/100/1000BASE-T Ethernet Electrical Interface Module
type-LSWM1FC4P(729), -- 4-Port 8G Fibre Channel Interface Module
type-LSW1XGT4P0(730), -- 4-Port 10G Ethernet Copper Interface Module
type-LSW1XGT2P0(731), -- 2-Port 10G Ethernet Copper Interface Module
type-LSP1XGT2P(732), -- 2-Port 10G Ethernet Copper Interface Board
type-LSPM3XGT2P(733), -- 2-Port 1/10G BASE-T Ethernet Copper Interface Module
type-LSWM2QP2P(734), -- 2-Port QSFP+ Interface Module
type-LSWM2XGT2PM(735), -- 2-Port 10G Ethernet Copper Interface Module with MACsec
type-LSWM2SP2PM(736), -- 2-Port SFP+ Interface Module with MACsec
type-LSWM2SP8PM(737), -- 8-Port SFP+ Interface Module with MACsec
type-LSWM2SP8P(738), -- 8-Port SFP+ Interface Module
type-LSWM2XGT8PM(739), -- 8-Port 10G Ethernet Copper Interface Module with MACsec
--
-- 800 to 899 reserved for WLAN products
--
type-WX5002MPU(800), -- Wireless Lan Control Board with 2-port 1000BASE-T/1000BASE-X Combo Interface
type-LS8M1WCMA(801), -- Wireless Lan Service Board
type-EWPX1G24XA0(802), -- 24-Port 1000BASE-T Gigabit Ethernet Interface(RJ45) and 4-port 1000BASE-T/1000BASE-X Combo Interface and 2-port 10GBASE Interface Line Card
type-LSQ1WCMB0(803), -- 1 Port 10GBASE Interface Board
type-LSB1WCM2A0(804), -- Wireless Controller Module Board
type-EWPX1WCMB0(805), -- 1 Port 10GBASE Interface Board
type-EWPX1G24XC0(806), -- 24-Port 1000BASE-T Gigabit Ethernet Interface(RJ45) and 4-port 1000BASE-T/1000BASE-X Combo Interface Line Card
type-EWPX1WCMC0(807), -- 1-Port 1000BASE-T Gigabit Ethernet of wireless Lan Service Board
type-EWPX1FWA0(808), -- Firewall Service Board
type-EWPX1G10XC0(809), -- 8-Port 1000BASE-T Gigabit Ethernet Interface(RJ45) and 2-port 1000BASE-X SFP Interface Line Card
type-EWPX1WCM10C0(810), -- 1-Port 1000BASE-T Gigabit Ethernet of wireless Lan Service Board
type-LSR1WCM2A1(811), -- 1-Port 1000BASE-T Gigabit Ethernet of wireless Lan Service Board
type-EWPX1WAP0(812), -- Encryption Card
type-EWPX1WCMD0(813), -- 2 Port 10GBASE Interface Board
type-EWPX1G24XCE0(814), -- 24-Port 1000BASE-T Gigabit Ethernet Interface(RJ45) and 4-port 1000BASE-T/1000BASE-X Combo Interface Line Card
type-EWPX1WCMCE0(815), -- 2-Port 1000BASE-T Gigabit Ethernet of wireless Lan Service Board
--
-- 900 to 1199 reserved for advanced switchs part II
--
type-LSR1DRSP2L1(900), -- 2-Port OC-48c/STM-16c RPR Optical Interface Card(SFP,LC)
type-PIC-CLF2G8L(901), -- 2-Port 155M CPOS Optical Interface(SFP,LC)+8-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-PIC-CLF4G8L(902), -- 4-Port 155M CPOS Optical Interface(SFP,LC)+8-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-SR02SRP2F3(903), -- Routing Switch Processing Board(2F)
type-SR02SRP1F3(904), -- Routing Switch Processing Board(1F)
type-LST1GT48LEA1(905), -- 48-Port 10/100/1000BASE-T Interface Module(LEA),(RJ45)
type-LST1GP48LEA1(906), -- 48-Port 1000BASE-X Interface Module(LEA),(SFP,LC)
type-LST2XP8LEA1(907), -- 8-Port 10GBASE-R Interface Module(LEA),(SFP+,LC)
type-LST1GT48LEY1(908), -- 48-Port 10/100/1000BASE-T Interface Module(LEY),(RJ45)
type-LST1GP48LEY1(909), -- 48-Port 1000BASE-X Interface Module(LEY),(SFP,LC)
type-LST1XP32REY1(910), -- 32-Port 10GBASE-R Interface Module(REY),(SFP+,LC)
type-LST1XP8LEY1(911), -- 8-Port 10GBASE-R/W Interface Module(LEY),(XFP,LC)
type-LST1GP48LEZ1(912), -- 48-Port 1000BASE-X Interface Module(LEZ),(SFP,LC)
type-LST1XP8LEZ1(913), -- 8-Port 10GBASE-R/W Interface Module(LEZ),(XFP,LC)
type-IM-FW-II(914), -- Firewall Service Processing Board-II
type-IM-IPS(915), -- Intrusion Prevention System Service Processing Board
type-IM-SSL(916), -- SSL VPN Service Processing Board
type-IM-LB(917), -- Load Balance Service Processing Board
type-IM-ACG(918), -- Application Control Gateway Service Processing Board
type-LSR1XP16REC1(919), -- 16-Port 10GBASE-R Interface Module(REC),(SFP+,LC)
type-LST2XP8LEB1(920), -- 8-Port 10GBASE-R Interface Module(LEB),(SFP+,LC)
type-LST2XP8LEC1(921), -- 8-Port 10GBASE-R Interface Module(LEC),(SFP+,LC)
type-LST2XP8LEF1(922), -- 8-Port 10GBASE-R Interface Module(LEF),(SFP+,LC)
type-LST2XP4LEB1(923), -- 4-Port 10GBase-R Interface Module(LEB),(SFP+,LC)
type-LST2XP4LEC1(924), -- 4-Port 10GBase-R Interface Module(LEC),(SFP+,LC)
type-LST2XP32REB1(925), -- 32-Port 10GBASE-R Interface Module(REB),(SFP+,LC)
type-LST2XP32REC1(926), -- 32-Port 10GBASE-R Interface Module(REC),(SFP+,LC)
type-LSR1WCM3A1(927), -- Access Controller Module
type-LST1XP16LEB1(928), -- 16-Port 10GBASE-R Interface Module (LEB),(SFP+,LC)
type-LST1XP16LEC1(929), -- 16-Port 10GBASE-R Interface Module (LEC),(SFP+,LC)
type-CR-SPC-XP4L-E-I(930), -- 4-Port 10GBASE-R/W Optical Interface Module,(XFP,LC)
type-LST2MRPNC1(931), -- Management and Route Process Unit
type-LST2SF08C1(932), -- Switch Fabric Card
type-LST2SF18C1(933), -- Switch Fabric Card
type-SR02SRP2G3(934), -- Routing Switch Processing Board(2G)
type-CR-SPE-3020-E-I(935), -- CR15LN3CNA1, Dual Service Processing Board
type-CR-SPC-PUP4L-E-I(936), -- 4-Port 10G POS Optical Interface Board(Enhanced),(XFP,LC)
type-CR-SPC-XP4LEF-I(937), -- 4-Port 10GBASE-R/W Interface Module (LEF),(XFP,LC)
type-CR-SPC-XP8LEF-I(938), -- 8-Port 10GBASE-R/W Interface Module (LEF),(XFP,LC)
type-LST3XP8LEB1(939), -- 8-Port 10GBASE-R Interface Module (LEB),(XFP,LC)
type-LST3XP8LEC1(940), -- 8-Port 10GBASE-R Interface Module (LEC),(XFP,LC)
type-LST1FW3A1(941), -- Firewall Board
type-CR-IM-NAM1A(942), -- CR1M1NAM1A1, Network Analysis Service Module, Domestic&Overseas Version
type-LSR2SRP2B1(943), -- Management and Route Process Unit
type-LSR2SRP2B2(944), -- Management and Route Process Unit
type-LSR2SRP2D1(945), -- Management and Route Process Unit
type-LST3XP8LEY1(946), -- 8-Port 10GBASE-R/W Interface Module (LEY),(XFP,LC)
type-LST2XP32REY1(947), -- 32-Port 10GBASE-R Interface Module(REY),(SFP+,LC)
type-LST1XP16LEY1(948), -- 16-Port 10GBASE-R Interface Module (LEY),(SFP+,LC)
type-SR0M2SRP2G3(949), -- Routing Switch Processing Board(2G)
type-SR0M2SRP1G3(950), -- Routing Switch Processing Board(1G)
type-SPC-GP48LA(951), -- 48-Port 1000BASE-X Interface Service Module,(SFP,LC)
type-SPC-GT48LA(952), -- 48-Port 10/100/1000BASE-T Interface Service Module,(RJ45)
type-SPC-XP4LA(953), -- 4-Port 10GBase-R/W Interface Service Module,(XFP,LC)
type-SPC-XP2LA(954), -- 2-Port 10GBASE-R/W Interface Service Module,(XFP,LC)
type-SPC-GP24LA(955), -- 16-Port 1000BASE-X Interface(SFP,LC)+8-Port Combo Interface Service Module
type-SPC-XP16RA(956), -- 16-Port 10GBASE-R Optical Interface Service Module(RA),(SFP+,LC)
type-CR-IM-FW1A(957), -- Firewall Service Processing Board
type-SPC-XP16R(958), -- 16-Port 10GBASE-R Optical Interface Service Module(R),(SFP+,LC)
type-CR-IM-LB1A(959), -- Load Balancing Service Processing Board
type-LST1GT48LEC2(960), -- 48-Port 10/100/1000BASE-T Interface Module(LEC),(RJ45)
type-LST1GP48LEC2(961), -- 48-Port 1000BASE-X Interface Module (LEC),(SFP,LC)
type-LST1XP16LEC2(962), -- 16-Port 10GBASE-R Interface Module (LEC),(SFP+,LC)
type-LST2XP8LEC2(963), -- 8-Port 10GBASE-R Interface Module(LEC),(SFP+,LC)
type-LST2XP32REC2(964), -- 32-Port 10GBASE-R Interface Module(REC),(SFP+,LC)
type-CR-IM-MAC1A(965), -- Master Access Control Service Module
type-LST1XP48LFD1(966), -- 48-Port 10GBASE-R Interface Module (LFD),(SFP+,LC)
type-LST1XP40RFD1(967), -- 40-Port 10GBASE-R Interface Module (RFD),(SFP+,LC)
type-LST1XP40RFG1(968), -- 40-Port 10GBASE-R/W Interface Module (RFG),(SFP+,LC)
type-LST1XLP16RFD1(969), -- 16-Port 40GBASE-R Interface Module (RFD),(QSFP+,LC)
type-LST1CP4RFD1(970), -- 4-Port 100GBASE-R Interface Module (RFD),(CFP,LC)
type-LST1CP4RFG1(971), -- 4-Port 100GBASE-R Interface Module (RFG),(CFP,LC)
type-LST1SF08E1(972), -- Switch Fabric Card
type-LST1SF18E1(973), -- Switch Fabric Card
type-LST1MRPNE1(974), -- Management and Route Process Unit
type-LSX1CGX8FC0(975), -- 8-Port 100GBASE-R Interface Module (FC),(CXP,MPO)
type-LSX1CGX8FC1(976), -- 8-Port 100GBASE-R Interface Module (FC),(CXP,MPO)
type-LSX1QGS24FC0(977), -- 24-Port 40GBASE-R Interface Module (FC),(QSFP+)
type-LSX1QGS24FC1(978), -- 24-Port 40GBASE-R Interface Module (FC),(QSFP+)
type-LSX1TGS24FC0(979), -- 24-Port 10GBASE-R Interface Module (FC),(SFP+,LC)
type-LSX1TGS24FC1(980), -- 24-Port 10GBASE-R Interface Module (FC),(SFP+,LC)
type-LSX1TGS48FC0(981), -- 48-Port 10GBASE-R Interface Module (FC),(SFP+,LC)
type-LSX1TGS48FC1(982), -- 48-Port 10GBASE-R Interface Module (FC),(SFP+,LC)
type-LST1XP48LFD2(983), -- 48-Port 10GBASE-R Interface Module (LFD),(SFP+,LC)
type-LST1XP40RFD2(984), -- 40-Port 10GBASE-R Interface Module (RFD),(SFP+,LC)
type-LST1XP40RFG2(985), -- 40-Port 10GBASE-R/W Interface Module (RFG),(SFP+,LC)
type-LST1XLP16RFD2(986), -- 16-Port 40GBASE-R Interface Module (RFD),(QSFP+)
type-LST1CP4RFD2(987), -- 4-Port 100GBASE-R Interface Module (RFD),(CFP)
type-LST1CP4RFG2(988), -- 4-Port 100GBASE-R Interface Module (RFG),(CFP)
type-MPE-1004(989), -- Multi-Service Processing Engine
type-MIC-GP4L(990), -- 4-Port 1000BASE-X COMBO Interface Card,(SFP,LC)
type-MIC-GP8L(991), -- 8-Port 1000BASE-X Optical Interface Card,(SFP,LC)
type-MIC-SP4L(992), -- 4-Port OC-3/STM-1 POS/CPOS/ATM or 1-Port OC-12/STM-4 POS/ATM Optical Interface Card,(SFP,LC)
type-MIC-ET16L(993), -- 16-Port E1/T1 Electrical Interface Card
type-MIC-CLP4L(994), -- 4-Port OC-3/STM-1 CPOS/POS Optical Interface Card,(SFP,LC)
type-MIC-CLP2L(995), -- 2-Port OC-3/STM-1 CPOS/POS Optical Interface Card,(SFP,LC)
type-LST1IPS2A1(996), -- Intrusion Prevention System Module
type-SFC-04B(997), -- Switch Fabric Card(B Type)
type-SFC-04D(998), -- Switch Fabric Card(D Type)
type-SFC-08B(999), -- Switch Fabric Card(B Type)
type-SFC-08D(1000), -- Switch Fabric Card(D Type)
type-SFC-12B(1001), -- Switch Fabric Card(B Type)
type-SFC-12D(1002), -- Switch Fabric Card(D Type)
type-SR05SRP1H1(1003), -- Routing Switch Processing Unit(1H)
type-SPC-GP24LA1(1004), -- 16-Port 1000BASE-X Ethernet Optical Interface(SFP,LC)+8-Port Combo Interface Module(A Type)
type-SPC-GP24XP2LA(1005), -- 16-Port 1000BASE-X Ethernet Optical Interface(SFP,LC)+8-Port Combo Interface+2-Port 10GE Optical Interface Module(XFP,LC)(A Type)
type-SPC-GP48LA1(1006), -- 48-Port 1000BASE-X Ethernet Optical Interface Module(SFP,LC)(A Type)
type-SPC-GP48LB(1007), -- 48-Port Enhanced 1000BASE-X Ethernet Optical Interface Module(SFP,LC)(B Type)
type-SPC-XP2LA1(1008), -- 2-Port 10GBASE Ethernet Optical Interface Module(XFP,LC)(A Type)
type-SPC-XP4LA1(1009), -- 4-Port 10GBASE Ethernet Optical Interface Module(XFP,LC)(A Type)
type-SPC-XP4LB(1010), -- 4-Port Enhanced 10GBASE Ethernet Optical Interface Module(XFP,LC)(B Type)
type-SPC-XP8LA(1011), -- 8-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(A Type)
type-SPC-XP8LB(1012), -- 8-Port Enhanced 10GBASE Ethernet Optical Interface Module(SFP+,LC)(B Type)
type-SPC-XP48LA(1013), -- 48-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(A Type)
type-SPC-XLP8LA(1014), -- 8-Port 40GBASE Ethernet Optical Interface Module(QSFP+,MPO)(A Type)
type-SPC-GP24XP2LB(1015), -- 16-Port 1000BASE-X Optical Interface(SFP,LC)+8-Port Combo Interface+2-Port 10GE Optical Interface Module(XFP,LC)(B Type)
type-LST1MRPNE2(1016), -- Management and Route Process Unit
type-LST2FW3A1(1017), -- Firewall Board
type-LST1ADE1A1(1018), -- Load Balancing Board
type-CR-MRP-II(1019), -- Management and Route Unit-II
type-CR-SF08E(1020), -- Switch Fabric Module(E)
type-CR-SF18E(1021), -- Switch Fabric Module(E)
type-CR-SPC-XP40RC(1022), -- 40-Port 10GBASE-R/W Optical Interface Module(RC),(SFP+,LC)
type-CR-SPC-XP40RB(1023), -- 40-Port 10GBASE-R Ethernet Optical Interface Module(RB),(SFP+,LC)
type-CR-SPC-CP4RC(1024), -- 4-Port 100GBASE Ethernet Optical Interface Module(RC),(CFP)
type-LST1FW3C1(1025), -- Firewall Board
type-LSU1FWCEA0(1026), -- Firewall Board
type-SPC-GT48LA1(1027), -- 48-Port 10/100/1000BASE-T Ethernet Interface Module(RJ45)(A Type)
type-LST1XP20RFD1(1028), -- 20-Port 10GBASE-R Interface Module (RFD),(SFP+,LC)
type-LST1XP20RFD2(1029), -- 20-Port 10GBASE-R Interface Module (RFD),(SFP+,LC)
type-MPE-1104(1030), -- 4-Port Multiservice Processing Engine
type-SPEX-1204(1031), -- 4-Port 10G Processing Engine
type-SPC-GP44XP4LCX(1032), -- 44-Port 100/1000BASE-X Ethernet Optical Interface Module(SFP,LC)+4-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(C Type)
type-SPC-GP44XP4LAX(1033), -- 44-Port 100/1000BASE-X Ethernet Optical Interface Module(SFP,LC)+4-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(A Type)
type-SPC-XP24LCX(1034), -- 24-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(C Type)
type-SPC-XP24LAX(1035), -- 24-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(A Type)
type-SPC-XP12LCX(1036), -- 12-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(C Type)
type-SPC-XP12LAX(1037), -- 12-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(A Type)
type-SPC-XLP6LCX(1038), -- 6-Port 40GBASE Ethernet Optical Interface Module(QSFP+,MPO)(C Type)
type-SPC-XLP6LAX(1039), -- 6-Port 40GBASE Ethernet Optical Interface Module(QSFP+,MPO)(A Type)
type-SPC-CP1LCX(1040), -- 1-Port 100GBASE Ethernet Optical Interface Module(CFP,LC)(C Type)
type-SPC-CP1LAX(1041), -- 1-Port 100GBASE Ethernet Optical Interface Module(CFP,LC)(A Type)
type-SPC-CP2LB(1042), -- 2-Port 100GBASE Ethernet Optical Interface Module(CFP,LC)(B Type)
type-SPC-CP2LA(1043), -- 2-Port 100GBASE Ethernet Optical Interface Module(CFP,LC)(A Type)
type-SR05SRP1L1(1044), -- Management and Route Process Unit(1L1)
type-SR05SRP1L3(1045), -- Management and Route Process Unit(1L3)
type-SFC-04-4(1046), -- Short-circuit Card Slot 4
type-SFC-04-3(1047), -- Short-circuit Card Slot 3
type-SFC-04-2(1048), -- Short-circuit Card Slot 2
type-SFC-04-1(1049), -- Short-circuit Card Slot 1
type-LST1NSM2C1(1050), -- NetStream Service Board
type-CR-SPC-XP20RB(1051), -- 20-Port 10GBASE-R Ethernet Optical Interface Module(RB),(SFP+,LC)
type-SR07SRPUA1(1052), -- Management and Route Process Unit(UA1)
type-SR07SRPUB3(1053), -- Management and Route Process Unit(UB1)
type-SR07SRPUC3(1054), -- Management and Route Process Unit
type-SR07MPUA1(1055), -- Management and Route Process Unit
type-SR07SRPUB1(1056), -- Management and Route Process Unit(UB1)
type-SR07SRPUC1(1057), -- Management and Route Process Unit
type-MIC-MS4L(1058), -- 4-Port Multi-Service Optical Interface Card,Domestic&Overseas Version
type-SPC-GP44XP4LC(1059), -- 44-Port 100/1000BASE-X Ethernet Optical Interface Board(SFP,LC)+4-Port 10GBASE Ethernet Optical Interface Board(SFP+,LC)(C Type)
type-SPC-GP44XP4LA(1060), -- 44-Port 100/1000BASE-X Ethernet Optical Interface Board(SFP,LC)+4-Port 10GBASE Ethernet Optical Interface Board(SFP+,LC)(A Type)
type-SPC-XLP2XP4LC(1061), -- 2-Port 40GBASE Ethernet Optical Interface Board(QSFP+,MPO)+4-Port 10GBASE Ethernet Optical Interface Board(SFP+,LC)(C Type)
type-SPC-XP12LC(1062), -- 12-Port 10GBASE Ethernet Optical Interface Board(SFP+,LC)(C Type)
type-SPC-CP1LC(1063), -- 1-Port 100GBASE Ethernet Optical Interface Module(CFP,LC)(C Type)
type-SPC-XP24LC(1064), -- 24-Port 10GBASE Ethernet Optical Interface Board(SFP+,LC)(C Type)
type-SR07SRPUD3(1065), -- Management and Route Process Unit(UD1)
type-SR07MPUA3(1066), -- Management and Route Process Unit(For 02 Chassis)
type-MPEX-1304(1067), -- 4-Port Multiservice Processing Engine
type-MIC-GP10L1(1068), -- 6-Port 1000BASE-X Optical Interface Card(SFP,LC)+4-Port 1000BASE-X/10GBASE Optical Interface Card(SFP+,LC)
type-SR07SRPUB(1069), -- Management and Route Processing Unit(UB3)
type-CMPE-1104(1070), -- 4-Port Multiservice Processing Engine
type-CSFC-04-1(1071), -- Fabric Card Slot 1
type-CSFC-04-2(1072), -- Fabric Card Slot 2
type-CSFC-04-3(1073), -- Fabric Card Slot 3
type-CSFC-04-4(1074), -- Fabric Card Slot 4
type-CSFC-04B(1075), -- Switch Fabric Card(B Type)
type-CSFC-04D(1076), -- Switch Fabric Card(D Type)
type-CSFC-08B(1077), -- Switch Fabric Card(B Type)
type-CSFC-08D(1078), -- Switch Fabric Card(D Type)
type-CSFC-12B(1079), -- Switch Fabric Card(B Type)
type-CSFC-12D(1080), -- Switch Fabric Card(D Type)
type-CSPC-CP1LCX(1081), -- 1-Port 100GBASE Ethernet Optical Interface Module(CFP,LC)(C Type)
type-CSPC-CP2LB(1082), -- 2-Port 100GBASE Ethernet Optical Interface Module(CFP,LC)(B Type)
type-CSPC-GP24LA1(1083), -- 16-Port 1000BASE-X Ethernet Optical Interface(SFP,LC)+8-Port Combo Interface Module(A Type)
type-CSPC-GP24XP2LB(1084), -- 16-Port 1000BASE-X Optical Interface(SFP,LC)+8-Port Combo Interface+2-Port 10GE Optical Interface Module(XFP,LC)(B Type)
type-CSPC-GP44XP4LCX(1085), -- 44-Port 1000BASE-X Ethernet Optical Interface Module(SFP,LC)+4-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(C Type)
type-CSPC-GP48LB(1086), -- 48-Port Enhanced 1000BASE-X Ethernet Optical Interface Module(SFP,LC)(B Type)
type-CSPC-GT48LA1(1087), -- 48-Port 10/100/1000BASE-T Ethernet Interface Module(RJ45)(A Type)
type-CSPC-XLP6LCX(1088), -- 6-Port 40GBASE Ethernet Optical Interface Module(QSFP+,MPO)(C Type)
type-CSPC-XP2LA1(1089), -- 2-Port 10GBASE Ethernet Optical Interface Module(XFP,LC)(A Type)
type-CSPC-XP4LB(1090), -- 4-Port Enhanced 10GBASE Ethernet Optical Interface Module(XFP,LC)(B Type)
type-CSPC-XP8LB(1091), -- 8-Port Enhanced 10GBASE Ethernet Optical Interface Module(SFP+,LC)(B Type)
type-CSPC-XP12LAX(1092), -- 12-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(A Type)
type-CSPC-XP12LCX(1093), -- 12-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(C Type)
type-CSPC-XP24LAX(1094), -- 24-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(A Type)
type-CSPC-XP24LCX(1095), -- 24-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(C Type)
type-CSPEX-1204(1096), -- 4-Port 10G Processing Engine
type-CSR05SRP1L1(1097), -- Management and Route Process Unit(1L1)
type-CSR05SRP1L3(1098), -- Management and Route Process Unit(1L3)
type-CSR07MPUA1(1099), -- Management and Route Processing Unit
type-CSR07SRPUA1(1100), -- Management and Route Processing Unit(UA1)
type-CSR07SRPUB1(1101), -- Management and Route Processing Unit(UB1)
type-CSR07SRPUC1(1102), -- Management and Route Processing Unit
type-LSXM1CGX8FX1(1103), -- 8-Port 100GBASE Ethernet Optical Interface Module(CXP)(FX)
type-LSXM1QGS24FX1(1104), -- 24-Port 40GBASE Ethernet Optical Interface Module(QSFP+)(FX)
type-LSXM1TGS48FX1(1105), -- 48-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(FX)
type-LSXM1QGS12FX1(1106), -- 12-Port 40GBASE Ethernet Optical Interface Module(QSFP+)(FX)
type-LSXM1TGT48FX1(1107), -- 48-Port 10GBASE-T Ethernet Electrical Interface Module(RJ45)(FX)
type-LSU1IPSBEA0(1108), -- Intrusion Prevention System Module
type-PIC-GP10L(1109), -- 10-Port 1000BASE-X Optical Interface Card,(SFP,LC)
type-PIC-XP1L(1110), -- 1-Port 10GBASE-R/W Ethernet Optical Interface Card,(XFP,LC)
type-PIC-PUP1L(1111), -- 1-Port 10G POS Optical Interface Card,(XFP,LC)
type-PIC-PSP4L(1112), -- 4-Port 2.5G POS Optical Interface Card(SFP,LC)
type-PIC-PS2G4L(1113), -- 2-Port 2.5G POS Optical Interface(SFP,LC)+4-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-PIC-PL2G6L(1114), -- 2-Port 155M POS Optical Interface(SFP,LC)+6-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-PIC-TCP8L(1115), -- 8-Port OC-3c/OC-12c POS/GE Optical Interface Card,(SFP,LC)
type-PIC-CSP1L(1116), -- 1-Port 2.5G CPOS Optical Interface Card(SFP,LC)
type-PIC-PH2G6L(1117), -- 2-Port 622M POS Optical Interface(SFP,LC)+6-Port 1000BASE-X Optical Interface Card(SFP,LC)
type-LSXM1CGP12FX1(1118), -- 12-Port 100GBASE Ethernet Optical Interface Module(CFP2)(FX)
type-LSXM1CGP8FX1(1119), -- 8-Port 100GBASE Ethernet Optical Interface Module(CFP2)(FX)
--
-- 1200 to 1399 reserved for secondary switchs part II
--
type-LSU1QGC4SF0(1201), -- 4 Port 40G BASE Ethernet Optical Interface Board(CFP,SC)(SF)
type-LSU1QGS8SF0(1202), -- 8-Port 40G BASE Ethernet Optical Interface Board(QSFP,MPO)(SF)
type-LSU1TGS48SF0(1203), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1QGS4SF0(1204), -- 4-Port 40G BASE Ethernet Optical Interface Board(QSFP,MPO)(SF)
type-LSU1TGS32SF0(1205), -- 32-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1FAB08D0(1206), -- Switching Fabric Module
type-LSU1FAB04B0(1207), -- Switching Fabric Module
type-LSU1FAB08B0(1208), -- Switching Fabric Module
type-LSU1FAB12D0(1209), -- Switching Fabric Module
type-LSU1FAB12B0(1210), -- Switching Fabric Module
type-LSU1FAB04D0(1211), -- Switching Fabric Module
type-LSQ1CTGS16SC0(1212), -- Supervisor Engine Board With 16-Port 10GBASE Ethernet SFP+ Optical Interfaces
type-EWPX2CTGS16SC0(1213), -- Supervisor Engine Board With 16-Port 10GBASE Ethernet SFP+ Optical Interfaces
type-LSU3WCMD0(1214), -- Access Controller Card
type-EWPX3WCMD0(1215), -- Access Controller Card
type-LSQ1QGS4SC0(1216), -- 4-Port 40G BASE Ethernet Optical Interface Board(QSFP+,MPO)(SC)
type-LSQ1QGC4SC0(1217), -- 4 Port 40GBASE Ethernet Optical Interface Board(CFP)(SC)
type-LSU1TGT24SF0(1218), -- 24-Port 10GBASE-T Ethernet Electrical Interface Board(RJ45)(SF)
type-LSQ1QGS8SC3(1219), -- 8-Port 40G BASE Ethernet Optical Interface Board(QSFP+,MPO)
type-LSQ1TGS32SC3(1220), -- 32-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSQ1QGS4SC3(1221), -- 4-Port 40GBASE Ethernet Optical Interface Board(QSFP+,MPO)(SC)
type-LSQ1TGS48SC3(1222), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSQ1QGC4SC3(1223), -- 4-Port 40GBASE Ethernet Optical Interface Board(CFP)(SC)
type-LSQ1FAB12D3(1224), -- Switch Fabric Board
type-LSQ1FAB08D3(1225), -- Switching Fabric Module
type-LSQ1FAB04D3(1226), -- Switching Fabric Module
type-LSQ1TGS8EB3(1227), -- 8-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSQ1TGT24SC3(1228), -- 24-Port 10GBASE-T Ethernet Electrical Interface Board(RJ45)(SC)
type-LSQ1FAB08B0(1229), -- Switching Fabric Module
type-EWPX2CTGS16SC(1230), -- Supervisor Engine Board With 16-Port 10GBASE Ethernet SFP+ Optical Interfaces
type-LSU1SUPB0(1231), -- Supervisor Engine Board
type-LSQ1GP48SA0(1232), -- 48-Port 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSQ1TGX2SA0(1233), -- 2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSV1SRPUA1(1234), -- Supervisor Engine Board
type-LSV1QGS12SA1(1235), -- 12-Port 40G BASE Ethernet Optical Interface Board(QSFP+)
type-LSV1MPUA1(1236), -- Supervisor Engine Board
type-LSX1SUP10A0(1237), -- Supervisor Engine Board
type-LSX1SUP16A0(1238), -- Supervisor Engine Board
type-LSX1SUP10A1(1239), -- Supervisor Engine Board
type-LSX1SUP16A1(1240), -- Supervisor Engine Board
type-LSX1FAB10B0(1241), -- Switch Fabric Board
type-LSX1FAB16B0(1242), -- Switch Fabric Board
type-LSX1FAB10B1(1243), -- Switch Fabric Board
type-LSX1FAB16B1(1244), -- Switch Fabric Board
type-LSX1QGS16EA0(1245), -- 16-Port 40G BASE Ethernet Optical Interface Board(QSFP+,MPO)
type-LSX1TGS48EA0(1246), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSX1QGS16EA1(1247), -- 16-Port 40G BASE Ethernet Optical Interface Board(QSFP+,MPO)
type-LSX1TGS48EA1(1248), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1TGT24SF9(1249), -- 24-Port 10GBASE-T Ethernet Electrical Interface Board(RJ45)(SF)
type-LSU1QGS8SF9(1250), -- 8-Port 40G BASE Ethernet Optical Interface Board(QSFP+,MPO)(SF)
type-LSU1QGS4SF9(1251), -- 4-Port 40GBASE Ethernet QSFP+ Optical Interface Board(QSFP+,MPO)(SF)
type-LSU1TGS48SF9(1252), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1TGS32SF9(1253), -- 32-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1FAB08D9(1254), -- Switching Fabric Module
type-LSU1SUPB9(1255), -- Supervisor Engine Board
type-LSQ3GV48SC0(1256), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45), PoE Plus
type-LSX1QGS12EC1(1257), -- 12-Port 40GBASE Ethernet Optical Interface Board(QSFP+)
type-LSX1QGS12EC0(1258), -- 12-Port 40GBASE Ethernet Optical Interface Board(QSFP+)
type-LSX1TGS48EC0(1259), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSX1TGS48EC1(1260), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSX1TGS24EC0(1261), -- 24-Port 10GBASE Ethernet SFP+ Optical Interface Board(EC)
type-LSX1TGS24EC1(1262), -- 24-Port 10GBASE Ethernet SFP+ Optical Interface Board(EC)
type-LSX1FAB10A0(1263), -- Switch Fabric Board,For 10 Slots Chassis
type-LSX1FAB16A1(1264), -- Switch Fabric Board,For 16 Slots Chassis
type-LSX1QGS12FB0(1265), -- 12-Port 40GBASE Ethernet Optical Interface Board(QSFP+)
type-LSX1TGS24FB0(1266), -- 24-Port 10GBASE Ethernet SFP+ Optical Interface Board(FB)
type-LSX1TGS48FB0(1267), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board(FB)
type-LSX1QGS12EB1(1268), -- 12-Port 40GBASE Ethernet Optical Interface Board(QSFP+)
type-LSX1TGS24EB1(1269), -- 24-Port 10GBASE Ethernet SFP+ Optical Interface Board(EB)
type-LSX1FAB10A1(1270), -- Switch Fabric Board,For 10 Slots Chassis
type-LSX1TGS48EB1(1271), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board(EB)
type-LSX1GP48EB1(1272), -- 44-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)
type-LSX1GP48FB0(1273), -- 44-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)
type-LSX1GT48FC0(1274), -- 48-Port 1000Base-T Gigabit Ethernet Interface Module(RJ45)(FC)
type-LSX1GT48FC1(1275), -- 48-Port 1000Base-T Gigabit Ethernet Interface Module(RJ45)(FC)
type-LSX1GP48FC0(1276), -- 48-Port 1000BASE-X Gigabit Ethernet Optical Interface Module(SFP,LC)(FC)
type-LSX1GP48FC1(1277), -- 48-Port 1000BASE-X Gigabit Ethernet Optical Interface Module(SFP,LC)(FC)
type-LSX1QGS12FC0(1278), -- 12-Port 40GBASE Ethernet Optical Interface Module(QSFP+)(FC)
type-LSX1QGS12FC1(1279), -- 12-Port 40GBASE Ethernet Optical Interface Module(QSFP+)(FC)
type-LSX2TGS48EA1(1280), -- 48-Port 10GBASE Ethernet SFP+ Optical Interface Board(EA)
type-LSX1CGC4EB1(1281), -- 4-Port 100GBASE Ethernet Optical Interface Board(CFP),Monolithic
type-LSX1CGC4EC0(1282), -- 4-Port 100GBASE Ethernet Optical Interface Board(CFP),Monolithic
type-LSX1GT48EB1(1283), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)
type-LSX1GT48FB0(1284), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)
type-LSX1FAB16S1(1285), -- Switch Fabric Board,For 16 Slots Chassis
type-LSQ1SUPB3(1286), -- Supervisor Engine Board
type-LSU1CGC2SE0(1287), -- 2 Port 100GBASE Ethernet Optical Interface Board(CFP)(SE)
type-LSU1TGS16SF0(1288), -- 16-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1TGS8SF0(1289), -- 8-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSQ1TGS4SC0(1290), -- 4-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1GT48SE3(1291), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)
type-LSU1GP48SE3(1292), -- 48-Port 1000BASE Ethernet Optical Interface Board(SFP,LC)
type-LSX1SUP10B0(1293), -- Supervisor Engine Board
type-LSX1SUP16B0(1294), -- Supervisor Engine Board
type-LSX1SUP10B1(1295), -- Supervisor Engine Board
type-LSX1SUP16B1(1296), -- Supervisor Engine Board
type-LSQ1CGV24PSC3(1297), -- Switching and Routing Processing Unit with 24 10/100/1000BASE-T Electrical Ports(RJ45),including 4 Combo Ports,SFP Req,PoE,No Spell
type-LSQ1SRPA8(1298), -- Supervisor Engine Board
type-LSQ1CGP24TSC8(1299), -- Supervisor Engine Board
type-LSQ1CGT24PSC8(1300), -- Supervisor Engine Board
type-LSQ1GT24PSA8(1301), -- 24-Port 10/100/1000BASE-T Electrical(RJ45) Interface Board,including 4 Combo Ports,SFP Req,Upgradeable to PoE
type-LSQ1GP24TSA8(1302), -- 16-Port 1000BASE-X Gigabit Ethernet Optical(SFP,LC) And 8-Port 10/100/1000BASE-T RJ45/1000BASE-X SFP Combo Interface Board
type-LSQ1GT48SA8(1303), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)
type-LSQ1GP48SA8(1304), -- 48-Port 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSQ1TGS4SC8(1305), -- 4-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSQ1TGS8SC8(1306), -- 8-Port 10GBASE Ethernet SFP+ Optical Interface Board
type-LSU1GT24SE3(1307), -- 24-Port 1000BASE-T Ethernet Interface Board (RJ45)
type-LSU1GP12SE3(1308), -- 12-Port 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSU1GP24SE3(1309), -- 24 Port 1000BASE-X Ethernet Optical Interface Board(SFP,LC)
type-LSU1T24XGSE3(1310), -- 24-Port 1000BASE-T Gigabit Ethernet Interface(RJ45)+2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSU1P24XGSE3(1311), -- 24-Port 1000BASE-X Gigabit Ethernet Optical Interface(SFP,LC)+2-Port 10GBASE Ethernet Optical Interface Board(XFP,LC)
type-LSU1GP24TSE3(1312), -- 16-Port 1000BASE-X Gigabit Ethernet Optical(SFP,LC) And 8-Port 10/100/1000BASE-T RJ45/1000BASE-X SFP Combo Interface Board
type-LSU1GT40PSE3(1313), -- 40-Port 10/100/1000BASE-T Electrical(RJ45) And 8-Port 1000BASE-X Optical Ethernet Interface Board(SFP,LC),PoE
type-LSV1TGS24SA1(1314), -- 24-Port 10G BASE Ethernet Optical Interface Board(SFP+)
type-LSV1SRPA1(1315), -- Switching Fabric Module
type-LSV1SRPC1(1316), -- Switching Fabric Module
type-LSX1FAB16S0(1317), -- Switch Fabric Board,For 16 Slots Chassis
type-LSU1WCME0(1318), -- Access Controller Service Board
type-EWPX1WCME0(1319), -- Access Controller Service Board
type-LSUM1TGS48SG0(1320), -- 48-Port 10GBASE-R Ethernet SFP+ Optical Interface Board(SG)
type-LSUM1QGS12SG0(1321), -- 12-Port 40GBASE-R Ethernet QSFP+ Optical Interface Board(SG)
type-LSUM1GP44TSEC0(1322), -- 44-Port 1000BASE-R Ethernet SFP Optical Interface Board(EC)+4-Port 10GBASE-R Ethernet SFP+ Optical Interface Board(EC)
type-LSUM1TGS24EC0(1323), -- 24-Port 10GBASE-R Ethernet SFP+ Optical Interface Board(EC)
type-LSUM1QGS6EC0(1324), -- 6-Port 40GBASE-R Ethernet QSFP+ Optical Interface Board(EC)
type-LSUM1CGC2EC0(1325), -- 2-Port 100GBASE-R Ethernet CFP Optical Interface Board(EC)
type-LSU1CGC2SE9(1326), -- 2 Port 100GBASE Ethernet Optical Interface Board(CFP)(SE)
type-LSXM1QGS24EX1(1327), -- 24 Ports 40G BASE Ethernet Optical Interface Board(QSFP+,MPO),No Spell
type-LSXM1QGS24FB0(1328), -- 24 Ports 40G BASE Ethernet Optical Interface Board(QSFP+,MPO),No Spell
type-LSVM1QGS12FX1(1329), -- 12-Port 40G BASE Ethernet Optical Interface Module(QSFP+,MPO/LC)
type-LSVM1TGS24FX1(1330), -- 24-Port 10G BASE Ethernet Optical Interface Module(SFP+,LC)
type-LSVM1QGS6C2FX1(1331), -- 2-Port 100GBASE Ethernet Optical Interface(CXP,MPO)+6-Port 40GBASE Ethernet Optical Interface(QSFP+,MPO/LC)+4-Port 10G BASE Ethernet Optical Interface Module(SFP+,LC)
type-LSQM2GP44TSSC0(1332), -- 44-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSQM2GP44TSSC3(1333), -- 44-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSQM2GP24TSSC0(1334), -- 24-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSQM2GP24TSSC3(1335), -- 24-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSQM2GT24PTSSC0(1336), -- 24-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)+20-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSQM2GT24PTSSC3(1337), -- 24-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)+20-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSQM2GT24TSSC0(1338), -- 24-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSQM2GT24TSSC3(1339), -- 24-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSQM2GT48SC0(1340), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(SC)
type-LSQM2GT48SC3(1341), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(SC)
type-LSQM4GV48SC0(1342), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(SC)-POE
type-LSQM4GV48SC3(1343), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(SC)-POE
type-LSQM2TGS16SF0(1344), -- 16-Port 10GE Optical Interface Board(SFP+,LC)(SF)
type-LSQM2TGS16SF3(1345), -- 16-Port 10GE Optical Interface Board(SFP+,LC)(SF)
type-LSQM2MPUD0(1346), -- Supervisor Engine Board
type-LSQM2MPUD3(1347), -- Supervisor Engine Board
type-LSQM3MPUA0(1348), -- Supervisor Engine Board
type-LSQM3MPUA3(1349), -- Supervisor Engine Board
type-LSUM2GP44TSSE0(1350), -- 44-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SE)
type-LSUM2GP44TSSC3(1351), -- 44-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSUM2GP24TSSE0(1352), -- 24-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SE)
type-LSUM2GP24TSSC3(1353), -- 24-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSUM2GT24PTSSE0(1354), -- 24-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)+20-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SE)
type-LSUM2GT24PTSSC3(1355), -- 24-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)+20-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSUM2GT24TSSE0(1356), -- 24-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)+4-Port 10GE Optical Interface Board(SFP+,LC)(SE)
type-LSUM2GT24TSSC3(1357), -- 24-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)+4-Port 10GE Optical Interface Board(SFP+,LC)(SC)
type-LSUM2GT48SE0(1358), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(SE)
type-LSUM2GT48SC3(1359), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(SC)
type-LSUM2GV48SE0(1360), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(SE)-POE
type-LSUM2GV48SC3(1361), -- 48-Port 1000Base-T Gigabit Ethernet Interface Board(RJ45)(SC)-POE
type-LSUM2TGS16SF0(1362), -- 16-Port 10GE Optical Interface Board(SFP+,LC)(SF)
type-LSUM2TGS16SF3(1363), -- 16-Port 10GE Optical Interface Board(SFP+,LC)(SF)
type-LSUM1MPU06B0(1364), -- Supervisor Engine Board
type-LSUM1MPU06B3(1365), -- Supervisor Engine Board
type-LSUM1MPU10C0(1366), -- Supervisor Engine Board
type-LSUM1MPU10C3(1367), -- Supervisor Engine Board
type-LSUM1FAB06C0(1368), -- Switching Fabric Module
type-LSUM1FAB06C3(1369), -- Switching Fabric Module
type-LSUM1FAB10C0(1370), -- Switching Fabric Module
type-LSUM1FAB10C3(1371), -- Switching Fabric Module
type-LSXM1SUPA1(1372), -- Supervisor Engine Module
type-LSXM1SFF16B1(1373), -- Switch Fabric Board
type-LSUM1SPMAEC0(1374), -- 4-Port Multiservice Processing Engine
type-LSXM1SUPB1(1375), -- Supervisor Engine Module
type-LSXM1SFF08B1(1376), -- Switching Fabric Module,Type B(F1)
type-LSXM1TGS4GPEB1(1377), -- 44-Port GE Optical Interface(SFP,LC)+4-Port 10GE Optical Interface Module(SFP+,LC)(EB)
type-LSXM1TGS16EA1(1378), -- 16-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(EA)
type-LSXM1TGS8EA1(1379), -- 8-Port 10GBASE Ethernet Optical Interface Module(SFP+,LC)(EA)
type-LSXM1QGS36FX1(1380), -- 36-Port 40GBASE Ethernet Optical Interface Module(QSFP+)(FX)
type-LSXM1SFF16C1(1381), -- Switching Fabric Module For S12516X-AF,Type C
type-LSQM3MPUB0(1382), -- Supervisor Engine Board
type-LSQM3MPUB3(1383), -- Supervisor Engine Board
type-LSQM2MPUC0(1384), -- Supervisor Engine Board
type-LSQM2MPUC3(1385), -- Supervisor Engine Board
type-LST1FW3B1(1386), -- Firewall Board
type-LSX1NSCEA1(1387), -- NetStream Service Board
type-LSX1FWCEA1(1388), -- Firewall Service Board
type-LSXM1ADECEA1(1389), -- Application Dilevery Engine Module,Domestic&Overseas Version
--
-- 1400 to 1599 reserved for switche RPU logical modules
--
type-PEX-Common(1400) -- The general logical module type for PEX
--
-- 1600 to 1999 reserved for secondary switches part III
--
--
-- 2000 to 2399 reserved for advanced switches part III
--
}
hh3cLswSystemPara OBJECT IDENTIFIER ::= { hh3cLswDeviceAdmin 1 }
-- ==================================================================
hh3cLswSysIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System IP address, which is the primary IP address of the VLAN
interface that has smallest VLAN ID and is configured IP address."
::= { hh3cLswSystemPara 1 }
hh3cLswSysIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mask of the system IP address."
::= { hh3cLswSystemPara 2 }
hh3cLswSysCpuRatio OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU usage of the system in accuracy of 1%, and the range of value is
1 to 100."
::= { hh3cLswSystemPara 3 }
hh3cLswSysVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Information of the system version."
::= { hh3cLswSystemPara 4 }
hh3cLswSysTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"System time."
::= { hh3cLswSystemPara 5 }
hh3cLswSysUNMCastDropEnable OBJECT-TYPE
SYNTAX INTEGER
{
disable (0),
enable (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable discarding of unknown multicast packet."
::= { hh3cLswSystemPara 6 }
hh3cLswSysManagementVlan OBJECT-TYPE
SYNTAX Integer32 (1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"System management VLAN."
::= { hh3cLswSystemPara 7 }
hh3cLswSysVlanRange OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..10))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"System VLAN range, if set VLAN range, must bind mangement IP/Mask."
::= { hh3cLswSystemPara 8 }
hh3cLswSysManagementIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"System IP address."
::= { hh3cLswSystemPara 9 }
hh3cLswSysManagementIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Mask of the system IP address."
::= { hh3cLswSystemPara 10 }
hh3cMacAddressCountPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Supportted MAC address number on port."
::= { hh3cLswSystemPara 11 }
hh3cMacAddressCountMachine OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Supportted MAC address number on machine."
::= { hh3cLswSystemPara 12 }
hh3cLswSysPhyMemory OBJECT-TYPE
SYNTAX Unsigned32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The memory of physical.
For the distributed device, it represents the memory size on the master
slot.
If the amount of physical memory exceeds 4,294,967,295 bytes,
the value remains 4,294,967,295 bytes."
::= { hh3cLswSystemPara 13 }
hh3cLswSysMemory OBJECT-TYPE
SYNTAX Unsigned32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The memory of system.
Note that the system memory means the memory can be used by the software
platform.
For the distributed device, it represents the memory size on the master
slot.
If the amount of system memory exceeds 4,294,967,295 bytes,
the value remains 4,294,967,295 bytes."
::= { hh3cLswSystemPara 14 }
hh3cLswSysMemoryUsed OBJECT-TYPE
SYNTAX Unsigned32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system memory in use.
Note that the system memory means the memory can be used by the software
platform.
For the distributed device, it represents the memory size on the master
slot.
If the amount of used memory exceeds 4,294,967,295 bytes,
the value remains 4,294,967,295 bytes."
::= { hh3cLswSystemPara 15 }
hh3cLswSysMemoryRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of system memory in use.
Note that the system memory means the memory can be used by the software
platform.
hh3cLswSysMemoryUsed
hh3cLswSysMemoryRatio = --------------------
hh3cLswSysMemory
For the distributed device, it represents the memory used ratio on the
master slot."
::= { hh3cLswSystemPara 16 }
hh3cLswSysTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of system.
For the distributed device, it represents the temperature on the
master slot."
::= { hh3cLswSystemPara 17 }
hh3cLswSysPhyMemRev OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Size of the memory space for the software platform.
This node is used to replace hh3cLswSysPhyMemory.
For a distributed device, it indicates the size of the memory space
on the active MPU."
::= { hh3cLswSystemPara 18 }
hh3cLswSysMemRev OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Size of the physical memory space.
This node is used to replace hh3cLswSysMemory.
For a distributed device, it indicates the size of the memory space
on the active MPU."
::= { hh3cLswSystemPara 19 }
hh3cLswSysMemUsedRev OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Size of the memory space used by the software system.
This node is used to replace hh3cLswSysMemoryUsed.
For a distributed device, it indicates the size of the memory space
on the active MPU"
::= { hh3cLswSystemPara 20 }
-- ==================================================================
--
-- slot and port management group
--
-- ==================================================================
hh3cLswSlotConf OBJECT IDENTIFIER ::= { hh3cLswDeviceAdmin 4 }
-- ==================================================================
--
-- Frame information table
--
-- ==================================================================
hh3cLswFrameTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLswFrameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Frame information table."
::= {hh3cLswSlotConf 2}
hh3cLswFrameEntry OBJECT-TYPE
SYNTAX Hh3cLswFrameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Frame description table entry."
INDEX { hh3cLswFrameIndex }
::= {hh3cLswFrameTable 1}
Hh3cLswFrameEntry ::= SEQUENCE
{
hh3cLswFrameIndex Integer32,
hh3cLswFrameType Integer32,
hh3cLswFrameDesc DisplayString,
hh3cLswSlotNumber Integer32,
hh3cLswFrameAdminStatus INTEGER
}
hh3cLswFrameIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique index of frame."
::= {hh3cLswFrameEntry 1}
hh3cLswFrameType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frame type."
::= {hh3cLswFrameEntry 2}
hh3cLswFrameDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Frame description."
::= {hh3cLswFrameEntry 3}
hh3cLswSlotNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of slots of the current frame."
::= {hh3cLswFrameEntry 4}
hh3cLswFrameAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
normal (1),
fault (2),
other (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Status of frame."
::= {hh3cLswFrameEntry 5}
-- ==================================================================
--
-- slot information table
--
-- ==================================================================
hh3cLswSlotTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLswSlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Slot description table."
::= {hh3cLswSlotConf 3}
hh3cLswSlotEntry OBJECT-TYPE
SYNTAX Hh3cLswSlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Slot description table entry."
INDEX { hh3cLswFrameIndex, hh3cLswSlotIndex }
::= {hh3cLswSlotTable 1}
Hh3cLswSlotEntry ::= SEQUENCE
{
hh3cLswSlotIndex Integer32,
hh3cLswSlotType Hh3cLswTypeOfSlot,
hh3cLswSlotDesc DisplayString,
hh3cLswSlotCpuRatio Integer32,
hh3cLswSlotPcbVersion DisplayString,
hh3cLswSlotSoftwareVersion DisplayString,
hh3cLswSubslotNumber Integer32,
hh3cLswSlotAdminStatus INTEGER,
hh3cLswSlotOperStatus INTEGER,
hh3cLswSlotPhyMemory Unsigned32,
hh3cLswSlotMemory Unsigned32,
hh3cLswSlotMemoryUsed Unsigned32,
hh3cLswSlotMemoryRatio Unsigned32,
hh3cLswSlotTemperature Integer32,
hh3cLswSlotPktBufFree Integer32,
hh3cLswSlotPktBufInit Integer32,
hh3cLswSlotPktBufMin Integer32,
hh3cLswSlotPktBufMiss Counter64,
hh3cLswSlotRunTime DisplayString,
hh3cLswSlotPhyMemRev CounterBasedGauge64,
hh3cLswSlotMemRev CounterBasedGauge64,
hh3cLswSlotMemUsedRev CounterBasedGauge64,
hh3cLswSlotModelDesc DisplayString
}
hh3cLswSlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Slot index. When the slot is empty, listed as vacant slot."
::= {hh3cLswSlotEntry 1}
hh3cLswSlotType OBJECT-TYPE
SYNTAX Hh3cLswTypeOfSlot
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Slot type. BOM number is recommended."
::= {hh3cLswSlotEntry 2}
hh3cLswSlotDesc OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Slot description."
::= {hh3cLswSlotEntry 3}
hh3cLswSlotCpuRatio OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU usage of the slot in accuracy of 1%, and the range of value is 1 to
100."
::= {hh3cLswSlotEntry 4}
hh3cLswSlotPcbVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware version of the board."
::= {hh3cLswSlotEntry 5}
hh3cLswSlotSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software version of the board."
::= {hh3cLswSlotEntry 6}
hh3cLswSubslotNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of the cards of the board."
::= {hh3cLswSlotEntry 7}
hh3cLswSlotAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
not-install (1),
normal (2),
fault (3),
forbidden (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Slot status."
::= {hh3cLswSlotEntry 8}
hh3cLswSlotOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
disable (1),
enable (2),
reset (3),
test (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Slot operation status."
::= {hh3cLswSlotEntry 9}
hh3cLswSlotPhyMemory OBJECT-TYPE
SYNTAX Unsigned32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The memory of physical on the board.
If the amount of physical memory exceeds 4,294,967,295 bytes,
the value remains 4,294,967,295 bytes."
::= {hh3cLswSlotEntry 10}
hh3cLswSlotMemory OBJECT-TYPE
SYNTAX Unsigned32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The memory of system on the board.
Note that the system memory means the memory can be used by
the software platform.
If the amount of system memory exceeds 4,294,967,295 bytes,
the value remains 4,294,967,295 bytes."
::= {hh3cLswSlotEntry 11}
hh3cLswSlotMemoryUsed OBJECT-TYPE
SYNTAX Unsigned32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system memory in use on the board.
Note that the system memory means the memory can be used by
the software platform.
If the amount of used memory exceeds 4,294,967,295 bytes,
the value remains 4,294,967,295 bytes."
::= {hh3cLswSlotEntry 12}
hh3cLswSlotMemoryRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of system memory in use on the board.
Note that the system memory means the memory can be used by
the software platform."
::= {hh3cLswSlotEntry 13}
hh3cLswSlotTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of system on the board."
::= {hh3cLswSlotEntry 14}
hh3cLswSlotPktBufFree OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packet buffers available for internal VME transfers
or external transfers, respectively. Because switch operations and
application software modules impose some overhead on global memory
buffers, the number of buffers available for data transfers is less
than the total number of buffers allocated when the switch boots."
::= {hh3cLswSlotEntry 15}
hh3cLswSlotPktBufInit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packet buffers allocated when the switch booted."
::= {hh3cLswSlotEntry 16}
hh3cLswSlotPktBufMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The smallest number of packet buffers available since the switch booted."
::= {hh3cLswSlotEntry 17}
hh3cLswSlotPktBufMiss OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times that the switch was unable to obtain a packet
buffer. Failure to obtain a buffer indicates that buffers were busy."
::= {hh3cLswSlotEntry 18}
hh3cLswSlotRunTime OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Runtime of board.
For example, if a board has run for 2 days 4 hours and 20 minutes,
its runtime is displayed as 0 weeks, 2 days, 4 hours, 20 minutes."
::= {hh3cLswSlotEntry 19}
hh3cLswSlotPhyMemRev OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Size of the memory on the board.
This node is used to replace hh3cLswSlotPhyMemory."
::= {hh3cLswSlotEntry 20}
hh3cLswSlotMemRev OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Size of the memory space for the software system on the board.
This node is used to replace hh3cLswSlotMemory.
Note that the system memory means the memory can be used by
the software platform."
::= {hh3cLswSlotEntry 21}
hh3cLswSlotMemUsedRev OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Size of the memory space used by the software system on the board.
This node is used to replace hh3cLswSlotMemoryUsed.
Note that the system memory means the memory can be used by
the software platform."
::= {hh3cLswSlotEntry 22}
hh3cLswSlotModelDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Model of the extended device in a slot. Examples of extended devices
include PEXs and firewall modules. If the device in the slot is not
an extended device, a zero-length string is returned."
::= {hh3cLswSlotEntry 23}
-- ==================================================================
--
-- sub slot information table
--
-- ==================================================================
hh3cLswSubslotTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLswSubslotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Subslot description table."
::= {hh3cLswSlotConf 4}
hh3cLswSubslotEntry OBJECT-TYPE
SYNTAX Hh3cLswSubslotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Subslot description table entry."
INDEX {
hh3cLswFrameIndex,
hh3cLswSlotIndex,
hh3cLswSubslotIndex
}
::= {hh3cLswSubslotTable 1}
Hh3cLswSubslotEntry ::= SEQUENCE
{
hh3cLswSubslotIndex Integer32,
hh3cLswSubslotType Hh3cLswTypeOfSlot,
hh3cLswSubslotPortNum Integer32,
hh3cLswSubslotAdminStatus INTEGER,
hh3cLswSubslotFirstIfIndex Integer32
}
hh3cLswSubslotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subslot index."
::= {hh3cLswSubslotEntry 1}
-- value list of hh3cLswSubslotType are identical with the value list of hh3cLswSlotType.
hh3cLswSubslotType OBJECT-TYPE
SYNTAX Hh3cLswTypeOfSlot
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the pinch board in the subslot."
::= {hh3cLswSubslotEntry 2}
hh3cLswSubslotPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of physical ports in the pinch board."
::= {hh3cLswSubslotEntry 3}
hh3cLswSubslotAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
not-install (1),
normal (2),
fault (3),
forbidden (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the pinch board in the subslot."
::= {hh3cLswSubslotEntry 4}
hh3cLswSubslotFirstIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ifIndex of the first physical port in the pinch board."
::= {hh3cLswSubslotEntry 5}
-- ==================================================================
--
-- port information table
--
-- ==================================================================
hh3cLswPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLswPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port configuration table."
::= {hh3cLswSlotConf 5}
hh3cLswPortEntry OBJECT-TYPE
SYNTAX Hh3cLswPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port configuration table entry."
INDEX {
hh3cLswFrameIndex,
hh3cLswSlotIndex,
hh3cLswSubslotIndex,
hh3cLswPortIndex
}
::= {hh3cLswPortTable 1}
Hh3cLswPortEntry ::= SEQUENCE
{
hh3cLswPortIndex Integer32,
hh3cLswPortType INTEGER,
hh3cLswPortIfindex Integer32,
hh3cLswPortIsPlugged INTEGER
}
hh3cLswPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number on the device. The first port number is 1, which is
reserved if the port does not exist."
::= {hh3cLswPortEntry 1}
hh3cLswPortType OBJECT-TYPE
SYNTAX INTEGER
{
type-NULL(0), -- NULL
type-10OR100M(1), -- 10BASE-T or 100BASE-TX Electrical Interface
type-1000BASE-LX-SM(2), -- 1000BASE-LX Single Mode Fiber Optic Transceivers IR
type-1000BASE-SX-MM(3), -- 1000BASE-SX Multi Mode Fiber Optic Transceivers SR
type-1000BASE-TX(4), -- 1000BASE-T Electrical Interface
type-100M-SINGLEMODE-FX(5), -- 100BASE-FX Single Mode Fiber Optic Transceivers
type-100M-MULTIMODE-FX(6), -- 100BASE-FX Multi Mode Fiber Optic Transceivers
type-100M-100BASE-TX(7), -- 100BASE-TX Electrical Interface
type-100M-HUB(8), -- 100M HUB
type-VDSL(9), -- Very High Speed DSL
type-STACK(10), -- Gigabit STACK
type-1000BASE-ZENITH-FX(11), -- 1000BASE-LX Single Mode Fiber Optic Transceivers VLR
type-1000BASE-LONG-FX(12), -- 1000BASE-LX Single Mode Fiber Optic Transceivers LR
type-ADSL(13), -- Asymmetric Digital Subscriber Line
type-10OR100M-db(14), -- 10/100M ethernet electric port,each RJ-45 has 2 ethernet ports
type-10GBASE-LR-SM(15), -- 10GBASE-LR Single Mode Fiber Optic Transceivers
type-10GBASE-LX4-MM(16), -- 10GBASE-LX4 Multi Mode Fiber Optic Transceivers
type-10GBASE-LX4-SM(17), -- 10GBASE-LX4 Single Mode Fiber Optic Transceivers
type-100M-LONG-FX(18), -- 100BASE-FX Single Mode Fiber Optic Transceivers LR SC
type-1000BASE-CX(19), -- 1000BASE-CX
type-1000BASE-ZENITH-FX-LC(20), -- 1000BASE-LX Single Mode Fiber Optic Transceivers VLR with LC Connector
type-1000BASE-LONG-FX-LC(21), -- 1000BASE-LX Single Mode Fiber Optic Transceivers LR with LC Connector
type-100M-SM-FX-SC(22), -- 100BASE-FX Single Mode Fiber Optic Transceivers with SC Connector
type-100M-MM-FX-SC(23), -- 100BASE-FX Multi Mode Fiber Optic Transceivers with SC Connector
type-100M-SM-FX-LC(24), -- 100BASE-FX Single Mode Fiber Optic Transceivers with LC Connector
type-100M-MM-FX-LC(25), -- 100BASE-FX Multi Mode Fiber Optic Transceivers with LC Connector
type-GBIC-NO-CONNECTOR(26), --
type-GBIC-1000-BASE-T(27), --
type-GBIC-1000-BASE-LX(28), --
type-GBIC-1000-BASE-SX(29), --
type-GBIC-1000-BASE-ZX(30), --
type-COMBO-NO-CONNECTOR(31), --
type-COMBO-1000-BASE-LX(32), --
type-COMBO-1000-BASE-LX-FIBER(33), --
type-COMBO-1000-BASE-LX-COPPER(34), --
type-COMBO-1000-BASE-SX(35), --
type-COMBO-1000-BASE-SX-FIBER(36), --
type-COMBO-1000-BASE-SX-COPPER(37), --
type-COMBO-1000-BASE-ZX(38), --
type-COMBO-1000-BASE-ZX-FIBER(39), --
type-COMBO-1000-BASE-ZX-COPPER(40), --
type-155-POS-SX-MMF(41), --
type-155-POS-LX-SMF(42), --
type-1000BASE-T(43), -- 1000 Base-T Port
type-1000BASE-SX-SFP(44), -- 1000 Base-SX SFP Port
type-1000BASE-LX-SFP(45), -- 1000 Base-SX SFP Port
type-1000BASE-T-AN-SFP(46), -- 1000 Base-T AN SFP Port
type-10GBASE-LX4-XENPAK(47), -- 10G Base-LX4 XENPAK Port
type-10GBASE-LR-XENPAK(48), -- 10G Base-LR XENPAK Port
type-10GBASE-CX4(49), -- 10G Base-CX4 Port
type-1000BASE-ZX-SFP(50), -- 1000 Base-ZX SFP Port
type-1000BASE-MM-SFP(51), -- 1000 Base-MM SFP Port
type-100BASE-SX-SFP(52), -- 100 Base-SX SFP Port
type-100BASE-LX-SFP(53), -- 100 Base-LX SFP Port
type-100BASE-T-AN-SFP(54), -- 100 Base-T SFP Port
type-100BASE-ZX-SFP(55), -- 100 Base-ZX SFP Port
type-100BASE-MM-SFP(56), -- 100 Base-MM SFP Port
type-SFP-NO-CONNECTOR(57), -- No Connector SFP Port
type-SFP-UNKNOWN-CONNECTOR(58), -- Unknown SFP Port
type-POS-NO-CONNECTOR(59), -- POS no connector
type-10G-BASE-SR(60), -- 10GBASE-SR Fiber Optic Transceivers with SC Connector
type-10G-BASE-ER(61), -- 10GBASE-ER Fiber Optic Transceivers with SC Connector
type-10G-BASE-LX4(62), -- 10GBASE-LX4 Fiber Optic Transceivers with SC Connector
type-10G-BASE-SW(63), -- 10GBASE-SW Fiber Optic Transceivers with SC Connector
type-10G-BASE-LW(64), -- 10GBASE-LW Fiber Optic Transceivers with SC Connector
type-10G-BASE-EW(65), -- 10GBASE-EW Fiber Optic Transceivers with SC Connector
type-10G-LR-SM-LC(66), -- 10GBASE-LR Single Mode Fiber Optic Transceivers with LC Connector
type-10G-SR-MM-LC(67), -- 10GBASE-SR Multi Mode Fiber Optic Transceivers with LC Connector
type-10G-ER-SM-LC(68), -- 10GBASE-ER Single Mode Fiber Optic Transceivers with LC Connector
type-10G-LW-SM-LC(69), -- 10GBASE-LW Single Mode Fiber Optic Transceivers with LC Connector
type-10G-SW-MM-LC(70), -- 10GBASE-SW Multi Mode Fiber Optic Transceivers with LC Connector
type-10G-EW-SM-LC(71), -- 10GBASE-EW Single Mode Fiber Optic Transceivers with LC Connector
type-100BASE-SM-MTRJ(72), -- 100 Base-SM MTRJ Port
type-100BASE-MM-MTRJ(73), -- 100 Base-MM MTRJ Port
type-XFP-NO-CONNECTOR(74), -- XFP without Transceiver
type-XFP-10GBASE-SR(75), -- 10GBASE-SR XFP Transceiver
type-XFP-10GBASE-LR(76), -- 10GBASE-LR XFP Transceiver
type-XFP-10GBASE-ER(77), -- 10GBASE-ER XFP Transceiver
type-XFP-10GBASE-SW(78), -- 10GBASE-SW XFP Transceiver
type-XFP-10GBASE-LW(79), -- 10GBASE-LW XFP Transceiver
type-XFP-10GBASE-EW(80), -- 10GBASE-EW XFP Transceiver
type-XFP-10GBASE-CX4(81), -- 10GBASE-CX4 XFP Transceiver
type-XFP-10GBASE-LX4(82), -- 10GBASE-LX4 XFP Transceiver
type-XFP-UNKNOWN(83), -- Unknown XFP Transceiver
type-XPK-NOCONNECTOR(84), -- Xenpak without Transceiver
type-XPK-10GBASE-SR(85), -- 10GBASE-SR Xenpak Transceiver
type-XPK-10GBASE-LR(86), -- 10GBASE-LR Xenpak Transceiver
type-XPK-10GBASE-ER(87), -- 10GBASE-ER Xenpak Transceiver
type-XPK-10GBASE-SW(88), -- 10GBASE-SW Xenpak Transceiver
type-XPK-10GBASE-LW(89), -- 10GBASE-LW Xenpak Transceiver
type-XPK-10GBASE-EW(90), -- 10GBASE-EW Xenpak Transceiver
type-XPK-10GBASE-CX4(91), -- 10GBASE-CX4 Xenpak Transceiver
type-XPK-10GBASE-LX4(92), -- 10GBASE-LX4 Xenpak Transceiver
type-XPK-UNKNOWN(93), -- Unknown Xenpak Transceiver
type-POS-OC48-SR-SM-LC(94), -- OC48-SR Single Mode Fiber Optic Transceivers with LC Connector
type-POS-OC48-IR-SM-LC(95), -- OC48-IR Single Mode Fiber Optic Transceivers with LC Connector
type-POS-OC48-LR-SM-LC(96), -- OC48-LR Single Mode Fiber Optic Transceivers with LC Connector
type-10G-BASE-CX4(97), -- 10G BASE-CX4 Electrical Interface
type-OLT-1000BASE-BX-SFF-SC(98), -- 1000 BASE-BX SFF SC OLT Port
type-ONU-1000BASE-BX-SFF-SC(99), -- 1000 BASE-BX SFF SC ONU Port
type-24G-CASCADE(100), -- 24G Cascade port
type-POS-OC3-SR-MM(101), -- STM1/OC3 Short Reach Multi Mode Fiber Optic Transceivers with LC Connector
type-POS-OC3-IR-SM(102), -- STM1/OC3 Intermediate Reach Single Mode Fiber Optic Transceivers with LC Connector
type-POS-OC3-IR-1-SM(103), -- STM1/OC3 Intermediate Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 1)
type-POS-OC3-IR-2-SM(104), -- STM1/OC3 Intermediate Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 2)
type-POS-OC3-LR-SM(105), -- STM1/OC3 Long Reach Single Mode Fiber Optic Transceivers with LC Connector
type-POS-OC3-LR-1-SM(106), -- STM1/OC3 Long Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 1)
type-POS-OC3-LR-2-SM(107), -- STM1/OC3 Long Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 2)
type-POS-OC3-LR-3-SM(108), -- STM1/OC3 Long Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 3)
type-POS-OC12-SR-MM(109), -- STM4/OC12 Short Reach Multi Mode Fiber Optic Transceivers with LC Connector
type-POS-OC12-IR-SM(110), -- STM4/OC12 Intermediate Reach Single Mode Fiber Optic Transceivers with LC Connector
type-POS-OC12-IR-1-SM(111), -- STM4/OC12 Intermediate Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 1)
type-POS-OC12-IR-2-SM(112), -- STM4/OC12 Intermediate Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 2)
type-POS-OC12-LR-SM(113), -- STM4/OC12 Long Reach Single Mode Fiber Optic Transceivers with LC Connector
type-POS-OC12-LR-1-SM(114), -- STM4/OC12 Long Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 1)
type-POS-OC12-LR-2-SM(115), -- STM4/OC12 Long Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 2)
type-POS-OC12-LR-3-SM(116), -- STM4/OC12 Long Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 3)
type-POS-OC48-SR-SM(117), -- STM16/OC48 Short Reach Single Mode Fiber Optic Transceivers with LC Connector
type-POS-OC48-IR-SM(118), -- STM16/OC48 Intermediate Reach Single Mode Fiber Optic Transceivers with LC Connector
type-POS-OC48-IR-1-SM(119), -- STM16/OC48 Intermediate Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 1)
type-POS-OC48-IR-2-SM(120), -- STM16/OC48 Intermediate Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 2)
type-POS-OC48-LR-SM(121), -- STM16/OC48 Long Reach Single Mode Fiber Optic Transceivers with LC Connector
type-POS-OC48-LR-1-SM(122), -- STM16/OC48 Long Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 1)
type-POS-OC48-LR-2-SM(123), -- STM16/OC48 Long Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 2)
type-POS-OC48-LR-3-SM(124), -- STM16/OC48 Long Reach Single Mode Fiber Optic Transceivers with LC Connector(variation 3)
type-POS-I-64-1(125), -- STM64/OC192 Interconnect Fiber Optic Transceivers with LC Connector(wavelength 1310nm G.652 fiber)
type-POS-I-64-2(126), -- STM64/OC192 Interconnect Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.652 fiber)
type-POS-I-64-3(127), -- STM64/OC192 Interconnect Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.653 fiber)
type-POS-I-64-5(128), -- STM64/OC192 Interconnect Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.655 fiber)
type-POS-S-64-1(129), -- STM64/OC192 Short Haul Fiber Optic Transceivers with LC Connector(wavelength 1310nm G.652 fiber)
type-POS-S-64-2(130), -- STM64/OC192 Short Haul Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.652 fiber)
type-POS-S-64-3(131), -- STM64/OC192 Short Haul Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.653 fiber)
type-POS-S-64-5(132), -- STM64/OC192 Short Haul Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.655 fiber)
type-POS-L-64-1(133), -- STM64/OC192 Long Haul Fiber Optic Transceivers with LC Connector(wavelength 1310nm G.652 fiber)
type-POS-L-64-2(134), -- STM64/OC192 Long Haul Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.652 fiber)
type-POS-L-64-3(135), -- STM64/OC192 Long Haul Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.653 fiber)
type-POS-V-64-2(136), -- STM64/OC192 Very Long Haul Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.652 fiber)
type-POS-V-64-3(137), -- STM64/OC192 Very Long Haul Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.653 fiber)
type-100BASE-FX-BIDI(138), -- 100 BASE-FX BIDI Port
type-100BASE-BX10-U-SFP(139), -- 100 BASE-BX10-U-SFP Port
type-100BASE-BX10-D-SFP(140), -- 100 BASE-BX10-D-SFP Port
type-1000BASE-BX10-U-SFP(141), -- 1000 BASE-BX10-U-SFP Port
type-1000BASE-BX10-D-SFP(142), -- 1000 BASE-BX10-D-SFP Port
type-STK-1000BASE-T(143), -- 1000 BASE-T Stack Port
type-RPR-PHYPOS-CONNECTOR(144), -- Resilient Packet Ring POS physical port
type-RPR-PHY10GE-CONNECTOR(145), -- 10G Resilient Packet Ring physical port
type-RPR-LOGICPOS-CONNECTOR(146), -- Resilient Packet Ring POS logical port
type-RPR-LOGIC10GE-CONNECTOR(147), -- 10G Resilient Packet Ring logical port
type-10GBASE-ZR(148), -- Fiber Optic Transceivers with SC Connector, XENPAK
type-TYPE-ERROR-CONNECTOR(149), -- Error Optic Transceivers type
type-10G-STACK(150), -- 10G Stack Port
type-155-ATM-SX-MMF(151), -- ATM OC-3 Multi-mode Short Reach Optical Transceiver
type-155-ATM-LX-SMF(152), -- ATM OC-3 single mode long reach optical transceiver
type-622-ATM-SX-MMF(153), -- ATM OC-12 Multi-mode Short Reach Optical Transceiver
type-622-ATM-LX-SMF(154), -- ATM OC-12 Single Mode Long Reach Optical Transceiver
type-155-ATM-NO-CONNECTOR(155), -- ATM OC-3 No Connector
type-622-ATM-NO-CONNECTOR(156), -- ATM OC-12 No Connector
type-155-CPOS-E1-NO-CONNECTOR(157), -- CPOS(E1) OC-3 No Connector
type-155-CPOS-T1-NO-CONNECTOR(158), -- CPOS(T1) OC-3 No Connector
type-622-CPOS-E1-NO-CONNECTOR(159), -- CPOS(E1) OC-12 No Connector
type-622-CPOS-T1-NO-CONNECTOR(160), -- CPOS(T1) OC-12 No Connector
type-155-CPOS-E1-SX-MMF(161), -- CPOS(E1) OC-3 Multi-mode Short Reach Optical Transceiver
type-155-CPOS-T1-SX-MMF(162), -- CPOS(T1) OC-3 Multi-mode Short Reach Optical Transceiver
type-155-CPOS-E1-LX-SMF(163), -- CPOS(E1) OC-3 Single Mode Long Reach Optical Transceiver
type-155-CPOS-T1-LX-SMF(164), -- CPOS(T1) OC-3 Single Mode Long Reach Optical Transceiver
type-622-CPOS-E1-SX-MMF(165), -- CPOS(E1) OC-12 Multi-mode Short Reach Optical Transceiver
type-622-CPOS-T1-SX-MMF(166), -- CPOS(T1) OC-12 Multi-mode Short Reach Optical Transceiver
type-622-CPOS-E1-LX-SMF(167), -- CPOS(E1) OC-12 Single Mode Long Reach Optical Transceiver
type-622-CPOS-T1-LX-SMF(168), -- CPOS(T1) OC-12 Single Mode Long Reach Optical Transceiver
type-E1-CONNECTOR(169), -- E1 RJ45 Transceiver
type-T1-CONNECTOR(170), -- T1 RJ45 Transceiver
type-1000BASE-STK-SFP(171), -- 1-port 1000 Base-STK SFP Module
type-1000BASE-BIDI-SFP(172), -- 1-port 1000 Base-BIDI SFP Module
type-1000BASE-CWDM-SFP(173), -- 1-port 1000 Base-CWDM SFP Module
type-100BASE-BIDI-SFP(174), -- 1-port 100 Base-BIDI SFP Module
type-OLT-1000BASE-PX-SFP(175), -- 1000BASE-PX SFP OLT Interface
type-OLT-1000BASE-NO-CONNECTOR(176), -- 1000BASE OLT No Connector
type-RPR-PHYGE-CONNECTOR(177), -- Resilient Packet Ring GE physical port
type-RPR-LOGICGE-CONNECTOR(178), -- Resilient Packet Ring GE logical port
type-100M-1550-BIDI(179), -- Single Port 100M Ethernet Bi-direction Optical Interface Module(TX1550nm, RX1310nm, 15km, SC)
type-100M-1310-BIDI(180), -- Single Port 100M Ethernet Bi-direction Optical reverse Interface Module(TX1310nm, RX1550nm, 15km, SC)
type-RPR-PHYOC48-CONNECTOR(181), -- Resilient Packet Ring OC48 physical port
type-RPR-LOGICOC48-CONNECTOR(182), -- Resilient Packet Ring OC48 logical port
type-100-1000-BASE-LX-SMF(183), -- 100BASE-LX/1000BASE-LX Single Mode Fiber Optic Transceivers
type-10G-ZW-SM-LC(184), -- 10GBASE-ZW Single Mode Fiber Optic Transceivers with LC Connector
type-10G-ZR-SM-LC(185), -- 10GBASE-ZR Single Mode Fiber Optic Transceivers with LC Connector
type-XPK-10GBASE-ZR(186), -- 10GBASE-ZR Xenpak Transceiver:LH80,SM1550
type-SGMII-100-BASE-LX-SFP(187), -- SGMII-100-BASE-LX-SFP Port
type-SGMII-100-BASE-FX-SFP(188), -- SGMII-100-BASE-FX-SFP Port
type-WLAN-RADIO(189), -- WLAN-RADIO Port
type-SFP-PLUS-NO-CONNECTOR(191), -- SFP+ without Transceiver
type-SFP-PLUS-10GBASE-SR(192), -- 10GBASE-SR SFP+ Transceiver
type-SFP-PLUS-10GBASE-LR(193), -- 10GBASE-LR SFP+ Transceiver
type-SFP-PLUS-10GBASE-LRM(194), -- 10GBASE-LRM SFP+ Transceiver
type-SFP-PLUS-10GBASE-Cu(195), -- 10GBASE-Cu SFP+ Transceiver
type-SFP-PLUS-UNKNOWN(196), -- Unknown SFP+ Transceiver
type-SFP-PLUS-STACK-CONNECTOR(197), -- SFP+ STACK Transceiver
type-POS-L-64-4(198), -- STM64/OC192 Long Haul Fiber Optic Transceivers with LC Connector(wavelength 1550nm G.653 fiber)
type-MINISAS-HD-STACK-CONNECTOR(199), -- MiniSAS HD STACK Transceiver
type-ONU-1000BASE-PX-SFF(200), -- 1000BASE-PX SFF ONU Interface
type-RS485(201), -- RS485 Interface
type-SFP-PLUS-10GBASE-ER(202), -- 10GBASE-ER SFP+ Transceiver
type-SFP-PLUS-10GBASE-ZR(203), -- 10GBASE-ZR SFP+ Transceiver
type-XFP-10GBASE-ZR(204), -- 10GBASE-ZR XFP Transceiver
type-QSFP-PLUS-40GBASE-SR4(205), -- 40BASE-SR4 QSFP+ Optical Transceiver
type-QSFP-PLUS-STACK-CONNECTOR(206), -- QSFP+ STACK Transceiver
type-QSFP-PLUS-TO-4SFP-PLUS-STACK-CONNECTOR(207), -- QSFP+ to 4 SFP+ STACK Transceiver
type-SFP-STACK-CONNECTOR(208), -- SFP STACK Transceiver
type-QSFP-NO-CONNECTOR(209), -- QSFP No Connector
type-10GBase-T(210), -- 10G Base-T Port
type-CFP-NO-CONNECTOR(211), -- CFP No Connector
type-CFP-40GBASE-LR4(212), -- 40GBASE-LR4 CFP Transceiver
type-QSFP-PLUS-NO-CONNECTOR(213), -- QSFP+ No Connector
type-QSFP-PLUS-40GBASE-LR4(214), -- 40GBASE-LR4 QSFP+ Optical Transceiver
type-CFP-40GBASE-SR4(215), -- 40GBASE-SR4 CFP Optical Transceiver
type-CFP-100GBASE-LR4(216), -- 100GBASE-LR4 CFP Optical Transceiver
type-CFP-100GBASE-SR10(217), -- 100GBASE-SR10 CFP Optical Transceiver
type-CXP-100GBASE-SR10(218), -- 100GBASE-SR10 CXP Optical Transceiver
type-CXP-NO-CONNECTOR(219), -- CXP No Connector
type-TRANSCEIVER-UNKNOWN(220), -- Unknown Transceiver
type-QSFP-PLUS-UNKNOWN(221), -- Unknown QSFP+ Transceiver
type-CFP-UNKNOWN(222), -- Unknown CFP Transceiver
type-QSFP-PLUS-40GBASE-CSR4(223), -- 40GBASE-CSR4 QSFP+ Optical Transceiver
type-CFP-40GBASE-ER4(224), -- 40GBASE-ER4 CFP Optical Transceiver
type-SFP-1000BASE-BIDI(225), -- 1000BASE SFP Bi-direction Optical Transceiver
type-SFP-PLUS-10GBASE-ZR-DWDM(226), -- 10GBase-ZR SFP+ DWDM Optical Transceiver
type-QSFP-PLUS-40GBASE-PSM(227), -- 40GBASE QSFP+ Parallel SingleMode Optical Transceiver
type-SFP-8GFC-SW(228), -- SFP 8G FC Optical Transceiver short wave
type-SFP-8GFC-LW(229), -- SFP 8G FC Optical Transceiver long wave
type-CXP-100GBASE-AOC(230), -- 100GBASE CXP Active Optical Cable
type-QSFP-PLUS-ACTIVE-STACK-CONNECTOR(231), -- QSFP+ Active STACK Transceiver
type-QSFP-PLUS-TO-4SFP-PLUS-ACTIVE-STACK-CONNECTOR(232) -- QSFP+ to 4 SFP+ Active STACK Transceiver
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Normally the port type is the same as its card type. When there are
different types of ports in one card, use the actual port type."
::= {hh3cLswPortEntry 2}
hh3cLswPortIfindex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ifIndex of the port."
::= {hh3cLswPortEntry 3}
hh3cLswPortIsPlugged OBJECT-TYPE
SYNTAX INTEGER
{
unplugged(0),
plugged(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port is plugged or not."
::= {hh3cLswPortEntry 4}
-- ==================================================================
--
-- port loopback test table
--
-- ==================================================================
hh3cLswPortLoopbackTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLswPortLoopbackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port loopback test table."
::= {hh3cLswSlotConf 6}
hh3cLswPortLoopbackEntry OBJECT-TYPE
SYNTAX Hh3cLswPortLoopbackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port loopback test table entry."
AUGMENTS {hh3cLswPortEntry }
::= {hh3cLswPortLoopbackTable 1}
Hh3cLswPortLoopbackEntry ::= SEQUENCE
{
hh3cLswPortLoopbackIsSupport INTEGER,
hh3cLswPortLoopbackOperate INTEGER,
hh3cLswPortLoopbackResult INTEGER,
hh3cLswPortLoopbackAutoStopSupport INTEGER,
hh3cLswPortLoopbackRemoteResult INTEGER,
hh3cLswPortLoopbackLocalResult INTEGER,
hh3cLswPortLoopbackInternalResult INTEGER,
hh3cLswPortLoopbackExternalResult INTEGER
}
hh3cLswPortLoopbackIsSupport OBJECT-TYPE
SYNTAX INTEGER
{
neither(1),
both(2),
internalOnly(3),
externalOnly(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The loopback type can be supported by current port."
::= {hh3cLswPortLoopbackEntry 1}
hh3cLswPortLoopbackOperate OBJECT-TYPE
SYNTAX INTEGER
{
stopRemoteOrLocalLoopBack(0),
internalLoopback(1),
externalLoopback(2),
remoteLoopback(3),
localLoopback(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port loopback operate type. Read operation not supported."
::= {hh3cLswPortLoopbackEntry 2}
hh3cLswPortLoopbackResult OBJECT-TYPE
SYNTAX INTEGER
{
testing (0),
testok (1),
testfailed (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loopback test result of the port, used for checking if the test is successful.
Only after the testing will the query value on the node make sense."
::= {hh3cLswPortLoopbackEntry 3}
hh3cLswPortLoopbackAutoStopSupport OBJECT-TYPE
SYNTAX INTEGER
{
support(1),
notSupport(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether this port support NEED-MANNUL-NOLOOP mode or not."
::= {hh3cLswPortLoopbackEntry 4}
hh3cLswPortLoopbackRemoteResult OBJECT-TYPE
SYNTAX INTEGER
{
loopbackTestInit(0),
loopbackTesting(1),
loopbackTestSuccessed (2),
loopbackTestFailed (3),
loopbackTestTestAndFailed (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The remote loopback test result of the port, used for checking if the
test is successful. Only after the testing will the query value on
the node make sense."
::= {hh3cLswPortLoopbackEntry 5}
hh3cLswPortLoopbackLocalResult OBJECT-TYPE
SYNTAX INTEGER
{
loopbackTestInit(0),
loopbackTesting(1),
loopbackTestSuccessed (2),
loopbackTestFailed (3),
loopbackTestTestAndFailed (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The local loopback test result of the port, used for checking if the
test is successful. Only after the testing will the query value on the
node make sense."
::= {hh3cLswPortLoopbackEntry 6}
hh3cLswPortLoopbackInternalResult OBJECT-TYPE
SYNTAX INTEGER
{
loopbackTestInit(0),
loopbackTesting(1),
loopbackTestSuccessed (2),
loopbackTestFailed (3),
loopbackTestTestAndFailed (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The internal loopback test result of the port, used for checking if
the test is successful. Only after the testing will the query value
on the node make sense."
::= {hh3cLswPortLoopbackEntry 7}
hh3cLswPortLoopbackExternalResult OBJECT-TYPE
SYNTAX INTEGER
{
loopbackTestInit(0),
loopbackTesting(1),
loopbackTestSuccessed (2),
loopbackTestFailed (3),
loopbackTestTestAndFailed (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The external loopback test result of the port, used for checking if the
test is successful. Only after the testing will the query value on the
node make sense."
::= {hh3cLswPortLoopbackEntry 8}
-- ==================================================================
-- Fabric table
-- ==================================================================
hh3cLswFabricTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLswFabricEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains the information of fabric."
::= {hh3cLswSlotConf 7}
hh3cLswFabricEntry OBJECT-TYPE
SYNTAX Hh3cLswFabricEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in hh3cLswFabricTable."
INDEX {
hh3cLswFrameIndex,
hh3cLswSlotIndex,
hh3cLswSubslotIndex,
hh3cLswFabricChannelIndex
}
::= {hh3cLswFabricTable 1}
Hh3cLswFabricEntry ::= SEQUENCE {
hh3cLswFabricChannelIndex Integer32,
hh3cLswFabricUtilIn Integer32,
hh3cLswFabricUtilOut Integer32,
hh3cLswFabricPeakIn Integer32,
hh3cLswFabricPeakInTime DateAndTime,
hh3cLswFabricPeakOut Integer32,
hh3cLswFabricPeakOutTime DateAndTime
}
hh3cLswFabricChannelIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel number of fabric."
::= {hh3cLswFabricEntry 1}
hh3cLswFabricUtilIn OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "one percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ingress utilization of fabric."
::= {hh3cLswFabricEntry 2}
hh3cLswFabricUtilOut OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "one percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Egress utilization of fabric."
::= {hh3cLswFabricEntry 3}
hh3cLswFabricPeakIn OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "one percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ingress peak of utilization for fabric."
::= {hh3cLswFabricEntry 4}
hh3cLswFabricPeakInTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ingress peak time of utilization for fabric."
::= {hh3cLswFabricEntry 5}
hh3cLswFabricPeakOut OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "one percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Egress peak of utilization for fabric."
::= {hh3cLswFabricEntry 6}
hh3cLswFabricPeakOutTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Egress peak time of utilization for fabric."
::= {hh3cLswFabricEntry 7}
-- ==================================================================
-- For reserving
-- ==================================================================
hh3cLswNetworkHealthMonitor OBJECT IDENTIFIER ::= { hh3cLswSlotConf 8 }
hh3cLswExtendModelTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLswExtendModelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the extended device models supported by the
device. Examples of extended devices include PEXs and firewall
modules."
::= {hh3cLswSlotConf 9}
hh3cLswExtendModelEntry OBJECT-TYPE
SYNTAX Hh3cLswExtendModelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry contains information about an extended device model."
INDEX
{
hh3cLswExtendModelIndex
}
::= { hh3cLswExtendModelTable 1 }
Hh3cLswExtendModelEntry ::= SEQUENCE
{
hh3cLswExtendModelIndex Integer32,
hh3cLswExtendModelDesc DisplayString
}
hh3cLswExtendModelIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the extended device model."
::= {hh3cLswExtendModelEntry 1}
hh3cLswExtendModelDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Extended device model. Examples of extended devices include PEXs and
firewall modules."
::= {hh3cLswExtendModelEntry 2}
-- ==================================================================
-- Cpu table
-- ==================================================================
hh3cLswCpuTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLswCpuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Cpu description table."
::= {hh3cLswSlotConf 10}
hh3cLswCpuEntry OBJECT-TYPE
SYNTAX Hh3cLswCpuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CPU description table entry."
INDEX { hh3cLswFrameIndex, hh3cLswSlotIndex, hh3cLswCpuIndex }
::= {hh3cLswCpuTable 1}
Hh3cLswCpuEntry ::= SEQUENCE
{
hh3cLswCpuIndex Integer32,
hh3cLswCpuEntityIndex Integer32,
hh3cLswCpuRatio Unsigned32,
hh3cLswCpuSoftwareVersion DisplayString,
hh3cLswCpuAdminStatus INTEGER,
hh3cLswCpuOperStatus INTEGER,
hh3cLswCpuPhyMemory CounterBasedGauge64,
hh3cLswCpuMemory CounterBasedGauge64,
hh3cLswCpuMemoryUsed CounterBasedGauge64,
hh3cLswCpuMemoryRatio Unsigned32
}
hh3cLswCpuIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CPU index."
::= {hh3cLswCpuEntry 1}
hh3cLswCpuEntityIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The entity index of the CPU."
::= {hh3cLswCpuEntry 2}
hh3cLswCpuRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU usage in accuracy of 1%"
::= {hh3cLswCpuEntry 3}
hh3cLswCpuSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software version of the CPU."
::= {hh3cLswCpuEntry 4}
hh3cLswCpuAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
notInstall (1),
normal (2),
fault (3),
forbidden (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU status."
::= {hh3cLswCpuEntry 5}
hh3cLswCpuOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
disable (1),
enable (2),
reset (3),
test (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"CPU operation status."
::= {hh3cLswCpuEntry 6}
hh3cLswCpuPhyMemory OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical memory on the node."
::= {hh3cLswCpuEntry 7}
hh3cLswCpuMemory OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system memory on the node.
Note that the system memory means the memory that can be used by
the software platform."
::= {hh3cLswCpuEntry 8}
hh3cLswCpuMemoryUsed OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system memory in use on the node.
Note that the system memory means the memory that can be used by
the software platform."
::= {hh3cLswCpuEntry 9}
hh3cLswCpuMemoryRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of system memory in use on the node.
Note that the system memory means the memory that can be used by
the software platform."
::= {hh3cLswCpuEntry 10}
END
|