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
|
RTCPXR-MIB DEFINITIONS ::= BEGIN
IMPORTS
mib-2, MODULE-IDENTITY, NOTIFICATION-TYPE,
OBJECT-TYPE, Unsigned32, Integer32,
Gauge32, Counter32 FROM SNMPv2-SMI
OBJECT-GROUP, MODULE-COMPLIANCE,
NOTIFICATION-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION, RowPointer, TimeStamp
FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
InetAddressType, InetAddress,
InetPortNumber FROM INET-ADDRESS-MIB;
--ItuPerceivedSeverity FROM IANA-ITU-ALARM-TC-MIB;
rtcpXrMIB MODULE-IDENTITY
LAST-UPDATED "200502200000Z"
ORGANIZATION
"IETF AVT Working Group"
CONTACT-INFO
"IETF AVT Working Group
Chairs: Colin Perkins, Magnus Westerlund
Working Group Email: avt@ietf.org
Editors: Alan Clark
Telchemy
Email: alan@telchemy.com
Amy Pendleton
Nortel Networks
Email: aspen@nortelnetworks.com"
DESCRIPTION
"RTCP Extended Reports MIB
Copyright (c) The Internet Society (2005)
This version of the MIB module is part of
RFC nnnn and is based on RFC3611."
REVISION "200502200000Z"
DESCRIPTION
"Initial version, published as RFC nnnn"
-- RFC Ed: replace nnnn (2 occurrences) with the actual RFC number and
-- remove this notice
::= { mib-2 255 }
-- IANA: need assignment of a mib-2 OID for this MIB
-- RFC Ed: replace mmm with IANA assigned number and remove this note
-- RTCP Extended Reports - Voice over IP Metrics
--
-- Description
-- This MIB module provides basic voice quality monitoring
-- capabilities for Voice-over-packet systems. The MIB contains
-- 4 tables of information:-
-- a table of call records with session identifying information
-- a table of basic parameters for each session
-- a table of call quality metrics for each session
-- a table of aggregate statistics for groups of calls
-- TEXTUAL CONVENTIONS
--
LeveldB ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents a signal level in decibels (dB)."
SYNTAX Integer32 (-120..120|127)
Rfactor ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Call or transmission quality expressed as an
R factor in the range 0 to 120. A value of
127 shall be interpreted as NULL or unsupported."
REFERENCE
"ITU-T G.107"
SYNTAX Unsigned32 (0..120|127)
ScaledMOSscore ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Call or transmission quality expressed as a
MOS score scaled by 10. MOS is typically represented
as a 1.0 to 5.0 score with a single decimal place and
hence in this representation as 10 to 50. A value of
127 shall be interpreted as NULL or unsupported."
REFERENCE
"ITU-T P.800"
SYNTAX Integer32 (10..50|127)
Percentage ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Percentage expressed as a rounded integer."
SYNTAX Unsigned32 (0..100)
-- OBJECTS
--
rtcpXrMIBObjects OBJECT IDENTIFIER ::= { rtcpXrMIB 1 }
rtcpXrConformance OBJECT IDENTIFIER ::= { rtcpXrMIB 2 }
rtcpXrEvents OBJECT IDENTIFIER ::= { rtcpXrMIB 3 }
--
-- Table of Session Identifying information
--
rtcpXrSessionIDTable OBJECT-TYPE
SYNTAX SEQUENCE OF RtcpXrSessionIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of information about RTP Sessions for which RTCP XR
parameters and metrics are available. "
::= { rtcpXrMIBObjects 1 }
rtcpXrSessionIDEntry OBJECT-TYPE
SYNTAX RtcpXrSessionIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table of call records. A row in this table
is created for each RTP session endpoint participating."
INDEX { rtcpXrSessionIDIndex }
::= { rtcpXrSessionIDTable 1 }
RtcpXrSessionIDEntry ::= SEQUENCE {
rtcpXrSessionIDIndex Unsigned32,
rtcpXrSessionIDSessionIdentifier OCTET STRING,
rtcpXrSessionIDCallStartTime TimeStamp,
rtcpXrSessionIDCallStopTime TimeStamp,
rtcpXrSessionIDSourceIPtype InetAddressType,
rtcpXrSessionIDSourceIPaddress InetAddress,
rtcpXrSessionIDSourceRTPport InetPortNumber,
rtcpXrSessionIDSourceRTCPport InetPortNumber,
rtcpXrSessionIDDestIPtype InetAddressType,
rtcpXrSessionIDDestIPaddress InetAddress,
rtcpXrSessionIDDestRTPport InetPortNumber,
rtcpXrSessionIDDestRTCPport InetPortNumber,
rtcpXrSessionIDSrceIdenType INTEGER,
rtcpXrSessionIDSrceIdentifier OCTET STRING,
rtcpXrSessionIDDestIdenType INTEGER,
rtcpXrSessionIDDestIdentifier OCTET STRING,
rtcpXrSessionIDMeasurePt INTEGER,
rtcpXrSessionIDMeasurePtID OCTET STRING,
rtcpXrSessionIDReverseSession RowPointer,
rtcpXrSessionIDAltMeasurePt RowPointer
}
rtcpXrSessionIDIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for this session within the Session ID table."
::= { rtcpXrSessionIDEntry 1 }
rtcpXrSessionIDSessionIdentifier OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique identifier for this session. Where a billing record
correlation identifer is not available for a particular call,
another identifier such as SSRC can be used."
::= { rtcpXrSessionIDEntry 2 }
rtcpXrSessionIDCallStartTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Call start time for this call. If the start time is not
known then this represents the earliest known time associated
with the call."
::= { rtcpXrSessionIDEntry 3 }
rtcpXrSessionIDCallStopTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Call stop time for this call. If the call is still active
then this shall have the value 0. If the call is complete
but the time is unknown then this shall have the value of the
latest time associated with the call."
::= { rtcpXrSessionIDEntry 4 }
rtcpXrSessionIDSourceIPtype OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source IP address type for this session."
::= { rtcpXrSessionIDEntry 5 }
rtcpXrSessionIDSourceIPaddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source IP address for this session."
::= { rtcpXrSessionIDEntry 6 }
rtcpXrSessionIDSourceRTPport OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source UDP port for RTP. A value of 0 indicates
an unknown port number."
::= { rtcpXrSessionIDEntry 7 }
rtcpXrSessionIDSourceRTCPport OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source UDP port for RTCP.A value of 0 indicates
an unknown port number."
::= { rtcpXrSessionIDEntry 8 }
rtcpXrSessionIDDestIPtype OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination IP address type for this session."
::= { rtcpXrSessionIDEntry 9 }
rtcpXrSessionIDDestIPaddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination IP address for this session."
::= { rtcpXrSessionIDEntry 10 }
rtcpXrSessionIDDestRTPport OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination UDP port for RTP. A value of 0 indicates
an unknown port number."
::= { rtcpXrSessionIDEntry 11 }
rtcpXrSessionIDDestRTCPport OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination UDP port for RTCP.A value of 0 indicates
an unknown port number."
::= { rtcpXrSessionIDEntry 12 }
rtcpXrSessionIDSrceIdenType OBJECT-TYPE
SYNTAX INTEGER {dialedNumber (1),
urlID (2),
other (3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Defines the type of address in parameter
rtcpXrSessionIDSourceIdentifier"
::= { rtcpXrSessionIDEntry 13 }
rtcpXrSessionIDSrceIdentifier OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alternate identifier to the IP address. This can be E.164,
DN, or URL."
::= { rtcpXrSessionIDEntry 14 }
rtcpXrSessionIDDestIdenType OBJECT-TYPE
SYNTAX INTEGER {dialedNumber (1),
urlID (2),
other (3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Defines the type of address in parameter
rtcpXrSessionIDDestIdentifier."
::= { rtcpXrSessionIDEntry 15 }
rtcpXrSessionIDDestIdentifier OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alternate identifier to the IP address. This can be E.164,
DN, or URL."
::= { rtcpXrSessionIDEntry 16 }
rtcpXrSessionIDMeasurePt OBJECT-TYPE
SYNTAX INTEGER { localEndpoint (1),
remoteEndpoint (2),
midStream (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Place that these metrics were measured - this endpoint,
remote endpoint (i.e. reported through XR), or midstream.
If this MIB is supported in a midstream device (e.g. probe)
then data from the IP endpoint reported to this device
using RFC3611 would be described as 'remoteEndpoint' and
data measured locally would be described as 'midStream'.
If this MIB is supported in an IP endpoint then the metrics
obtained from measurement of the incoming stream would be
'localEndpoint' and those reported via RFC3611 from the
remote end would be 'remoteEndpoint'.
This MIB could therefor report both remote and local
data if located in an IP endpoint or both remote and
midstream data if located in a probe, router or other
mid-network device."
::= { rtcpXrSessionIDEntry 17 }
rtcpXrSessionIDMeasurePtID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Information describing the identity of the endpoint that
measured the data in this row. If the data was measured
locally then this would be the identity of this system,
if measured remotely and reported via RFC3611 then this
would be the identity of the remote measurement point,
if known."
::= { rtcpXrSessionIDEntry 18 }
rtcpXrSessionIDReverseSession OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A pointer to the corresponding entry in this table for
the reverse direction of transmission. For example, if
this row contained locally measured metrics for the A->B
direction of transmission then the reverse session would
be the row containing locally measured metrics for the
B->A direction of transmission."
::= { rtcpXrSessionIDEntry 19 }
rtcpXrSessionIDAltMeasurePt OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A pointer to the corresponding entry in this table for
alternate measurement point data. For example, if this
MIB was located in a midstream devices and this row
contained metrics measured midstream then the alternate
measurement point would refer to the metrics reported
by the remote endpoint, and vice versa."
::= { rtcpXrSessionIDEntry 20 }
--
-- Table of basic call parameters
--
rtcpXrBaseParamTable OBJECT-TYPE
SYNTAX SEQUENCE OF RtcpXrBaseParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of basic parameters related to RTP sessions in
the Session table. "
::= { rtcpXrMIBObjects 2 }
rtcpXrBaseParamEntry OBJECT-TYPE
SYNTAX RtcpXrBaseParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table of basic parameters. A row in this table
is created for each RTP session endpoint participating."
INDEX { rtcpXrSessionIDIndex }
::= { rtcpXrBaseParamTable 1 }
RtcpXrBaseParamEntry ::= SEQUENCE {
rtcpXrBaseParamVocoderType OCTET STRING,
rtcpXrBaseParamVocoderRate Unsigned32,
rtcpXrBaseParamFrameDuration Unsigned32,
rtcpXrBaseParamSampleRate Unsigned32,
rtcpXrBaseParamDurationMs Counter32,
rtcpXrBaseParamNetworkLossRate Percentage,
rtcpXrBaseParamAvgDiscardRate Percentage,
rtcpXrBaseParamBurstLossDensity Percentage,
rtcpXrBaseParamBurstLenMs Gauge32,
rtcpXrBaseParamGapLossDensity Percentage,
rtcpXrBaseParamGapLenMs Gauge32,
rtcpXrBaseParamAvgOWDelay Gauge32,
rtcpXrBaseParamAvgEndSysDelay Gauge32,
rtcpXrBaseParamPlcType INTEGER,
rtcpXrBaseParamJBuffAdaptMode INTEGER,
rtcpXrBaseParamJBuffAdaptRate Unsigned32,
rtcpXrBaseParamJBuffAverageDelay Gauge32,
rtcpXrBaseParamJBuffMaximumDelay Gauge32,
rtcpXrBaseParamJBuffAbsMaxDelay Gauge32,
rtcpXrBaseParamJitterLevel Gauge32
}
rtcpXrBaseParamVocoderType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vocoder type used on this call. The format used shall be
ITU-T G.7xx, GSM FR, GSM EFR, GSM HR, AMR, AMR WB, iLBC
or similar. For example 'ITU G.729A'. "
::= { rtcpXrBaseParamEntry 1 }
rtcpXrBaseParamVocoderRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vocoder rate in use at the time this data was captured
expressed in bits per second. For example G.711 would
have the rate 64000 and G.729 would have the rate 8000."
::= { rtcpXrBaseParamEntry 2 }
rtcpXrBaseParamFrameDuration OBJECT-TYPE
SYNTAX Unsigned32 (0..16384)
UNITS "sample clock ticks"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Companion information to vocoder type. This represents the
duration of the time interval represented by a frame, which
is generally equivalent to the nominal spacing of frames.
This is expressed in sample clock ticks as defined under
rtxpXrSampleRate.
This parameter may be equated to the SDP ptime parameter
which is expressed in milliseconds (however which cannot
represent certain vocoder types, e.g. those with 2.5mS
frames)."
::= { rtcpXrBaseParamEntry 3 }
rtcpXrBaseParamSampleRate OBJECT-TYPE
SYNTAX Unsigned32 (0..16777215)
UNITS "samples per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Companion information to vocoder type. This represents the
rate at which media was sampled (e.g. 8000 for narrowband
voice, 16000 for wideband voice)."
::= { rtcpXrBaseParamEntry 4 }
rtcpXrBaseParamDurationMs OBJECT-TYPE
SYNTAX Counter32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current duration of call in milliseconds if still active,
duration of call in milliseconds if complete."
::= { rtcpXrBaseParamEntry 5 }
rtcpXrBaseParamNetworkLossRate OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average rate of network packet loss."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 6 }
rtcpXrBaseParamAvgDiscardRate OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average rate of discards due to jitter."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 7 }
rtcpXrBaseParamBurstLossDensity OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Density of loss and discarded packets during burst periods."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 8 }
rtcpXrBaseParamBurstLenMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average length of bursts in milliseconds."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 9 }
rtcpXrBaseParamGapLossDensity OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Density of loss and discarded packets during gap periods."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 10 }
rtcpXrBaseParamGapLenMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average length of gaps in milliseconds."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 11 }
rtcpXrBaseParamAvgOWDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average (symmetric) one way RTCP delay on call. A value of
zero may indicate that this value has not yet been determined."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 12 }
rtcpXrBaseParamAvgEndSysDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average end system delay on call. A value of zero may
indicate that this value has not yet been determined."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 13 }
rtcpXrBaseParamPlcType OBJECT-TYPE
SYNTAX INTEGER { disabled(1),
enhanced(2),
standard(3),
unspecified (4)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Defines type of packet loss concealment used on this call."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 14 }
rtcpXrBaseParamJBuffAdaptMode OBJECT-TYPE
SYNTAX INTEGER { reserved (1),
nonAdaptive (2),
adaptive (3),
unknown (4) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Defines if jitter buffer is in fixed or adaptive mode."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 15 }
rtcpXrBaseParamJBuffAdaptRate OBJECT-TYPE
SYNTAX Unsigned32 (0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Estimated adaptation rate of jitter buffer."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 16 }
rtcpXrBaseParamJBuffAverageDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average size of jitter buffer in mS."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 17 }
rtcpXrBaseParamJBuffMaximumDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum delay through jitter buffer at current size in mS."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 18 }
rtcpXrBaseParamJBuffAbsMaxDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Absolute maximum size jitter buffer can reach in mS."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrBaseParamEntry 19 }
rtcpXrBaseParamJitterLevel OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average jitter level measured according to RFC3550 and
represented in terms of milliseconds."
REFERENCE
"See RFC3550 Section 6.4."
::= { rtcpXrBaseParamEntry 20 }
-- Table of Call Quality Metrics
--
rtcpXrCallQualityTable OBJECT-TYPE
SYNTAX SEQUENCE OF RtcpXrCallQualityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of voice quality metrics. A row is created
in this table for each row in the Session table."
::= { rtcpXrMIBObjects 3 }
rtcpXrCallQualityEntry OBJECT-TYPE
SYNTAX RtcpXrCallQualityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table of voice quality metrics. A row in
this table is created for each row in the Session
table."
INDEX { rtcpXrSessionIDIndex }
::= { rtcpXrCallQualityTable 1 }
RtcpXrCallQualityEntry ::= SEQUENCE {
rtcpXrCallQualityNoiseLeveldBm LeveldB,
rtcpXrCallQualitySignalLeveldBm LeveldB,
rtcpXrCallQualityLocalRERLdB LeveldB,
rtcpXrCallQualityRemoteRERLdB LeveldB,
rtcpXrCallQualityRCQ Rfactor,
rtcpXrCallQualityRLQ Rfactor,
rtcpXrCallQualityExternalRCQ Rfactor,
rtcpXrCallQualityMOSCQ ScaledMOSscore,
rtcpXrCallQualityMOSLQ ScaledMOSscore,
rtcpXrCallQualityAlgorithm OCTET STRING
}
rtcpXrCallQualityNoiseLeveldBm OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm0"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured received silent period noise level in dBm.
A value of 127 indicates that this parameter is not
available.
In midpoint applications this parameter may not be
available. If this is a midstream device and call
quality metrics were calculated using the value of
this parameter reported from the endpoint in an
RTCP XR payload then the value used in this
calculation MAY be reported."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrCallQualityEntry 1 }
rtcpXrCallQualitySignalLeveldBm OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm0"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured received signal level during talkspurts in dBm.
A value of 127 indicates that this parameter is not
available.
In midpoint applications this parameter may not be
available. If this is a midstream device and call
quality metrics were calculated using the value of
this parameter reported from the endpoint in an
RTCP XR payload then the value used in this
calculation MAY be reported."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrCallQualityEntry 2 }
rtcpXrCallQualityLocalRERLdB OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Residual Echo Return Loss measured at this endpoint,
or at the terminating endpoint of this RTP session.
This relates to the echo level from the network beyond
the terminating endpoint and may be interpreted as either
line echo in the case of a gateway or acoustic echo in the
case of a handset.
Note that this echo affects conversational quality as
perceived by the user at the originating end of this
RTP session.
A value of 127 indicates that this parameter is not
available.
In midpoint applications this parameter may not be
available. If this is a midstream device and call
quality metrics were calculated using the value of
this parameter reported from the endpoint in an
RTCP XR payload then the value used in this
calculation MAY be reported."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrCallQualityEntry 3 }
rtcpXrCallQualityRemoteRERLdB OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Residual Echo Return Loss measured at originating endpoint
of this RTP session (i.e. the remote endpoint if this MIB
is implemented in an endpoint).
Note that this affects the conversational quality
metrics reported by the terminating (this) endpoint, hence
is useful in understanding what has affected the reported
call quality mertrics
A value of 127 indicates that this parameter is not
available.
In midpoint applications this parameter may not be
available. If this is a midstream device and call
quality metrics were calculated using the value of
this parameter reported from the endpoint in an
RTCP XR payload then the value used in this
calculation MAY be reported."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrCallQualityEntry 4 }
rtcpXrCallQualityRCQ OBJECT-TYPE
SYNTAX Rfactor
UNITS "R factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Conversational quality R factor for this call. This value
SHOULD be calculated using ITU G.107 (The E Model) or
extended versions thereof."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrCallQualityEntry 5 }
rtcpXrCallQualityRLQ OBJECT-TYPE
SYNTAX Rfactor
UNITS "R factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Listening quality R factor for this call. This value
SHOULD be calculated using ITU G.107 (The E Model) or
extended versions thereof."
::= { rtcpXrCallQualityEntry 6 }
rtcpXrCallQualityExternalRCQ OBJECT-TYPE
SYNTAX Rfactor
UNITS "R factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"External R factor for this call. This value
SHOULD be calculated using ITU G.107 (The E Model) or
extended versions thereof.
The External R factor relates to the quality of an
incoming voice from another network segment. For example
if a conference bridge terminates and re-creates voice
streams then an R factor would be calculated at the bridge
for the endpoint A to bridge segment and relayed to the
subsequent bridge to endpoint B as an External R factor.
This allows endpoint B to estimate the end-to-end call
quality."
::= { rtcpXrCallQualityEntry 7 }
rtcpXrCallQualityMOSCQ OBJECT-TYPE
SYNTAX ScaledMOSscore
UNITS "MOS x 10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Estimated conversational quality MOS for this call
expressed in MOS x 10 (e.g. 41 = MOS of 4.1). This value
MAY be calculated by converting the R-CQ value to a MOS."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrCallQualityEntry 8 }
rtcpXrCallQualityMOSLQ OBJECT-TYPE
SYNTAX ScaledMOSscore
UNITS "MOS x 10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Estimated listening quality MOS for this call
expressed in MOS x 10 (e.g. 41 = MOS of 4.1). This value
MAY be calculated by converting the R-CQ value to a MOS."
REFERENCE
"See RFC3611 Section 4.7."
::= { rtcpXrCallQualityEntry 9 }
rtcpXrCallQualityAlgorithm OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Call quality algorithm used to determine R factors
and MOS scores. For example, 'ITU-T G.107' for the
E model. If any localized parameter scaling is used
(for example Japan's TTC MOS scaling) then this
MUST also be reported."
::= { rtcpXrCallQualityEntry 10 }
--
-- History Table
--
--
rtcpXrHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF RtcpXrHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of aggregate measurement data for groups
of RTP sessions. A group may be a flow or any
other logical association of streams."
::= { rtcpXrMIBObjects 4 }
rtcpXrHistoryEntry OBJECT-TYPE
SYNTAX RtcpXrHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table of call history records."
INDEX { rtcpXrHistoryIndex }
::= { rtcpXrHistoryTable 1 }
RtcpXrHistoryEntry ::= SEQUENCE {
rtcpXrHistoryIndex Unsigned32,
rtcpXrHistoryGroupName OCTET STRING,
rtcpXrHistoryStartTime TimeStamp,
rtcpXrHistoryStopTime TimeStamp,
rtcpXrHistoryNumOfSessions Counter32,
rtcpXrHistoryMinDurationMs Gauge32,
rtcpXrHistoryMaxDurationMs Gauge32,
rtcpXrHistoryAvgDurationMs Gauge32,
rtcpXrHistoryMaxNetworkLossRate Percentage,
rtcpXrHistoryAvgNetworkLossRate Percentage,
rtcpXrHistoryMaxDiscardRate Percentage,
rtcpXrHistoryAvgDiscardRate Percentage,
rtcpXrHistoryMaxBurstLossDensity Percentage,
rtcpXrHistoryAvgBurstLossDensity Percentage,
rtcpXrHistoryMinBurstLenMs Gauge32,
rtcpXrHistoryMaxBurstLenMs Gauge32,
rtcpXrHistoryAvgBurstLenMs Gauge32,
rtcpXrHistoryMaxGapLossDensity Percentage,
rtcpXrHistoryAvgGapLossDensity Percentage,
rtcpXrHistoryMinGapLenMs Gauge32,
rtcpXrHistoryMaxGapLenMs Gauge32,
rtcpXrHistoryAvgGapLenMs Gauge32,
rtcpXrHistoryMinOneWayDelay Gauge32,
rtcpXrHistoryMaxOneWayDelay Gauge32,
rtcpXrHistoryAvgOneWayDelay Gauge32,
rtcpXrHistoryMinEndSystemDelay Gauge32,
rtcpXrHistoryMaxEndSystemDelay Gauge32,
rtcpXrHistoryAvgEndSystemDelay Gauge32,
rtcpXrHistoryMinJitterLevel Gauge32,
rtcpXrHistoryMaxJitterLevel Gauge32,
rtcpXrHistoryAvgJitterLevel Gauge32,
rtcpXrHistoryMinNoiseLeveldBm LeveldB,
rtcpXrHistoryMaxNoiseLeveldBm LeveldB,
rtcpXrHistoryAvgNoiseLeveldBm LeveldB,
rtcpXrHistoryNoiseLevelCount Counter32,
rtcpXrHistoryMinSignalLeveldBm LeveldB,
rtcpXrHistoryMaxSignalLeveldBm LeveldB,
rtcpXrHistoryAvgSignalLeveldBm LeveldB,
rtcpXrHistorySignalLevelCount Counter32,
rtcpXrHistoryMinLocalRERLdB LeveldB,
rtcpXrHistoryMaxLocalRERLdB LeveldB,
rtcpXrHistoryAvgLocalRERLdB LeveldB,
rtcpXrHistoryLocalRERLCount Counter32,
rtcpXrHistoryMinRemoteRERLdB LeveldB,
rtcpXrHistoryMaxRemoteRERLdB LeveldB,
rtcpXrHistoryAvgRemoteRERLdB LeveldB,
rtcpXrHistoryRemoteRERLCount Counter32,
rtcpXrHistoryMinRCQ Rfactor,
rtcpXrHistoryMaxRCQ Rfactor,
rtcpXrHistoryAvgRCQ Rfactor,
rtcpXrHistoryRCQCount Counter32,
rtcpXrHistoryMinRLQ Rfactor,
rtcpXrHistoryMaxRLQ Rfactor,
rtcpXrHistoryAvgRLQ Rfactor,
rtcpXrHistoryRLQCount Counter32,
rtcpXrHistoryMinMOSCQ ScaledMOSscore,
rtcpXrHistoryMaxMOSCQ ScaledMOSscore,
rtcpXrHistoryAvgMOSCQ ScaledMOSscore,
rtcpXrHistoryMOSCQCount Counter32,
rtcpXrHistoryMinMOSLQ ScaledMOSscore,
rtcpXrHistoryMaxMOSLQ ScaledMOSscore,
rtcpXrHistoryAvgMOSLQ ScaledMOSscore,
rtcpXrHistoryMOSLQCount Counter32,
rtcpXrHistoryCQAlgorithm OCTET STRING,
rtcpXrHistoryReset INTEGER
}
rtcpXrHistoryIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for this set of aggregate data."
::= { rtcpXrHistoryEntry 1 }
rtcpXrHistoryGroupName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of this set of aggregate data. Examples may include
a flow, an interface or some other logical grouping of
RTP sessions."
::= { rtcpXrHistoryEntry 2 }
rtcpXrHistoryStartTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time at which this history was reset or started."
::= {rtcpXrHistoryEntry 3 }
rtcpXrHistoryStopTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time at which this history was stopped."
::= {rtcpXrHistoryEntry 4 }
rtcpXrHistoryNumOfSessions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of calls included in this history."
::= {rtcpXrHistoryEntry 5 }
rtcpXrHistoryMinDurationMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum duration of calls."
::= {rtcpXrHistoryEntry 6 }
rtcpXrHistoryMaxDurationMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum duration of calls."
::= {rtcpXrHistoryEntry 7 }
rtcpXrHistoryAvgDurationMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average duration of calls."
::= {rtcpXrHistoryEntry 8 }
rtcpXrHistoryMaxNetworkLossRate OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum loss rate per call."
::= {rtcpXrHistoryEntry 9 }
rtcpXrHistoryAvgNetworkLossRate OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average loss rate across calls."
::= {rtcpXrHistoryEntry 10 }
rtcpXrHistoryMaxDiscardRate OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum discard rate per call."
::= {rtcpXrHistoryEntry 11 }
rtcpXrHistoryAvgDiscardRate OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average discard rate across calls."
::= {rtcpXrHistoryEntry 12 }
rtcpXrHistoryMaxBurstLossDensity OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum density of bursts if loss/discard."
::= {rtcpXrHistoryEntry 13 }
rtcpXrHistoryAvgBurstLossDensity OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average density of bursts of loss/discard."
::= {rtcpXrHistoryEntry 14 }
rtcpXrHistoryMinBurstLenMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum length of bursts."
::= {rtcpXrHistoryEntry 15 }
rtcpXrHistoryMaxBurstLenMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum length of bursts."
::= {rtcpXrHistoryEntry 16 }
rtcpXrHistoryAvgBurstLenMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average length of bursts."
::= {rtcpXrHistoryEntry 17 }
rtcpXrHistoryMaxGapLossDensity OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum loss/discard density in gaps."
::= {rtcpXrHistoryEntry 18 }
rtcpXrHistoryAvgGapLossDensity OBJECT-TYPE
SYNTAX Percentage
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average loss/discard density in gaps."
::= {rtcpXrHistoryEntry 19 }
rtcpXrHistoryMinGapLenMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum average per-call gap length."
::= {rtcpXrHistoryEntry 20 }
rtcpXrHistoryMaxGapLenMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum average per-call gap length."
::= {rtcpXrHistoryEntry 21 }
rtcpXrHistoryAvgGapLenMs OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average per-call gap length."
::= {rtcpXrHistoryEntry 22 }
rtcpXrHistoryMinOneWayDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum one way delay."
::= {rtcpXrHistoryEntry 23 }
rtcpXrHistoryMaxOneWayDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum one way delay."
::= {rtcpXrHistoryEntry 24 }
rtcpXrHistoryAvgOneWayDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average one way delay."
::= {rtcpXrHistoryEntry 25 }
rtcpXrHistoryMinEndSystemDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum end system delay."
::= {rtcpXrHistoryEntry 26 }
rtcpXrHistoryMaxEndSystemDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum end system delay."
::= {rtcpXrHistoryEntry 27 }
rtcpXrHistoryAvgEndSystemDelay OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average end system delay."
::= {rtcpXrHistoryEntry 28 }
rtcpXrHistoryMinJitterLevel OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum jitter level."
::= {rtcpXrHistoryEntry 29 }
rtcpXrHistoryMaxJitterLevel OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum jitter level."
::= {rtcpXrHistoryEntry 30 }
rtcpXrHistoryAvgJitterLevel OBJECT-TYPE
SYNTAX Gauge32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average jitter level."
::= {rtcpXrHistoryEntry 31 }
rtcpXrHistoryMinNoiseLeveldBm OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm0"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum noise level."
::= {rtcpXrHistoryEntry 32 }
rtcpXrHistoryMaxNoiseLeveldBm OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm0"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum noise level."
::= {rtcpXrHistoryEntry 33 }
rtcpXrHistoryAvgNoiseLeveldBm OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm0"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average noise level."
::= {rtcpXrHistoryEntry 34 }
rtcpXrHistoryNoiseLevelCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sessions included in the Noise Level
history values (as Noise Level is an optional
parameter and may not be present on all calls."
::= {rtcpXrHistoryEntry 35 }
rtcpXrHistoryMinSignalLeveldBm OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm0"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum signal level."
::= {rtcpXrHistoryEntry 36 }
rtcpXrHistoryMaxSignalLeveldBm OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm0"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum signal level."
::= {rtcpXrHistoryEntry 37 }
rtcpXrHistoryAvgSignalLeveldBm OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm0"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average signal level."
::= {rtcpXrHistoryEntry 38 }
rtcpXrHistorySignalLevelCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sessions included in the Signal Level
history values (as Signal Level is an optional
parameter and may not be present on all calls."
::= {rtcpXrHistoryEntry 39 }
rtcpXrHistoryMinLocalRERLdB OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum local Residual Echo Return Loss."
::= {rtcpXrHistoryEntry 40 }
rtcpXrHistoryMaxLocalRERLdB OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum local Residual Echo Return Loss."
::= {rtcpXrHistoryEntry 41 }
rtcpXrHistoryAvgLocalRERLdB OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average local Residual Echo Return Loss."
::= {rtcpXrHistoryEntry 42 }
rtcpXrHistoryLocalRERLCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sessions included in the Local RERL
history values (as Local RERL is an optional
parameter and may not be present on all calls."
::= {rtcpXrHistoryEntry 43 }
rtcpXrHistoryMinRemoteRERLdB OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum remote Residual Echo Return Loss."
::= {rtcpXrHistoryEntry 44 }
rtcpXrHistoryMaxRemoteRERLdB OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum remote Residual Echo Return Loss."
::= {rtcpXrHistoryEntry 45 }
rtcpXrHistoryAvgRemoteRERLdB OBJECT-TYPE
SYNTAX LeveldB
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum remote Residual Echo Return Loss."
::= {rtcpXrHistoryEntry 46 }
rtcpXrHistoryRemoteRERLCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sessions included in the Remote RERL
history values (as Remote RERL is an optional
parameter and may not be present on all calls."
::= {rtcpXrHistoryEntry 47 }
rtcpXrHistoryMinRCQ OBJECT-TYPE
SYNTAX Rfactor
UNITS "R factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum conversational R factor."
::= {rtcpXrHistoryEntry 48 }
rtcpXrHistoryMaxRCQ OBJECT-TYPE
SYNTAX Rfactor
UNITS "R factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum conversational R factor"
::= {rtcpXrHistoryEntry 49 }
rtcpXrHistoryAvgRCQ OBJECT-TYPE
SYNTAX Rfactor
UNITS "R factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average conversational R factor"
::= {rtcpXrHistoryEntry 50 }
rtcpXrHistoryRCQCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sessions included in the R CQ
history values (as R CQ is an optional
parameter and may not be present on all calls."
::= {rtcpXrHistoryEntry 51 }
rtcpXrHistoryMinRLQ OBJECT-TYPE
SYNTAX Rfactor
UNITS "R factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum listening quality R factor."
::= {rtcpXrHistoryEntry 52 }
rtcpXrHistoryMaxRLQ OBJECT-TYPE
SYNTAX Rfactor
UNITS "R factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum listening quality R factor."
::= {rtcpXrHistoryEntry 53 }
rtcpXrHistoryAvgRLQ OBJECT-TYPE
SYNTAX Rfactor
UNITS "R factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average listening quality R factor."
::= {rtcpXrHistoryEntry 54 }
rtcpXrHistoryRLQCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sessions included in the R LQ
history values (as R LQ is an optional
parameter and may not be present on all calls."
::= {rtcpXrHistoryEntry 55 }
rtcpXrHistoryMinMOSCQ OBJECT-TYPE
SYNTAX ScaledMOSscore
UNITS "MOS x 10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum conversational quality MOS."
::= {rtcpXrHistoryEntry 56 }
rtcpXrHistoryMaxMOSCQ OBJECT-TYPE
SYNTAX ScaledMOSscore
UNITS "MOS x 10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum conversational quality MOS."
::= {rtcpXrHistoryEntry 57 }
rtcpXrHistoryAvgMOSCQ OBJECT-TYPE
SYNTAX ScaledMOSscore
UNITS "MOS x 10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average conversational quality MOS."
::= {rtcpXrHistoryEntry 58 }
rtcpXrHistoryMOSCQCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sessions included in the MOS CQ
history values (as MOS CQ is an optional
parameter and may not be present on all calls."
::= {rtcpXrHistoryEntry 59 }
rtcpXrHistoryMinMOSLQ OBJECT-TYPE
SYNTAX ScaledMOSscore
UNITS "MOS x 10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum listening quality MOS."
::= {rtcpXrHistoryEntry 60 }
rtcpXrHistoryMaxMOSLQ OBJECT-TYPE
SYNTAX ScaledMOSscore
UNITS "MOS x 10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum listening quality MOS."
::= {rtcpXrHistoryEntry 61 }
rtcpXrHistoryAvgMOSLQ OBJECT-TYPE
SYNTAX ScaledMOSscore
UNITS "MOS x 10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average listening quality MOS."
::= {rtcpXrHistoryEntry 62 }
rtcpXrHistoryMOSLQCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sessions included in the MOS LQ
history values (as MOS LQ is an optional
parameter and may not be present on all calls."
::= {rtcpXrHistoryEntry 63 }
rtcpXrHistoryCQAlgorithm OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Call quality algorithm used - must be consistent
for all calls in this history."
::= {rtcpXrHistoryEntry 64 }
rtcpXrHistoryReset OBJECT-TYPE
SYNTAX INTEGER { running (1),
stop (2),
reset (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status of this row in the history table.
Writing a value of 2 to this object MUST cause
history updates to be stopped for this row. Writing
a value of 3 to this object MUST cause the history
row to be reset.
Reads MUST return a value of 1 if the row is still
being updated or 2 if the row update has stopped."
::= {rtcpXrHistoryEntry 65 }
--
-- Notifications
--
rtcpXrVoipThresholdViolation NOTIFICATION-TYPE
OBJECTS { rtcpXrVoipAlertSeverity, rtcpXrVoipAlertType,
rtcpXrVoipAlertInfoType, rtcpXrVoipAlertPointer }
STATUS current
DESCRIPTION
"Notification that voice quality has changed
Sent immediately when the condition is detected."
::= { rtcpXrEvents 1}
rtcpXrEventParam OBJECT IDENTIFIER ::= { rtcpXrEvents 2 }
rtcpXrVoipAlertType OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Text description of the type of alert. Where possible,
this parameter should be populated with the correct
rtcpXrVoipEntry or rtcpXrVoipHistory description."
::= { rtcpXrEventParam 1 }
rtcpXrVoipAlertInfoType OBJECT-TYPE
SYNTAX INTEGER { adminStringOnly (1),
sessionPointer (2),
historyPointer (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of information returned in the
rtcpXrVoipAlertInfo parameter."
::= { rtcpXrEventParam 2 }
rtcpXrVoipAlertPointer OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pointer to the table of call session information to
identify the specific call that triggered the alert."
::= { rtcpXrEventParam 3 }
rtcpXrVoipAlertSeverity OBJECT-TYPE
SYNTAX INTEGER (1..6) --ItuPerceivedSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The severity of the alert as defined in ITU-T X.733 and
RFC3877."
REFERENCE
"See Alarm MIB - RFC3877."
::= { rtcpXrEventParam 4 }
--
-- MODULE GROUPS
--
-- There are four types of RTCP XR VoIP Metrics System.
-- RTCP XR VOIP Metrics Systems MUST implement one of the four
-- identified types of system and SHOULD NOT implement the
-- rtcpXrMinimalCompliance system, which is included only
-- for reasons of compatibility with RFC3611's minimal
-- requirements.
--
rtcpXrCompliances OBJECT IDENTIFIER ::= { rtcpXrConformance 1 }
rtcpXrGroups OBJECT IDENTIFIER ::= { rtcpXrConformance 2 }
rtcpXrFullMetricsCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Describes the requirements for conformance to the
rtcpXr MIB for VoIP devices that support basic
reporting."
MODULE -- this module
MANDATORY-GROUPS { rtcpXrSessionIDGroup,
rtcpXrBaseParamGroup,
rtcpXrCallQualityGroup
}
::= { rtcpXrCompliances 1 }
rtcpXrMetricsAlertsCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Describes the requirements for conformance to the
rtcpXr MIB for VoIP devices that support reporting
and alerts."
MODULE -- this module
MANDATORY-GROUPS { rtcpXrSessionIDGroup,
rtcpXrBaseParamGroup,
rtcpXrCallQualityGroup,
rtcpXrNotificationParmsGroup,
rtcpXrNotificationsGroup
}
::= { rtcpXrCompliances 2 }
rtcpXrMetricsHistoryCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Describes the requirements for conformance to the
rtcpXr MIB for VoIP devices that support reporting,
call history and alerts."
MODULE -- this module
MANDATORY-GROUPS { rtcpXrSessionIDGroup,
rtcpXrBaseParamGroup,
rtcpXrCallQualityGroup,
rtcpXrMIBHistoryGroup,
rtcpXrNotificationParmsGroup,
rtcpXrNotificationsGroup }
::= { rtcpXrCompliances 3 }
rtcpXrMinimalCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Describes the minimal requirements for conformance to
the rtcpXr MIB - NOT RECOMMENDED."
MODULE -- this module
MANDATORY-GROUPS { rtcpXrSessionIDGroup,
rtcpXrBaseParamGroup
}
::= { rtcpXrCompliances 4 }
rtcpXrSessionIDGroup OBJECT-GROUP
OBJECTS {
rtcpXrSessionIDSessionIdentifier,
rtcpXrSessionIDCallStartTime,
rtcpXrSessionIDCallStopTime,
rtcpXrSessionIDSourceIPtype,
rtcpXrSessionIDSourceIPaddress,
rtcpXrSessionIDSourceRTPport,
rtcpXrSessionIDSourceRTCPport,
rtcpXrSessionIDDestIPtype,
rtcpXrSessionIDDestIPaddress,
rtcpXrSessionIDDestRTPport,
rtcpXrSessionIDDestRTCPport,
rtcpXrSessionIDDestIdentifier,
rtcpXrSessionIDDestIdenType,
rtcpXrSessionIDSrceIdentifier,
rtcpXrSessionIDSrceIdenType,
rtcpXrSessionIDMeasurePt,
rtcpXrSessionIDMeasurePtID,
rtcpXrSessionIDReverseSession,
rtcpXrSessionIDAltMeasurePt
}
STATUS current
DESCRIPTION
"Session ID objects used in rtcpXr VoIP Metrics MIB"
::= { rtcpXrGroups 1 }
rtcpXrBaseParamGroup OBJECT-GROUP
OBJECTS {
rtcpXrBaseParamVocoderType,
rtcpXrBaseParamVocoderRate,
rtcpXrBaseParamFrameDuration,
rtcpXrBaseParamSampleRate,
rtcpXrBaseParamDurationMs,
rtcpXrBaseParamNetworkLossRate,
rtcpXrBaseParamAvgDiscardRate,
rtcpXrBaseParamBurstLossDensity,
rtcpXrBaseParamBurstLenMs,
rtcpXrBaseParamGapLossDensity,
rtcpXrBaseParamGapLenMs,
rtcpXrBaseParamAvgOWDelay,
rtcpXrBaseParamAvgEndSysDelay,
rtcpXrBaseParamPlcType,
rtcpXrBaseParamJBuffAdaptMode,
rtcpXrBaseParamJBuffAdaptRate,
rtcpXrBaseParamJBuffAverageDelay,
rtcpXrBaseParamJBuffMaximumDelay,
rtcpXrBaseParamJBuffAbsMaxDelay,
rtcpXrBaseParamJitterLevel
}
STATUS current
DESCRIPTION
"Objects used in rtcpXr VoIP Metrics MIB"
::= { rtcpXrGroups 2 }
rtcpXrCallQualityGroup OBJECT-GROUP
OBJECTS {
rtcpXrCallQualityNoiseLeveldBm,
rtcpXrCallQualitySignalLeveldBm,
rtcpXrCallQualityLocalRERLdB,
rtcpXrCallQualityRemoteRERLdB,
rtcpXrCallQualityRCQ,
rtcpXrCallQualityRLQ,
rtcpXrCallQualityExternalRCQ,
rtcpXrCallQualityMOSCQ,
rtcpXrCallQualityMOSLQ,
rtcpXrCallQualityAlgorithm
}
STATUS current
DESCRIPTION
"Call quality objects used in rtcpXr VoIP Metrics MIB"
::= { rtcpXrGroups 3 }
rtcpXrMIBHistoryGroup OBJECT-GROUP
OBJECTS {
rtcpXrHistoryGroupName,
rtcpXrHistoryStartTime,
rtcpXrHistoryStopTime,
rtcpXrHistoryNumOfSessions,
rtcpXrHistoryMinDurationMs,
rtcpXrHistoryMaxDurationMs,
rtcpXrHistoryAvgDurationMs,
rtcpXrHistoryMaxNetworkLossRate,
rtcpXrHistoryAvgNetworkLossRate,
rtcpXrHistoryMaxDiscardRate,
rtcpXrHistoryAvgDiscardRate,
rtcpXrHistoryMaxBurstLossDensity,
rtcpXrHistoryAvgBurstLossDensity,
rtcpXrHistoryMinBurstLenMs,
rtcpXrHistoryMaxBurstLenMs,
rtcpXrHistoryAvgBurstLenMs,
rtcpXrHistoryMaxGapLossDensity,
rtcpXrHistoryAvgGapLossDensity,
rtcpXrHistoryMinGapLenMs,
rtcpXrHistoryMaxGapLenMs,
rtcpXrHistoryAvgGapLenMs,
rtcpXrHistoryMinOneWayDelay,
rtcpXrHistoryMaxOneWayDelay,
rtcpXrHistoryAvgOneWayDelay,
rtcpXrHistoryMinEndSystemDelay,
rtcpXrHistoryMaxEndSystemDelay,
rtcpXrHistoryAvgEndSystemDelay,
rtcpXrHistoryAvgJitterLevel,
rtcpXrHistoryMinJitterLevel,
rtcpXrHistoryMaxJitterLevel,
rtcpXrHistoryMinNoiseLeveldBm,
rtcpXrHistoryMaxNoiseLeveldBm,
rtcpXrHistoryAvgNoiseLeveldBm,
rtcpXrHistoryNoiseLevelCount,
rtcpXrHistoryMinSignalLeveldBm,
rtcpXrHistoryMaxSignalLeveldBm,
rtcpXrHistoryAvgSignalLeveldBm,
rtcpXrHistorySignalLevelCount,
rtcpXrHistoryMinLocalRERLdB,
rtcpXrHistoryMaxLocalRERLdB,
rtcpXrHistoryAvgLocalRERLdB,
rtcpXrHistoryLocalRERLCount,
rtcpXrHistoryMinRemoteRERLdB,
rtcpXrHistoryMaxRemoteRERLdB,
rtcpXrHistoryAvgRemoteRERLdB,
rtcpXrHistoryRemoteRERLCount,
rtcpXrHistoryMinRCQ,
rtcpXrHistoryMaxRCQ,
rtcpXrHistoryAvgRCQ,
rtcpXrHistoryRCQCount,
rtcpXrHistoryMinRLQ,
rtcpXrHistoryMaxRLQ,
rtcpXrHistoryAvgRLQ,
rtcpXrHistoryRLQCount,
rtcpXrHistoryMinMOSCQ,
rtcpXrHistoryMaxMOSCQ,
rtcpXrHistoryAvgMOSCQ,
rtcpXrHistoryMOSCQCount,
rtcpXrHistoryMinMOSLQ,
rtcpXrHistoryMaxMOSLQ,
rtcpXrHistoryAvgMOSLQ,
rtcpXrHistoryMOSLQCount,
rtcpXrHistoryCQAlgorithm,
rtcpXrHistoryReset
}
STATUS current
DESCRIPTION
"Objects used in rtcpXr VoIP History MIB"
::= { rtcpXrGroups 4 }
rtcpXrNotificationParmsGroup OBJECT-GROUP
OBJECTS {
rtcpXrVoipAlertSeverity,
rtcpXrVoipAlertType,
rtcpXrVoipAlertInfoType,
rtcpXrVoipAlertPointer
}
STATUS current
DESCRIPTION
"Notification parameters emitted by a rtcpXr endpoint."
::= { rtcpXrGroups 5 }
rtcpXrNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
rtcpXrVoipThresholdViolation
}
STATUS current
DESCRIPTION
"Notifications emitted by a rtcpXr endpoint."
::= { rtcpXrGroups 6 }
END
|