summaryrefslogtreecommitdiff
path: root/MIBS/adtran/ADTRAN-AOS-VQM
blob: cc2a6f63fe8392d80d994deabc9ba1c3746717e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
       ADTRAN-AOS-VQM DEFINITIONS ::= BEGIN

       IMPORTS
           TimeTicks, IpAddress, Integer32, Gauge32, Unsigned32, Counter32,
           Counter64, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
               FROM SNMPv2-SMI
           DisplayString, TruthValue, DateAndTime, TEXTUAL-CONVENTION
               FROM SNMPv2-TC
           MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
               FROM SNMPv2-CONF
           ifIndex
                FROM IF-MIB
           adIdentity
               FROM ADTRAN-MIB
           adGenAOSConformance, adGenAOSVoice
               FROM ADTRAN-AOS;

       adGenAOSVQMMib MODULE-IDENTITY
        LAST-UPDATED "200901060000Z"  -- Jan 6, 2009 / YYYYMMDDHHMMZ
        ORGANIZATION "ADTRAN, Inc."
        CONTACT-INFO
               "Technical Support Dept.
                Postal: ADTRAN, Inc.
                901 Explorer Blvd.
                Huntsville, AL 35806

                Tel: +1 800 726-8663
                Fax: +1 256 963 6217
                E-mail: support@adtran.com"

            DESCRIPTION
                "ADTRAN-AOS-VQM MIB module."

       ::= { adIdentity 10000 53 5 3 }

        adVQM                   OBJECT IDENTIFIER ::= { adGenAOSVoice 3 }
        adVQMTrap               OBJECT IDENTIFIER ::= { adVQM 0 }
        adVQMTrapControl        OBJECT IDENTIFIER ::= { adVQM 1 }
        adVQMCfg                OBJECT IDENTIFIER ::= { adVQM 2 }
        adVQMThreshold          OBJECT IDENTIFIER ::= { adVQM 3 }
        adVQMSysPerf            OBJECT IDENTIFIER ::= { adVQM 4 }
        adVQMInterface          OBJECT IDENTIFIER ::= { adVQM 5 }
        adVQMEndPoint           OBJECT IDENTIFIER ::= { adVQM 6 }
        adVQMHistory            OBJECT IDENTIFIER ::= { adVQM 7 }
        adVQMActive             OBJECT IDENTIFIER ::= { adVQM 8 }

-- ========================================================================
        MOSvalue ::= TEXTUAL-CONVENTION
                DISPLAY-HINT "d"
                STATUS  current
                DESCRIPTION
                        "MOS values typically are represented as a value from
                        1.00-5.00. In this representation the MOS score will be
                        scaled by 100.  Hence a value of 3.25 will be
                        represented as 325. A value of 65535 shall be
                        interpreted as NULL or unsupported."
                SYNTAX  Integer32 (100..1000|65535)

        Percentage ::= TEXTUAL-CONVENTION
                DISPLAY-HINT "d"
                STATUS  current
                DESCRIPTION
                        "Percentages typically are represented as a value from
                        0.00%-100.00%. In this representation the percentage
                        will be scaled by 100.  Hence a value of 0.45 will be
                        represented as 45 and a value of 100.00 will be
                        represented as 1000. A value of 65535 shall be
                        interpreted as NULL or unsupported."
                SYNTAX  Integer32 (0..1000|65535)

        MsecValue ::= TEXTUAL-CONVENTION
                DISPLAY-HINT "d"
                STATUS  current
                DESCRIPTION
                        "Millisecond values typically are represented as a
                        value with a decimal place.
                        In this representation th value will be
                        scaled by 10.  Hence a value of 1.5 will be represented
                        as 15."
                SYNTAX  Integer32



     adVQMEndOfCallTrap NOTIFICATION-TYPE
         OBJECTS  {
                adVqmTrapEventType,
                adVqmCallHistMosLq,
                adVqmCallHistMosPq,
                adVqmCallHistPktsLostTotal,
                adVqmCallHistOutOfOrder,
                adVqmCallHistPdvAverageMs
         }
         STATUS      current
         DESCRIPTION
            "This trap indicates that the severity level has been met at the
            end of a call to generate a trap. Enable this trap using
            adVqmTrapState. The severity level, by default, is set to warning.
            Use adVqmTrapCfgSeverityLevel to change the severity level setting."
     ::= { adVQMTrap 1 }


     adVqmTrapState OBJECT-TYPE
         SYNTAX  INTEGER     { enabled(1), disabled(2) }
         MAX-ACCESS   read-write
         STATUS   current
         DESCRIPTION
            "This variable indicates whether the system produces
            the vqmEndOfCall trap."
         DEFVAL { disabled }
         ::= { adVQMTrapControl 1 }

     adVqmTrapCfgSeverityLevel OBJECT-TYPE
         SYNTAX  INTEGER     {
                        error(1),
                        warning(2),
                        notice(3),
                        info(4)
                         }
         MAX-ACCESS   read-write
         STATUS   current
         DESCRIPTION
            "This read-write variable indicates the severity level that will
            generate an adVqmEndOfCallTrap. If traps are enabled, a trap will be
            generated at the end of a call for all calls that have a numerical
            severity level equal to or less than the configured
            severity level."
         DEFVAL { warning }
         ::= { adVQMTrapControl 2 }

     adVqmTrapEventType OBJECT-TYPE
        SYNTAX  BITS {
                        lQMos(0),
                        pQMos(1),
                        loss(2),
                        outOfOrder(3),
                        jitter(4)
        }
        MAX-ACCESS  read-only
        STATUS  current
        DESCRIPTION
                "This variable indicates the event that generated the most
                recent trap. The vqmTrapEventType is a bitmap and can represent
                multiple failures simultaneously.
                The various bit positions are:
                BIT   EVENT      DESCRIPTION
                0     LQMos      LQ-MOS threshold exceeded
                1     PQMos      PQ-MOS threshold exceeded
                2     Loss       Loss threshold exceeded
                3     OutOfOrder Out-of-Order threshold exceeded
                4     Jitter     Jitter threshold exceeded
                "
         ::= { adVQMTrapControl 3 }

     -- adVQMCfg Group
     adVqmCfgEnable OBJECT-TYPE
        SYNTAX  INTEGER {
                enabled (1),
                disabled (2)
                }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "VQM feature global enable/disable."
         ::= { adVQMCfg 1 }

     adVqmCfgSipEnable OBJECT-TYPE
        SYNTAX  INTEGER {
                enabled (1),
                disabled (2)
                }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "VQM uses SIP signaling to monitor for RTP traffic."
         ::= { adVQMCfg 2 }

     adVqmCfgUdpEnable OBJECT-TYPE
        SYNTAX  INTEGER {
                enabled (1),
                disabled (2)
                }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "VQM uses UDP packet inspection to monitor for RTP
                traffic."
         ::= { adVQMCfg 3 }

     adVqmCfgInternationalCode OBJECT-TYPE
        SYNTAX  INTEGER {
                none (1),
                japan (5)
                }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Regional scoring adjustment for VQM calculations."
         ::= { adVQMCfg 4 }

     adVqmCfgJitterBufferType OBJECT-TYPE
        SYNTAX  INTEGER {
                jitterBufferFixed (1),
                jitterBufferAdaptive (2),
                jitterBufferUnknown (3)
                }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Regional scoring adjustment for VQM calculations."
         ::= { adVQMCfg 5 }

     adVqmCfgJitterBufferAdaptiveMin OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Minimum adaptive jitter buffer delay (10-240 ms)."
         ::= { adVQMCfg 6 }

     adVqmCfgJitterBufferAdaptiveNominal OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Adaptive starting delay applied to packets (10-240 ms)."
         ::= { adVQMCfg 7 }

     adVqmCfgJitterBufferAdaptiveMax OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Adaptive maximum jitter buffer delay (40-320 ms)."
         ::= { adVQMCfg 8 }

     adVqmCfgJitterBufferFixedNominal OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Fixed jitter buffer constant delay applied to packets
                (4-250 ms)."
         ::= { adVQMCfg 9 }

     adVqmCfgJitterBufferFixedSize OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Number packets fixed jitter buffer can hold (10-500 pkts)."
         ::= { adVQMCfg 10 }

     adVqmCfgJitterBufferThresholdEarlyMs OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Jitter buffer threshold for early arriving packets."
         ::= { adVQMCfg 11 }

     adVqmCfgJitterBufferThresholdLateMs OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Jitter buffer threshold for late arriving packets."
         ::= { adVQMCfg 12 }

     adVqmCfgRoundTripPingEnabled OBJECT-TYPE
        SYNTAX  INTEGER {
                enabled (1),
                disabled (2)
                }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Ping use for measuring round-trip delay between
                end-points."
         ::= { adVQMCfg 13 }

     adVqmCfgRoundTripPingType OBJECT-TYPE
        SYNTAX  INTEGER {
                ping (1),
                timestamp (2)
                }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "ICMP Ping or ICMP Timestamp used for delay measurements."
         ::= { adVQMCfg 14 }

     adVqmCfgCallHistorySize OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Size of Call History buffer."
         ::= { adVQMCfg 15 }

     adVqmCfgHistoryThresholdLqmos OBJECT-TYPE
        SYNTAX          MOSvalue
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Store history statistics if below LQ MOS threshold value."
         ::= { adVQMCfg 16 }

     adVqmCfgHistoryThresholdCqmos OBJECT-TYPE
        SYNTAX          MOSvalue
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Store history statistics if below CQ MOS threshold value."
         ::= { adVQMCfg 17 }

     adVqmCfgHistoryThresholdPqmos OBJECT-TYPE
        SYNTAX          MOSvalue
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Store history statistics if below PESQ MOS threshold
                value."
         ::= { adVQMCfg 18 }

     adVqmCfgHistoryThresholdLoss OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Store history statistics if loss packets are greater than
                threshold value."
         ::= { adVQMCfg 19 }

     adVqmCfgHistoryThresholdOutOfOrder OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Store history statistics if Out of Order packets are greater
                than threshold value."
         ::= { adVQMCfg 20 }

     adVqmCfgHistoryThresholdJitter OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
                "Store history statistics if Jitter exceeds threshold value."
         ::= { adVQMCfg 21 }

     adVqmCfgClear OBJECT-TYPE
        SYNTAX INTEGER {
                clear (1)
        }
        MAX-ACCESS      read-write
        STATUS          current
        DESCRIPTION
            "Clear all VQM statistics.
            This is a write-only variable. A read will result in no action
            being taken."
         ::= { adVQMCfg 22 }

     adVqmCfgClearCallHistory OBJECT-TYPE
        SYNTAX INTEGER {
                clear (1)
        }
        MAX-ACCESS      read-write
        STATUS          current
        DESCRIPTION
            "Clear only call history buffer.
            This is a write-only variable. A read will result in no action
            being taken."
         ::= { adVQMCfg 23 }



     --
     -- adVQMThreshold Group
     --

     adVqmThresholdLqmosInfo OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening Quality MOS threshold value for info event."
         ::= { adVQMThreshold 1 }

     adVqmThresholdLqmosNotice OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening Quality MOS threshold value for notice event."
         ::= { adVQMThreshold 2 }

     adVqmThresholdLqmosWarning OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening Quality MOS threshold value for warning event."
         ::= { adVQMThreshold 3 }

     adVqmThresholdLqmosError OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening Quality MOS threshold value for error event."
         ::= { adVQMThreshold 4 }

     adVqmThresholdPqmosInfo OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Normalized PESQ MOS threshold value for info event."
         ::= { adVQMThreshold 5 }

     adVqmThresholdPqmosNotice OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Normalized PESQ MOS threshold value for notice event."
         ::= { adVQMThreshold 6 }

     adVqmThresholdPqmosWarning OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Normalized PESQ MOS threshold value for warning event."
         ::= { adVQMThreshold 7 }

     adVqmThresholdPqmosError OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Normalized PESQ MOS threshold value for error event."
         ::= { adVQMThreshold 8 }

     adVqmThresholdOutOfOrderInfo OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Out of order packet threshold value for info event."
         ::= { adVQMThreshold 9 }

     adVqmThresholdOutOfOrderNotice OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Out of order packet threshold value for notice event."
         ::= { adVQMThreshold 10 }

     adVqmThresholdOutOfOrderWarning OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Out of order packet threshold value for warning event."
         ::= { adVQMThreshold 11 }

     adVqmThresholdOutOfOrderError OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Out of order packet threshold value for error event."
         ::= { adVQMThreshold 12 }

     adVqmThresholdLossInfo OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Loss of packet threshold value for info event."
         ::= { adVQMThreshold 13 }

     adVqmThresholdLossNotice OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Loss of packet threshold value for notice event."
         ::= { adVQMThreshold 14 }

     adVqmThresholdLossWarning OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Loss of packet threshold value for warning event."
         ::= { adVQMThreshold 15 }

     adVqmThresholdLossError OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Loss of packet threshold value for error event."
         ::= { adVQMThreshold 16 }

     adVqmThresholdJitterInfo OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Jitter threshold value for info event."
         ::= { adVQMThreshold 17 }

     adVqmThresholdJitterNotice OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Jitter threshold value for notice event."
         ::= { adVQMThreshold 18 }

     adVqmThresholdJitterWarning OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Jitter threshold value for warning event."
         ::= { adVQMThreshold 19 }

     adVqmThresholdJitterError OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Jitter threshold value for error event."
         ::= { adVQMThreshold 20 }



        --
        -- adVQMSysPerf Group
        --

     adVqmSysActiveCalls OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number of active calls."
         ::= { adVQMSysPerf 1 }

     adVqmSysActiveExcellent OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Active calls in excellent MOS range (4.400 - 4.000)."
         ::= { adVQMSysPerf 2 }

     adVqmSysActiveGood OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Active calls in good MOS range (3.999 - 3.600)."
         ::= { adVQMSysPerf 3 }

     adVqmSysActiveFair OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Active calls in fair MOS range (3.599 - 2.600)."
         ::= { adVQMSysPerf 4 }

     adVqmSysActivePoor OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Active calls in poor MOS range (2.599 - 0.000)."
         ::= { adVQMSysPerf 5 }

     adVqmSysCallHistoryCalls OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number of calls in history buffer."
         ::= { adVQMSysPerf 6 }

     adVqmSysCallHistoryExcellent OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "History calls in excellent MOS range."
         ::= { adVQMSysPerf 7 }

     adVqmSysCallHistoryGood OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "History calls in good MOS range."
         ::= { adVQMSysPerf 8 }

     adVqmSysCallHistoryFair OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "History calls in fair MOS range."
         ::= { adVQMSysPerf 9 }

     adVqmSysCallHistoryPoor OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "History calls in poor MOS range."
         ::= { adVQMSysPerf 10 }

     adVqmSysAllCallsExcellent OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total calls in excellent MOS range."
         ::= { adVQMSysPerf 11 }

     adVqmSysAllCallsGood OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total calls in good MOS range."
         ::= { adVQMSysPerf 12 }

     adVqmSysAllCallsFair OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total calls in fair MOS range."
         ::= { adVQMSysPerf 13 }

     adVqmSysAllCallsPoor OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total calls in poor MOS range."
         ::= { adVQMSysPerf 14 }

     --
     -- adVQMInterfaceTable
     --

     adVQMInterfaceTable OBJECT-TYPE
         SYNTAX         SEQUENCE OF AdVQMInterfaceEntry
         MAX-ACCESS     not-accessible
         STATUS         current
         DESCRIPTION
            "The adVqmInterface table provides aggregate statistics for each
            system interface.  VQM processes RTP stream packets as received by
            the interface (inbound direction).  The user can enable or disable
            each system interface for VQM using the CLI/GUI.  The VQM interface
            table objects include enable/disable, packet statistics for number
            received, lost, out-of-order, discarded, number of active and
            completed calls, MOS scores, delay measurements, and quality
            analysis counts."
         ::= { adVQMInterface 1 }

     adVQMInterfaceEntry OBJECT-TYPE
         SYNTAX   AdVQMInterfaceEntry
         MAX-ACCESS   not-accessible
         STATUS       current
         DESCRIPTION
            "The statistics for a particular interface."
         INDEX { adVqmIfcId }
         ::= { adVQMInterfaceTable 1 }


     AdVQMInterfaceEntry ::=
        SEQUENCE {
                adVqmIfcId                      Unsigned32,
                adVqmIfcName                    DisplayString,
                adVqmIfcPktsRx                  Counter64,
                adVqmIfcPktsLost                Counter64,
                adVqmIfcPktsOoo                 Counter64,
                adVqmIfcPktsDiscarded           Counter64,
                adVqmIfcNumberActiveCalls       Counter32,
                adVqmIfcTerminatedCalls         Counter32,
                adVqmIfcRLqMinimum              Unsigned32,
                adVqmIfcRLqAverage              Unsigned32,
                adVqmIfcRLqMaximum              Unsigned32,
                adVqmIfcRCqMinimum              Unsigned32,
                adVqmIfcRCqAverage              Unsigned32,
                adVqmIfcRCqMaximum              Unsigned32,
                adVqmIfcRG107Minimum            Unsigned32,
                adVqmIfcRG107Average            Unsigned32,
                adVqmIfcRG107Maximum            Unsigned32,
                adVqmIfcMosLqMinimum            MOSvalue,
                adVqmIfcMosLqAverage            MOSvalue,
                adVqmIfcMosLqMaximum            MOSvalue,
                adVqmIfcMosCqMinimum            MOSvalue,
                adVqmIfcMosCqAverage            MOSvalue,
                adVqmIfcMosCqMaximum            MOSvalue,
                adVqmIfcMosPqMinimum            MOSvalue,
                adVqmIfcMosPqAverage            MOSvalue,
                adVqmIfcMosPqMaximum            MOSvalue,
                adVqmIfcLossMinimum             Unsigned32,
                adVqmIfcLossAverage             Unsigned32,
                adVqmIfcLossMaximum             Unsigned32,
                adVqmIfcDiscardsMinimum         Unsigned32,
                adVqmIfcDiscardsAverage         Unsigned32,
                adVqmIfcDiscardsMaximum         Unsigned32,
                adVqmIfcPdvAverageMs            INTEGER,
                adVqmIfcPdvMaximumMs            INTEGER,
                adVqmIfcDelayMinMsec            Unsigned32,
                adVqmIfcDelayAvgMsec            Unsigned32,
                adVqmIfcDelayMaxMsec            Unsigned32,
                adVqmIfcNumberStreamsExcellent  Counter32,
                adVqmIfcNumberStreamsGood       Counter32,
                adVqmIfcNumberStreamsFair       Counter32,
                adVqmIfcNumberStreamsPoor       Counter32,
                adVqmIfcClear                   INTEGER
     }

     adVqmIfcId OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "VQM interface index number. This number is unique to the VQM MIB."
         ::= { adVQMInterfaceEntry 1 }


     adVqmIfcName OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Interface name."
         ::= { adVQMInterfaceEntry 2 }

     adVqmIfcPktsRx OBJECT-TYPE
         SYNTAX         Counter64
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Packets received."
         ::= { adVQMInterfaceEntry 3 }

     adVqmIfcPktsLost OBJECT-TYPE
         SYNTAX         Counter64
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Packets lost."
         ::= { adVQMInterfaceEntry 4 }

     adVqmIfcPktsOoo OBJECT-TYPE
         SYNTAX         Counter64
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Packets received out-of-order."
         ::= { adVQMInterfaceEntry 5 }

     adVqmIfcPktsDiscarded OBJECT-TYPE
         SYNTAX         Counter64
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Packets discarded."
         ::= { adVQMInterfaceEntry 6 }

     adVqmIfcNumberActiveCalls OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number of active calls."
         ::= { adVQMInterfaceEntry 7 }

     adVqmIfcTerminatedCalls OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number of terminated calls."
         ::= { adVQMInterfaceEntry 8 }

     adVqmIfcRLqMinimum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum listening quality R Factor."
         ::= { adVQMInterfaceEntry 9 }

     adVqmIfcRLqAverage OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average listening quality R Factor."
         ::= { adVQMInterfaceEntry 10 }

     adVqmIfcRLqMaximum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum listening quality R Factor."
         ::= { adVQMInterfaceEntry 11 }

     adVqmIfcRCqMinimum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum conversation quality R Factor."
         ::= { adVQMInterfaceEntry 12 }

     adVqmIfcRCqAverage OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average conversation quality R Factor."
         ::= { adVQMInterfaceEntry 13 }

     adVqmIfcRCqMaximum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum conversation quality R Factor."
         ::= { adVQMInterfaceEntry 14 }

     adVqmIfcRG107Minimum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum G.107 R Factor."
         ::= { adVQMInterfaceEntry 15 }

     adVqmIfcRG107Average OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average G.107 R Factor."
         ::= { adVQMInterfaceEntry 16 }

     adVqmIfcRG107Maximum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum G.107 R Factor."
         ::= { adVQMInterfaceEntry 17 }

     adVqmIfcMosLqMinimum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum listening quality MOS score."
         ::= { adVQMInterfaceEntry 18 }

     adVqmIfcMosLqAverage OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average listening quality MOS score."
         ::= { adVQMInterfaceEntry 19 }

     adVqmIfcMosLqMaximum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum listening quality MOS score."
         ::= { adVQMInterfaceEntry 20 }

     adVqmIfcMosCqMinimum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum conversation quality MOS score."
         ::= { adVQMInterfaceEntry 21 }

     adVqmIfcMosCqAverage OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average conversation quality MOS score."
         ::= { adVQMInterfaceEntry 22 }

     adVqmIfcMosCqMaximum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum conversation quality MOS score."
         ::= { adVQMInterfaceEntry 23 }

     adVqmIfcMosPqMinimum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum PESQ, P.862 raw MOS score."
         ::= { adVQMInterfaceEntry 24 }

     adVqmIfcMosPqAverage OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average PESQ, P.862 raw MOS score."
         ::= { adVQMInterfaceEntry 25 }

     adVqmIfcMosPqMaximum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum PESQ, P.862 raw MOS score."
         ::= { adVQMInterfaceEntry 26 }

     adVqmIfcLossMinimum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum network lost packets for all calls completed."
         ::= { adVQMInterfaceEntry 27 }

     adVqmIfcLossAverage OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average network lost packets for all calls completed."
         ::= { adVQMInterfaceEntry 28 }

     adVqmIfcLossMaximum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum network lost packets for all calls completed."
         ::= { adVQMInterfaceEntry 29 }

     adVqmIfcDiscardsMinimum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum packets discarded due to late or early arrival."
         ::= { adVQMInterfaceEntry 30 }

     adVqmIfcDiscardsAverage OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average packets discarded due to late or early arrival."
         ::= { adVQMInterfaceEntry 31 }

     adVqmIfcDiscardsMaximum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum packets discarded due to late or early arrival."
         ::= { adVQMInterfaceEntry 32 }

     adVqmIfcPdvAverageMs OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Mean of Average packet delay variation for packets."
         ::= { adVQMInterfaceEntry 33 }

     adVqmIfcPdvMaximumMs OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum of reported average packet delay variation."
         ::= { adVQMInterfaceEntry 34 }

     adVqmIfcDelayMinMsec OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum packet delay in ms."
         ::= { adVQMInterfaceEntry 35 }

     adVqmIfcDelayAvgMsec OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average packet delay in ms."
         ::= { adVQMInterfaceEntry 36 }

     adVqmIfcDelayMaxMsec OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum packet delay in ms."
         ::= { adVQMInterfaceEntry 37 }

     adVqmIfcNumberStreamsExcellent OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number voice streams with excellent MOS score."
         ::= { adVQMInterfaceEntry 38 }

     adVqmIfcNumberStreamsGood OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number voice streams with good MOS score."
         ::= { adVQMInterfaceEntry 39 }

     adVqmIfcNumberStreamsFair OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number voice streams with fair MOS score."
         ::= { adVQMInterfaceEntry 40 }

     adVqmIfcNumberStreamsPoor OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number voice streams with poor MOS score."
         ::= { adVQMInterfaceEntry 41 }

     adVqmIfcClear OBJECT-TYPE
        SYNTAX INTEGER {
                clear (1)
        }
        MAX-ACCESS      read-write
        STATUS          current
        DESCRIPTION
            "Clear all VQM statistics.
            This is a write-only variable. A read will result in no action
            being taken."
         ::= { adVQMInterfaceEntry 42 }

     --
     -- adVqmEndPoint
     --

     adVQMEndPointTable OBJECT-TYPE
         SYNTAX         SEQUENCE OF AdVQMEndPointEntry
         MAX-ACCESS     not-accessible
         STATUS         current
         DESCRIPTION
            "The adVqmEndPoint table provides aggregate statistics for each
            VoIP end-point device.  The RTP Source IP address,
            adVqmEndPointRtpSourceIp, provides a unique table index.
            The VQM End-point table provides summary statistics for MOS scores,
            packets lost, out-of-order, jitter, delay and quality analysis
            counts."
         ::= { adVQMEndPoint 1 }

     adVQMEndPointEntry OBJECT-TYPE
         SYNTAX   AdVQMEndPointEntry
         MAX-ACCESS   not-accessible
         STATUS       current
         DESCRIPTION
            "The statistics for a particular VoIP end-point device."
         INDEX { adVqmEndPointRtpSourceIp }
         ::= { adVQMEndPointTable 1 }


     AdVQMEndPointEntry ::=
        SEQUENCE {
                adVqmEndPointRtpSourceIp                IpAddress,
                adVqmEndPointNumberCompletedCalls       Counter32,
                adVqmEndPointInterfaceId                Unsigned32,
                adVqmEndPointInterfaceName              DisplayString,
                adVqmEndPointMosLqMinimum               MOSvalue,
                adVqmEndPointMosLqAverage               MOSvalue,
                adVqmEndPointMosLqMaximum               MOSvalue,
                adVqmEndPointMosPqMinimum               MOSvalue,
                adVqmEndPointMosPqAverage               MOSvalue,
                adVqmEndPointMosPqMaximum               MOSvalue,
                adVqmEndPointPktsLostTotal              Counter32,
                adVqmEndPointPktsOutOfOrder             Counter32,
                adVqmEndPointJitterMaximum              Unsigned32,
                adVqmEndPointNumberStreamsExcellent     Counter32,
                adVqmEndPointNumberStreamsGood          Counter32,
                adVqmEndPointNumberStreamsFair          Counter32,
                adVqmEndPointNumberStreamsPoor          Counter32
     }

     adVqmEndPointRtpSourceIp OBJECT-TYPE
         SYNTAX         IpAddress
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Source IP Address of RTP stream from this end-point."
         ::= { adVQMEndPointEntry 1 }

     adVqmEndPointNumberCompletedCalls OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number of completed calls on this end-point."
         ::= { adVQMEndPointEntry 2 }

     adVqmEndPointInterfaceId OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Interface index that received RTP stream from this end-point."
         ::= { adVQMEndPointEntry 3 }

     adVqmEndPointInterfaceName OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Interface name that received RTP stream from this end-point."
         ::= { adVQMEndPointEntry 4 }

     adVqmEndPointMosLqMinimum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum listening quality MOS score."
         ::= { adVQMEndPointEntry 5 }

     adVqmEndPointMosLqAverage OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average listening quality MOS score."
         ::= { adVQMEndPointEntry 6 }

     adVqmEndPointMosLqMaximum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum listening quality MOS score."
         ::= { adVQMEndPointEntry 7 }

     adVqmEndPointMosPqMinimum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Minimum PESQ MOS score."
         ::= { adVQMEndPointEntry 8 }

     adVqmEndPointMosPqAverage OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average PESQ MOS score."
         ::= { adVQMEndPointEntry 9 }

     adVqmEndPointMosPqMaximum OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum PESQ MOS score."
         ::= { adVQMEndPointEntry 10 }

     adVqmEndPointPktsLostTotal OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total packets lost."
         ::= { adVQMEndPointEntry 11 }

     adVqmEndPointPktsOutOfOrder OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total out-of-order packets."
         ::= { adVQMEndPointEntry 12 }

     adVqmEndPointJitterMaximum OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum jitter."
         ::= { adVQMEndPointEntry 13 }

     adVqmEndPointNumberStreamsExcellent OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number voice streams with excellent MOS score."
         ::= { adVQMEndPointEntry 14 }

     adVqmEndPointNumberStreamsGood OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number voice streams with good MOS score."
         ::= { adVQMEndPointEntry 15 }

     adVqmEndPointNumberStreamsFair OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number voice streams with fair MOS score."
         ::= { adVQMEndPointEntry 16 }

     adVqmEndPointNumberStreamsPoor OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number voice streams with poor MOS score."
         ::= { adVQMEndPointEntry 17 }

     --
     -- adVqmCallHistory
     --

     adVQMCallHistoryTable OBJECT-TYPE
         SYNTAX         SEQUENCE OF AdVQMCallHistoryEntry
         MAX-ACCESS     not-accessible
         STATUS         current
         DESCRIPTION
            "The adVqmCallHistory table provides detail voice quality statistics
            on completed RTP voice streams.  A voice call will typically have
            two entries in this table one for each RTP stream.  A combination
            of Source IP Address and Port, Destination IP Address and Port,
            and SSRC (synchronization source ID) are necessary to uniquely
            identify the call session.
            One management option is to configure VQM to only save call history
            information for poor quality calls that exceed threshold limits.
            Threshold limit settings are available for MOS scores and packet
            statistics for loss, out-of-order, and jitter.  Setting the maximum
            call history buffer size to a lower value (default is 100 streams)
            can reduce the amount of data transfer to the NMS during a
            SNMP query."
         ::= { adVQMHistory 1 }

     adVQMCallHistoryEntry OBJECT-TYPE
         SYNTAX   AdVQMCallHistoryEntry
         MAX-ACCESS   not-accessible
         STATUS       current
         DESCRIPTION
            "The statistics for a particular VoIP end-point device."
         INDEX { adVqmCallHistRtpSourceIp, adVqmCallHistRtpSourcePort,
                adVqmCallHistRtpDestIp, adVqmCallHistRtpDestPort,
                adVqmCallHistSsrcid }
         ::= { adVQMCallHistoryTable 1 }

     AdVQMCallHistoryEntry ::=
        SEQUENCE {
                adVqmCallHistRtpSourceIp                IpAddress,
                adVqmCallHistRtpSourcePort              Unsigned32,
                adVqmCallHistRtpDestIp                  IpAddress,
                adVqmCallHistRtpDestPort                Unsigned32,
                adVqmCallHistSsrcid                     Unsigned32,
                adVqmCallHistTo                         DisplayString,
                adVqmCallHistFrom                       DisplayString,
                adVqmCallHistRtpSourceUri               DisplayString,
                adVqmCallHistCallid                     DisplayString,
                adVqmCallHistCcmid                      Unsigned32,
                adVqmCallHistSourceIntName              DisplayString,
                adVqmCallHistDestIntName                DisplayString,
                adVqmCallHistSourceIntDescription       DisplayString,
                adVqmCallHistDestIntDescription         DisplayString,
                adVqmCallHistCallStart                  DisplayString,
                adVqmCallHistCallDurationMs             Unsigned32,
                adVqmCallHistCodec                      INTEGER,
                adVqmCallHistCodecClass                 INTEGER,
                adVqmCallHistDscp                       Unsigned32,
                adVqmCallHistPktsRcvdTotal              Counter32,
                adVqmCallHistPktsLostTotal              Counter32,
                adVqmCallHistPktsDiscardedTotal         Counter32,
                adVqmCallHistOutOfOrder                 Counter32,
                adVqmCallHistPdvAverageMs               Unsigned32,
                adVqmCallHistPdvMaximumMs               Unsigned32,
                adVqmCallHistRtDelayInst                INTEGER,
                adVqmCallHistRtDelayAverage             INTEGER,
                adVqmCallHistRtDelayMaximum             INTEGER,
                adVqmCallHistOnewayDelayInst            INTEGER,
                adVqmCallHistOnewayDelayAverage         INTEGER,
                adVqmCallHistOnewayDelayMaximum         INTEGER,
                adVqmCallHistOrigDelayInst              INTEGER,
                adVqmCallHistOrigDelayAverage           INTEGER,
                adVqmCallHistOrigDelayMaximum           INTEGER,
                adVqmCallHistTermDelayMinimum           INTEGER,
                adVqmCallHistTermDelayAverage           INTEGER,
                adVqmCallHistTermDelayMaximum           INTEGER,
                adVqmCallHistRLq                        Unsigned32,
                adVqmCallHistRCq                        Unsigned32,
                adVqmCallHistRNominal                   Unsigned32,
                adVqmCallHistRG107                      Unsigned32,
                adVqmCallHistMosLq                      MOSvalue,
                adVqmCallHistMosCq                      MOSvalue,
                adVqmCallHistMosPq                      MOSvalue,
                adVqmCallHistMosNominal                 MOSvalue,
                adVqmCallHistDegLoss                    Percentage,
                adVqmCallHistDegDiscard                 Percentage,
                adVqmCallHistDegVocoder                 Percentage,
                adVqmCallHistDegRecency                 Percentage,
                adVqmCallHistDegDelay                   Percentage,
                adVqmCallHistDegSiglvl                  Percentage,
                adVqmCallHistDegNoiselvl                Percentage,
                adVqmCallHistDegEcholvl                 Percentage,
                adVqmCallHistBurstRLq                   Unsigned32,
                adVqmCallHistBurstCount                 Counter32,
                adVqmCallHistBurstRateAvg               Percentage,
                adVqmCallHistBurstLenAvgPkts            Unsigned32,
                adVqmCallHistBurstLenAvgMsec            Unsigned32,
                adVqmCallHistGapR                       Unsigned32,
                adVqmCallHistGapCount                   Counter32,
                adVqmCallHistGapLossRateAvg             Percentage,
                adVqmCallHistGapLenPkts                 Unsigned32,
                adVqmCallHistGapLenMsec                 Unsigned32,
                adVqmCallHistLossRateAvg                Percentage,
                adVqmCallHistNetworkLossAvg             Percentage,
                adVqmCallHistDiscardRateAvg             Percentage,
                adVqmCallHistExcessBurst                Unsigned32,
                adVqmCallHistExcessGap                  Unsigned32,
                adVqmCallHistPpdvMsec                   MsecValue,
                adVqmCallHistLateThresholdMs            MsecValue,
                adVqmCallHistLateThresholdPc            Percentage,
                adVqmCallHistLateUnderThresh            Counter32,
                adVqmCallHistLateTotalCount             Counter32,
                adVqmCallHistLatePeakJitterMs           MsecValue,
                adVqmCallHistEarlyThreshMs              MsecValue,
                adVqmCallHistEarlyThreshPc              Percentage,
                adVqmCallHistEarlyUnderThresh           Counter32,
                adVqmCallHistEarlyTotalCount            Counter32,
                adVqmCallHistEarlyPeakJitterMs          MsecValue,
                adVqmCallHistDelayIncreaseCount         Counter32,
                adVqmCallHistDelayDecreaseCount         Counter32,
                adVqmCallHistResyncCount                Counter32,
                adVqmCallHistJitterBufferType           INTEGER,
                adVqmCallHistJbCfgMin                   Unsigned32,
                adVqmCallHistJbCfgNom                   Unsigned32,
                adVqmCallHistJbCfgMax                   Unsigned32,
                adVqmCallHistDuplicatePkts              Counter32,
                adVqmCallHistEarlyPkts                  Counter32,
                adVqmCallHistLatePkts                   Counter32,
                adVqmCallHistOverrunDiscardPkts         Counter32,
                adVqmCallHistUnderrunDiscardPkts        Counter32,
                adVqmCallHistDelayMinMsec               Unsigned32,
                adVqmCallHistDelayAvgMsec               Unsigned32,
                adVqmCallHistDelayMaxMsec               Unsigned32,
                adVqmCallHistDelayCurrentMsec           Unsigned32,
                adVqmCallHistExtRLqIn                   INTEGER,
                adVqmCallHistExtRLqOut                  INTEGER,
                adVqmCallHistExtRCqIn                   INTEGER,
                adVqmCallHistExtRCqOut                  INTEGER,
                adVqmCallHistThroughPutIndex            Unsigned32,
                adVqmCallHistReliabilityIndex           Unsigned32,
                adVqmCallHistBitrate                    Unsigned32
     }

     adVqmCallHistRtpSourceIp OBJECT-TYPE
         SYNTAX         IpAddress
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Source IP Address of RTP stream."
         ::= { adVQMCallHistoryEntry 1 }

     adVqmCallHistRtpSourcePort OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Source port number."
         ::= { adVQMCallHistoryEntry 2 }

     adVqmCallHistRtpDestIp OBJECT-TYPE
         SYNTAX         IpAddress
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Destination IP address of RTP stream."
         ::= { adVQMCallHistoryEntry 3 }

     adVqmCallHistRtpDestPort OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Destination port number."
         ::= { adVQMCallHistoryEntry 4 }

     adVqmCallHistSsrcid OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "SSRC (synchronization source ID) for this stream per RFC3550."
         ::= { adVQMCallHistoryEntry 5 }

     adVqmCallHistTo OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "To URI (dialed) from monitored SIP call signaling."
         ::= { adVQMCallHistoryEntry 6 }

     adVqmCallHistFrom OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "From URI (originating caller) from monitored SIP call signaling."
         ::= { adVQMCallHistoryEntry 7 }

     adVqmCallHistRtpSourceUri OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "URI of sender RTP, either To URI or From URI."
         ::= { adVQMCallHistoryEntry 8 }

     adVqmCallHistCallid OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "SIP call-ID from monitored SIP call signaling."
         ::= { adVQMCallHistoryEntry 9 }

     adVqmCallHistCcmid OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Internal generated call-ID."
         ::= { adVQMCallHistoryEntry 10 }

     adVqmCallHistSourceIntName OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Source interface name that RTP arrived inbound to unit."
         ::= { adVQMCallHistoryEntry 11 }

     adVqmCallHistDestIntName OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Destination interface name for RTP."
         ::= { adVQMCallHistoryEntry 12 }

     adVqmCallHistSourceIntDescription OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Source interface description as defined in CLI or GUI."
         ::= { adVQMCallHistoryEntry 13 }

     adVqmCallHistDestIntDescription OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Destination interface description as defined in CLI or GUI."
         ::= { adVQMCallHistoryEntry 14 }

     adVqmCallHistCallStart OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Time at which monitoring began on this RTP stream."
         ::= { adVQMCallHistoryEntry 15 }

     adVqmCallHistCallDurationMs OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Elapsed time from start to last RTP packet on this stream."
         ::= { adVQMCallHistoryEntry 16 }

     adVqmCallHistCodec OBJECT-TYPE
         SYNTAX         INTEGER
                        {
                        -- -1
                        unknown         (1),
                        -- 0
                        g711U           (2),
                        g711UPLC        (3),
                        g723153K        (4),
                        deprecated1     (5),
                        g723163K        (6),
                        deprecated2     (7),
                        g728            (8),
                        deprecated3     (9),
                        g729            (10),
                        deprecated4     (11),
                        g729A           (12),
                        deprecated5     (13),
                        user1           (14),
                        user2           (15),
                        user3           (16),
                        user4           (17),
                        gsmfr           (18),
                        reservedgsmhr   (19),
                        gsmefr          (20),
                        sx7300          (21),
                        sx9600          (22),
                        g711A           (23),
                        g711APLC        (24),
                        deprecated6     (25),
                        g72616K         (26),
                        g72624K         (27),
                        g72632K         (28),
                        g72640K         (29),
                        gipse711U       (30),
                        gipse711A       (31),
                        gipsilbc        (32),
                        gipsisac        (33),
                        gipsipcmwb      (34),
                        g729E8K0        (35),
                        g729E11k8       (36),
                        wblinearpcm     (37),
                        wblinearpcmPlc  (38),
                        g722at64k       (39),
                        g722at56k       (40),
                        g722at48k       (41),
                        g7221at32k      (42),
                        g7221at24k      (43),
                        g7222at23k85    (44),
                        g7222at23k05    (45),
                        g7222at19k85    (46),
                        g7222at18k25    (47),
                        g7222at15k85    (48),
                        g7222at14k25    (49),
                        g7222at12k85    (50),
                        g7222at8k85     (51),
                        g7222at6k6      (52),
                        qcelp8          (53),
                        qcelp13         (54),
                        evrc            (55),
                        smv812          (56),
                        smv579          (57),
                        smv444          (58),
                        smv395          (59),
                        amrnb12k2       (60),
                        amrnb10k2       (61),
                        amrnb7k95       (62),
                        amrnb7k4        (63),
                        amrnb6k7        (64),
                        amrnb5k9        (65),
                        amrnb5k15       (66),
                        amrnb4k75       (67),
                        ilbc13k3        (68),
                        ilbc15k2        (69),
                        g711u56k        (70),
                        g711uPLC56k     (71),
                        g711A56k        (72),
                        g711APLC56k     (73),
                        g7231C          (74),
                        speex2k15       (75),
                        speex5k95       (76),
                        speeX8k         (77),
                        speeX11k        (78),
                        speeX15k        (79),
                        speeX18k2       (80),
                        speeX24k6       (81),
                        speeX3k95       (82),
                        speeX12k8       (83),
                        speeX16k8       (84),
                        speeX20k6       (85),
                        speeX23k8       (86),
                        speeX27k8       (87),
                        speeX34k2       (88),
                        speeX42k2       (89)
         }
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Last voice CODEC detected on this stream."
         ::= { adVQMCallHistoryEntry 17 }

     adVqmCallHistCodecClass OBJECT-TYPE
         SYNTAX         INTEGER {
                wideband        (1),
                other           (2)
         }
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Class to which CODEC vocoder belongs."
         ::= { adVQMCallHistoryEntry 18 }

     adVqmCallHistDscp OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Differentiated Services Code Point (DSCP) in RTP packet IP header."
         ::= { adVQMCallHistoryEntry 19 }

     adVqmCallHistPktsRcvdTotal OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total received RTP packets in this stream."
         ::= { adVQMCallHistoryEntry 20 }

     adVqmCallHistPktsLostTotal OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total packets determined to be lost in network by simulated jitter
            buffer."
         ::= { adVQMCallHistoryEntry 21 }

     adVqmCallHistPktsDiscardedTotal OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total packets discarded by simulated jitter buffer."
         ::= { adVQMCallHistoryEntry 22 }

     adVqmCallHistOutOfOrder OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total packets received out of order at simulated jitter buffer."
         ::= { adVQMCallHistoryEntry 23 }

     adVqmCallHistPdvAverageMs OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average Packet Delay Variation (PDV) in RTP stream in
            milliseconds."
         ::= { adVQMCallHistoryEntry 24 }

     adVqmCallHistPdvMaximumMs OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum Packet Delay Variation (PDV) in RTP stream in
            milliseconds."
         ::= { adVQMCallHistoryEntry 25 }

     adVqmCallHistRtDelayInst OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Instantaneous round-trip delay obtained from RTCP or RTCP XR
            reports."
         ::= { adVQMCallHistoryEntry 26 }

     adVqmCallHistRtDelayAverage OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average round-trip delay obtained from RTCP or RTCP XR reports."
         ::= { adVQMCallHistoryEntry 27 }

     adVqmCallHistRtDelayMaximum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum round-trip delay obtained from RTCP or RTCP XR reports."
         ::= { adVQMCallHistoryEntry 28 }

     adVqmCallHistOnewayDelayInst OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Instantaneous one-way delay including simulated jitter buffer (SJB)
            delay."
         ::= { adVQMCallHistoryEntry 29 }

     adVqmCallHistOnewayDelayAverage OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average one-way delay including SJB delay."
         ::= { adVQMCallHistoryEntry 30 }

     adVqmCallHistOnewayDelayMaximum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum one-way delay including SJB delay."
         ::= { adVQMCallHistoryEntry 31 }

     adVqmCallHistOrigDelayInst OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Instantaneous origination end-point delay from RTCP XR reports."
         ::= { adVQMCallHistoryEntry 32 }

     adVqmCallHistOrigDelayAverage OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average origination end-point delay from RTCP XR reports."
         ::= { adVQMCallHistoryEntry 33 }

     adVqmCallHistOrigDelayMaximum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum origination end-point delay from RTCP XR reports."
         ::= { adVQMCallHistoryEntry 34 }

     adVqmCallHistTermDelayMinimum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Instantaneous termination end-point delay, simulated jitter
            buffer + codec."
         ::= { adVQMCallHistoryEntry 35 }

     adVqmCallHistTermDelayAverage OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average termination end-point delay, simulated jitter
            buffer + codec."
         ::= { adVQMCallHistoryEntry 36 }

     adVqmCallHistTermDelayMaximum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum termination end-point delay, simulated jitter
            buffer + codec."
         ::= { adVQMCallHistoryEntry 37 }

     adVqmCallHistRLq OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening quality R factor."
         ::= { adVQMCallHistoryEntry 38 }

     adVqmCallHistRCq OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Conversational quality R factor."
         ::= { adVQMCallHistoryEntry 39 }

     adVqmCallHistRNominal OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Nominal or generally accepted maximum R factor for this stream."
         ::= { adVQMCallHistoryEntry 40 }

     adVqmCallHistRG107 OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "R factor based on ITU G.107 E Model for this stream."
         ::= { adVQMCallHistoryEntry 41 }

     adVqmCallHistMosLq OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening quality MOS score."
         ::= { adVQMCallHistoryEntry 42 }

     adVqmCallHistMosCq OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Conversational quality MOS score."
         ::= { adVQMCallHistoryEntry 43 }

     adVqmCallHistMosPq OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening quality MOS score normalized to the PESQ scale."
         ::= { adVQMCallHistoryEntry 44 }

     adVqmCallHistMosNominal OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Nominal or generally accepted maximum MOS score for this stream."
         ::= { adVQMCallHistoryEntry 45 }

     adVqmCallHistDegLoss OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to packet loss."
         ::= { adVQMCallHistoryEntry 46 }

     adVqmCallHistDegDiscard OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to packet discard."
         ::= { adVQMCallHistoryEntry 47 }

     adVqmCallHistDegVocoder OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to voice CODEC selection."
         ::= { adVQMCallHistoryEntry 48 }

     adVqmCallHistDegRecency OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to loss or discard recency in
            call."
         ::= { adVQMCallHistoryEntry 49 }

     adVqmCallHistDegDelay OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to delay."
         ::= { adVQMCallHistoryEntry 50 }

     adVqmCallHistDegSiglvl OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to low speech energy signal
            level."
         ::= { adVQMCallHistoryEntry 51 }

     adVqmCallHistDegNoiselvl OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to high noise levels."
         ::= { adVQMCallHistoryEntry 52 }

     adVqmCallHistDegEcholvl OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to high echo levels."
         ::= { adVQMCallHistoryEntry 53 }

     adVqmCallHistBurstRLq OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average listening quality R factor during burst condition."
         ::= { adVQMCallHistoryEntry 54 }

     adVqmCallHistBurstCount OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number of times the stream was in a burst condition."
         ::= { adVQMCallHistoryEntry 55 }

     adVqmCallHistBurstRateAvg OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames lost or discarded while in
            burst condition."
         ::= { adVQMCallHistoryEntry 56 }

     adVqmCallHistBurstLenAvgPkts OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average burst length in packets."
         ::= { adVQMCallHistoryEntry 57 }

     adVqmCallHistBurstLenAvgMsec OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average burst length in miliseconds."
         ::= { adVQMCallHistoryEntry 58 }

     adVqmCallHistGapR OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average listening quality R factor while stream is in a gap
            condition."
         ::= { adVQMCallHistoryEntry 59 }

     adVqmCallHistGapCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number of times the stream is in gap condition."
         ::= { adVQMCallHistoryEntry 60 }

     adVqmCallHistGapLossRateAvg  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames lost or discarded while in
            gap condition."
         ::= { adVQMCallHistoryEntry 61 }

     adVqmCallHistGapLenPkts  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average gap length in packets."
         ::= { adVQMCallHistoryEntry 62 }

     adVqmCallHistGapLenMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average gap length in milliseconds."
         ::= { adVQMCallHistoryEntry 63 }

     adVqmCallHistLossRateAvg  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames lost or discarded."
         ::= { adVQMCallHistoryEntry 64 }

     adVqmCallHistNetworkLossAvg  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames lost in network, excludes
            SJB discards."
         ::= { adVQMCallHistoryEntry 65 }

     adVqmCallHistDiscardRateAvg  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames discarded by SJB."
         ::= { adVQMCallHistoryEntry 66 }

     adVqmCallHistExcessBurst  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total length of speech lost during burst conditions not handled
            effectively by packet loss-concealment."
         ::= { adVQMCallHistoryEntry 67 }

     adVqmCallHistExcessGap  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total length of speech lost during gap conditions not handled
            effectively by packet loss-concealment."
         ::= { adVQMCallHistoryEntry 68 }

     adVqmCallHistPpdvMsec  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Packet to packed delay variation (jitter) in ms, as defined in
            RFC3550."
         ::= { adVQMCallHistoryEntry 69 }

     adVqmCallHistLateThresholdMs  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Late threshold for SJB, packets arriving under this threshold are
            not discarded."
         ::= { adVQMCallHistoryEntry 70 }

     adVqmCallHistLateThresholdPc  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage of total packets (including both early and late packets)
            not judged as being under the late jitter threshold."
         ::= { adVQMCallHistoryEntry 71 }

     adVqmCallHistLateUnderThresh  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Count of late packets which arrived under the late jitter
            threshold."
         ::= { adVQMCallHistoryEntry 72 }

     adVqmCallHistLateTotalCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total count of late packets arriving after the expected delay."
         ::= { adVQMCallHistoryEntry 73 }

     adVqmCallHistLatePeakJitterMs  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Largest jitter encountered among packets counted as late."
         ::= { adVQMCallHistoryEntry 74 }

     adVqmCallHistEarlyThreshMs  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Early threshold for SJB, packets arriving under this threshold
            will not be discarded by SJB as early."
         ::= { adVQMCallHistoryEntry 75 }

     adVqmCallHistEarlyThreshPc  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage of total packets (including both early and late packets)
            not judged as being under the early jitter threshold."
         ::= { adVQMCallHistoryEntry 76 }

     adVqmCallHistEarlyUnderThresh  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Count of early packets which arrived under the early jitter
            threshold."
         ::= { adVQMCallHistoryEntry 77 }

     adVqmCallHistEarlyTotalCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total count of early packets arriving before the expected delay."
         ::= { adVQMCallHistoryEntry 78 }

     adVqmCallHistEarlyPeakJitterMs  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Largest jitter encountered among packets counted as early."
         ::= { adVQMCallHistoryEntry 79 }

     adVqmCallHistDelayIncreaseCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of SJB delay increases (adaptive mode only)."
         ::= { adVQMCallHistoryEntry 80 }

     adVqmCallHistDelayDecreaseCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of SJB delay decreases (adaptive mode only)."
         ::= { adVQMCallHistoryEntry 81 }

     adVqmCallHistResyncCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of  SJB resynchronizations caused by discontinuous
            transmission (DTX), voice activity detection (VAD), or silence
            suppression."
         ::= { adVQMCallHistoryEntry 82 }

     adVqmCallHistJitterBufferType  OBJECT-TYPE
         SYNTAX         INTEGER {
                        fixed     (1),
                        adaptive  (2),
                        unknown   (3)
         }
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Configured SJB type either adaptive or fixed for this stream."
         ::= { adVQMCallHistoryEntry 83 }

     adVqmCallHistJbCfgMin  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Adaptive jitter buffer minimum delay applied to packets received."
         ::= { adVQMCallHistoryEntry 84 }

     adVqmCallHistJbCfgNom  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Adaptive jitter buffer inital delay applied to packets received,
            or fixed jitter buffer delay applied to each packet."
         ::= { adVQMCallHistoryEntry 85 }

     adVqmCallHistJbCfgMax  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Adaptive jitter buffer upper bound on delay applied to packets
            received, or fixed jitter buffer maximum number of packets that will
            be inserted in buffer."
         ::= { adVQMCallHistoryEntry 86 }

     adVqmCallHistDuplicatePkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of duplicated packets discarded by SJB."
         ::= { adVQMCallHistoryEntry 87 }

     adVqmCallHistEarlyPkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of packets arriving early."
         ::= { adVQMCallHistoryEntry 88 }

     adVqmCallHistLatePkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of packets arriving late."
         ::= { adVQMCallHistoryEntry 89 }

     adVqmCallHistOverrunDiscardPkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of packets discarded by SJB due to jitter buffer
            overrun."
         ::= { adVQMCallHistoryEntry 90 }

     adVqmCallHistUnderrunDiscardPkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of packets discarded by SJB due to jitter buffer
            underrun."
         ::= { adVQMCallHistoryEntry 91 }

     adVqmCallHistDelayMinMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Simulated jitter buffer delay minimum value."
         ::= { adVQMCallHistoryEntry 92 }

     adVqmCallHistDelayAvgMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Simulated jitter buffer delay average value."
         ::= { adVQMCallHistoryEntry 93 }

     adVqmCallHistDelayMaxMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Simulated jitter buffer delay maximum value."
         ::= { adVQMCallHistoryEntry 94 }

     adVqmCallHistDelayCurrentMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Simulated jitter buffer delay current value."
         ::= { adVQMCallHistoryEntry 95 }

     adVqmCallHistExtRLqIn  OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "External listening quality R factor (in), from RTCP XR report
            (RFC3611)."
         ::= { adVQMCallHistoryEntry 96 }

     adVqmCallHistExtRLqOut  OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "External listening quality R factor (out), from RTCP XR report
            (RFC3611)."
         ::= { adVQMCallHistoryEntry 97 }

     adVqmCallHistExtRCqIn  OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "External conversational quality R factor (in), from RTCP XR report
            (RFC3611)."
         ::= { adVQMCallHistoryEntry 98 }

     adVqmCallHistExtRCqOut  OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "External conversational quality R factor (out), from RTCP XR report
            (RFC3611)."
         ::= { adVQMCallHistoryEntry 99 }

     adVqmCallHistThroughPutIndex  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Estimated throughput for fax or data call; bitrate range from 0 to
            35000 bps, calculated based on gap/burst conditions and loss/discard
            rates."
         ::= { adVQMCallHistoryEntry 100 }

     adVqmCallHistReliabilityIndex  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Reliability index for a fax or data call ranging from 0 least to
            100 most reliable."
         ::= { adVQMCallHistoryEntry 101 }

     adVqmCallHistBitrate  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Actual bitrate of RTP stream, calculated using size of each RTP
            packet in bits and duration of audio represented in each packet,
            indication of required bandwidth."
         ::= { adVQMCallHistoryEntry 102 }

     --
     -- adVqmActiveCall
     --

     adVQMActiveCallTable OBJECT-TYPE
         SYNTAX         SEQUENCE OF AdVQMActiveCallEntry
         MAX-ACCESS     not-accessible
         STATUS         current
         DESCRIPTION
                "The adVqmActiveCall table provides detail voice quality
                statistics on currently active RTP voice streams.  A voice call
                will have two entries in this table one for each active RTP
                stream.  A combination of Source IP Address and Port,
                Destination IP Address and Port, and SSRC
                (synchronization source ID) are necessary to uniquely identify
                the call session.
                The VQM Active Call table shares the same type of information
                as found in the Call History table.  The VQM Manager transfers
                the active call statistics into the call history table database
                when the call completes."
         ::= { adVQMActive 1 }

     adVQMActiveCallEntry OBJECT-TYPE
         SYNTAX   AdVQMActiveCallEntry
         MAX-ACCESS   not-accessible
         STATUS       current
         DESCRIPTION
            "The statistics for a particular VoIP end-point device."
         INDEX { adVqmActCallRtpSourceIp, adVqmActCallRtpSourcePort,
                adVqmActCallRtpDestIp, adVqmActCallRtpDestPort,
                adVqmActCallSsrcid }
         ::= { adVQMActiveCallTable 1 }

     AdVQMActiveCallEntry ::=
        SEQUENCE {
                adVqmActCallRtpSourceIp                IpAddress,
                adVqmActCallRtpSourcePort              Unsigned32,
                adVqmActCallRtpDestIp                  IpAddress,
                adVqmActCallRtpDestPort                Unsigned32,
                adVqmActCallSsrcid                     Unsigned32,
                adVqmActCallTo                         DisplayString,
                adVqmActCallFrom                       DisplayString,
                adVqmActCallRtpSourceUri               DisplayString,
                adVqmActCallCallid                     DisplayString,
                adVqmActCallCcmid                      Unsigned32,
                adVqmActCallSourceIntName              DisplayString,
                adVqmActCallDestIntName                DisplayString,
                adVqmActCallSourceIntDescription       DisplayString,
                adVqmActCallDestIntDescription         DisplayString,
                adVqmActCallCallStart                  DisplayString,
                adVqmActCallCallDurationMs             Unsigned32,
                adVqmActCallCodec                      INTEGER,
                adVqmActCallCodecClass                 INTEGER,
                adVqmActCallDscp                       Unsigned32,
                adVqmActCallPktsRcvdTotal              Counter32,
                adVqmActCallPktsLostTotal              Counter32,
                adVqmActCallPktsDiscardedTotal         Counter32,
                adVqmActCallOutOfOrder                 Counter32,
                adVqmActCallPdvAverageMs               Unsigned32,
                adVqmActCallPdvMaximumMs               Unsigned32,
                adVqmActCallRtDelayInst                INTEGER,
                adVqmActCallRtDelayAverage             INTEGER,
                adVqmActCallRtDelayMaximum             INTEGER,
                adVqmActCallOnewayDelayInst            INTEGER,
                adVqmActCallOnewayDelayAverage         INTEGER,
                adVqmActCallOnewayDelayMaximum         INTEGER,
                adVqmActCallOrigDelayInst              INTEGER,
                adVqmActCallOrigDelayAverage           INTEGER,
                adVqmActCallOrigDelayMaximum           INTEGER,
                adVqmActCallTermDelayMinimum           INTEGER,
                adVqmActCallTermDelayAverage           INTEGER,
                adVqmActCallTermDelayMaximum           INTEGER,
                adVqmActCallRLq                        Unsigned32,
                adVqmActCallRCq                        Unsigned32,
                adVqmActCallRNominal                   Unsigned32,
                adVqmActCallRG107                      Unsigned32,
                adVqmActCallMosLq                      MOSvalue,
                adVqmActCallMosCq                      MOSvalue,
                adVqmActCallMosPq                      MOSvalue,
                adVqmActCallMosNominal                 MOSvalue,
                adVqmActCallDegLoss                    Percentage,
                adVqmActCallDegDiscard                 Percentage,
                adVqmActCallDegVocoder                 Percentage,
                adVqmActCallDegRecency                 Percentage,
                adVqmActCallDegDelay                   Percentage,
                adVqmActCallDegSiglvl                  Percentage,
                adVqmActCallDegNoiselvl                Percentage,
                adVqmActCallDegEcholvl                 Percentage,
                adVqmActCallBurstRLq                   Unsigned32,
                adVqmActCallBurstCount                 Counter32,
                adVqmActCallBurstRateAvg               Percentage,
                adVqmActCallBurstLenAvgPkts            Unsigned32,
                adVqmActCallBurstLenAvgMsec            Unsigned32,
                adVqmActCallGapR                       Unsigned32,
                adVqmActCallGapCount                   Counter32,
                adVqmActCallGapLossRateAvg             Percentage,
                adVqmActCallGapLenPkts                 Unsigned32,
                adVqmActCallGapLenMsec                 Unsigned32,
                adVqmActCallLossRateAvg                Percentage,
                adVqmActCallNetworkLossAvg             Percentage,
                adVqmActCallDiscardRateAvg             Percentage,
                adVqmActCallExcessBurst                Unsigned32,
                adVqmActCallExcessGap                  Unsigned32,
                adVqmActCallPpdvMsec                   MsecValue,
                adVqmActCallLateThresholdMs            MsecValue,
                adVqmActCallLateThresholdPc            Percentage,
                adVqmActCallLateUnderThresh            Counter32,
                adVqmActCallLateTotalCount             Counter32,
                adVqmActCallLatePeakJitterMs           MsecValue,
                adVqmActCallEarlyThreshMs              MsecValue,
                adVqmActCallEarlyThreshPc              Percentage,
                adVqmActCallEarlyUnderThresh           Counter32,
                adVqmActCallEarlyTotalCount            Counter32,
                adVqmActCallEarlyPeakJitterMs          MsecValue,
                adVqmActCallDelayIncreaseCount         Counter32,
                adVqmActCallDelayDecreaseCount         Counter32,
                adVqmActCallResyncCount                Counter32,
                adVqmActCallJitterBufferType           INTEGER,
                adVqmActCallJbCfgMin                   Unsigned32,
                adVqmActCallJbCfgNom                   Unsigned32,
                adVqmActCallJbCfgMax                   Unsigned32,
                adVqmActCallDuplicatePkts              Counter32,
                adVqmActCallEarlyPkts                  Counter32,
                adVqmActCallLatePkts                   Counter32,
                adVqmActCallOverrunDiscardPkts         Counter32,
                adVqmActCallUnderrunDiscardPkts        Counter32,
                adVqmActCallDelayMinMsec               Unsigned32,
                adVqmActCallDelayAvgMsec               Unsigned32,
                adVqmActCallDelayMaxMsec               Unsigned32,
                adVqmActCallDelayCurrentMsec           Unsigned32,
                adVqmActCallExtRLqIn                   INTEGER,
                adVqmActCallExtRLqOut                  INTEGER,
                adVqmActCallExtRCqIn                   INTEGER,
                adVqmActCallExtRCqOut                  INTEGER,
                adVqmActCallThroughPutIndex            Unsigned32,
                adVqmActCallReliabilityIndex           Unsigned32,
                adVqmActCallBitrate                    Unsigned32
     }

     adVqmActCallRtpSourceIp OBJECT-TYPE
         SYNTAX         IpAddress
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Source IP Address of RTP stream."
         ::= { adVQMActiveCallEntry 1 }

     adVqmActCallRtpSourcePort OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Source port number."
         ::= { adVQMActiveCallEntry 2 }

     adVqmActCallRtpDestIp OBJECT-TYPE
         SYNTAX         IpAddress
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Destination IP address of RTP stream."
         ::= { adVQMActiveCallEntry 3 }

     adVqmActCallRtpDestPort OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Destination port number."
         ::= { adVQMActiveCallEntry 4 }

     adVqmActCallSsrcid OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "SSRC (synchronization source ID) for this stream per RFC3550."
         ::= { adVQMActiveCallEntry 5 }

     adVqmActCallTo OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "To URI (dialed) from monitored SIP call signaling."
         ::= { adVQMActiveCallEntry 6 }

     adVqmActCallFrom OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "From URI (originating caller) from monitored SIP call signaling."
         ::= { adVQMActiveCallEntry 7 }

     adVqmActCallRtpSourceUri OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "URI of sender RTP, either To URI or From URI."
         ::= { adVQMActiveCallEntry 8 }

     adVqmActCallCallid OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "SIP call-ID from monitored SIP call signaling."
         ::= { adVQMActiveCallEntry 9 }

     adVqmActCallCcmid OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Internal generated call-ID."
         ::= { adVQMActiveCallEntry 10 }

     adVqmActCallSourceIntName OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Source interface name that RTP arrived inbound to unit."
         ::= { adVQMActiveCallEntry 11 }

     adVqmActCallDestIntName OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Destination interface name for RTP."
         ::= { adVQMActiveCallEntry 12 }

     adVqmActCallSourceIntDescription OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Source interface description as defined in CLI or GUI."
         ::= { adVQMActiveCallEntry 13 }

     adVqmActCallDestIntDescription OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Destination interface description as defined in CLI or GUI."
         ::= { adVQMActiveCallEntry 14 }

     adVqmActCallCallStart OBJECT-TYPE
         SYNTAX         DisplayString
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Time at which monitoring began on this RTP stream."
         ::= { adVQMActiveCallEntry 15 }

     adVqmActCallCallDurationMs OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Elapsed time from start to last RTP packet on this stream."
         ::= { adVQMActiveCallEntry 16 }

     adVqmActCallCodec OBJECT-TYPE
         SYNTAX         INTEGER
                        {
                        -- -1
                        unknown         (1),
                        -- 0
                        g711U           (2),
                        g711UPLC        (3),
                        g723153K        (4),
                        deprecated1     (5),
                        g723163K        (6),
                        deprecated2     (7),
                        g728            (8),
                        deprecated3     (9),
                        g729            (10),
                        deprecated4     (11),
                        g729A           (12),
                        deprecated5     (13),
                        user1           (14),
                        user2           (15),
                        user3           (16),
                        user4           (17),
                        gsmfr           (18),
                        reservedgsmhr   (19),
                        gsmefr          (20),
                        sx7300          (21),
                        sx9600          (22),
                        g711A           (23),
                        g711APLC        (24),
                        deprecated6     (25),
                        g72616K         (26),
                        g72624K         (27),
                        g72632K         (28),
                        g72640K         (29),
                        gipse711U       (30),
                        gipse711A       (31),
                        gipsilbc        (32),
                        gipsisac        (33),
                        gipsipcmwb      (34),
                        g729E8K0        (35),
                        g729E11k8       (36),
                        wblinearpcm     (37),
                        wblinearpcmPlc  (38),
                        g722at64k       (39),
                        g722at56k       (40),
                        g722at48k       (41),
                        g7221at32k      (42),
                        g7221at24k      (43),
                        g7222at23k85    (44),
                        g7222at23k05    (45),
                        g7222at19k85    (46),
                        g7222at18k25    (47),
                        g7222at15k85    (48),
                        g7222at14k25    (49),
                        g7222at12k85    (50),
                        g7222at8k85     (51),
                        g7222at6k6      (52),
                        qcelp8          (53),
                        qcelp13         (54),
                        evrc            (55),
                        smv812          (56),
                        smv579          (57),
                        smv444          (58),
                        smv395          (59),
                        amrnb12k2       (60),
                        amrnb10k2       (61),
                        amrnb7k95       (62),
                        amrnb7k4        (63),
                        amrnb6k7        (64),
                        amrnb5k9        (65),
                        amrnb5k15       (66),
                        amrnb4k75       (67),
                        ilbc13k3        (68),
                        ilbc15k2        (69),
                        g711u56k        (70),
                        g711uPLC56k     (71),
                        g711A56k        (72),
                        g711APLC56k     (73),
                        g7231C          (74),
                        speex2k15       (75),
                        speex5k95       (76),
                        speeX8k         (77),
                        speeX11k        (78),
                        speeX15k        (79),
                        speeX18k2       (80),
                        speeX24k6       (81),
                        speeX3k95       (82),
                        speeX12k8       (83),
                        speeX16k8       (84),
                        speeX20k6       (85),
                        speeX23k8       (86),
                        speeX27k8       (87),
                        speeX34k2       (88),
                        speeX42k2       (89)
         }
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Last voice CODEC detected on this stream."
         ::= { adVQMActiveCallEntry 17 }

     adVqmActCallCodecClass OBJECT-TYPE
         SYNTAX         INTEGER {
                wideband        (1),
                other           (2)
         }
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Class to which CODEC vocoder belongs."
         ::= { adVQMActiveCallEntry 18 }

     adVqmActCallDscp OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Differentiated Services Code Point (DSCP) in RTP packet IP header."
         ::= { adVQMActiveCallEntry 19 }

     adVqmActCallPktsRcvdTotal OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total received RTP packets in this stream."
         ::= { adVQMActiveCallEntry 20 }

     adVqmActCallPktsLostTotal OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total packets determined to be lost in network by simulated jitter
            buffer."
         ::= { adVQMActiveCallEntry 21 }

     adVqmActCallPktsDiscardedTotal OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total packets discarded by simulated jitter buffer."
         ::= { adVQMActiveCallEntry 22 }

     adVqmActCallOutOfOrder OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total packets received out of order at simulated jitter buffer."
         ::= { adVQMActiveCallEntry 23 }

     adVqmActCallPdvAverageMs OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average Packet Delay Variation (PDV) in RTP stream in
            milliseconds."
         ::= { adVQMActiveCallEntry 24 }

     adVqmActCallPdvMaximumMs OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum Packet Delay Variation (PDV) in RTP stream in
            milliseconds."
         ::= { adVQMActiveCallEntry 25 }

     adVqmActCallRtDelayInst OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Instantaneous round-trip delay obtained from RTCP or RTCP XR
            reports."
         ::= { adVQMActiveCallEntry 26 }

     adVqmActCallRtDelayAverage OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average round-trip delay obtained from RTCP or RTCP XR reports."
         ::= { adVQMActiveCallEntry 27 }

     adVqmActCallRtDelayMaximum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum round-trip delay obtained from RTCP or RTCP XR reports."
         ::= { adVQMActiveCallEntry 28 }

     adVqmActCallOnewayDelayInst OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Instantaneous one-way delay including simulated jitter buffer (SJB)
            delay."
         ::= { adVQMActiveCallEntry 29 }

     adVqmActCallOnewayDelayAverage OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average one-way delay including SJB delay."
         ::= { adVQMActiveCallEntry 30 }

     adVqmActCallOnewayDelayMaximum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum one-way delay including SJB delay."
         ::= { adVQMActiveCallEntry 31 }

     adVqmActCallOrigDelayInst OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Instantaneous origination end-point delay from RTCP XR reports."
         ::= { adVQMActiveCallEntry 32 }

     adVqmActCallOrigDelayAverage OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average origination end-point delay from RTCP XR reports."
         ::= { adVQMActiveCallEntry 33 }

     adVqmActCallOrigDelayMaximum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum origination end-point delay from RTCP XR reports."
         ::= { adVQMActiveCallEntry 34 }

     adVqmActCallTermDelayMinimum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Instantaneous termination end-point delay, simulated jitter
            buffer + codec."
         ::= { adVQMActiveCallEntry 35 }

     adVqmActCallTermDelayAverage OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average termination end-point delay, simulated jitter
            buffer + codec."
         ::= { adVQMActiveCallEntry 36 }

     adVqmActCallTermDelayMaximum OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Maximum termination end-point delay, simulated jitter
            buffer + codec."
         ::= { adVQMActiveCallEntry 37 }

     adVqmActCallRLq OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening quality R factor."
         ::= { adVQMActiveCallEntry 38 }

     adVqmActCallRCq OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Conversational quality R factor."
         ::= { adVQMActiveCallEntry 39 }

     adVqmActCallRNominal OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Nominal or generally accepted maximum R factor for this stream."
         ::= { adVQMActiveCallEntry 40 }

     adVqmActCallRG107 OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "R factor based on ITU G.107 E Model for this stream."
         ::= { adVQMActiveCallEntry 41 }

     adVqmActCallMosLq OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening quality MOS score."
         ::= { adVQMActiveCallEntry 42 }

     adVqmActCallMosCq OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Conversational quality MOS score."
         ::= { adVQMActiveCallEntry 43 }

     adVqmActCallMosPq OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Listening quality MOS score normalized to the PESQ scale."
         ::= { adVQMActiveCallEntry 44 }

     adVqmActCallMosNominal OBJECT-TYPE
         SYNTAX         MOSvalue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Nominal or generally accepted maximum MOS score for this stream."
         ::= { adVQMActiveCallEntry 45 }

     adVqmActCallDegLoss OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to packet loss."
         ::= { adVQMActiveCallEntry 46 }

     adVqmActCallDegDiscard OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to packet discard."
         ::= { adVQMActiveCallEntry 47 }

     adVqmActCallDegVocoder OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to voice CODEC selection."
         ::= { adVQMActiveCallEntry 48 }

     adVqmActCallDegRecency OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to loss or discard recency in
            call."
         ::= { adVQMActiveCallEntry 49 }

     adVqmActCallDegDelay OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to delay."
         ::= { adVQMActiveCallEntry 50 }

     adVqmActCallDegSiglvl OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to low speech energy signal
            level."
         ::= { adVQMActiveCallEntry 51 }

     adVqmActCallDegNoiselvl OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to high noise levels."
         ::= { adVQMActiveCallEntry 52 }

     adVqmActCallDegEcholvl OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage quality degradation due to high echo levels."
         ::= { adVQMActiveCallEntry 53 }

     adVqmActCallBurstRLq OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average listening quality R factor during burst condition."
         ::= { adVQMActiveCallEntry 54 }

     adVqmActCallBurstCount OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number of times the stream was in a burst condition."
         ::= { adVQMActiveCallEntry 55 }

     adVqmActCallBurstRateAvg OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames lost or discarded while in
            burst condition."
         ::= { adVQMActiveCallEntry 56 }

     adVqmActCallBurstLenAvgPkts OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average burst length in packets."
         ::= { adVQMActiveCallEntry 57 }

     adVqmActCallBurstLenAvgMsec OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average burst length in miliseconds."
         ::= { adVQMActiveCallEntry 58 }

     adVqmActCallGapR OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average listening quality R factor while stream is in a gap
            condition."
         ::= { adVQMActiveCallEntry 59 }

     adVqmActCallGapCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Number of times the stream is in gap condition."
         ::= { adVQMActiveCallEntry 60 }

     adVqmActCallGapLossRateAvg  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames lost or discarded while in
            gap condition."
         ::= { adVQMActiveCallEntry 61 }

     adVqmActCallGapLenPkts  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average gap length in packets."
         ::= { adVQMActiveCallEntry 62 }

     adVqmActCallGapLenMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Average gap length in milliseconds."
         ::= { adVQMActiveCallEntry 63 }

     adVqmActCallLossRateAvg  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames lost or discarded."
         ::= { adVQMActiveCallEntry 64 }

     adVqmActCallNetworkLossAvg  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames lost in network, excludes
            SJB discards."
         ::= { adVQMActiveCallEntry 65 }

     adVqmActCallDiscardRateAvg  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total average percentage of frames discarded by SJB."
         ::= { adVQMActiveCallEntry 66 }

     adVqmActCallExcessBurst  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total length of speech lost during burst conditions not handled
            effectively by packet loss-concealment."
         ::= { adVQMActiveCallEntry 67 }

     adVqmActCallExcessGap  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total length of speech lost during gap conditions not handled
            effectively by packet loss-concealment."
         ::= { adVQMActiveCallEntry 68 }

     adVqmActCallPpdvMsec  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Packet to packed delay variation (jitter) in ms, as defined in
            RFC3550."
         ::= { adVQMActiveCallEntry 69 }

     adVqmActCallLateThresholdMs  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Late threshold for SJB, packets arriving under this threshold are
            not discarded."
         ::= { adVQMActiveCallEntry 70 }

     adVqmActCallLateThresholdPc  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage of total packets (including both early and late packets)
            not judged as being under the late jitter threshold."
         ::= { adVQMActiveCallEntry 71 }

     adVqmActCallLateUnderThresh  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Count of late packets which arrived under the late jitter
            threshold."
         ::= { adVQMActiveCallEntry 72 }

     adVqmActCallLateTotalCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total count of late packets arriving after the expected delay."
         ::= { adVQMActiveCallEntry 73 }

     adVqmActCallLatePeakJitterMs  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Largest jitter encountered among packets counted as late."
         ::= { adVQMActiveCallEntry 74 }

     adVqmActCallEarlyThreshMs  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Early threshold for SJB, packets arriving under this threshold
            will not be discarded by SJB as early."
         ::= { adVQMActiveCallEntry 75 }

     adVqmActCallEarlyThreshPc  OBJECT-TYPE
         SYNTAX         Percentage
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Percentage of total packets (including both early and late packets)
            not judged as being under the early jitter threshold."
         ::= { adVQMActiveCallEntry 76 }

     adVqmActCallEarlyUnderThresh  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Count of early packets which arrived under the early jitter
            threshold."
         ::= { adVQMActiveCallEntry 77 }

     adVqmActCallEarlyTotalCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total count of early packets arriving before the expected delay."
         ::= { adVQMActiveCallEntry 78 }

     adVqmActCallEarlyPeakJitterMs  OBJECT-TYPE
         SYNTAX         MsecValue
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Largest jitter encountered among packets counted as early."
         ::= { adVQMActiveCallEntry 79 }

     adVqmActCallDelayIncreaseCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of SJB delay increases (adaptive mode only)."
         ::= { adVQMActiveCallEntry 80 }

     adVqmActCallDelayDecreaseCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of SJB delay decreases (adaptive mode only)."
         ::= { adVQMActiveCallEntry 81 }

     adVqmActCallResyncCount  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of  SJB resynchronizations caused by discontinuous
            transmission (DTX), voice activity detection (VAD), or silence
            suppression."
         ::= { adVQMActiveCallEntry 82 }

     adVqmActCallJitterBufferType  OBJECT-TYPE
         SYNTAX         INTEGER {
                        fixed     (1),
                        adaptive  (2),
                        unknown   (3)
         }
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Configured SJB type either adaptive or fixed for this stream."
         ::= { adVQMActiveCallEntry 83 }

     adVqmActCallJbCfgMin  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Adaptive jitter buffer minimum delay applied to packets received."
         ::= { adVQMActiveCallEntry 84 }

     adVqmActCallJbCfgNom  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Adaptive jitter buffer inital delay applied to packets received,
            or fixed jitter buffer delay applied to each packet."
         ::= { adVQMActiveCallEntry 85 }

     adVqmActCallJbCfgMax  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Adaptive jitter buffer upper bound on delay applied to packets
            received, or fixed jitter buffer maximum number of packets that will
            be inserted in buffer."
         ::= { adVQMActiveCallEntry 86 }

     adVqmActCallDuplicatePkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of duplicated packets discarded by SJB."
         ::= { adVQMActiveCallEntry 87 }

     adVqmActCallEarlyPkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of packets arriving early."
         ::= { adVQMActiveCallEntry 88 }

     adVqmActCallLatePkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of packets arriving late."
         ::= { adVQMActiveCallEntry 89 }

     adVqmActCallOverrunDiscardPkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of packets discarded by SJB due to jitter buffer
            overrun."
         ::= { adVQMActiveCallEntry 90 }

     adVqmActCallUnderrunDiscardPkts  OBJECT-TYPE
         SYNTAX         Counter32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Total number of packets discarded by SJB due to jitter buffer
            underrun."
         ::= { adVQMActiveCallEntry 91 }

     adVqmActCallDelayMinMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Simulated jitter buffer delay minimum value."
         ::= { adVQMActiveCallEntry 92 }

     adVqmActCallDelayAvgMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Simulated jitter buffer delay average value."
         ::= { adVQMActiveCallEntry 93 }

     adVqmActCallDelayMaxMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Simulated jitter buffer delay maximum value."
         ::= { adVQMActiveCallEntry 94 }

     adVqmActCallDelayCurrentMsec  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Simulated jitter buffer delay current value."
         ::= { adVQMActiveCallEntry 95 }

     adVqmActCallExtRLqIn  OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "External listening quality R factor (in), from RTCP XR report
            (RFC3611)."
         ::= { adVQMActiveCallEntry 96 }

     adVqmActCallExtRLqOut  OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "External listening quality R factor (out), from RTCP XR report
            (RFC3611)."
         ::= { adVQMActiveCallEntry 97 }

     adVqmActCallExtRCqIn  OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "External conversational quality R factor (in), from RTCP XR report
            (RFC3611)."
         ::= { adVQMActiveCallEntry 98 }

     adVqmActCallExtRCqOut  OBJECT-TYPE
         SYNTAX         INTEGER
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "External conversational quality R factor (out), from RTCP XR report
            (RFC3611)."
         ::= { adVQMActiveCallEntry 99 }

     adVqmActCallThroughPutIndex  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Estimated throughput for fax or data call; bitrate range from 0 to
            35000 bps, calculated based on gap/burst conditions and loss/discard
            rates."
         ::= { adVQMActiveCallEntry 100 }

     adVqmActCallReliabilityIndex  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Reliability index for a fax or data call ranging from 0 least to
            100 most reliable."
         ::= { adVQMActiveCallEntry 101 }

     adVqmActCallBitrate  OBJECT-TYPE
         SYNTAX         Unsigned32
         MAX-ACCESS     read-only
         STATUS         current
         DESCRIPTION
            "Actual bitrate of RTP stream, calculated using size of each RTP
            packet in bits and duration of audio represented in each packet,
            indication of required bandwidth."
         ::= { adVQMActiveCallEntry 102 }


     -- conformance information

     adGenAOSVqmConformance OBJECT IDENTIFIER ::= { adGenAOSConformance 10 }
     adGenAOSVqmGroups      OBJECT IDENTIFIER ::= { adGenAOSVqmConformance 1 }
     adGenAOSVqmCompliances OBJECT IDENTIFIER ::= { adGenAOSVqmConformance 2 }

--
-- MIB Compliance statements.
--

-- Full compliance statement
     adGenAOSVqmFullCompliance MODULE-COMPLIANCE
        STATUS  current
        DESCRIPTION
        "The compliance statement for SNMP entities which implement
        version 1 of the adGenAosVQM MIB. When this MIB is implemented
        with support for read-only, then such an implementation can claim
        full compliance. "

         MODULE  -- this module

         GROUP adVQMCfgGroup
         DESCRIPTION
            "A collection of objects providing global configuration information
            of a VQM entity."

         GROUP adVQMThresholdGroup
         DESCRIPTION
            "A collection of objects providing global threshold configuration
            information of a VQM entity."

         GROUP adVQMSysPerfGroup
         DESCRIPTION
            "A collection of objects providing global system performance
            information of a VQM entity."

         GROUP adVQMInterfaceGroup
         DESCRIPTION
            "A collection of VQM aggregate statistics for each
            system interface."

         GROUP adVQMEndPointGroup
         DESCRIPTION
            "A collection of VQM aggregate statistics for each
            end-point device."

         GROUP adVQMCallHistoryGroup
         DESCRIPTION
            "A collection of detailed voice quality statistics
            on completed RTP voice streams."

         GROUP adVQMActiveCallGroup
         DESCRIPTION
            "A collection of detailed voice quality statistics
            on currently active RTP voice streams."

         GROUP adVQMTrapGroup
         DESCRIPTION
            "This optional group is used for the management of
            asynchronous notifications by Voice Quality Monitoring."

         GROUP  adVQMNotificationGroup
         DESCRIPTION
            "This optional group defines the asynchronous
            notifications generated by Voice Quality Monitoring."

         ::= { adGenAOSVqmCompliances 1 }

     -- units of conformance

     adVQMCfgGroup    OBJECT-GROUP
         OBJECTS {
                adVqmCfgEnable,
                adVqmCfgSipEnable,
                adVqmCfgUdpEnable,
                adVqmCfgInternationalCode,
                adVqmCfgJitterBufferType,
                adVqmCfgJitterBufferAdaptiveMin,
                adVqmCfgJitterBufferAdaptiveNominal,
                adVqmCfgJitterBufferAdaptiveMax,
                adVqmCfgJitterBufferFixedNominal,
                adVqmCfgJitterBufferFixedSize,
                adVqmCfgJitterBufferThresholdEarlyMs,
                adVqmCfgJitterBufferThresholdLateMs,
                adVqmCfgRoundTripPingEnabled,
                adVqmCfgRoundTripPingType,
                adVqmCfgCallHistorySize,
                adVqmCfgHistoryThresholdLqmos,
                adVqmCfgHistoryThresholdCqmos,
                adVqmCfgHistoryThresholdPqmos,
                adVqmCfgHistoryThresholdLoss,
                adVqmCfgHistoryThresholdOutOfOrder,
                adVqmCfgHistoryThresholdJitter,
                adVqmCfgClear,
                adVqmCfgClearCallHistory
            -- ????adVqmCfgTrapPriority                    INTEGER ( We do not currently have a column to support this OID.)
         }
         STATUS  current
         DESCRIPTION
            "The adVQMCfg group contains read-only VQM system configuration
            information for global enable/disable, type of RTP stream detection,
            jitter buffer emulator settings, ping settings for measuring delay,
            and call history buffer filter threshold values.  Network Management
            System may read these values to augment their charts and graphs of
            VQM performance statistics.  Clear write-only controls provide the
            NMS the ability to clear VQM performance statistics."
         ::= { adGenAOSVqmGroups 1 }

     adVQMThresholdGroup    OBJECT-GROUP
         OBJECTS {
                adVqmThresholdLqmosInfo,
                adVqmThresholdLqmosNotice,
                adVqmThresholdLqmosWarning,
                adVqmThresholdLqmosError,
                adVqmThresholdPqmosInfo,
                adVqmThresholdPqmosNotice,
                adVqmThresholdPqmosWarning,
                adVqmThresholdPqmosError,
                adVqmThresholdOutOfOrderInfo,
                adVqmThresholdOutOfOrderNotice,
                adVqmThresholdOutOfOrderWarning,
                adVqmThresholdOutOfOrderError,
                adVqmThresholdLossInfo,
                adVqmThresholdLossNotice,
                adVqmThresholdLossWarning,
                adVqmThresholdLossError,
                adVqmThresholdJitterInfo,
                adVqmThresholdJitterNotice,
                adVqmThresholdJitterWarning,
                adVqmThresholdJitterError
         }
         STATUS  current
         DESCRIPTION
                "The adVQMThreshold group contains read-only configuration
                threshold setting values for VQM event messages.  Threshold
                values include Information, Notice, Warning, and Error events
                for MOS scores, packet loss, out-of-order, and jitter."
         ::= { adGenAOSVqmGroups 2 }

     adVQMSysPerfGroup    OBJECT-GROUP
         OBJECTS {
                adVqmSysActiveCalls,
                adVqmSysActiveExcellent,
                adVqmSysActiveGood,
                adVqmSysActiveFair,
                adVqmSysActivePoor,
                adVqmSysCallHistoryCalls,
                adVqmSysCallHistoryExcellent,
                adVqmSysCallHistoryGood,
                adVqmSysCallHistoryFair,
                adVqmSysCallHistoryPoor,
                adVqmSysAllCallsExcellent,
                adVqmSysAllCallsGood,
                adVqmSysAllCallsFair,
                adVqmSysAllCallsPoor
         }
         STATUS  current
         DESCRIPTION
                "The adVQMSysPerfGroup group provides an overall
                summary view of the quality of voice streams flowing through
                the system. VQM voice call analysis rates the quality of RTP
                voice streams as Excellent, Good, Fair or Poor.  The numbers of
                calls for each quality rating are available for currently active
                calls, completed calls (history), and all calls (totals).  The
                total number of calls monitored by VQM is the sum of active
                calls adVqmSysActiveCalls) and history calls
                (adVqmSysCallHistoryCalls)."
         ::= { adGenAOSVqmGroups 3 }

     adVQMInterfaceGroup    OBJECT-GROUP
         OBJECTS {
                adVqmIfcId,
                adVqmIfcName,
                adVqmIfcPktsRx,
                adVqmIfcPktsLost,
                adVqmIfcPktsOoo,
                adVqmIfcPktsDiscarded,
                adVqmIfcNumberActiveCalls,
                adVqmIfcTerminatedCalls,
                adVqmIfcRLqMinimum,
                adVqmIfcRLqAverage,
                adVqmIfcRLqMaximum,
                adVqmIfcRCqMinimum,
                adVqmIfcRCqAverage,
                adVqmIfcRCqMaximum,
                adVqmIfcRG107Minimum,
                adVqmIfcRG107Average,
                adVqmIfcRG107Maximum,
                adVqmIfcMosLqMinimum,
                adVqmIfcMosLqAverage,
                adVqmIfcMosLqMaximum,
                adVqmIfcMosCqMinimum,
                adVqmIfcMosCqAverage,
                adVqmIfcMosCqMaximum,
                adVqmIfcMosPqMinimum,
                adVqmIfcMosPqAverage,
                adVqmIfcMosPqMaximum,
                adVqmIfcLossMinimum,
                adVqmIfcLossAverage,
                adVqmIfcLossMaximum,
                adVqmIfcDiscardsMinimum,
                adVqmIfcDiscardsAverage,
                adVqmIfcDiscardsMaximum,
                adVqmIfcPdvAverageMs,
                adVqmIfcPdvMaximumMs,
                adVqmIfcDelayMinMsec,
                adVqmIfcDelayAvgMsec,
                adVqmIfcDelayMaxMsec,
                adVqmIfcNumberStreamsExcellent,
                adVqmIfcNumberStreamsGood,
                adVqmIfcNumberStreamsFair,
                adVqmIfcNumberStreamsPoor,
                adVqmIfcClear
         }
         STATUS  current
         DESCRIPTION
            "The adVQMInterface group defines aggregate statistics for each
            system interface."
         ::= { adGenAOSVqmGroups 4 }


     adVQMEndPointGroup    OBJECT-GROUP
         OBJECTS {
                adVqmEndPointRtpSourceIp,
                adVqmEndPointNumberCompletedCalls,
                adVqmEndPointInterfaceId,
                adVqmEndPointInterfaceName,
                adVqmEndPointMosLqMinimum,
                adVqmEndPointMosLqAverage,
                adVqmEndPointMosLqMaximum,
                adVqmEndPointMosPqMinimum,
                adVqmEndPointMosPqAverage,
                adVqmEndPointMosPqMaximum,
                adVqmEndPointPktsLostTotal,
                adVqmEndPointPktsOutOfOrder,
                adVqmEndPointJitterMaximum,
                adVqmEndPointNumberStreamsExcellent,
                adVqmEndPointNumberStreamsGood,
                adVqmEndPointNumberStreamsFair,
                adVqmEndPointNumberStreamsPoor
         }
         STATUS  current
         DESCRIPTION
            "The adVQMEndPoint group defines aggregate statistics for each
            VoIP end-point entity."
         ::= { adGenAOSVqmGroups 5 }

     adVQMCallHistoryGroup    OBJECT-GROUP
         OBJECTS {
                adVqmCallHistRtpSourceIp,
                adVqmCallHistRtpSourcePort,
                adVqmCallHistRtpDestIp,
                adVqmCallHistRtpDestPort,
                adVqmCallHistSsrcid,
                adVqmCallHistTo,
                adVqmCallHistFrom,
                adVqmCallHistRtpSourceUri,
                adVqmCallHistCallid,
                adVqmCallHistCcmid,
                adVqmCallHistSourceIntName,
                adVqmCallHistDestIntName,
                adVqmCallHistSourceIntDescription,
                adVqmCallHistDestIntDescription,
                adVqmCallHistCallStart,
                adVqmCallHistCallDurationMs,
                adVqmCallHistCodec,
                adVqmCallHistCodecClass,
                adVqmCallHistDscp,
                adVqmCallHistPktsRcvdTotal,
                adVqmCallHistPktsLostTotal,
                adVqmCallHistPktsDiscardedTotal,
                adVqmCallHistOutOfOrder,
                adVqmCallHistPdvAverageMs,
                adVqmCallHistPdvMaximumMs,
                adVqmCallHistRtDelayInst,
                adVqmCallHistRtDelayAverage,
                adVqmCallHistRtDelayMaximum,
                adVqmCallHistOnewayDelayInst,
                adVqmCallHistOnewayDelayAverage,
                adVqmCallHistOnewayDelayMaximum,
                adVqmCallHistOrigDelayInst,
                adVqmCallHistOrigDelayAverage,
                adVqmCallHistOrigDelayMaximum,
                adVqmCallHistTermDelayMinimum,
                adVqmCallHistTermDelayAverage,
                adVqmCallHistTermDelayMaximum,
                adVqmCallHistRLq,
                adVqmCallHistRCq,
                adVqmCallHistRNominal,
                adVqmCallHistRG107,
                adVqmCallHistMosLq,
                adVqmCallHistMosCq,
                adVqmCallHistMosPq,
                adVqmCallHistMosNominal,
                adVqmCallHistDegLoss,
                adVqmCallHistDegDiscard,
                adVqmCallHistDegVocoder,
                adVqmCallHistDegRecency,
                adVqmCallHistDegDelay,
                adVqmCallHistDegSiglvl,
                adVqmCallHistDegNoiselvl,
                adVqmCallHistDegEcholvl,
                adVqmCallHistBurstRLq,
                adVqmCallHistBurstCount,
                adVqmCallHistBurstRateAvg,
                adVqmCallHistBurstLenAvgPkts,
                adVqmCallHistBurstLenAvgMsec,
                adVqmCallHistGapR,
                adVqmCallHistGapCount,
                adVqmCallHistGapLossRateAvg,
                adVqmCallHistGapLenPkts,
                adVqmCallHistGapLenMsec,
                adVqmCallHistLossRateAvg,
                adVqmCallHistNetworkLossAvg,
                adVqmCallHistDiscardRateAvg,
                adVqmCallHistExcessBurst,
                adVqmCallHistExcessGap,
                adVqmCallHistPpdvMsec,
                adVqmCallHistLateThresholdMs,
                adVqmCallHistLateThresholdPc,
                adVqmCallHistLateUnderThresh,
                adVqmCallHistLateTotalCount,
                adVqmCallHistLatePeakJitterMs,
                adVqmCallHistEarlyThreshMs,
                adVqmCallHistEarlyThreshPc,
                adVqmCallHistEarlyUnderThresh,
                adVqmCallHistEarlyTotalCount,
                adVqmCallHistEarlyPeakJitterMs,
                adVqmCallHistDelayIncreaseCount,
                adVqmCallHistDelayDecreaseCount,
                adVqmCallHistResyncCount,
                adVqmCallHistJitterBufferType,
                adVqmCallHistJbCfgMin,
                adVqmCallHistJbCfgNom,
                adVqmCallHistJbCfgMax,
                adVqmCallHistDuplicatePkts,
                adVqmCallHistEarlyPkts,
                adVqmCallHistLatePkts,
                adVqmCallHistOverrunDiscardPkts,
                adVqmCallHistUnderrunDiscardPkts,
                adVqmCallHistDelayMinMsec,
                adVqmCallHistDelayAvgMsec,
                adVqmCallHistDelayMaxMsec,
                adVqmCallHistDelayCurrentMsec,
                adVqmCallHistExtRLqIn,
                adVqmCallHistExtRLqOut,
                adVqmCallHistExtRCqIn,
                adVqmCallHistExtRCqOut,
                adVqmCallHistThroughPutIndex,
                adVqmCallHistReliabilityIndex,
                adVqmCallHistBitrate
         }
         STATUS  current
         DESCRIPTION
            "The adVQMCallHistory group defines provides detail voice quality
            statistics on 'completed' RTP voice streams."
         ::= { adGenAOSVqmGroups 6 }

     adVQMActiveCallGroup    OBJECT-GROUP
         OBJECTS {
                adVqmActCallRtpSourceIp,
                adVqmActCallRtpSourcePort,
                adVqmActCallRtpDestIp,
                adVqmActCallRtpDestPort,
                adVqmActCallSsrcid,
                adVqmActCallTo,
                adVqmActCallFrom,
                adVqmActCallRtpSourceUri,
                adVqmActCallCallid,
                adVqmActCallCcmid,
                adVqmActCallSourceIntName,
                adVqmActCallDestIntName,
                adVqmActCallSourceIntDescription,
                adVqmActCallDestIntDescription,
                adVqmActCallCallStart,
                adVqmActCallCallDurationMs,
                adVqmActCallCodec,
                adVqmActCallCodecClass,
                adVqmActCallDscp,
                adVqmActCallPktsRcvdTotal,
                adVqmActCallPktsLostTotal,
                adVqmActCallPktsDiscardedTotal,
                adVqmActCallOutOfOrder,
                adVqmActCallPdvAverageMs,
                adVqmActCallPdvMaximumMs,
                adVqmActCallRtDelayInst,
                adVqmActCallRtDelayAverage,
                adVqmActCallRtDelayMaximum,
                adVqmActCallOnewayDelayInst,
                adVqmActCallOnewayDelayAverage,
                adVqmActCallOnewayDelayMaximum,
                adVqmActCallOrigDelayInst,
                adVqmActCallOrigDelayAverage,
                adVqmActCallOrigDelayMaximum,
                adVqmActCallTermDelayMinimum,
                adVqmActCallTermDelayAverage,
                adVqmActCallTermDelayMaximum,
                adVqmActCallRLq,
                adVqmActCallRCq,
                adVqmActCallRNominal,
                adVqmActCallRG107,
                adVqmActCallMosLq,
                adVqmActCallMosCq,
                adVqmActCallMosPq,
                adVqmActCallMosNominal,
                adVqmActCallDegLoss,
                adVqmActCallDegDiscard,
                adVqmActCallDegVocoder,
                adVqmActCallDegRecency,
                adVqmActCallDegDelay,
                adVqmActCallDegSiglvl,
                adVqmActCallDegNoiselvl,
                adVqmActCallDegEcholvl,
                adVqmActCallBurstRLq,
                adVqmActCallBurstCount,
                adVqmActCallBurstRateAvg,
                adVqmActCallBurstLenAvgPkts,
                adVqmActCallBurstLenAvgMsec,
                adVqmActCallGapR,
                adVqmActCallGapCount,
                adVqmActCallGapLossRateAvg,
                adVqmActCallGapLenPkts,
                adVqmActCallGapLenMsec,
                adVqmActCallLossRateAvg,
                adVqmActCallNetworkLossAvg,
                adVqmActCallDiscardRateAvg,
                adVqmActCallExcessBurst,
                adVqmActCallExcessGap,
                adVqmActCallPpdvMsec,
                adVqmActCallLateThresholdMs,
                adVqmActCallLateThresholdPc,
                adVqmActCallLateUnderThresh,
                adVqmActCallLateTotalCount,
                adVqmActCallLatePeakJitterMs,
                adVqmActCallEarlyThreshMs,
                adVqmActCallEarlyThreshPc,
                adVqmActCallEarlyUnderThresh,
                adVqmActCallEarlyTotalCount,
                adVqmActCallEarlyPeakJitterMs,
                adVqmActCallDelayIncreaseCount,
                adVqmActCallDelayDecreaseCount,
                adVqmActCallResyncCount,
                adVqmActCallJitterBufferType,
                adVqmActCallJbCfgMin,
                adVqmActCallJbCfgNom,
                adVqmActCallJbCfgMax,
                adVqmActCallDuplicatePkts,
                adVqmActCallEarlyPkts,
                adVqmActCallLatePkts,
                adVqmActCallOverrunDiscardPkts,
                adVqmActCallUnderrunDiscardPkts,
                adVqmActCallDelayMinMsec,
                adVqmActCallDelayAvgMsec,
                adVqmActCallDelayMaxMsec,
                adVqmActCallDelayCurrentMsec,
                adVqmActCallExtRLqIn,
                adVqmActCallExtRLqOut,
                adVqmActCallExtRCqIn,
                adVqmActCallExtRCqOut,
                adVqmActCallThroughPutIndex,
                adVqmActCallReliabilityIndex,
                adVqmActCallBitrate
         }
         STATUS  current
         DESCRIPTION
            "The adVQMActiveCall group defines provides detail voice quality
            statistics on 'current' RTP voice streams."
         ::= { adGenAOSVqmGroups 7 }

     adVQMTrapGroup    OBJECT-GROUP
         OBJECTS {
                        adVqmTrapState,
                        adVqmTrapCfgSeverityLevel,
                        adVqmTrapEventType
                  }
         STATUS  current
         DESCRIPTION
            "The objects necessary to control VQM notification messages."
         ::= { adGenAOSVqmGroups 8 }

     adVQMNotificationGroup NOTIFICATION-GROUP
         NOTIFICATIONS { adVQMEndOfCallTrap }
         STATUS  current
         DESCRIPTION
            "Traps which may be used to enhance event driven
            management of VQM."
         ::= { adGenAOSVqmGroups 9 }

     END