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 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421
|
<pre>Network Working Group G. Beacham
Request for Comments: 5098 Motorola, Inc.
Category: Standards Track S. Kumar
Texas Instruments
S. Channabasappa
CableLabs
February 2008
<span class="h1">Signaling MIB for PacketCable and IPCablecom</span>
<span class="h1">Multimedia Terminal Adapters (MTAs)</span>
Status of This Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Abstract
This memo defines a portion of the Management Information Base (MIB)
for use with network management protocols in the Internet community.
In particular, it defines a basic set of managed objects for Simple
Network Management Protocol (SNMP)-based management of PacketCable-
and IPCablecom-compliant Multimedia Terminal Adapter devices.
<span class="grey">Beacham, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
Table of Contents
<a href="#section-1">1</a>. The Internet-Standard Management Framework ......................<a href="#page-2">2</a>
<a href="#section-2">2</a>. Introduction ....................................................<a href="#page-2">2</a>
<a href="#section-3">3</a>. Terminology .....................................................<a href="#page-3">3</a>
<a href="#section-3.1">3.1</a>. MTA ........................................................<a href="#page-3">3</a>
<a href="#section-3.2">3.2</a>. Endpoint ...................................................<a href="#page-3">3</a>
<a href="#section-3.3">3.3</a>. L Line Package .............................................<a href="#page-4">4</a>
<a href="#section-3.4">3.4</a>. E Line Package .............................................<a href="#page-4">4</a>
<a href="#section-4">4</a>. Overview ........................................................<a href="#page-4">4</a>
<a href="#section-4.1">4.1</a>. Structure of the MIB .......................................<a href="#page-5">5</a>
<a href="#section-4.2">4.2</a>. pktcSigMibObjects ..........................................<a href="#page-5">5</a>
<a href="#section-4.3">4.3</a>. pktcSigConformance .........................................<a href="#page-6">6</a>
<a href="#section-5">5</a>. Definitions .....................................................<a href="#page-6">6</a>
<a href="#section-6">6</a>. Examples .......................................................<a href="#page-69">69</a>
<a href="#section-7">7</a>. Acknowledgments ................................................<a href="#page-72">72</a>
<a href="#section-8">8</a>. Security Considerations ........................................<a href="#page-73">73</a>
<a href="#section-9">9</a>. IANA Considerations ............................................<a href="#page-75">75</a>
<a href="#section-10">10</a>. References ....................................................<a href="#page-75">75</a>
<a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-75">75</a>
<a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-76">76</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. The Internet-Standard Management Framework</span>
For a detailed overview of the documents that describe the current
Internet-Standard Management Framework, please refer to <a href="./rfc3410#section-7">section 7 of
RFC 3410</a> [<a href="./rfc3410" title=""Introduction and Applicability Statements for Internet-Standard Management Framework"">RFC3410</a>].
Managed objects are accessed via a virtual information store, termed
the Management Information Base or MIB. MIB objects are generally
accessed through the Simple Network Management Protocol (SNMP).
Objects in the MIB are defined using the mechanisms defined in the
Structure of Management Information (SMI). This memo specifies a MIB
module that is compliant to the SMIv2, which is described in STD 58,
<a href="./rfc2578">RFC 2578</a> [<a href="./rfc2578" title=""Structure of Management Information Version 2 (SMIv2)"">RFC2578</a>], STD 58, <a href="./rfc2579">RFC 2579</a> [<a href="./rfc2579" title=""Textual Conventions for SMIv2"">RFC2579</a>] and STD 58, <a href="./rfc2580">RFC 2580</a>
[<a href="./rfc2580" title=""Conformance Statements for SMIv2"">RFC2580</a>].
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Introduction</span>
A multimedia terminal adapter (MTA) is used to deliver broadband
Internet, data, and/or voice access jointly with telephony service
to a subscriber's or customer's premises using a cable network
infrastructure. An MTA is normally installed at the customer's or
subscriber's premises, and it is coupled to a multiple system
operator (MSO) using a hybrid fiber coax (HFC) access network.
An MTA is provisioned by the MSO for broadband Internet, data, and/or
voice service. For more information on MTA provisioning, refer to
<span class="grey">Beacham, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
the PacketCable Provisioning Specification [<a href="#ref-PKT-SP-PROV">PKT-SP-PROV</a>] and
[<a href="./rfc4682" title=""Multimedia Terminal Adapter (MTA) Management Information Base for PacketCable- and IPCablecom-Compliant Devices"">RFC4682</a>]. MTA devices include one or more endpoints
(e.g., telephone ports), which receive call signaling information
to establish ring cadence, and codecs used for providing telephony
service. For more information on call signaling, refer to the
PacketCable Signaling Specification [<a href="#ref-PKT-SP-MGCP">PKT-SP-MGCP</a>] and [<a href="./rfc3435" title=""Media Gateway Control Protocol (MGCP) Version 1.0"">RFC3435</a>].
For more information on codecs refer to the PacketCable Audio/Video
Codecs Specification [<a href="#ref-PKT-SP-CODEC">PKT-SP-CODEC</a>].
Telephone systems are typically very complex and often have a wide
distribution. It is therefore important for management systems to
support MTAs from multiple vendors at the same time, including those
from multiple countries. This MIB module provides objects suitable
for managing signaling for MTA devices in the widest possible range
of markets.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Terminology</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
The terms "MIB module" and "information module" are used
interchangeably in this memo. As used here, both terms refer to any
of the three types of information modules defined in <a href="./rfc2578#section-3">Section 3 of
RFC 2578</a> [<a href="./rfc2578" title=""Structure of Management Information Version 2 (SMIv2)"">RFC2578</a>].
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. MTA</span>
An MTA is a PacketCable or IPCablecom compliant device providing
telephony services over a cable or hybrid system used to deliver
video signals to a community. It contains an interface to endpoints,
a network interface, codecs, and all signaling and encapsulation
functions required for Voice-over IP transport, call signaling, and
Quality of Service signaling. An MTA can be an embedded or
standalone device. An Embedded MTA (E-MTA) is an MTA device
containing an embedded Data Over Cable Service Interface
Specifications (DOCSIS) Cable Modem. A Standalone MTA (S-MTA) is an
MTA device separated from the DOCSIS Cable Modem by non-DOCSIS Media
Access Control (MAC) interface (e.g., Ethernet, USB).
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Endpoint</span>
An endpoint or MTA endpoint is a standard telephony physical port
located on the MTA and used for attaching the telephone device to
the MTA.
<span class="grey">Beacham, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. L Line Package</span>
The L line package refers to the Media Gateway Control Protocol
(MGCP) package for the core signaling functionality, as defined by
PacketCable and IPCablecom. An MTA provides all L package elements:
however, the operator determines their application.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. E Line Package</span>
The E line package refers to the MGCP package extensions, over and
above the core L package, defined in support of international
requirements. E line package elements are optional, vary from
country to country, and are set by operator or regulatory
requirements.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Overview</span>
This MIB module provides a set of objects required for Multimedia
Terminal Adapter (MTA) devices compliant with the PacketCable and
IPCablecom signaling specifications published by CableLabs, the
European Telecommunications Standards Institute (ETSI), and the
International Telecommunication Union Telecommunication
Standardization Sector (ITU-T) IPCablecom compliant Multimedia
Terminal Adapter (MTA) devices. The Signaling MIB module
(PKTC-IETF-SIG-MIB) is intended to update various Signaling MIB
modules from which it is partly derived:
- the PacketCable 1.0 Signaling MIB Specification
[<a href="#ref-PKT-SP-MIB-SIG-1.0">PKT-SP-MIB-SIG-1.0</a>],
- the PacketCable 1.5 Signaling MIB Specification
[<a href="#ref-PKT-SP-MIB-SIG-1.5">PKT-SP-MIB-SIG-1.5</a>],
- the ITU-T IPCablecom Signaling MIB requirements [<a href="#ref-ITU-T-J169" title="March">ITU-T-J169</a>],
- the ETSI Signaling MIB [<a href="#ref-ETSI-TS-101-909-9">ETSI-TS-101-909-9</a>]. The ETSI Signaling
MIB requirements also refer to various signal characteristics
defined in [<a href="#ref-ETSI-TS-101-909-4">ETSI-TS-101-909-4</a>], [<a href="#ref-ETSI-EN-300-001">ETSI-EN-300-001</a>],
[<a href="#ref-ETSI-EN-300-659-1">ETSI-EN-300-659-1</a>], [<a href="#ref-ETSI-EN-300-324-1">ETSI-EN-300-324-1</a>] and [<a href="#ref-ETSI-TR-101-183">ETSI-TR-101-183</a>].
Several normative and informative references are used to help define
Signaling MIB objects. As a convention, wherever PacketCable and
IPCablecom requirements are equivalent, the PacketCable reference is
used in the object REFERENCE clause. IPCablecom compliant MTA
devices MUST use the equivalent IPCablecom references.
<span class="grey">Beacham, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
This MIB module describes the various Signaling MIB objects that are
directly related to the PacketCable MTA and the endpoints supported
on the MTA, each of which provides services independently. The
recognition and distinction of the endpoints are made by utilizing
the ifTable (IF-MIB [<a href="./rfc2863" title=""The Interfaces Group MIB"">RFC2863</a>]), where each index (ifIndex) value
refers to a unique endpoint. This MIB module also utilizes the
syntax definition of the Differentiated Services Code Point (DSCP)
from DIFFSERV-DSCP-TC [<a href="./rfc3289" title=""Management Information Base for the Differentiated Services Architecture"">RFC3289</a>] for defining MIB objects that allow
for differentiation between various types of traffic in the service
provider network.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Structure of the MIB</span>
This MIB module is identified by pktcIetfSigMib and is structured
into two major parts:
- Signaling information that controls device and endpoint
configuration (pktcSigMibObjects)
- Module Conformance information(pktcSigConformance)
The following sections explain each part in further detail. It is to
be noted that future enhancements to specify Notification Objects are
also allowed (pktcSigNotification).
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. pktcSigMibObjects</span>
This is further divided into device-specific elements
(pktcSigDevObjects) and endpoint-specific elements
(pktcSigEndPntConfigObjects).
Some highlights of the device-specific elements are as follows:
pktcSigDevCodecTable - this object identifies the codec types
available on the device.
pktcSigDevEchoCancellation - this object identifies the capability of
echo cancellation on the device.
pktcSigDevSilenceSuppression - this object specifies if the device is
capable of silence suppression (Voice Activity Detection).
pktcSigPulseSignalTable - this table selects the various signals used
in the application of the metering pulse signal to the twisted pair
line.
pktcSigDevToneTable - this table specifies a flexible structure
within which to specify all of the tones used in the MTA.
<span class="grey">Beacham, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
pktcSigDevMultiFreqToneTable - this table defines the characteristics
of tones with multiple frequencies. Each entry in this table
represents the frequency reference of a multi-frequency tone.
The endpoint-specific elements are mostly confined to the Endpoint
configuration MIB table (pktcSigEndPntConfigTable). This table
describes the MTA endPoint configuration. The number of entries in
this table represents the number of provisioned endpoints.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. pktcSigConformance</span>
pktcSigDeviceGroup - this group contains all the MIB objects that
apply on a per-device basis and need to be implemented by an MTA to
claim compliance with the specified MIB module.
pktcSigEndpointGroup - this group contains all the MIB objects that
apply on a per-endpoint basis and need to be implemented by an MTA to
claim compliance with the specified MIB module.
pktcLLinePackageGroup - this group contains the MIB objects that need
to be implemented to support the L line package.
pktcELinePackageGroup - this group contains the MIB objects that need
to be implemented to support the E line package.
pktcInternationalGroup - this group contains optional MIB objects
designed to support operations over the widest possible range of
markets.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Definitions</span>
PKTC-IETF-SIG-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32,
Unsigned32,
mib-2
FROM SNMPv2-SMI -- [<a href="./rfc2578" title=""Structure of Management Information Version 2 (SMIv2)"">RFC2578</a>]
InetAddressType,
InetAddress,
InetPortNumber
FROM INET-ADDRESS-MIB -- [<a href="./rfc4001" title=""Textual Conventions for Internet Network Addresses"">RFC4001</a>]
TEXTUAL-CONVENTION,
RowStatus,
TruthValue
FROM SNMPv2-TC -- [<a href="./rfc2579" title=""Textual Conventions for SMIv2"">RFC2579</a>]
<span class="grey">Beacham, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
OBJECT-GROUP,
MODULE-COMPLIANCE
FROM SNMPv2-CONF -- [<a href="./rfc2580" title=""Conformance Statements for SMIv2"">RFC2580</a>]
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB -- [<a href="./rfc3411" title=""An Architecture for Describing Simple Network Management Protocol (SNMP) Management Frameworks"">RFC3411</a>]
ifIndex
FROM IF-MIB -- [<a href="./rfc2863" title=""The Interfaces Group MIB"">RFC2863</a>]
Dscp
FROM DIFFSERV-DSCP-TC; -- [<a href="./rfc3289" title=""Management Information Base for the Differentiated Services Architecture"">RFC3289</a>]
pktcIetfSigMib MODULE-IDENTITY
LAST-UPDATED "200712180000Z" -- December 18, 2007
ORGANIZATION "IETF IPCDN Working Group"
CONTACT-INFO
"Sumanth Channabasappa
Cable Television Laboratories, Inc.
858 Coal Creek Circle,
Louisville, CO 80027, USA
Phone: +1 303-661-3307
Email: Sumanth@cablelabs.com
Gordon Beacham
Motorola, Inc.
6450 Sequence Drive, Bldg. 1
San Diego, CA 92121, USA
Phone: +1 858-404-2334
Email: gordon.beacham@motorola.com
Satish Kumar Mudugere Eswaraiah
Texas Instruments India (P) Ltd.,
Golf view, Wind Tunnel Road
Murugesh Palya
Bangalore 560 017, INDIA
Phone: +91 80 5269451
Email: satish.kumar@ti.com
IETF IPCDN Working Group
General Discussion: ipcdn@ietf.org
Subscribe: <a href="http://www.ietf.org/mailman/listinfo/ipcdn">http://www.ietf.org/mailman/listinfo/ipcdn</a>
Archive: <a href="ftp://ftp.ietf.org/ietf-mail-archive/ipcdn">ftp://ftp.ietf.org/ietf-mail-archive/ipcdn</a>
Co-Chair: Jean-Francois Mule, jf.mule@cablelabs.com
Co-Chair: Richard Woundy, Richard_Woundy@cable.comcast.com"
DESCRIPTION
"This MIB module supplies the basic management
objects for the PacketCable and IPCablecom Signaling
protocols. This version of the MIB includes
common signaling and Network Call Signaling
<span class="grey">Beacham, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
(NCS)-related signaling objects.
Copyright (C) The IETF Trust (2008). This version of
this MIB module is part of <a href="./rfc5098">RFC 5098</a>; see the RFC itself for
full legal notices."
REVISION "200712180000Z"
DESCRIPTION
"Initial version, published as <a href="./rfc5098">RFC 5098</a>."
::= { mib-2 169 }
-- Textual Conventions
TenthdBm ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-1"
STATUS current
DESCRIPTION
"This TEXTUAL-CONVENTION represents power levels that are
normally expressed in dBm. Units are in tenths of a dBm;
for example, -13.5 dBm will be represented as -135."
SYNTAX Integer32
PktcCodecType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
" This TEXTUAL-CONVENTION defines various types of codecs
that MAY be supported. The description for each
enumeration is listed below:
Enumeration Description
other a defined codec not in the enumeration
unknown a codec not defined by the PacketCable
Codec Specification
g729 ITU-T Recommendation G.729
reserved for future use
g729E ITU-T Recommendation G.729E
pcmu Pulse Code Modulation u-law (PCMU)
g726at32 ITU-T Recommendation G.726-32 (32 kbit/s)
g728 ITU-T Recommendation G.728
pcma Pulse Code Modulation a-law (PCMA)
g726at16 ITU-T Recommendation G.726-16 (16 kbit/s)
g726at24 ITU-T Recommendation G.726-24 (24 kbit/s)
g726at40 ITU-T Recommendation G.726-40 (40 kbit/s)
ilbc IETF Internet low-bit rate codec
bv16 Broadcom BroadVoice16
The list of codecs is consistent with the IETF
Real-Time Transport Protocol (RTP) Profile registry and
<span class="grey">Beacham, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
the RTP Map Parameters Table in PacketCable Audio/Video
Codecs Specification [<a href="#ref-PKT-SP-CODEC">PKT-SP-CODEC</a>]. The literal codec
name for each codec is listed below:
Codec Literal Codec Name
g729 G729
g729E G729E
pcmu PCMU
g726at32 G726-32
g728 G728
pcma PCMA
g726at16 G726-16
g726at24 G726-24
g726at40 G726-40
ilbc iLBC
bv16 BV16
The literal codec name is the second column of the table
with codec RTP Map Parameters. The Literal Codec Name Column
contains the codec name used in the local connection
options (LCO) of the NCS messages create connection
(CRCX)/modify connection (MDCX) and is also used to
identify the codec in the Call Management System (CMS)
Provisioning Specification. The RTP Map Parameter column of
the Table contains the string used in the media attribute
line (a=) of the session description protocol (SDP)
parameters in NCS messages."
SYNTAX INTEGER {
other (1),
unknown (2),
g729 (3),
reserved (4),
g729E (5),
pcmu (6),
g726at32 (7),
g728 (8),
pcma (9),
g726at16 (10),
g726at24 (11),
g726at40 (12),
ilbc (13),
bv16 (14)
}
PktcRingCadence ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This object provides an encoding scheme for ring
<span class="grey">Beacham, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
cadences, including repeatability characteristics. All
fields in this object MUST be encoded in network-byte
order.
The first three higher-order octets are reserved. The
octets that follow are used to encode a 'bit-string', with
each bit corresponding to 50 milliseconds. A bit value of
'1' indicates the presence of a ring-tone, and a bit value
of '0' indicates the absence of a ring-tone, for that
duration (50 ms) (Note: A minimum number of octets
required to encode the bit-string MUST be used).
The first two of the reserved octets MUST indicate the
length of the encoded cadence (in bits) and MUST range
between 1 and 264. (Note: The length in bits MUST also be
consistent with the number of octets that encode the
cadence). The MTA MUST ignore any unused bits in the last
octet, but MUST reflect the value as provided on
subsequent SNMP GETs.
The third of the reserved octets indicates 'repeatability'
and MUST be either 0x80 or 0x00 -- the former value
indicating 'non-repeatability', and the latter indicating
'repeatability'.
The MTA MUST reject attempts to set a value that violates
any of the above requirements."
SYNTAX OCTET STRING (SIZE(4..36))
PktcSigType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
" This object lists the various types of signaling that may
be supported:
other(1) - set when signaling other than NCS is used
ncs(2) - Network Call Signaling is a derivation of MGCP
(Media Gateway Control Protocol) defined for
IPCablecom/PacketCable MTAs."
SYNTAX INTEGER {
other(1),
ncs(2)
}
<span class="grey">Beacham, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
DtmfCode::=TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TEXTUAL-CONVENTION represents the Dual-Tone
Multi-Frequency (DTMF) Character used
to indicate the start or end of the digit transition
sequence used for caller id or Visual Message Waiting
Indicator (VMWI).
Note: The DTMF code '*' is indicated using 'dtmfcodeStar',
and the DTMF code '#' is indicated using ' dtmfcodeHash'."
SYNTAX INTEGER {
dtmfcode0(0),
dtmfcode1(1),
dtmfcode2(2),
dtmfcode3(3),
dtmfcode4(4),
dtmfcode5(5),
dtmfcode6(6),
dtmfcode7(7),
dtmfcode8(8),
dtmfcode9(9),
dtmfcodeStar(10),
dtmfcodeHash(11),
dtmfcodeA(12),
dtmfcodeB(13),
dtmfcodeC(14),
dtmfcodeD(15)
}
PktcSubscriberSideSigProtocol::=TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TEXTUAL-CONVENTION represents the Signaling
protocol being used for purposes such as caller id
or VMWI.
A value of fsk(1) indicates Frequency Shift Keying
(FSK).
A value of dtmf(2) indicates Dual-Tone Multi-Frequency
(DTMF)."
SYNTAX INTEGER {
fsk(1),
dtmf(2)
}
pktcSigMibObjects OBJECT IDENTIFIER ::= { pktcIetfSigMib 1 }
pktcSigDevObjects OBJECT IDENTIFIER ::=
<span class="grey">Beacham, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
{ pktcSigMibObjects 1 }
pktcSigEndPntConfigObjects OBJECT IDENTIFIER ::=
{ pktcSigMibObjects 2 }
--
-- The codec table (pktcSigDevCodecTable) defines all combinations
-- of codecs supported by the Multimedia Terminal Adapter (MTA).
--
pktcSigDevCodecTable OBJECT-TYPE
SYNTAX SEQUENCE OF PktcSigDevCodecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This table describes the MTA-supported codec types. An MTA
MUST populate this table with all possible combinations of
codecs it supports for simultaneous operation. For example,
an MTA with two endpoints may be designed with a particular
Digital Signal Processing (DSP) and memory architecture that
allows it to support the following fixed combinations of
codecs for simultaneous operation:
Codec Type Maximum Number of Simultaneous Codecs
PCMA 3
PCMA 2
PCMU 1
PCMA 1
PCMU 2
PCMU 3
PCMA 1
G729 1
G729 2
PCMU 1
G729 1
Based on this example, the entries in the codec table
would be:
pktcSigDev pktcSigDev pktcSigDev
CodecComboIndex CodecType CodecMax
1 pcma 3
2 pcma 2
2 pcmu 1
<span class="grey">Beacham, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
3 pcma 1
3 pcmu 2
4 pcmu 3
5 pcma 1
5 g729 1
6 g729 2
7 pcmu 1
7 g729 1
An operator querying this table is able to determine all
possible codec combinations the MTA is capable of
simultaneously supporting.
This table MUST NOT include non-voice codecs."
::= { pktcSigDevObjects 1 }
pktcSigDevCodecEntry OBJECT-TYPE
SYNTAX PktcSigDevCodecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents the maximum number of active
connections with a particular codec the MTA is capable of
supporting. Each row is indexed by a composite key
consisting of a number enumerating the particular codec
combination and the codec type."
INDEX { pktcSigDevCodecComboIndex, pktcSigDevCodecType }
::= { pktcSigDevCodecTable 1 }
PktcSigDevCodecEntry ::= SEQUENCE {
pktcSigDevCodecComboIndex Unsigned32,
pktcSigDevCodecType PktcCodecType,
pktcSigDevCodecMax Unsigned32
}
pktcSigDevCodecComboIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The index value that enumerates a particular codec
combination in the pktcSigDevCodecTable."
::= { pktcSigDevCodecEntry 1 }
pktcSigDevCodecType OBJECT-TYPE
SYNTAX PktcCodecType
MAX-ACCESS not-accessible
STATUS current
<span class="grey">Beacham, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
DESCRIPTION
" A codec type supported by this MTA."
::= { pktcSigDevCodecEntry 2 }
pktcSigDevCodecMax OBJECT-TYPE
SYNTAX Unsigned32(1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The maximum number of simultaneous sessions of a
particular codec that the MTA can support."
::= { pktcSigDevCodecEntry 3 }
--
-- These are the common signaling-related definitions that affect
-- the entire MTA device.
--
pktcSigDevEchoCancellation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This object specifies if the device is capable of echo
cancellation. The MTA MUST set this MIB object to a
value of true(1) if it is capable of echo
cancellation, and a value of false(2) if not."
::= { pktcSigDevObjects 2 }
pktcSigDevSilenceSuppression OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This object specifies if the device is capable of
silence suppression (as a result of Voice Activity
Detection). The MTA MUST set this MIB object to a
value of true(1) if it is capable of silence
suppression, and a value of false(2) if not."
::= { pktcSigDevObjects 3 }
pktcSigDevCidSigProtocol OBJECT-TYPE
SYNTAX PktcSubscriberSideSigProtocol
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to configure the subscriber-line
protocol used for signaling on-hook caller id information.
<span class="grey">Beacham, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
Different countries define different caller id signaling
protocols to support caller identification.
Setting this object at a value fsk(1) sets the subscriber
line protocol to be Frequency Shift Keying (FSK).
Setting this object at a value dtmf(2) sets the subscriber
line protocol to be Dual-Tone Multi-Frequency (DTMF).
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification"
DEFVAL { fsk }
::= { pktcSigDevObjects 4 }
pktcSigDevR0Cadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence 0 (a user-defined
field).
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 5 }
pktcSigDevR1Cadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence 1 (a user-defined
field).
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 6 }
pktcSigDevR2Cadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence 2 (a user-defined
field).
<span class="grey">Beacham, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 7 }
pktcSigDevR3Cadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence 3 (a user-defined
field).
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 8 }
pktcSigDevR4Cadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence 4 (a user-defined
field).
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 9 }
pktcSigDevR5Cadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence 5 (a user-defined
field).
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 10 }
pktcSigDevR6Cadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence 6 (a user-defined
field).
<span class="grey">Beacham, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 11 }
pktcSigDevR7Cadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence 7 (a user-defined
field).
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 12 }
pktcSigDevRgCadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence rg (a user-defined
field).
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 13 }
pktcSigDevRsCadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies ring cadence rs (a user-defined
field). The MTA MUST reject any attempt to make this object
repeatable.
The value of this MIB object MUST NOT persist across MTA
reboots."
::= { pktcSigDevObjects 14 }
pktcSigDefCallSigDscp OBJECT-TYPE
SYNTAX Dscp -- <a href="./rfc3289">RFC 3289</a>: DIFFSERV-DSCP-TC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The default value used in the IP header for setting the
Differentiated Services Code Point (DSCP) value for call
<span class="grey">Beacham, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
signaling.
The value of this MIB object MUST NOT persist across MTA
reboots."
DEFVAL { 0 }
::= { pktcSigDevObjects 15 }
pktcSigDefMediaStreamDscp OBJECT-TYPE
SYNTAX Dscp -- <a href="./rfc3289">RFC 3289</a>: DIFFSERV-DSCP-TC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object contains the default value used in the IP
header for setting the Differentiated Services Code Point
(DSCP) value for media stream packets. The MTA MUST NOT
update this object with the value supplied by the CMS in
the NCS messages (if present). Any currently active
connections are not affected by updates to this object.
When the value of this object is updated by SNMP, the MTA
MUST use the new value as a default starting only from
new connections.
The value of this MIB object MUST NOT persist across MTA
reboots."
DEFVAL { 0 }
::= { pktcSigDevObjects 16 }
--
-- pktcSigCapabilityTable - This table defines the valid signaling
-- types supported by this MTA.
--
pktcSigCapabilityTable OBJECT-TYPE
SYNTAX SEQUENCE OF PktcSigCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This table describes the signaling types supported by this
MTA."
::= { pktcSigDevObjects 17 }
pktcSigCapabilityEntry OBJECT-TYPE
SYNTAX PktcSigCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Entries in pktcMtaDevSigCapabilityTable - list of
supported signaling types, versions, and vendor extensions
<span class="grey">Beacham, et al. Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
for this MTA. Each entry in the list provides for one
signaling type and version combination. If the device
supports multiple versions of the same signaling type, it
will require multiple entries."
INDEX { pktcSigCapabilityIndex }
::= { pktcSigCapabilityTable 1 }
PktcSigCapabilityEntry ::= SEQUENCE {
pktcSigCapabilityIndex Unsigned32,
pktcSigCapabilityType PktcSigType,
pktcSigCapabilityVersion SnmpAdminString,
pktcSigCapabilityVendorExt SnmpAdminString
}
pktcSigCapabilityIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The index value that uniquely identifies an entry in the
pktcSigCapabilityTable."
::= { pktcSigCapabilityEntry 1 }
pktcSigCapabilityType OBJECT-TYPE
SYNTAX PktcSigType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This object identifies the type of signaling used. This
value has to be associated with a single signaling
version."
::= { pktcSigCapabilityEntry 2 }
pktcSigCapabilityVersion OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Provides the version of the signaling type - reference
pktcSigCapabilityType. Examples would be 1.0 or 2.33 etc."
::= { pktcSigCapabilityEntry 3 }
pktcSigCapabilityVendorExt OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The vendor extension allows vendors to provide a list of
<span class="grey">Beacham, et al. Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
additional capabilities.
The syntax for this MIB object in ABNF ([<a href="./rfc5234" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC5234</a>]) is
specified to be zero or more occurrences of vendor
extensions, as follows:
pktcSigCapabilityVendorExt = *(vendor-extension)
vendor-extension = (ext symbol alphanum) DQUOTE ; DQUOTE
ext = DQUOTE %x58 DQUOTE
symbol = (DQUOTE %x2D DQUOTE)/(DQUOTE %x2D DQUOTE)
alphanum = 1*6(ALPHA/DIGIT)
"
::= { pktcSigCapabilityEntry 4 }
pktcSigDefNcsReceiveUdpPort OBJECT-TYPE
SYNTAX InetPortNumber (1025..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This object contains the MTA User Datagram Protocol (UDP)
receive port that is being used for NCS call signaling.
This object should only be changed by the configuration
file.
Unless changed via configuration, this MIB object MUST
reflect a value of '2427'."
REFERENCE
"PacketCable NCS Specification"
::= { pktcSigDevObjects 18 }
pktcSigPowerRingFrequency OBJECT-TYPE
SYNTAX INTEGER {
f20Hz(1),
f25Hz(2),
f33Point33Hz(3),
f50Hz(4),
f15Hz(5),
f16Hz(6),
f22Hz(7),
f23Hz(8),
f45Hz(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This object must only be provided via the configuration
file during the provisioning process. The power ring
<span class="grey">Beacham, et al. Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
frequency is the frequency at which the sinusoidal voltage
must travel down the twisted pair to make terminal
equipment ring. Different countries define different
electrical characteristics to make terminal equipment
ring.
The f20Hz setting corresponds to a power ring frequency
of 20 Hertz. The f25Hz setting corresponds to a power ring
frequency of 25 Hertz. The f33Point33Hz setting
corresponds to a power ring frequency of 33.33 Hertz. The
f50Hz setting corresponds to a power ring frequency of 50
Hertz. The f15Hz setting corresponds to a power ring
frequency of 15 Hertz. The f16Hz setting corresponds to a
power ring frequency of 16 Hertz. The f22Hz setting
corresponds to a power ring frequency of 22 Hertz. The
f23Hz setting corresponds to a power ring frequency of 23
Hertz. The f45Hz setting corresponds to a power ring
frequency of 45 Hertz."
REFERENCE
"ETSI-EN-300-001"
::= { pktcSigDevObjects 19 }
pktcSigPulseSignalTable OBJECT-TYPE
SYNTAX SEQUENCE OF PktcSigPulseSignalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The Pulse signal table defines the pulse signal operation.
There are nine types of international pulse signals,
with each signal having a set of provisionable parameters.
The values of the MIB objects in this table take effect
only if these parameters are not defined via signaling, in
which case, the latter determines the values of the
parameters. The MIB objects in this table do not persist
across MTA reboots."
REFERENCE
"ETSI-TS-101-909-4 Specification"
::= { pktcSigDevObjects 20 }
pktcSigPulseSignalEntry OBJECT-TYPE
SYNTAX PktcSigPulseSignalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This object defines the set of parameters associated with
each particular value of pktcSigPulseSignalType. Each
entry in the pktcSigPulseSignalTable is indexed by the
pktcSigPulseSignalType object.
<span class="grey">Beacham, et al. Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
The conceptual rows MUST NOT persist across MTA reboots."
INDEX { pktcSigPulseSignalType }
::= { pktcSigPulseSignalTable 1 }
PktcSigPulseSignalEntry ::= SEQUENCE {
pktcSigPulseSignalType INTEGER,
pktcSigPulseSignalFrequency INTEGER,
pktcSigPulseSignalDbLevel TenthdBm,
pktcSigPulseSignalDuration Unsigned32,
pktcSigPulseSignalPulseInterval Unsigned32,
pktcSigPulseSignalRepeatCount Unsigned32
}
pktcSigPulseSignalType OBJECT-TYPE
SYNTAX INTEGER
{
initialRing(1),
pulseLoopClose(2),
pulseLoopOpen(3),
enableMeterPulse(4),
meterPulseBurst(5),
pulseNoBattery(6),
pulseNormalPolarity(7),
pulseReducedBattery(8),
pulseReversePolarity(9)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There are nine types of international pulse signals. These
signals are defined as follows:
initial ring
pulse loop close
pulse loop open
enable meter pulse
meter pulse burst
pulse no battery
pulse normal polarity
pulse reduced battery
pulse reverse polarity"
REFERENCE
"ETSI-EN-300-324-1 Specification"
::= { pktcSigPulseSignalEntry 1 }
pktcSigPulseSignalFrequency OBJECT-TYPE
SYNTAX INTEGER {
twentyfive(1),
<span class="grey">Beacham, et al. Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
twelvethousand(2),
sixteenthousand(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object is only applicable to the initialRing,
enableMeterPulse, and meterPulseBurst signal types. This
object identifies the frequency of the generated signal.
The following table defines the default values for this
object depending on signal type:
pktcSigPulseSignalType Default
initialRing 25
enableMeterPulse 16000
meterPulseBurst 16000
The value of twentyfive MUST only be used for the
initialRing signal type. The values of twelvethousand and
sixteenthousand MUST only be used for enableMeterPulse and
meterPulseBurst signal types. An attempt to set this
object while the value of pktcSigPulseSignalType is not
initialRing, enableMeterPulse, or meterPulseBurst will
result in an 'inconsistentValue' error."
REFERENCE
"ETSI-EN-300-001 Specification"
::= { pktcSigPulseSignalEntry 2}
pktcSigPulseSignalDbLevel OBJECT-TYPE
SYNTAX TenthdBm (-350..0)
UNITS "1/10 of a dBm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object is only applicable to the enableMeterPulse and
meterPulseBurst signal types. This is the decibel level
for each frequency at which tones could be generated at
the a and b terminals (TE connection point). An attempt to
set this object while the value of pktcSigPulseSignalType
is not enableMeterPulse or meterPulseBurst will result in
an 'inconsistentValue' error."
REFERENCE
"ETSI-EN-300-001 Specification"
DEFVAL { -135 }
::={pktcSigPulseSignalEntry 3 }
pktcSigPulseSignalDuration OBJECT-TYPE
<span class="grey">Beacham, et al. Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
SYNTAX Unsigned32 (0..5000)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the pulse duration for each
signal type. In addition, the MTA must accept the values
in the incremental steps specific for each signal type.
The following table defines the default values and the
incremental steps for this object depending on the signal
type:
pktcSigPulseSignaltype Default (ms) Increment (ms)
initialRing 200 50
pulseLoopClose 200 10
pulseLoopOpen 200 10
enableMeterPulse 150 10
meterPulseBurst 150 10
pulseNoBattery 200 10
pulseNormalPolarity 200 10
pulseReducedBattery 200 10
pulseReversePolarity 200 10
An attempt to set this object to a value that does not
fall on one of the increment boundaries, or on the wrong
increment boundary for the specific signal type, will
result in an 'inconsistentValue' error."
REFERENCE
"ETSI-EN-300-324-1 Specification"
::= {pktcSigPulseSignalEntry 4 }
pktcSigPulseSignalPulseInterval OBJECT-TYPE
SYNTAX Unsigned32 (0..5000)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the repeat interval, or the period,
for each signal type. In addition, the MTA must accept
the values in the incremental steps specific for each
signal type. The following table defines the default
values and the incremental steps for this object, depending
on the signal type:
pktcSigPulseSignaltype Default (ms) Increment (ms)
initialRing 200 50
pulseLoopClose 1000 10
pulseLoopOpen 1000 10
<span class="grey">Beacham, et al. Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
enableMeterPulse 1000 10
meterPulseBurst 1000 10
pulseNoBattery 1000 10
pulseNormalPolarity 1000 10
pulseReducedBattery 1000 10
pulseReversePolarity 1000 10
An attempt to set this object to a value that does not
fall on one of the increment boundaries, or on the wrong
increment boundary for the specific signal type, will
result in an 'inconsistentValue' error."
REFERENCE
"ETSI-EN-300-324-1 Specification"
::= { pktcSigPulseSignalEntry 5}
pktcSigPulseSignalRepeatCount OBJECT-TYPE
SYNTAX Unsigned32 (1..50)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies how many times to repeat a pulse.
This object is not used by the enableMeterPulse signal
type, and in that case, the value is irrelevant. The
following table defines the default values and the valid
ranges for this object, depending on the signal type:
pktcSigPulseSignaltype Default Range
initialRing 1 1-5
pulseLoopClose 1 1-50
pulseLoopOpen 1 1-50
enableMeterPulse (any value)(but not used)
meterPulseBurst 1 1-50
pulseNoBattery 1 1-50
pulseNormalPolarity 1 1-50
pulseReducedBattery 1 1-50
pulseReversePolarity 1 1-50
An attempt to set this object to a value that does not
fall within the range for the specific
signal type will result in an 'inconsistentValue' error."
::={ pktcSigPulseSignalEntry 6 }
pktcSigDevCidMode OBJECT-TYPE
SYNTAX INTEGER {
duringRingingETS(1),
dtAsETS(2),
rpAsETS(3),
<span class="grey">Beacham, et al. Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
lrAsETS(4),
lrETS(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" For on-hook caller id, pktcSigDevCidMode selects the method
for representing and signaling caller identification. For
the duringRingingETS method, the Frequency Shift Keying
(FSK) or the Dual-Tone Multi-Frequency (DTMF) containing
the caller identification information is sent between the
first and second ring pattern.
For the dtAsETS,rpAsETS, lrAsETS and lrETS
methods, the FSK or DTMF containing the caller id
information is sent before the first ring pattern.
For the dtAsETS method, the FSK or DTMF is sent after the
Dual Tone Alert Signal. For the rpAsETS method, the FSK or
DTMF is sent after a Ring Pulse.
For the lrAsETS method, the Line Reversal occurs first,
then the Dual Tone Alert Signal, and, finally, the FSK or
DTMF is sent.
For the lrETS method, the Line Reversal occurs first,
then the FSK or DTMF is sent.
The value of this MIB object MUST NOT persist across MTA
reboots."
DEFVAL { rpAsETS}
::= {pktcSigDevObjects 21 }
pktcSigDevCidAfterRing OBJECT-TYPE
SYNTAX Unsigned32 (0|50..2000)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the delay between the end of first
ringing pattern and the start of the transmission of the
FSK or DTMF containing the caller id information. It is
only used when pktcSigDevCidMode is set to a value of
'duringRingingETS'.
The following table defines the default values
for this MIB object, depending on the signal type
<span class="grey">Beacham, et al. Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
(pktcSigDevCidMode), and MUST be followed:
Value of pktcSigDevCidMode Default value
duringringingETS 550 ms
dtAsETS any value (not used)
rpAsETS any value (not used)
lrAsETS any value (not used)
lrETS any value (not used)
An attempt to set this object while the value of
pktcSigDevCidMode is not duringringingETS will result in
an 'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification"
DEFVAL { 550 }
::= {pktcSigDevObjects 22 }
pktcSigDevCidAfterDTAS OBJECT-TYPE
SYNTAX Unsigned32 (0|45..500)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the delay between the end of the
Dual Tone Alert Signal (DT-AS) and the start of the
transmission of the FSK or DTMF containing the caller id
information. This object is only used when
pktcSigDevCidMode is set to a value of 'dtAsETS' or
'lrAsETS'.
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevCidMode), and MUST be followed:
Value of pktcSigDevCidMode Default value
duringringingETS any value (not used)
dtAsETS 50 ms
rpAsETS any value (not used)
lrAsETS 50 ms
lrETS any value (not used)
An attempt to set this object while the value of
<span class="grey">Beacham, et al. Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
pktcSigDevCidMode is not 'dtAsETS' or 'lrAsETS' will
result in an 'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification"
DEFVAL { 50 }
::= {pktcSigDevObjects 23 }
pktcSigDevCidAfterRPAS OBJECT-TYPE
SYNTAX Unsigned32 (0|500..800)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the delay between the end of the
Ring Pulse Alert Signal (RP-AS) and the start of the
transmission of the FSK or DTMF containing the caller id
information. This MIB object is only used when
pktcSigDevCidMode is set to a value of 'rpAsETS'.
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevCidMode), and MUST be followed:
Value of pktcSigDevCidMode Default value
duringringingETS any value (not used)
dtAsETS any value (not used)
rpAsETS 650 ms
lrAsETS any value (not used)
lrETS any value (not used)
An attempt to set this object while the value of
pktcSigDevCidMode is not 'rpAsETS' will result in an
'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification"
DEFVAL { 650 }
::= {pktcSigDevObjects 24 }
pktcSigDevRingAfterCID OBJECT-TYPE
SYNTAX Unsigned32 (0|50..500)
UNITS "Milliseconds"
MAX-ACCESS read-write
<span class="grey">Beacham, et al. Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
STATUS current
DESCRIPTION
" This object specifies the delay between the end of the
complete transmission of the FSK or DTMF containing the
caller id information and the start of the first ring
pattern. It is only used when pktcSigDevCidMode is
set to a value of 'dtAsETS', 'rpAsETS', 'lrAsETS' or
'lrETS'.
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevCidMode), and MUST be followed:
Value of pktcSigDevCidMode Default value
duringringingETS any value (not used)
dtAsETS 250 ms
rpAsETS 250 ms
lrAsETS 250 ms
lrETS 250 ms
An attempt to set this object while the value of
pktcSigDevCidMode is not 'dtAsETS', 'rpAsETS',
'lrAsETS', or 'lrETS' will result in an 'inconsistent
value' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification"
DEFVAL { 250 }
::= {pktcSigDevObjects 25 }
pktcSigDevCidDTASAfterLR OBJECT-TYPE
SYNTAX Unsigned32 (50..655)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the delay between the end of the
Line Reversal and the start of the Dual Tone Alert Signal
(DT-AS). This object is only used when pktcSigDevCidMode
is set to a value of 'lrAsETS'.
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevCidMode), and MUST be followed:
<span class="grey">Beacham, et al. Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
Value of pktcSigDevCidMode Default value
duringringingETS any value (not used)
dtAsETS any value (not used)
rpAsETS any value (not used)
lrAsETS 250 ms
lrETS any value (not used)
An attempt to set this object while the value of
pktcSigDevCidMode is not lrAsETS will result in an
'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification"
DEFVAL { 250 }
::= {pktcSigDevObjects 26 }
pktcSigDevVmwiMode OBJECT-TYPE
SYNTAX INTEGER {
dtAsETS(1),
rpAsETS(2),
lrAsETS(3),
osi(4),
lrETS(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" For visual message waiting indicator (VMWI),
pktcSigDevVmwiMode selects the alerting signal method. For
the dtAsETS, rpAsETS, lrAsETS, osi, and lrETS methods,
the FSK containing the VMWI information is sent after an
alerting signal.
For the dtAsETS method, the FSK, or DTMF
is sent after the Dual Tone Alert Signal. For the rpAsETS
method, the FSK or DTMF is sent after a Ring Pulse.
For the lrAsETS method, the Line Reversal occurs first,
then the Dual Tone Alert Signal, and, finally, the FSK or
DTMF is sent.
For the OSI method, the FSK or DTMF is sent after the Open
Switching Interval.
<span class="grey">Beacham, et al. Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
For the lrETS method, the Line Reversal occurs first,
then the FSK or DTMF is sent.
The value of this MIB object MUST NOT persist across MTA
reboots."
DEFVAL { rpAsETS }
::= {pktcSigDevObjects 27 }
pktcSigDevVmwiAfterDTAS OBJECT-TYPE
SYNTAX Unsigned32 (0|45..500)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the delay between the end of the
Dual Tone Alert Signal (DT-AS) and the start of the
transmission of the FSK or DTMF containing the VMWI
information.
This object is only used when pktcSigDevVmwiMode is
set to a value of 'dtAsETS' or 'lrAsETS'.
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevVmwiMode), and MUST be followed:
Value of pktcSigDevVmwiMode Default value
dtAsETS 50 ms
rpAsETS any value (not used)
lrAsETS 50 ms
lrETS any value (not used)
An attempt to set this object while the value of
pktcSigDevVmwiMode is not 'dtAsETS' or 'lrAsETS' will
result in an 'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification"
DEFVAL { 50 }
::= {pktcSigDevObjects 28 }
pktcSigDevVmwiAfterRPAS OBJECT-TYPE
SYNTAX Unsigned32 (0|500..800)
<span class="grey">Beacham, et al. Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the delay between the end of the
Ring Pulse Alert Signal (RP-AS) and the start of the
transmission of the FSK or DTMF containing the VMWI
information.
This object is only used when pktcSigDevVmwiMode is
set to a value of 'rpAsETS'.
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevVmwiMode), and MUST be followed:
Value of pktcSigDevVmwiMode Default value
dtAsETS any value (not used)
rpAsETS 650 ms
lrAsETS any value (not used)
lrETS any value (not used)
An attempt to set this object while the value of
pktcSigDevVmwiMode is not 'rpAsETS' will result in an
'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification"
DEFVAL { 650 }
::= {pktcSigDevObjects 29 }
pktcSigDevVmwiDTASAfterLR OBJECT-TYPE
SYNTAX Unsigned32 (0|50..655)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the delay between the end of the
Line Reversal and the start of the Dual Tone Alert Signal
(DT-AS) for VMWI information. This object is only used
when pktcSigDevVmwiMode is set to a value of 'lrAsETS'.
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevVmwiMode), and MUST be followed:
<span class="grey">Beacham, et al. Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
Value of pktcSigDevVmwiMode Default value
dtAsETS any value (not used)
rpAsETS any value (not used)
lrAsETS 250 ms
lrETS any value (not used)
An attempt to set this object while the value of
pktcSigDevVmwiMode is not 'lrAsETS' will result in an
'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification"
DEFVAL { 250 }
::= {pktcSigDevObjects 30 }
pktcSigDevRingCadenceTable OBJECT-TYPE
SYNTAX SEQUENCE OF PktcSigDevRingCadenceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Cadence rings are defined by the telco governing
body for each country. The MTA must be able to support
various ranges of cadence patterns and cadence periods.
The MTA will be able to support country-specific
provisioning of the cadence and idle period. Each
cadence pattern will be assigned a unique value ranging
from 0-127 (inclusive) corresponding to the value of x,
where x is the value sent in the cadence ringing (cr)
signal cr(x), requested per the appropriate NCS
message, and defined in the E package. The MTA will derive
the cadence periods from the ring cadence table entry, as
provisioned by the customer. The MTA is allowed to provide
appropriate default values for each of the ring cadences.
This table only needs to be supported when the MTA
implements the E package."
REFERENCE
"ETSI-TS-101-909-4 Specification"
::= { pktcSigDevObjects 31 }
pktcSigDevRingCadenceEntry OBJECT-TYPE
SYNTAX PktcSigDevRingCadenceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
<span class="grey">Beacham, et al. Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
" Each entry in this row corresponds to a ring cadence
that is being supported by the device. The conceptual
rows MUST NOT persist across MTA reboots."
INDEX { pktcSigDevRingCadenceIndex }
::= { pktcSigDevRingCadenceTable 1 }
PktcSigDevRingCadenceEntry ::= SEQUENCE {
pktcSigDevRingCadenceIndex Unsigned32,
pktcSigDevRingCadence PktcRingCadence
}
pktcSigDevRingCadenceIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..127)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" A unique value ranging from 0 to 127 that corresponds to the
value sent by the LE based on country-specific cadences,
one row per cadence cycle. In any given system
implementation for a particular country, it is anticipated
that a small number of ring cadences will be in use. Thus,
this table most likely will not be populated to its full
size."
::= { pktcSigDevRingCadenceEntry 1 }
pktcSigDevRingCadence OBJECT-TYPE
SYNTAX PktcRingCadence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the Ring Cadence."
::= { pktcSigDevRingCadenceEntry 2 }
pktcSigDevToneTable OBJECT-TYPE
SYNTAX SEQUENCE OF PktcSigDevToneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The Tone Table defines the composition of tones and
various tone operations.
The definition of the tones callWaiting1 through
callWaiting4 in this table MUST only contain the
audible tone itself; the delay between tones or the value
of the tone repeat count are not applicable for the call
waiting tones.
<span class="grey">Beacham, et al. Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
The delay between tones or the repeat count is controlled
by the objects pktcSigEndPntConfigCallWaitingDelay and
pktcSigEndPntConfigCallWaitingMaxRep. If the
pktcSigDevToneType is set to either of the values
callWaiting1, callWaiting2, callWaiting3, or callWaiting4,
then the value of the pktcSigDevToneWholeToneRepeatCount
object indicates that the particular frequency group is
applicable, as a repeatable part of the tone, based on the
value of the MIB object
pktcSigDevToneWholeToneRepeatCount.
The MTA MUST make sure that, after the provisioning
cycle, the table is fully populated (i.e., for each
possible index, an entry MUST be defined) using
reasonable defaults for each row that was not defined
by the provisioning information delivered via MTA
Configuration.
The frequency composition of each tone is defined by the
pktcSigDevMultiFreqToneTable. For each tone type defined
in pktcSigDevToneTable, the MTA MUST populate at least
one entry in the pktcSigDevMultiFreqToneTable.
For each particular value of pktcSigDevToneType, the
pktcSigDevToneTable table can define non-repeating and
repeating groups of the frequencies defined by the
pktcSigDevMultiFreqToneTable, such that each group is
represented by the set of the consecutive rows
(frequency group) in the pktcSigDevMultiFreqToneTable.
Objects in this table do not persist across MTA reboots.
For tones with multiple frequencies refer to the MIB table
pktcSigDevMultiFreqToneTable."
REFERENCE
"PacketCable NCS Specification, ETSI-TS-101-909-4
Specification."
::= { pktcSigDevObjects 32 }
pktcSigDevToneEntry OBJECT-TYPE
SYNTAX PktcSigDevToneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The different tone types that can be provisioned based on
country-specific needs.
Each entry contains the tone generation parameters for
a specific frequency group of the specific Tone Type.
<span class="grey">Beacham, et al. Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
The different parameters can be provisioned via MTA
configuration based on country specific needs.
An MTA MUST populate all entries of this table for each
tone type."
INDEX { pktcSigDevToneType, pktcSigDevToneFreqGroup }
::= { pktcSigDevToneTable 1 }
PktcSigDevToneEntry ::= SEQUENCE {
pktcSigDevToneType INTEGER,
pktcSigDevToneFreqGroup Unsigned32,
pktcSigDevToneFreqCounter Unsigned32,
pktcSigDevToneWholeToneRepeatCount Unsigned32,
pktcSigDevToneSteady TruthValue
}
pktcSigDevToneType OBJECT-TYPE
SYNTAX INTEGER {
busy(1),
confirmation(2),
dial(3),
messageWaiting(4),
offHookWarning(5),
ringBack(6),
reOrder(7),
stutterdial(8),
callWaiting1(9),
callWaiting2(10),
callWaiting3(11),
callWaiting4(12),
alertingSignal(13),
specialDial(14),
specialInfo(15),
release(16),
congestion(17),
userDefined1(18),
userDefined2(19),
userDefined3(20),
userDefined4(21)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value that will correspond to the different
tone types. These tones can be provisioned based on
country-specific needs. This object defines the type
of tone being accessed.
The alertingSignal, specialDial, specialInfo, release,
<span class="grey">Beacham, et al. Standards Track [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
congestion, userDefined1, userDefined2, userDefined3,
and userDefined4 tone types are used in
the E line package."
::= { pktcSigDevToneEntry 1 }
pktcSigDevToneFreqGroup OBJECT-TYPE
SYNTAX Unsigned32(1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This MIB object represents the Tone Sequence reference
of a multi-sequence tone."
::={ pktcSigDevToneEntry 2}
pktcSigDevToneFreqCounter OBJECT-TYPE
SYNTAX Unsigned32(1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object represents the number of consecutive
multi-frequency tones for the particular tone type in
the multi-frequency table (pktcSigDevMultiFreqToneTable).
Such a sequence of the consecutive multi-frequency tones
forms the tone group for the particular tone type in the
pktcSigDevToneTable."
::={ pktcSigDevToneEntry 3}
pktcSigDevToneWholeToneRepeatCount OBJECT-TYPE
SYNTAX Unsigned32 (0..5000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the repeat count, which signifies how many times
to repeat the entire on-off cadence sequence. Setting this
object may result in a cadence duration longer or shorter
than the overall signal duration specified by the time out
(TO) object for a particular signal. If the repeat count
results in a longer tone duration than the signal duration
specified by the TO, the tone duration defined by the
TO object for a particular signal always represents
the overall signal duration for a tone. In this case, the
tone duration repeat count will not be fully exercised, and
the desired tone duration will be truncated per the TO
setting. If the repeat count results in a shorter tone
duration than the signal duration specified by the TO, the
tone duration defined by the repeat count takes precedence
over the TO and will end the signal event. In this case,
<span class="grey">Beacham, et al. Standards Track [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
the TO represents a time not to be exceeded for the signal.
It is recommended to ensure proper telephony signaling so that
the TO duration setting should always be longer than the
desired repeat count-time duration."
::={ pktcSigDevToneEntry 4 }
pktcSigDevToneSteady OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object represents the steady tone status. A value
of 'true(1)' indicates that the steady tone is applied, and
a value of 'false(2)' indicates otherwise.
Devices must play out the on-off cadence sequence for
the number of times indicated by the MIB object
'pktcSigDevToneWholeToneRepeatCount' prior to applying the
last tone steadily, indefinitely. If the MIB table
'pktcSigDevToneTable' contains multiple rows with this
Object set to a value of 'true(1)', the steady tone is
applied to the last repeating frequency group of the tone.
Setting this MIB object may result in a tone duration that is
longer or shorter than the overall signal duration
specified by the time out (TO) MIB object for a particular
signal. If the repeat count results in a longer tone
duration than the signal duration specified by the TO, the
tone duration defined by the TO object for a particular
signal always represents the overall signal duration for a
tone. In this case, the tone duration repeat count will
not be fully exercised, and the desired tone duration will
be truncated per the TO setting. If the repeat count
results in a shorter tone duration than the signal duration
specified by the TO, the tone duration defined by the
repeat count takes precedence over the TO and will end the
signal event. In this case, the TO represents a time not to
be exceeded for the signal.
It is recommended to ensure proper telephony signaling that
The TO duration setting should always be longer than the
desired repeat count-time duration, plus the desired maximum
steady tone period."
::={ pktcSigDevToneEntry 5 }
pktcSigDevMultiFreqToneTable OBJECT-TYPE
SYNTAX SEQUENCE OF PktcSigDevMultiFreqToneEntry
MAX-ACCESS not-accessible
STATUS current
<span class="grey">Beacham, et al. Standards Track [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
DESCRIPTION
" This MIB table defines the characteristics of tones
with multiple frequencies. The constraints imposed
on the tones by the MIB table pktcSigDevToneTable
need to be considered for MIB objects in this table
as well.
The MTA MUST populate the corresponding row(s)
of the pktcSigDevMultiFreqToneTable for each tone
defined in the pktcSigDevToneTable.
The contents of the table may be provisioned via
MTA configuration."
REFERENCE
"PacketCable NCS Specification, ETSI-TS-101-909-4
Specification."
::= { pktcSigDevObjects 33 }
pktcSigDevMultiFreqToneEntry OBJECT-TYPE
SYNTAX PktcSigDevMultiFreqToneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The different tone types with multiple frequencies
that can be provisioned based on country-specific
needs."
INDEX {pktcSigDevToneType, pktcSigDevToneNumber}
::= { pktcSigDevMultiFreqToneTable 1 }
PktcSigDevMultiFreqToneEntry ::= SEQUENCE {
pktcSigDevToneNumber Unsigned32,
pktcSigDevToneFirstFreqValue Unsigned32,
pktcSigDevToneSecondFreqValue Unsigned32,
pktcSigDevToneThirdFreqValue Unsigned32,
pktcSigDevToneFourthFreqValue Unsigned32,
pktcSigDevToneFreqMode INTEGER,
pktcSigDevToneFreqAmpModePrtg Unsigned32,
pktcSigDevToneDbLevel TenthdBm,
pktcSigDevToneFreqOnDuration Unsigned32,
pktcSigDevToneFreqOffDuration Unsigned32,
pktcSigDevToneFreqRepeatCount Unsigned32
}
pktcSigDevToneNumber OBJECT-TYPE
SYNTAX Unsigned32(1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
<span class="grey">Beacham, et al. Standards Track [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
"This MIB object represents the frequency reference
of a multi-frequency tone."
::={ pktcSigDevMultiFreqToneEntry 1}
pktcSigDevToneFirstFreqValue OBJECT-TYPE
SYNTAX Unsigned32(0..4000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object represents the value of the first
frequency of a tone type. A value of zero implies
absence of the referenced frequency."
::={ pktcSigDevMultiFreqToneEntry 2}
pktcSigDevToneSecondFreqValue OBJECT-TYPE
SYNTAX Unsigned32(0..4000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object represents the value of the second
frequency of a tone type. A value of zero implies
absence of the referenced frequency."
::={ pktcSigDevMultiFreqToneEntry 3}
pktcSigDevToneThirdFreqValue OBJECT-TYPE
SYNTAX Unsigned32(0..4000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object represents the value of the third
frequency of a tone type. A value of zero implies
absence of the referenced frequency."
::={ pktcSigDevMultiFreqToneEntry 4}
pktcSigDevToneFourthFreqValue OBJECT-TYPE
SYNTAX Unsigned32(0..4000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object represents the value of the fourth
frequency of a tone type. A value of zero implies
absence of the referenced frequency."
::={ pktcSigDevMultiFreqToneEntry 5}
pktcSigDevToneFreqMode OBJECT-TYPE
SYNTAX INTEGER {
firstModulatedBySecond(1),
summation(2)
<span class="grey">Beacham, et al. Standards Track [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object provides directive on the
modulation or summation of the frequencies
involved in the tone.
It is to be noted that while summation can
be done without any constraint on the number
of frequencies, the modulation (amplitude)
holds good only when there are two frequencies
(first and second).
Thus:
- If the mode is set to a value of
'firstModulatedBySecond(1)', the first frequency
MUST be modulated by the second, and the remaining
frequencies (third and fourth) ignored. The
percentage of amplitude modulation to be applied
is defined by the MIB object
pktcSigDevToneFreqAmpModePrtg.
- If the mode is set to a value of
'summation(2)', all the frequencies MUST be
summed without any modulation.
"
::={ pktcSigDevMultiFreqToneEntry 6}
pktcSigDevToneFreqAmpModePrtg OBJECT-TYPE
SYNTAX Unsigned32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object represents the percentage of amplitude
modulation applied to the second frequency
when the MIB object pktcSigDevToneFreqMode is
set to a value of 'firstModulatedBySecond (1)'.
If the MIB object pktcSigDevToneFreqMode is set to
value of 'summation (2)', then this MIB object MUST be
ignored."
::={ pktcSigDevMultiFreqToneEntry 7}
pktcSigDevToneDbLevel OBJECT-TYPE
SYNTAX TenthdBm (-250..-110)
UNITS "1/10 of a dBm"
MAX-ACCESS read-only
<span class="grey">Beacham, et al. Standards Track [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
STATUS current
DESCRIPTION
"This MIB object contains the decibel level for each
analog signal (tone) that is locally generated
(versus in-band supervisory tones) and sourced to
the a-b terminals (TE connection point). Each tone
in itself may consist of multiple frequencies, as
defined by the MIB table pktcSigDevMultiFreqToneTable.
This MIB object reflects the desired level at
the Telco (POTS) a-b (T/R) terminals, including the
effect of any MTA receiver gain (loss). This is required
so that locally generated tones are consistent with
remotely generated in-band tones at the a-b terminals,
consistent with user expectations.
This MIB object must be set for each tone.
When tones are formed by combining multi-frequencies,
the level of each frequency shall be set so as to result
in the tone level specified in this object at the a-b
(T/R) terminals.
The wide range of levels for this Object is required
to provide signal-generator levels across the wide
range of gains (losses) -- but does not imply the entire
range is to be achievable given the range of gains (losses)
in the MTA."
DEFVAL { -120 }
::={ pktcSigDevMultiFreqToneEntry 8}
pktcSigDevToneFreqOnDuration OBJECT-TYPE
SYNTAX Unsigned32(0..5000)
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object represents the duration for which the
frequency reference corresponding to the tone type
is turned on."
::={ pktcSigDevMultiFreqToneEntry 9}
pktcSigDevToneFreqOffDuration OBJECT-TYPE
SYNTAX Unsigned32(0..5000)
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object represents the duration for which the
<span class="grey">Beacham, et al. Standards Track [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
frequency reference corresponding to the tone type
is turned off."
::={ pktcSigDevMultiFreqToneEntry 10}
pktcSigDevToneFreqRepeatCount OBJECT-TYPE
SYNTAX Unsigned32(0..5000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This MIB object indicates the number of times
to repeat the cadence cycle represented by the
on/off durations (refer to the MIB objects
pktcSigDevToneFreqOnDuration and
pktcSigDevToneFreqOffDuration).
Setting this object may result in a tone duration that is
longer or shorter than the overall signal duration
specified by the time out (TO) object for the
corresponding tone type. If the value of this MIB
Object indicates a longer duration than that
specified by the TO, the latter overrules the former,
and the desired tone duration will be truncated according
to the TO.
However, if the repeat count results in a shorter
tone duration than the signal duration specified by
the TO, the tone duration defined by the repeat count
takes precedence over the TO and will end the signal
event. In this case, the TO represents a time not to
be exceeded for the signal. It is recommended, to
ensure proper telephony signaling, that the TO
duration setting should always be longer than the
desired repeat count-time duration. A value of zero
means the tone sequence is to be played once but not
repeated."
::={ pktcSigDevMultiFreqToneEntry 11}
pktcSigDevCidDelayAfterLR OBJECT-TYPE
SYNTAX Unsigned32 (300..800)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the delay between the end of the
Line Reversal and the start of the FSK or DTMF signal.
This MIB object is used only when pktcSigDevCidMode is
set to a value of 'lrETS'. This timing has a range of
300 to 800 ms.
<span class="grey">Beacham, et al. Standards Track [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevCidMode), and MUST be followed:
Value of pktcSigDevCidMode Default value
duringringingETS any value (not used)
dtAsETS any value (not used)
rpAsETS any value (not used)
lrAsETS any value (not used)
lrETS 400
An attempt to set this object while the value of
pktcSigDevCidMode is not set to a value of 'lrETS' will
result in an 'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
DEFVAL { 400 }
::= {pktcSigDevObjects 34 }
pktcSigDevCidDtmfStartCode OBJECT-TYPE
SYNTAX DtmfCode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies optional start codes used when
the MIB object pktcSigDevCidSigProtocol is set
to a value of 'dtmf(2)'.
Different countries define different caller id signaling
codes to support caller identification. When Dual-Tone
Multi-Frequency (DTMF) is used, the caller id digits are
preceded by a 'start code' digit, followed by the digit
transmission sequence <S1>...<Sn> (where Sx represents
the digits 0-9), and terminated by the 'end code' digit.
For example,
<A><S1>...<Sn> <D><S1>...<Sn> <B><S1>...<Sn> <C>.
The start code for calling number delivery may be DTMF
'A' or 'D'. The start code for redirecting a number may be
DTMF 'D'. The DTMF code 'B' may be sent by the network
as a start code for the transfer of information values,
through which special events can be indicated to the
user. In some countries, the '*' or '#' may be used
instead of 'A', 'B', 'C', or 'D'.
The value of this MIB object MUST NOT persist across MTA
<span class="grey">Beacham, et al. Standards Track [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
reboots."
REFERENCE
"ETSI-EN-300-659-1 specification"
DEFVAL {dtmfcodeA}
::= { pktcSigDevObjects 35 }
pktcSigDevCidDtmfEndCode OBJECT-TYPE
SYNTAX DtmfCode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies optional end codes used when the
pktcSigDevCidSigProtocol is set to a value of
'dtmf(2)'.
Different countries define different caller id signaling
protocols to support caller identification. When
Dual-Tone Multi-Frequency (DTMF) is used, the caller id
digits are preceded by a 'start code' digit, followed by
the digit transmission sequence <S1>...<Sn> (where Sx
represents the digits 0-9), and terminated by the 'end
code' digit.
For example,
<A><S1>...<Sn> <D><S1>...<Sn> <B><S1>...<Sn> <C>.
The DTMF code 'C' may be sent by the network as an
end code for the transfer of information values, through
which special events can be indicated to the user. In
some countries, the '*' or '#' may be used instead of
'A', 'B', 'C', or 'D'.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 specification"
DEFVAL {dtmfcodeC}
::= { pktcSigDevObjects 36 }
pktcSigDevVmwiSigProtocol OBJECT-TYPE
SYNTAX PktcSubscriberSideSigProtocol
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the subscriber line protocol used
for signaling the information on Visual Message Waiting
Indicator (VMWI). Different countries define different
VMWI signaling protocols to support VMWI service.
<span class="grey">Beacham, et al. Standards Track [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
Frequency shift keying (FSK) is most commonly used.
DTMF is an alternative.
The value of this MIB object MUST NOT persist across MTA
reboots."
DEFVAL { fsk }
::= { pktcSigDevObjects 37 }
pktcSigDevVmwiDelayAfterLR OBJECT-TYPE
SYNTAX Unsigned32 (0|300..800)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the delay between the end of the
Line Reversal and the start of the FSK or DTMF signal.
This object is only used when pktcSigDevVmwiMode is
set to a value of 'lrETS'.
This timing has a range of 300 to 800 ms.
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevVmwiMode), and MUST be followed:
Value of pktcSigDevVmwiMode Default value
duringringingETS any value (not used)
dtAsETS any value (not used)
rpAsETS any value (not used)
lrAsETS any value (not used)
lrETS 400
An attempt to set this object while the value of
pktcSigDevVmwiMode is not 'lrETS' will result in an
'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
DEFVAL {400}
::= {pktcSigDevObjects 38 }
pktcSigDevVmwiDtmfStartCode OBJECT-TYPE
SYNTAX DtmfCode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies optional start codes used when
<span class="grey">Beacham, et al. Standards Track [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
the pktcSigDevVmwiSigProtocol is set to a value of
'dtmf(2)'. Different countries define different On Hook
Data Transmission Protocol signaling codes to support
VMWI.
When Dual-Tone Multi-Frequency (DTMF) is used, the VMWI
digits are preceded by a 'start code' digit, followed
by the digit transmission sequence <S1>...<Sn> (where
Sx represents the digits 0-9), and terminated by the 'end
code' digit.
For example,
<A><S1>...<Sn> <D><S1>...<Sn> <B><S1>...<Sn> <C>.
The start code for redirecting VMWI may be DTMF 'D'
The DTMF code 'B' may be sent by the network as a start
code for the transfer of information values, through
which special events can be indicated to the user. In
some countries, the '*' or '#' may be used instead of
'A', 'B', 'C', or 'D'.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 specification"
DEFVAL {dtmfcodeA}
::= { pktcSigDevObjects 39 }
pktcSigDevVmwiDtmfEndCode OBJECT-TYPE
SYNTAX DtmfCode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies an optional end code used when the
pktcSigDevVmwiSigProtocol is set to a value of
'dtmf(2)'. Different countries define different on-hook
Data Transmission Protocol signaling codes to support
VMWI.
When Dual-Tone Multi-Frequency (DTMF) is used, the VMWI
digits are preceded by a 'start code' digit, followed
by the digit transmission sequence <S1>...<Sn> (where
Sx represents the digits 0-9), and terminated by the 'end
code' digit.
For example,
<A><S1>...<Sn> <D><S1>...<Sn> <B><S1>...<Sn> <C>.
<span class="grey">Beacham, et al. Standards Track [Page 47]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-48" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
The DTMF code 'C' may be sent by the network as an end code
for the transfer of information values, through which
special events can be indicated to the user. In some
countries, the '*' or '#' may be used instead of 'A',
'B', 'C', or 'D'.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 specification"
DEFVAL {dtmfcodeC}
::= { pktcSigDevObjects 40 }
pktcSigDevrpAsDtsDuration OBJECT-TYPE
SYNTAX Unsigned32 (0|200..500)
UNITS "Milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This object specifies the duration of the rpASDTS ring
pulse prior to the start of the transmission of the
FSK or DTMF containing the caller id information. It is
only used when pktcSigDevCidMode is set to a value of
'rpAsETS'.
The following table defines the default values
for this MIB object, depending on the signal type
(pktcSigDevCidMode), and MUST be followed:
Value of pktcSigDevCidMode Default value
duringringingETS any value (not used)
dtAsETS any value (not used)
rpAsETS 250
lrAsETS any value (not used)
lrETS any value (not used)
An attempt to set this object while the value of
pktcSigDevCidMode is not 'rpAsETS' will result in
an 'inconsistentValue' error.
The value of this MIB object MUST NOT persist across MTA
reboots."
REFERENCE
"ETSI-EN-300-659-1 Specification and Belgacom
BGC_D_48_9811_30_09_EDOC version 3.3"
DEFVAL { 250 }
::= {pktcSigDevObjects 41 }
<span class="grey">Beacham, et al. Standards Track [Page 48]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-49" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
--
-- The Endpoint Config Table is used to define attributes that
-- are specific to connection EndPoints.
--
pktcSigEndPntConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF PktcSigEndPntConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This table describes the information pertaining to each
endpoint of the MTA. All entries in this table represent
the provisioned endpoints provisioned with the information
required by the MTA to maintain the NCS protocol
communication with the CMS. Each endpoint can be assigned
to its own CMS. If the specific endpoint does not have
the corresponding CMS information in this table, the
endpoint is considered as not provisioned with voice
services. Objects in this table do not persist across
MTA reboots."
::= { pktcSigEndPntConfigObjects 1 }
pktcSigEndPntConfigEntry OBJECT-TYPE
SYNTAX PktcSigEndPntConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in the pktcSigEndPntConfigTable represents
required signaling parameters for the specific endpoint
provisioned with voice services. The conceptual rows MUST
NOT persist across MTA reboots."
INDEX { ifIndex }
::= { pktcSigEndPntConfigTable 1 }
PktcSigEndPntConfigEntry ::= SEQUENCE {
pktcSigEndPntConfigCallAgentId SnmpAdminString,
pktcSigEndPntConfigCallAgentUdpPort InetPortNumber,
pktcSigEndPntConfigPartialDialTO Unsigned32,
pktcSigEndPntConfigCriticalDialTO Unsigned32,
pktcSigEndPntConfigBusyToneTO Unsigned32,
pktcSigEndPntConfigDialToneTO Unsigned32,
pktcSigEndPntConfigMessageWaitingTO Unsigned32,
pktcSigEndPntConfigOffHookWarnToneTO Unsigned32,
pktcSigEndPntConfigRingingTO Unsigned32,
pktcSigEndPntConfigRingBackTO Unsigned32,
pktcSigEndPntConfigReorderToneTO Unsigned32,
pktcSigEndPntConfigStutterDialToneTO Unsigned32,
<span class="grey">Beacham, et al. Standards Track [Page 49]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-50" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
pktcSigEndPntConfigTSMax Unsigned32,
pktcSigEndPntConfigMax1 Unsigned32,
pktcSigEndPntConfigMax2 Unsigned32,
pktcSigEndPntConfigMax1QEnable TruthValue,
pktcSigEndPntConfigMax2QEnable TruthValue,
pktcSigEndPntConfigMWD Unsigned32,
pktcSigEndPntConfigTdinit Unsigned32,
pktcSigEndPntConfigTdmin Unsigned32,
pktcSigEndPntConfigTdmax Unsigned32,
pktcSigEndPntConfigRtoMax Unsigned32,
pktcSigEndPntConfigRtoInit Unsigned32,
pktcSigEndPntConfigLongDurationKeepAlive Unsigned32,
pktcSigEndPntConfigThist Unsigned32,
pktcSigEndPntConfigStatus RowStatus,
pktcSigEndPntConfigCallWaitingMaxRep Unsigned32,
pktcSigEndPntConfigCallWaitingDelay Unsigned32,
pktcSigEndPntStatusCallIpAddressType InetAddressType,
pktcSigEndPntStatusCallIpAddress InetAddress,
pktcSigEndPntStatusError INTEGER,
pktcSigEndPntConfigMinHookFlash Unsigned32,
pktcSigEndPntConfigMaxHookFlash Unsigned32,
pktcSigEndPntConfigPulseDialInterdigitTime Unsigned32,
pktcSigEndPntConfigPulseDialMinMakeTime Unsigned32,
pktcSigEndPntConfigPulseDialMaxMakeTime Unsigned32,
pktcSigEndPntConfigPulseDialMinBreakTime Unsigned32,
pktcSigEndPntConfigPulseDialMaxBreakTime Unsigned32
}
pktcSigEndPntConfigCallAgentId OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE (3..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains a string indicating the call agent
name (e.g., ca@example.com). The call agent name, after
the character '@', MUST be a fully qualified domain name
(FQDN) and MUST have a corresponding pktcMtaDevCmsFqdn
entry in the pktcMtaDevCmsTable. The object
pktcMtaDevCmsFqdn is defined in the PacketCable MIBMTA
Specification. For each particular endpoint, the MTA MUST
use the current value of this object to communicate with
the corresponding CMS. The MTA MUST update this object
with the value of the 'Notified Entity' parameter of the
NCS message. Because of the high importance of this object
to the ability of the MTA to maintain reliable NCS
communication with the CMS, it is highly recommended not
to change this object's value using SNMP during normal
operation."
<span class="grey">Beacham, et al. Standards Track [Page 50]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-51" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
::= { pktcSigEndPntConfigEntry 1 }
pktcSigEndPntConfigCallAgentUdpPort OBJECT-TYPE
SYNTAX InetPortNumber (1025..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the current value of the User
Datagram Protocol (UDP) receive port on which the
call agent will receive NCS from the endpoint.
For each particular endpoint, the MTA MUST use the current
value of this object to communicate with the corresponding
CMS. The MTA MUST update this object with the value of the
'Notified Entity' parameter of the NCS message. If the
Notified Entity parameter does not contain a CallAgent
port, the MTA MUST update this object with the default
value of 2727. Because of the high importance of this
object to the ability of the MTA to maintain reliable NCS
communication with the CMS, it is highly recommended not
to change this object's value using SNMP during normal
operation."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 2727 }
::= { pktcSigEndPntConfigEntry 2 }
pktcSigEndPntConfigPartialDialTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object contains the value of the partial dial
time out.
The time out (TO) elements are intended to limit the time a
tone or frequency is generated. When this MIB object is set
to a value of '0', the MTA MUST NOT generate the
corresponding frequency or tone, regardless of the
definitions pertaining to frequency, tone duration, or
cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 16 }
::= { pktcSigEndPntConfigEntry 3 }
pktcSigEndPntConfigCriticalDialTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
<span class="grey">Beacham, et al. Standards Track [Page 51]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-52" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object contains the value of the critical
dial time out.
The time out (TO) elements are intended to limit the time a
tone or frequency is generated. When this MIB object is set
to a value of '0', the MTA MUST NOT generate the
corresponding frequency or tone, regardless of the
definitions pertaining to frequency, tone duration, or
cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 4 }
::= { pktcSigEndPntConfigEntry 4 }
pktcSigEndPntConfigBusyToneTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default time out value for busy
tone. The MTA MUST NOT update this object with the
value provided in the NCS message (if present). If
the value of the object is modified by the SNMP Management
Station, the MTA MUST use the new value as a default only
for a new signal requested by the NCS message.
The time out (TO) elements are intended to limit the time
a tone or frequency is generated. When this MIB object is
set to a value of '0', the MTA MUST NOT generate the
corresponding frequency or tone, regardless of the
definitions pertaining to frequency, tone duration, or
cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 30 }
::= { pktcSigEndPntConfigEntry 5 }
pktcSigEndPntConfigDialToneTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default time out value for dial
tone. The MTA MUST NOT update this object with the
value provided in the NCS message (if present). If
<span class="grey">Beacham, et al. Standards Track [Page 52]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-53" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
the value of the object is modified by the SNMP Management
Station, the MTA MUST use the new value as a default only
for a new signal requested by the NCS message.
The time out (TO) elements are intended to limit the time
a tone or frequency is generated. When this MIB object is
set to a value of '0', the MTA MUST NOT generate the
corresponding frequency or tone, regardless of the
definitions pertaining to frequency, tone duration, or
cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 16 }
::= { pktcSigEndPntConfigEntry 6 }
pktcSigEndPntConfigMessageWaitingTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default time out value for message
waiting indicator. The MTA MUST NOT update this object
with the value provided in the NCS message (if
present). If the value of the object is modified by the
SNMP Manager application, the MTA MUST use the new value
as a default only for a new signal requested by the NCS
message.
The time out (TO) elements are intended to limit the time
a tone or frequency is generated. When this MIB object is
set to a value of '0', the MTA MUST NOT generate the
corresponding frequency or tone, regardless of the
definitions pertaining to frequency, tone duration, or
cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 16 }
::= { pktcSigEndPntConfigEntry 7 }
pktcSigEndPntConfigOffHookWarnToneTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default time out value for the
off-hook warning tone. The MTA MUST NOT update this object
with the value provided in the NCS message (if present). If
the value of the object is modified by the SNMP Manager
<span class="grey">Beacham, et al. Standards Track [Page 53]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-54" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
application, the MTA MUST use the new value as a default
only for a new signal requested by the NCS message. The
time out (TO) elements are intended to limit the time a tone
or frequency is generated. When this MIB object is set to a
value of '0', the MTA MUST NOT generate the corresponding
frequency or tone, regardless of the definitions pertaining
to frequency, tone duration, or cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 0 }
::= { pktcSigEndPntConfigEntry 8 }
pktcSigEndPntConfigRingingTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default time out value for
ringing. The MTA MUST NOT update this object with the
value provided in the NCS message (if present). If
the value of the object is modified by the SNMP Management
Station, the MTA MUST use the new value as a default only
for a new signal requested by the NCS message.
The time out (TO) elements are intended to limit the time
a tone or frequency is generated. When this MIB object is
set to a value of '0', the MTA MUST NOT generate the
corresponding frequency or tone, regardless of the
definitions pertaining to frequency, tone duration, or
cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 180 }
::= { pktcSigEndPntConfigEntry 9 }
pktcSigEndPntConfigRingBackTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default time out value for ring
back. The MTA MUST NOT update this object with the
value provided in the NCS message (if present). If
the value of the object is modified by the SNMP Management
Station, the MTA MUST use the new value as a default only
for a new signal requested by the NCS message.
The time out (TO) elements are intended to limit the time
<span class="grey">Beacham, et al. Standards Track [Page 54]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-55" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
a tone or frequency is generated. When this MIB object is
set to a value of '0', the MTA MUST NOT generate the
corresponding frequency or tone, regardless of the
definitions pertaining to frequency, tone duration, or
cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 180 }
::= { pktcSigEndPntConfigEntry 10 }
pktcSigEndPntConfigReorderToneTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default time out value for reorder
tone. The MTA MUST NOT update this object with the
value provided in the NCS message (if present). If
the value of the object is modified by the SNMP Management
Station, the MTA MUST use the new value as a default only
for a new signal requested by the NCS message.
The time out (TO) elements are intended to limit the time
a tone or frequency is generated. When this MIB object is
set to a value of '0', the MTA MUST NOT generate the
corresponding frequency or tone, regardless of the
definitions pertaining to frequency, tone duration, or
cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 30 }
::= { pktcSigEndPntConfigEntry 11 }
pktcSigEndPntConfigStutterDialToneTO OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default time out value for stutter
dial tone. The MTA MUST NOT update this object with the
value provided in the NCS message (if present). If
the value of the object is modified by the SNMP Management
Station, the MTA MUST use the new value as a default only
for a new signal requested by the NCS message.
The time out (TO) elements are intended to limit the time
a tone or frequency is generated. When this MIB object is
set to a value of '0', the MTA MUST NOT generate the
<span class="grey">Beacham, et al. Standards Track [Page 55]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-56" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
corresponding frequency or tone, regardless of the
definitions pertaining to frequency, tone duration, or
cadence."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 16 }
::= { pktcSigEndPntConfigEntry 12 }
pktcSigEndPntConfigTSMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This MIB object is used as part of an NCS
retransmission algorithm. Prior to any retransmission,
the MTA must check to make sure that the time elapsed
since the sending of the initial datagram does not
exceed the value specified by this MIB object. If more
than Tsmax time has elapsed, then the retransmissions
MUST cease.
Refer to the MIB object pktcSigEndPntConfigThist for
information on when the endpoint becomes disconnected."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 20 }
::= { pktcSigEndPntConfigEntry 13 }
pktcSigEndPntConfigMax1 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object contains the suspicious error threshold for
signaling messages. The pktcSigEndPntConfigMax1 object
indicates the retransmission threshold at which the MTA MAY
actively query the domain name server (DNS) in order to
detect the possible change of call agent interfaces."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 5 }
::= { pktcSigEndPntConfigEntry 14 }
pktcSigEndPntConfigMax2 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
<span class="grey">Beacham, et al. Standards Track [Page 56]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-57" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
"This object contains the disconnect error threshold for
signaling messages. The pktcSigEndPntConfigMax2 object
indicates the retransmission threshold at which the MTA
SHOULD contact the DNS one more time to see if any other
interfaces to the call agent have become available."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 7 }
::= { pktcSigEndPntConfigEntry 15 }
pktcSigEndPntConfigMax1QEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables/disables the Max1 domain name server
(DNS) query operation when the pktcSigEndPntConfigMax1
threshold has been reached.
A value of true(1) indicates enabling, and a value of
false(2) indicates disabling."
DEFVAL { true }
::= { pktcSigEndPntConfigEntry 16 }
pktcSigEndPntConfigMax2QEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables/disables the Max2 domain name server
(DNS) query operation when the pktcSigEndPntConfigMax2
threshold has been reached.
A value of true(1) indicates enabling, and a value of
false(2) indicates disabling."
DEFVAL { true }
::= { pktcSigEndPntConfigEntry 17 }
pktcSigEndPntConfigMWD OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Maximum Waiting Delay (MWD) contains the maximum number of
seconds an MTA waits, after powering on, before initiating
the restart procedure with the call agent."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 600 }
<span class="grey">Beacham, et al. Standards Track [Page 57]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-58" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
::= { pktcSigEndPntConfigEntry 18 }
pktcSigEndPntConfigTdinit OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This MIB object represents the 'disconnected' initial
waiting delay within the context of an MTA's 'disconnected
procedure'. The 'disconnected procedure' is initiated when
an endpoint becomes 'disconnected' while attempting to
communicate with a call agent.
The 'disconnected timer' associated with the 'disconnected
Procedure' is initialized to a random value, uniformly
distributed between zero and the value contained in this
MIB object.
For more information on the usage of this timer, please
refer to the PacketCable NCS Specification."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 15 }
::= { pktcSigEndPntConfigEntry 19 }
pktcSigEndPntConfigTdmin OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This MIB object represents the 'disconnected' minimum
waiting delay within the context of an MTA's
'disconnected procedure', specifically when local user
activity is detected.
The 'disconnected procedure' is initiated when
an endpoint becomes 'disconnected' while attempting to
communicate with a call agent.
For more information on the usage of this timer, please
refer to the PacketCable NCS Specification."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 15 }
::= { pktcSigEndPntConfigEntry 20 }
pktcSigEndPntConfigTdmax OBJECT-TYPE
SYNTAX Unsigned32
<span class="grey">Beacham, et al. Standards Track [Page 58]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-59" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the maximum number of seconds the MTA
waits, after a disconnect, before initiating the
disconnected procedure with the call agent.
"
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 600 }
::= { pktcSigEndPntConfigEntry 21 }
pktcSigEndPntConfigRtoMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the maximum number of seconds the MTA
waits for a response to an NCS message before initiating
a retransmission."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 4 }
::= { pktcSigEndPntConfigEntry 22 }
pktcSigEndPntConfigRtoInit OBJECT-TYPE
SYNTAX Unsigned32
UNITS "milliseconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the initial number of seconds for the
retransmission timer."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 200 }
::= { pktcSigEndPntConfigEntry 23 }
pktcSigEndPntConfigLongDurationKeepAlive OBJECT-TYPE
SYNTAX Unsigned32
UNITS "minutes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Specifies a time out value, in minutes, for sending long
duration call notification messages."
<span class="grey">Beacham, et al. Standards Track [Page 59]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-60" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 60 }
::= { pktcSigEndPntConfigEntry 24 }
pktcSigEndPntConfigThist OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Time out period, in seconds, before no response is declared."
REFERENCE
"PacketCable NCS Specification"
DEFVAL { 30 }
::= { pktcSigEndPntConfigEntry 25 }
pktcSigEndPntConfigStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the Row Status associated with the
pktcSigEndPntConfigTable. There are no restrictions or
dependencies amidst the columnar objects before this
row can be activated or for modifications of the
columnar objects when this object is set to a
value of 'active(1)."
::= { pktcSigEndPntConfigEntry 26 }
pktcSigEndPntConfigCallWaitingMaxRep OBJECT-TYPE
SYNTAX Unsigned32 (0..10)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the default value of the maximum
number of repetitions of the Call Waiting tone that the
MTA will play from a single CMS request. The MTA MUST NOT
update this object with the information provided in the
NCS message (if present). If the value of the object is
modified by the SNMP Manager application, the MTA MUST use
the new value as a default only for a new signal
requested by the NCS message."
DEFVAL { 1 }
::= { pktcSigEndPntConfigEntry 27 }
pktcSigEndPntConfigCallWaitingDelay OBJECT-TYPE
SYNTAX Unsigned32 (1..100)
<span class="grey">Beacham, et al. Standards Track [Page 60]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-61" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" This object contains the delay between repetitions of the
Call Waiting tone that the MTA will play from a single CMS
request."
DEFVAL { 10 }
::= { pktcSigEndPntConfigEntry 28 }
pktcSigEndPntStatusCallIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This object contains the type of Internet address contained
in the MIB object 'pktcSigEndPntStatusCallIpAddress'.
Since pktcSigEndPntStatusCallIpAddress is expected to
contain an IP address, a value of dns(16) is disallowed."
::= { pktcSigEndPntConfigEntry 29 }
pktcSigEndPntStatusCallIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This MIB object contains the chosen IP address of the CMS
currently being used for the corresponding endpoint.
The device determines the IP address by using DNS to
resolve the IP address of the CMS from the FQDN stored in
the MIB object 'pktcSigEndPntConfigCallAgentId'. The
processes are outlined in the PacketCable NCS and Security
specifications, and MUST be followed by the MTA.
The IP address type contained in this MIB object is
indicated by pktcSigEndPntStatusCallIpAddressType."
REFERENCE
"PacketCable NCS Specification;
PacketCable Security specification, [<a href="#ref-PKT-SP-SEC" title="Issued">PKT-SP-SEC</a>]."
::= { pktcSigEndPntConfigEntry 30 }
pktcSigEndPntStatusError OBJECT-TYPE
SYNTAX INTEGER {
operational (1),
noSecurityAssociation (2),
<span class="grey">Beacham, et al. Standards Track [Page 61]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-62" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
disconnected (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This object contains the error status for this interface.
The operational status indicates that all operations
necessary to put the line in service have occurred, and the
CMS has acknowledged the Restart In Progress (RSIP)
message successfully. If pktcMtaDevCmsIpsecCtrl is enabled
for the associated call agent, the noSecurityAssociation
status indicates that no Security Association (SA) yet
exists for this endpoint. If pktcMtaDevCmsIpsecCtrl is
disabled for the associated call agent, the
noSecurityAssociation status is not applicable and should
not be used by the MTA. The disconnected status indicates
one of the following two:
If pktcMtaDevCmsIpsecCtrl is disabled, then no security
association is involved with this endpoint. The NCS
signaling software is in process of establishing the NCS
signaling link via an RSIP exchange.
Otherwise, when pktcMtaDevCmsIpsecCtrl is enabled,
security Association has been established, and the NCS
signaling software is in process of establishing the NCS
signaling link via an RSIP exchange."
::= { pktcSigEndPntConfigEntry 31 }
pktcSigEndPntConfigMinHookFlash OBJECT-TYPE
SYNTAX Unsigned32 (20..1550)
UNITS "Milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the minimum time a line needs to be on-hook for a
valid hook flash. The value of this object MUST be
greater than the value of
pktcSigEndPntConfigPulseDialMaxBreakTime. The value of
pktcSigEndPntConfigMinHookFlash MUST be less than
pktcSigEndPntConfigMaxHookFlash. This object MUST only be
set via the MTA configuration during the provisioning
process.
Furthermore, given the possibility for the 'pulse dial'
and 'hook flash' to overlap, the value of this object
MUST be greater than the value contained by the MIB
Object 'pktcSigEndPntConfigPulseDialMaxMakeTime'."
DEFVAL { 300 }
::= { pktcSigEndPntConfigEntry 32 }
<span class="grey">Beacham, et al. Standards Track [Page 62]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-63" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
pktcSigEndPntConfigMaxHookFlash OBJECT-TYPE
SYNTAX Unsigned32 (20..1550)
UNITS "Milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the maximum time a line needs to be on-hook for a
valid hook flash. The value of
pktcSigEndPntConfigMaxHookFlash MUST be greater than
pktcSigEndPntConfigMinHookFlash. This object MUST only be
set via the MTA configuration during the provisioning
process."
DEFVAL { 800 }
::= { pktcSigEndPntConfigEntry 33 }
pktcSigEndPntConfigPulseDialInterdigitTime OBJECT-TYPE
SYNTAX Unsigned32 (100..1500)
UNITS "Milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the pulse dial inter-digit time out. This object
MUST only be set via the MTA configuration during the
provisioning process."
DEFVAL { 100 }
::= { pktcSigEndPntConfigEntry 34 }
pktcSigEndPntConfigPulseDialMinMakeTime OBJECT-TYPE
SYNTAX Unsigned32 (20..200)
UNITS "Milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the minimum make pulse width for the dial pulse.
The value of pktcSigEndPntConfigPulseDialMinMakeTime MUST
be less than pktcSigEndPntConfigPulseDialMaxMakeTime. This
object MUST only be set via the MTA configuration during
the provisioning process."
DEFVAL { 25 }
::= { pktcSigEndPntConfigEntry 35 }
pktcSigEndPntConfigPulseDialMaxMakeTime OBJECT-TYPE
SYNTAX Unsigned32 (20..200)
UNITS "Milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the maximum make pulse width for the dial pulse.
<span class="grey">Beacham, et al. Standards Track [Page 63]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-64" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
The value of pktcSigEndPntConfigPulseDialMaxMakeTime MUST
be greater than pktcSigEndPntConfigPulseDialMinMakeTime.
This object MUST only be provided via the configuration
file during the provisioning process.
Furthermore, given the possibility for the 'pulse dial'
and 'hook flash' to overlap, the value of this object MUST
be less than the value contained by the MIB object
pktcSigEndPntConfigMinHookFlash."
DEFVAL { 55 }
::= { pktcSigEndPntConfigEntry 36 }
pktcSigEndPntConfigPulseDialMinBreakTime OBJECT-TYPE
SYNTAX Unsigned32 (20..200)
UNITS "Milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the minimum break pulse width for the dial pulse.
The value of pktcSigEndPntConfigPulseDialMinBreakTime MUST
be less than pktcSigEndPntConfigPulseDialMaxBreakTime.
This object must only be provided via the configuration
file during the provisioning process."
DEFVAL { 45 }
::= { pktcSigEndPntConfigEntry 37 }
pktcSigEndPntConfigPulseDialMaxBreakTime OBJECT-TYPE
SYNTAX Unsigned32 (20..200)
UNITS "Milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the maximum break pulse width for the dial pulse.
The value of pktcSigEndPntConfigPulseDialMaxBreakTime MUST
be greater than pktcSigEndPntConfigPulseDialMinBreakTime.
This object MUST only be provided via the configuration
file during the provisioning process."
DEFVAL { 75 }
::= { pktcSigEndPntConfigEntry 38 }
--
-- notification group is for future extension.
--
pktcSigNotification OBJECT IDENTIFIER ::= { pktcIetfSigMib 0 }
pktcSigConformance OBJECT IDENTIFIER ::= { pktcIetfSigMib 2 }
pktcSigCompliances OBJECT IDENTIFIER ::= { pktcSigConformance 1 }
pktcSigGroups OBJECT IDENTIFIER ::= { pktcSigConformance 2 }
--
<span class="grey">Beacham, et al. Standards Track [Page 64]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-65" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
-- compliance statements
--
pktcSigBasicCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
" The compliance statement for MTAs that implement
NCS signaling."
MODULE -- pktcIetfSigMib
---
-- Unconditionally mandatory groups for all MTAs
---
MANDATORY-GROUPS {
pktcSigDeviceGroup,
pktcSigEndpointGroup
}
---
-- Conditionally mandatory groups for MTAs
---
GROUP pktcInternationalGroup
DESCRIPTION
" This group is mandatory only for MTAs implementing
international telephony features."
GROUP pktcLLinePackageGroup
DESCRIPTION
" This group is mandatory only for MTAs implementing the L
line package."
GROUP pktcELinePackageGroup
DESCRIPTION
" This group is mandatory only for MTAs implementing the E
Line Package."
::={ pktcSigCompliances 1 }
pktcSigDeviceGroup OBJECT-GROUP
OBJECTS {
pktcSigDevCodecMax,
pktcSigDevEchoCancellation,
pktcSigDevSilenceSuppression,
pktcSigDevR0Cadence,
pktcSigDevR1Cadence,
pktcSigDevR2Cadence,
pktcSigDevR3Cadence,
<span class="grey">Beacham, et al. Standards Track [Page 65]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-66" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
pktcSigDevR4Cadence,
pktcSigDevR5Cadence,
pktcSigDevR6Cadence,
pktcSigDevR7Cadence,
pktcSigDevRgCadence,
pktcSigDevRsCadence,
pktcSigDefCallSigDscp,
pktcSigDefMediaStreamDscp,
pktcSigDevVmwiMode,
pktcSigCapabilityType,
pktcSigCapabilityVersion,
pktcSigCapabilityVendorExt,
pktcSigDefNcsReceiveUdpPort
}
STATUS current
DESCRIPTION
"Group of MIB objects containing signaling configuration
information that is applicable per-device."
::= { pktcSigGroups 1 }
pktcSigEndpointGroup OBJECT-GROUP
OBJECTS {
pktcSigEndPntConfigCallAgentId,
pktcSigEndPntConfigCallAgentUdpPort,
pktcSigEndPntConfigPartialDialTO,
pktcSigEndPntConfigCriticalDialTO,
pktcSigEndPntConfigBusyToneTO,
pktcSigEndPntConfigDialToneTO,
pktcSigEndPntConfigMessageWaitingTO,
pktcSigEndPntConfigOffHookWarnToneTO,
pktcSigEndPntConfigRingingTO,
pktcSigEndPntConfigRingBackTO,
pktcSigEndPntConfigReorderToneTO,
pktcSigEndPntConfigStutterDialToneTO,
pktcSigEndPntConfigTSMax,
pktcSigEndPntConfigMax1,
pktcSigEndPntConfigMax2,
pktcSigEndPntConfigMax1QEnable,
pktcSigEndPntConfigMax2QEnable,
pktcSigEndPntConfigMWD,
pktcSigEndPntConfigTdinit,
pktcSigEndPntConfigTdmin,
pktcSigEndPntConfigTdmax,
pktcSigEndPntConfigRtoMax,
pktcSigEndPntConfigRtoInit,
pktcSigEndPntConfigLongDurationKeepAlive,
pktcSigEndPntConfigThist,
pktcSigEndPntConfigStatus,
<span class="grey">Beacham, et al. Standards Track [Page 66]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-67" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
pktcSigEndPntConfigCallWaitingMaxRep,
pktcSigEndPntConfigCallWaitingDelay,
pktcSigEndPntStatusCallIpAddressType,
pktcSigEndPntStatusCallIpAddress,
pktcSigEndPntStatusError
}
STATUS current
DESCRIPTION
"Group of MIB objects containing signaling configuration
information that is applicable per-endpoint."
::= { pktcSigGroups 2 }
pktcInternationalGroup OBJECT-GROUP
OBJECTS {
pktcSigEndPntConfigMinHookFlash,
pktcSigEndPntConfigMaxHookFlash,
pktcSigEndPntConfigPulseDialInterdigitTime,
pktcSigEndPntConfigPulseDialMinMakeTime,
pktcSigEndPntConfigPulseDialMaxMakeTime,
pktcSigEndPntConfigPulseDialMinBreakTime,
pktcSigEndPntConfigPulseDialMaxBreakTime,
pktcSigDevRingCadence,
pktcSigDevCidSigProtocol,
pktcSigDevCidDelayAfterLR,
pktcSigDevCidDtmfStartCode,
pktcSigDevCidDtmfEndCode,
pktcSigDevVmwiSigProtocol,
pktcSigDevVmwiDelayAfterLR,
pktcSigDevVmwiDtmfStartCode,
pktcSigDevVmwiDtmfEndCode,
pktcSigDevrpAsDtsDuration,
pktcSigDevCidMode,
pktcSigDevCidAfterRing,
pktcSigDevCidAfterDTAS,
pktcSigDevCidAfterRPAS,
pktcSigDevRingAfterCID,
pktcSigDevCidDTASAfterLR,
pktcSigDevVmwiMode,
pktcSigDevVmwiAfterDTAS,
pktcSigDevVmwiAfterRPAS,
pktcSigDevVmwiDTASAfterLR,
pktcSigPowerRingFrequency,
pktcSigPulseSignalFrequency,
pktcSigPulseSignalDbLevel,
pktcSigPulseSignalDuration,
pktcSigPulseSignalPulseInterval,
pktcSigPulseSignalRepeatCount,
pktcSigDevToneDbLevel,
<span class="grey">Beacham, et al. Standards Track [Page 67]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-68" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
pktcSigDevToneFreqCounter,
pktcSigDevToneWholeToneRepeatCount,
pktcSigDevToneSteady,
pktcSigDevToneFirstFreqValue,
pktcSigDevToneSecondFreqValue,
pktcSigDevToneThirdFreqValue,
pktcSigDevToneFourthFreqValue,
pktcSigDevToneFreqMode,
pktcSigDevToneFreqAmpModePrtg,
pktcSigDevToneFreqOnDuration,
pktcSigDevToneFreqOffDuration,
pktcSigDevToneFreqRepeatCount
}
STATUS current
DESCRIPTION
" Group of objects that extend the behavior of existing
objects to support operations in the widest possible set
of international marketplaces. Note that many of these
objects represent a superset of behaviors described in
other objects within this MIB module."
::= { pktcSigGroups 3 }
pktcLLinePackageGroup OBJECT-GROUP
OBJECTS {
pktcSigDevR0Cadence,
pktcSigDevR1Cadence,
pktcSigDevR2Cadence,
pktcSigDevR3Cadence,
pktcSigDevR4Cadence,
pktcSigDevR5Cadence,
pktcSigDevR6Cadence,
pktcSigDevR7Cadence,
pktcSigDevRgCadence,
pktcSigDevRsCadence
}
STATUS current
DESCRIPTION
"Group of Objects to support the L line package."
::= { pktcSigGroups 4 }
pktcELinePackageGroup OBJECT-GROUP
OBJECTS {
pktcSigDevR0Cadence,
pktcSigDevR1Cadence,
pktcSigDevR2Cadence,
pktcSigDevR3Cadence,
pktcSigDevR4Cadence,
pktcSigDevR5Cadence,
<span class="grey">Beacham, et al. Standards Track [Page 68]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-69" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
pktcSigDevR6Cadence,
pktcSigDevR7Cadence,
pktcSigDevRgCadence,
pktcSigDevRsCadence,
pktcSigPulseSignalFrequency,
pktcSigPulseSignalDbLevel,
pktcSigPulseSignalDuration,
pktcSigPulseSignalPulseInterval,
pktcSigPulseSignalRepeatCount,
pktcSigDevRingCadence
}
STATUS current
DESCRIPTION
"Group of Objects to support the E line package."
::= { pktcSigGroups 5 }
END
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Examples</span>
This section provides a couple of examples, specifically related to
the MIB tables pktcSigDevToneTable and pktcSigDevMultiFreqToneTable.
Example A: Call Waiting Tone Defined per [ITU-T E.180]:
1) 400 Hz AM modulated by 16 Hz, on for 500ms at -4 dBm
2) 400 Hz AM modulated by 16 Hz, off for 400ms
3) 400 Hz not AM modulated, on for 50 ms at -4 dBm
4) 400 Hz not AM modulated, off for 450 ms
5) 400 Hz not AM modulated, on for 50 ms at -4 dBm
6) 400 Hz not AM modulated, off for 3450 ms
7) 400 Hz not AM modulated, on for 50 ms at -4 dBm
8) 400 Hz not AM modulated, off for 450 ms
9) 400 Hz not AM modulated, on for 50 ms at -4 dBm
10) 400 Hz not AM modulated, off for 3450 ms
11) not repeated, not continuous
<span class="grey">Beacham, et al. Standards Track [Page 69]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-70" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
Assume userDefined1(18) is assigned to this tone:
pktcSigDevMultiFreqToneTable:
ToneType|F-1|F-2|F-3|F-4|F-Mode|ModePrtg|DbL|OnDur|OffDur|Rep-Count
===================================================================
18 400 16 0 0 1 90 -40 500 400 0
18 400 0 0 0 2 0 -40 50 450 0
18 400 0 0 0 2 0 -40 50 3450 0
18 400 0 0 0 2 0 -40 50 450 0
18 400 0 0 0 2 0 -40 50 3450 0
pktcSigDevToneTable:
ToneType|ToneFreqGroup|ToneFreqCounter|ToneRep-Count|Steady
=============================================================
18 1 5 0 false(2)
The single row of the pktcSigDevToneTable defines one multi-frequency
group of five rows (ToneFreqCounter) defined in the
pktcSigDevMultiFreqToneTable and instructs the MTA to play this group
only once (non-repeatable as ToneRep-Count equals 0).
Example B - Congestion Tone - congestion(17):
Note: This example of an embedded cadence is based on an operator
variation.
1) 400Hz on for 400ms -10 dBm
2) 400Hz off for 350ms
3) 400Hz on for 225ms -4 dBm
4) 400Hz off for 525ms
5) repeat (1) through (4) 5000 times or T0 time out (whichever is the
shortest period)
pktcSigDevMultiFreqToneTable:
ToneType|F-1|F-2|F-3|F-4|F-Mode|ModePrtg|DbL|OnDur|OffDur|Rep-Count
===================================================================
17 400 0 0 0 2 0 -100 400 350 0
17 400 0 0 0 2 0 -40 225 525 0
pktcSigDevToneTable:
ToneType|ToneFreqGroup|ToneFreqCounter|ToneRep-Count|Steady
=============================================================
17 1 2 5000 false(2)
<span class="grey">Beacham, et al. Standards Track [Page 70]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-71" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
Example C - Call Waiting Tone - callWaiting1(9):
1) 16 Hz is modulated to carry the 400 Hz signal, ModulationRate
within 85%, on for 500msec, at -25 dBm or more but less than -14 dBm
2) 16 Hz is modulated to carry the 400 Hz signal, off for 0 ~ 4 secs
3) 400 Hz not modulated, on for 50 ms at -25 dBm or more but less
than -14 dBm
4) 400 Hz not modulated, off for 450ms
5) 400 Hz not modulated, on for 50 ms at -25 dBm or more but less
than -14 dBm
6) 400 Hz not modulated, off for 3450ms ([4000 - (50+450+50)])
7) Steps 3 thru 6 are repeated
pktcSigDevMultiFreqToneTable:
ToneType|F-1|F-2|F-3|F-4|F-Mode|ModePrtg|DbL|OnDur|OffDur|Rep-Count
===================================================================
9 1 400 16 0 0 1 85 -25 500 1000 0
9 2 400 0 0 0 2 0 -25 50 450 0
9 3 400 0 0 0 2 0 -25 50 3450 0
pktcSigDevToneTable:
ToneType|ToneFreqGroup|ToneFreqCounter|ToneRep-Count|Steady
=============================================================
9 1 1 0 false(2)
9 2 2 1 false(2)
The first row of the pktcSigDevToneTable table instructs the MTA to
play one row (ToneFreqCounter) of the pktcSigDevMultiFreqToneTable
table only once (non-repeatable as ToneRep-Count equals 0). The
second row of the pktcSigDevToneTable table instructs the MTA to play
the next two rows (ToneFreqCounter) of the
pktcSigDevMultiFreqToneTable table and make this frequency group
repeatable (ToneRep-Count is not 0).
<span class="grey">Beacham, et al. Standards Track [Page 71]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-72" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Acknowledgments</span>
The authors would like to thank the members of the IETF IPCDN working
group and the CableLabs PacketCable Provisioning focus team for their
contributions, comments, and suggestions.
Specifically, the following individuals are recognized:
Angela Lyda Arris Interactive
Romascanu, Dan Avaya
Chad Griffiths Broadcom Corp.
Eugene Nechamkin Broadcom Corp.
Jean-Francois Mule CableLabs
Matt A. Osman CableLabs
Klaus Hermanns Cisco Systems, Inc.
Rich Woundy Comcast Corp.
Bert Wijnen Alcatel-Lucent
Randy Presuhn Mindspring
Phillip Freyman Motorola, Inc.
Rick Vetter Motorola, Inc.
Sasha Medvinsky Motorola, Inc.
Wim De Ketelaere tComLabs
David De Reu tComLabs
Kristof Sercu tComLabs
Roy Spitzer Telogy Networks, Inc.
Itay Sherman Texas Instruments, Inc.
Mauricio Sanchez Texas Instruments, Inc.
Shivakumar Thangapandi Texas Instruments, Inc.
Mike Heard Consultant
The current editor (Sumanth Channabasappa) would like to recognize
Phillip Freyman and Eugene Nechamkin for their contributions towards
the international objects, and Stephane Bortzmeyer for assistance
with the ABNF.
The editor also extends appreciation to the IPCDN co-chairs (Jean-
Francois Mule, Rich Woundy) and Dan Romascanu for the numerous
reviews and valuable comments. Special appreciation is extended to
Bert Wijnen, as the MIB doctor, for his ever-useful and constructive
comments.
<span class="grey">Beacham, et al. Standards Track [Page 72]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-73" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
There are a number of management objects defined in this MIB module
with a MAX-ACCESS clause of read-write and/or read-create. Such
objects may be considered sensitive or vulnerable in some network
environments. The support for SET operations in a non-secure
environment without proper protection can have a negative effect on
network operations.
The following Differentiated Services Code Point (DSCP) and mask
objects are used to differentiate between various types of traffic in
the service provider network:
pktcSigDefCallSigDscp
pktcSigDefMediaStreamDscp
These objects may contain information that may be sensitive from a
business perspective. For example, they may represent a customer's
service contract that a service provider chooses to apply to a
customer's ingress or egress traffic. If these objects are SET
maliciously, it may permit unmarked or inappropriately marked
signaling and media traffic to enter the service provider network,
resulting in unauthorized levels of service for customers.
The following objects determine ring cadence, repeatable
characteristics, signal duration, and caller id subscriber line
protocol for telephony operation:
pktcSigDevR0Cadence
pktcSigDevR1Cadence
pktcSigDevR2Cadence
pktcSigDevR3Cadence
pktcSigDevR4Cadence
pktcSigDevR5Cadence
pktcSigDevR6Cadence
pktcSigDevR7Cadence
pktcSigDevRgCadence
pktcSigDevRsCadence
pktcSigDevCidSigProtocol
pktcSigDevVmwiSigProtocol
pktcSigPulseSignalDuration
pktcSigPulseSignalPauseDuration
If these objects are SET maliciously, it may result in unwanted
operation, or a failure to obtain telephony service from client (MTA)
devices.
<span class="grey">Beacham, et al. Standards Track [Page 73]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-74" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
The objects in the pktcSigEndPntConfigTable are used for endpoint
signaling. The pktcSigEndPntConfigCallAgentId object contains the
name of the call agent, which includes the call agent Fully Qualified
Domain Name (FQDN). If this object is SET maliciously, the MTA will
not be able to communicate with the call agent, resulting in a
disruption of telephony service. The
pktcSigEndPntConfigCallAgentUdpPort object identifies the UDP port
for NCS traffic. If this object is SET maliciously, the call agent
will not receive NCS traffic from the MTA, also resulting in a
disruption of telephony service.
Some of the readable objects in this MIB module (i.e., objects with a
MAX-ACCESS other than not-accessible) may be considered sensitive or
vulnerable in some network environments. It is thus important to
control even GET and/or NOTIFY access to these objects and possibly
to even encrypt the values of these objects when sending them over
the network via SNMP. The most sensitive is
pktcSigEndPntStatusCallIpAddress within pktcSigEndPntConfigTable.
This information itself may be valuable to would-be attackers. Other
MIB Objects of similar sensitivity include pktcSigEndPntStatusError,
which can provide useful information to MTA impersonators, and
pktcSigDevCodecMax, which can provide useful information for planning
Denial of Service (DoS) attacks on MTAs.
SNMP versions prior to SNMPv3 did not include adequate security.
Even if the network itself is secure (for example by using IPsec),
even then, there is no control as to who on the secure network is
allowed to access and GET/SET (read/change/create/delete) the objects
in this MIB module.
It is RECOMMENDED that implementers consider the security features as
provided by the SNMPv3 framework (see <a href="./rfc3410#section-8">[RFC3410], section 8</a>),
including full support for the SNMPv3 cryptographic mechanisms (for
authentication and privacy).
Further, deployment of SNMP versions prior to SNMPv3 is NOT
RECOMMENDED. Instead, it is RECOMMENDED to deploy SNMPv3 and to
enable cryptographic security. It is then a customer/operator
responsibility to ensure that the SNMP entity giving access to an
instance of this MIB module is properly configured to give access to
the objects only to those principals (users) that have legitimate
rights to indeed GET or SET (change/create/delete) them.
<span class="grey">Beacham, et al. Standards Track [Page 74]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-75" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. IANA Considerations</span>
The MIB module in this document uses the following IANA-assigned
OBJECT IDENTIFIER value recorded in the SMI Numbers registry:
Descriptor OBJECT IDENTIFIER Value
---------- -----------------------
pktcIetfSigMib { mib-2 169 }
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Normative References</span>
[<a id="ref-PKT-SP-MIB-SIG-1.0">PKT-SP-MIB-SIG-1.0</a>]
PacketCable(TM) 1.0 Signaling MIB Specification,
Issued, PKT-SP-MIB-SIG-I09-050812, August 2005.
<a href="http://www.packetcable.com/specifications/">http://www.packetcable.com/specifications/</a>
<a href="http://www.cablelabs.com/specifications/archives">http://www.cablelabs.com/specifications/archives</a>
[<a id="ref-PKT-SP-MIB-SIG-1.5">PKT-SP-MIB-SIG-1.5</a>]
PacketCable(TM) 1.5 Signaling MIB Specification,
Issued, PKT-SP-MIB-SIG1.5-I01-050128, January 2005.
<a href="http://www.packetcable.com/specifications/">http://www.packetcable.com/specifications/</a>
<a href="http://www.cablelabs.com/specifications/archives">http://www.cablelabs.com/specifications/archives</a>
[<a id="ref-PKT-SP-SEC">PKT-SP-SEC</a>] PacketCable Security Specification, Issued, PKT-SP-
SEC-I12-050812, August 2005.
<a href="http://www.packetcable.com/specifications/">http://www.packetcable.com/specifications/</a>
<a href="http://www.cablelabs.com/specifications/archives">http://www.cablelabs.com/specifications/archives</a>
[<a id="ref-ITU-T-J169">ITU-T-J169</a>] IPCablecom Network Call Signaling (NCS) MIB
requirements, J.169, ITU-T, March, 2001.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC2578">RFC2578</a>] McCloghrie, K., Perkins, D., and J. Schoenwaelder,
"Structure of Management Information Version 2
(SMIv2)", STD 58, <a href="./rfc2578">RFC 2578</a>, April 1999.
[<a id="ref-RFC2579">RFC2579</a>] McCloghrie, K., Perkins, D., and J. Schoenwaelder,
"Textual Conventions for SMIv2", STD 58, <a href="./rfc2579">RFC 2579</a>,
April 1999.
[<a id="ref-RFC2580">RFC2580</a>] McCloghrie, K., Perkins, D., and J. Schoenwaelder,
"Conformance Statements for SMIv2", STD 58, <a href="./rfc2580">RFC 2580</a>,
April 1999.
<span class="grey">Beacham, et al. Standards Track [Page 75]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-76" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
[<a id="ref-RFC3289">RFC3289</a>] Baker, F., Chan, K., and A. Smith, "Management
Information Base for the Differentiated Services
Architecture", <a href="./rfc3289">RFC 3289</a>, May 2002.
[<a id="ref-RFC4001">RFC4001</a>] Daniele, M., Haberman, B., Routhier, S., and J.
Schoenwaelder, "Textual Conventions for Internet
Network Addresses", <a href="./rfc4001">RFC 4001</a>, February 2005.
[<a id="ref-RFC3411">RFC3411</a>] Harrington, D., Presuhn, R., and B. Wijnen, "An
Architecture for Describing Simple Network Management
Protocol (SNMP) Management Frameworks", STD 62, <a href="./rfc3411">RFC</a>
<a href="./rfc3411">3411</a>, December 2002.
[<a id="ref-RFC2863">RFC2863</a>] McCloghrie, K. and F. Kastenholz, "The Interfaces
Group MIB", <a href="./rfc2863">RFC 2863</a>, June 2000.
[<a id="ref-PKT-SP-CODEC">PKT-SP-CODEC</a>] PacketCable Audio/Video Codecs Specification PKT-SP-
CODEC-IO5-040113.
[<a id="ref-PKT-SP-MGCP">PKT-SP-MGCP</a>] PacketCable Network-Based Call Signaling Protocol
Specification PKT-SP-EC-MGCP-I10-040402.
[<a id="ref-PKT-SP-PROV">PKT-SP-PROV</a>] PacketCable MTA Device Provisioning Specification
PKT-SP-PROV-I10-040730.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Informative References</span>
[<a id="ref-RFC3410">RFC3410</a>] Case, J., Mundy, R., Partain, D., and B. Stewart,
"Introduction and Applicability Statements for
Internet-Standard Management Framework", <a href="./rfc3410">RFC 3410</a>,
December 2002.
[<a id="ref-RFC3435">RFC3435</a>] Andreasen, F. and B. Foster, "Media Gateway Control
Protocol (MGCP) Version 1.0", <a href="./rfc3435">RFC 3435</a>, January 2003.
[<a id="ref-RFC5234">RFC5234</a>] Crocker, D., Ed., and P. Overell, "Augmented BNF for
Syntax Specifications: ABNF", STD 68, <a href="./rfc5234">RFC 5234</a>,
January 2008.
[<a id="ref-RFC4682">RFC4682</a>] Nechamkin, E. and J-F. Mule, "Multimedia Terminal
Adapter (MTA) Management Information Base for
PacketCable- and IPCablecom-Compliant Devices", <a href="./rfc4682">RFC</a>
<a href="./rfc4682">4682</a>, December 2006.
<span class="grey">Beacham, et al. Standards Track [Page 76]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-77" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
[<a id="ref-ETSI-TS-101-909-4">ETSI-TS-101-909-4</a>]
ETSI TS 101 909-4:"Access and Terminals (AT); Digital
Broadband Cable Access to the Public
Telecommunications Network; IP Multimedia Time
Critical Services; Part 4: Network Call Signaling
Protocol".
[<a id="ref-ETSI-TS-101-909-9">ETSI-TS-101-909-9</a>]
ETSI TS 101 909-9:"Access and Terminals (AT); Digital
Broadband Cable Access to the Public
Telecommunications Network; IP Multimedia Time
Critical Services; Part 9: IPCablecom Network Call
Signalling (NCS) MIB Requirements".
[<a id="ref-ETSI-EN-300-001">ETSI-EN-300-001</a>]
ETSI EN 300-001 V1.5.1 (1998-10):"European Standard
(Telecommunications series) Attachments to Public
Switched Telephone Network (PSTN); General technical
requirements for equipment connected to an analogue
subscriber interface in the PSTN; Chapter 3: Ringing
signal characteristics (national deviations are in
Table 3.1.1)".
[<a id="ref-ETSI-EN-300-324-1">ETSI-EN-300-324-1</a>]
ETSI EN 300 324-1 V2.1.1 (2000-04):"V Interfaces at
the digital Loop Exchange (LE); V5.1 interface for the
support of Access Network (AN); Part 1: V5.1 interface
specification".
[<a id="ref-ETSI-EN-300-659-1">ETSI-EN-300-659-1</a>]
ETSI EN 300 659-1: "Public Switched Telephone Network
(PSTN); Subscriber line protocol over the local loop
for display (and related) services; Part 1: On hook
data transmission".
[<a id="ref-ITU-T-E.180">ITU-T-E.180</a>] ITU-T E.180: "Various Tones Used in National Networks,
Supplement 2 to Recommendation E.180".
[<a id="ref-ETSI-TR-101-183">ETSI-TR-101-183</a>]
ETSI TR-101-183: "Public Switched Telephone Network
(PSTN) Analogue Ringing Signals".
<span class="grey">Beacham, et al. Standards Track [Page 77]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-78" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
Authors' Addresses
Gordon Beacham
Motorola, Inc.
6450 Sequence Drive, Bldg. 1
San Diego, CA 92121, USA
Phone: +1 858-404-2334
EMail: gordon.beacham@motorola.com
Satish Kumar Mudugere Eswaraiah
Texas Instruments India (P) Ltd.,
Golf view, Wind Tunnel Road
Murugesh Palya
Bangalore 560 017, INDIA
Phone: +91 80 5269451
EMail: satish.kumar@ti.com
Sumanth Channabasappa
Cable Television Laboratories, Inc.
858 Coal Creek Circle,
Louisville, CO 80027, USA
Phone: +1 303-661-3307
EMail: Sumanth@cablelabs.com
<span class="grey">Beacham, et al. Standards Track [Page 78]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-79" ></span>
<span class="grey"><a href="./rfc5098">RFC 5098</a> PacketCable/IPCablecom NCS Signaling MIB February 2008</span>
Full Copyright Statement
Copyright (C) The IETF Trust (2008).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND
THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at
ietf-ipr@ietf.org.
Beacham, et al. Standards Track [Page 79]
</pre>
|