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 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261
|
<pre>Network Working Group F. Ly
Request for Comments: 3606 Pedestal Networks
Category: Standards Track M. Noto
Cisco Systems
A. Smith
Consultant
E. Spiegel
Cisco Systems
K. Tesink
Telcordia Technologies
November 2003
<span class="h1">Definitions of Supplemental Managed Objects for ATM Interface</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.
Copyright Notice
Copyright (C) The Internet Society (2003). All Rights Reserved.
Abstract
This memo defines objects used for managing ATM-based interfaces,
devices, and services, in addition to those defined in <a href="./rfc2515">RFC 2515</a>, the
ATM-MIB, to provide additional support for the management of ATM
Switched Virtual Connections (SVCs) and ATM Permanent Virtual
Connections (PVCs).
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
Table of Contents
<a href="#section-1">1</a>. The Internet-Standard Management Framework. . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2">2</a>. Overview. . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2.1">2.1</a>. Background. . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2.2">2.2</a>. Important Definitions . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3">3</a>. Conventions used in the MIB . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. Structure . . . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.1.1">3.1.1</a>. ATM SVC VP Cross-Connect Table. . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.1.2">3.1.2</a>. ATM SVC VC Cross-Connect Table. . . . . . . . <a href="#page-7">7</a>
<a href="#section-3.1.3">3.1.3</a>. ATM Interface Signalling Statistics Table . . <a href="#page-8">8</a>
<a href="#section-3.1.4">3.1.4</a>. ATM Signalling Capability Support . . . . . . <a href="#page-9">9</a>
<a href="#section-3.1.5">3.1.5</a>. Signalling Descriptor Parameter Table . . . . <a href="#page-10">10</a>
<a href="#section-3.1.6">3.1.6</a>. ATM Interface Registered Address Table. . . . <a href="#page-10">10</a>
<a href="#section-3.1.7">3.1.7</a>. ATM VPI/VCI to Address Mapping Table. . . . . <a href="#page-11">11</a>
<a href="#section-3.1.8">3.1.8</a>. ATM Address to VPI/VCI Mapping Table. . . . . <a href="#page-11">11</a>
<a href="#section-3.1.9">3.1.9</a>. ATM VPL Statistics Table. . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-3.1.10">3.1.10</a>. ATM VPL Logical Port Table. . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.1.11">3.1.11</a>. ATM VCL Statistics Table. . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-3.1.12">3.1.12</a>. ATM VC General Information Table. . . . . . . <a href="#page-15">15</a>
3.1.13. ATM Interface Configuration Extension Table . 16
<a href="#section-3.1.14">3.1.14</a>. ATM ILMI Service Registry Table . . . . . . . <a href="#page-17">17</a>
<a href="#section-3.1.15">3.1.15</a>. ILMI Network Prefix Table . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-3.1.16">3.1.16</a>. ATM Switch Address Table. . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-3.1.17">3.1.17</a>. AAL5 per-VCC Statistics Table . . . . . . . . <a href="#page-19">19</a>
<a href="#section-3.1.18">3.1.18</a>. ATM VP Cross-Connect Extension Table. . . . . <a href="#page-20">20</a>
<a href="#section-3.1.19">3.1.19</a>. ATM VC Cross-Connect Extension Table. . . . . <a href="#page-20">20</a>
<a href="#section-3.1.20">3.1.20</a>. Currently Failing PVPL Table. . . . . . . . . <a href="#page-20">20</a>
<a href="#section-3.1.21">3.1.21</a>. Currently Failing PVCL Table. . . . . . . . . <a href="#page-20">20</a>
<a href="#section-3.1.22">3.1.22</a>. Leaf Initiated Join Counter support . . . . . <a href="#page-20">20</a>
<a href="#section-3.2">3.2</a>. Network and User Addresses. . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-3.3">3.3</a>. Configuration of VPLs, VCLs, and Cross-Connects . . . <a href="#page-20">20</a>
<a href="#section-3.4">3.4</a>. ATM-related Trap Support. . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-4">4</a>. Conformance and Compliance. . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-5">5</a>. Definitions . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-6">6</a>. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . <a href="#page-89">89</a>
<a href="#section-7">7</a>. References. . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-89">89</a>
<a href="#section-7.1">7.1</a>. Normative References. . . . . . . . . . . . . . . . . <a href="#page-89">89</a>
<a href="#section-7.2">7.2</a>. Informative References. . . . . . . . . . . . . . . . <a href="#page-90">90</a>
<a href="#section-8">8</a>. Security Considerations . . . . . . . . . . . . . . . . . . <a href="#page-90">90</a>
<a href="#section-9">9</a>. Intellectual Property Statement . . . . . . . . . . . . . . <a href="#page-92">92</a>
<a href="#section-10">10</a>. Authors' Addresses. . . . . . . . . . . . . . . . . . . . . <a href="#page-93">93</a>
<a href="#section-11">11</a>. Full Copyright Statement. . . . . . . . . . . . . . . . . . <a href="#page-94">94</a>
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
<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>. Overview</span>
The purpose of this memo is to provide additional capabilities, not
found in the ATM-MIB [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>], which are needed to manage ATM
interfaces. This memo addresses the following areas:
- ATM Switch Support
- ATM Service Support
- ATM Host Support
In addition, this memo also provides ATM trap support.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Background</span>
In addition to the MIB module defined in this memo, other MIB modules
are necessary to manage ATM interfaces, links and cross-connects.
Examples include MIB II for general system and interface management
([<a href="./rfc2863" title=""The Interfaces Group MIB"">RFC2863</a>]), the DS3 ([<a href="./rfc2496" title=""Definitions of Managed Objects for the DS3/E3 Interface Type"">RFC2496</a>]) or SONET MIBs ([<a href="./rfc3592" title=""Definitions of Managed Objects for the Synchronous Optical Network/Synchronous Digital Hierarchy (SONET/SDH) Interface Type"">RFC3592</a>]) for
management of SONET and DS3 physical interfaces, and, as appropriate,
MIB modules for applications that make use of ATM, such as SMDS
[<a href="./rfc1694" title=""Definitions of Managed Objects for SMDS Interfaces using SMIv2"">RFC1694</a>] and LAN Emulation [ATM Forum LANE]. These MIB modules are
outside the scope of this specification.
This MIB module also requires the use of the ATM-MIB module defined
in [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>] and ATM-specific textual conventions defined in
[<a href="./rfc2514">RFC2514</a>].
ATM Endpoint applications such as ATM LAN Emulation or Classical IP-
over-ATM Clients and Servers use ATM to establish SVC/PVC connections
for exchanging control and data information. The agents of these ATM
applications must provide the network manager with information on the
SVC/PVCs in use and which applications are using them. The
information can be made generic so as to apply to all ATM
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
applications. This memo defines extensions to the ATM-MIB [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>]
in order to support this.
The current specification of this supplemental ATM2-MIB is based on
SNMPv2 SMI.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Important Definitions</span>
The following terms are defined here and used throughout this MIB:
- Virtual Path Link (VPL)
- Virtual Path Connection (VPC)
- Virtual Path Segment (VP Segment)
- Virtual Channel Link (VCL)
- Virtual Channel Connection (VCC)
- Virtual Channel Segment (VC Segment).
The figures on the next page show how these terms apply in typical
ATM network topologies. Additional terms relevant to this MIB are
defined and illustrated in the ATM Terminology <a href="./rfc2515#section-3">section 3 of
[RFC2515]</a>.
_____ _______ _______ _______ _____
| |____| |____| |____| |____| |
|Host1| |SwitchA| |SwitchB| |SwitchC| |Host2|
| |____| |____| |____| |____| |
|_____| |_______| |_______| |_______| |_____|
|<-->| |<-->|
Virtual Path Link Virtual Path Link
|<----------------------------------------->|
Virtual Path Connection
(between Host1 and Host2)
|<--------------->|
Virtual Path Segment
(between SwitchA and SwitchC)
Figure 1: Examples of Virtual Path Links, Virtual Path
Connection, and Virtual Path Segment
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
_____ _______ _______ _______ _____
| |____| |____| |____| |____| |
|Host1|----|SwitchA|----|SwitchB|----|SwitchC|----|Host2|
| |____| |____| |____| |____| |
|_____| |_______| |_______| |_______| |_____|
|<-->| |<-->|
Virtual Channel Link Virtual Channel Link
|<----------------------------------------->|
Virtual Channel Connection
(between Host1 and Host2)
|<--------------->|
Virtual Channel Segment
(between SwitchA and SwitchC)
Figure 2: Examples of Virtual Channel Links, Virtual
Channel Connection, and Virtual Channel Segment
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Conventions used in the MIB</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Structure</span>
The managed ATM objects are arranged as follows:
Table Host Switch Service
_____________________________________________________
atmSvcVcCrossConnectTable | | Y | Y |
atmSvcVpCrossConnectTable | | Y | Y |
atmSigStatTable | Y | Y | Y |
atmSigSupportTable | | Y | Y |
atmSigDescrParamTable | Y | | |
atmIfRegisteredAddrTable | | Y | Y |
atmVclAddrTable | Y | | |
atmAddrVclTable | Y | | |
atmVplStatTable | Y | Y | Y |
atmVplLogicalPortTable | Y | Y | Y |
atmVclStatTable | Y | Y | Y |
atmAal5VclStatTable | Y | | |
atmVclGenTable | Y | | |
atmInterfaceExtTable | Y | Y | Y |
atmIlmiSrvcRegTable | | Y | Y |
atmIlmiNetworkPrefixTable | | Y | Y |
atmSwitchAddressTable | | Y | |
atmVpCrossConnectXTable | | | Y |
atmVcCrossConnectXTable | | | Y |
atmCurrentlyFailingPVplTable | Y | Y | Y |
atmCurrentlyFailingPVclTable | Y | Y | Y |
Table 1: MIB structure
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. ATM SVC VP Cross-Connect Table</span>
This table provides the SVC VP Cross-Connect (SVPC) information. The
equivalent PVC VP Cross-Connect table is defined in [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>]. This
table also includes cross-connect information for Soft PVPs.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
This table contains configuration and state information of all SVC VP
point-to-point, point-to-multipoint, or multipoint-to-multipoint VP
cross-connects.
This table has read-only access and can be used to monitor the
cross-connects which connect the VPLs together in an ATM switch or
network. The atmSvcVpCrossConnectIndex is used to associate the
related SVC VPLs that are cross-connected together. The
atmSvcVpCrossConnectRowStatus object has read-write access to allow
for tear-down.
The ATM SVC VP Cross-Connect Table models each bi-directional
Switched Virtual Circuit (SVC) VP cross-connect as a set of entries
in the atmSvcVpCrossConnectTable. A point-to-point VPC cross-connect
is modeled as one entry; a point-to-multipoint (N leafs) VPC cross-
connect as N entries in this table; and a multipoint-to-multipoint (N
parties) VPC cross-connect as N(N-1)/2 entries in this table. In the
latter cases, all the N (or N(N-1)/2) entries are associated with a
single VPC cross-connect by having the same value of
atmSvcVpCrossConnectIndex.
_________________________________________
| |
Low | ATM Switch or Network | High
port| | port
_____|>> from low to high VPC traffic flow >>|______
|<< from high to low VPC traffic flow <<|
|_______________________________________|
Figure 3: VPC Cross-Connect Model
The terms low and high are chosen to represent numerical ordering of
the two interfaces associated with a VPC cross-connect. That is, the
ATM interface with the lower value of ifIndex is termed 'low', while
the other ATM interface associated with the VPC cross-connect is
termed 'high'.
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. ATM SVC VC Cross-Connect Table</span>
This table provides the SVC Cross-Connect (SVCC) information. The
equivalent PVC VC Cross-Connect table is defined in [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>]. This
table also includes cross-connect information for Soft PVCs.
This table is used to model a bi-directional point-to-point, point-
to-multipoint or multipoint-to-multipoint SVC VC cross-connect.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
This table has read-only access and is used to monitor the cross-
connects which connect the VCLs together in an ATM switch or network
that belong to a VC connection. The atmSvcVcCrossConnectIndex is
used to associate the related SVC VCLs that are cross-connected
together. The atmSvcVcCrossConnectRowStatus object has read-write
access to allow for tear-down.
The ATM SVC VC Cross-Connect Table models each bi-directional
Switched Virtual Circuit (SVC) VC cross-connect as a set of entries
in the atmSvcVcCrossConnectTable. A point-to-point VC cross-connect
is modeled as one entry; a point-to-multipoint (N leafs) VC cross-
connect as N entries in this table; and a multipoint-to-multipoint (N
parties) VPC cross-connect as N(N-1)/2 entries in this table. In the
latter cases, all the N (or N(N-1)/2) entries are associated with a
single VPC cross-connect by having the same value of
atmSvcVcCrossConnectIndex.
______________________________________
| |
Low | ATM Switch or Network | High
port| | port
_____|>> from low to high VC traffic flow >>|______
|<< from high to low VC traffic flow <<|
|______________________________________|
Figure 4: VC Cross-Connect Model
The terms low and high are chosen to represent numerical ordering of
the two interfaces associated with a VPC cross-connect. That is, the
ATM interface with the lower value of ifIndex is termed 'low', while
the other ATM interface associated with the VPC cross-connect is
termed 'high'.
<span class="h4"><a class="selflink" id="section-3.1.3" href="#section-3.1.3">3.1.3</a>. ATM Interface Signalling Statistics Table</span>
This table provides statistical information of the signalling entity.
A signalling entity can be deployed over an ATM interface as defined
in the atmInterfaceConfTable [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>], a logical ATM interface
defined in <a href="#section-5.1.10.1">section 5.1.10.1</a> in this document, or a proprietary
virtual interface as described in the atmInterfaceExtTable. To
monitor the signalling entity, a few counters are provided. They are
defined as:
atmSigSSCOPConEvents
atmSigSSCOPErrdPdus
atmSigDetectSetupAttempts
atmSigEmitSetupAttempts
atmSigDetectUnavailRoutes
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmSigEmitUnavailRoutes
atmSigDetectUnavailResrcs
atmSigEmitUnavailResrcs
atmSigDetectCldPtyEvents
atmSigEmitCldPtyEvents
atmSigDetectMsgErrors
atmSigEmitMsgErrors
atmSigDetectClgPtyEvents
atmSigEmitClgPtyEvents
atmSigDetectTimerExpireds
atmSigEmitTimerExpireds
atmSigDetectRestarts
atmSigEmitRestarts
atmSigInEstabls
atmSigOutEstabls
<span class="h4"><a class="selflink" id="section-3.1.4" href="#section-3.1.4">3.1.4</a>. ATM Signalling Capability Support</span>
A number of Information Elements may or may not be supported by ATM
switches or ATM Services. Hence, for trouble isolation it is
important to keep track which particular Information Elements are
supported. The corresponding group of objects must be supported by
switches or services supporting SVCs, and indicate whether the
following Information Elements are enabled/disabled:
1) Calling party number
2) Calling party subaddress
3) Called party subaddress
4) Broadband high layer information
5) Broadband low layer information
6) Broadband Repeat Indicator
7) AAL parameters
The last parameter, Preferred Carrier Pre-Subscription, identifies
the carrier to which intercarrier calls originated from this
interface are routed when transit network selection information is
not provided by the calling party.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
<span class="h4"><a class="selflink" id="section-3.1.5" href="#section-3.1.5">3.1.5</a>. Signalling Descriptor Parameter Table</span>
This table extends the ATM VCL table of the ATM-MIB [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>] to
include all other necessary signalling information as specified in
the ATM Forum UNI Specifications [ATM Forum 3.0] and [ATM Forum UNI
3.1]. A user can create an entry with all signalling parameters and
later use that entry to specify the signalling characteristics of
SVCs.
Some of the signalling parameters, such as the AAL5 parameters
information element, are reflected in the VCL and VPL tables, and
this table only contains the remaining AAL5 parameters.
Signalling attributes can be grouped into following categories:
1) ATM Adaptation Layer Parameters
Information in this group is captured in the ATM Signalling
Descriptor Parameter Table defined in this memo. Please refer to
<a href="#section-5.4.5.5">section 5.4.5.5</a> of [ATM Forum 3.0] and [ATM Forum UNI 3.1].
2) Broadband High Layer Information
Information in this group is captured by the ATM Signalling
Descriptor Parameter Table defined in this memo. Please refer to
<a href="#section-5.4.5.8">section 5.4.5.8</a> of [ATM Forum 3.0] and [ATM Forum UNI 3.1].
3) Broadband Low Layer Information
Information in this group is captured by the ATM Signalling
Descriptor Parameter Table defined in this memo. Please refer to
<a href="#section-5.4.5.9">section 5.4.5.9</a> of [ATM Forum 3.0] and [ATM Forum UNI 3.1].
<span class="h4"><a class="selflink" id="section-3.1.6" href="#section-3.1.6">3.1.6</a>. ATM Interface Registered Address Table</span>
This table contains a list of ATM addresses that can be used for
calls to and from a given interface by a switch or service. The ATM
addresses are either registered by the endsystem via ILMI or
statically configured. This table does not expose PNNI reachability
information. This table only applies to switches and network
services. See also <a href="#section-5.2">Section 5.2</a>.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
<span class="h4"><a class="selflink" id="section-3.1.7" href="#section-3.1.7">3.1.7</a>. ATM VPI/VCI to Address Mapping Table</span>
In the atmVclAddrTable, the object atmVclAddrAddr can either be an
ATM Local Address or an ATM Remote Address which represent the two
endpoint addresses of a VCL. ATM Local Address identifies the local
endpoint of the VCL represented by this agent. The ATM Remote
address represents the address of the ATM application at the other
end of the VCL.
<span class="h4"><a class="selflink" id="section-3.1.8" href="#section-3.1.8">3.1.8</a>. ATM Address to VPI/VCI Mapping Table</span>
This table provides an alternative way to retrieve the atmVclTable.
This table can be used to retrieve the indexing to the atmVclTable by
an ATM address.
<span class="h4"><a class="selflink" id="section-3.1.9" href="#section-3.1.9">3.1.9</a>. ATM VPL Statistics Table</span>
The atmVplStatTable includes per-VPL cell counters. The VPL cell
counters count the valid ATM cells. The valid ATM cells include the
user and OAM cells but exclude the physical layer (e.g., idle cells)
and unassigned cells. Cells coming into an ATM managed system are
counted differently with the high Cell Loss Priority (CLP=0) or low
Cell Loss Priority (CLP=1). The cells are tagged, passed or
discarded depending on the incoming CLP value and the policed cell
rate by the "traffic policing" entity in the ATM managed system.
Refer to [ATM Forum 3.0] and [ATM Forum UNI 3.1] for a description of
the traffic policing.
In the switch where the traffic policing is not supported, cells are
passed or discarded depending on the bandwidth and buffering capacity
of the switching fabric. The Output Tagged Cells counter, in this
case, is always zero.
_______________
| ATM Managed |
Input | System | Output
CLP=0 cells| | CLP=0 cells
---------->| |----------->
CLP=1 cells| (traffic | CLP=1 cells
---------->| policing |----------->
| entity) | Tagged cells (CLP=1)
|_____________|----------->
|Discard | Discard
|CLP=0 | CLP=1
|cells | cells
| |
V V
Figure 5: ATM Cell Counters per VPL
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
In this table, cells coming into and out of the managed ATM system
are counted as the total number of cells and the cells with the
CLP=0. The CLP=1 counter is derived by subtracting CLP=0 cells from
the total cells. In addition, cells that are tagged on the output
are also counted. The output CLP=1 cells equals the total cells out
count minus both the CLP=0 cells and the tagged cells.
<span class="h4"><a class="selflink" id="section-3.1.10" href="#section-3.1.10">3.1.10</a>. ATM VPL Logical Port Table</span>
The ATM VPL Logical Port Table includes all ATM logical port
interface configuration information.
<span class="h5"><a class="selflink" id="section-3.1.10.1" href="#section-3.1.10.1">3.1.10.1</a>. ATM Logical Port Interface</span>
The interface type "ATM Logical Port" (ifType=80) is defined to allow
the representation of a VP Tunnel, which is a VPL used as a trunk
connection (most likely between devices that are not physically
adjacent), providing for multiplexing and demultiplexing of VCs on
the VP. Figure 6 illustrates such a VP Tunnel.
Note: the "ATM Logical Port" interface is more of a logical port,
compared with an interface of type "ATM" which is more of a physical
port that provides for the transport of many VP and VC connections
between adjacent devices.
<------VP Tunnel------>
ATM Switch A ATM Switch B
------------ -----------
|ATM |_____________|ATM |
|X-Connect | . |X-Connect |
VCL1 |Point | VPL1 . VPL2 |Point | VCL4
O---------|----X-----|----- . -----|----X-----|-----O
| X-----|----- . -----|----X |
| | |_____________| | |
------------ ------------
| VCL2 | VCL3
O O
Figure 6: Virtual Path Tunnel
In Figure 6, a VP tunnel (denoted as VPL1 by Switch A, and as VPL2 by
Switch B) is used to connect VCL1 with VCL4 and VCL2 with VCL3.
Figure 6 shows only one VP tunnel, but there can be multiple VP
tunnels over the same physical interface.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
A particularly useful VP tunnel scenario is tunneling across a public
network that does not support signalling. In Figure 6 above, assume
Switches A and B are private switches that signal over the VP to set
up connections transparently through the public network. The public
network would just transport a PVC VP between the two switches.
Because the VP Tunnel constitutes an interface between two ATM
devices that are not necessarily physically adjacent, most of the
management information pertaining to the interface may differ for the
tunnel, including:
- active VPI/VCI fields (the tunnel may be a subset of the parent
interface).
- maximum number of VCCs
- configured VCCs
- ILMI VPI/VCI values
- ATM address type
- ATM administrative address
- received/transmitted cells.
<span class="h5"><a class="selflink" id="section-3.1.10.2" href="#section-3.1.10.2">3.1.10.2</a>. How to create an ATM Logical Port interface</span>
On ATM devices supporting VP tunnels, the ATM Logical Port
Interface Table can be used to create VP tunnels. To create an
ATM Logical Port interface via SNMP:
- Create a VPL (e.g., VPI=a on an existing ATM interface
which has ifIndex=x) in the atmVplTable.
- Set the object atmVplLogicalPortDef to isLogicalIf.
A new row in the ifTable is then created by the agent,
with ifIndex=y, to represent the ATM Logical Port
interface. The object atmVplLogicalPortIndex is also
set to y by the agent to represent the ifIndex value of
the ATM Logical Port interface.
- The ifEntry values are set for the ATM Logical
Port interface (ifIndex=y) as discussed in <a href="./rfc2515">RFC</a>
<a href="./rfc2515">2515</a>, with the following exceptions:
* ifType - a new enumerated value of atmLogical(80)
was added to IANAifType, specifying an "ATM
Logical Port" interface.
* ifSpeed - The total bandwidth in bits per
second for use by the ATM layer. Computed
from the traffic descriptor for the VPL.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
* ifOperStatus - determined hierarchically,
depending on the state of the physical
atm-cell layer interface beneath it,
and the ILMI on the VP.
* ifInOctets, ifOutOctets - support of
these objects is not mandatory for ATM
Logical Port interfaces.
* ifInErrors - always zero, HEC errors are
specified for the atm cell-layer interface
beneath it.
* ifInUnknownProtos - always zero, errors
are specified for the atm cell-layer
interface beneath it.
- The atmInterfaceConfEntry values are set and reported
as discussed in [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>], with the following exceptions:
* atmInterfaceMaxVpcs - 0.
* atmInterfaceConfVpcs - 0.
* atmInterfaceIlmiVpi - VPI of the VP tunnel.
- The atmInterfaceExtEntry values are set and reported
as follows:
* atmInterfaceConfMaxSvpcVpi - VPI of the VP tunnel,
although VPCs cannot be setup on a VP tunnel.
* atmInterfaceCurrentMaxSvpcVpi - VPI of VP tunnel,
although VPCs cannot be setup on a VP tunnel.
* atmInterfaceConfMaxSvccVpi - VPI of the VP tunnel.
* atmInterfaceCurrentMaxSvccVpi - VPI of VP tunnel.
* atmIntfPvcFailures - Includes failures of PVCLs
within the VP tunnel, but not of the PVPL itself,
since those are reported on the atm(37) interface.
* atmIntfCurrentlyFailingPVpls - 0.
* atmIntfPvcFailuresTrapEnable - Enables traps for
PVCL failures within the VP tunnel, but not for
the PVPL itself, since the latter are generated on
behalf of the atm(37) interface.
- An entry is created in the ifStackTable, with
values: ifStackHigherLayer=y, ifStackLowerLayer=x.
- VCLs defined on the VP tunnel are indexed by
ifIndex=y, VPI=a, VCI.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
<span class="h4"><a class="selflink" id="section-3.1.11" href="#section-3.1.11">3.1.11</a>. ATM VCL Statistics Table</span>
The atmVclStatTable includes per-VCL cell counters. The VCL cell
counters count the valid ATM cells. The valid ATM cells include
the user and OAM cells but exclude the physical layer (e.g., idle
cells) and unassigned cells. Cells coming into an ATM managed
system are counted differently with the high Cell Loss Priority
(CLP=0) or low Cell Loss Priority (CLP=1). The cells are tagged,
passed or discarded depending on the incoming CLP value and the
policed cell rate by the "traffic policing" entity in the ATM
managed system. Refer to [ATM Forum 3.0] and [ATM Forum UNI 3.1]
for the description of the traffic policing.
In a switch where the traffic policing is not supported, cells are
passed or discarded depending on the bandwidth and buffering
capacity of the switching fabric. The Output Tagged Cells
counter, in this case, is always zero.
_______________
| ATM Managed |
Input | System | Output
CLP=0 cells| | CLP=0 cells
---------->| |----------->
CLP=1 cells| (traffic | CLP=1 cells
---------->| policing |----------->
| entity) | Tagged cells (CLP=1)
|_____________|----------->
|Discard | Discard
|CLP=0 | CLP=1
|cells | cells
| |
V V
Figure 7: ATM Cell Counters per VCL
In this table, cells coming into and out of the managed ATM system
are counted as the total number of cells and the cells with the
CLP=0. The CLP=1 counter is derived by subtracting CLP=0 cells from
the total cells. In addition, cells that are tagged on the output
are also counted. The output CLP=1 cells equals the total cells out
count minus both the CLP=0 cells and the tagged cells.
<span class="h4"><a class="selflink" id="section-3.1.12" href="#section-3.1.12">3.1.12</a>. ATM VC General Information Table</span>
This table contains the general information for each VC. It provides
an index to the atmSigDescrParamTable defined in this MIB. This
table is an extension to the atmVclTable defined in the ATM-MIB
[<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>].
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
<span class="h4"><a class="selflink" id="section-3.1.13" href="#section-3.1.13">3.1.13</a>. ATM Interface Configuration Extension Table</span>
The ATM Interface Configuration Extension Table contains ATM
interface information that supplements the atmInterfaceConfTable
defined in [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>]. It includes the configuration information of
the interface type (i.e., connection setup procedures) and ILMI.
A network manager can configure the interface to run a specific type
of connection setup procedures (i.e., protocol and version) such as
ITU-T DSS2, ATM Forum UNI 3.1, PNNI 1.0 or BICI 2.0. It can also
dictate the role of the managed entity as one side of the interface.
For example, if an interface is configured to run ATM Forum UNI 3.1,
the managed entity has to be told to run as either the network side
or the user side of the UNI.
The objects atmIntfConfigType and atmIntfConfigSide are used for
configuration and the objects atmIntfActualType and atmIntfActualSide
are used for reading back the actual interface protocol and version.
The following table describes all the valid combinations of
configuration of the interface type and side. Note that the value
N/A meaning not applicable, should be set to the value other(1) when
used.
atmIntfConfigType atmIntfConfigSide
----------------- -----------------
autoConfig N/A
ituDss2 user/network
atmfUni3Dot0 user/network
atmfUni3Dot1 user/network
atmfUni4Dot0 user/network
atmfIispUni3Dot0 user/network
atmfIispUni3Dot1 user/network
atmfIispUni4Dot0 user/network
atmfPnni1Dot0 N/A
atmfBici2Dot0 N/A
atmfUniPvcOnly user/network
atmfNniPvcOnly N/A
When the value of the object atmIntfConfigType is configured to
autoConfig(2), the interface type is determined via the ATM Forum
ILMI auto-configuration procedures [ATM Forum ILMI]. There is no
need to set the interface side since it should be a derived value.
The PNNI and BICI interfaces are always symmetric so setting the
interface side is also not necessary.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
This table also includes the configured and negotiated maximum VPI
value per ATM interface, and the configured and negotiated minimum
VCI value per ATM interface. Refer to [ATM Forum ILMI] Sections
8.2.3.8 through 8.2.3.10 for a detailed description.
The following figure provides an example how the current minimum VCI
values are derived from the configured minimum VCI values and the
neighboring minimum VCI values:
+--------+ +--------+ +--------+
| ATM | ifA ifB | ATM | ifC ifD | ATM |
| Device |--------------| Device |--------------| Device |
+--------+ +--------+ +--------+
ifA: Configured Min SVCC VCI = 32 (configured)
Current Min SVCC VCI = 40 (negotiated)
ifB: Configured Min SVCC VCI = 40 (configured)
Current Min SVCC VCI = 40 (negotiated)
ifC: Configured Min SVCC VCI = 32 (configured)
Current Min SVCC VCI = 32 (negotiated)
ifD: Configured Min SVCC VCI = 32 (configured)
Current Min SVCC VCI = 32 (negotiated)
Between ifA and ifB, the maximum of the two vales for
atmInterfaceConfMinSvccVci is 40, so both interfaces set their
atmInterfaceCurrentMinSvccVci values to 40. On the other hand, since
ifC and ifD both are configured with atmInterfaceConfMinSvccVci
values of 32, they set their atmInterfaceCurrentMinSvccVci values to
32.
Figure 8: Examples of configured vs. negotiated ILMI values
<span class="h4"><a class="selflink" id="section-3.1.14" href="#section-3.1.14">3.1.14</a>. ATM ILMI Service Registry Table</span>
This table contains information used by the switch/service to inform
ATM hosts of the location of ATM network services such as the LAN
Emulation Configuration Server (LECS), the ATM Name Server (ANS), the
ATMARP Server, the Multicast Address Resolution Server (MARS), and
the NHRP Server (NHS). Entries in this table are exported to
adjacent devices via ILMI over either all or a few user selected ATM
interfaces.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
As an example, let's assume that:
- An ATM switch X has three interfaces if1, if2 and if3.
- There are two ATM network services offered, a1.a2...aN and
b1.b2...bN, where a1.a2...aN is an object identifier used to
identify the first service, and b1.b2...bN is the object
identifier for the other service.
- The first service is available at the ATM address 'a'.
- The second service is available at the ATM address 'b'.
- The first service can be used by any device connecting to the
switch X.
- The second service can be used only by devices that connect to
interfaces if1 and if3 on switch X.
+------------------+ +------------------+
|service a1.a2...aN| |service b1.b2...bN|
| | | |
| ATM address = a | | ATM address = b |
+--------+---------+ +--------+---------+
| |
| |
+--------+-----------------------+---------+
| ATM NETWORK |
+-----------------+------------------------+
|
|
+-------------+
| switch X |
+-+----+----+-+
| | |
| | |
if1 if2 if3 (interfaces)
Figure 9: ATM topology with registered services
The table for switch X will contain three entries:
- one entry for the "a1.a2...aN", implicitly available to any
devices on switch X.
- two entries for the "b1.b2...bN" (one for each interface
where this service can be explicitly used).
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
The content of the table is:
- Service Identifier: a1.a2...aN b1.b2...bN b1.b2...bN
- ATM address: a b b
- Arbitrary index: m n p
- Available interface: 0 1 3
where the Service Identifier values a1.a2...aN and b1.b2...bN are
represented by atmIlmiSrvcRegServiceID, the ATM addresses a and b are
represented by atmIlmiSrvcRegATMAddress, the values m, n, and p are
arbitrary non-zero integer parameters (necessary in this example to
differentiate the two entries for b1.b2...bN that are both available
at the ATM address 'b') represented by atmIlmiSrvcRegAddressIndex,
and the available interfaces are represented by atmIlmiSrvcRegIndex,
where the special value 0 indicates any ATM interface.
When querying the ILMI service registry table, through the ILMI
protocol:
- the device attached to interface if1 will obtain the address a and
b.
- the device attached to interface if2 will obtain the address a
only.
- the device attached to interface if3 will obtain the address a and
b.
<span class="h4"><a class="selflink" id="section-3.1.15" href="#section-3.1.15">3.1.15</a>. ILMI Network Prefix Table</span>
A table specifying per-interface network prefix(es) supplied by the
network side of the UNI during ILMI address registration. When no
network prefixes are specified for a particular interface, one or
more network prefixes based on the switch address(es) may be used for
ILMI address registration.
<span class="h4"><a class="selflink" id="section-3.1.16" href="#section-3.1.16">3.1.16</a>. ATM Switch Address Table</span>
This table contains one or more ATM endsystem addresses on a per-
switch basis. These addresses are used to identify the switch. When
no ILMI network prefixes are configured for certain interfaces,
network prefixes based on the switch address(es) may be used for ILMI
address registration.
<span class="h4"><a class="selflink" id="section-3.1.17" href="#section-3.1.17">3.1.17</a>. AAL5 per-VCC Statistics Table</span>
This table contains the AAL5 statistics for the VCCs.
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
<span class="h4"><a class="selflink" id="section-3.1.18" href="#section-3.1.18">3.1.18</a>. ATM VP Cross-Connect Extension Table</span>
This table extends the atmVpCrossConnectTable defined in ATM-MIB
[<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>].
<span class="h4"><a class="selflink" id="section-3.1.19" href="#section-3.1.19">3.1.19</a>. ATM VC Cross-Connect Extension Table</span>
This table extends the atmVcCrossConnectTable defined in ATM-MIB
[<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>].
<span class="h4"><a class="selflink" id="section-3.1.20" href="#section-3.1.20">3.1.20</a>. Currently Failing PVPL Table</span>
This table contains all the PVPLs that are in trouble.
<span class="h4"><a class="selflink" id="section-3.1.21" href="#section-3.1.21">3.1.21</a>. Currently Failing PVCL Table</span>
This table contains all the PVCLs that are in trouble.
<span class="h4"><a class="selflink" id="section-3.1.22" href="#section-3.1.22">3.1.22</a>. Leaf Initiated Join Counter support</span>
Two counter objects are added to count the number of leaf intiated
setup requests and setup failures.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Network and User Addresses</span>
At the user side of a given ATM UNI interface there may be an
address, "ifPhysAddress", to identify the interface. In addition,
there may be several other addresses which can be used to originate
and receive calls. These other addresses that are used to receive
calls are listed in the "ifRcvAddrTable" defined in <a href="./rfc2863">RFC 2863</a>. The
registered addresses on the network side are listed in the ATM
Registered Address Table. The ATM Registered Address Table is
supported by switches and network services. It is not supported by
hosts.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Configuration of VPLs, VCLs, and Cross-Connects</span>
The ATM Managed Objects needed to support the configuration of VPLs,
VCLs, and Cross-Connects of the Permanent VPLs and VCLs are defined
in the ATM-MIB [<a href="./rfc2515" title=""Definitions of Managed Objects for ATM Management"">RFC2515</a>]. Cross-Connects of the Switched VPLs and
VCLs are defined in this memo.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. ATM-related Trap Support</span>
Traps are defined to detect changes in the status of permanent VPLs
and VCLs. The current up/down status of each permanent VPL or VCL is
indicated by the atmVplOperStatus or atmVclOperStatus object,
respectively. Several tables and objects and one trap are defined in
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
order to help network managers quickly and efficiently detect changes
in the status of permanent virtual links. Through use of these
tables, objects, and traps, the time consuming and resource intensive
task of continuously polling each row in the entire atmVplTable and
atmVclTable can be avoided.
The atmIntfPvcFailures counter and the atmIntfCurrentlyFailingPVpls
and atmIntfCurrentlyFailingPVcls gauges provide a quick means of
determining the status of all PVPLs and PVCLs on an interface. The
atmCurrentlyFailingPVplTable and the atmCurrentlyFailingPVclTable
list all of the problematic PVPLs and PVCLs, respectively, allowing
them to be quickly identified.
The atmIntfPvcFailuresTrap is generated just after a PVPL or PVCL on
a particular interface leaves the 'up' operational state. Managers
can then determine which PVPLs and/or PVCLs are failing by reading
the atmCurrentlyFailingPVplTable and the
atmCurrentlyFailingPVclTable. Generation of the
atmIntfPvcFailuresTrap is rate limited by suppressing all traps that
would occur within atmIntfPvcNotificationInterval of a previous trap
for the same interface. Managers should continuously poll the tables
and objects mentioned above for at least this amount of time in order
to keep up with the state of the network.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Conformance and Compliance</span>
See the conformance and compliance statements within the information
module.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Definitions</span>
ATM2-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Gauge32, Counter32, Integer32
FROM SNMPv2-SMI
TruthValue, RowStatus, TimeStamp
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InterfaceIndex, InterfaceIndexOrZero, ifIndex
FROM IF-MIB
atmMIBObjects, atmInterfaceConfEntry,
atmVplEntry, atmVplVpi,
atmVclEntry, atmVclVpi, atmVclVci,
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmVpCrossConnectEntry, atmVcCrossConnectEntry
FROM ATM-MIB
AtmAddr, AtmSigDescrParamIndex,
AtmInterfaceType, AtmIlmiNetworkPrefix,
AtmVcIdentifier, AtmVpIdentifier,
AtmTrafficDescrParamIndex
FROM ATM-TC-MIB;
atm2MIB MODULE-IDENTITY
LAST-UPDATED "200309230000Z"
ORGANIZATION "IETF AToMMIB Working Group"
CONTACT-INFO
"AToMMIB WG
<a href="http://www.ietf.org/html.charters/atommib-charter.html">http://www.ietf.org/html.charters/atommib-charter.html</a>
Editors:
Faye Ly
Postal: Pedestal Networks
6503 Dumbarton Circle
Fremont, CA 94555
USA
Tel: +1 510 896 2908
E-Mail: faye@pedestalnetworks.com
Michael Noto
Postal: Cisco Systems
170 W. Tasman Drive
San Jose, CA 95134-1706
USA
E-mail: mnoto@cisco.com
Andrew Smith
Postal: Consultant
E-Mail: ah_smith@acm.org
Ethan Mickey Spiegel
Postal: Cisco Systems
170 W. Tasman Drive
San Jose, CA 95134-1706
USA
Tel: +1 408 526 6408
Fax: +1 408 526 6488
E-Mail: mspiegel@cisco.com
Kaj Tesink
Postal: Telcordia Technologies
331 Newman Springs Road
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
Red Bank, NJ 07701
USA
Tel: +1 732 758 5254
E-mail: kaj@research.telcordia.com"
DESCRIPTION
"Copyright (C) The Internet Society (2003). This version of
this MIB module is part of <a href="./rfc3606">RFC 3606</a>; see the RFC itself for
full legal notices.
This MIB Module is a supplement to the ATM-MIB
defined in <a href="./rfc2515">RFC 2515</a>."
REVISION "200309230000Z"
DESCRIPTION
"Initial version of this MIB, published as <a href="./rfc3606">RFC 3606</a>."
::= { atmMIBObjects 14 }
atm2MIBObjects OBJECT IDENTIFIER ::= {atm2MIB 1}
atm2MIBTraps OBJECT IDENTIFIER ::= {atm2MIB 2}
-- This ATM2-MIB Module consists of the following tables,
-- plus ATM trap support:
-- 1. atmSvcVpCrossConnectTable
-- 2. atmSvcVcCrossConnectTable
-- 3. atmSigStatTable
-- 4. atmSigSupportTable
-- 5. atmSigDescrParamTable
-- 6. atmIfRegisteredAddrTable
-- 7. atmVclAddrTable
-- 8. atmAddrVclTable
-- 9. atmVplStatTable
-- 10. atmVplLogicalPortTable
-- 11. atmVclStatTable
-- 12. atmAal5VclStatTable
-- 13. atmVclGenTable
-- 14. atmInterfaceExtTable
-- 15. atmIlmiSrvcRegTable
-- 16. atmIlmiNetworkPrefixTable
-- 17. atmSwitchAddressTable
-- 18. atmVpCrossConnectXTable
-- 19. atmVcCrossConnectXTable
-- 20. atmCurrentlyFailingPVplTable
-- 21. atmCurrentlyFailingPVclTable
-- 1. ATM VPL SVC Cross-Connect Table
atmSvcVpCrossConnectTable OBJECT-TYPE
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
SYNTAX SEQUENCE OF
AtmSvcVpCrossConnectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ATM SVPC Cross-Connect table. A
bi-directional VP cross-connect between two
switched VPLs is modeled as one entry in this
table. A Soft PVPC cross-connect, between a
soft permanent VPL and a switched VPL, is
also modeled as one entry in this table."
::= { atm2MIBObjects 1 }
atmSvcVpCrossConnectEntry OBJECT-TYPE
SYNTAX AtmSvcVpCrossConnectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the ATM SVPC Cross-Connect table.
This entry is used to model a bi-directional
ATM VP cross-connect between two VPLs."
INDEX { atmSvcVpCrossConnectIndex,
atmSvcVpCrossConnectLowIfIndex,
atmSvcVpCrossConnectLowVpi,
atmSvcVpCrossConnectHighIfIndex,
atmSvcVpCrossConnectHighVpi }
::= { atmSvcVpCrossConnectTable 1 }
AtmSvcVpCrossConnectEntry ::= SEQUENCE {
atmSvcVpCrossConnectIndex INTEGER,
atmSvcVpCrossConnectLowIfIndex InterfaceIndex,
atmSvcVpCrossConnectLowVpi AtmVpIdentifier,
atmSvcVpCrossConnectHighIfIndex InterfaceIndex,
atmSvcVpCrossConnectHighVpi AtmVpIdentifier,
atmSvcVpCrossConnectCreationTime TimeStamp,
atmSvcVpCrossConnectRowStatus RowStatus
}
atmSvcVpCrossConnectIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value to identify this SVPC
cross-connect. For each VP associated
with this cross-connect, the agent reports
this cross-connect index value in the
atmVplCrossConnectIdentifer attribute of the
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
corresponding atmVplTable entries."
::= { atmSvcVpCrossConnectEntry 1 }
atmSvcVpCrossConnectLowIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is equal to the
ifIndex value of the ATM interface port for this
SVPC cross-connect. The term low implies
that this ATM interface has the numerically lower
ifIndex value than the other ATM interface
identified in the same atmSvcVpCrossConnectEntry."
::= { atmSvcVpCrossConnectEntry 2 }
atmSvcVpCrossConnectLowVpi OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is equal to the VPI
value associated with the SVPC cross-connect
at the ATM interface that is identified by
atmSvcVpCrossConnectLowIfIndex. The VPI value
cannot exceed the number supported by the
atmInterfaceCurrentMaxSvpcVpi at the low ATM interface
port."
::= { atmSvcVpCrossConnectEntry 3 }
atmSvcVpCrossConnectHighIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is equal to the
ifIndex value of the ATM interface port for
this SVC VP cross-connect. The term high
implies that this ATM interface has the
numerically higher ifIndex value than the
other ATM interface identified in the same
atmSvcVpCrossConnectEntry."
::= { atmSvcVpCrossConnectEntry 4 }
atmSvcVpCrossConnectHighVpi OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS not-accessible
STATUS current
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
DESCRIPTION
"The value of this object is equal to the VPI
value associated with the SVPC cross-connect
at the ATM interface that is identified by
atmSvcVpCrossConnectHighIfIndex. The VPI value
cannot exceed the number supported by the
atmInterfaceCurrentMaxSvpcVpi at the high ATM interface
port."
::= { atmSvcVpCrossConnectEntry 5 }
atmSvcVpCrossConnectCreationTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the sysUpTime object
at the time this bi-directional SVPC
cross-connect was created. If the current
state was entered prior to the last
re-initialization of the agent, then this
object contains a zero value."
::= { atmSvcVpCrossConnectEntry 6 }
atmSvcVpCrossConnectRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to delete rows in the
atmSvcVpCrossConnectTable."
::= { atmSvcVpCrossConnectEntry 7 }
-- 2. ATM VCL SVC Cross-Connect Table
atmSvcVcCrossConnectTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmSvcVcCrossConnectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ATM SVCC Cross-Connect table. A
bi-directional VC cross-connect between two
switched VCLs is modeled as one entry in
this table. A Soft PVCC cross-connect,
between a soft permanent VCL and a switched
VCL, is also modeled as one entry in this
table."
::= { atm2MIBObjects 2 }
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmSvcVcCrossConnectEntry OBJECT-TYPE
SYNTAX AtmSvcVcCrossConnectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the ATM SVCC Cross-Connect table.
This entry is used to model a bi-directional ATM
VC cross-connect between two VCLs."
INDEX { atmSvcVcCrossConnectIndex,
atmSvcVcCrossConnectLowIfIndex,
atmSvcVcCrossConnectLowVpi,
atmSvcVcCrossConnectLowVci,
atmSvcVcCrossConnectHighIfIndex,
atmSvcVcCrossConnectHighVpi,
atmSvcVcCrossConnectHighVci }
::= { atmSvcVcCrossConnectTable 1 }
AtmSvcVcCrossConnectEntry ::= SEQUENCE {
atmSvcVcCrossConnectIndex INTEGER,
atmSvcVcCrossConnectLowIfIndex InterfaceIndex,
atmSvcVcCrossConnectLowVpi AtmVpIdentifier,
atmSvcVcCrossConnectLowVci AtmVcIdentifier,
atmSvcVcCrossConnectHighIfIndex InterfaceIndex,
atmSvcVcCrossConnectHighVpi AtmVpIdentifier,
atmSvcVcCrossConnectHighVci AtmVcIdentifier,
atmSvcVcCrossConnectCreationTime TimeStamp,
atmSvcVcCrossConnectRowStatus RowStatus
}
atmSvcVcCrossConnectIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value to identify this SVCC cross-connect.
For each VP associated with this cross-connect, the
agent reports this cross-connect index value in the
atmVclCrossConnectIdentifier attribute of the
corresponding atmVplTable entries."
::= { atmSvcVcCrossConnectEntry 1 }
atmSvcVcCrossConnectLowIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is equal to the
ifIndex value of the ATM interface port for this
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
SVCC cross-connect. The term low implies that
this ATM interface has the numerically lower
ifIndex value than the other ATM interface
identified in the same atmSvcVcCrossConnectEntry."
::= { atmSvcVcCrossConnectEntry 2 }
atmSvcVcCrossConnectLowVpi OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is equal to the VPI
value associated with the SVCC cross-connect
at the ATM interface that is identified by
atmSvcVcCrossConnectLowIfIndex. The VPI value
cannot exceed the number supported by the
atmInterfaceCurrentMaxSvccVpi at the low ATM interface
port."
::= { atmSvcVcCrossConnectEntry 3 }
atmSvcVcCrossConnectLowVci OBJECT-TYPE
SYNTAX AtmVcIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is equal to the VCI
value associated with the SVCC cross-connect
at the ATM interface that is identified by
atmSvcVcCrossConnectLowIfIndex. The VCI value
cannot exceed the number supported by the
atmInterfaceCurrentMaxSvccVci at the low ATM interface
port."
::= { atmSvcVcCrossConnectEntry 4 }
atmSvcVcCrossConnectHighIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is equal to the
ifIndex value for the ATM interface port for
this SVCC cross-connect. The term high implies
that this ATM interface has the numerically
higher ifIndex value than the other ATM interface
identified in the same atmSvcVcCrossConnectEntry."
::= { atmSvcVcCrossConnectEntry 5 }
atmSvcVcCrossConnectHighVpi OBJECT-TYPE
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
SYNTAX AtmVpIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is equal to the VPI
value associated with the SVCC cross-connect
at the ATM interface that is identified by
atmSvcVcCrossConnectHighIfIndex. The VPI value
cannot exceed the number supported by the
atmInterfaceCurrentMaxSvccVpi at the high ATM interface
port."
::= { atmSvcVcCrossConnectEntry 6 }
atmSvcVcCrossConnectHighVci OBJECT-TYPE
SYNTAX AtmVcIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is equal to the VCI
value associated with the SVCC cross-connect
at the ATM interface that is identified by
atmSvcVcCrossConnectHighIfIndex. The VCI value
cannot exceed the number supported by the
atmInterfaceMaxVciBits at the high ATM interface
port."
::= { atmSvcVcCrossConnectEntry 7 }
atmSvcVcCrossConnectCreationTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the sysUpTime object
at the time this bi-directional SVCC
cross-connect was created. If the current
state was entered prior to the last
re-initialization of the agent, then this
object contains a zero value."
::= { atmSvcVcCrossConnectEntry 8 }
atmSvcVcCrossConnectRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to delete rows in the
atmSvcVcCrossConnectTable."
::= { atmSvcVcCrossConnectEntry 9 }
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
-- 3. ATM Interface Signalling Statistics Table --
atmSigStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmSigStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains ATM interface signalling
statistics, one entry per ATM signalling
interface."
::= { atm2MIBObjects 3 }
atmSigStatEntry OBJECT-TYPE
SYNTAX AtmSigStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This list contains signalling statistics variables."
INDEX { ifIndex }
::= { atmSigStatTable 1}
AtmSigStatEntry ::= SEQUENCE {
atmSigSSCOPConEvents Counter32,
atmSigSSCOPErrdPdus Counter32,
atmSigDetectSetupAttempts Counter32,
atmSigEmitSetupAttempts Counter32,
atmSigDetectUnavailRoutes Counter32,
atmSigEmitUnavailRoutes Counter32,
atmSigDetectUnavailResrcs Counter32,
atmSigEmitUnavailResrcs Counter32,
atmSigDetectCldPtyEvents Counter32,
atmSigEmitCldPtyEvents Counter32,
atmSigDetectMsgErrors Counter32,
atmSigEmitMsgErrors Counter32,
atmSigDetectClgPtyEvents Counter32,
atmSigEmitClgPtyEvents Counter32,
atmSigDetectTimerExpireds Counter32,
atmSigEmitTimerExpireds Counter32,
atmSigDetectRestarts Counter32,
atmSigEmitRestarts Counter32,
atmSigInEstabls Counter32,
atmSigOutEstabls Counter32
}
atmSigSSCOPConEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
DESCRIPTION
"SSCOP Connection Events Counter. This counter counts
the sum of the following errors:
1) SSCOP Connection Disconnect Counter
The abnormal occurrence of this event is
characterized by the expiry of Timer_NO_RESPONSE.
(This event is communicated to the layer management
with MAA-ERROR code P. See ITU-T Q.2110.)
2) SSCOP Connection Initiation Failure
This condition indicates the inability to establish
an SSCOP connection. This event occurs whenever the
number of expiries of the connection control timer
(Timer_CC) equals or exceeds the MaxCC, or upon
receipt of a connection reject message BGREJ PDU.
(This event is communicated to layer management with
MAA-ERROR code O. See ITU-T Q.2110.)
3) SSCOP Connection Re-Establ/Resynch
This event occurs upon receipt of a BGN PDU or
RS PDU."
REFERENCE
"ITU-T Recommendation Q.2110, Broadband
Integrated Services Digital Network
(B-ISDN) - ATM Adaptation Layer - Service
Specific Connection Oriented Protocol (SSCOP)
Specification, July 1994."
::= { atmSigStatEntry 1}
atmSigSSCOPErrdPdus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SSCOP Errored PDUs Counter. This counter counts the
sum of the following errors:
1) Invalid PDUs.
These are defined in SSCOP and consist of PDUs
with an incorrect length (MAA-ERROR code U), an
undefined PDU type code, or that are not 32-bit
aligned.
2) PDUs that result in MAA-ERROR codes and are
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
discarded.
See MAA-ERROR codes A-D, F-M, and Q-T defined in
ITU-T Q.2110."
REFERENCE
"ITU-T Recommendation Q.2110, Broadband
Integrated Services Digital Network
(B-ISDN) - ATM Adaptation Layer - Service
Specific Connection Oriented Protocol (SSCOP)
Specification, July 1994."
::= { atmSigStatEntry 2 }
atmSigDetectSetupAttempts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Call Setup Attempts Counter. This counter counts
the number of call setup attempts (both successful
and unsuccessful) detected on this interface."
::= { atmSigStatEntry 3 }
atmSigEmitSetupAttempts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Call Setup Attempts Counter. This counter counts
the number of call setup attempts (both successful
and unsuccessful) transmitted on this interface."
::= { atmSigStatEntry 4 }
atmSigDetectUnavailRoutes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Route Unavailability detected on this interface.
This counter is incremented when a RELEASE, RELEASE COMPLETE
(only when not preceded by a RELEASE message for the same
call), ADD PARTY REJECT, or STATUS message that
contains one of the following cause code values is
received (Note: These cause values
apply to both UNI3.0 and UNI3.1):
Cause Value Meaning
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
1 unallocated (unassigned) number
2 no route to specified transit network
3 no route to destination
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { atmSigStatEntry 5 }
atmSigEmitUnavailRoutes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Route Unavailability transmitted from this
interface. This counter is incremented when a RELEASE,
RELEASE COMPLETE (only when not preceded by a RELEASE
message for the same call), ADD PARTY REJECT, or
STATUS message that contains one of the following cause
code values is transmitted (Note: These cause values apply
to both UNI3.0 and UNI3.1):
Cause Value Meaning
1 unallocated (unassigned) number
2 no route to specified transit network
3 no route to destination
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { atmSigStatEntry 6 }
atmSigDetectUnavailResrcs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Resource Unavailability detected on this
interface. This counter is incremented when a RELEASE,
RELEASE COMPLETE (only when not preceded by a RELEASE
message for the same call), ADD PARTY REJECT, or
STATUS message that contains one of the following
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
cause code values is received (Note: These cause
values apply to both UNI3.0 and UNI3.1 unless
otherwise stated):
Cause Value Meaning
35 requested VPCI/VCI not available
37 user cell rate not available (UNI3.1
only)
38 network out of order
41 temporary failure
45 no VPCI/VCI available
47 resource unavailable, unspecified
49 Quality of Service unavailable
51 user cell rate not available (UNI3.0
only)
58 bearer capability not presently
available
63 Service or option not available,
unspecified
92 too many pending add party requests
NOTE: For this counter, RELEASE COMPLETE
messages that are a reply to a previous RELEASE
message and contain the same cause value, are
redundant (for counting purposes) and should not
be counted."
::= { atmSigStatEntry 7 }
atmSigEmitUnavailResrcs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Resource Unavailability transmitted from this
interface. This counter is incremented when a RELEASE,
RELEASE COMPLETE (only when not preceded by a RELEASE message
for the same call), ADD PARTY REJECT, or STATUS message that
contains one of the following cause code values is transmitted
(Note: These cause values apply to both UNI3.0 and UNI3.1
unless otherwise stated):
Cause Value Meaning
35 requested VPCI/VCI not available
37 user cell rate not available (UNI3.1
only)
38 network out of order
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
41 temporary failure
45 no VPCI/VCI available
47 resource unavailable, unspecified
49 Quality of Service unavailable
51 user cell rate not available (UNI3.0
only)
58 bearer capability not presently
available
63 Service or option not available,
unspecified
92 too many pending add party requests
NOTE: For this counter, RELEASE COMPLETE messages that are a
reply to a previous RELEASE message and contain the same cause
value, are redundant (for counting purposes) and should not be
counted."
::= { atmSigStatEntry 8 }
atmSigDetectCldPtyEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Called Party Responsible For Unsuccessful Call
detected on this interface. This counter is incremented when a
RELEASE, RELEASE COMPLETE (only when not preceded by a RELEASE
message for the same call), ADD PARTY REJECT, or STATUS message
that contains one of the following cause code values is
received (Note: These cause values apply to both UNI3.0 and
UNI3.1):
Cause Value Meaning
17 user busy
18 no user responding
21 call rejected
22 number changed
23 user rejects all calls with calling
line identification restriction (CLIR)
27 destination out of order
31 normal, unspecified
88 incompatible destination
NOTE: For this counter, RELEASE COMPLETE messages that are a
reply to a previous RELEASE message and contain the same cause
value, are redundant (for counting purposes) and should not be
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
counted.
Note: Cause Value #30 'response to STATUS ENQUIRY' was not
included in this memo since it did not apply to a hard
failure."
::= { atmSigStatEntry 9 }
atmSigEmitCldPtyEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Called Party Responsible For Unsuccessful Call
transmitted from this interface. This counter is incremented
when a RELEASE, RELEASE COMPLETE (only when not preceded by a
RELEASE message for the same call), ADD PARTY REJECT, or STATUS
message that contains one of the following cause code values is
transmitted (Note: These cause values apply to both UNI3.0 and
UNI3.1):
Cause Value Meaning
17 user busy
18 no user responding
21 call rejected
22 number changed
23 user rejects all calls with calling
line identification restriction (CLIR)
27 destination out of order
31 normal, unspecified
88 incompatible destination
NOTE: For this counter, RELEASE COMPLETE messages that are a
reply to a previous RELEASE message and contain the same cause
value, are redundant (for counting purposes) and should not be
counted.
Note: Cause Value #30 'response to STATUS ENQUIRY' was not
included in this memo since it did not apply to a hard failure."
::= { atmSigStatEntry 10 }
atmSigDetectMsgErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
DESCRIPTION
"Number of Incorrect Messages detected on this interface. The
Incorrect Messages Counter reflects any sort of incorrect
information in a message. This includes:
- RELEASE, RELEASE COMPLETE, ADD PARTY REJECT,
and STATUS messages transmitted, that contain any of
the Cause values listed below.
- Ignored messages. These messages are dropped
because the message was so damaged that it could
not be further processed. A list of dropped
messages is compiled below:
1. Message with invalid protocol discriminator
2. Message with errors in the call reference I.E.
- Bits 5-8 of the first octet not equal to
'0000'
- Bits 1-4 of the first octet indicating a
length other than 3 octets
- RELEASE COMPLETE message received with a
call reference that does not relate to a
call active or in progress
- SETUP message received with call reference
flag incorrectly set to 1
- SETUP message received with a call
reference for a call that is already
active or in progress.
3. Message too short
The following cause values are monitored by this counter (Note:
These cause values apply to both UNI3.0 and UNI3.1 unless
otherwise stated):
Cause Value Meaning
10 VPCI/VCI unacceptable (UNI3.0 only)
36 VPCI/VCI assignment failure (UNI3.1 only)
81 invalid call reference value
82 identified channel does not exist
89 invalid endpoint reference
96 mandatory information element is missing
97 message type non-existent or not
implemented
99 information element non-existent or not
implemented
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
100 invalid information element contents
101 message not compatible with call state
104 incorrect message length
111 protocol error, unspecified
NOTE: For this counter, RELEASE COMPLETE messages that are
a reply to a previous RELEASE message and contain the same
cause value, are redundant (for counting purposes) and
should not be counted."
::= { atmSigStatEntry 11 }
atmSigEmitMsgErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Incorrect Messages transmitted on this interface.
The Incorrect Messages Counter reflects any sort of incorrect
information in a message. This includes:
- RELEASE, RELEASE COMPLETE, ADD PARTY REJECT,
and STATUS messages transmitted or
received, that contain any of the Cause values
listed below.
- Ignored messages. These messages are dropped
because the message was so damaged that it could
not be further processed. A list of dropped
messages is compiled below:
1. Message with invalid protocol discriminator
2. Message with errors in the call reference I.E.
- Bits 5-8 of the first octet not equal to
'0000'
- Bits 1-4 of the first octet indicating a
length other than 3 octets
- RELEASE COMPLETE message received with a
call reference that does not relate to a
call active or in progress
- SETUP message received with call reference
flag incorrectly set to 1
- SETUP message received with a call
reference for a call that is already
active or in progress.
3. Message too short
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
The following cause values are monitored by this counter
(Note: These cause values apply to both UNI3.0 and UNI3.1
unless otherwise stated):
Cause Value Meaning
10 VPCI/VCI unacceptable (UNI3.0 only)
36 VPCI/VCI assignment failure (UNI3.1 only)
81 invalid call reference value
82 identified channel does not exist
89 invalid endpoint reference
96 mandatory information element is missing
97 message type non-existent or not
implemented
99 information element non-existent or not
implemented
100 invalid information element contents
101 message not compatible with call state
104 incorrect message length
111 protocol error, unspecified
NOTE: For this counter, RELEASE COMPLETE messages that are
a reply to a previous RELEASE message and contain the same
cause value, are redundant (for counting purposes) and
should not be counted."
::= { atmSigStatEntry 12 }
atmSigDetectClgPtyEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Calling Party Events detected on this interface.
This counter monitors error events that occur due to the
originating user doing something wrong. This counter is
incremented when a RELEASE, RELEASE COMPLETE (only when not
preceded by a RELEASE message for the same call), ADD PARTY
REJECT, or STATUS message that contains one of the following
cause code values is received (Note: These cause values
apply to both UNI3.0 and UNI3.1):
Cause Value Meaning
28 invalid number format (address incomplete)
43 access information discarded
57 bearer capability not authorized
65 bearer capability not implemented
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
73 unsupported combination of traffic
parameters
78 AAL parameters cannot be supported (UNI3.1
only)
91 invalid transit network selection
93 AAL parameters cannot be supported (UNI3.0
only)
NOTE: For this counter, RELEASE COMPLETE messages that
are a reply to a previous RELEASE message and contain
the same cause value, are redundant (for counting purposes)
and should not be counted."
::= { atmSigStatEntry 13 }
atmSigEmitClgPtyEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Calling Party Events transmitted from this interface.
This counter monitors error events that occur due to the
originating user doing something wrong. This counter is
incremented when a RELEASE, RELEASE COMPLETE (only when not
preceded by a RELEASE message for the same call), ADD PARTY
REJECT, or STATUS message that contains one of the following
cause code values is transmitted (Note: These cause values
apply to both UNI3.0 and UNI3.1):
Cause Value Meaning
28 invalid number format (address incomplete)
43 access information discarded
57 bearer capability not authorized
65 bearer capability not implemented
73 unsupported combination of traffic
parameters
78 AAL parameters cannot be supported (UNI3.1
only)
91 invalid transit network selection
93 AAL parameters cannot be supported (UNI3.0
only)
NOTE: For this counter, RELEASE COMPLETE messages that are
a reply to a previous RELEASE message and contain the same
cause value, are redundant (for counting purposes) and
should not be counted."
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
::= { atmSigStatEntry 14 }
atmSigDetectTimerExpireds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Timer Expiries detected on this interface. The Timer
Expiries Counter provides a count of network timer expiries, and
to some extent, host or switch timer expiries. The conditions
for incrementing this counter are:
- Expiry of any network timer
- Receipt of a RELEASE or RELEASE COMPLETE
message with Cause #102, 'recovery on
timer expiry'.
NOTE: For this counter, RELEASE COMPLETE messages that are
a reply to a previous RELEASE message and contain the same
cause value, are redundant (for counting purposes) and
should not be counted."
::= { atmSigStatEntry 15 }
atmSigEmitTimerExpireds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Timer Expiries transmitted from this interface.
The Timer Expiries Counter provides a count of network timer
expiries, and to some extent, host or switch timer expiries.
The conditions for incrementing this counter are:
- Expiry of any network timer
- Receipt of a RELEASE or RELEASE COMPLETE
message with Cause #102, 'recovery on
timer expiry'.
NOTE: For this counter, RELEASE COMPLETE messages that are a
reply to a previous RELEASE message and contain the same cause
value, are redundant (for counting purposes) and should not be
counted."
::= { atmSigStatEntry 16 }
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmSigDetectRestarts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Restart Activity errors detected on this interface.
The Restart Activity Counter provides a count of host, switch,
or network restart activity. This counter is incremented when
receiving a RESTART message."
::= { atmSigStatEntry 17 }
atmSigEmitRestarts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Restart Activity errors transmitted from this
interface. The Restart Activity Counter provides a count of
host, switch, or network restart activity. This counter is
incremented when transmitting a RESTART message."
::= { atmSigStatEntry 18 }
atmSigInEstabls OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of SVCs established at this signalling entity for
incoming connections."
::= { atmSigStatEntry 19 }
atmSigOutEstabls OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of SVCs established at this signalling entity for
outgoing connections."
::= { atmSigStatEntry 20 }
-- 4. ATM Interface Signalling Support Table
--
-- This table provides information to support
-- the signalling process which is used to establish
-- ATM Switched Virtual Connections (SVCs).
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmSigSupportTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmSigSupportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains ATM local interface configuration
parameters, one entry per ATM signalling interface."
::= { atm2MIBObjects 4 }
atmSigSupportEntry OBJECT-TYPE
SYNTAX AtmSigSupportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This list contains signalling configuration parameters
and state variables."
INDEX { ifIndex }
::= { atmSigSupportTable 1}
AtmSigSupportEntry ::= SEQUENCE {
atmSigSupportClgPtyNumDel INTEGER,
atmSigSupportClgPtySubAddr INTEGER,
atmSigSupportCldPtySubAddr INTEGER,
atmSigSupportHiLyrInfo INTEGER,
atmSigSupportLoLyrInfo INTEGER,
atmSigSupportBlliRepeatInd INTEGER,
atmSigSupportAALInfo INTEGER,
atmSigSupportPrefCarrier OCTET STRING
}
atmSigSupportClgPtyNumDel OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the Calling Party Number
Information Element is transferred to the called party
address. The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { atmSigSupportEntry 1 }
atmSigSupportClgPtySubAddr OBJECT-TYPE
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept and transfer the Calling
Party Subaddress Information Element from the calling party to
the called party. Calling party subaddress information shall
only be transferred to the called party if calling party number
delivery is enabled (i.e., atmSigSupportClgPtyNumDel =
'enabled(1)'. The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { atmSigSupportEntry 2 }
atmSigSupportCldPtySubAddr OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and deliver
the Called Party Subaddress Information Element from the calling
party to the called party. The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { atmSigSupportEntry 3 }
atmSigSupportHiLyrInfo OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and deliver
the Broadband High Layer Information Element from the calling
party to the called party. The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { atmSigSupportEntry 4 }
atmSigSupportLoLyrInfo OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and deliver
the Broadband Low Layer Information Element from the calling
party to the called party. The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { atmSigSupportEntry 5 }
atmSigSupportBlliRepeatInd OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to accept, transfer, and deliver
the Broadband Repeat Indicator with two or three instances of
the Broadband Low Layer Information Element for low layer
information selection from the calling party to the called
party. This object's value should always be disabled(2) if
the value of atmSigSupportLolyrInfo is disabled(2).
The value of this object can be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { atmSigSupportEntry 6 }
atmSigSupportAALInfo OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
"This object indicates whether to accept, transfer, and deliver
the ATM Adaptation Layer Parameters Information Element from the
calling party to the called party. The value of this object can
be:
- enabled(1) This Information Element is transferred
to the called party
- disabled(2) This Information Element is NOT
transferred to the called party."
::= { atmSigSupportEntry 7 }
atmSigSupportPrefCarrier OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0|4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter identifies the carrier to which intercarrier
calls originated from this interface are routed when transit
network selection information is not provided by the calling
party. If a Carrier Identification Code (CIC) is used the
parameter shall contain the CIC. For three-digit CICs, the first
octet shall be '0' and the CIC is contained in the three
following octets. If the preferred carrier feature is not
supported the value is a zero-length string."
::= { atmSigSupportEntry 8 }
-- 5. ATM Signalling Descriptor Parameter Table
atmSigDescrParamTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmSigDescrParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains signalling capabilities of VCLs except the
Traffic Descriptor. Traffic descriptors are described in
the atmTrafficDescrParamTable."
REFERENCE
"ATM User-Network Interface Specification, Version 3.1 (UNI
3.1), September 1994, <a href="#section-5.4.5">Section 5.4.5</a> Variable Length
Information Elements."
::= { atm2MIBObjects 5 }
atmSigDescrParamEntry OBJECT-TYPE
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
SYNTAX AtmSigDescrParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a
set of signalling capabilities that can
be applied to a VCL. There is no requirement
for unique entries, except that the index must
be unique."
INDEX { atmSigDescrParamIndex }
::= { atmSigDescrParamTable 1 }
AtmSigDescrParamEntry ::=
SEQUENCE {
atmSigDescrParamIndex
AtmSigDescrParamIndex,
atmSigDescrParamAalType INTEGER,
atmSigDescrParamAalSscsType INTEGER,
atmSigDescrParamBhliType INTEGER,
atmSigDescrParamBhliInfo OCTET STRING,
atmSigDescrParamBbcConnConf INTEGER,
atmSigDescrParamBlliLayer2 INTEGER,
atmSigDescrParamBlliLayer3 INTEGER,
atmSigDescrParamBlliPktSize INTEGER,
atmSigDescrParamBlliSnapId INTEGER,
atmSigDescrParamBlliOuiPid OCTET STRING,
atmSigDescrParamRowStatus RowStatus
}
atmSigDescrParamIndex OBJECT-TYPE
SYNTAX AtmSigDescrParamIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object is used by the
atmVclGenSigDescrIndex object in the atmVclGenTable to
identify a row in this table."
::= { atmSigDescrParamEntry 1 }
atmSigDescrParamAalType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- not defined
aal1(2), -- AAL type 1
aal34(3), -- AAL type 3/4
aal5(4), -- AAL type 5
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
userDefined(5), -- User-Defined AAL
aal2(6) -- AAL type 2
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The AAL type. The value of this object is set to other(1)
when not defined."
DEFVAL { other }
::= { atmSigDescrParamEntry 2 }
atmSigDescrParamAalSscsType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- other, or not used
assured(2), -- Data SSCS based on SSCOP
-- assured operation
nonassured(3), -- Data SSCS based on SSCOP
-- non-assured operation
frameRelay(4), -- frame relay SSCS
null(5) -- null
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SSCS type used by this entry."
DEFVAL { other }
::= { atmSigDescrParamEntry 3 }
atmSigDescrParamBhliType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- not defined
iso(2), -- ISO
user(3), -- User specific
hiProfile(4), -- Higher layer profile
-- this enum applicable to
-- UNI 3.0 only
vendorSpecific(5) -- Vender specific
-- application identifier
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Broadband high layer type."
DEFVAL { other }
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
::= { atmSigDescrParamEntry 4 }
atmSigDescrParamBhliInfo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..8))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Broadband high layer information. When
atmSigDescrParamBhliType is set to iso(2), the value of this
object is a zero length string. When
atmSigDescrParamBhliType is set to user(3), the value of
this object is an octet string with length ranging from 0 to
8. When atmSigDescrParamBhliType is set to hiProfile(4),
the value of this object is a length of 4 octet string
containing user to user profile identifier. When
atmSigDescrParamBhliType is set to vendorSpecific(5), the
value of this object is a length of 7 octet string, where
the most significant 3 octets consist of a globally-
administered OUI, and the least significant 4 octets are the
vender administered application OUI."
DEFVAL { ''H }
::= { atmSigDescrParamEntry 5 }
atmSigDescrParamBbcConnConf OBJECT-TYPE
SYNTAX INTEGER {
ptp(1), -- point-to-point
ptmp(2) -- point-to-multipoint
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Broadband bearer capability user plane connection
configuration parameter."
DEFVAL { ptp }
::= { atmSigDescrParamEntry 6 }
atmSigDescrParamBlliLayer2 OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- not specified
iso1745(2), -- Basic mode ISO 1745
q921(3), -- CCITT Recommendation Q.921
x25linklayer(4), -- CCITT Recommendation X.25
-- Link Layer
x25multilink(5), -- CCITT Recommendation X.25
-- Multilink
lapb(6), -- Extended LAPB; for half
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
-- duplex operation
hdlcArm(7), -- HDLC ARM (ISO 4335)
hdlcNrm(8), -- HDLC NRM (ISO 4335)
hdlcAbm(9), -- HDLC ABM (ISO 4335)
iso88022(10), -- LAN logical link control
-- (ISO 8802/2)
x75slp(11), -- CCITT Recommendation X.75,
-- single link
-- procedure (SLP)
q922(12), -- CCITT Recommendation Q.922
userDef(13), -- User specified
iso7776(14) -- ISO 7776 DTE-DTE operation
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Broadband low layer information, protocol type of layer
2. The value of this object is other(1) if layer 2 protocol
is not used."
DEFVAL { other }
::= { atmSigDescrParamEntry 7 }
atmSigDescrParamBlliLayer3 OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- not specified
x25pkt(2), -- CCITT Recommendation X.25
-- packet layer
isoiec8208(3), -- ISO/IEC 8208 (X.25 packet
-- level protocol for data
-- terminal equipment)
x223iso8878(4), -- X.223/ISO 8878
isoiec8473(5), -- ISO/IEC 8473 OSI
-- connectionless
-- mode protocol
t70(6), -- CCITT Recommendation T.70
-- minimum
-- network layer
tr9577(7), -- ISO/IEC TR 9577 Protocol
-- Identification in the
-- network layer
userDef(8) -- user specified
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Broadband low layer information, protocol type of layer
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
3. The value of this object is other(1) if layer 3 protocol
is not used."
DEFVAL { other }
::= { atmSigDescrParamEntry 8 }
atmSigDescrParamBlliPktSize OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- not used
s16(2), -- 16 octets
s32(3), -- 32 octets
s64(4), -- 64 octets
s128(5), -- 128 octets
s256(6), -- 256 octets
s512(7), -- 512 octets
s1024(8), -- 1028 octets
s2048(9), -- 2048 octets
s4096(10) -- 4096 octets
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The default packet size defined in B-LLI."
DEFVAL { other }
::= { atmSigDescrParamEntry 9 }
atmSigDescrParamBlliSnapId OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- not used
true(2), -- SNAP ID is 1
false(3) -- SNAP ID is 0
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SNAP ID used for Broadband low layer protocol layer 3.
The value of this object is other(1) if
atmSigDescrParamBlliLayer3 is set to other(1)."
DEFVAL { other }
::= { atmSigDescrParamEntry 10 }
atmSigDescrParamBlliOuiPid OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0|5))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
"The OUI/PID encoding for Broadband low layer protocol layer
3. The value of this object is a zero length string if
atmSigDescrParamBlliLayer3 is set to other(1). When used,
it is always 5 octets with the most significant octet as the
OUI Octet 1 and the least significant octet as the PID Octet
2."
DEFVAL { ''H }
::= { atmSigDescrParamEntry 11 }
atmSigDescrParamRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the
atmSigDescrParamTable."
::= { atmSigDescrParamEntry 12 }
-- 6. ATM Interface Registered Address Table --
atmIfRegisteredAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmIfRegisteredAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of ATM addresses that can be used for
calls to and from a given interface by a switch or service. The
ATM addresses are either registered by the endsystem via ILMI or
statically configured. This table does not expose PNNI
reachability information. ILMI registered addresses cannot be
deleted using this table. This table only applies to switches
and network services."
::= { atm2MIBObjects 6 }
atmIfRegisteredAddrEntry OBJECT-TYPE
SYNTAX AtmIfRegisteredAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the ATM Interface Registered Address table."
INDEX { ifIndex, atmIfRegAddrAddress }
::= { atmIfRegisteredAddrTable 1}
AtmIfRegisteredAddrEntry ::= SEQUENCE {
atmIfRegAddrAddress AtmAddr,
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmIfRegAddrAddressSource INTEGER,
atmIfRegAddrOrgScope INTEGER,
atmIfRegAddrRowStatus RowStatus
}
atmIfRegAddrAddress OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An address registered for a given switch or service interface."
::= { atmIfRegisteredAddrEntry 1}
atmIfRegAddrAddressSource OBJECT-TYPE
SYNTAX INTEGER {
other(1),
static(2),
dynamic(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of address source for a given ATM Address. The value
dynamic(3) is indicated when ILMI is used."
::= { atmIfRegisteredAddrEntry 2}
atmIfRegAddrOrgScope OBJECT-TYPE
SYNTAX INTEGER {
localNetwork(1),
localNetworkPlusOne(2),
localNetworkPlusTwo(3),
siteMinusOne(4),
intraSite(5),
sitePlusOne(6),
organizationMinusOne(7),
intraOrganization(8),
organizationPlusOne(9),
communityMinusOne(10),
intraCommunity(11),
communityPlusOne(12),
regional(13),
interRegional(14),
global(15)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
"This object indicates the organizational scope for
the referenced address. The information of the
referenced address shall not be distributed outside
the indicated scope. Refer to Annex 5.3 of ATM
Forum UNI Signalling 4.0 for guidelines regarding
the use of organizational scopes.
This value cannot be configured for ILMI-registered
addresses.
The default values for organizational scope are
localNetwork(1) for ATM group addresses, and
global(15) for individual addresses."
::= { atmIfRegisteredAddrEntry 3}
atmIfRegAddrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the
atmIfRegisteredAddrTable. Rows created dynamically (e.g., ILMI-
registered addresses) cannot be deleted using this object."
::= { atmIfRegisteredAddrEntry 4}
-- 7. ATM VPI/VCI to Address Mapping Table
atmVclAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmVclAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides a mapping between the atmVclTable and
the ATM called party/calling party address. This table can
be used to retrieve the calling party and called party ATM
address pair for a given VCL. Note that there can be more
than one pair of calling party and called party ATM
addresses for a VCL in a point to multi-point call."
::= { atm2MIBObjects 7 }
atmVclAddrEntry OBJECT-TYPE
SYNTAX AtmVclAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a binding between a VCL
and an ATM address associated with this call. This ATM
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
address can be either the called party address or the
calling party address. There can be more than one pair of
calling/called party ATM addresses associated with the VCL
entry for point to multi-point calls. Objects
atmVclAddrType, and atmVclAddrRowStatus are
required during row creation."
INDEX { ifIndex, atmVclVpi, atmVclVci,
atmVclAddrAddr }
::= { atmVclAddrTable 1 }
AtmVclAddrEntry ::=
SEQUENCE {
atmVclAddrAddr AtmAddr,
atmVclAddrType INTEGER,
atmVclAddrRowStatus RowStatus
}
atmVclAddrAddr OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An ATM address on one end of the VCL. For SVCs, the agent
supplies the value of this object at creation time. For PVC
VCL, the manager can supply the value of this object during
or after the PVC VCL creation."
::= { atmVclAddrEntry 1 }
atmVclAddrType OBJECT-TYPE
SYNTAX INTEGER {
callingParty(1),
calledParty(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of ATM Address represented by the object
atmVclAddrAddr. Choices are either the calling party ATM
address or the called party ATM address."
::= { atmVclAddrEntry 2 }
atmVclAddrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create or destroy an
entry from this table. Note that the manager entity
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
can only destroy the PVC VCLs."
::= { atmVclAddrEntry 3 }
-- 8. ATM Address to VPI/VCI Mapping Table
--
-- This table provides an alternative way to access
-- a row in the atmVclAddrTable by using
-- an ATM address as an index, instead of
-- the ifIndex
atmAddrVclTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmAddrVclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides an alternative way to retrieve the
atmVclTable. This table can be used to retrieve the
indexing to the atmVclTable by an ATM address."
::= { atm2MIBObjects 8 }
atmAddrVclEntry OBJECT-TYPE
SYNTAX AtmAddrVclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents an entry in the
atmVclTable of the ATM-MIB by its ATM address. The ATM
address is either the calling or called party ATM address
of the call. Entries in this table are read only.
They show up when entries are created in the
atmVclAddrTable."
REFERENCE
"Tesink, K., Editor, Definitions of Managed Objects
for ATM Management, <a href="./rfc2515">RFC 2515</a>, Bell Communications
Research, February, 1999."
INDEX { atmVclAddrAddr, atmAddrVclAtmIfIndex,
atmAddrVclVpi, atmAddrVclVci }
::= { atmAddrVclTable 1 }
AtmAddrVclEntry ::=
SEQUENCE {
atmAddrVclAtmIfIndex InterfaceIndex,
atmAddrVclVpi AtmVpIdentifier,
atmAddrVclVci AtmVcIdentifier,
atmAddrVclAddrType INTEGER
}
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmAddrVclAtmIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface index of the ATM interface to which this
VCL pertains. This object combined with the
atmAddrVclVpi and atmAddrVclVci objects serves as an
index to the atmVclTable."
::= { atmAddrVclEntry 1 }
atmAddrVclVpi OBJECT-TYPE
SYNTAX AtmVpIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VPI value of the VCL. This object combined with the
atmAddrVclAtmIfIndex and atmAddrVclVci objects serves as
an index to the atmVclTable."
::= { atmAddrVclEntry 2 }
atmAddrVclVci OBJECT-TYPE
SYNTAX AtmVcIdentifier
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VCI value of the VCL. This object combined with the
atmAddrVclAtmIfIndex and atmAddrVclVpi objects serves as
an index to the atmVclTable."
::= { atmAddrVclEntry 3 }
atmAddrVclAddrType OBJECT-TYPE
SYNTAX INTEGER {
callingParty(1),
calledParty(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of ATM Address represented by the object
atmVclAddrAddr. Choices are either calling party address
or called party address."
::= { atmAddrVclEntry 4 }
-- 9. ATM VPL Statistics Table
atmVplStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmVplStatEntry
MAX-ACCESS not-accessible
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
STATUS current
DESCRIPTION
"This table contains all statistics counters per VPL. It is
used to monitor the usage of the VPL in terms of incoming
cells and outgoing cells."
::= { atm2MIBObjects 9 }
atmVplStatEntry OBJECT-TYPE
SYNTAX AtmVplStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a VPL."
INDEX { ifIndex, atmVplVpi }
::= { atmVplStatTable 1 }
AtmVplStatEntry ::=
SEQUENCE {
atmVplStatTotalCellIns Counter32,
atmVplStatClp0CellIns Counter32,
atmVplStatTotalDiscards Counter32,
atmVplStatClp0Discards Counter32,
atmVplStatTotalCellOuts Counter32,
atmVplStatClp0CellOuts Counter32,
atmVplStatClp0Tagged Counter32
}
atmVplStatTotalCellIns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells received by this VPL
including both CLP=0 and CLP=1 cells. The cells are
counted prior to the application of the traffic policing."
::= { atmVplStatEntry 1 }
atmVplStatClp0CellIns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of valid ATM cells received by this VPL with
CLP=0. The cells are counted prior to the application of
the traffic policing."
::= { atmVplStatEntry 2 }
atmVplStatTotalDiscards OBJECT-TYPE
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells discarded by the
traffic policing entity. This includes cells originally
received with CLP=0 and CLP=1."
::= { atmVplStatEntry 3 }
atmVplStatClp0Discards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells received with CLP=0 and
discarded by the traffic policing entity."
::= { atmVplStatEntry 4 }
atmVplStatTotalCellOuts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells transmitted by this
VPL. This includes both CLP=0 and CLP=1 cells."
::= { atmVplStatEntry 5 }
atmVplStatClp0CellOuts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells transmitted with CLP=0
by this VPL."
::= { atmVplStatEntry 6 }
atmVplStatClp0Tagged OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells tagged by the traffic
policing entity from CLP=0 to CLP=1."
::= { atmVplStatEntry 7 }
-- 10. ATM Logical Port Configuration Table
atmVplLogicalPortTable OBJECT-TYPE
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
SYNTAX SEQUENCE OF AtmVplLogicalPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates whether the VPL is an ATM Logical Port interface
(ifType=80)."
::= { atm2MIBObjects 10 }
atmVplLogicalPortEntry OBJECT-TYPE
SYNTAX AtmVplLogicalPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry with information about the ATM Logical Port
interface."
AUGMENTS { atmVplEntry }
::= { atmVplLogicalPortTable 1 }
AtmVplLogicalPortEntry ::=
SEQUENCE {
atmVplLogicalPortDef INTEGER,
atmVplLogicalPortIndex InterfaceIndexOrZero
}
atmVplLogicalPortDef OBJECT-TYPE
SYNTAX INTEGER {
notLogicalIf(1),
isLogicalIf(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates whether the VPC at this VPL interface is an ATM
Logical Port interface."
DEFVAL { notLogicalIf }
::= { atmVplLogicalPortEntry 1 }
atmVplLogicalPortIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifTable index of the ATM logical port interface
associated with this VPL. The distinguished value of zero
indicates that the agent has not (yet) assigned such an
ifTable Index. The zero value must be assigned by the agent
if the value of atmVplLogicalPortDef is set to notLogicalIf,
or if the VPL row is not active."
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
::= { atmVplLogicalPortEntry 2 }
-- 11. ATM VCL Statistics Table
atmVclStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmVclStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all statistics counters per VCL. It is
used to monitor the usage of the VCL in terms of incoming
cells and outgoing cells."
::= { atm2MIBObjects 11 }
atmVclStatEntry OBJECT-TYPE
SYNTAX AtmVclStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a VCL."
INDEX { ifIndex, atmVclVpi, atmVclVci }
::= { atmVclStatTable 1 }
AtmVclStatEntry ::=
SEQUENCE {
atmVclStatTotalCellIns Counter32,
atmVclStatClp0CellIns Counter32,
atmVclStatTotalDiscards Counter32,
atmVclStatClp0Discards Counter32,
atmVclStatTotalCellOuts Counter32,
atmVclStatClp0CellOuts Counter32,
atmVclStatClp0Tagged Counter32
}
atmVclStatTotalCellIns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells received by this VCL
including both CLP=0 and CLP=1 cells. The cells are counted
prior to the application of the traffic policing."
::= { atmVclStatEntry 1 }
atmVclStatClp0CellIns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
DESCRIPTION
"The number of valid ATM cells received by this VCL with
CLP=0. The cells are counted prior to the application of
the traffic policing."
::= { atmVclStatEntry 2 }
atmVclStatTotalDiscards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells discarded by the
traffic policing entity. This includes cells originally
received with CLP=0 and CLP=1."
::= { atmVclStatEntry 3 }
atmVclStatClp0Discards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells received with CLP=0
and discarded by the traffic policing entity."
::= { atmVclStatEntry 4 }
atmVclStatTotalCellOuts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells transmitted by this
VCL. This includes both CLP=0 and CLP=1 cells."
::= { atmVclStatEntry 5 }
atmVclStatClp0CellOuts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid ATM cells transmitted with CLP=0
by this VCL."
::= { atmVclStatEntry 6 }
atmVclStatClp0Tagged OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
"The total number of valid ATM cells tagged by the traffic
policing entity from CLP=0 to CLP=1."
::= { atmVclStatEntry 7 }
-- 12. ATM AAL5 per-VCC Statistics Table
atmAal5VclStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmAal5VclStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides a collection of objects providing AAL5
configuration and performance statistics of a VCL."
::= { atm2MIBObjects 12 }
atmAal5VclStatEntry OBJECT-TYPE
SYNTAX AtmAal5VclStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents an AAL5 VCL, and
is indexed by ifIndex values of AAL5 interfaces and
the associated VPI/VCI values."
INDEX { ifIndex, atmVclVpi, atmVclVci }
::= { atmAal5VclStatTable 1 }
AtmAal5VclStatEntry ::=
SEQUENCE {
atmAal5VclInPkts Counter32,
atmAal5VclOutPkts Counter32,
atmAal5VclInOctets Counter32,
atmAal5VclOutOctets Counter32
}
atmAal5VclInPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of AAL5 CPCS PDUs received on the AAL5 VCC at
the interface identified by the ifIndex."
::= { atmAal5VclStatEntry 1 }
atmAal5VclOutPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
"The number of AAL5 CPCS PDUs transmitted on the AAL5 VCC
at the interface identified by the ifIndex."
::= { atmAal5VclStatEntry 2 }
atmAal5VclInOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets contained in AAL5 CPCS PDUs received
on the AAL5 VCC at the interface identified by the ifIndex."
::= { atmAal5VclStatEntry 3 }
atmAal5VclOutOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets contained in AAL5 CPCS PDUs
transmitted on the AAL5 VCC at the interface identified by
the ifIndex."
::= { atmAal5VclStatEntry 4 }
-- 13. ATM VC General Information Table
atmVclGenTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmVclGenEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"General Information for each VC."
::= { atm2MIBObjects 13 }
atmVclGenEntry OBJECT-TYPE
SYNTAX AtmVclGenEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry with general information about the ATM VC."
AUGMENTS { atmVclEntry }
::= { atmVclGenTable 1 }
AtmVclGenEntry ::=
SEQUENCE {
atmVclGenSigDescrIndex AtmSigDescrParamIndex
}
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmVclGenSigDescrIndex OBJECT-TYPE
SYNTAX AtmSigDescrParamIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of this object identifies the row in the ATM
Signalling Descriptor Parameter Table which applies to this
VCL."
::= { atmVclGenEntry 1 }
-- 14. ATM Interface Configuration Extension Table
atmInterfaceExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmInterfaceExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains ATM interface configuration and monitoring
information not defined in the atmInterfaceConfTable from the
ATM-MIB. This includes the type of connection setup procedures,
ILMI information, and information on the VPI/VCI range."
REFERENCE
"Tesink, K., Editor, Definitions of Managed Objects
for ATM Management, <a href="./rfc2515">RFC 2515</a>, Bell Communications
Research, February, 1999."
::= { atm2MIBObjects 14 }
atmInterfaceExtEntry OBJECT-TYPE
SYNTAX AtmInterfaceExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry extends the atmInterfaceConfEntry defined in the ATM-
MIB. Each entry corresponds to an ATM interface."
REFERENCE
"Tesink, K., Editor, Definitions of Managed Objects
for ATM Management, <a href="./rfc2515">RFC 2515</a>, Bell Communications
Research, February, 1999."
AUGMENTS { atmInterfaceConfEntry }
::= { atmInterfaceExtTable 1 }
AtmInterfaceExtEntry ::= SEQUENCE {
atmIntfConfigType AtmInterfaceType,
atmIntfActualType AtmInterfaceType,
atmIntfConfigSide INTEGER,
atmIntfActualSide INTEGER,
atmIntfIlmiAdminStatus BITS,
atmIntfIlmiOperStatus BITS,
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmIntfIlmiFsmState INTEGER,
atmIntfIlmiEstablishConPollIntvl Integer32,
atmIntfIlmiCheckConPollIntvl Integer32,
atmIntfIlmiConPollInactFactor Integer32,
atmIntfIlmiPublicPrivateIndctr INTEGER,
atmInterfaceConfMaxSvpcVpi INTEGER,
atmInterfaceCurrentMaxSvpcVpi INTEGER,
atmInterfaceConfMaxSvccVpi INTEGER,
atmInterfaceCurrentMaxSvccVpi INTEGER,
atmInterfaceConfMinSvccVci INTEGER,
atmInterfaceCurrentMinSvccVci INTEGER,
atmIntfSigVccRxTrafficDescrIndex
AtmTrafficDescrParamIndex,
atmIntfSigVccTxTrafficDescrIndex
AtmTrafficDescrParamIndex,
atmIntfPvcFailures Counter32,
atmIntfCurrentlyFailingPVpls Gauge32,
atmIntfCurrentlyFailingPVcls Gauge32,
atmIntfPvcFailuresTrapEnable TruthValue,
atmIntfPvcNotificationInterval INTEGER,
atmIntfLeafSetupFailures Counter32,
atmIntfLeafSetupRequests Counter32 }
atmIntfConfigType OBJECT-TYPE
SYNTAX AtmInterfaceType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of connection setup procedures configured for the ATM
interface. Setting this variable to a value of 'other' is not
allowed."
DEFVAL { autoConfig }
::= { atmInterfaceExtEntry 1 }
atmIntfActualType OBJECT-TYPE
SYNTAX AtmInterfaceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of connection setup procedures currently being used on
the interface. This may reflect a manually configured value for
the interface type, or may be determined by other means such as
auto-configuration. A value of `autoConfig' indicates that
auto-configuration was requested but has not yet been completed."
::= { atmInterfaceExtEntry 2 }
atmIntfConfigSide OBJECT-TYPE
SYNTAX INTEGER {
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
other(1),
user(2),
network(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured role of the managed entity as one side of the ATM
interface. This value does not apply when the object
atmIntfConfigType is set to `autoConfig', `atmfPnni1Dot0', or
`atmfBici2Dot0'."
::= { atmInterfaceExtEntry 3 }
atmIntfActualSide OBJECT-TYPE
SYNTAX INTEGER {
other(1),
user(2),
network(3),
symmetric(4) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current role used by the managed entity to represent one
side of the ATM interface."
::= { atmInterfaceExtEntry 4 }
atmIntfIlmiAdminStatus OBJECT-TYPE
SYNTAX BITS { ilmi(0),
ilmiAddressRegistration(1),
ilmiConnectivity(2),
ilmiPvcPvpMgmt(3),
ilmiSigVccParamNegotiation(4) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates which components of ILMI are administratively enabled
on this interface. If the 'ilmi' bit is not set, then no ILMI
components are operational. ILMI components other than auto-
configuration that are not represented in the value have their
administrative status determined according to the 'ilmi' bit.
The ILMI auto-configuration component is enabled/disabled by the
atmIntfConfigType object."
::= { atmInterfaceExtEntry 5 }
atmIntfIlmiOperStatus OBJECT-TYPE
SYNTAX BITS { ilmi(0),
ilmiAddressRegistration(1),
ilmiConnectivity(2),
ilmiPvcPvpMgmt(3),
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
ilmiSigVccParamNegotiation(4) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates which components of ILMI are operational on this
interface."
::= { atmInterfaceExtEntry 6 }
atmIntfIlmiFsmState OBJECT-TYPE
SYNTAX INTEGER { stopped(1),
linkFailing(2),
establishing(3),
configuring(4),
retrievingNetworkPrefixes(5),
registeringNetworkPrefixes(6),
retrievingAddresses(7),
registeringAddresses(8),
verifying(9) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the state of the ILMI Finite State Machine associated
with this interface."
REFERENCE
"ATM Forum, Integrated Local Management Interface
(ILMI) Specification, Version 4.0, af-ilmi-0065.000,
September 1996, Appendix 1"
::= { atmInterfaceExtEntry 7 }
atmIntfIlmiEstablishConPollIntvl OBJECT-TYPE
SYNTAX Integer32 (1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The amount of time S between successive transmissions of ILMI
messages on this interface for the purpose of detecting
establishment of ILMI connectivity."
REFERENCE
"ATM Forum, Integrated Local Management Interface
(ILMI) Specification, Version 4.0, af-ilmi-0065.000,
September 1996, <a href="#section-8.3.1">Section 8.3.1</a>"
DEFVAL { 1 }
::= { atmInterfaceExtEntry 8 }
atmIntfIlmiCheckConPollIntvl OBJECT-TYPE
SYNTAX Integer32 (0..65535)
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The amount of time T between successive transmissions of ILMI
messages on this interface for the purpose of detecting loss of
ILMI connectivity. The distinguished value zero disables ILMI
connectivity procedures on this interface."
REFERENCE
"ATM Forum, Integrated Local Management Interface
(ILMI) Specification, Version 4.0, af-ilmi-0065.000,
September 1996, <a href="#section-8.3.1">Section 8.3.1</a>"
DEFVAL { 5 }
::= { atmInterfaceExtEntry 9 }
atmIntfIlmiConPollInactFactor OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number K of consecutive polls on this interface for which no
ILMI response message is received before ILMI connectivity is
declared lost."
REFERENCE
"ATM Forum, Integrated Local Management Interface
(ILMI) Specification, Version 4.0, af-ilmi-0065.000,
September 1996, <a href="#section-8.3.1">Section 8.3.1</a>"
DEFVAL { 4 }
::= { atmInterfaceExtEntry 10 }
atmIntfIlmiPublicPrivateIndctr OBJECT-TYPE
SYNTAX INTEGER {
other(1),
public(2),
private(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether this end of the interface is advertised in
ILMI as a device of the `public' or `private' type."
DEFVAL { private }
::= { atmInterfaceExtEntry 11 }
atmInterfaceConfMaxSvpcVpi OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-write
STATUS current
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
DESCRIPTION
"The maximum VPI that the signalling stack on the ATM interface
is configured to support for allocation to switched virtual path
connections."
::= { atmInterfaceExtEntry 12 }
atmInterfaceCurrentMaxSvpcVpi OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum VPI that the signalling stack on the ATM interface
may currently allocate to switched virtual path connections.
This value is the minimum of atmInterfaceConfMaxSvpcVpi, and the
atmInterfaceMaxSvpcVpi of the interface's UNI/NNI peer.
If the interface does not negotiate with its peer to determine
the maximum VPI that can be allocated to SVPCs on the interface,
then the value of this object must equal
atmInterfaceConfMaxSvpcVpi. "
::= { atmInterfaceExtEntry 13 }
atmInterfaceConfMaxSvccVpi OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum VPI that the signalling stack on the ATM interface
is configured to support for allocation to switched virtual
channel connections."
::= { atmInterfaceExtEntry 14 }
atmInterfaceCurrentMaxSvccVpi OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum VPI that the signalling stack on the ATM interface
may currently allocate to switched virtual channel connections.
This value is the minimum of atmInterfaceConfMaxSvccVpi, and the
atmInterfaceConfMaxSvccVpi of the interface's UNI/NNI peer.
If the interface does not negotiate with its peer to determine
the maximum VPI that can be allocated to SVCCs on the interface,
then the value of this object must equal
atmInterfaceConfMaxSvccVpi."
::= { atmInterfaceExtEntry 15 }
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmInterfaceConfMinSvccVci OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum VCI that the signalling stack on the ATM interface
is configured to support for allocation to switched virtual
channel connections."
::= { atmInterfaceExtEntry 16 }
atmInterfaceCurrentMinSvccVci OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum VCI that the signalling stack on the ATM interface
may currently allocate to switched virtual channel connections.
This value is the maximum of atmInterfaceConfMinSvccVci, and the
atmInterfaceConfMinSvccVci of the interface's UNI/NNI peer.
If the interface does not negotiate with its peer to determine
the minimum VCI that can be allocated to SVCCs on the interface,
then the value of this object must equal
atmInterfaceConfMinSvccVci."
::= { atmInterfaceExtEntry 17 }
atmIntfSigVccRxTrafficDescrIndex OBJECT-TYPE
SYNTAX AtmTrafficDescrParamIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the row in the atmTrafficDescrParamTable
used during ILMI auto-configuration to specify the advertised
signalling VCC traffic parameters for the receive direction.
The traffic descriptor resulting from ILMI auto-configuration of
the signalling VCC is indicated in the atmVclTable."
::= { atmInterfaceExtEntry 18 }
atmIntfSigVccTxTrafficDescrIndex OBJECT-TYPE
SYNTAX AtmTrafficDescrParamIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the row in the atmTrafficDescrParamTable
used during ILMI auto-configuration to specify the advertised
signalling VCC traffic parameters for the transmit direction.
The traffic descriptor resulting from ILMI auto-configuration of
the signalling VCC is indicated in the atmVclTable."
::= { atmInterfaceExtEntry 19 }
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmIntfPvcFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the operational status of a PVPL or PVCL on
this interface has gone down."
::= { atmInterfaceExtEntry 20 }
atmIntfCurrentlyFailingPVpls OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of VPLs on this interface for which there is
an active row in the atmVplTable having an atmVplConnKind value
of `pvc' and an atmVplOperStatus with a value other than `up'."
::= { atmInterfaceExtEntry 21 }
atmIntfCurrentlyFailingPVcls OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of VCLs on this interface for which there is
an active row in the atmVclTable having an atmVclConnKind value
of `pvc' and an atmVclOperStatus with a value other than `up'."
::= { atmInterfaceExtEntry 22 }
atmIntfPvcFailuresTrapEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allows the generation of traps in response to PVCL or PVPL
failures on this interface."
DEFVAL { false }
::= { atmInterfaceExtEntry 23 }
atmIntfPvcNotificationInterval OBJECT-TYPE
SYNTAX INTEGER (1..3600)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum interval between the sending of
atmIntfPvcFailuresTrap notifications for this interface."
DEFVAL { 30 }
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
::= { atmInterfaceExtEntry 24 }
atmIntfLeafSetupFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of setup failures. For root, this is the number of
rejected setup requests and for leaf, this is the number of setup
failure received."
::= { atmInterfaceExtEntry 25 }
atmIntfLeafSetupRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of setup requests. For root, this includes both incoming
setup request and root intiated setup requests."
::= { atmInterfaceExtEntry 26 }
-- 15. ATM ILMI Service Registry Table
atmIlmiSrvcRegTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmIlmiSrvcRegEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of all the ATM network services known
by this device.
The characteristics of these services are made available through
the ILMI, using the ILMI general-purpose service registry MIB.
These services may be made available to all ATM interfaces
(atmIlmiSrvcRegIndex = 0) or to some specific ATM interfaces only
(atmIlmiSrvcRegIndex = ATM interface index)."
::= { atm2MIBObjects 15 }
atmIlmiSrvcRegEntry OBJECT-TYPE
SYNTAX AtmIlmiSrvcRegEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a single service provider that is available to
the user-side of an adjacent device through the ILMI.
Implementors need to be aware that if the size of the
atmIlmiSrvcRegServiceID exceeds 112 sub-identifiers then OIDs of
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
column instances in this table will have more than 128 sub-
identifiers and cannot be accessed using SNMPv1, SNMPv2, or
SNMPv3."
INDEX { atmIlmiSrvcRegIndex,
atmIlmiSrvcRegServiceID,
atmIlmiSrvcRegAddressIndex }
::= { atmIlmiSrvcRegTable 1 }
AtmIlmiSrvcRegEntry ::= SEQUENCE {
atmIlmiSrvcRegIndex InterfaceIndexOrZero,
atmIlmiSrvcRegServiceID OBJECT IDENTIFIER,
atmIlmiSrvcRegAddressIndex INTEGER,
atmIlmiSrvcRegATMAddress AtmAddr,
atmIlmiSrvcRegParm1 OCTET STRING,
atmIlmiSrvcRegRowStatus RowStatus
}
atmIlmiSrvcRegIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ATM interface where the service defined in this entry can be
made available to an ATM device attached to this interface.
The value of 0 has a special meaning: when an ATM service is
defined in an entry whose atmIlmiSrvcRegIndex is zero, the ATM
service is available to ATM devices connected to any ATM
interface. (default value(s)).
When the user-side of an adjacent device queries the content of
the ILMI service registry MIB (using the ILMI protocol), the
local network-side responds with the ATM services defined in
atmIlmiSrvcRegTable entries, provided that these entries are
indexed by:
- the corresponding ifIndex value (atmIlmiSrvcRegIndex
equal to the ifIndex of the interface to which the
adjacent device is connected) - zero (atmIlmiSrvcRegIndex=0)."
::= { atmIlmiSrvcRegEntry 1 }
atmIlmiSrvcRegServiceID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the service identifier which uniquely identifies the
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
type of service at the address provided in the table. The object
identifiers for the LAN Emulation Configuration Server (LECS) and
the ATM Name Server (ANS) are defined in the ATM Forum ILMI
Service Registry MIB. The object identifiers for the ATMARP
Server, the Multicast Address Resolution Server (MARS), and the
NHRP Server (NHS) are defined in <a href="./rfc2601">RFC 2601</a>, <a href="./rfc2602">RFC 2602</a>, and <a href="./rfc2603">RFC</a>
<a href="./rfc2603">2603</a>, respectively."
::= { atmIlmiSrvcRegEntry 2 }
atmIlmiSrvcRegAddressIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer to differentiate multiple rows containing
different ATM addresses for the same service on the same
interface. This number need NOT be the same as the corresponding
ILMI atmfSrvcRegAddressIndex MIB object."
::= { atmIlmiSrvcRegEntry 3 }
atmIlmiSrvcRegATMAddress OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the full address of the service. The user-side of the
adjacent device may use this address to establish a connection
with the service."
::= { atmIlmiSrvcRegEntry 4 }
atmIlmiSrvcRegParm1 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An octet string used according to the value of
atmIlmiSrvcRegServiceID."
::= { atmIlmiSrvcRegEntry 5 }
atmIlmiSrvcRegRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create or destroy an entry from this
table."
::= { atmIlmiSrvcRegEntry 6 }
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
-- 16. ILMI Network Prefix Table
atmIlmiNetworkPrefixTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmIlmiNetworkPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table specifying per-interface network prefix(es) supplied by
the network side of the UNI during ILMI address registration.
When no network prefixes are specified for a particular
interface, one or more network prefixes based on the switch
address(es) may be used for ILMI address registration."
::= { atm2MIBObjects 16 }
atmIlmiNetworkPrefixEntry OBJECT-TYPE
SYNTAX AtmIlmiNetworkPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a single network prefix supplied by the
network side of the UNI during ILMI address registration. Note
that the index variable atmIlmiNetPrefixPrefix is a variable-
length string, and as such the rule for variable-length strings
in <a href="./rfc2578#section-7.7">section 7.7 of RFC 2578</a> applies."
INDEX { ifIndex,
atmIlmiNetPrefixPrefix }
::= { atmIlmiNetworkPrefixTable 1 }
AtmIlmiNetworkPrefixEntry ::=
SEQUENCE {
atmIlmiNetPrefixPrefix AtmIlmiNetworkPrefix,
atmIlmiNetPrefixRowStatus RowStatus
}
atmIlmiNetPrefixPrefix OBJECT-TYPE
SYNTAX AtmIlmiNetworkPrefix
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The network prefix specified for use in ILMI address
registration."
::= { atmIlmiNetworkPrefixEntry 1 }
atmIlmiNetPrefixRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
"Used to create, delete, activate and de-activate network
prefixes used in ILMI address registration."
::= { atmIlmiNetworkPrefixEntry 2 }
-- 17. ATM Switch Address Table
atmSwitchAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmSwitchAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one or more ATM endsystem addresses on a
per-switch basis. These addresses are used to identify the
switch. When no ILMI network prefixes are configured for certain
interfaces, network prefixes based on the switch address(es) may
be used for ILMI address registration."
::= { atm2MIBObjects 17 }
atmSwitchAddressEntry OBJECT-TYPE
SYNTAX AtmSwitchAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the ATM Switch Address table."
INDEX { atmSwitchAddressIndex }
::= { atmSwitchAddressTable 1 }
AtmSwitchAddressEntry ::=
SEQUENCE {
atmSwitchAddressIndex Integer32,
atmSwitchAddressAddress OCTET STRING,
atmSwitchAddressRowStatus RowStatus
}
atmSwitchAddressIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary index used to enumerate the ATM endsystem addresses
for this switch."
::= { atmSwitchAddressEntry 1 }
atmSwitchAddressAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(13|20))
MAX-ACCESS read-create
STATUS current
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
DESCRIPTION
"An ATM endsystem address or address prefix used to identify this
switch. When no ESI or SEL field is specified, the switch may
generate the ESI and SEL fields automatically to obtain a
complete 20-byte ATM endsystem address."
::= { atmSwitchAddressEntry 2 }
atmSwitchAddressRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to create, delete, activate, and de-activate addresses used
to identify this switch."
::= { atmSwitchAddressEntry 3 }
-- 18. ATM VP Cross-Connect Extension Table
atmVpCrossConnectXTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmVpCrossConnectXEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one row per VP Cross-Connect represented in
the atmVpCrossConnectTable."
::= { atm2MIBObjects 18 }
atmVpCrossConnectXEntry OBJECT-TYPE
SYNTAX AtmVpCrossConnectXEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular ATM VP Cross-Connect.
Each entry provides an two objects that name the Cross-Connect.
One is assigned by the Service User and the other by the Service
Provider."
AUGMENTS { atmVpCrossConnectEntry }
::= { atmVpCrossConnectXTable 1 }
AtmVpCrossConnectXEntry ::= SEQUENCE {
atmVpCrossConnectUserName SnmpAdminString,
atmVpCrossConnectProviderName SnmpAdminString
}
atmVpCrossConnectUserName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..255))
MAX-ACCESS read-create
STATUS current
<span class="grey">Ly, 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="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
DESCRIPTION
"This is a service user assigned textual representation of a VPC
PVC."
::= { atmVpCrossConnectXEntry 1 }
atmVpCrossConnectProviderName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a system supplied textual representation of VPC PVC. It
is assigned by the service provider."
::= { atmVpCrossConnectXEntry 2 }
-- 19. ATM VC Cross-Connect Extension Table
atmVcCrossConnectXTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmVcCrossConnectXEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one row per VC Cross-Connect represented in
the atmVcCrossConnectTable."
::= { atm2MIBObjects 19 }
atmVcCrossConnectXEntry OBJECT-TYPE
SYNTAX AtmVcCrossConnectXEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular ATM VC Cross-Connect.
Each entry provides an two objects that name the Cross-Connect.
One is assigned by the Service User and the other by the Service
Provider."
AUGMENTS { atmVcCrossConnectEntry }
::= { atmVcCrossConnectXTable 1 }
AtmVcCrossConnectXEntry ::= SEQUENCE {
atmVcCrossConnectUserName SnmpAdminString,
atmVcCrossConnectProviderName SnmpAdminString
}
atmVcCrossConnectUserName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is a service user assigned textual representation of a VCC
<span class="grey">Ly, et al. Standards Track [Page 79]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-80" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
PVC."
::= { atmVcCrossConnectXEntry 1 }
atmVcCrossConnectProviderName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a system supplied textual representation of VCC PVC. It
is assigned by the service provider."
::= { atmVcCrossConnectXEntry 2 }
-- 20. Currently Failing PVPL Table
atmCurrentlyFailingPVplTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmCurrentlyFailingPVplEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table indicating all VPLs for which there is an active row in
the atmVplTable having an atmVplConnKind value of `pvc' and an
atmVplOperStatus with a value other than `up'."
::= { atm2MIBObjects 20 }
atmCurrentlyFailingPVplEntry OBJECT-TYPE
SYNTAX AtmCurrentlyFailingPVplEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a VPL for which the
atmVplRowStatus is `active', the atmVplConnKind is `pvc', and the
atmVplOperStatus is other than `up'."
INDEX { ifIndex, atmVplVpi }
::= { atmCurrentlyFailingPVplTable 1 }
AtmCurrentlyFailingPVplEntry ::=
SEQUENCE {
atmCurrentlyFailingPVplTimeStamp TimeStamp
}
atmCurrentlyFailingPVplTimeStamp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this PVPL began to fail."
::= { atmCurrentlyFailingPVplEntry 1 }
<span class="grey">Ly, et al. Standards Track [Page 80]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-81" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
-- 21. Currently Failing PVCL Table
atmCurrentlyFailingPVclTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmCurrentlyFailingPVclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table indicating all VCLs for which there is an active row in
the atmVclTable having an atmVclConnKind value of `pvc' and an
atmVclOperStatus with a value other than `up'."
::= { atm2MIBObjects 21 }
atmCurrentlyFailingPVclEntry OBJECT-TYPE
SYNTAX AtmCurrentlyFailingPVclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table represents a VCL for which the
atmVclRowStatus is `active', the atmVclConnKind is `pvc', and the
atmVclOperStatus is other than `up'."
INDEX { ifIndex, atmVclVpi, atmVclVci }
::= { atmCurrentlyFailingPVclTable 1 }
AtmCurrentlyFailingPVclEntry ::=
SEQUENCE {
atmCurrentlyFailingPVclTimeStamp TimeStamp
}
atmCurrentlyFailingPVclTimeStamp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this PVCL began to fail."
::= { atmCurrentlyFailingPVclEntry 1 }
-- ATM PVC Traps
atmPvcTraps OBJECT IDENTIFIER ::= { atm2MIBTraps 1 }
atmPvcTrapsPrefix OBJECT IDENTIFIER ::= { atmPvcTraps 0 }
atmIntfPvcFailuresTrap NOTIFICATION-TYPE
OBJECTS { ifIndex, atmIntfPvcFailures,
atmIntfCurrentlyFailingPVpls,
atmIntfCurrentlyFailingPVcls }
STATUS current
DESCRIPTION
<span class="grey">Ly, et al. Standards Track [Page 81]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-82" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
"A notification indicating that one or more PVPLs or PVCLs on
this interface has failed since the last atmPvcFailuresTrap was
sent. If this trap has not been sent for the last
atmIntfPvcNotificationInterval, then it will be sent on the next
increment of atmIntfPvcFailures."
::= { atmPvcTrapsPrefix 1 }
-- Conformance Information
atm2MIBConformance OBJECT IDENTIFIER ::= {atm2MIB 3}
atm2MIBGroups OBJECT IDENTIFIER ::= {atm2MIBConformance 1}
atm2MIBCompliances OBJECT IDENTIFIER ::= {atm2MIBConformance 2}
-- Compliance Statements
atm2MIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which represent ATM
interfaces. The compliance statements are used to determine
if a particular group or object applies to hosts,
networks/switches, or both. The Common group is defined as
applicable to all three."
MODULE -- this module
MANDATORY-GROUPS { atmCommonGroup }
-- Objects in the ATM Switch/Service/Host Group
GROUP atmCommonStatsGroup
DESCRIPTION
"This group is mandatory for systems that are supporting
per-VPC or per-VCC counters."
OBJECT atmVplLogicalPortDef
MIN-ACCESS read-only
DESCRIPTION
"This object is mandatory for systems support ATM Logical
Port interfaces."
OBJECT atmIntfSigVccRxTrafficDescrIndex
DESCRIPTION
"This object is mandatory for systems that support negotiation
of signalling VCC traffic parameters through ILMI."
OBJECT atmIntfSigVccTxTrafficDescrIndex
<span class="grey">Ly, et al. Standards Track [Page 82]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-83" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
DESCRIPTION
"This object is mandatory for systems that support negotiation
of signalling VCC traffic parameters through ILMI."
OBJECT atmCurrentlyFailingPVplTimeStamp
DESCRIPTION
"This object is optional."
OBJECT atmCurrentlyFailingPVclTimeStamp
DESCRIPTION
"This object is optional."
OBJECT atmIntfLeafSetupFailures
DESCRIPTION
"This object is optional."
OBJECT atmIntfLeafSetupRequests
DESCRIPTION
"This object is optional."
-- Objects in the ATM Switch/Service Group
GROUP atmSwitchServcGroup
DESCRIPTION
"This group is mandatory for a Switch/Service that implements
ATM interfaces."
OBJECT atmIfRegAddrRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, and only one of the six
enumerated values for the RowStatus textual convention need
be supported, specifically: active(1)."
OBJECT atmSvcVpCrossConnectRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, and only one of the six
enumerated values for the RowStatus textual convention need
be supported, specifically: active(1)"
OBJECT atmSvcVcCrossConnectRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, and only one of the six
enumerated values for the RowStatus textual convention need
be supported, specifically: active(1)"
<span class="grey">Ly, et al. Standards Track [Page 83]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-84" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
-- Objects in the ATM Switch/Service Signalling Group
GROUP atmSwitchServcSigGroup
DESCRIPTION
"This group's write access is not required."
-- Objects in the ATM Switch/Service Notifications Group
GROUP atmSwitchServcNotifGroup
DESCRIPTION
"This group is optional for systems implementing support for
an ATM Switch or an ATM Network Service."
-- Objects in the ATM Switch Group
GROUP atmSwitchGroup
DESCRIPTION
"This group is optional for a switch that implements ATM
interfaces."
-- Objects in the ATM Service Group
GROUP atmServcGroup
DESCRIPTION
"This group is mandatory for systems implementing support for
an ATM Network Service."
-- Objects in the ATM Host Group
GROUP atmHostGroup
DESCRIPTION
"This group is mandatory for a Host that implements ATM
interfaces."
OBJECT atmVclAddrType
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT atmVclAddrRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, and only one of the six
enumerated values for the RowStatus textual convention need
be supported, specifically: active(1)."
-- ATM Host Sig Descriptor Parameter Group
<span class="grey">Ly, et al. Standards Track [Page 84]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-85" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
GROUP atmHostSigDescrGroup
DESCRIPTION
"This group is mandatory for a Host that implements ATM
interfaces. Write access is not required for this group."
::= { atm2MIBCompliances 1 }
-- **********************************************
-- Units of Conformance
-- Mandatory for ATM hosts and switch/service providers
atmCommonGroup OBJECT-GROUP
OBJECTS {
atmSigSSCOPConEvents,
atmSigSSCOPErrdPdus,
atmSigDetectSetupAttempts,
atmSigEmitSetupAttempts,
atmSigDetectUnavailRoutes,
atmSigEmitUnavailRoutes,
atmSigDetectUnavailResrcs,
atmSigEmitUnavailResrcs,
atmSigDetectCldPtyEvents,
atmSigEmitCldPtyEvents,
atmSigDetectMsgErrors,
atmSigEmitMsgErrors,
atmSigDetectClgPtyEvents,
atmSigEmitClgPtyEvents,
atmSigDetectTimerExpireds,
atmSigEmitTimerExpireds,
atmSigDetectRestarts,
atmSigEmitRestarts,
atmSigInEstabls,
atmSigOutEstabls,
atmVplLogicalPortDef,
atmVplLogicalPortIndex,
atmInterfaceConfMaxSvpcVpi,
atmInterfaceCurrentMaxSvpcVpi,
atmInterfaceConfMaxSvccVpi,
atmInterfaceCurrentMaxSvccVpi,
atmInterfaceConfMinSvccVci,
atmInterfaceCurrentMinSvccVci,
atmIntfSigVccRxTrafficDescrIndex,
atmIntfSigVccTxTrafficDescrIndex,
atmIntfPvcFailures,
atmIntfCurrentlyFailingPVpls,
atmIntfCurrentlyFailingPVcls,
<span class="grey">Ly, et al. Standards Track [Page 85]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-86" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmIntfPvcNotificationInterval,
atmIntfPvcFailuresTrapEnable,
atmIntfLeafSetupFailures,
atmIntfLeafSetupRequests,
atmIntfConfigType,
atmIntfActualType,
atmIntfConfigSide,
atmIntfActualSide,
atmIntfIlmiAdminStatus,
atmIntfIlmiOperStatus,
atmIntfIlmiFsmState,
atmIntfIlmiEstablishConPollIntvl,
atmIntfIlmiCheckConPollIntvl,
atmIntfIlmiConPollInactFactor,
atmIntfIlmiPublicPrivateIndctr,
atmCurrentlyFailingPVplTimeStamp,
atmCurrentlyFailingPVclTimeStamp
}
STATUS current
DESCRIPTION
"A collection of objects providing information
for a Switch/Service/Host that implements
ATM interfaces."
::= { atm2MIBGroups 1 }
atmCommonStatsGroup OBJECT-GROUP
OBJECTS {
atmVclStatTotalCellIns,
atmVclStatClp0CellIns,
atmVclStatTotalDiscards,
atmVclStatClp0Discards,
atmVclStatTotalCellOuts,
atmVclStatClp0CellOuts,
atmVclStatClp0Tagged,
atmVplStatTotalCellIns,
atmVplStatClp0CellIns,
atmVplStatTotalDiscards,
atmVplStatClp0Discards,
atmVplStatTotalCellOuts,
atmVplStatClp0CellOuts,
atmVplStatClp0Tagged
}
STATUS current
DESCRIPTION
"A collection of objects providing information
<span class="grey">Ly, et al. Standards Track [Page 86]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-87" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
for a Switch/Service/Host that implements
ATM VCL and VPL Statistics"
::= { atm2MIBGroups 2 }
atmSwitchServcGroup OBJECT-GROUP
OBJECTS {
atmIlmiSrvcRegATMAddress,
atmIlmiSrvcRegParm1,
atmIlmiSrvcRegRowStatus,
atmIlmiNetPrefixRowStatus,
atmSvcVpCrossConnectCreationTime,
atmSvcVpCrossConnectRowStatus,
atmSvcVcCrossConnectCreationTime,
atmSvcVcCrossConnectRowStatus,
atmIfRegAddrAddressSource,
atmIfRegAddrOrgScope,
atmIfRegAddrRowStatus}
STATUS current
DESCRIPTION
"A collection of objects providing information
for a Switch/Service that implements ATM interfaces."
::= { atm2MIBGroups 3 }
atmSwitchServcSigGroup OBJECT-GROUP
OBJECTS {
atmSigSupportClgPtyNumDel,
atmSigSupportClgPtySubAddr,
atmSigSupportCldPtySubAddr,
atmSigSupportHiLyrInfo,
atmSigSupportLoLyrInfo,
atmSigSupportBlliRepeatInd,
atmSigSupportAALInfo,
atmSigSupportPrefCarrier}
STATUS current
DESCRIPTION
"A collection of objects providing information
for a Switch/Service that implements ATM signalling."
::= { atm2MIBGroups 4 }
atmSwitchServcNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS { atmIntfPvcFailuresTrap }
STATUS current
DESCRIPTION
"A collection of notifications providing information
for a Switch/Service that implements ATM interfaces."
<span class="grey">Ly, et al. Standards Track [Page 87]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-88" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
::= { atm2MIBGroups 5 }
atmSwitchGroup OBJECT-GROUP
OBJECTS {
atmSwitchAddressAddress,
atmSwitchAddressRowStatus }
STATUS current
DESCRIPTION
"A collection of objects providing information
for an ATM switch."
::= { atm2MIBGroups 6 }
atmServcGroup OBJECT-GROUP
OBJECTS {
atmVpCrossConnectUserName,
atmVpCrossConnectProviderName,
atmVcCrossConnectUserName,
atmVcCrossConnectProviderName }
STATUS current
DESCRIPTION
"A collection of objects providing information
for an ATM Network Service."
::= { atm2MIBGroups 7 }
atmHostGroup OBJECT-GROUP
OBJECTS {
atmAal5VclInPkts,
atmAal5VclOutPkts,
atmAal5VclInOctets,
atmAal5VclOutOctets,
atmVclAddrType,
atmVclAddrRowStatus,
atmAddrVclAddrType,
atmVclGenSigDescrIndex}
STATUS current
DESCRIPTION
"A collection of objects providing information
for a Host that implements ATM interfaces."
::= { atm2MIBGroups 8 }
atmHostSigDescrGroup OBJECT-GROUP
OBJECTS {
atmSigDescrParamAalType,
atmSigDescrParamAalSscsType,
atmSigDescrParamBhliType,
<span class="grey">Ly, et al. Standards Track [Page 88]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-89" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
atmSigDescrParamBhliInfo,
atmSigDescrParamBbcConnConf,
atmSigDescrParamBlliLayer2,
atmSigDescrParamBlliLayer3,
atmSigDescrParamBlliPktSize,
atmSigDescrParamBlliSnapId,
atmSigDescrParamBlliOuiPid,
atmSigDescrParamRowStatus}
STATUS current
DESCRIPTION
"A collection of objects providing information
for a Host that implements ATM interfaces."
::= { atm2MIBGroups 9 }
END
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Acknowledgments</span>
This document is a product of the AToMMIB Working Group. Special
thanks go to Gary Hanson of ADC Telecommunications for his quality
contributions to this specification.
The authors also like to acknowledge John Flick of HP for his
thorough and valuable review of this memo.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. References</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Normative References</span>
[<a id="ref-RFC2515">RFC2515</a>] Tesink, K., Ed., "Definitions of Managed Objects
for ATM Management", <a href="./rfc2515">RFC 2515</a>, February 1999.
[ATM Forum 3.0] ATM Forum, "ATM User-Network Interface
Specification, Version 3.0 (UNI 3.0)", September
1993.
[ATM Forum UNI 3.1] ATM Forum, "ATM User-Network Interface
Specification, Version 3.1 (UNI 3.1)", September
1994.
[ATM Forum LANE] ATM Forum, "LAN Emulation Client Management
Specification, Version 1.0", af-lane-0038.000,
September 1995.
[<a id="ref-RFC1694">RFC1694</a>] Brown, T. and K. Tesink, "Definitions of Managed
Objects for SMDS Interfaces using SMIv2", <a href="./rfc1694">RFC</a>
<a href="./rfc1694">1694</a>, August 1994.
<span class="grey">Ly, et al. Standards Track [Page 89]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-90" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
[ATM Forum ILMI] ATM Forum, "Integrated Local Management
Interface (ILMI) Specification, Version 4.0",
[<a id="ref-RFC3592">RFC3592</a>] Tesink, K., "Definitions of Managed Objects for
the Synchronous Optical Network/Synchronous
Digital Hierarchy (SONET/SDH) Interface Type",
<a href="./rfc3592">RFC 3592</a>, September 2003.
[<a id="ref-RFC2496">RFC2496</a>] Fowler, D., Ed., "Definitions of Managed Objects
for the DS3/E3 Interface Type", <a href="./rfc2496">RFC 2496</a>,
January 1999.
[<a id="ref-RFC2578">RFC2578</a>] McCloghrie, K., Perkins, D., Schoenwaelder, J.,
Case, J., Rose, M., and S. Waldbusser,
"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., Schoenwaelder, J.,
Case, J., Rose, M., and S. Waldbusser, "Textual
Conventions for SMIv2", STD 58, <a href="./rfc2579">RFC 2579</a>, April
1999.
[<a id="ref-RFC2580">RFC2580</a>] McCloghrie, K., Perkins, D., Schoenwaelder, J.,
Case, J., Rose, M., and S. Waldbusser,
"Conformance Statements for SMIv2", STD 58, <a href="./rfc2580">RFC</a>
<a href="./rfc2580">2580</a>, April 1999.
[<a id="ref-RFC2863">RFC2863</a>] McCloghrie, K. and F. Kastenholz, "The
Interfaces Group MIB", <a href="./rfc2863">RFC 2863</a>, June 2000.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.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</a>
<a href="./rfc3410">3410</a>, December 2002.
<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. These are the tables and objects and their
sensitivity/vulnerability:
<span class="grey">Ly, et al. Standards Track [Page 90]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-91" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
Table Sensitivity/vulnerability
1. atmSvcVpCrossConnectTable Deletion of VP cross-connects
2. atmSvcVcCrossConnectTable Deletion of VC cross-connects
3. atmSigStatTable Signalling read-only statistics
4. atmSigSupportTable Signalling configuration params
5. atmSigDescrParamTable Signalling configuration params
6. atmIfRegisteredAddrTable Interface address table
7. atmVclAddrTable VCL/Address mapping table
8. atmAddrVclTable VCL/Address mapping table
(read-only)
9. atmVplStatTable VPL statistics (read-only)
10. atmVplLogicalPortTable VPL logical port configuration
11. atmVclStatTable VCL statistics (read-only)
12. atmAal5VclStatTable AAL5 statistics (read-only)
13. atmVclGenTable Signalling configuration
14. atmInterfaceExtTable Interface configuration
15. atmIlmiSrvcRegTable ILMI config params
16. atmIlmiNetworkPrefixTable ILMI config params
17. atmSwitchAddressTable Switch address info
18. atmVpCrossConnectXTable VP cross-connect params
19. atmVcCrossConnectXTable VC cross-connect params
20. atmCurrentlyFailingPVplTable PVPL status info (read-only)
21. atmCurrentlyFailingPVclTable PVCL status info (read-only)
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.
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
<span class="grey">Ly, et al. Standards Track [Page 91]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-92" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
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="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Intellectual Property Statement</span>
The IETF takes no position regarding the validity or scope of any
intellectual property 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; neither does it represent that it
has made any effort to identify any such rights. Information on the
IETF's procedures with respect to rights in standards-track and
standards-related documentation can be found in <a href="https://www.rfc-editor.org/bcp/bcp11">BCP-11</a>. Copies of
claims of rights made available for publication 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 Secretariat."
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights which may cover technology that may be required to practice
this standard. Please address the information to the IETF Executive
Director.
<span class="grey">Ly, et al. Standards Track [Page 92]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-93" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Authors' Addresses</span>
Faye Ly
Pedestal Networks
6503 Dumbarton Circle
Fremont, CA 94555
USA
Phone (510) 896-2908
EMail: faye@pedestalnetworks.com
Michael Noto
Cisco Systems
170 W. Tasman Drive
San Jose, CA 95134-1706
USA
EMail: mnoto@cisco.com
Andrew Smith
Consultant
EMail: ah_smith@acm.org
Ethan Mickey Spiegel
Cisco Systems
170 W. Tasman Drive
San Jose, CA 95134-1706
Phone: (408) 526-6408
EMail: mspiegel@cisco.com
Kaj Tesink
Telcordia Technologies
331 Newman Springs Road
Red Bank, NJ 07701-7020
Phone: (732) 758-5254
EMail: kaj@research.telcordia.com
<span class="grey">Ly, et al. Standards Track [Page 93]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-94" ></span>
<span class="grey"><a href="./rfc3606">RFC 3606</a> Supplemental ATM Managed Objects November 2003</span>
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Full Copyright Statement</span>
Copyright (C) The Internet Society (2003). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assignees.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS 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.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Ly, et al. Standards Track [Page 94]
</pre>
|