summaryrefslogtreecommitdiff
path: root/MIBS/telco-systems/binos/PRVT-SWITCH-MIB
blob: 936a763f3353404c4e33a9c1e07acec44fee1998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
-- *********************************************************************
-- **
-- ** BATM Advanced Communications.
-- **
-- *********************************************************************
-- ** Filename: PRVT-SWITCH-MIB.mib
-- ** Project: T - Ethernet and Fast Ethernet IP Switches.
-- ** Purpose: Private MIB
-- *********************************************************************
-- (c) Copyright, 2001, BATM Advanced Communications. All rights reserved.
-- WARNING:
--
-- BY UTILIZING THIS FILE, YOU AGREE TO THE FOLLOWING:
--
-- This file is the property of BATM Advanced Communications and contains
-- proprietary and confidential information. This file is made
-- available to authorized BATM customers on the express
-- condition that neither it, nor any of the information contained
-- therein, shall be disclosed to third parties or be used for any
-- purpose other than to replace, modify or upgrade firmware and/or
-- software components of BATM manufactured equipment within the
-- authorized customer's network, and that such transfer be
-- completed in accordance with the instructions provided by
-- BATM. Any other use is strictly prohibited.
--
-- EXCEPT AS RESTRICTED BY LAW, OR AS PROVIDED IN BATM'S LIMITED
-- WARRANTY, THE SOFTWARE PROGRAMS CONTAINED IN THIS FILE ARE
-- PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES
-- OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
--
-- IN NO EVENT SHALL BATM BE LIABLE FOR ANY DAMAGES WHATSOEVER
-- INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS
-- PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR
-- OTHER CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE, OR INABILITY
-- TO USE, THE SOFTWARE CONTAINED IN THIS FILE.
--
--
--
PRVT-SWITCH-MIB DEFINITIONS ::= BEGIN

IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Integer32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI

TEXTUAL-CONVENTION,
DisplayString,
TruthValue
FROM SNMPv2-TC

NOTIFICATION-GROUP
FROM SNMPv2-CONF

privateVendorOID
FROM PRIV-VENDORDEF-MIB

ifIndex,
ifAdminStatus,
ifOperStatus
FROM IF-MIB;

prvtSwitchMib MODULE-IDENTITY
LAST-UPDATED "200906220000Z"
ORGANIZATION "BATM Advanced Communication"
CONTACT-INFO
" BATM/Telco Systems Support team
Email:
For North America: techsupport@telco.com
For North Europe: support@batm.de, info@batm.de
For the rest of the world: techsupport@telco.com"

DESCRIPTION
"The switch MIB module for managing switch
parameters"

-- revision history
REVISION "200906220000Z"
DESCRIPTION
"Add value unsupported(255) for object configL2IfaceAdminCrossOver."
REVISION "200904140000Z"
DESCRIPTION
"Add description for reportsHardwareFanStatus 0."
REVISION "200903080000Z"
DESCRIPTION
"Updated devices system OIDs."
REVISION "200902200000Z"
DESCRIPTION
"Add support for temperature high limit (reportsHardwareTemperatureScale,reportsHardwareTemperatureHighLimit)."
REVISION "200901120000Z"
DESCRIPTION
"Mark configL2IfaceDuplexSpeedSet. Add additional 10G value for
configL2IfaceDuplexSpeedSet and reportsL2IfaceDuplexSpeedGet"
REVISION "200809250000Z"
DESCRIPTION
"Add support for crossover and remote-fault-detect."
REVISION "200803280000Z"
DESCRIPTION
"Updated devices system OIDs."
REVISION "200802280000Z"
DESCRIPTION
"Added OIDs of various devices."
REVISION "200712280000Z"
DESCRIPTION
"Added sysAssemblyNumber, sysPartNumber, sysCLEI, sysHwRevision, sysManufacturingDate objects"
REVISION "200712120000Z"
DESCRIPTION
"Added configL2IfaceMtu."
REVISION "200709260000Z"
DESCRIPTION
"Added new objects in configL2IfaceTable"
REVISION "200704240000Z"
DESCRIPTION
"Updated OID definitions"
REVISION "200702060000Z"
DESCRIPTION
"Updated description of reportsHardwarePSStatus object"
REVISION "200610250000Z"
DESCRIPTION
"New OID group added"
REVISION "200607020000Z"
DESCRIPTION
"Added T-Metro-ES and Alcatel system OID."
REVISION "200606140000Z"
DESCRIPTION
"Changed mMiRIC-E1(89) to mMiRIC-E3(89)"
REVISION "200604200000Z"
DESCRIPTION
"Added new duplex and speed values"
REVISION "200602100000Z"
DESCRIPTION
"Added all missing port/module types"
REVISION "200602020000Z"
DESCRIPTION
     	 "Defined the DUAL SFP module type"       
REVISION "200512220000Z"
DESCRIPTION
"Added new object identifier for devices.
Added new notification sysIntfModuleChange.
Changed ModuleHwType modules that had '_' in them, should be with '-' instaead
m100BaseGBIC_not_installed to m100BaseGBIC-not-installed.
mCES_4TDM to mCES-4TDM,
m1250BaseSingleFiber_SFP to m1250BaseSingleFiber-SFP."
REVISION "200512080000Z"
DESCRIPTION
"Added the new sysIntfModuleChange notification for T-Metro devices."
REVISION "200510030000Z"
DESCRIPTION
"Returned the old duplex-speed mixed object for backward compatability"
REVISION "200509260000Z"
DESCRIPTION
"Separated the duplex mode and speed setting in the configL2Table"

REVISION "200509070000Z"
DESCRIPTION
"Added the m1250BaseSingleFiber_SFP(87) port type"

REVISION "200507200000Z"
DESCRIPTION
"Added the mCES_4TDM(86) port type"
REVISION "200507080000Z"
DESCRIPTION
"Removed the range values for reportsL2IfaceUnit, reportsL2IfaceSlot and
reportsL2IfacePort."

REVISION "200503070000Z"
DESCRIPTION
"Added the mCES and 31000BaseX-SFP module types for T-Metro devices."

REVISION "200502160000Z"
DESCRIPTION
"Fixed spelling errors and changed the contact info."

REVISION "200502010000Z"
DESCRIPTION
"Added TMetro to sysProductsOids, added new module types: tMetroCES,
tMetro2XSFPuplink, tMetro2F, tMetro1G"

REVISION "200406290000Z"
DESCRIPTION
"Added T6Pro to sysProductsOids, added a new module type CPM"

REVISION "200405030000Z"
DESCRIPTION
"Added support for exposing the switch series"

REVISION "200403030000Z"
DESCRIPTION
"L2 Interface name (configL2IfaceName) max size changed from 16 to 256."

REVISION "200402030000Z"
DESCRIPTION
"Addded m100BaseGBIC_not_installed to ModuleHwType."

REVISION "200311180000Z"
DESCRIPTION
"Added sysManufacturing group,sysSerialNumber."

REVISION "200310160000Z"
DESCRIPTION
"1. Added portRedundantLinkChange notification.
2. Added reportsIfJack. This table enables support of interfaces attached to
more then one physical interface.
3. Added reportsL2IfaceActiveJackIndex."

REVISION "200309090000Z"
DESCRIPTION
"Added SFP port types."

REVISION "200307020000Z"
DESCRIPTION
"Added support for reporting hardware port type"

REVISION "200305060000Z"
DESCRIPTION
"Move to SMI-V2."

REVISION "200212120000Z"
DESCRIPTION
"Added support for controlling STP topology change detection"

REVISION "200212010000Z"
DESCRIPTION
"Added support for Sniffer"

REVISION "200211210000Z"
DESCRIPTION
"Added support for RSTP"

REVISION "200211170000Z"
DESCRIPTION
"Added support for POS interface speed 155 & 622 M."

REVISION "200209090000Z"
DESCRIPTION
"Added new module for T5Pro including ATM/MLP and 5 ports SM/MM."

REVISION "200204100000Z"
DESCRIPTION
                "Add traps."
REVISION "200108140000Z"
DESCRIPTION
"Distinction between set & get flow type to support flow auto-negotiation."
REVISION "200107220000Z"
DESCRIPTION
"Added Default VLAN to configL2IfaceTable"
REVISION "200107150000Z"
DESCRIPTION
"Added new sysIntfModule types m1000BaseGBIC_installed/not_installed"
REVISION "200105170000Z"
DESCRIPTION
"Added t5ProRouter."
REVISION "200105150000Z"
DESCRIPTION
"Added reportsHardware group."
REVISION "200104190000Z"
DESCRIPTION
"Added config & reports group."
REVISION "200104150000Z"
DESCRIPTION
"Added new modules to sysIntfModule."
REVISION "200006280000Z"
DESCRIPTION
"Initial version."

::= { switch 100 }

--
-- PRIVATE BRANCH PRODUCTS
--
prvt-products OBJECT IDENTIFIER ::= { privateVendorOID 1 }
prvt-mgmt OBJECT IDENTIFIER ::= { privateVendorOID 2 }

rptr OBJECT IDENTIFIER ::= { prvt-products 1 }
bridge OBJECT IDENTIFIER ::= { prvt-products 2 }
trclam OBJECT IDENTIFIER ::= { prvt-products 3 }
router OBJECT IDENTIFIER ::= { prvt-products 4 }
switch OBJECT IDENTIFIER ::= { prvt-products 5 }
ipSwitch OBJECT IDENTIFIER ::= { prvt-products 6 }

--
-- L2 SWITCHES
--

bsw OBJECT IDENTIFIER ::= { switch 1 }
tps OBJECT IDENTIFIER ::= { switch 2 }
tpf OBJECT IDENTIFIER ::= { switch 3 }
titan OBJECT IDENTIFIER ::= { switch 5 }
titant5 OBJECT IDENTIFIER ::= { switch 7 }
edgeLinkT4 OBJECT IDENTIFIER ::= { switch 15 }
edgeLinkT5 OBJECT IDENTIFIER ::= { switch 17 }
titanPro OBJECT IDENTIFIER ::= { switch 20}
acs25L4282 OBJECT IDENTIFIER ::= { switch 500 }
acs25L4282t5 OBJECT IDENTIFIER ::= { switch 502 }
vol0215 OBJECT IDENTIFIER ::= { switch 999 }
vol4000 OBJECT IDENTIFIER ::= { switch 998 }
vol5000 OBJECT IDENTIFIER ::= { switch 996 }

--
-- Variable Type definitions
--

UnitIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This value represents the physical position of the unit inside the
stack."
SYNTAX INTEGER
{
master(1),
slave1(2),
slave2(3),
slave3(4),
slave4(5)
}

ModuleHwType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This value represents the physical type of the port or module."
SYNTAX INTEGER
{
uninstalled(1),
stacking(2),
m100BaseTx(3),
m100BaseFxVF45(4),

m1000BaseSxSCMM850(6),
m1000BaseLxSC1300(7), --Multi/Single Mode
m1000BaseSCSMLDA(8),
m1000BaseSCSMLDB(9),

m1000BaseSxVF45MM850(10),
m1000BaseLxVF451300(11), --Multi/Single Mode

m1000BaseSxMTRJMM(12),
m1000BaseLxMTRJ1300(13), --Multi/Single Mode

m10BaseFlVF45(14),
m10BaseFlVF45X4Ports(15),

m100BaseFxSCMM(16),
m100BaseFxSCSM(17),
m100BaseFxSCSM2Port(18),
m100BaseFxSCSMLD(19),
m100BaseFxSCSMLD2Port(20),

m100BaseFxMTRJMM(21),
m100BaseFxMTRJSM(22),
mDUAL-SFP(23),
mDUAL-SFP-installed(24),

m1000BaseTx(25),
m1000BaseCx(26),

mVDSLNT(30),
mVDSLLT(31),

mVDSLNTand100BaseTX(32),
mVDSLLTand100BaseTX(33),

mVDSLLT24Port(34),

mLayer31000BaseSXSCMM(35),
mLayer31000BaseLXSCSM(36),
mLayer31000BaseSXSFFMM(37),
mLayer31000BaseLXSFFSM(38),

mLayer3100BaseFXSCMM2Port(39),
mLayer3100BaseFXSCSM2Port(40),
mLayer3100BaseFXSCMM4Port(41),
mLayer3100BaseFXSCSM4Port(42),

mLayer3100BaseFXSFFMM(43),
mLayer3100BaseFXSFFSM(44),
mLayer3100BaseTX(45),
m1000BaseGBIC-installed(46),
m1000BaseGBIC-not-installed(47),

mLayer31000BaseSX-GIBIC(48),
mLayer31000BaseLX-GIBIC(49),
mLayer31000BaseCX-GIBIC(50),
mLayer31000BaseT-GIBIC(51),
mLayer3100BaseSMLCL-GIBIC(52),
mLayer3100BaseM5o6SNI-GIBIC(53),
mLayer31000BasePOSMM(54),
mLayer31000BasePOSSM(55),
mLayer3100BaseFXSFFMM20Port(56),
mLayer3100BaseFXSFFSM20Port(57),
mLayer3100BaseFXSFFMM5Port(58),
mLayer3100BaseFXSFFSM5Port(59),
mDS3ATM(60),
mDS1MLP(61),
mMLPmother(62),

m1000BaseSFP-installed(63),
mLayer31000BaseSX-SFP(65),
mLayer31000BaseLX-SFP(66),
mLayer31000BaseCX-SFP(67),
mLayer31000BaseT-SFP(68),
mLayer3100BaseSMLCL-SFP(69),
mLayer3100BaseM5o6SNI-SFP(70),
m100BaseGBIC-not-installed(71),
mLayer310GBaseSR-XFP(72),
mLayer310GBaseLR-XFP(73),
mLayer310GBaseER-XFP(74),
mLayer310GBaseSW-XFP(75),
mLayer310GBaseLW-XFP(76),
mLayer310GBaseEW-XFP(77),
mLayer310GBase-XFP(78),
m10000BaseMEDIA-not-installed(79),
mCpmCard(80),
mLayer310GBaseLRW-XFP(81),
mLayer310GBaseERW-XFP(82),
mLayer31000BaseX-SFP(83),
mCES (84),
mLayer3100BaseFX-SFP(85),
mCES-4TDM(86),
mLayer31000BaseLX-BD-SFP(87),
mMiRIC-E1(88),
mMiRIC-E3(89),
mMiRIC-T1(90),
mMiRIC-T3(91),

mLayer31000BaseSFP-Unknown (92),
m10000BaseXFP-Unknown (93),
xAUI-1G-10G (94),
mLayer3-10-1000BaseT (95),
mLayer310GBaseSMSR-XFP (96),
mLayer310GBaseSMLR-XFP (97),
mLayer310GBaseSMER-XFP (98),
mLayer310GBaseSMSW-XFP (99),
mLayer310GBaseSMLW-XFP (101),
mLayer310GBaseSMEW-XFP (102),
mLayer310GBaseSMSRW-XFP (103),
mLayer310GBaseSMLRW-XFP (104),
mLayer310GBaseSMERW-XFP (105),
mLayer310GBaseCpPgt-XFP (106),
mLayer310GBaseSMZR-XFP (107),
mLayer31000BaseZX-SFP (108),
mLayer310GBaseSMZX-XFP (109),
mLayer310GBaseSMEX-XFP (110),
mLayer31000BaseT-WithoutAN-SFP(111),
mLayer3100BaseLX-BD-SFP(112)
}

Series ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This value represents the series of the switch."
SYNTAX INTEGER
{
notExist(1),
e-series(2),
g-series(3),
t-series(4)
}
--
-- Groups
--

prvtSwitchNotifications OBJECT IDENTIFIER ::= { prvtSwitchMib 0 }
sys OBJECT IDENTIFIER ::= { prvtSwitchMib 1 }
config OBJECT IDENTIFIER ::= { prvtSwitchMib 2 }
reports OBJECT IDENTIFIER ::= { prvtSwitchMib 3 }
test OBJECT IDENTIFIER ::= { prvtSwitchMib 4 }
commands OBJECT IDENTIFIER ::= { prvtSwitchMib 5 }
prvtSwitchConformance OBJECT IDENTIFIER ::= { prvtSwitchMib 6 }

--
-- sys group
--
sysProductsOids OBJECT IDENTIFIER ::= { sys 1 }
sysIntf OBJECT IDENTIFIER ::= { sys 2 }
sysManufacturing OBJECT IDENTIFIER ::= { sys 3 }
sysSwitchingHW OBJECT IDENTIFIER ::= { sys 4 }

--
-- sysOids Parameters
--
t4Router OBJECT IDENTIFIER ::= { sysProductsOids 1 }
t5Router OBJECT IDENTIFIER ::= { sysProductsOids 2 }
t5ProRouter OBJECT IDENTIFIER ::= { sysProductsOids 3 }
t6Router OBJECT IDENTIFIER ::= { sysProductsOids 4 }
t5c-48TRouter OBJECT IDENTIFIER ::= { sysProductsOids 5 }
t5RNRouter OBJECT IDENTIFIER ::= { sysProductsOids 6 }
t5c-24TRouter OBJECT IDENTIFIER ::= { sysProductsOids 7 }
t5c-24MRouter OBJECT IDENTIFIER ::= { sysProductsOids 8 }
t5c-24FRouter OBJECT IDENTIFIER ::= { sysProductsOids 9 }
t5c-24GRouter OBJECT IDENTIFIER ::= { sysProductsOids 10 }
t5c-24GTRouter OBJECT IDENTIFIER ::= { sysProductsOids 11 }
t6pro-lc-20G OBJECT IDENTIFIER ::= { sysProductsOids 13 }
t6pro-cpm OBJECT IDENTIFIER ::= { sysProductsOids 14 }
tMetro OBJECT IDENTIFIER ::= { sysProductsOids 16 }
tMarc OBJECT IDENTIFIER ::= { sysProductsOids 17 }
aHUB1-A OBJECT IDENTIFIER ::= { sysProductsOids 18 }
tMetro-ES OBJECT IDENTIFIER ::= { sysProductsOids 19 }

tMarc-E OBJECT IDENTIFIER ::= { sysProductsOids 20 }
tMarc-EW OBJECT IDENTIFIER ::= { sysProductsOids 21 }

tMarc-WDB OBJECT IDENTIFIER ::= { sysProductsOids 22 }
tMarc-WD OBJECT IDENTIFIER ::= { sysProductsOids 23 }
tMarc-F OBJECT IDENTIFIER ::= { sysProductsOids 24 }

t5c-XG OBJECT IDENTIFIER ::= { sysProductsOids 27 }

compact OBJECT IDENTIFIER ::= { t6pro-cpm 1 }
classic OBJECT IDENTIFIER ::= { t6pro-cpm 2 }

as9205 OBJECT IDENTIFIER ::= { t5c-24TRouter 1 }
as9205-F OBJECT IDENTIFIER ::= { t5c-24FRouter 1 }

tMarc-250 OBJECT IDENTIFIER ::= { tMarc 1 }
tMarc-254 OBJECT IDENTIFIER ::= { tMarc 2 }
tMarc-254h OBJECT IDENTIFIER ::= { tMarc 3 }

tMarc-340 OBJECT IDENTIFIER ::= { tMarc 10 }
tMarc-380 OBJECT IDENTIFIER ::= { tMarc 11 }

tMarc-340-E OBJECT IDENTIFIER ::= { tMarc-E 1 }
tMarc-380-E OBJECT IDENTIFIER ::= { tMarc-E 2 }
tMarc-340-EW OBJECT IDENTIFIER ::= { tMarc-EW 1 }
tMarc-380-EW OBJECT IDENTIFIER ::= { tMarc-EW 2 }

tMarc-340WD-B OBJECT IDENTIFIER ::= { tMarc-WDB 1 }

tMarc-340WD OBJECT IDENTIFIER ::= { tMarc-WD 1 }

tMarc-340-F OBJECT IDENTIFIER ::= { tMarc-F 1 }

tMarc-280 OBJECT IDENTIFIER ::= { tMarc 20 }

dm9225 OBJECT IDENTIFIER ::= { tMarc-250 1 }
dm9225-E OBJECT IDENTIFIER ::= { tMarc-254 1 }
dm9234 OBJECT IDENTIFIER ::= { tMarc-340 1 }

alcatel-7250 OBJECT IDENTIFIER ::= { tMetro 1 }
alcatel-7250-ES OBJECT IDENTIFIER ::= { tMetro-ES 1 }
alcatel-7250-ESA OBJECT IDENTIFIER ::= { tMetro-ES 2 }

tMetro-ESA OBJECT IDENTIFIER ::= { tMetro-ES 3 }

as9220 OBJECT IDENTIFIER ::= { tMetro-ES 10 }
tMetro-200S OBJECT IDENTIFIER ::= { tMetro-ES 11 }

as9215 OBJECT IDENTIFIER ::= { t5c-XG 1 }

bI-Ethernet OBJECT IDENTIFIER ::= { aHUB1-A 1 }
fI-Ethernet OBJECT IDENTIFIER ::= { aHUB1-A 2 }

-- Start L2 products
t5c OBJECT IDENTIFIER ::= { sysProductsOids 100 }
t5cgt OBJECT IDENTIFIER ::= { sysProductsOids 222 }
t5g OBJECT IDENTIFIER ::= { sysProductsOids 333 }
v24s OBJECT IDENTIFIER ::= { sysProductsOids 444 }

-- Start VoIP products
edgeGate281 OBJECT IDENTIFIER ::= { sysProductsOids 1000 }
edgeGate281SYS OBJECT IDENTIFIER ::= { sysProductsOids 1001 }
edgeGate231 OBJECT IDENTIFIER ::= { sysProductsOids 1010 }
edgeGate282 OBJECT IDENTIFIER ::= { sysProductsOids 1020 }
edgeGate282S OBJECT IDENTIFIER ::= { sysProductsOids 1021 }
edgeGate482S OBJECT IDENTIFIER ::= { sysProductsOids 1022 }
edgeGate483S OBJECT IDENTIFIER ::= { sysProductsOids 1023 }
edgeGate483D OBJECT IDENTIFIER ::= { sysProductsOids 1024 }

edgeGate201 OBJECT IDENTIFIER ::= { sysProductsOids 1031 }
edgeGate232 OBJECT IDENTIFIER ::= { sysProductsOids 1041 }

ac500 OBJECT IDENTIFIER ::= { sysProductsOids 1050 }
ac505 OBJECT IDENTIFIER ::= { ac500 1 }
ac512 OBJECT IDENTIFIER ::= { ac500 2 }
ac524 OBJECT IDENTIFIER ::= { ac500 3 }

--
-- sys/Interfaces Parameters
--
sysIntfTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysIntfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the interfaces module type."
::= { sysIntf 1 }

sysIntfEntry OBJECT-TYPE
SYNTAX SysIntfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"sysIntfEntry"
INDEX { sysStackNo, sysSlotNo }
::= { sysIntfTable 1 }

SysIntfEntry ::= SEQUENCE {
sysStackNo UnitIndex,
sysSlotNo Integer32,
sysIntfUnitExist INTEGER,
sysIntfModule ModuleHwType
}

sysStackNo OBJECT-TYPE
SYNTAX UnitIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the switch"
::= { sysIntfEntry 1 }

sysSlotNo OBJECT-TYPE
SYNTAX Integer32(0..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates a single instance of a slot"
::= { sysIntfEntry 2 }

sysIntfUnitExist OBJECT-TYPE
SYNTAX INTEGER {
uninstalled(1),
installed(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates interface module type"
::= { sysIntfEntry 3 }

sysIntfModule OBJECT-TYPE
SYNTAX ModuleHwType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates interface module type"
::= { sysIntfEntry 4 }

sysSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the device's serial number, which is entered during the manufacturing process.
"
::= { sysManufacturing 1 }

sysSwitchModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the equipment model"
::= { sysManufacturing 2 }

sysAssemblyNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the equipment assembly number"
::= { sysManufacturing 3 }

sysPartNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the equipment part number"
::= { sysManufacturing 4 }

sysCLEI OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the common language equipment identification"
::= { sysManufacturing 5 }

sysHwRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the HW revision"
::= { sysManufacturing 6 }

sysManufacturingDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the manufacturing date"
::= { sysManufacturing 7 }

sysSwitchSeries OBJECT-TYPE
SYNTAX Series
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object displays the switch series."
::= { sysSwitchingHW 1 }

--
-- config group
--

--
-- L2 Group
--
--
-- This group provides interface control and information not easily
-- available from other MIBs.
--
configL2 OBJECT IDENTIFIER ::= { config 2 }

configL2SpanOnOff OBJECT-TYPE
SYNTAX INTEGER {
enableSTP(1),
disable(2),
enableRSTP(3),
enablePVST(4),
enableMST(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables/disables Spanning Tree. When Spanning Tree is disabled, the switch's ports are placed in
forwarding mode, regardless of the current Spanning Tree state. When re-enabled, the normal state
transitions take place."
::= { configL2 1 }

configL2IfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConfigL2IfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Interfaces and their properties"
::= { configL2 2 }

configL2IfaceEntry OBJECT-TYPE
SYNTAX ConfigL2IfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index of interfaces."
INDEX { configL2IfaceUnit, configL2IfaceSlot,configL2IfacePort }
::= { configL2IfaceTable 1 }

ConfigL2IfaceEntry ::= SEQUENCE {
configL2IfaceUnit Integer32,
configL2IfaceSlot Integer32,
configL2IfacePort Integer32,
configL2IfaceName DisplayString,
configL2IfaceEnable INTEGER,
configL2IfaceSTPEnable INTEGER,
configL2IfaceDuplexSpeedSet INTEGER,
configL2IfaceFlow INTEGER,
configL2IfaceBackpressure INTEGER,
configL2IfaceResetCounters INTEGER,
configL2IfaceDefaultVID Integer32,
configL2IfaceSnifferIfIndex Integer32,
configL2TopologyChangeDetection TruthValue,
configL2IfaceDuplexModeSet INTEGER,
configL2IfaceSpeedSet INTEGER,
configL2IfaceBroadcastRateLimit Integer32,
configL2IfaceMulticastRateLimit Integer32,
configL2IfaceUnknownRateLimit Integer32,
configL2IfaceBroadcastBurstSize Integer32,
configL2IfaceMulticastBurstSize Integer32,
configL2IfaceUnknownBurstSize Integer32,
configL2IfaceMtu Integer32,
configL2IfaceAdminCrossOver INTEGER,
configL2IfaceRemoteFaultDetect INTEGER
}

configL2IfaceUnit OBJECT-TYPE
SYNTAX Integer32(1..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies a unit in the
Interface Table."
::= { configL2IfaceEntry 1 }

configL2IfaceSlot OBJECT-TYPE
SYNTAX Integer32(1..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies a slot within the unit
in the Interface Table."
::= { configL2IfaceEntry 2 }

configL2IfacePort OBJECT-TYPE
SYNTAX Integer32(1..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies a port within the slot
in the Interface Table."
::= { configL2IfaceEntry 3 }

configL2IfaceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The textual name of this interface, e.g., 'John'."
::= { configL2IfaceEntry 4 }

configL2IfaceEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables (1)or disables (2) control for the interface.
For this product, this is the ONLY way to enable or
disable the interface. 'ifAdminStatus' in RFC1213 and
'dot1dStpPortEnable' in RFC1493 are both implemented
as 'read-only'."
::= { configL2IfaceEntry 5 }

configL2IfaceSTPEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables (1) and disables (2) Spanning Tree operation for this
interface."
::= { configL2IfaceEntry 6 }

configL2IfaceDuplexSpeedSet OBJECT-TYPE
SYNTAX INTEGER {
autonegotiate(1),
half-10(2),
full-10(3),
half-100(4),
full-100(5),
half-1000(6),
full-1000(7),
pos-155(8),
pos-622(9),
full-10000(10),
half-auto(11),
full-auto(12),
auto-10(13),
auto-100(14),
auto-1000 (16),
illegal(99)
}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The desired speed and duplex mode for the interface. If the selected
control is not available for the interface, a value of illegal (99)
is returned. If the port type does NOT support the
default of autonegotiate (1), then the application will
initialize the port to a valid value (e.g., 1000full (6)).
Note that not all controls are available for all interfaces.
For example, only full-1000 (6) is available for Gigabit
Ethernet interfaces.

As this object was marked as obsolete the following two
configurable parameters of an interface should be used:
configL2IfaceDuplexModeSet, configL2IfaceSpeedSet "
::= { configL2IfaceEntry 7 }

configL2IfaceFlow OBJECT-TYPE
SYNTAX INTEGER {
autonegotiate(1), -- only for giga
flowon(2),
flowoff(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired flow mode for the interface. If the selected control is not available
on the interface, a value of illegal (99) is returned. If the port type does NOT support
the default value of autonegotiate (1), then the application will initialize the port to a
valid value (e.g., 1000full (6)).Note that not all controls are available for all interfaces.
For example, only full-1000 (6) is available for Gigabit Ethernet interfaces."
::= { configL2IfaceEntry 8 }

configL2IfaceBackpressure OBJECT-TYPE
SYNTAX INTEGER {
backpressureon(1),
backpressureoff(2),
illegal(99)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired back-pressure mode for the interface.
If the selected control is not available on the interface,
a value of illegal (99) is returned."
::= { configL2IfaceEntry 9 }

configL2IfaceResetCounters OBJECT-TYPE
SYNTAX INTEGER {
noop(1),
reset(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables resetting the statistics counters selected for this
port."
::= { configL2IfaceEntry 10 }

configL2IfaceDefaultVID OBJECT-TYPE
SYNTAX Integer32(1..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object sets the default VLAN ID according to 802.1Q."
::= { configL2IfaceEntry 11 }

configL2IfaceSnifferIfIndex OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object connects this port to a sniffer port indexed by the specified ifIndex.
Setting this value to 0 disconnects this port from the sniffer."
::= { configL2IfaceEntry 12 }

configL2TopologyChangeDetection OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object controls the STP topology change detection for this interface."
::= { configL2IfaceEntry 13 }

configL2IfaceDuplexModeSet OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
full(2),
half(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The duplex mode for the interface. If the port type does NOT support
the default of autonegotiate (1), then the application will
initialize the port to a valid value (e.g., full (2))."
::= { configL2IfaceEntry 14 }

configL2IfaceSpeedSet OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
speed-10(2),
speed-100(3),
speed-1000(4),
speed-10000(5),
pos-155(6),
pos-622(7),
illegal(99)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired speed and duplex mode for the interface. If the selected
control is not available for the interface, a value of illegal (99)
is returned. If the port type does NOT support the
default of autonegotiate (1), then the application will
initialize the port to a valid value (e.g., 1000 (3)).
Note that not all controls are available for all interfaces.
For example, only 1000 (4) is available for Gigabit
Ethernet interfaces."
::= { configL2IfaceEntry 15 }

configL2IfaceBroadcastRateLimit OBJECT-TYPE
SYNTAX Integer32(-1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rate limit broadcast traffic. Must be a number between 64Kbps and 1Gbps,
specified in Kbps."
::= { configL2IfaceEntry 16 }

configL2IfaceMulticastRateLimit OBJECT-TYPE
SYNTAX Integer32(-1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rate limit multicast traffic. Must be a number between 64Kbps and 1Gbps,
specified in Kbps."
::= { configL2IfaceEntry 17 }

configL2IfaceUnknownRateLimit OBJECT-TYPE
SYNTAX Integer32(-1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rate limit unknown traffic. Must be a number between 64Kbps and 1Gbps,
specified in Kbps. For detail information see documentation."
::= { configL2IfaceEntry 18 }

configL2IfaceBroadcastBurstSize OBJECT-TYPE
SYNTAX Integer32(-1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Burst size broadcast traffic. Must be a number between 12Kbps and 1Mbps,
specified in Kbps."
::= { configL2IfaceEntry 19 }

configL2IfaceMulticastBurstSize OBJECT-TYPE
SYNTAX Integer32(-1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Burst size multicast traffic. Must be a number between 12Kbps and 1Mbps,
specified in Kbps."
::= { configL2IfaceEntry 20 }

configL2IfaceUnknownBurstSize OBJECT-TYPE
SYNTAX Integer32(-1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Burst size unknown traffic. Must be a number between 12Kbps and 1Mbps,
specified in Kbps. For detail information see documentation."
::= { configL2IfaceEntry 21 }

configL2IfaceMtu OBJECT-TYPE
SYNTAX Integer32 (512..9216)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Maximum Transmission Unit (in octets) of the interface."
DEFVAL { 1528 }
::= { configL2IfaceEntry 22 }

configL2IfaceAdminCrossOver OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
mdi(2),
mdi-x(3),
unsupported(255)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative MDI/MDI-X cable connection status of ports, as specified in IEEE 803.2.
The mdi-x mode (crossover) is configured (3), the interface works in MDI-X mode.
The mdi mode (2) defines port to work in standard MDI mode.
The auto (1) defines automatic crossover detection, and any type of MDI/MDI-X cabling can be used on the port.
Note: This attribute can be configured only on interfaces that support that option."
::= { configL2IfaceEntry 23 }

configL2IfaceRemoteFaultDetect OBJECT-TYPE
SYNTAX INTEGER {
enableRemoteFaultDetect(1),
disableRemoteFaultDetect(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls the remote fault detection on interfaces, connected to 100Base Fiber pair.
Once enabled (1), the switch will indicate link-down event on the interface, once remote
peer detects link down.
Note: Relevant only on 100Base Fiber interfaces."
::= { configL2IfaceEntry 24 }

--
-- reports group
--
reportsL2 OBJECT IDENTIFIER ::= { reports 1 }

--
-- L2 Group
--
--
-- This group provides interface information not easily
-- available from other MIBs.
--

reportsL2IfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF ReportsL2IfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Interfaces and their properties"
::= { reportsL2 1 }

reportsL2IfaceEntry OBJECT-TYPE
SYNTAX ReportsL2IfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index of interfaces."
INDEX { reportsL2IfaceUnit, reportsL2IfaceSlot,reportsL2IfacePort }
::= { reportsL2IfaceTable 1 }

ReportsL2IfaceEntry ::= SEQUENCE {
reportsL2IfaceUnit Integer32,
reportsL2IfaceSlot Integer32,
reportsL2IfacePort Integer32,
reportsL2IfaceBridgeIndex Integer32,
reportsL2IfaceType INTEGER,
reportsL2IfaceLink INTEGER,
reportsL2IfaceDuplexSpeedGet INTEGER,
reportsL2IfaceTXOctetsNoErr Counter32,
reportsL2IfaceTXPacketsNoErr Counter32,
reportsL2IfaceRXOctetsNoErr Counter32,
reportsL2IfaceRXPacketsNoErr Counter32,
reportsL2IfaceIfInOctets Counter32,
reportsL2IfaceIfInUcastPkts Counter32,
reportsL2IfaceIfInNUcastPkts Counter32,
reportsL2IfaceIfInDiscards Counter32,
reportsL2IfaceIfInErrors Counter32,
reportsL2IfaceIfInUnknownProtos Counter32,
reportsL2IfaceIfOutOctets Counter32,
reportsL2IfaceIfOutUcastPkts Counter32,
reportsL2IfaceIfOutNUcastPkts Counter32,
reportsL2IfaceIfOutDiscards Counter32,
reportsL2IfaceIfOutErrors Counter32,
reportsL2IfaceStatsDropEvents Counter32,
reportsL2IfaceStatsOctets Counter32,
reportsL2IfaceStatsPkts Counter32,
reportsL2IfaceStatsBroadcastPkts Counter32,
reportsL2IfaceStatsMulticastPkts Counter32,
reportsL2IfaceStatsCRCAlignErrors Counter32,
reportsL2IfaceStatsUndersizePkts Counter32,
reportsL2IfaceStatsOversizePkts Counter32,
reportsL2IfaceStatsFragments Counter32,
reportsL2IfaceStatsJabbers Counter32,
reportsL2IfaceStatsCollisions Counter32,
reportsL2IfaceStatsPkts64Octets Counter32,
reportsL2IfaceStatsPkts65to127Octets Counter32,
reportsL2IfaceStatsPkts128to255Octets Counter32,
reportsL2IfaceStatsPkts256to511Octets Counter32,
reportsL2IfaceStatsPkts512to1023Octets Counter32,
reportsL2IfaceStatsPkts1024to1518Octets Counter32,
reportsL2IfaceFlow INTEGER,
reportsL2IfaceHWType ModuleHwType,
reportsL2IfaceActiveJackIndex Integer32
}

reportsL2IfaceUnit OBJECT-TYPE
SYNTAX Integer32(1..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies a unit in the
Interface Table."
::= { reportsL2IfaceEntry 1 }

reportsL2IfaceSlot OBJECT-TYPE
SYNTAX Integer32 (1..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies a slot within the unit
in the Interface Table."
::= { reportsL2IfaceEntry 2 }

reportsL2IfacePort OBJECT-TYPE
SYNTAX Integer32(1..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies a port within the slot
in the Interface Table."
::= { reportsL2IfaceEntry 3 }

reportsL2IfaceBridgeIndex OBJECT-TYPE
SYNTAX Integer32(1..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the bridge index of this port."
::= { reportsL2IfaceEntry 4 }

reportsL2IfaceType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
regular1822(2),
hdh1822(3),
ddn-x25(4),
rfc877-x25(5),
ethernet-csmacd(6),
iso88023-csmacd(7),
iso88024-tokenBus(8),
iso88025-tokenRing(9),
iso88026-man(10),
starLan(11),
proteon-10Mbit(12),
proteon-80Mbit(13),
hyperchannel(14),
fddi(15),
lapb(16),
sdlc(17),
ds1(18), -- T-1
e1(19), -- European equivalent of T-1
basicISDN(20),
primaryISDN(21), -- proprietary serial
propPointToPointSerial(22),
ppp(23),
softwareLoopback(24),
eon(25), -- CLNP over IP [11]
ethernet-3Mbit(26),
nsip(27), -- XNS over IP
slip(28), -- generic SLIP
ultra(29), -- ULTRA technologies
ds3(30), -- T-3
sip(31), -- SMDS
frame-relay(32)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of interface, repeated here from the definitions
in RFC1213 as a matter of convenience."
::= { reportsL2IfaceEntry 5 }

reportsL2IfaceLink OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of Link Detect on the interface."
::= { reportsL2IfaceEntry 6 }

reportsL2IfaceDuplexSpeedGet OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
half-10(2),
full-10(3),
half-100(4),
full-100(5),
half-1000(6),
full-1000(7),
pos-155(8),
pos-622(9),
full-10000(10),
illegal(99)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual speed and duplex for the interface. If the
interface is not configured to one of the acceptable
values, a value of illegal (99) is returned."
::= { reportsL2IfaceEntry 7 }

reportsL2IfaceTXOctetsNoErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets transmitted from the interface. This
number does not include octets with errors."
::= { reportsL2IfaceEntry 8 }

reportsL2IfaceTXPacketsNoErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets transmitted from the interface. This
number does not include packets with errors."
::= { reportsL2IfaceEntry 9 }

reportsL2IfaceRXOctetsNoErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets received on the interface. This
number does not include octets with errors."
::= { reportsL2IfaceEntry 10 }

reportsL2IfaceRXPacketsNoErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received on the interface. This
number does not include packets with errors."
::= { reportsL2IfaceEntry 11 }

reportsL2IfaceIfInOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received on the
interface, including framing characters."
::= { reportsL2IfaceEntry 12 }

reportsL2IfaceIfInUcastPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of subnetwork-unicast packets
delivered to a higher-layer protocol."
::= { reportsL2IfaceEntry 13 }

reportsL2IfaceIfInNUcastPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of non-unicast (i.e., subnetwork-
broadcast or subnetwork-multicast) packets
delivered to a higher-layer protocol."
::= { reportsL2IfaceEntry 14 }

reportsL2IfaceIfInDiscards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound packets that were chosen
to be discarded even if no errors that prevent their deliverability
to a higher-layer protocol had been detected. One possible reason for
discarding such a packet could be to free buffer space."
::= { reportsL2IfaceEntry 15 }

reportsL2IfaceIfInErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound packets that contained
errors preventing them from being deliverable to a
higher-layer protocol."
::= { reportsL2IfaceEntry 16 }

reportsL2IfaceIfInUnknownProtos OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received via the interface
that were discarded because of an unknown or
unsupported protocol."
::= { reportsL2IfaceEntry 17 }

reportsL2IfaceIfOutOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted out of the
interface, including framing characters."
::= { reportsL2IfaceEntry 18 }

reportsL2IfaceIfOutUcastPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that higher-level
protocols requested to be transmitted to a
subnetwork-unicast address, including those that
were discarded or not sent."
::= { reportsL2IfaceEntry 19 }

reportsL2IfaceIfOutNUcastPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that higher-level
protocols requested to be transmitted to a non-
unicast (i.e., a subnetwork-broadcast or
subnetwork-multicast) address, including those
that were discarded or not sent."
::= { reportsL2IfaceEntry 20 }

reportsL2IfaceIfOutDiscards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound packets that were chosen
to be discarded even if no errors that prevented their
transmission had been detected. One
possible reason for discarding such a packet could
be to free up buffer space."
::= { reportsL2IfaceEntry 21 }

reportsL2IfaceIfOutErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound packets that could not be
transmitted because of errors."
::= { reportsL2IfaceEntry 22 }

reportsL2IfaceStatsDropEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of events in which packets
were dropped by the probe due to lack of resources.
Note that this number is not necessarily the number of
packets dropped; it is just the number of times this
condition has been detected."
::= { reportsL2IfaceEntry 23 }

reportsL2IfaceStatsOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets of data (including
those in bad packets) received on the
network (excluding framing bits but including
FCS octets).

This object can be used as a reasonable estimate of
Ethernet utilization. If greater precision is
desired, the etherStatsPkts and etherStatsOctets
objects should be sampled before and after a common
interval. The differences in the sampled values are
Pkts and Octets, respectively, and the number of
seconds in the interval is Interval. These values
are used to calculate the Utilization as follows:

Pkts * (9.6 + 6.4) + (Octets * .8)
Utilization = -------------------------------------
Interval * 10,000

The result of this equation is the Ethernet segment utilization
which is the percent utilization of the ethernet
segment on a 0 to 100 percent scale."
::= { reportsL2IfaceEntry 24 }

reportsL2IfaceStatsPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad packets,
broadcast packets, and multicast packets) received."
::= { reportsL2IfaceEntry 25 }

reportsL2IfaceStatsBroadcastPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good packets received that were
directed to the broadcast address. Note that this
does not include multicast packets."
::= { reportsL2IfaceEntry 26 }

reportsL2IfaceStatsMulticastPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good packets received that were
directed to a multicast address. Note that this
number does not include packets directed to the
broadcast address."
::= { reportsL2IfaceEntry 27 }

reportsL2IfaceStatsCRCAlignErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that
had a length (excluding framing bits, but
including FCS octets) of between 64 and 1518
octets, inclusive, but had either a bad
Frame Check Sequence (FCS) with an integral
number of octets (FCS Error) or a bad FCS with
a non-integral number of octets (Alignment Error)."
::= { reportsL2IfaceEntry 28 }

reportsL2IfaceStatsUndersizePkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were
less than 64 octets long (excluding framing bits,
but including FCS octets) and were otherwise well
formed."
::= { reportsL2IfaceEntry 29 }

reportsL2IfaceStatsOversizePkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were
longer than 1518 octets (excluding framing bits,
but including FCS octets) and were otherwise
well formed."
::= { reportsL2IfaceEntry 30 }

reportsL2IfaceStatsFragments OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were less
than 64 octets in length (excluding framing bits but
including FCS octets) and had either a bad Frame
Check Sequence (FCS) with an integral number of
octets (FCS Error) or a bad FCS with a non-integral
number of octets (Alignment Error).

Note that it is entirely normal for
etherStatsFragments to increment. This is because
it counts both runts (which are normal occurrences
due to collisions) and noise hits."
::= { reportsL2IfaceEntry 31 }

reportsL2IfaceStatsJabbers OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were
longer than 1518 octets (excluding framing bits,
but including FCS octets), and had either a bad
Frame Check Sequence (FCS) with an integral number
of octets (FCS Error) or a bad FCS with a
non-integral number of octets (Alignment Error).

Note that this definition of jabber is different
from the definition in IEEE-802.3 section 8.2.1.5
(10BASE5) and section 10.3.1.4 (10BASE2). These
documents define jabber as the condition in which any
packet exceeds 20 ms. The allowed range to detect
jabber is between 20 ms and 150 ms."
::= { reportsL2IfaceEntry 32 }

reportsL2IfaceStatsCollisions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the total number of collisions
on this Ethernet segment.

The value returned will depend on the RMON probe's location.
Sections 8.2.1.3 (10BASE-5) and 10.3.1.3 (10BASE-2) of
IEEE standard 802.3 states that a station must detect a collision in
the receive mode if three or more stations are
transmitting simultaneously. A repeater port must
detect a collision when two or more stations are
transmitting simultaneously. Thus a probe placed on
a repeater port could record more collisions than a
probe connected to a station on the same segment
would.

Probe location plays a much smaller role when
considering 10BASE-T. Section 14.2.1.4 (10BASE-T) of IEEE
standard 802.3 defines a collision as the
simultaneous presence of signals on the DO and RD
circuits (transmitting and receiving at the same
time). A 10BASE-T station can only detect
collisions when it is transmitting. Thus probes
placed on a station and a repeater, should report
the same number of collisions.

Note also that an RMON probe inside a repeater
should ideally report collisions between the
repeater and one or more other hosts (transmit
collisions as defined by IEEE 802.3k) plus receiver
collisions observed on any coaxial segments to which
the repeater is connected."
::= { reportsL2IfaceEntry 33 }

reportsL2IfaceStatsPkts64Octets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were 64 octets in length
(excluding framing bits but including FCS octets)."
::= { reportsL2IfaceEntry 34 }

reportsL2IfaceStatsPkts65to127Octets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
65 and 127 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { reportsL2IfaceEntry 35 }

reportsL2IfaceStatsPkts128to255Octets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
128 and 255 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { reportsL2IfaceEntry 36 }

reportsL2IfaceStatsPkts256to511Octets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
256 and 511 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { reportsL2IfaceEntry 37 }

reportsL2IfaceStatsPkts512to1023Octets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
512 and 1023 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { reportsL2IfaceEntry 38 }

reportsL2IfaceStatsPkts1024to1518Octets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
1024 and 1518 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { reportsL2IfaceEntry 39 }

reportsL2IfaceFlow OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
flowon(2),
flowoff(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The flow control for the interface."
::= { reportsL2IfaceEntry 40 }

reportsL2IfaceHWType OBJECT-TYPE
SYNTAX ModuleHwType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HW type of the interface."
::= { reportsL2IfaceEntry 41 }

reportsL2IfaceActiveJackIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current active jack index."
::= { reportsL2IfaceEntry 42 }

reportsHardware OBJECT IDENTIFIER ::= { reports 2 }
--
-- Hardware Group
--
--
-- This group provides general hardware information not from other MIBs.
--

reportsHardwarePSStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each OCTET holds the status of 1 power supply or if supported,
a status of its corresponding power supply fan. Every octet can
show one of the following states:
0 - power supply not installed;
1 - power supply is installed but does not function correctly;
2 - power supply is installed and working OK;
There are devices, which can also show status of the Fan,
attached to the power supply. All devices which support the Power
Supply fan, will display their status in series of octet pairs.
The fan status octet will be displayed right after the supply
status octet. "
::= { reportsHardware 1 }

reportsHardwareFanStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each OCTET holds the status of 1 fan
0 - Fan stopped
1 - Fan failed
2 - Fan OK"
::= { reportsHardware 2 }

reportsHardwareTemperature OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The internal temperature of the unit in degrees Celsius."
::= { reportsHardware 3 }

reportsHardwarePSVoltage OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each OCTET holds the voltage of a corresponding power supply. Every octet can
show one of the following states:
0 - power supply not installed or voltage information is not supported;
1-C - power supply in V, hexadecimal;"
::= { reportsHardware 4 }

reportsHardwareTemperatureScale OBJECT-TYPE
SYNTAX INTEGER { celsius(1),
fahrenheit(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Displays the scale used - Celsius (Centigrade) or Fahrenheit when measuring CPU temperature. The value of this object determines the type of scale used for the values of reportsHardwareTemperature and reportsHardwareTemperatureHighLimit objects."
DEFVAL { celsius }
::= { reportsHardware 5 }

reportsHardwareTemperatureHighLimit OBJECT-TYPE
SYNTAX INTEGER (20..70)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Displays the highest allowed Celsius (Centigrade) or Fahrenheit temperature at the unit CPU area. When this limit is reached an SNMP notification is sent."
DEFVAL { 55 }
-- Default value in Celsius is 55, or 131 in Fahrenheit; Allowed range is <20-70> for Celsius, <68-158> in Fahrenheit
::= { reportsHardware 6 }

reportsHardwareDoorStatus OBJECT-TYPE
SYNTAX INTEGER (0..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of door
0 - Door not installed
1 - Door open
2 - Door closed"
::= { reportsHardware 7 }

reportsIfJack OBJECT IDENTIFIER ::= { reports 3 }
--
-- Hardware Group
--
--
-- This group provides general hardware information not from other MIBs.
--

reportsIfJackTable OBJECT-TYPE
SYNTAX SEQUENCE OF ReportsIfJackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the external jacks attached to
MAUs attached to an interface."
::= { reportsIfJack 2 }

reportsIfJackEntry OBJECT-TYPE
SYNTAX ReportsIfJackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing information
about a particular jack."
INDEX { reportsL2IfaceUnit,reportsL2IfaceSlot,
reportsL2IfacePort,reportsIfJackIndex }
::= { reportsIfJackTable 1 }

ReportsIfJackEntry ::=
SEQUENCE {
reportsIfJackIndex Integer32,
reportsIfJackType ModuleHwType
}

reportsIfJackIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This variable uniquely identifies the jack
described by this entry from among other jacks
attached to the same MAU."
::= { reportsIfJackEntry 1 }

reportsIfJackType OBJECT-TYPE
SYNTAX ModuleHwType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The jack connector type, as it appears on the
outer side of the system."
::= { reportsIfJackEntry 2 }

-- Notifications for use by prvtSwitchMib

cpuTemperatureExceeded NOTIFICATION-TYPE
OBJECTS { reportsHardwareTemperature }
STATUS current
DESCRIPTION
"The cpuTemperatuteExceeded trap indicates that the sending
agent senses that the internal temperature has passed the
program threshold."
::= {prvtSwitchNotifications 1}

powerSupplyStatusChange NOTIFICATION-TYPE
OBJECTS { reportsHardwarePSStatus }
STATUS current
DESCRIPTION
"The powerSupplyStatusChange trap indicates that the sending
agent senses a change in the status of one of the power supplies."
::= {prvtSwitchNotifications 2}

fanStatusChange NOTIFICATION-TYPE
OBJECTS { reportsHardwareFanStatus }
STATUS current
DESCRIPTION
"The fanStatusChange trap indicates that the sending
agent senses a change in the status of one of the fans."
::= {prvtSwitchNotifications 3}

portSecurityViolation NOTIFICATION-TYPE
OBJECTS { ifIndex }
STATUS current
DESCRIPTION
"The port security violation notification indicates that a port security violation has been detected, e.g more MAC adresses have been learned on that port than the number allowed."
::= { prvtSwitchNotifications 4}

portRedundantLinkChange NOTIFICATION-TYPE
OBJECTS { ifAdminStatus, ifOperStatus, reportsL2IfaceLink }
STATUS current
DESCRIPTION
"The port redundant link change notification indicates that the physical state of a redundant (i.e.
blocked or discarding) link has changed from link-up
to link down or vice versa."
::= { prvtSwitchNotifications 5}

sysIntfModuleChange NOTIFICATION-TYPE
OBJECTS { sysIntfModule}
STATUS current
DESCRIPTION
"The System Interface Module change notification indicates
that the physical status of a module in the
unit has changed."
::= { prvtSwitchNotifications 6}

prvtLogNotifyFull NOTIFICATION-TYPE
-- OBJECTS { }
STATUS current
DESCRIPTION
"Log buffer is almost full."
::= { prvtSwitchNotifications 7}

doorStatusChange NOTIFICATION-TYPE
OBJECTS { reportsHardwareDoorStatus }
STATUS current
DESCRIPTION
"The doorStatusChange trap indicates that the sending
agent senses a change in the status of the door."
::= {prvtSwitchNotifications 8}

-- *******************************************************************
-- Conformance Information
-- *******************************************************************

prvtSwitchMIBGroups OBJECT IDENTIFIER ::= { prvtSwitchConformance 2 }

prvtSwitchNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
cpuTemperatureExceeded,
powerSupplyStatusChange,
fanStatusChange,
portSecurityViolation,
portRedundantLinkChange,
sysIntfModuleChange,
doorStatusChange
}
STATUS current
DESCRIPTION
"Private Notification Group."
::= { prvtSwitchMIBGroups 3 }

END