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

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

    RowStatus
        FROM SNMPv2-TC

    AePwe3AggInstance,
    AePwe3T1Instance,
    AePwe3BundleInstance,
    PerfCurrentCount,
    PerfInvalidFlag,
    AeThresholdCrossingIndex,
    AeThresholdCrossingPointer
        FROM AE-TC

    pSeries
        FROM AE-ALARM-TABLE-MIB
    ;

aePmModule MODULE-IDENTITY
    LAST-UPDATED "201001150000Z"
    ORGANIZATION "Calix Networks, Inc."
    CONTACT-INFO
        "   Calix Networks, Inc.

        Postal: 1035 North McDowell Boulevard
            Petaluma, CA  94954-1173
            USA

         Phone: +1 707 766 3000
           Fax: +1 707 766 3100

        E-mail: mib-info@calix.com"
    DESCRIPTION "This management information module contains AE ONT performance statistics."

    REVISION "201001150000Z"
    DESCRIPTION "Initial release."
    ::= { pSeries 5 }

    aePmTCModule        OBJECT IDENTIFIER ::= { aePmModule 1 }
    aePwe3PmModule      OBJECT IDENTIFIER ::= { aePmModule 2 }

--------------------------------------------------------------------------
--
-- General PM Design:
-- Each group of stats requires 4 tables:
--   1 current 15-minute bucket
--   1..n interval 15-minute buckets (typically 96 of these to cover a 24-hour period)
--   1 current 24-hour bucket
--   1..n interval 24-hour buckets (typically 1 of these buckets for yesterday)
--
--------------------------------------------------------------------------

--************************************************************************
--
-- AE PM TC (threshold crossing) Module
--      Placeholder. Not currently implemented.
--
--************************************************************************
aeThresholdCrossingTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF AeThresholdCrossingEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "This table contains threshold values for the
         performance monitoring parameters maintained by other
         entities. Other entities may point to this table.
         Multiple other entities may point to a single entry in
         this table.

         The convention for threshold crossing values is a
         value of 0 means the threshold value is not being
         checked, i.e., the TCA is disabled."
    ::= { aePmTCModule 1 }

aeThresholdCrossingEntry OBJECT-TYPE
    SYNTAX      AeThresholdCrossingEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Each entry contains one set of threshold crossing
         values."
    INDEX       { aeThresholdCrossingIndex }
    ::= { aeThresholdCrossingTable 1 }

AeThresholdCrossingEntry ::=
    SEQUENCE {
        aeThresholdCrossingIndex
            AeThresholdCrossingIndex,
        aeThresholdCrossingValue1
            PerfCurrentCount,
        aeThresholdCrossingValue2
            PerfCurrentCount,
        aeThresholdCrossingValue3
            PerfCurrentCount,
        aeThresholdCrossingValue4
            PerfCurrentCount,
        aeThresholdCrossingValue5
            PerfCurrentCount,
        aeThresholdCrossingValue6
            PerfCurrentCount,
        aeThresholdCrossingValue7
            PerfCurrentCount,
        aeThresholdCrossingValue8
            PerfCurrentCount,
        aeThresholdCrossingValue9
            PerfCurrentCount,
        aeThresholdCrossingValue10
            PerfCurrentCount,
        aeThresholdCrossingValue11
            PerfCurrentCount,
        aeThresholdCrossingValue12
            PerfCurrentCount,
        aeThresholdCrossingValue13
            PerfCurrentCount,
        aeThresholdCrossingValue14
            PerfCurrentCount,
        aeThresholdCrossingValue15
            PerfCurrentCount,
        aeThresholdCrossingValue16
            PerfCurrentCount,
        aeThresholdCrossingRowStatus
            RowStatus
    }

aeThresholdCrossingIndex OBJECT-TYPE
    SYNTAX      AeThresholdCrossingIndex
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This object identifies the index info the
         threshold crossing table."
    ::= { aeThresholdCrossingEntry 1 }

aeThresholdCrossingValue1 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 1st thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 2 }

aeThresholdCrossingValue2 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 2nd thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 3 }

aeThresholdCrossingValue3 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 3rd thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 4 }

aeThresholdCrossingValue4 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 4th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 5 }

aeThresholdCrossingValue5 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 5th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 6 }

aeThresholdCrossingValue6 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 6th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 7 }

aeThresholdCrossingValue7 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 7th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 8 }

aeThresholdCrossingValue8 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 8th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 9 }

aeThresholdCrossingValue9 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 9th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 10 }

aeThresholdCrossingValue10 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 10th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 11 }

aeThresholdCrossingValue11 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 11th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 12 }

aeThresholdCrossingValue12 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 12th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 13 }

aeThresholdCrossingValue13 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 13th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 14 }

aeThresholdCrossingValue14 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 14th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 15 }

aeThresholdCrossingValue15 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 15th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 16 }

aeThresholdCrossingValue16 OBJECT-TYPE
    SYNTAX      PerfCurrentCount
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object identifies the threshold value
         for the 16th thresholded counter. A value of
         zero indicates no threshold value."
    DEFVAL      { 0 }
    ::= { aeThresholdCrossingEntry 17 }

aeThresholdCrossingRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "This object is used for row creation."
    ::= { aeThresholdCrossingEntry 18 }

--************************************************************************
--
-- AE PWE3 PM Module
--      1. Bundle Interface PM Tables (Individual packet pseudowires)
--      2. T1 Interface PM Tables (TDM T1 ports)
--      3. Aggregate Bundle Interface PM Tables (PWE3 Ethernet interface)
--
--      12 tables total
--
--************************************************************************

--------------------------------------------------------------------------
--
-- Current 15-minute PWE3 Bundle (individual pseudowire) PM Table
--
--------------------------------------------------------------------------
aePwe3BunCurrent15Table OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3BunCurrent15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "The bundle table contains statistics for the pseudowire connection (i.e. bundle)."
    ::= { aePwe3PmModule 1 }

aePwe3BunCurrent15Entry OBJECT-TYPE
    SYNTAX      AePwe3BunCurrent15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3BunCurrent15Port,
                  aePwe3BunCurrent15Bundle }
    ::= { aePwe3BunCurrent15Table 1 }

AePwe3BunCurrent15Entry ::=
    SEQUENCE {
        aePwe3BunCurrent15Port
            AePwe3T1Instance,
        aePwe3BunCurrent15Bundle
            AePwe3BundleInstance,
        aePwe3BunCurrent15RxPacket
            Counter32,
        aePwe3BunCurrent15TxPacket
            Counter32,
        aePwe3BunCurrent15LostPacket
            Counter32,
        aePwe3BunCurrent15DiscardPacket
            Counter32,
        aePwe3BunCurrent15ReorderPacket
            Counter32,
        aePwe3BunCurrent15JumpedPacket
            Counter32,
        aePwe3BunCurrent15MalformedSec
            Counter32,
        aePwe3BunCurrent15TxRbitSec
            Counter32,
        aePwe3BunCurrent15TxLbitSec
            Counter32,
        aePwe3BunCurrent15RxRbitSec
            Counter32,
        aePwe3BunCurrent15RxLbitSec
            Counter32,
        aePwe3BunCurrent15JitterBufferUnderrun
            Counter32,
        aePwe3BunCurrent15JitterBufferOverrun
            Counter32,
        aePwe3BunCurrent15ES
            Counter32,
        aePwe3BunCurrent15UAS
            Counter32,
        aePwe3BunCurrent15ValidData
            PerfInvalidFlag,
        aePwe3BunCurrent15ThresholdCrossingPointer
            AeThresholdCrossingPointer
    }

aePwe3BunCurrent15Port OBJECT-TYPE
    SYNTAX      AePwe3T1Instance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The T1 port instance associated with this bundle."
    ::= { aePwe3BunCurrent15Entry 1 }

aePwe3BunCurrent15Bundle OBJECT-TYPE
    SYNTAX      AePwe3BundleInstance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The bundle instance (identifier) associated with this pseudowire."
    ::= { aePwe3BunCurrent15Entry 2 }

aePwe3BunCurrent15RxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received. Under normal conditions, the received
         and transmitted counts will increment at the same rate."
    ::= { aePwe3BunCurrent15Entry 3 }

aePwe3BunCurrent15TxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets transmitted. Under normal conditions, the received
         and transmitted counts will increment at the same rate."
    ::= { aePwe3BunCurrent15Entry 4 }

aePwe3BunCurrent15LostPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets lost. These are packets that were never received as
         determined by gaps in the packet sequence numbers."
    ::= { aePwe3BunCurrent15Entry 5 }

aePwe3BunCurrent15DiscardPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received but discarded. Packets may be discarded
         if they are received too far out of order to be reordered."
    ::= { aePwe3BunCurrent15Entry 6 }

aePwe3BunCurrent15ReorderPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received and reordered. If packets are received out
         of order, an attempt is made to reorder. Reordering packets does
         not result in an error on the T1. However, this could be used as an
         indication that there is congestion within the network."
    ::= { aePwe3BunCurrent15Entry 7 }

aePwe3BunCurrent15JumpedPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets jumped. A jump occurs when there is a gap in the sequence
         numbers. As such, lost = jumped - reordered. If packets are not arriving out of
         order, then the lost = jumped. This is an indication that packet(s) are dropping
         somewhere within the network."
    ::= { aePwe3BunCurrent15Entry 8 }

aePwe3BunCurrent15MalformedSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds a packet length mismatch has been detected. The packet
         size must be the same at each end of the pseudowire. This is an indication
         of a configuration problem."
    ::= { aePwe3BunCurrent15Entry 9 }

aePwe3BunCurrent15TxRbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been transmitted with the R-bit asserted.
         The R-bit is asserted in the transmit packets when a bundle stops receiving
         packets. This could indicate that the other end of the pseudowire is not
         configured."
    ::= { aePwe3BunCurrent15Entry 10 }

aePwe3BunCurrent15TxLbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been transmitted with the L-bit asserted.
         The L-bit is asserted in the transmit packets when there is a local T1 LOS
         condition."
    ::= { aePwe3BunCurrent15Entry 11 }

aePwe3BunCurrent15RxRbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been received with the R-bit asserted.
         This is an indication that the other end of the pseudowire is not receiving
         packets."
    ::= { aePwe3BunCurrent15Entry 12 }

aePwe3BunCurrent15RxLbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been received with the L-bit asserted.
         This is an indication that there is a far-end T1 LOS condition."
    ::= { aePwe3BunCurrent15Entry 13 }

aePwe3BunCurrent15JitterBufferUnderrun OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of jitter buffer underruns that have been detected. The jitter buffer
         has emptied (packet reception is too slow). This could be an indication that the
         jitter buffer is not configured big enough to accommodate the network packet
         delay variation."
    ::= { aePwe3BunCurrent15Entry 14 }

aePwe3BunCurrent15JitterBufferOverrun OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of jitter buffer overruns that have been detected. The jitter buffer
         is full and there is no room for addition packets. This could be an indication
         of a timing problem (T1 timing at each end of the pseudowire is not synchronous)."
    ::= { aePwe3BunCurrent15Entry 15 }

aePwe3BunCurrent15ES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of errored seconds.
         An errored second is counted for any of the following conditions:
         Lost Packets
         Discarded Packets
         Jitter Buffer Underrun
         Jitter Buffer Overrun"
    ::= { aePwe3BunCurrent15Entry 16 }

aePwe3BunCurrent15UAS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of unavailable seconds.
         An unavailable second is counted for any of the following conditions:
         Packet Size Mismatch
         R-bit is being transmitted
         L-bit is being transmitted
         R-bit is being received
         L-bit is being received
         Not receiving any packets
         Not transmitting any packets
         Bundle is not yet connected (e.g. ARP is not resolved)"
    ::= { aePwe3BunCurrent15Entry 17 }

aePwe3BunCurrent15ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the validity of the data in the bucket."
    ::= { aePwe3BunCurrent15Entry 18 }

aePwe3BunCurrent15ThresholdCrossingPointer OBJECT-TYPE
    SYNTAX      AeThresholdCrossingPointer
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Indicates the index of the threshold crossing entry.
         Threshold crossings are not implemented."
    DEFVAL      { 0 }
    ::= { aePwe3BunCurrent15Entry 19 }

--------------------------------------------------------------------------
--
-- Interval 15-minute PWE3 Bundle (individual pseudowire) PM Table
--
--------------------------------------------------------------------------
aePwe3BunInterval15Table OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3BunInterval15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "The bundle table contains statistics for the pseudowire connection (i.e. bundle)."
    ::= { aePwe3PmModule 2 }

aePwe3BunInterval15Entry OBJECT-TYPE
    SYNTAX      AePwe3BunInterval15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3BunInterval15Port,
                  aePwe3BunInterval15Bundle,
                  aePwe3BunInterval15Interval }
    ::= { aePwe3BunInterval15Table 1 }

AePwe3BunInterval15Entry ::=
    SEQUENCE {
        aePwe3BunInterval15Port
            AePwe3T1Instance,
        aePwe3BunInterval15Bundle
            AePwe3BundleInstance,
        aePwe3BunInterval15Interval
            INTEGER,
        aePwe3BunInterval15RxPacket
            Counter32,
        aePwe3BunInterval15TxPacket
            Counter32,
        aePwe3BunInterval15LostPacket
            Counter32,
        aePwe3BunInterval15DiscardPacket
            Counter32,
        aePwe3BunInterval15ReorderPacket
            Counter32,
        aePwe3BunInterval15JumpedPacket
            Counter32,
        aePwe3BunInterval15MalformedSec
            Counter32,
        aePwe3BunInterval15TxRbitSec
            Counter32,
        aePwe3BunInterval15TxLbitSec
            Counter32,
        aePwe3BunInterval15RxRbitSec
            Counter32,
        aePwe3BunInterval15RxLbitSec
            Counter32,
        aePwe3BunInterval15JitterBufferUnderrun
            Counter32,
        aePwe3BunInterval15JitterBufferOverrun
            Counter32,
        aePwe3BunInterval15ES
            Counter32,
        aePwe3BunInterval15UAS
            Counter32,
        aePwe3BunInterval15ValidData
            PerfInvalidFlag
    }

aePwe3BunInterval15Port OBJECT-TYPE
    SYNTAX      AePwe3T1Instance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The T1 port instance associated with this bundle."
    ::= { aePwe3BunInterval15Entry 1 }

aePwe3BunInterval15Bundle OBJECT-TYPE
    SYNTAX      AePwe3BundleInstance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The bundle instance (identifier) associated with this pseudowire."
    ::= { aePwe3BunInterval15Entry 2 }

aePwe3BunInterval15Interval OBJECT-TYPE
    SYNTAX      INTEGER(1..96)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "There are 32 15-minute bucket intervals."
    ::= { aePwe3BunInterval15Entry 3 }

aePwe3BunInterval15RxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received. Under normal conditions, the received
         and transmitted counts will increment at the same rate."
    ::= { aePwe3BunInterval15Entry 4 }

aePwe3BunInterval15TxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets transmitted. Under normal conditions, the received
         and transmitted counts will increment at the same rate."
    ::= { aePwe3BunInterval15Entry 5 }

aePwe3BunInterval15LostPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets lost. These are packets that were never received as
         determined by gaps in the packet sequence numbers."
    ::= { aePwe3BunInterval15Entry 6 }

aePwe3BunInterval15DiscardPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received but discarded. Packets may be discarded
         if they are received too far out of order to be reordered."
    ::= { aePwe3BunInterval15Entry 7 }

aePwe3BunInterval15ReorderPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received and reordered. If packets are received out
         of order, an attempt is made to reorder. Reordering packets does
         not result in an error on the T1. However, this could be used as an
         indication that there is congestion within the network."
    ::= { aePwe3BunInterval15Entry 8 }

aePwe3BunInterval15JumpedPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets jumped. A jump occurs when there is a gap in the sequence
         numbers. As such, lost = jumped - reordered. If packets are not arriving out of
         order, then the lost = jumped. This is an indication that packet(s) are dropping
         somewhere within the network."
    ::= { aePwe3BunInterval15Entry 9 }

aePwe3BunInterval15MalformedSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds a packet length mismatch has been detected. The packet
         size must be the same at each end of the pseudowire. This is an indication
         of a configuration problem."
    ::= { aePwe3BunInterval15Entry 10 }

aePwe3BunInterval15TxRbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been transmitted with the R-bit asserted.
         The R-bit is asserted in the transmit packets when a bundle stops receiving
         packets. This could indicate that the other end of the pseudowire is not
         configured."
    ::= { aePwe3BunInterval15Entry 11 }

aePwe3BunInterval15TxLbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been transmitted with the L-bit asserted.
         The L-bit is asserted in the transmit packets when there is a local T1 LOS
         condition."
    ::= { aePwe3BunInterval15Entry 12 }

aePwe3BunInterval15RxRbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been received with the R-bit asserted.
         This is an indication that the other end of the pseudowire is not receiving
         packets."
    ::= { aePwe3BunInterval15Entry 13 }

aePwe3BunInterval15RxLbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been received with the L-bit asserted.
         This is an indication that there is a far-end T1 LOS condition."
    ::= { aePwe3BunInterval15Entry 14 }

aePwe3BunInterval15JitterBufferUnderrun OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of jitter buffer underruns that have been detected. The jitter buffer
         has emptied (packet reception is too slow). This could be an indication that the
         jitter buffer is not configured big enough to accommodate the network packet
         delay variation."
    ::= { aePwe3BunInterval15Entry 15 }

aePwe3BunInterval15JitterBufferOverrun OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of jitter buffer overruns that have been detected. The jitter buffer
         is full and there is no room for addition packets. This could be an indication
         of a timing problem (T1 timing at each end of the pseudowire is not synchronous)."
    ::= { aePwe3BunInterval15Entry 16 }

aePwe3BunInterval15ES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of errored seconds.
         See current15 table description."
    ::= { aePwe3BunInterval15Entry 17 }

aePwe3BunInterval15UAS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of unavailable seconds.
         See current15 table description."
    ::= { aePwe3BunInterval15Entry 18 }

aePwe3BunInterval15ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the validity of the data in the bucket."
    ::= { aePwe3BunInterval15Entry 19 }

--------------------------------------------------------------------------
--
-- Current 24-hour PWE3 Bundle (individual pseudowire) PM Table
--
--------------------------------------------------------------------------
aePwe3BunCurrent24Table OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3BunCurrent24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "The bundle table contains statistics for the pseudowire connection (i.e. bundle)."
    ::= { aePwe3PmModule 3 }

aePwe3BunCurrent24Entry OBJECT-TYPE
    SYNTAX      AePwe3BunCurrent24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3BunCurrent24Port,
                  aePwe3BunCurrent24Bundle }
    ::= { aePwe3BunCurrent24Table 1 }

AePwe3BunCurrent24Entry ::=
    SEQUENCE {
        aePwe3BunCurrent24Port
            AePwe3T1Instance,
        aePwe3BunCurrent24Bundle
            AePwe3BundleInstance,
        aePwe3BunCurrent24RxPacket
            Counter32,
        aePwe3BunCurrent24TxPacket
            Counter32,
        aePwe3BunCurrent24LostPacket
            Counter32,
        aePwe3BunCurrent24DiscardPacket
            Counter32,
        aePwe3BunCurrent24ReorderPacket
            Counter32,
        aePwe3BunCurrent24JumpedPacket
            Counter32,
        aePwe3BunCurrent24MalformedSec
            Counter32,
        aePwe3BunCurrent24TxRbitSec
            Counter32,
        aePwe3BunCurrent24TxLbitSec
            Counter32,
        aePwe3BunCurrent24RxRbitSec
            Counter32,
        aePwe3BunCurrent24RxLbitSec
            Counter32,
        aePwe3BunCurrent24JitterBufferUnderrun
            Counter32,
        aePwe3BunCurrent24JitterBufferOverrun
            Counter32,
        aePwe3BunCurrent24ES
            Counter32,
        aePwe3BunCurrent24UAS
            Counter32,
        aePwe3BunCurrent24ValidData
            PerfInvalidFlag,
        aePwe3BunCurrent24ThresholdCrossingPointer
            AeThresholdCrossingPointer
    }

aePwe3BunCurrent24Port OBJECT-TYPE
    SYNTAX      AePwe3T1Instance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The T1 port instance associated with this bundle."
    ::= { aePwe3BunCurrent24Entry 1 }

aePwe3BunCurrent24Bundle OBJECT-TYPE
    SYNTAX      AePwe3BundleInstance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The bundle instance (identifier) associated with this pseudowire."
    ::= { aePwe3BunCurrent24Entry 2 }

aePwe3BunCurrent24RxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received. Under normal conditions, the received
         and transmitted counts will increment at the same rate."
    ::= { aePwe3BunCurrent24Entry 3 }

aePwe3BunCurrent24TxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets transmitted. Under normal conditions, the received
         and transmitted counts will increment at the same rate."
    ::= { aePwe3BunCurrent24Entry 4 }

aePwe3BunCurrent24LostPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets lost. These are packets that were never received as
         determined by gaps in the packet sequence numbers."
    ::= { aePwe3BunCurrent24Entry 5 }

aePwe3BunCurrent24DiscardPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received but discarded. Packets may be discarded
         if they are received too far out of order to be reordered."
    ::= { aePwe3BunCurrent24Entry 6 }

aePwe3BunCurrent24ReorderPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received and reordered. If packets are received out
         of order, an attempt is made to reorder. Reordering packets does
         not result in an error on the T1. However, this could be used as an
         indication that there is congestion within the network."
    ::= { aePwe3BunCurrent24Entry 7 }

aePwe3BunCurrent24JumpedPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets jumped. A jump occurs when there is a gap in the sequence
         numbers. As such, lost = jumped - reordered. If packets are not arriving out of
         order, then the lost = jumped. This is an indication that packet(s) are dropping
         somewhere within the network."
    ::= { aePwe3BunCurrent24Entry 8 }

aePwe3BunCurrent24MalformedSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds a packet length mismatch has been detected. The packet
         size must be the same at each end of the pseudowire. This is an indication
         of a configuration problem."
    ::= { aePwe3BunCurrent24Entry 9 }

aePwe3BunCurrent24TxRbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been transmitted with the R-bit asserted.
         The R-bit is asserted in the transmit packets when a bundle stops receiving
         packets. This could indicate that the other end of the pseudowire is not
         configured."
    ::= { aePwe3BunCurrent24Entry 10 }

aePwe3BunCurrent24TxLbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been transmitted with the L-bit asserted.
         The L-bit is asserted in the transmit packets when there is a local T1 LOS
         condition."
    ::= { aePwe3BunCurrent24Entry 11 }

aePwe3BunCurrent24RxRbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been received with the R-bit asserted.
         This is an indication that the other end of the pseudowire is not receiving
         packets."
    ::= { aePwe3BunCurrent24Entry 12 }

aePwe3BunCurrent24RxLbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been received with the L-bit asserted.
         This is an indication that there is a far-end T1 LOS condition."
    ::= { aePwe3BunCurrent24Entry 13 }

aePwe3BunCurrent24JitterBufferUnderrun OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of jitter buffer underruns that have been detected. The jitter buffer
         has emptied (packet reception is too slow). This could be an indication that the
         jitter buffer is not configured big enough to accommodate the network packet
         delay variation."
    ::= { aePwe3BunCurrent24Entry 14 }

aePwe3BunCurrent24JitterBufferOverrun OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of jitter buffer overruns that have been detected. The jitter buffer
         is full and there is no room for addition packets. This could be an indication
         of a timing problem (T1 timing at each end of the pseudowire is not synchronous)."
    ::= { aePwe3BunCurrent24Entry 15 }

aePwe3BunCurrent24ES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of errored seconds.
         See current15 table description."
    ::= { aePwe3BunCurrent24Entry 16 }

aePwe3BunCurrent24UAS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of unavailable seconds.
         See current15 table description."
    ::= { aePwe3BunCurrent24Entry 17 }

aePwe3BunCurrent24ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the validity of the data in the bucket."
    ::= { aePwe3BunCurrent24Entry 18 }

aePwe3BunCurrent24ThresholdCrossingPointer OBJECT-TYPE
    SYNTAX      AeThresholdCrossingPointer
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Indicates the index of the threshold crossing entry.
         Threshold crossings are not implemented."
    DEFVAL      { 0 }
    ::= { aePwe3BunCurrent24Entry 19 }

--------------------------------------------------------------------------
--
-- Interval 24-hour PWE3 Bundle (individual pseudowire) PM Table
--
--------------------------------------------------------------------------
aePwe3BunInterval24Table OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3BunInterval24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "The bundle table contains statistics for the pseudowire connection (i.e. bundle)."
    ::= { aePwe3PmModule 4 }

aePwe3BunInterval24Entry OBJECT-TYPE
    SYNTAX      AePwe3BunInterval24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3BunInterval24Port,
                  aePwe3BunInterval24Bundle,
                  aePwe3BunInterval24Interval }
    ::= { aePwe3BunInterval24Table 1 }

AePwe3BunInterval24Entry ::=
    SEQUENCE {
        aePwe3BunInterval24Port
            AePwe3T1Instance,
        aePwe3BunInterval24Bundle
            AePwe3BundleInstance,
        aePwe3BunInterval24Interval
            INTEGER,
        aePwe3BunInterval24RxPacket
            Counter32,
        aePwe3BunInterval24TxPacket
            Counter32,
        aePwe3BunInterval24LostPacket
            Counter32,
        aePwe3BunInterval24DiscardPacket
            Counter32,
        aePwe3BunInterval24ReorderPacket
            Counter32,
        aePwe3BunInterval24JumpedPacket
            Counter32,
        aePwe3BunInterval24MalformedSec
            Counter32,
        aePwe3BunInterval24TxRbitSec
            Counter32,
        aePwe3BunInterval24TxLbitSec
            Counter32,
        aePwe3BunInterval24RxRbitSec
            Counter32,
        aePwe3BunInterval24RxLbitSec
            Counter32,
        aePwe3BunInterval24JitterBufferUnderrun
            Counter32,
        aePwe3BunInterval24JitterBufferOverrun
            Counter32,
        aePwe3BunInterval24ES
            Counter32,
        aePwe3BunInterval24UAS
            Counter32,
        aePwe3BunInterval24ValidData
            PerfInvalidFlag
    }

aePwe3BunInterval24Port OBJECT-TYPE
    SYNTAX      AePwe3T1Instance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The T1 port instance associated with this bundle."
    ::= { aePwe3BunInterval24Entry 1 }

aePwe3BunInterval24Bundle OBJECT-TYPE
    SYNTAX      AePwe3BundleInstance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The bundle instance (identifier) associated with this pseudowire."
    ::= { aePwe3BunInterval24Entry 2 }

aePwe3BunInterval24Interval OBJECT-TYPE
    SYNTAX      INTEGER(1..1)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "There is 1 24-hour interval (yesterday)."
    ::= { aePwe3BunInterval24Entry 3 }

aePwe3BunInterval24RxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received. Under normal conditions, the received
         and transmitted counts will increment at the same rate."
    ::= { aePwe3BunInterval24Entry 4 }

aePwe3BunInterval24TxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets transmitted. Under normal conditions, the received
         and transmitted counts will increment at the same rate."
    ::= { aePwe3BunInterval24Entry 5 }

aePwe3BunInterval24LostPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets lost. These are packets that were never received as
         determined by gaps in the packet sequence numbers."
    ::= { aePwe3BunInterval24Entry 6 }

aePwe3BunInterval24DiscardPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received but discarded. Packets may be discarded
         if they are received too far out of order to be reordered."
    ::= { aePwe3BunInterval24Entry 7 }

aePwe3BunInterval24ReorderPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received and reordered. If packets are received out
         of order, an attempt is made to reorder. Reordering packets does
         not result in an error on the T1. However, this could be used as an
         indication that there is congestion within the network."
    ::= { aePwe3BunInterval24Entry 8 }

aePwe3BunInterval24JumpedPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets jumped. A jump occurs when there is a gap in the sequence
         numbers. As such, lost = jumped - reordered. If packets are not arriving out of
         order, then the lost = jumped. This is an indication that packet(s) are dropping
         somewhere within the network."
    ::= { aePwe3BunInterval24Entry 9 }

aePwe3BunInterval24MalformedSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds a packet length mismatch has been detected. The packet
         size must be the same at each end of the pseudowire. This is an indication
         of a configuration problem."
    ::= { aePwe3BunInterval24Entry 10 }

aePwe3BunInterval24TxRbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been transmitted with the R-bit asserted.
         The R-bit is asserted in the transmit packets when a bundle stops receiving
         packets. This could indicate that the other end of the pseudowire is not
         configured."
    ::= { aePwe3BunInterval24Entry 11 }

aePwe3BunInterval24TxLbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been transmitted with the L-bit asserted.
         The L-bit is asserted in the transmit packets when there is a local T1 LOS
         condition."
    ::= { aePwe3BunInterval24Entry 12 }

aePwe3BunInterval24RxRbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been received with the R-bit asserted.
         This is an indication that the other end of the pseudowire is not receiving
         packets."
    ::= { aePwe3BunInterval24Entry 13 }

aePwe3BunInterval24RxLbitSec OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of seconds packets have been received with the L-bit asserted.
         This is an indication that there is a far-end T1 LOS condition."
    ::= { aePwe3BunInterval24Entry 14 }

aePwe3BunInterval24JitterBufferUnderrun OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of jitter buffer underruns that have been detected. The jitter buffer
         has emptied (packet reception is too slow). This could be an indication that the
         jitter buffer is not configured big enough to accommodate the network packet
         delay variation."
    ::= { aePwe3BunInterval24Entry 15 }

aePwe3BunInterval24JitterBufferOverrun OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of jitter buffer overruns that have been detected. The jitter buffer
         is full and there is no room for addition packets. This could be an indication
         of a timing problem (T1 timing at each end of the pseudowire is not synchronous)."
    ::= { aePwe3BunInterval24Entry 16 }

aePwe3BunInterval24ES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of errored seconds.
         See current15 table description."
    ::= { aePwe3BunInterval24Entry 17 }

aePwe3BunInterval24UAS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of unavailable seconds.
         See current15 table description."
    ::= { aePwe3BunInterval24Entry 18 }

aePwe3BunInterval24ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the validity of the data in the bucket."
    ::= { aePwe3BunInterval24Entry 19 }

--------------------------------------------------------------------------
--
-- Current 15-minute PWE3 T1 PM Table
--
--------------------------------------------------------------------------
aePwe3T1Current15Table   OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3T1Current15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "The PWE3 T1 table contains statistics for the T1 TDM interface."
    ::= { aePwe3PmModule 5 }

aePwe3T1Current15Entry   OBJECT-TYPE
    SYNTAX      AePwe3T1Current15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3T1Current15Port }
    ::= { aePwe3T1Current15Table 1 }

AePwe3T1Current15Entry ::=
    SEQUENCE {
        aePwe3T1Current15Port
            AePwe3T1Instance,
        aePwe3T1Current15LCV
            Counter32,
        aePwe3T1Current15ES
            Counter32,
        aePwe3T1Current15SES
            Counter32,
        aePwe3T1Current15UAS
            Counter32,
        aePwe3T1Current15CSS
            Counter32,
        aePwe3T1Current15ValidData
            PerfInvalidFlag,
        aePwe3T1Current15ThresholdCrossingPointer
            AeThresholdCrossingPointer
    }

aePwe3T1Current15Port OBJECT-TYPE
    SYNTAX      AePwe3T1Instance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The T1 port instance."
    ::= { aePwe3T1Current15Entry 1 }

aePwe3T1Current15LCV OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of line code violations."
    ::= { aePwe3T1Current15Entry 2 }

aePwe3T1Current15ES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of errored seconds."
    ::= { aePwe3T1Current15Entry 3 }

aePwe3T1Current15SES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of severely errored seconds."
    ::= { aePwe3T1Current15Entry 4 }

aePwe3T1Current15UAS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of unavailable seconds."
    ::= { aePwe3T1Current15Entry 5 }

aePwe3T1Current15CSS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of controlled slip seconds."
    ::= { aePwe3T1Current15Entry 6 }

aePwe3T1Current15ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the validity of the data in the bucket."
    ::= { aePwe3T1Current15Entry 7 }

aePwe3T1Current15ThresholdCrossingPointer OBJECT-TYPE
    SYNTAX      AeThresholdCrossingPointer
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Indicates the index of the threshold crossing entry.
         Threshold crossings are not implemented."
    DEFVAL      { 0 }
    ::= { aePwe3T1Current15Entry 8 }

--------------------------------------------------------------------------
--
-- Interval 15-minute PWE3 T1 PM Table
--
--------------------------------------------------------------------------
aePwe3T1Interval15Table   OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3T1Interval15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The PWE3 T1 table contains statistics for the specified interval
         and T1 TDM interface."
    ::= { aePwe3PmModule 6 }

aePwe3T1Interval15Entry   OBJECT-TYPE
    SYNTAX      AePwe3T1Interval15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3T1Interval15Port,
                  aePwe3T1Interval15Interval }
    ::= { aePwe3T1Interval15Table 1 }

AePwe3T1Interval15Entry ::=
    SEQUENCE {
        aePwe3T1Interval15Port
            AePwe3T1Instance,
        aePwe3T1Interval15Interval
            INTEGER,
        aePwe3T1Interval15LCV
            Counter32,
        aePwe3T1Interval15ES
            Counter32,
        aePwe3T1Interval15SES
            Counter32,
        aePwe3T1Interval15UAS
            Counter32,
        aePwe3T1Interval15CSS
            Counter32,
        aePwe3T1Interval15ValidData
            PerfInvalidFlag
    }

aePwe3T1Interval15Port OBJECT-TYPE
    SYNTAX      AePwe3T1Instance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The T1 port instance."
    ::= { aePwe3T1Interval15Entry 1 }

aePwe3T1Interval15Interval OBJECT-TYPE
    SYNTAX      INTEGER(1..96)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "There are 32 15-minute T1 PM buckets."
    ::= { aePwe3T1Interval15Entry 2 }

aePwe3T1Interval15LCV OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of line code violations."
    ::= { aePwe3T1Interval15Entry 3 }

aePwe3T1Interval15ES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of errored seconds."
    ::= { aePwe3T1Interval15Entry 4 }

aePwe3T1Interval15SES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of severely errored seconds."
    ::= { aePwe3T1Interval15Entry 5 }

aePwe3T1Interval15UAS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of unavailable seconds."
    ::= { aePwe3T1Interval15Entry 6 }

aePwe3T1Interval15CSS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of controlled slip seconds."
    ::= { aePwe3T1Interval15Entry 7 }

aePwe3T1Interval15ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the validity of the data in the bucket."
    ::= { aePwe3T1Interval15Entry 8 }

--------------------------------------------------------------------------
--
-- Current 24-hour PWE3 T1 PM Table
--
--------------------------------------------------------------------------
aePwe3T1Current24Table   OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3T1Current24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "The PWE3 T1 table contains statistics for the T1 TDM interface."
    ::= { aePwe3PmModule 7 }

aePwe3T1Current24Entry   OBJECT-TYPE
    SYNTAX      AePwe3T1Current24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3T1Current24Port }
    ::= { aePwe3T1Current24Table 1 }

AePwe3T1Current24Entry ::=
    SEQUENCE {
        aePwe3T1Current24Port
            AePwe3T1Instance,
        aePwe3T1Current24LCV
            Counter32,
        aePwe3T1Current24ES
            Counter32,
        aePwe3T1Current24SES
            Counter32,
        aePwe3T1Current24UAS
            Counter32,
        aePwe3T1Current24CSS
            Counter32,
        aePwe3T1Current24ValidData
            PerfInvalidFlag,
        aePwe3T1Current24ThresholdCrossingPointer
            AeThresholdCrossingPointer
    }

aePwe3T1Current24Port OBJECT-TYPE
    SYNTAX      AePwe3T1Instance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The T1 port instance."
    ::= { aePwe3T1Current24Entry 1 }

aePwe3T1Current24LCV OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of line code violations."
    ::= { aePwe3T1Current24Entry 2 }

aePwe3T1Current24ES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of errored seconds."
    ::= { aePwe3T1Current24Entry 3 }

aePwe3T1Current24SES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of severely errored seconds."
    ::= { aePwe3T1Current24Entry 4 }

aePwe3T1Current24UAS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of unavailable seconds."
    ::= { aePwe3T1Current24Entry 5 }

aePwe3T1Current24CSS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of controlled slip seconds."
    ::= { aePwe3T1Current24Entry 6 }

aePwe3T1Current24ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the validity of the data in the bucket."
    ::= { aePwe3T1Current24Entry 7 }

aePwe3T1Current24ThresholdCrossingPointer OBJECT-TYPE
    SYNTAX      AeThresholdCrossingPointer
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Indicates the index of the threshold crossing entry.
         Threshold crossings are not implemented."
    DEFVAL      { 0 }
    ::= { aePwe3T1Current24Entry 8 }

--------------------------------------------------------------------------
--
-- Interval 24-hour PWE3 T1 PM Table
--
--------------------------------------------------------------------------
aePwe3T1Interval24Table   OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3T1Interval24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The PWE3 T1 table contains statistics for the specified interval
         and T1 TDM interface."
    ::= { aePwe3PmModule 8 }

aePwe3T1Interval24Entry   OBJECT-TYPE
    SYNTAX      AePwe3T1Interval24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3T1Interval24Port,
                  aePwe3T1Interval24Interval }
    ::= { aePwe3T1Interval24Table 1 }

AePwe3T1Interval24Entry ::=
    SEQUENCE {
        aePwe3T1Interval24Port
            AePwe3T1Instance,
        aePwe3T1Interval24Interval
            INTEGER,
        aePwe3T1Interval24LCV
            Counter32,
        aePwe3T1Interval24ES
            Counter32,
        aePwe3T1Interval24SES
            Counter32,
        aePwe3T1Interval24UAS
            Counter32,
        aePwe3T1Interval24CSS
            Counter32,
        aePwe3T1Interval24ValidData
            PerfInvalidFlag
    }

aePwe3T1Interval24Port OBJECT-TYPE
    SYNTAX      AePwe3T1Instance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The T1 port instance."
    ::= { aePwe3T1Interval24Entry 1 }

aePwe3T1Interval24Interval OBJECT-TYPE
    SYNTAX      INTEGER(1..1)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "There is 1 24-hour interval (yesterday)."
    ::= { aePwe3T1Interval24Entry 2 }

aePwe3T1Interval24LCV OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of line code violations."
    ::= { aePwe3T1Interval24Entry 3 }

aePwe3T1Interval24ES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of errored seconds."
    ::= { aePwe3T1Interval24Entry 4 }

aePwe3T1Interval24SES OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of severely errored seconds."
    ::= { aePwe3T1Interval24Entry 5 }

aePwe3T1Interval24UAS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of unavailable seconds."
    ::= { aePwe3T1Interval24Entry 6 }

aePwe3T1Interval24CSS OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of controlled slip seconds."
    ::= { aePwe3T1Interval24Entry 7 }

aePwe3T1Interval24ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicates the validity of the data in the bucket."
    ::= { aePwe3T1Interval24Entry 8 }

--------------------------------------------------------------------------
--
-- Current 15-minute PWE3 Aggregate Bundle (Ethernet) Interface PM Table
--
--------------------------------------------------------------------------
aePwe3AggCurrent15Table OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3AggCurrent15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The aggregate bundle table contains statistics for the aggregate (i.e. Ethernet) PWE3 interface."
    ::= { aePwe3PmModule 9 }

aePwe3AggCurrent15Entry OBJECT-TYPE
    SYNTAX      AePwe3AggCurrent15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3AggCurrent15Instance }
    ::= { aePwe3AggCurrent15Table 1 }

AePwe3AggCurrent15Entry ::=
    SEQUENCE {
        aePwe3AggCurrent15Instance
            AePwe3AggInstance,
        aePwe3AggCurrent15RxPacket
            Counter32,
        aePwe3AggCurrent15RxByte
            Counter32,
        aePwe3AggCurrent15TxPacket
            Counter32,
        aePwe3AggCurrent15TxByte
            Counter32,
        aePwe3AggCurrent15ClassifiedPacket
            Counter32,
        aePwe3AggCurrent15ValidData
            PerfInvalidFlag,
        aePwe3AggCurrent15ThresholdCrossingPointer
            AeThresholdCrossingPointer
    }

aePwe3AggCurrent15Instance OBJECT-TYPE
    SYNTAX      AePwe3AggInstance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Index for the aggregate PWE3 interface."
    ::= { aePwe3AggCurrent15Entry 1 }

aePwe3AggCurrent15RxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received. Under normal conditions, the received
         and transmitted counts will be incrementing at the same rate."
    ::= { aePwe3AggCurrent15Entry 2 }

aePwe3AggCurrent15RxByte OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of bytes received."
    ::= { aePwe3AggCurrent15Entry 3 }

aePwe3AggCurrent15TxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets transmitted. Under normal conditions, the received
         and transmitted counts will be incrementing at the same rate."
    ::= { aePwe3AggCurrent15Entry 4 }

aePwe3AggCurrent15TxByte OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of bytes transmitted."
    ::= { aePwe3AggCurrent15Entry 5 }

aePwe3AggCurrent15ClassifiedPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of received packets that have passed classification. Packet
         classification is performed on each packet received to determine if the packet
         is truly intended for this interface. If the packet passes classification, it
         is passed through to the intended T1 interface.

         Under normal conditions, the received packet count and the classified packet
         count will be incrementing at the same rate. If the received packet count is
         increasing faster than the classified packet count, this is an indication that
         stray packets are being received by the interface."
    ::= { aePwe3AggCurrent15Entry 6 }

aePwe3AggCurrent15ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Indicates the validity of the data in the bucket."
    ::= { aePwe3AggCurrent15Entry 7 }

aePwe3AggCurrent15ThresholdCrossingPointer OBJECT-TYPE
    SYNTAX      AeThresholdCrossingPointer
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Indicates the index of the threshold crossing entry.
         Threshold crossings are not implemented."
    DEFVAL      { 0 }
    ::= { aePwe3AggCurrent15Entry 8 }

--------------------------------------------------------------------------
--
-- Interval 15-minute PWE3 Aggregate Bundle (Ethernet) Interface PM Table
--
--------------------------------------------------------------------------
aePwe3AggInterval15Table OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3AggInterval15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The aggregate bundle table contains statistics for the specified interval
         and aggregate (i.e. Ethernet) PWE3 interface."
    ::= { aePwe3PmModule 10 }

aePwe3AggInterval15Entry OBJECT-TYPE
    SYNTAX      AePwe3AggInterval15Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3AggInterval15Instance,
                  aePwe3AggInterval15Interval }
    ::= { aePwe3AggInterval15Table 1 }

AePwe3AggInterval15Entry ::=
    SEQUENCE {
        aePwe3AggInterval15Instance
            AePwe3AggInstance,
        aePwe3AggInterval15Interval
            INTEGER,
        aePwe3AggInterval15RxPacket
            Counter32,
        aePwe3AggInterval15RxByte
            Counter32,
        aePwe3AggInterval15TxPacket
            Counter32,
        aePwe3AggInterval15TxByte
            Counter32,
        aePwe3AggInterval15ClassifiedPacket
            Counter32,
        aePwe3AggInterval15ValidData
            PerfInvalidFlag
    }

aePwe3AggInterval15Instance OBJECT-TYPE
    SYNTAX      AePwe3AggInstance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Index for the aggregate PWE3 interface."
    ::= { aePwe3AggInterval15Entry 1 }

aePwe3AggInterval15Interval OBJECT-TYPE
    SYNTAX      INTEGER(1..96)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "There are 32 15-minute bucket intervals."
    ::= { aePwe3AggInterval15Entry 2 }

aePwe3AggInterval15RxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received. Under normal conditions, the received
         and transmitted counts will be incrementing at the same rate."
    ::= { aePwe3AggInterval15Entry 3 }

aePwe3AggInterval15RxByte OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of bytes received."
    ::= { aePwe3AggInterval15Entry 4 }

aePwe3AggInterval15TxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets transmitted. Under normal conditions, the received
         and transmitted counts will be incrementing at the same rate."
    ::= { aePwe3AggInterval15Entry 5 }

aePwe3AggInterval15TxByte OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of bytes transmitted."
    ::= { aePwe3AggInterval15Entry 6 }

aePwe3AggInterval15ClassifiedPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of received packets that have passed classification. Packet
         classification is performed on each packet received to determine if the packet
         is truly intended for this interface. If the packet passes classification, it
         is passed through to the intended T1 interface.

         Under normal conditions, the received packet count and the classified packet
         count will be incrementing at the same rate. If the received packet count is
         increasing faster than the classified packet count, this is an indication that
         stray packets are being received by the interface."
    ::= { aePwe3AggInterval15Entry 7 }

aePwe3AggInterval15ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Indicates the validity of the data in the bucket."
    ::= { aePwe3AggInterval15Entry 8 }

--------------------------------------------------------------------------
--
-- Current 24-hour PWE3 Aggregate Bundle (Ethernet) Interface PM Table
--
--------------------------------------------------------------------------
aePwe3AggCurrent24Table OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3AggCurrent24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The aggregate bundle table contains statistics for the aggregate (i.e. Ethernet) PWE3 interface."
    ::= { aePwe3PmModule 11 }

aePwe3AggCurrent24Entry OBJECT-TYPE
    SYNTAX      AePwe3AggCurrent24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3AggCurrent24Instance }
    ::= { aePwe3AggCurrent24Table 1 }

AePwe3AggCurrent24Entry ::=
    SEQUENCE {
        aePwe3AggCurrent24Instance
            AePwe3AggInstance,
        aePwe3AggCurrent24RxPacket
            Counter32,
        aePwe3AggCurrent24RxByte
            Counter32,
        aePwe3AggCurrent24TxPacket
            Counter32,
        aePwe3AggCurrent24TxByte
            Counter32,
        aePwe3AggCurrent24ClassifiedPacket
            Counter32,
        aePwe3AggCurrent24ValidData
            PerfInvalidFlag,
        aePwe3AggCurrent24ThresholdCrossingPointer
            AeThresholdCrossingPointer
    }

aePwe3AggCurrent24Instance OBJECT-TYPE
    SYNTAX      AePwe3AggInstance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Index for the aggregate PWE3 interface."
    ::= { aePwe3AggCurrent24Entry 1 }

aePwe3AggCurrent24RxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received. Under normal conditions, the received
         and transmitted counts will be incrementing at the same rate."
    ::= { aePwe3AggCurrent24Entry 2 }

aePwe3AggCurrent24RxByte OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of bytes received."
    ::= { aePwe3AggCurrent24Entry 3 }

aePwe3AggCurrent24TxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets transmitted. Under normal conditions, the received
         and transmitted counts will be incrementing at the same rate."
    ::= { aePwe3AggCurrent24Entry 4 }

aePwe3AggCurrent24TxByte OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of bytes transmitted."
    ::= { aePwe3AggCurrent24Entry 5 }

aePwe3AggCurrent24ClassifiedPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of received packets that have passed classification. Packet
         classification is performed on each packet received to determine if the packet
         is truly intended for this interface. If the packet passes classification, it
         is passed through to the intended T1 interface.

         Under normal conditions, the received packet count and the classified packet
         count will be incrementing at the same rate. If the received packet count is
         increasing faster than the classified packet count, this is an indication that
         stray packets are being received by the interface."
    ::= { aePwe3AggCurrent24Entry 6 }

aePwe3AggCurrent24ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Indicates the validity of the data in the bucket."
    ::= { aePwe3AggCurrent24Entry 7 }

aePwe3AggCurrent24ThresholdCrossingPointer OBJECT-TYPE
    SYNTAX      AeThresholdCrossingPointer
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Indicates the index of the threshold crossing entry.
         Threshold crossings are not implemented."
    DEFVAL      { 0 }
    ::= { aePwe3AggCurrent24Entry 8 }

--------------------------------------------------------------------------
--
-- Interval 24-hour PWE3 Aggregate Bundle (Ethernet) Interface PM Table
--
--------------------------------------------------------------------------
aePwe3AggInterval24Table OBJECT-TYPE
    SYNTAX      SEQUENCE OF AePwe3AggInterval24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The aggregate bundle table contains statistics for the specified interval
         and aggregate (i.e. Ethernet) PWE3 interface."
    ::= { aePwe3PmModule 12 }

aePwe3AggInterval24Entry OBJECT-TYPE
    SYNTAX      AePwe3AggInterval24Entry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION ""
    INDEX       { aePwe3AggInterval24Instance,
                  aePwe3AggInterval24Interval }
    ::= { aePwe3AggInterval24Table 1 }

AePwe3AggInterval24Entry ::=
    SEQUENCE {
        aePwe3AggInterval24Instance
            AePwe3AggInstance,
        aePwe3AggInterval24Interval
            INTEGER,
        aePwe3AggInterval24RxPacket
            Counter32,
        aePwe3AggInterval24RxByte
            Counter32,
        aePwe3AggInterval24TxPacket
            Counter32,
        aePwe3AggInterval24TxByte
            Counter32,
        aePwe3AggInterval24ClassifiedPacket
            Counter32,
        aePwe3AggInterval24ValidData
            PerfInvalidFlag
    }
aePwe3AggInterval24Instance OBJECT-TYPE
    SYNTAX      AePwe3AggInstance
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Index for the aggregate PWE3 interface."
    ::= { aePwe3AggInterval24Entry 1 }

aePwe3AggInterval24Interval OBJECT-TYPE
    SYNTAX      INTEGER(1..1)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "There are 2 24-hour interval (yesterday)."
    ::= { aePwe3AggInterval24Entry 2 }

aePwe3AggInterval24RxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets received. Under normal conditions, the received
         and transmitted counts will be incrementing at the same rate."
    ::= { aePwe3AggInterval24Entry 3 }

aePwe3AggInterval24RxByte OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of bytes received."
    ::= { aePwe3AggInterval24Entry 4 }

aePwe3AggInterval24TxPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of packets transmitted. Under normal conditions, the received
         and transmitted counts will be incrementing at the same rate."
    ::= { aePwe3AggInterval24Entry 5 }

aePwe3AggInterval24TxByte OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of bytes transmitted."
    ::= { aePwe3AggInterval24Entry 6 }

aePwe3AggInterval24ClassifiedPacket OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of received packets that have passed classification. Packet
         classification is performed on each packet received to determine if the packet
         is truly intended for this interface. If the packet passes classification, it
         is passed through to the intended T1 interface.

         Under normal conditions, the received packet count and the classified packet
         count will be incrementing at the same rate. If the received packet count is
         increasing faster than the classified packet count, this is an indication that
         stray packets are being received by the interface."
    ::= { aePwe3AggInterval24Entry 7 }

aePwe3AggInterval24ValidData OBJECT-TYPE
    SYNTAX      PerfInvalidFlag
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Indicates the validity of the data in the bucket."
    ::= { aePwe3AggInterval24Entry 8 }

--************************************************************************
--
-- End of AE PWE3 PM Module
--
--************************************************************************

END