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
|
<pre>Internet Engineering Task Force (IETF) T. Senevirathne
Request for Comments: 7455 N. Finn
Updates: <a href="./rfc6325">6325</a> S. Salam
Category: Standards Track D. Kumar
ISSN: 2070-1721 Cisco
D. Eastlake 3rd
S. Aldrin
Y. Li
Huawei
March 2015
<span class="h1">Transparent Interconnection of Lots of Links (TRILL): Fault Management</span>
Abstract
This document specifies Transparent Interconnection of Lots of Links
(TRILL) Operations, Administration, and Maintenance (OAM) fault
management. Methods in this document follow the CFM (Connectivity
Fault Management) framework defined in IEEE 802.1 and reuse OAM tools
where possible. Additional messages and TLVs are defined for TRILL-
specific applications or for cases where a different set of
information is required other than CFM as defined in IEEE 802.1.
This document updates <a href="./rfc6325">RFC 6325</a>.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7455">http://www.rfc-editor.org/info/rfc7455</a>.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-5">5</a>
<a href="#section-2">2</a>. Conventions Used in This Document ...............................<a href="#page-5">5</a>
<a href="#section-3">3</a>. General Format of TRILL OAM Packets .............................<a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. Identification of TRILL OAM Frames .........................<a href="#page-8">8</a>
<a href="#section-3.2">3.2</a>. Use of TRILL OAM Alert Flag ................................<a href="#page-8">8</a>
<a href="#section-3.2.1">3.2.1</a>. Handling of TRILL Frames with the "A" Flag ..........<a href="#page-9">9</a>
<a href="#section-3.3">3.3</a>. OAM Capability Announcement ................................<a href="#page-9">9</a>
<a href="#section-3.4">3.4</a>. Identification of the OAM Message .........................<a href="#page-10">10</a>
<a href="#section-4">4</a>. TRILL OAM Layering vs. IEEE Layering ...........................<a href="#page-11">11</a>
<a href="#section-4.1">4.1</a>. Processing at the ISS Layer ...............................<a href="#page-12">12</a>
<a href="#section-4.1.1">4.1.1</a>. Receive Processing .................................<a href="#page-12">12</a>
<a href="#section-4.1.2">4.1.2</a>. Transmit Processing ................................<a href="#page-12">12</a>
<a href="#section-4.2">4.2</a>. End-Station VLAN and Priority Processing ..................<a href="#page-12">12</a>
<a href="#section-4.2.1">4.2.1</a>. Receive Processing .................................<a href="#page-12">12</a>
<a href="#section-4.2.2">4.2.2</a>. Transmit Processing ................................<a href="#page-12">12</a>
<a href="#section-4.3">4.3</a>. TRILL Encapsulation and Decapsulation Layer ...............<a href="#page-12">12</a>
<a href="#section-4.3.1">4.3.1</a>. Receive Processing for Unicast Packets .............<a href="#page-12">12</a>
<a href="#section-4.3.2">4.3.2</a>. Transmit Processing for Unicast Packets ............<a href="#page-13">13</a>
<a href="#section-4.3.3">4.3.3</a>. Receive Processing for Multicast Packets ...........<a href="#page-14">14</a>
<a href="#section-4.3.4">4.3.4</a>. Transmit Processing of Multicast Packets ...........<a href="#page-15">15</a>
<a href="#section-4.4">4.4</a>. TRILL OAM Layer Processing ................................<a href="#page-16">16</a>
<a href="#section-5">5</a>. Maintenance Associations (MAs) in TRILL ........................<a href="#page-17">17</a>
<a href="#section-6">6</a>. MEP Addressing .................................................<a href="#page-18">18</a>
<a href="#section-6.1">6.1</a>. Use of MIP in TRILL .......................................<a href="#page-21">21</a>
<a href="#section-7">7</a>. Continuity Check Message (CCM) .................................<a href="#page-22">22</a>
<a href="#section-8">8</a>. TRILL OAM Message Channel ......................................<a href="#page-25">25</a>
<a href="#section-8.1">8.1</a>. TRILL OAM Message Header ..................................<a href="#page-25">25</a>
<a href="#section-8.2">8.2</a>. TRILL-Specific OAM OpCodes ................................<a href="#page-26">26</a>
<a href="#section-8.3">8.3</a>. Format of TRILL OAM TLV ...................................<a href="#page-26">26</a>
<a href="#section-8.4">8.4</a>. TRILL OAM TLVs ............................................<a href="#page-27">27</a>
<a href="#section-8.4.1">8.4.1</a>. Common TLVs between CFM and TRILL ..................<a href="#page-27">27</a>
<a href="#section-8.4.2">8.4.2</a>. TRILL OAM-Specific TLVs ............................<a href="#page-27">27</a>
<a href="#section-8.4.3">8.4.3</a>. TRILL OAM Application Identifier TLV ...............<a href="#page-28">28</a>
<a href="#section-8.4.4">8.4.4</a>. Out-of-Band Reply Address TLV ......................<a href="#page-30">30</a>
<a href="#section-8.4.5">8.4.5</a>. Diagnostic Label TLV ...............................<a href="#page-31">31</a>
<a href="#section-8.4.6">8.4.6</a>. Original Data Payload TLV ..........................<a href="#page-32">32</a>
<a href="#section-8.4.7">8.4.7</a>. RBridge Scope TLV ..................................<a href="#page-32">32</a>
<a href="#section-8.4.8">8.4.8</a>. Previous RBridge Nickname TLV ......................<a href="#page-33">33</a>
<a href="#section-8.4.9">8.4.9</a>. Next-Hop RBridge List TLV ..........................<a href="#page-34">34</a>
<a href="#section-8.4.10">8.4.10</a>. Multicast Receiver Port Count TLV .................<a href="#page-34">34</a>
<a href="#section-8.4.11">8.4.11</a>. Flow Identifier TLV ...............................<a href="#page-35">35</a>
<a href="#section-8.4.12">8.4.12</a>. Reflector Entropy TLV .............................<a href="#page-36">36</a>
<a href="#section-8.4.13">8.4.13</a>. Authentication TLV ................................<a href="#page-37">37</a>
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<a href="#section-9">9</a>. Loopback Message ...............................................<a href="#page-38">38</a>
<a href="#section-9.1">9.1</a>. Loopback Message Format ...................................<a href="#page-38">38</a>
<a href="#section-9.2">9.2</a>. Theory of Operation .......................................<a href="#page-39">39</a>
<a href="#section-9.2.1">9.2.1</a>. Actions by Originator RBridge ......................<a href="#page-39">39</a>
<a href="#section-9.2.2">9.2.2</a>. Intermediate RBridge ...............................<a href="#page-39">39</a>
<a href="#section-9.2.3">9.2.3</a>. Destination RBridge ................................<a href="#page-40">40</a>
<a href="#section-10">10</a>. Path Trace Message ............................................<a href="#page-40">40</a>
<a href="#section-10.1">10.1</a>. Theory of Operation ......................................<a href="#page-41">41</a>
<a href="#section-10.1.1">10.1.1</a>. Actions by Originator RBridge .....................<a href="#page-41">41</a>
<a href="#section-10.1.2">10.1.2</a>. Intermediate RBridge ..............................<a href="#page-42">42</a>
<a href="#section-10.1.3">10.1.3</a>. Destination RBridge ...............................<a href="#page-43">43</a>
<a href="#section-11">11</a>. Multi-Destination Tree Verification Message (MTVM) ............<a href="#page-43">43</a>
<a href="#section-11.1">11.1</a>. MTVM Format ..............................................<a href="#page-44">44</a>
<a href="#section-11.2">11.2</a>. Theory of Operation ......................................<a href="#page-44">44</a>
<a href="#section-11.2.1">11.2.1</a>. Actions by Originator RBridge .....................<a href="#page-44">44</a>
<a href="#section-11.2.2">11.2.2</a>. Receiving RBridge .................................<a href="#page-45">45</a>
<a href="#section-11.2.3">11.2.3</a>. In-Scope RBridges .................................<a href="#page-45">45</a>
<a href="#section-12">12</a>. Application of Continuity Check Message (CCM) in TRILL ........<a href="#page-46">46</a>
<a href="#section-12.1">12.1</a>. CCM Error Notification ...................................<a href="#page-47">47</a>
<a href="#section-12.2">12.2</a>. Theory of Operation ......................................<a href="#page-48">48</a>
<a href="#section-12.2.1">12.2.1</a>. Actions by Originator RBridge .....................<a href="#page-48">48</a>
<a href="#section-12.2.2">12.2.2</a>. Intermediate RBridge ..............................<a href="#page-49">49</a>
<a href="#section-12.2.3">12.2.3</a>. Destination RBridge ...............................<a href="#page-49">49</a>
<a href="#section-13">13</a>. Fragmented Reply ..............................................<a href="#page-50">50</a>
<a href="#section-14">14</a>. Security Considerations .......................................<a href="#page-50">50</a>
<a href="#section-15">15</a>. IANA Considerations ...........................................<a href="#page-52">52</a>
<a href="#section-15.1">15.1</a>. OAM Capability Flags .....................................<a href="#page-52">52</a>
<a href="#section-15.2">15.2</a>. CFM Code Points ..........................................<a href="#page-52">52</a>
<a href="#section-15.3">15.3</a>. MAC Addresses ............................................<a href="#page-53">53</a>
<a href="#section-15.4">15.4</a>. Return Codes and Sub-codes ...............................<a href="#page-53">53</a>
<a href="#section-15.5">15.5</a>. TRILL Nickname Address Family ............................<a href="#page-54">54</a>
<a href="#section-16">16</a>. References ....................................................<a href="#page-54">54</a>
<a href="#section-16.1">16.1</a>. Normative References .....................................<a href="#page-54">54</a>
<a href="#section-16.2">16.2</a>. Informative References ...................................<a href="#page-55">55</a>
<a href="#appendix-A">Appendix A</a>. Backwards Compatibility ...............................<a href="#page-57">57</a>
<a href="#appendix-A.1">A.1</a>. Maintenance Point (MEP/MIP) Model ........................<a href="#page-57">57</a>
<a href="#appendix-A.2">A.2</a>. Data-Plane Encoding and Frame Identification .............<a href="#page-57">57</a>
<a href="#appendix-B">Appendix B</a>. Base Mode for TRILL OAM ...............................<a href="#page-59">59</a>
<a href="#appendix-C">Appendix C</a>. MAC Addresses Request .................................<a href="#page-61">61</a>
Acknowledgments ...................................................<a href="#page-62">62</a>
Authors' Addresses ................................................<a href="#page-62">62</a>
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The general structure of TRILL OAM messages is presented in
[<a href="./rfc7174" title=""Transparent Interconnection of Lots of Links (TRILL) Operations, Administration, and Maintenance (OAM) Framework"">RFC7174</a>]. TRILL OAM messages consist of six parts: Link Header,
TRILL Header, Flow Entropy, OAM Ethertype, OAM Message Channel, and
Link Trailer.
The OAM Message Channel carries various control information and OAM-
related data between TRILL switches, also known as RBridges or
Routing Bridges.
A common OAM Message Channel representation can be shared between
different technologies. This consistency between different OAM
technologies promotes nested fault monitoring and isolation between
technologies that share the same OAM framework.
The TRILL OAM Message Channel is formatted as specified in IEEE
Connectivity Fault Management (CFM) [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
The ITU-T Y.1731 [<a href="#ref-Y1731" title=""OAM functions and mechanisms for Ethernet based networks"">Y1731</a>] standard utilizes the same messaging format
as [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] OAM messages where applicable. This document takes a
similar stance and reuses [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] in TRILL OAM. It is assumed that
readers are familiar with [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] and [<a href="#ref-Y1731" title=""OAM functions and mechanisms for Ethernet based networks"">Y1731</a>]. Readers who are not
familiar with these documents are encouraged to review them.
This document specifies TRILL OAM fault management. It updates
[<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>] as specified in <a href="#section-3.1">Section 3.1</a>. TRILL performance monitoring
is specified in [<a href="./rfc7456" title=""Loss and Delay Measurement in Transparent Interconnection of Lots of Links (TRILL)"">RFC7456</a>].
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Conventions Used in This Document</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
Capitalized IANA Considerations terms such as "Standards Action" are
to be interpreted as described in [<a href="./rfc5226" title="">RFC5226</a>].
Acronyms used in the document include the following:
CCM - Continuity Check Message [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
DA - Destination Address
ECMP - Equal-Cost Multipath
FGL - Fine-Grained Label
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
ISS - Internal Sub-Layer Service [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
LBM - Loopback Message [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
LBR - Loopback Reply [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
MA - Maintenance Association [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] [<a href="./rfc7174" title=""Transparent Interconnection of Lots of Links (TRILL) Operations, Administration, and Maintenance (OAM) Framework"">RFC7174</a>]
MAC - Media Access Control (MAC)
MD - Maintenance Domain [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
MEP - Maintenance End Point [<a href="./rfc7174" title=""Transparent Interconnection of Lots of Links (TRILL) Operations, Administration, and Maintenance (OAM) Framework"">RFC7174</a>] [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
MIP - Maintenance Intermediate Point [<a href="./rfc7174" title=""Transparent Interconnection of Lots of Links (TRILL) Operations, Administration, and Maintenance (OAM) Framework"">RFC7174</a>] [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
MP - Maintenance Point [<a href="./rfc7174" title=""Transparent Interconnection of Lots of Links (TRILL) Operations, Administration, and Maintenance (OAM) Framework"">RFC7174</a>]
MTVM - Multi-destination Tree Verification Message
MTVR - Multi-destination Tree Verification Reply
OAM - Operations, Administration, and Maintenance [<a href="./rfc6291" title=""Guidelines for the Use of the "">RFC6291</a>]
PRI - Priority of Ethernet Frames [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
PTM - Path Trace Message
PTR - Path Trace Reply
SA - Source Address
SAP - Service Access Point [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
TRILL - Transparent Interconnection of Lots of Links [<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>]
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. General Format of TRILL OAM Packets</span>
The TRILL forwarding paradigm allows an implementation to select a
path from a set of equal-cost paths to forward a unicast TRILL Data
packet. For multi-destination TRILL Data packets, a distribution
tree is chosen by the TRILL switch that ingresses or creates the
packet. Selection of the path of choice is implementation dependent
at each hop for unicast and at the ingress for multi-destination.
However, it is a common practice to utilize Layer 2 through Layer 4
information in the frame payload for path selection.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
For accurate monitoring and/or diagnostics, OAM messages are required
to follow the same path as corresponding data packets. [<a href="./rfc7174" title=""Transparent Interconnection of Lots of Links (TRILL) Operations, Administration, and Maintenance (OAM) Framework"">RFC7174</a>]
presents the high-level format of OAM messages. The details of the
TRILL OAM frame format are defined in this document.
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. Link Header . Variable
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
+ TRILL Header + 6 or more bytes
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. Flow Entropy . 96 bytes
. .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| OAM Ethertype |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. OAM Message Channel . Variable
. .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Link Trailer | Variable
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 1: Format of TRILL OAM Messages
o Link Header: Media-dependent header. For Ethernet, this includes
the Destination MAC, Source MAC, VLAN (optional), and Ethertype
fields.
o TRILL Header: Fixed size of 6 bytes when the Extended Header is
not included [<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>].
o Flow Entropy: A 96-byte, fixed-size field. The rightmost bits of
the field MUST be padded with zeros, up to 96 bytes, when the
flow-entropy information is less than 96 bytes. Flow Entropy
enables emulation of the forwarding behavior of the desired data
packets. The Flow Entropy field starts with the Inner.MacDA. The
offset of the Inner.MacDA depends on whether extensions are
included or not as specified in [<a href="./rfc7179" title=""Transparent Interconnection of Lots of Links (TRILL): Header Extension"">RFC7179</a>] and [<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>]. Such
extensions are not commonly supported in current TRILL
implementations.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o OAM Ethertype: A 16-bit Ethertype that identifies the OAM Message
Channel that follows. This document specifies using the Ethertype
0x8902 allocated for CFM [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
o OAM Message Channel: A variable-size section that carries OAM-
related information. The message format is as specified in
[<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
o Link Trailer: Media-dependent trailer. For Ethernet, this is the
FCS (Frame Check Sequence).
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Identification of TRILL OAM Frames</span>
TRILL, as originally specified in [<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>], did not have a specific
flag or method to identify OAM frames. This document updates
[<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>] to include specific methods to identify TRILL OAM frames.
<a href="#section-3.2">Section 3.2</a> explains the details of the method.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Use of TRILL OAM Alert Flag</span>
The TRILL Header, as defined in [<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>], has two reserved bits.
This document specifies use of the reserved bit next to the Version
field in the TRILL Header as the Alert flag. The Alert flag will be
denoted by "A". RBridges MUST NOT use the "A" flag for forwarding
decisions such as the selection of which ECMP path or multi-
destination tree to select.
Implementations that comply with this document MUST utilize the "A"
flag and CFM Ethertype to identify TRILL OAM frames.
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| V |A|R|M|Op-Length| Hop Count |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Egress RBridge Nickname | Ingress RBridge Nickname |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Options...
+-+-+-+-+-+-+-+-+-+-+-+-
Figure 2: TRILL Header with the "A" Flag
o A (1 bit): Indicates this is a possible OAM frame and is subject
to specific handling as specified in this document.
All other TRILL Header fields carry the same meaning as defined in
[<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>].
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Handling of TRILL Frames with the "A" Flag</span>
The value "1" in the "A" flag indicates TRILL frames that may qualify
as OAM frames. Implementations are further REQUIRED to validate such
frames by comparing the value at the OAM Ethertype (Figure 1)
location with the CFM Ethertype "0x8902" [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]. If the value
matches, such frames are identified as TRILL OAM frames and SHOULD be
processed as discussed in <a href="#section-4">Section 4</a>.
Frames with the "A" flag set that do not contain a CFM Ethertype are
not considered OAM frames. Such frames MUST be silently discarded.
OAM-capable RBridges MUST NOT generate OAM frames to an RBridge that
is not OAM capable.
Intermediate RBridges that are not OAM capable (i.e., do not
understand the "A" flag) follow the process defined in <a href="./rfc6325#section-3.3">Section 3.3 of
[RFC6325]</a> and forward OAM frames with the "A" flag unaltered.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. OAM Capability Announcement</span>
Any given RBridge can be (1) OAM incapable, (2) OAM capable with new
extensions, or (3) OAM capable with the backwards-compatibility
method. The OAM request originator, prior to origination of the
request, is required to identify the OAM capability of the target and
generate the appropriate OAM message.
The capability flags defined in the TRILL Version sub-TLV (TRILL-VER)
[<a href="./rfc7176" title=""Transparent Interconnection of Lots of Links (TRILL) Use of IS-IS"">RFC7176</a>] will be utilized for announcing OAM capabilities. The
following OAM-related capability flags are defined:
O - OAM capable
B - Backwards-compatible OAM
A capability announcement with the "O" flag set to 1 and the "B" flag
set to 1 indicates that the originating RBridge is OAM capable but
utilizes the backwards-compatibility method defined in <a href="#appendix-A">Appendix A</a>. A
capability announcement with the "O" flag set to 1 and the "B" flag
set to 0 indicates that the originating RBridge is OAM capable and
utilizes the method specified in <a href="#section-3.2">Section 3.2</a>.
When the "O" flag is set to 0, the announcing implementation is
considered not capable of OAM, and the "B" flag is ignored.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
+-+-+-+-+-+-+-+-+
| Type | (1 byte)
+-+-+-+-+-+-+-+-+
| Length | (1 byte)
+-+-+-+-+-+-+-+-+
| Max-version | (1 byte)
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...-+-+
|A|F|O|B|Other Capabilities and Header Flags| (4 bytes)
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-...-+-+-+
0 1 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 0 1
Figure 3: TRILL-VER Sub-TLV [<a href="./rfc7176" title=""Transparent Interconnection of Lots of Links (TRILL) Use of IS-IS"">RFC7176</a>] with "O" and "B" Flags
In Figure 3, "A" is the Affinity sub-TLV support flag as indicated in
[<a href="./rfc7176" title=""Transparent Interconnection of Lots of Links (TRILL) Use of IS-IS"">RFC7176</a>], and "F" is the FGL-safe flag as indicated in [<a href="./rfc7172" title=""Transparent Interconnection of Lots of Links (TRILL): Fine-Grained Labeling"">RFC7172</a>] and
[<a href="./rfc7176" title=""Transparent Interconnection of Lots of Links (TRILL) Use of IS-IS"">RFC7176</a>]. The "O" and "B" flags are located after the "F" flag in
the Capability and Header Flags field of the TRILL-VER sub-TLV, as
depicted in Figure 3 above. Usage of the "O" and "B" flags is
discussed above.
Absence of the TRILL-VER sub-TLV means the announcing RBridge is not
OAM capable.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Identification of the OAM Message</span>
The ingress RBridge nickname allows recipients to identify the origin
of the message in most cases. However, when an out-of-band reply is
generated, the responding RBridge nickname is not easy to identify.
The [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] Sender ID TLV (1) provides methods to identify the device
by including the Chassis ID. The Chassis ID allows different
addressing formats such as IANA Address Family enumerations. IANA
has allocated Address Family Number 16396 for TRILL nickname. In
TRILL OAM, the Chassis ID sub-type of the Sender ID TLV is set to
16396, and the Chassis ID field contains the corresponding TRILL
nickname.
When the Sender ID TLV is present and the Chassis ID sub-type is set
to 16396, the sender RBridge TRILL nickname SHOULD be derived from
the nickname embedded in the Chassis ID. Otherwise, the sender
RBridge TRILL nickname SHOULD be derived from the ingress RBridge
nickname.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. TRILL OAM Layering vs. IEEE Layering</span>
This section presents the placement of the TRILL OAM shim within the
IEEE 802.1 layers. The transmit and receive processing are
explained.
+-+-+-+-+-+-+-+-+-+-+
| RBridge Layer |
| Processing |
+-+-+-+-+-+-+-+-+-+-+
|
|
+-+-+-+-+-+-+
| TRILL OAM | UP MEP
| Layer | MIP
+-+-+-+-+-+-+ Down MEP
|
|
+-+-+-+-+-+-+
(3)--------> | TRILL |
| Encap/Decap
+-+-+-+-+-+-+
|
+-+-+-+-+-+-+
(2)--------> |End-station|
| VLAN & Priority Processing
+-+-+-+-+-+-+
|
+-+-+-+-+-+-+
(1)--------> |ISS |
|Processing |
+-+-+-+-+-+-+
|
|
|
Figure 4: Placement of TRILL MP within IEEE 802.1
<a href="./rfc6325#section-4.6">[RFC6325], Section 4.6</a> as updated by [<a href="./rfc7180" title=""Transparent Interconnection of Lots of Links (TRILL): Clarifications, Corrections, and Updates"">RFC7180</a>] provides a detailed
explanation of frame processing. Please refer to those documents for
additional details and for processing scenarios not covered herein.
Sections <a href="#section-4.1">4.1</a> and <a href="#section-4.2">4.2</a> apply to links using a broadcast LAN technology
such as Ethernet.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
On links using an inherently point-to-point technology, such as PPP
[<a href="./rfc6361" title=""PPP Transparent Interconnection of Lots of Links (TRILL) Protocol Control Protocol"">RFC6361</a>], there is no Outer.MacDA, Outer.MacSA, or Outer.VLAN
because these are part of the Link Header for Ethernet. Point-to-
point links typically have Link Headers without these fields.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Processing at the ISS Layer</span>
<span class="h4"><a class="selflink" id="section-4.1.1" href="#section-4.1.1">4.1.1</a>. Receive Processing</span>
The ISS layer receives an indication from the port. It extracts DA
and SA, and it marks the remainder of the payload as M1. The ISS
layer passes on (DA, SA, M1) as an indication to the higher layer.
For TRILL Ethernet frames, this is Outer.MacDA and Outer.MacSA. M1
is the remainder of the packet.
<span class="h4"><a class="selflink" id="section-4.1.2" href="#section-4.1.2">4.1.2</a>. Transmit Processing</span>
The ISS layer receives an indication from the higher layer that
contains (DA, SA, M1). It constructs an Ethernet frame and passes
down to the port.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. End-Station VLAN and Priority Processing</span>
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>. Receive Processing</span>
Receive (DA, SA, M1) indication from the ISS layer. Extract the VLAN
ID and priority from the M1 part of the received indication (or
derive them from the port defaults or other default parameters) and
construct (DA, SA, VLAN, PRI, M2). VLAN+PRI+M2 maps to M1 in the
received indication. Pass (DA, SA, VLAN, PRI, M2) to the TRILL
Encapsulation/Decapsulation layer.
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>. Transmit Processing</span>
Receive (DA, SA, VLAN, PRI, M2) indication from the TRILL
Encapsulation/Decapsulation layer. Merge VLAN, PRI, M2 to form M1.
Pass down (DA, SA, M1) to the ISS layer.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. TRILL Encapsulation and Decapsulation Layer</span>
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. Receive Processing for Unicast Packets</span>
o Receive indication (DA, SA, VLAN, PRI, M2) from the End-Station
VLAN and Priority Processing layer.
o If the DA matches the port Local DA and the frame is of TRILL
Ethertype:
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
- Discard DA, SA, VLAN, and PRI. From M2, derive (TRILL-HDR,
iDA, iSA, i-VL, M3).
- If TRILL nickname is Local and TRILL Header Alert flag is set:
* Pass on to OAM processing.
- Else, pass on (TRILL-HDR, iDA, iSA, i-VL, M3) to the RBridge
layer.
o If the DA matches the port Local DA and the Ethertype is RBridge-
Channel [<a href="./rfc7178" title=""Transparent Interconnection of Lots of Links (TRILL): RBridge Channel Support"">RFC7178</a>]:
- Process as a possible unicast native RBridge Channel packet.
o If the DA matches the port Local DA and the Ethertype is neither
TRILL nor RBridge-Channel:
- Discard packet.
o If the DA does not match, the port is Appointed Forwarder for
VLAN, and the Ethertype is not TRILL or RBridge-Channel:
- Insert TRILL-HDR and send (TRILL-HDR, iDA, iSA,i-VL, M3)
indication to the RBridge layer (this is the TRILL Ingress
Function).
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. Transmit Processing for Unicast Packets</span>
o Receive indication (TRILL-HDR, iDA, iSA, iVL, M3) from the RBridge
layer.
o If the egress TRILL nickname is local:
- If the port is Appointed Forwarder for iVL, the port is not
configured as a trunk or point-to-point (P2P) port, the TRILL
Alert flag is set, and the OAM Ethertype is present, then:
* Strip TRILL-HDR and construct (DA, SA, VLAN, M2) (this is
the TRILL Egress Function).
- Else:
* Discard packet.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o If the egress TRILL nickname is not local:
- Insert Outer.MacDA, Outer.MacSA, Outer.VLAN, and TRILL
Ethertype, and construct (DA, SA, VLAN, M2) where M2 is (TRILL-
HDR, iDA, iSA, iVL, M).
o Forward (DA, SA, V, M2) to the End-Station VLAN and Priority
Processing layer.
<span class="h4"><a class="selflink" id="section-4.3.3" href="#section-4.3.3">4.3.3</a>. Receive Processing for Multicast Packets</span>
o Receive (DA, SA, V, M2) from the End-Station VLAN and Priority
Processing layer.
o If the DA is All-RBridges and the Ethertype is TRILL:
- Strip DA, SA, and V. From M2, extract (TRILL-HDR, iDA, iSA,
iVL, and M3).
- If the TRILL Alert flag is set and the OAM Ethertype is present
at the end of Flow Entropy:
* Perform OAM processing.
- Else, extract the TRILL Header, inner MAC addresses, and
Inner.VLAN, and pass indication (TRILL-HDR, iDA, iSA, iVL and
M3) to the TRILL RBridge layer.
o If the DA is All-IS-IS-RBridges and the Ethertype is L2-IS-IS,
then pass frame up to TRILL IS-IS processing.
o If the DA is All-RBridges or All-IS-IS-RBridges but the Ethertype
is not TRILL or L2-IS-IS respectively:
- Discard the packet.
o If the Ethertype is TRILL but the multicast DA is not All-RBridges
or if the Ethertype is L2-IS-IS but the multicast DA is not All-
IS-IS-RBridges:
- Discard the packet.
o If the DA is All-Edge-RBridges and the Ethertype is RBridge-
Channel [<a href="./rfc7178" title=""Transparent Interconnection of Lots of Links (TRILL): RBridge Channel Support"">RFC7178</a>]:
- Process as a possible multicast native RBridge Channel packet.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o If the DA is in the initial bridging/link protocols block
(01-80-C2-00-00-00 to 01-80-C2-00-00-0F) or is in the TRILL block
and not assigned for Outer.MacDA use (01-80-C2-00-00-42 to
01-80-C2-00-00-4F), then:
- The frame is not propagated through an RBridge although some
special processing may be done at the port as specified in
[<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>], and the frame may be dispatched to Layer 2
processing at the port if certain protocols are supported by
that port (examples include the Link Aggregation Protocol and
the Link-Layer Discovery Protocol).
o If the DA is some other multicast value:
- Insert TRILL-HDR and construct (TRILL-HDR, iDA, iSA, IVL, M3).
- Pass the (TRILL-HDR, iDA, iSA, IVL, M3) to the RBridge layer.
<span class="h4"><a class="selflink" id="section-4.3.4" href="#section-4.3.4">4.3.4</a>. Transmit Processing of Multicast Packets</span>
The following ignores the case of transmitting TRILL IS-IS packets.
o Receive indication (TRILL-HDR, iDA, iSA, iVL, M3) from the RBridge
layer.
o If the TRILL Header multicast ("M") flag is set, the TRILL-HDR
Alert flag is set, and the OAM Ethertype is present, then:
- Construct (DA, SA, V, M2) by inserting TRILL Outer.MacDA of
All-RBridges, Outer.MacSA, Outer.VLAN, and TRILL Ethertype. M2
here is (Ethertype TRILL, TRILL-HDR, iDA, iSA, iVL, M).
Note: A second copy of native format is not made.
o Else, if the TRILL Header multicast ("M") flag is set and the
Alert flag not set:
- If the port is Appointed Forwarder for iVL and the port is not
configured as a trunk port or a P2P port, strip TRILL-HDR, iSA,
iDA, and iVL and construct (DA, SA, V, M2) for native format.
- Make a second copy (DA, SA, V, M2) by inserting TRILL
Outer.MacDA, Outer.MacSA, Outer.VLAN, and TRILL Ethertype. M2
here is (Ethertype TRILL, TRILL-HDR, iDA, iSA, iVL, M).
o Pass the indication (DA, SA, V, M2) to the End-Station VLAN and
Priority Processing layer.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. TRILL OAM Layer Processing</span>
The TRILL OAM layer is located between the TRILL
Encapsulation/Decapsulation layer and the RBridge layer. It performs
the following: 1) identifies OAM frames that need local processing
and 2) performs OAM processing or redirects to the CPU for OAM
processing.
o Receive indication (TRILL-HDR, iDA, iSA, iVL, M3) from the RBridge
layer. M3 is the payload after Inner.VLAN iVL.
o If the TRILL Header multicast ("M") flag is set, the TRILL Alert
flag is set, and TRILL OAM Ethertype is present, then:
- If MEP or MIP is configured on the Inner.VLAN/FGL of the
packet, then:
* Discard packets that have MD-Level less than that of the MEP
or packets that do not have MD-Level present (e.g., due to
packet truncation).
* If MD-Level matches MD-Level of the MEP, then:
+ Redirect to OAM processing (Do not forward further).
* If MD-Level matches MD-Level of MIP, then:
+ Make a copy for OAM processing and continue.
* If MD-Level matches MD-Level of MEP, then:
+ Redirect the OAM packet to OAM processing and do not
forward along or forward as a native packet.
o Else, if the TRILL Alert flag is set and the TRILL OAM Ethertype
is present, then:
- If MEP or MIP is configured on the Inner.VLAN/FGL of the
packet, then:
* Discard packets that have MD-Level not present or where MD-
Level is less than that of the MEP.
* If MD-Level matches MD-Level of the MEP, then:
+ Redirect to OAM processing (do not forward further).
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
* If MD-Level matches MD-Level of MIP, then:
+ Make a copy for OAM processing and continue.
o Else, for a non-OAM packet:
- Continue.
o Pass the indication (DA, SA, V, M2) to the End-Station VLAN and
Priority Processing layer.
Note: In the receive path, the processing above compares with the
Down MEP and MIP Half functions. In the transmit processing, it
compares with Up MEP and MIP Half functions.
Appointed Forwarder is a function that the TRILL
Encapsulation/Decapsulation layer performs. The TRILL
Encapsulation/Decapsulation layer is responsible for prevention of
leaking of OAM packets as native frames.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Maintenance Associations (MAs) in TRILL</span>
[<a id="ref-8021Q">8021Q</a>] defines a Maintenance Association as a logical relationship
between a group of nodes. Each Maintenance Association (MA) is
identified with a unique MAID of 48 bytes [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]. CCM and other
related OAM functions operate within the scope of an MA. The
definition of MA is technology independent. Similarly, it is encoded
within the OAM message, not in the technology-dependent portion of
the packet. Hence, the MAID as defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] can be utilized
for TRILL OAM without modifications. This also allows us to utilize
CCM and LBM messages defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] as is.
In TRILL, an MA may contain two or more RBridges (MEPs). For
unicast, it is likely that the MA contains exactly two MEPs that are
the two end points of the flow. For multicast, the MA may contain
two or more MEPs.
For TRILL, in addition to all of the standard [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] CFM MIB
definitions, each MEP's MIB contains one or more Flow Entropy
definitions corresponding to the set of flows that the MEP monitors.
[<a id="ref-8021Q">8021Q</a>] CFM MIB is augmented to add the TRILL-specific information.
Figure 5 depicts the augmentation of the CFM MIB to add the TRILL-
specific Flow Entropy.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
MA---
|
--- MEP
|
. - Remote MEP List
.
|
--- MEP-A
|
--- MEP-B
.
|
. - Flow Entropy List { Augments IEEE8021-CFM-MIB}
|
--- (Flow Entropy-1)
|
--- (Flow Entropy-2)
|
. --- (Flow Entropy-n)
|
Other MIB entries
Figure 5: Correlation of TRILL-Augmented MIB
The detailed TRILL OAM MIB will be specified in a separate document
[<a href="#ref-TRILLOAMMIB">TRILLOAMMIB</a>].
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. MEP Addressing</span>
In IEEE CFM [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>], OAM messages address the target MEP by utilizing
a unique MAC address. In TRILL, a MEP is addressed by a combination
of the egress RBridge nickname and the Inner.VLAN/FGL.
Additionally, MEPs are represented by a 2-octet MEP-ID that is
independent of the underlying technology. In CFM [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>], the value
of MEP-ID is restricted to the range of 1 to 8191. However, on a CFM
[<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] packet, MEP-IDs are encoded as a 2-octet field. In the TRILL
Base Mode operation presented in <a href="#appendix-B">Appendix B</a>, MEP-IDs are mapped
1-to-1 with the RBridge nicknames. Hence, in TRILL, a MEP-ID MUST be
a number in the range from 1 to 65535.
At the MEP, OAM packets go through a hierarchy of OpCode
demultiplexers. The OpCode demultiplexers channel the incoming OAM
packets to the appropriate message processor (e.g., LBM). Refer to
Figure 6 for a visual depiction of these different demultiplexers.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
The demultiplexing sequence is as follows:
1. Identify the packets that need OAM processing at the local
RBridge as specified in <a href="#section-4">Section 4</a>.
a. Identify the MEP that is associated with the Inner.VLAN/FGL.
2. The MEP first validates the MD-Level and then:
a. Redirects to the MD-Level demultiplexer.
3. The MD-Level demultiplexer compares the MD-Level of the packet
against the MD-Level of the local MEPs of a given MD-Level on the
port. (Note: there can be more than one MEP at the same MD-Level
but they belong to different MAs.)
a. If the packet MD-Level is equal to the configured MD-Level of
the MEP, then pass to the OpCode demultiplexer.
b. If the packet MD-Level is less than the configured MD-Level
of the MEP, discard the packet.
c. If the packet MD-Level is greater than the configured
MD-Level of the MEP, then pass on to the next-higher MD-Level
demultiplexer, if available. Otherwise, if no such higher
MD-Level demultiplexer exists, then forward the packet as
normal data.
4. The OpCode demultiplexer compares the OpCode in the packet with
supported OpCodes.
a. If the OpCode is CCM, LBM, LBR, PTM, PTR, MTVM, or MTVR, then
pass on to the correct processor.
b. If the OpCode is unknown, then discard.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
|
.CCM LBM PTM MTVM . .
| | | |
+-+-+-+-+-+-+-+-+-+-+-+-+
| OP Code DE-Mux |--- Unknown
+-+-+-+-+-+-+-+-+-+-+-+-+
^ ^ ^
MD==Li | | |
+-+-+ +-+-+ +-+-+
| L |-->|L2 |-.- |Ln |---- >
+-+-+ +-+-+ +-+-+ |
| ^ | | |
MD<LI Drop | Drop Drop |
| |
MD not --- |TRILL OAM need local |
Present | Processing |
| |
TRILL Data ---- TRILL Data ----
------->| T |----------------- >| M |--- >
+ TRILL OAM ---- + pass through OAM ----
Figure 6: OAM Demultiplexers at MEP for Active SAP
o T: Denotes Tap. Identifies OAM frames that need local processing.
These are the packets with the Alert flag set and OAM Ethertype
present after the Flow Entropy of the packet.
o M: The post-processing merge that merges data and OAM messages
that are passed through. Additionally, the merge component
ensures, as explained earlier, that OAM packets are not forwarded
out as native frames.
o L: Denotes MD-Level processing. Packets whose MD-Level is less
than the MD-Level of the current processing step will be dropped.
Packets with equal MD-Levels are passed on to the OpCode
demultiplexer. Others are passed on to the next-level MD
processors or eventually to the merge point (M).
NOTE: LBM, LBR, MTVM, MTVR, PTM, and PTR are not subject to MA
demultiplexers. These packets do not have an MA encoded in the
packet. Adequate response can be generated to these packets, without
loss of functionality, by any of the MEPs present on that interface
or an entity within the RBridge.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Use of MIP in TRILL</span>
Maintenance Intermediate Points (MIPs) are mainly used for fault
isolation. Link Trace Messages in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] utilize a well-known
multicast MAC address, and MIPs generate responses to Link Trace
Messages. Response to Link Trace Messages or lack thereof can be
used for fault isolation in TRILL.
As explained in <a href="#section-10">Section 10</a>, a Hop Count expiry approach will be
utilized for fault isolation and path tracing. The approach is very
similar to the well-known IP trace-route approach. Hence, explicit
addressing of MIPs is not required for the purpose of fault
isolation.
Any given RBridge can have multiple MIPs located within an interface.
As such, a mechanism is required to identify which MIP should respond
to an incoming OAM message. Any MIP residing within the ingress
interface may reply to the incoming Path Trace Message without loss
of functionality or information. As specified in <a href="#section-3.4">Section 3.4</a>, the
address of the responding RBridge can be identified by means of the
Sender ID TLV (1). The Reply Ingress TLV (5) identifies the
interface id. The combination of these allows the recipient of the
response to uniquely identify the responder.
A similar approach to that presented above for MEPs can be used for
MIP processing. It is important to note that "M", the merge block of
a MIP, does not prevent OAM packets leaking out as native frames. On
edge interfaces, MEPs MUST be configured to prevent the leaking of
TRILL OAM packets out of the TRILL campus.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
PTM PTR MTVM MTVR
| | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| OP Code De-Mux |-> Unknown
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
^ ^ ^
MD==Li | | |
+-+-+ +-+-+ +-+-+
| L |- >|L2 |-.- |Ln |------+
+-+-+ +-+-+ +-+-+ |
^ |
| |
Drop | |
MD not --- |TRILL OAM |
Present | |
| v
TRILL Data ---- TRILL Data -----
------- >| T |------------------ >| M |---->
+ TRILL OAM ---- ----
Figure 7: OAM Demultiplexers at MIP for Active SAP
o T: Tap processing for MIP. All packets with the TRILL Header
Alert flag set are captured.
o L: MD-Level Processing. Packets with matching MD-Levels are
"copied" to the OpCode demultiplexer, and the original packet is
passed on to the next MD-Level processor. Other packets are
simply passed on to the next MD-Level processor without copying to
the OpCode demultiplexer.
o M: The intermediate point processing merge that merges data and
OAM messages that are passed through.
Packets that carry Path Trace Message (PTM) or Multi-destination Tree
Verification Message (MTVM) OpCodes are passed on to the respective
processors.
Packets with unknown OpCodes are counted and discarded.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Continuity Check Message (CCM)</span>
CCMs are used to monitor connectivity and configuration errors.
[<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] monitors connectivity by listening to periodic CCM messages
received from its remote MEP partners in the MA. An [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] MEP
identifies cross-connect errors by comparing the MAID in the received
CCM message with the MEP's local MAID. The MAID [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] is a 48-byte
field that is technology independent. Similarly, the MEP-ID is a
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
2-byte field that is independent of the technology. Given this
generic definition of CCM fields, CCM as defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] can be
utilized in TRILL with no changes. TRILL-specific information may be
carried in CCMs when encoded using TRILL-specific TLVs or sub-TLVs.
This is possible since CCMs may carry optional TLVs.
Unlike classical Ethernet environments, TRILL contains multipath
forwarding. The path taken by a packet depends on the payload of the
packet. The Maintenance Association (MA) identifies the interested
Maintenance End Points (MEPs) of a given monitored path. For
unicast, there are only two MEPs per MA. For multicast, there can be
two or more MEPs in the MA. The entropy values of the monitored
flows are defined within the MA. CCM transmit logic will utilize
these Flow Entropy values when constructing the CCM packets. Please
see <a href="#section-12">Section 12</a> for the theory of operation of CCM.
The MIB in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] is augmented with the definition of Flow Entropy.
Please see [<a href="#ref-TRILLOAMMIB">TRILLOAMMIB</a>] for this and other TRILL-related OAM MIB
definitions. Figure 8 depicts the correlation between MA, CCM, and
the Flow Entropy.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
MA---
|
--- MEP
|
. - Remote MEP List
.
|
--- MEP-A
|
--- MEP-B
.
|
. - Flow Entropy List {Augments IEEE8021-CFM-MIB}
|
--- (Flow Entropy-1)
|
--- (Flow Entropy-2)
|
. ---(Flow Entropy-n)
|
. - CCM
|
--- (standard 8021ag entries)
|
--- (Hop Count) { Augments IEEE8021-CFM-MIB}
|
--- (Any other TRILL OAM-specific entries)
{Augmented}
|
.
|
- Other MIB entries
Figure 8: Augmentation of CCM MIB in TRILL
In a multi-pathing environment, a flow, by definition, is
unidirectional. A question may arise as to what Flow Entropy should
be used in the response. CCMs are unidirectional and have no
explicit reply; as such, the issue of the response Flow Entropy does
not arise. In the transmitted CCM, each MEP reports local status
using the Remote Defect Indication (RDI) flag. Additionally, a MEP
may raise SNMP TRAPs [<a href="#ref-TRILLOAMMIB">TRILLOAMMIB</a>] as alarms when a connectivity
failure occurs.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. TRILL OAM Message Channel</span>
The TRILL OAM Message Channel can be divided into two parts: TRILL
OAM message header and TRILL OAM TLVs. Every OAM message MUST
contain a single TRILL OAM message header and a set of one or more
specified OAM message TLVs.
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. TRILL OAM Message Header</span>
As discussed earlier, a common messaging framework between [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>],
TRILL, and other similar standards such as Y.1731 is accomplished by
reusing the OAM message header defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|MD-L | Version | OpCode | Flags |FirstTLVOffset |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. OpCode-Specific Information .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. TLVs .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 9: OAM Message Format
o MD-L: Maintenance Domain Level (3 bits). For TRILL, in general,
this field is set to a single value across the TRILL campus. When
using the TRILL Base Mode as specified in <a href="#appendix-B">Appendix B</a>, MD-L is set
to 3. However, extension of TRILL (for example, to support
multilevel) may create different MD-Levels, and the MD-L field
must be appropriately set in those scenarios. (Please refer to
[<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] for the definition of MD-Level).
o Version: Indicates the version (5 bits) as specified in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
This document does not require changing the Version defined in
[<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
o OpCode: Operation Code (8 bits). Specifies the operation
performed by the message. See <a href="#section-8.2">Section 8.2</a>.
o Flags: Includes operational flags (1 byte). The definition of
flags is OpCode-specific and is covered in the applicable
sections.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o FirstTLVOffset: Defines the location of the first TLV, in bytes,
starting from the end of the FirstTLVOffset field (1 byte).
(Refer to [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] for the definition of the FirstTLVOffset.)
o OpCode-Specific Information: May contain Session Identification
Number, timestamp, etc.
The MD-L, Version, OpCode, Flags, and FirstTLVOffset fields
collectively are referred to as the OAM message header.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. TRILL-Specific OAM OpCodes</span>
The following TRILL-specific CFM OpCodes are defined. Each of the
OpCodes indicates a separate type of TRILL OAM message. Details of
the messages are presented in Sections <a href="#section-10">10</a> and <a href="#section-11">11</a>.
TRILL OAM message OpCodes:
64: Path Trace Reply
65: Path Trace Message
66: Multi-destination Tree Verification Reply
67: Multi-destination Tree Verification Message
Loopback and CCM Messages reuse the OpCodes defined by [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. Format of TRILL OAM TLV</span>
The same CFM TLV format as defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] is used for TRILL OAM.
The following figure depicts the general format of a TRILL OAM TLV:
0 1 2
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. Value (variable) .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 10: TRILL OAM TLV
o Type (1 octet): Specifies the type of the TLV (see <a href="#section-8.4">Section 8.4</a> for
TLV types).
o Length (2 octets): Specifies the length of the Value field in
octets. Length of the Value field can be zero or more octets.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o Value (variable): The length and the content of this field depend
on the type of TLV. Please refer to applicable TLV definitions
for details.
Semantics and usage of Type values allocated for TRILL OAM purpose
are defined by this document and other future related documents.
<span class="h3"><a class="selflink" id="section-8.4" href="#section-8.4">8.4</a>. TRILL OAM TLVs</span>
TRILL-related TLVs are defined in this section. TLVS defined in
[<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] are reused, where applicable.
<span class="h4"><a class="selflink" id="section-8.4.1" href="#section-8.4.1">8.4.1</a>. Common TLVs between CFM and TRILL</span>
The following TLVs are defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]. We reuse them where
applicable. The format and semantics of the TLVs are as defined in
[<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
Type Name of TLV in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
---- ----------------------
0 End TLV
1 Sender ID TLV
2 Port Status TLV
3 Data TLV
4 Interface Status TLV
5 Reply Ingress TLV
6 Reply Egress TLV
7 LTM Egress Identifier TLV
8 LTR Egress Identifier TLV
9-30 Reserved
31 Organization Specific TLV
<span class="h4"><a class="selflink" id="section-8.4.2" href="#section-8.4.2">8.4.2</a>. TRILL OAM-Specific TLVs</span>
Listed below is a summary of TRILL OAM TLVs and their corresponding
codes. Format and semantics of TRILL OAM TLVs are defined in
subsequent sections.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Type TLV Name
---- ------------------------------------
64 TRILL OAM Application Identifier TLV
65 Out-of-Band Reply Address TLV
66 Diagnostic Label TLV
67 Original Data Payload TLV
68 RBridge Scope TLV
69 Previous RBridge Nickname TLV
70 Next-Hop RBridge List TLV
71 Multicast Receiver Port Count TLV
72 Flow Identifier TLV
73 Reflector Entropy TLV
74 Authentication TLV
The TRILL OAM Application Identifier TLV (64) MUST be the first TLV.
An End TLV (0) MUST be included as the last TLV. All other TLVs can
be included in any order.
<span class="h4"><a class="selflink" id="section-8.4.3" href="#section-8.4.3">8.4.3</a>. TRILL OAM Application Identifier TLV</span>
The TRILL OAM Application Identifier TLV carries information specific
to TRILL OAM applications. The TRILL OAM Application Identifier TLV
MUST always be present and MUST be the first TLV in TRILL OAM
messages. Messages that do not include the TRILL OAM Application
Identifier TLV as the first TLV MUST be discarded by a TRILL MP.
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Version |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved1 | Fragment-ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Return Code |Return Sub-code| Reserved2 |F|C|O|I|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 11: TRILL OAM Application Identifier TLV
o Type (1 octet): 64, TRILL OAM Application Identifier TLV
o Length (2 octets): 9
o Version (1 octet): Currently set to zero. Indicates the TRILL OAM
version. The TRILL OAM version can be different than the [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
version.
o Reserved1 (3 octets): Set to zero on transmission and ignored on
reception.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o Fragment-ID (1 octet): Indicates the fragment number of the
current message. This applies only to reply messages; in request
messages, it must be set to zero on transmission and ignored on
receipt. The "F" flag defined below MUST be set with the final
message, whether it is the last fragment of the fragmented message
or the only message of the reply. <a href="#section-13">Section 13</a> provides more
details on OAM message fragmentation.
o Return Code (1 octet): Set to zero on requests. Set to an
appropriate value in response messages.
o Return Sub-code (1 octet): Set to zero on transmission of request
message. The Return Sub-code identifies categories within a
specific Return Code and MUST be interpreted within a Return Code.
o Reserved2 (12 bits): Set to zero on transmission and ignored on
reception.
o F (1 bit): Final flag. When set, indicates this is the last
response.
o C (1 bit): Cross-Connect Error flag (VLAN/FGL mapping error). If
set, indicates that the label (VLAN/FGL) in the Flow Entropy is
different than the label included in the Diagnostic Label TLV.
This field is ignored in request messages and MUST only be
interpreted in response messages.
o O (1 bit): If set, indicates OAM out-of-band response requested.
o I (1 bit): If set, indicates OAM in-band response requested.
NOTE: When both O and I bits are set to zero, this indicates that no
response is required (silent mode). Users MAY specify both O and I,
one of them, or none. When both O and I bits are set, the response
is sent both in-band and out-of-band.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h4"><a class="selflink" id="section-8.4.4" href="#section-8.4.4">8.4.4</a>. Out-of-Band Reply Address TLV</span>
The Out-of-Band Reply Address TLV specifies the address to which an
out-of-band OAM reply message MUST be sent. When the O bit in the
TRILL Version sub-TLV (<a href="#section-3.3">Section 3.3</a>) is not set, the Out-of-Band Reply
Address TLV is ignored.
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Address Type |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Addr Length | |
+-+-+-+-+-+-+-+-+ |
| |
. Reply Address .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 12: Out-of-Band Reply Address TLV
o Type (1 octet): 65, Out-of-Band Reply Address TLV
o Length (2 octets): Variable. Minimum length is 2 + the length (in
octets) of the shortest address. Currently, the minimum value of
this field is 4, but this could change in the future if a new
address shorter than the TRILL nickname is defined.
o Address Type (1 octet):
0 - IPv4
1 - IPv6
2 - TRILL nickname
All other values reserved.
o Addr Length (1 octet): Depends on the Address Type. Currently,
defined values are:
4 - IPv4
16 - IPv6
2 - TRILL nickname
Other lengths may be acceptable for future Address Types.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o Reply Address (variable): Address where the reply needs to be
sent. Length depends on the address specification.
<span class="h4"><a class="selflink" id="section-8.4.5" href="#section-8.4.5">8.4.5</a>. Diagnostic Label TLV</span>
The Diagnostic Label TLV specifies the data label (VLAN or FGL) in
which the OAM messages are generated. Receiving RBridge MUST compare
the data label of the Flow Entropy to the data label specified in the
Diagnostic Label TLV. The "C" flag (Cross Connect Error) in the
response (TRILL OAM Application Identifier TLV; <a href="#section-8.4.3">Section 8.4.3</a>) MUST
be set when the two VLANs do not match.
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | L-Type |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved | Label |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 13: Diagnostic Label TLV
o Type (1 octet): 66, Diagnostic Label TLV
o Length (2 octets): 5
o L-Type (1 octet): Label type
0 - Indicates a right-justified 802.1Q 12-bit VLAN padded on the
left with bits that must be sent as zero and ignored on
receipt
1 - Indicates a TRILL 24-bit fine-grained label
o Reserved (1 octet): Set to zero on transmission and ignored on
reception.
o Label (24 bits): Either 12-bit VLAN or 24 bit fine-grained label.
RBridges do not perform label error checking when the Diagnostic
Label TLV is not included in the OAM message. In certain
deployments, intermediate devices may perform label translation. In
such scenarios, the originator should not include the Diagnostic
Label TLV in OAM messages. Inclusion of Diagnostic Label TLV will
generate unwanted label error notifications.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h4"><a class="selflink" id="section-8.4.6" href="#section-8.4.6">8.4.6</a>. Original Data Payload TLV</span>
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
| |
. Original Payload .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 14: Original Data Payload TLV
o Type (1 octet): 67, Original Data Payload TLV
o Length (2 octets): variable
o Original Payload: The original TRILL Header and Flow Entropy.
Used in constructing replies to the Loopback Message (see
<a href="#section-9">Section 9</a>) and the Path Trace Message (see <a href="#section-10">Section 10</a>).
<span class="h4"><a class="selflink" id="section-8.4.7" href="#section-8.4.7">8.4.7</a>. RBridge Scope TLV</span>
The RBridge Scope TLV identifies nicknames of RBridges from which a
response is required. The RBridge Scope TLV is only applicable to
Multi-destination Tree Verification Messages. This TLV SHOULD NOT be
included in other messages. Receiving RBridges MUST ignore this TLV
on messages other than Multi-destination Tree Verification Messages.
Each TLV can contain up to 255 nicknames of in-scope RBridges. A
Multi-destination Tree Verification Message may contain multiple
RBridge scope TLVs, in the event that more than 255 in-scope RBridges
need to be specified.
Absence of the RBridge Scope TLV indicates that a response is needed
from all the RBridges. Please see <a href="#section-11">Section 11</a> for details.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | nOfnicknames |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Nickname-1 | Nickname-2 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
. .
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | Nickname-n |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 15: RBridge Scope TLV
o Type (1 octet): 68, RBridge Scope TLV
o Length (2 octets): Variable. Minimum value is 1.
o nOfnicknames (1 octet): Indicates the number of nicknames included
in this TLV. Zero (0) indicates no nicknames are included in the
TLV. When this field is set to zero (0), the Length field MUST be
set to 1.
o Nickname (2 octets): 16-bit RBridge nickname
<span class="h4"><a class="selflink" id="section-8.4.8" href="#section-8.4.8">8.4.8</a>. Previous RBridge Nickname TLV</span>
The Previous RBridge Nickname TLV identifies the nickname or
nicknames of the previous RBridge. [<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>] allows a given RBridge
to hold multiple nicknames.
The Previous RBridge Nickname TLV is an optional TLV. Multiple
instances of this TLV MAY be included when an upstream RBridge is
represented by more than 255 nicknames (highly unlikely).
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved (continued) | Nickname |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 16: Previous RBridge Nickname TLV
o Type (1 octet): 69, Previous RBridge Nickname TLV
o Length (2 octets): 5
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o Reserved (3 octet): Set to zero on transmission and ignored on
reception.
o Nickname (2 octets): RBridge nickname
<span class="h4"><a class="selflink" id="section-8.4.9" href="#section-8.4.9">8.4.9</a>. Next-Hop RBridge List TLV</span>
The Next-Hop RBridge List TLV identifies the nickname or nicknames of
the downstream next-hop RBridges. [<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>] allows a given RBridge
to have multiple equal-cost paths to a specified destination. Each
next-hop RBridge is represented by one of its nicknames.
The Next-Hop RBridge List TLV is an optional TLV. Multiple instances
of this TLV MAY be included when there are more than 255 equal-cost
paths to the destination.
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | nOfnicknames |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Nickname-1 | Nickname-2 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
. .
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | Nickname-n |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 17: Next-Hop RBridge List TLV
o Type (1 octet): 70, Next-Hop RBridge List TLV
o Length (2 octets): Variable. Minimum value is 1.
o nOfnicknames (1 octet): Indicates the number of nicknames included
in this TLV. Zero (0) indicates no nicknames are included in the
TLV. When this field is set to zero (0), the Length field MUST be
set to 1.
o Nickname (2 octets): 16-bit RBridge nickname
<span class="h4"><a class="selflink" id="section-8.4.10" href="#section-8.4.10">8.4.10</a>. Multicast Receiver Port Count TLV</span>
The Multicast Receiver Port Count TLV identifies the number of ports
interested in receiving the specified multicast stream within the
responding RBridge on the label (VLAN or FGL) specified by the
Diagnostic Label TLV.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
The Multicast Receiver Port Count TLV is an optional TLV.
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Number of Receivers |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 18: Multicast Receiver Port Count TLV
o Type (1 octet): 71, Multicast Receiver Port Count TLV
o Length (2 octets): 5
o Reserved (1 octet): Set to zero on transmission and ignored on
reception.
o Number of Receivers (4 octets): Indicates the number of multicast
receivers available on the responding RBridge on the label
specified by the diagnostic label.
<span class="h4"><a class="selflink" id="section-8.4.11" href="#section-8.4.11">8.4.11</a>. Flow Identifier TLV</span>
The Flow Identifier TLV uniquely identifies a specific flow. The
flow-identifier value is unique per MEP and needs to be interpreted
as such.
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MEP-ID | flow-identifier |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 19: Flow Identifier TLV
o Type (1 octet): 72, Flow Identifier TLV
o Length (2 octets): 5
o Reserved (1 octet): Set to 0 on transmission and ignored on
reception.
o MEP-ID (2 octets): MEP-ID of the originator [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]. In TRILL,
MEP-ID can take a value from 1 to 65535.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o flow-identifier (2 octets): Uniquely identifies the flow per MEP.
Different MEPs may allocate the same flow-identifier value. The
{MEP-ID, flow-identifier} pair is globally unique.
Inclusion of the MEP-ID in the Flow Identifier TLV allows the
inclusion of a MEP-ID for messages that do not contain a MEP-ID in
their OAM header. Applications may use MEP-ID information for
different types of troubleshooting.
<span class="h4"><a class="selflink" id="section-8.4.12" href="#section-8.4.12">8.4.12</a>. Reflector Entropy TLV</span>
The Reflector Entropy TLV is an optional TLV. This TLV, when
present, tells the responder to utilize the Reflector Entropy
specified within the TLV as the flow-entropy of the response message.
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. Reflector Entropy .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 20: Reflector Entropy TLV
o Type (1 octet): 73, Reflector Entropy TLV
o Length (2 octets): 97
o Reserved (1 octet): Set to zero on transmission and ignored by the
recipient.
o Reflector Entropy (96 octets): Flow Entropy to be used by the
responder. May be padded with zeros if the desired flow-entropy
information is less than 96 octets.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h4"><a class="selflink" id="section-8.4.13" href="#section-8.4.13">8.4.13</a>. Authentication TLV</span>
The Authentication TLV is an optional TLV that can appear in any OAM
message or reply in TRILL.
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Auth Type |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. Authentication Value .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 21: Authentication TLV
o Type (1 octet): 74, Authentication TLV
o Length (2 octets): Variable
o The Auth Type and following Authentication Value are the same as
the Auth Type and following value for the [<a href="#ref-IS-IS" title=""Information technology -- Telecommunications and information exchange between systems -- Intermediate System to Intermediate System intra-domain routeing information exchange protocol for use in conjunction with the protocol for providing the connectionless-mode network service (ISO 8473)"">IS-IS</a>] Authentication
TLV. It is RECOMMENDED that Auth Type 3 be used. Auth Types 0,
1, 2, and 54 MUST NOT be used. With Auth Type 3, the
Authentication TLV is as follows:
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Auth Type = 3 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key ID | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ .
. Authentication Data (variable) .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 22: Authentication TLV with Auth Type 3
With Auth Type 3, the process is generally as specified in [<a href="./rfc5310" title=""IS-IS Generic Cryptographic Authentication"">RFC5310</a>]
using the same Key ID space as TRILL [<a href="#ref-IS-IS" title=""Information technology -- Telecommunications and information exchange between systems -- Intermediate System to Intermediate System intra-domain routeing information exchange protocol for use in conjunction with the protocol for providing the connectionless-mode network service (ISO 8473)"">IS-IS</a>]. The area covered by
the Authentication TLV is from the beginning of the TRILL Header to
the end of the TRILL OAM Message Channel; the Link Header and Trailer
are not included. The TRILL Header Alert, Reserved bit, and Hop
Count are treated as zero for the purposes of computing and verifying
the Authentication Data.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Key distribution is out of the scope of this document as the keying
distributed for IS-IS is used.
An RBridge supporting OAM authentication can be configured to either
(1) ignore received OAM Authentication TLVs and not send them, (2)
ignore received OAM Authentication TLVs but include them in all OAM
packets sent, or (3) to include Authentication TLVs in all OAM
messages sent and enforce authentication of OAM messages received.
When an RBridge is enforcing authentication, it discards any OAM
message subject to OAM processing that does not contain an
Authentication TLV or an Authentication TLV does not verify.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Loopback Message</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Loopback Message Format</span>
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|MD-L | Version | OpCode | Flags |FirstTLVOffset |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Loopback Transaction Identifier |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. TLVs .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 23: Loopback Message Format
The figure above depicts the format of the Loopback Request and
Response messages as defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]. The OpCode for the Loopback
Message is set to 3, and the OpCode for the reply message is set to 2
[<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]. The Loopback Transaction Identifier (commonly called the
Session Identification Number or Session ID in this document) is a
32-bit integer that allows the requesting RBridge to uniquely
identify the corresponding session. Responding RBridges, without
modification, MUST echo the received "Loopback Transaction
Identifier" number.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Theory of Operation</span>
<span class="h4"><a class="selflink" id="section-9.2.1" href="#section-9.2.1">9.2.1</a>. Actions by Originator RBridge</span>
The originator RBridge takes the following actions:
o Identifies the destination RBridge nickname based on user
specification or based on the specified destination MAC or IP
address.
o Constructs the Flow Entropy based on user-specified parameters or
implementation-specific default parameters.
o Constructs the TRILL OAM header: sets the OpCode to Loopback
Message type (3) [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]. Assigns applicable Loopback Transaction
Identifier number for the request.
o The TRILL OAM Application Identifier TLV MUST be included with the
flags set to applicable values.
o Includes following OAM TLVs, where applicable:
- Out-of-Band Reply Address TLV
- Diagnostic Label TLV
- Sender ID TLV
o Specifies the Hop Count of the TRILL Data frame per user
specification or utilize an applicable Hop Count value.
o Dispatches the OAM frame for transmission.
RBridges may continue to retransmit the request at periodic intervals
until a response is received or the retransmission count expires. At
each transmission, the Session Identification Number MUST be
incremented.
<span class="h4"><a class="selflink" id="section-9.2.2" href="#section-9.2.2">9.2.2</a>. Intermediate RBridge</span>
Intermediate RBridges forward the frame as a normal data frame; no
special handling is required.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h4"><a class="selflink" id="section-9.2.3" href="#section-9.2.3">9.2.3</a>. Destination RBridge</span>
If the Loopback Message is addressed to the local RBridge and
satisfies the OAM identification criteria specified in <a href="#section-3.1">Section 3.1</a>,
then the RBridge data plane forwards the message to the CPU for
further processing.
The TRILL OAM application layer further validates the received OAM
frame by checking for the presence of OAM Ethertype at the end of the
Flow Entropy. Frames that do not contain OAM Ethertype at the end of
the Flow Entropy MUST be discarded.
Construction of the TRILL OAM response:
o The TRILL OAM application encodes the received TRILL Header and
Flow Entropy in the Original Data Payload TLV and includes it in
the OAM message.
o Set the Return Code to (1) "Reply" and Return Sub-code to zero (0)
"Valid Response". Update the TRILL OAM OpCode to 2 (Loopback
Message Reply).
o Optionally, if the VLAN/FGL identifier value of the received Flow
Entropy differs from the value specified in the Diagnostic Label
TLV, set the "C" flag (Cross Connect Error) in the TRILL OAM
Application Identifier TLV.
o Include the Sender ID TLV (1).
o If in-band response was requested, dispatch the frame to the TRILL
data plane with request-originator RBridge nickname as the egress
RBridge nickname.
o If out-of-band response was requested, dispatch the frame to the
IP forwarding process.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Path Trace Message</span>
The primary use of the Path Trace Message is for fault isolation. It
may also be used for plotting the path taken from a given RBridge to
another RBridge.
[<a id="ref-8021Q">8021Q</a>] accomplishes the objectives of the TRILL Path Trace Message
using Link Trace Messages. Link Trace Messages utilize a well-known
multicast MAC address. This works for [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] because both the
unicast and multicast paths are congruent. However, in TRILL,
multicast and unicast are not congruent. Hence, TRILL OAM uses a new
message format: the Path Trace Message.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
The Path Trace Message has the same format as the Loopback Message.
The OpCode for Path Trace Reply is 64, and the OpCode for the Path
Trace Message is 65.
Operation of the Path Trace Message is identical to the Loopback
Message except that it is first transmitted with a TRILL Header Hop
Count field value of 1. The sending RBridge expects an "Intermediate
RBridge" Return Sub-code from the next hop or a "Valid response"
Return Sub-code response from the destination RBridge. If an
"Intermediate RBridge" Return Sub-code is received in the response,
the originator RBridge records the information received from the
intermediate node that generated the message and resends the message
by incrementing the previous Hop Count value by 1. This process is
continued until, a response is received from the destination RBridge,
a Path Trace process timeout occurs, or the Hop Count reaches a
configured maximum value.
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Theory of Operation</span>
<span class="h4"><a class="selflink" id="section-10.1.1" href="#section-10.1.1">10.1.1</a>. Actions by Originator RBridge</span>
The originator RBridge takes the following actions:
o Identifies the destination RBridge based on user specification or
based on location of the specified MAC address.
o Constructs the Flow Entropy based on user-specified parameters or
implementation-specific default parameters.
o Constructs the TRILL OAM header: set the OpCode to Path Trace
Message type (65). Assign an applicable Session Identification
number for the request. Return Code and Return Sub-code MUST be
set to zero.
o The TRILL OAM Application Identifier TLV MUST be included with the
flags set to applicable values.
o Includes the following OAM TLVs, where applicable:
- Out-of-Band Reply Address TLV
- Diagnostic Label TLV
- Sender ID TLV
o Specifies the Hop Count of the TRILL Data frame as 1 for the first
request.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o Dispatches the OAM frame to the TRILL data plane for transmission.
An RBridge may continue to retransmit the request at periodic
intervals until a response is received or the retransmission count
expires. At each new retransmission, the Session Identification
number MUST be incremented. Additionally, for responses received
from intermediate RBridges, the RBridge nickname and interface
information MUST be recorded.
<span class="h4"><a class="selflink" id="section-10.1.2" href="#section-10.1.2">10.1.2</a>. Intermediate RBridge</span>
Path Trace Messages transit through Intermediate RBridges
transparently, unless the Hop Count has expired.
The TRILL OAM application layer further validates the received OAM
frame by examining the presence of the TRILL Alert flag and OAM
Ethertype at the end of the Flow Entropy and by examining the
MD-Level. Frames that do not contain OAM Ethertype at the end of the
Flow Entropy MUST be discarded.
Construction of the TRILL OAM response:
o The TRILL OAM application encodes the received TRILL Header and
Flow Entropy in the Original Data Payload TLV and includes it in
the OAM message.
o Set the Return Code to (1) "Reply" and Return Sub-code to two (2)
"Intermediate RBridge". Update the TRILL OAM OpCode to 64 (Path
Trace Reply).
o If the VLAN/FGL identifier value of the received Flow Entropy
differs from the value specified in the diagnostic label, set the
"C" flag (Cross Connect Error) in the TRILL OAM Application
Identifier TLV.
o Include the following TLVs:
- Previous RBridge Nickname TLV (69)
- Reply Ingress TLV (5)
- Reply Egress TLV (6)
- Interface Status TLV (4)
- Next-Hop RBridge List TLV (70) (Repeat for each ECMP)
- Sender ID TLV (1)
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o If a cross-connect error is detected, set the "C" flag (Cross-
Connect Error) in the reply's TRILL OAM Application Identifier
TLV.
o If in-band response was requested, dispatch the frame to the TRILL
data plane with request-originator RBridge nickname as the egress
RBridge nickname.
o If out-of-band response was requested, dispatch the frame to the
standard IP forwarding process.
<span class="h4"><a class="selflink" id="section-10.1.3" href="#section-10.1.3">10.1.3</a>. Destination RBridge</span>
Processing is identical to that in <a href="#section-10.1.2">Section 10.1.2</a> with the exception
that the TRILL OAM OpCode is set to Path Trace Reply (64).
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Multi-Destination Tree Verification Message (MTVM)</span>
Multi-destination Tree Verification Messages allow verifying TRILL
distribution tree integrity and pruning. TRILL VLAN/FGL and
multicast pruning are described in [<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>], [<a href="./rfc7180" title=""Transparent Interconnection of Lots of Links (TRILL): Clarifications, Corrections, and Updates"">RFC7180</a>], and
[<a href="./rfc7172" title=""Transparent Interconnection of Lots of Links (TRILL): Fine-Grained Labeling"">RFC7172</a>]. Multi-destination Tree Verification and Multicast Group
Verification Messages are designed to detect pruning defects.
Additionally, these tools can be used for plotting a given multicast
tree within the TRILL campus.
Multi-destination Tree Verification OAM frames are copied to the CPU
of every intermediate RBridge that is part of the distribution tree
being verified. The originator of the Multi-destination Tree
Verification Message specifies the scope of RBridges from which a
response is required. Only the RBridges listed in the scope field
respond to the request. Other RBridges silently discard the request.
Inclusion of the scope field is required to prevent receiving an
excessive number of responses. The typical scenario of distribution
tree verification or group verification involves verifying multicast
connectivity to a selected set of end nodes as opposed to the entire
network. Availability of the scope facilitates narrowing down the
focus to only the RBridges of interest.
Implementations MAY choose to rate-limit CPU-bound multicast traffic.
As a result of rate-limiting or due to other congestion conditions,
MTVM messages may be discarded from time to time by the intermediate
RBridges, and the requester may be required to retransmit the
request. Implementations SHOULD narrow the embedded scope of
retransmission requests only to RBridges that have failed to respond.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h3"><a class="selflink" id="section-11.1" href="#section-11.1">11.1</a>. MTVM Format</span>
The format of MTVM is identical to the Loopback Message format
defined in <a href="#section-9">Section 9</a> with the exception that the OpCode used is 67.
<span class="h3"><a class="selflink" id="section-11.2" href="#section-11.2">11.2</a>. Theory of Operation</span>
<span class="h4"><a class="selflink" id="section-11.2.1" href="#section-11.2.1">11.2.1</a>. Actions by Originator RBridge</span>
The user is required, at a minimum, to specify either the
distribution trees that need to be verified, the Multicast MAC
address and VLAN/FGL, or the VLAN/FGL and Multicast Destination IP
address. Alternatively, for more specific multicast flow
verification, the user MAY specify more information, e.g., source MAC
address, VLAN/FGL, and Destination and Source IP addresses.
Implementations, at a minimum, must allow the user to specify a
choice of distribution trees, Destination Multicast MAC address, and
VLAN/FGL that needs to be verified. Although it is not mandatory, it
is highly desired to provide an option to specify the scope. It
should be noted that the source MAC address and some other parameters
may not be specified if the backwards-compatibility method in
<a href="#appendix-A">Appendix A</a> is used to identify the OAM frames.
Default parameters MUST be used for unspecified parameters. Flow
Entropy is constructed based on user-specified parameters and/or
default parameters.
Based on user specified parameters, the originating RBridge does the
following:
o Identifies the nickname that represents the multicast tree.
o Obtains the applicable Hop Count value for the selected multicast
tree.
o Constructs TRILL OAM message header and includes the Session
Identification number. The Session Identification Number
facilitates the originator mapping the response to the correct
request.
o Includes the TRILL OAM Application Identifier TLV, which MUST be
included.
o Includes the OpCode Multicast Tree Verification Message (67).
o Includes RBridge Scope TLV (68).
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o Optionally, includes the following TLVs, where applicable:
- Out-of-Band IP Address TLV (65)
- Diagnostic Label TLV (66)
- Sender ID TLV (1)
o Specifies the Hop Count of the TRILL Data frame per user
specification or alternatively utilizes the applicable Hop Count
value if the TRILL Hop Count is not being specified by the user.
o Dispatches the OAM frame to the TRILL data plane to be ingressed
for transmission.
The RBridge may continue to retransmit the request at a periodic
interval until either a response is received or the retransmission
count expires. At each new retransmission, the Session
Identification Number MUST be incremented. At each retransmission,
the RBridge may further reduce the scope to the RBridges that it has
not received a response from.
<span class="h4"><a class="selflink" id="section-11.2.2" href="#section-11.2.2">11.2.2</a>. Receiving RBridge</span>
Receiving RBridges identify multicast verification frames per the
procedure explained in <a href="#section-3.2">Section 3.2</a>.
The RBridge validates the frame and analyzes the scope RBridge list.
If the RBridge Scope TLV is present and the local RBridge nickname is
not specified in the scope list, it will silently discard the frame.
If the local RBridge is specified in the scope list OR the RBridge
Scope TLV is absent, the receiving RBridge proceeds with further
processing as defined in <a href="#section-11.2.3">Section 11.2.3</a>.
<span class="h4"><a class="selflink" id="section-11.2.3" href="#section-11.2.3">11.2.3</a>. In-Scope RBridges</span>
Construction of the TRILL OAM response:
o The TRILL OAM application encodes the received TRILL Header and
Flow Entropy in the Original Data Payload TLV and includes them in
the OAM message.
o Set the Return Code to zero (0) and Return Sub-code to zero (0).
Update the TRILL OAM OpCode to 66 (Multi-destination Tree
Verification Reply).
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o Include following TLVs:
- Previous RBridge Nickname TLV (69)
- Reply Ingress TLV (5)
- Interface Status TLV (4)
- Next-Hop RBridge List TLV (70)
- Sender ID TLV (1)
- Multicast Receiver Port Count TLV (71)
o If a VLAN/FGL cross-connect error is detected, set the "C" flag
(Cross-Connect Error) in the TRILL OAM Application Identifier TLV.
o If in-band response was requested, dispatch the frame to the TRILL
data plane with request-originator RBridge nickname as the egress
RBridge nickname.
o If out-of-band response was requested, dispatch the frame to the
standard IP forwarding process.
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Application of Continuity Check Message (CCM) in TRILL</span>
<a href="#section-7">Section 7</a> provides an overview of CCM Messages defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] and
how they can be used within TRILL OAM. This section presents the
application and theory of operations of CCM within the TRILL OAM
framework. Readers are referred to [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] for CCM message format
and applicable TLV definitions and usages. Only the TRILL-specific
aspects are explained below.
In TRILL, between any two given MEPs, there can be multiple potential
paths. Whereas in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>], there is always a single path between any
two MEPs at any given time. [<a href="./rfc6905" title=""Requirements for Operations, Administration, and Maintenance (OAM) in Transparent Interconnection of Lots of Links (TRILL)"">RFC6905</a>] requires solutions to have the
ability to monitor continuity over one or more paths.
CCM Messages are uni-directional, such that there is no explicit
response to a received CCM message. Connectivity status is indicated
by setting the applicable flags (e.g., RDI) of the CCM messages
transmitted by a MEP.
It is important that the solution presented in this document
accomplishes the requirements specified in [<a href="./rfc6905" title=""Requirements for Operations, Administration, and Maintenance (OAM) in Transparent Interconnection of Lots of Links (TRILL)"">RFC6905</a>] within the
framework of [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] in a straightforward manner and with minimum
changes. <a href="#section-8">Section 8</a> defines multiple flows within the CCM object,
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
each corresponding to a flow that a given MEP wishes to monitor.
Hence, CCM, in multipath environments like TRILL, monitors per-flow
connectivity and cross-connect errors.
Receiving MEPs do not cross-check whether a received CCM belongs to a
specific flow from the originating RBridge. Any attempt to track
status of individual flows may explode the amount of state
information that any given RBridge has to maintain.
The obvious question arises: how does the originating RBridge know
which flow or flows are at fault?
This is accomplished with a combination of the RDI flag in the CCM
header, Flow Identifier TLV, and SNMP Notifications (Traps).
<a href="#section-12.1">Section 12.1</a> discusses the procedure.
<span class="h3"><a class="selflink" id="section-12.1" href="#section-12.1">12.1</a>. CCM Error Notification</span>
Each MEP transmits four CCM messages per each flow. ([<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] detects
CCM fault when three consecutive CCM messages are lost). Each CCM
message has a unique sequence number (Session ID) and unique flow-
identifier. The flow-identifier is included in the OAM message via
the Flow Identifier TLV.
When a MEP notices a CCM timeout from a remote MEP (MEP-A), it sets
the RDI flag on the next CCM message it generates. Additionally, it
logs and sends an SNMP notification that contains the remote MEP
Identification, flow-identifier, and the sequence number of the last
CCM message it received, and, if available, the flow-identifier and
the sequence number of the first CCM message it received after the
failure. Each MEP maintains a unique flow-identifier per each flow;
hence, the operator can easily identify flows that correspond to the
specific flow-identifier.
The following example illustrates the above.
Assume there are two MEPs: MEP-A and MEP-B.
Assume there are three flows between MEP-A and MEP-B.
Let's assume MEP-A allocates sequence numbers as follows:
Flow-1 Sequence={1,2,3,4,13,14,15,16,.. } flow-identifier=(1)
Flow-2 Sequence={5,6,7,8,17,18,19,20,.. } flow-identifier=(2)
Flow-3 Sequence={9,10,12,11,21,22,23,24,.. } flow-identifier=(3)
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Let's assume Flow-2 is at fault.
MEP-B receives CCM from MEP-A with sequence numbers 1, 2, 3, and 4
but did not receive 5, 6, 7, and 8. CCM timeout is set to three CCM
intervals in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]. Hence, MEP-B detects the error at the 8th CCM
message. At this time, the sequence number of the last good CCM
message MEP-B has received from MEP-A is 4, and the flow-identifier
of the last good CCM Message is (1). Hence, MEP-B will generate a
CCM error SNMP notification with MEP-A, last good flow-identifier
(1), and sequence number 4.
When MEP-A switches to Flow-3 after transmitting Flow-2, MEP-B will
start receiving CCM messages. In the foregoing example, it will be a
CCM message with sequence numbers 9, 10, 11, 12, and 21 and so on.
When in receipt of a new CCM message from a specific MEP, after a CCM
timeout, the TRILL OAM will generate an SNMP Notification of CCM
resume with remote MEP-ID, the first valid flow-identifier, and the
sequence number after the CCM timeout. In the foregoing example, it
is MEP-A, flow-identifier (3), and sequence number 9.
The remote MEP list under the CCM MIB Object is augmented to contain
"Last Sequence Number", flow-identifier, and "CCM Timeout" variables.
"Last Sequence Number" and flow-identifier are updated every time a
CCM is received from a remote MEP. The CCM Timeout variable is set
when the CCM timeout occurs and is cleared when a CCM is received.
<span class="h3"><a class="selflink" id="section-12.2" href="#section-12.2">12.2</a>. Theory of Operation</span>
<span class="h4"><a class="selflink" id="section-12.2.1" href="#section-12.2.1">12.2.1</a>. Actions by Originator RBridge</span>
The originator RBridge takes the following actions:
o Derives the Flow Entropy field based on flow-entropy information
specified in the CCM Management object.
o Constructs the TRILL CCM OAM header as specified in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
o The TRILL OAM Application Identifier TLV MUST be included as the
first TLV with the flags set to applicable values.
o Includes other TLVs specified in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
o Includes the following optional TLV, where applicable:
- Sender ID TLV (1)
o Specifies the Hop Count of the TRILL Data frame per user
specification or utilize an applicable Hop Count value.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
o Dispatches the OAM frame to the TRILL data plane for transmission.
An RBridge transmits a total of four requests, each at CCM
retransmission interval. At each transmission, the Session
Identification number MUST be incremented by one.
At the 5th retransmission interval, the Flow Entropy of the CCM
packet is updated to the next flow-entropy information specified in
the CCM Management object. If the current Flow Entropy is the last
Flow Entropy specified, move to the first Flow Entropy specified and
continue the process.
<span class="h4"><a class="selflink" id="section-12.2.2" href="#section-12.2.2">12.2.2</a>. Intermediate RBridge</span>
Intermediate RBridges forward the frame as a normal data frame; no
special handling is required.
<span class="h4"><a class="selflink" id="section-12.2.3" href="#section-12.2.3">12.2.3</a>. Destination RBridge</span>
If the CCM Message is addressed to the local RBridge or multicast and
satisfies the OAM identification methods specified in <a href="#section-3.2">Section 3.2</a>,
then the RBridge data plane forwards the message to the CPU for
further processing.
The TRILL OAM application layer further validates the received OAM
frame by examining the presence of OAM Ethertype at the end of the
Flow Entropy. Frames that do not contain OAM Ethertype at the end of
the Flow Entropy MUST be discarded.
The TRILL OAM application layer then validates the MD-Level and pass
the packet to the OpCode demultiplexer. The OpCode demultiplexer
delivers CCM packets to the CCM process.
The CCM process performs the processing specified in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>].
Additionally, the CCM process updates the CCM Management object with
the sequence number of the received CCM packet. Note: The last
received CCM sequence number and CCM timeout are tracked per each
remote MEP.
If the CCM timeout is true for the sending remote MEP, then clear the
CCM timeout in the CCM Management object and generate the SNMP
notification as specified above.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Fragmented Reply</span>
TRILL OAM allows fragmented reply messages. In case of fragmented
replies, all parts of the reply MUST follow the procedure defined in
this section.
The same Session Identification Number MUST be included in all
related fragments of the same message.
The TRILL OAM Application Identifier TLV MUST be included, with the
Fragment-ID field monotonically increasing with each fragment
transmitted with the appropriate Final flag field. The Final flag
MUST only be equal to one on the final fragment of the reply.
On the receiver, the process MUST order the fragments based on the
Fragment-ID. Any fragments received after the final fragment MUST be
discarded. Messages with incomplete fragments (i.e., messages with
one or missing fragments after the receipt of the fragment with the
final flag set) MUST be discarded as well.
If the number of fragments exceeds the maximum supported fragments
(255), then the Return Code of the reply message MUST be set to 1
(Reply message), and the Return Sub-code MUST be set to 1 (Fragment
limit exceeded).
<span class="h2"><a class="selflink" id="section-14" href="#section-14">14</a>. Security Considerations</span>
Forged OAM packets could cause false error or failure indications,
mask actual errors or failures, or be used for denial of service.
Source addresses for messages can be forged and the out-of-band reply
facility (see <a href="#section-8.4.4">Section 8.4.4</a>) provides for explicitly supplying the
address for replies. For protection against forged OAM packets, the
Authentication TLV (see <a href="#section-8.4.13">Section 8.4.13</a>) can be used in an OAM message
in TRILL. This TLV is virtually identical to the IS-IS
Authentication TLV specified in [<a href="#ref-IS-IS" title=""Information technology -- Telecommunications and information exchange between systems -- Intermediate System to Intermediate System intra-domain routeing information exchange protocol for use in conjunction with the protocol for providing the connectionless-mode network service (ISO 8473)"">IS-IS</a>] and depends on IS-IS keying
material and the current state of IS-IS keying as discussed in
[<a href="#ref-KARPISIS" title=""KARP IS-IS security analysis"">KARPISIS</a>] and [<a href="./rfc5310" title=""IS-IS Generic Cryptographic Authentication"">RFC5310</a>]. In particular, there is currently no
standardized IS-IS automated key management.
Of course, authentication is ineffective unless verified and
ineffective against senders who have the keying material needed to
produce OAM messages that will pass authentication checks.
Implementations MUST implement rate-limiting functionality to protect
against exploitation of OAM messages as a means of denial-of-service
attacks. Aggressive rate-limiting may trigger false positive errors
against CCM and LBM-based session monitoring.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Even with authentication, replay of authenticated messages may be
possible. There are four types of messages: Continuity Check (CCM),
Loopback, Path Trace, and Multi-destination Tree Verification (MTVM).
In the case of CCM messages, sequence numbers are required (see
<a href="#section-12.1">Section 12.1</a>) that can protect against replay. In the case of
Loopback Messages (see <a href="#section-9.1">Section 9.1</a>), a Loopback Transaction
Identifier is included that, as required by [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>], is incremented
with each transmission and can detect replays. PTMs (see <a href="#section-10">Section 10</a>)
and MTVMs (see <a href="#section-11.1">Section 11.1</a>) are specified to have the same format as
Loopback Messages (although with different OpCodes), so they also
have an identifier incremented with each transmission that can detect
replays. Thus, all TRILL OAM messages have a field that can be used
for replay protection.
For general TRILL-related security considerations, please refer to
[<a href="./rfc6325" title=""Routing Bridges (RBridges): Base Protocol Specification"">RFC6325</a>].
[<a id="ref-8021Q">8021Q</a>] requires that the MEP filters or passes through OAM messages
based on the MD-Level. The MD-Level is embedded deep in the OAM
message. Hence, conventional methods of frame filtering may not be
able to filter frames based on the MD-Level. As a result, OAM
messages that must be dropped due to MD-Level mismatch may leak into
a TRILL domain with a different MD-Level.
This leaking may not cause any functionality loss. The receiving
MEP/MIP is required to validate the MD-level prior to acting on the
message. Any frames received with an incorrect MD-Level need to be
dropped.
Generally, a single operator manages each TRILL campus; hence, there
is no risk of security exposure. However, in the event of multi-
operator deployments, operators should be aware of possible exposure
of device-specific information, and appropriate measures must be
taken.
It is also important to note that the MPLS OAM framework [<a href="./rfc4379" title=""Pre-Shared Key Ciphersuites for Transport Layer Security (TLS)"">RFC4379</a>]
does not include the concept of domains and OAM filtering based on
operators. It is our opinion that the lack of OAM frame filtering
based on domains does not introduce significant functional deficiency
or security risk.
It is possible to mandate requiring different credentials to use
different OAM functions or capabilities within a specific OAM
function. Implementations may consider grouping users to different
security clearance levels and restricting functions and capabilities
to different clearance levels. However, exact implementation details
of such a framework are outside the scope of this document.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h2"><a class="selflink" id="section-15" href="#section-15">15</a>. IANA Considerations</span>
IANA has made the assignments described below.
<span class="h3"><a class="selflink" id="section-15.1" href="#section-15.1">15.1</a>. OAM Capability Flags</span>
Two TRILL-VER sub-TLV Capability Flags (see <a href="#section-3.3">Section 3.3</a>) have been
assigned as follows:
Bit Description Reference
--- ----------- ---------
2 OAM capable <a href="./rfc7455">RFC 7455</a>
3 Backwards-compatible OAM <a href="./rfc7455">RFC 7455</a>
<span class="h3"><a class="selflink" id="section-15.2" href="#section-15.2">15.2</a>. CFM Code Points</span>
Four OpCodes have been assigned from the "CFM OAM IETF OpCodes" sub-
registry as follows:
Value Assignment Reference
----- ---------- ---------
64 Path Trace Reply <a href="./rfc7455">RFC 7455</a>
65 Path Trace Message <a href="./rfc7455">RFC 7455</a>
66 Multi-destination Tree Verification Reply <a href="./rfc7455">RFC 7455</a>
67 Multi-destination Tree Verification Message <a href="./rfc7455">RFC 7455</a>
Eleven TLV Types have been assigned from the "CFM OAM IETF TLV Types"
sub-registry as follows:
Value Assignment Reference
----- ---------- ---------
64 TRILL OAM Application Identifier TLV <a href="./rfc7455">RFC 7455</a>
65 Out-of-Band Reply Address TLV <a href="./rfc7455">RFC 7455</a>
66 Diagnostic Label TLV <a href="./rfc7455">RFC 7455</a>
67 Original Data Payload TLV <a href="./rfc7455">RFC 7455</a>
68 RBridge Scope TLV <a href="./rfc7455">RFC 7455</a>
69 Previous RBridge Nickname TLV <a href="./rfc7455">RFC 7455</a>
70 Next-Hop RBridge List TLV <a href="./rfc7455">RFC 7455</a>
71 Multicast Receiver Port Count TLV <a href="./rfc7455">RFC 7455</a>
72 Flow Identifier TLV <a href="./rfc7455">RFC 7455</a>
73 Reflector Entropy TLV <a href="./rfc7455">RFC 7455</a>
74 Authentication TLV <a href="./rfc7455">RFC 7455</a>
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h3"><a class="selflink" id="section-15.3" href="#section-15.3">15.3</a>. MAC Addresses</span>
IANA has assigned a unicast and a multicast MAC address under the
IANA Organizationally Unique Identifier (OUI) for identification of
OAM packets as discussed for the backwards-compatibility method
(Appendix A.2) and based on the request template in <a href="#appendix-C">Appendix C</a>. The
assigned addresses are 00-00-5E-90-01-00 (unicast) and
01-00-5E-90-01-00 (multicast).
<span class="h3"><a class="selflink" id="section-15.4" href="#section-15.4">15.4</a>. Return Codes and Sub-codes</span>
IANA has created the "TRILL OAM Return Codes" registry within the
"Transparent Interconnection of Lots of Links (TRILL) Parameters"
registry and a separate sub-code sub-registry for each Return Code as
shown below:
Registry: TRILL OAM Return Codes
Registration Procedure: Standards Action
Return Code Assignment References
----------- ---------- ----------
0 Request message <a href="./rfc7455">RFC 7455</a>
1 Reply message <a href="./rfc7455">RFC 7455</a>
2-255 Unassigned <a href="./rfc7455">RFC 7455</a>
Sub-Registry: Sub-codes for TRILL OAM Return Code 0
Registration Procedure: Standards Action
Sub-code Assignment References
-------- ---------- ----------
0 Valid request <a href="./rfc7455">RFC 7455</a>
1-255 Unassigned <a href="./rfc7455">RFC 7455</a>
Sub-Registry: Sub-codes for TRILL OAM Return Code 1
Registration Procedure: Standards Action
Sub-code Assignment References
-------- ---------- ----------
0 Valid response <a href="./rfc7455">RFC 7455</a>
1 Fragment limit exceeded <a href="./rfc7455">RFC 7455</a>
2 Intermediate RBridge <a href="./rfc7455">RFC 7455</a>
3-255 Unassigned <a href="./rfc7455">RFC 7455</a>
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h3"><a class="selflink" id="section-15.5" href="#section-15.5">15.5</a>. TRILL Nickname Address Family</span>
IANA has allocated 16396 as the Address Family Number for TRILL
nickname.
<span class="h2"><a class="selflink" id="section-16" href="#section-16">16</a>. References</span>
<span class="h3"><a class="selflink" id="section-16.1" href="#section-16.1">16.1</a>. Normative References</span>
[<a id="ref-8021Q">8021Q</a>] IEEE, "IEEE Standard for Local and metropolitan area
networks -- Bridges and Bridged Networks", IEEE Std
802.1Q, December 2014.
[<a id="ref-IS-IS">IS-IS</a>] ISO/IEC, "Information technology -- Telecommunications and
information exchange between systems -- Intermediate
System to Intermediate System intra-domain routeing
information exchange protocol for use in conjunction with
the protocol for providing the connectionless-mode network
service (ISO 8473)", ISO/IEC 10589:2002, Second Edition,
2002.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC5226">RFC5226</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc5226">RFC 5226</a>,
May 2008, <<a href="http://www.rfc-editor.org/info/rfc5226">http://www.rfc-editor.org/info/rfc5226</a>>.
[<a id="ref-RFC5310">RFC5310</a>] Bhatia, M., Manral, V., Li, T., Atkinson, R., White, R.,
and M. Fanto, "IS-IS Generic Cryptographic
Authentication", <a href="./rfc5310">RFC 5310</a>, February 2009,
<<a href="http://www.rfc-editor.org/info/rfc5310">http://www.rfc-editor.org/info/rfc5310</a>>.
[<a id="ref-RFC6325">RFC6325</a>] Perlman, R., Eastlake 3rd, D., Dutt, D., Gai, S., and A.
Ghanwani, "Routing Bridges (RBridges): Base Protocol
Specification", <a href="./rfc6325">RFC 6325</a>, July 2011,
<<a href="http://www.rfc-editor.org/info/rfc6325">http://www.rfc-editor.org/info/rfc6325</a>>.
[<a id="ref-RFC7172">RFC7172</a>] Eastlake 3rd, D., Zhang, M., Agarwal, P., Perlman, R., and
D. Dutt, "Transparent Interconnection of Lots of Links
(TRILL): Fine-Grained Labeling", <a href="./rfc7172">RFC 7172</a>, May 2014,
<<a href="http://www.rfc-editor.org/info/rfc7172">http://www.rfc-editor.org/info/rfc7172</a>>.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h3"><a class="selflink" id="section-16.2" href="#section-16.2">16.2</a>. Informative References</span>
[<a id="ref-KARPISIS">KARPISIS</a>] Chunduri, U., Tian, A., and W. Lu, "KARP IS-IS security
analysis", Work in Progress, <a href="./draft-ietf-karp-isis-analysis-04">draft-ietf-karp-isis-</a>
<a href="./draft-ietf-karp-isis-analysis-04">analysis-04</a>, March 2015.
[<a id="ref-RFC4379">RFC4379</a>] Eronen, P., Ed., and H. Tschofenig, Ed., "Pre-Shared Key
Ciphersuites for Transport Layer Security (TLS)", <a href="./rfc4279">RFC</a>
<a href="./rfc4279">4279</a>, December 2005,
<<a href="http://www.rfc-editor.org/info/rfc4279">http://www.rfc-editor.org/info/rfc4279</a>>.
[<a id="ref-RFC6291">RFC6291</a>] Andersson, L., van Helvoort, H., Bonica, R., Romascanu,
D., and S. Mansfield, "Guidelines for the Use of the "OAM"
Acronym in the IETF", <a href="https://www.rfc-editor.org/bcp/bcp161">BCP 161</a>, <a href="./rfc6291">RFC 6291</a>, June 2011,
<<a href="http://www.rfc-editor.org/info/rfc6291">http://www.rfc-editor.org/info/rfc6291</a>>.
[<a id="ref-RFC6361">RFC6361</a>] Carlson, J. and D. Eastlake 3rd, "PPP Transparent
Interconnection of Lots of Links (TRILL) Protocol Control
Protocol", <a href="./rfc6361">RFC 6361</a>, August 2011,
<<a href="http://www.rfc-editor.org/info/rfc6361">http://www.rfc-editor.org/info/rfc6361</a>>.
[<a id="ref-RFC6905">RFC6905</a>] Senevirathne, T., Bond, D., Aldrin, S., Li, Y., and R.
Watve, "Requirements for Operations, Administration, and
Maintenance (OAM) in Transparent Interconnection of Lots
of Links (TRILL)", <a href="./rfc6905">RFC 6905</a>, March 2013,
<<a href="http://www.rfc-editor.org/info/rfc6905">http://www.rfc-editor.org/info/rfc6905</a>>.
[<a id="ref-RFC7174">RFC7174</a>] Salam, S., Senevirathne, T., Aldrin, S., and D. Eastlake
3rd, "Transparent Interconnection of Lots of Links (TRILL)
Operations, Administration, and Maintenance (OAM)
Framework", <a href="./rfc7174">RFC 7174</a>, May 2014,
<<a href="http://www.rfc-editor.org/info/rfc7174">http://www.rfc-editor.org/info/rfc7174</a>>.
[<a id="ref-RFC7176">RFC7176</a>] Eastlake 3rd, D., Senevirathne, T., Ghanwani, A., Dutt,
D., and A. Banerjee, "Transparent Interconnection of Lots
of Links (TRILL) Use of IS-IS", <a href="./rfc7176">RFC 7176</a>, May 2014,
<<a href="http://www.rfc-editor.org/info/rfc7176">http://www.rfc-editor.org/info/rfc7176</a>>.
[<a id="ref-RFC7178">RFC7178</a>] Eastlake 3rd, D., Manral, V., Li, Y., Aldrin, S., and D.
Ward, "Transparent Interconnection of Lots of Links
(TRILL): RBridge Channel Support", <a href="./rfc7178">RFC 7178</a>, May 2014,
<<a href="http://www.rfc-editor.org/info/rfc7178">http://www.rfc-editor.org/info/rfc7178</a>>.
[<a id="ref-RFC7179">RFC7179</a>] Eastlake 3rd, D., Ghanwani, A., Manral, V., Li, Y., and C.
Bestler, "Transparent Interconnection of Lots of Links
(TRILL): Header Extension", <a href="./rfc7179">RFC 7179</a>, May 2014,
<<a href="http://www.rfc-editor.org/info/rfc7179">http://www.rfc-editor.org/info/rfc7179</a>>.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
[<a id="ref-RFC7180">RFC7180</a>] Eastlake 3rd, D., Zhang, M., Ghanwani, A., Manral, V., and
A. Banerjee, "Transparent Interconnection of Lots of Links
(TRILL): Clarifications, Corrections, and Updates", <a href="./rfc7180">RFC</a>
<a href="./rfc7180">7180</a>, May 2014, <<a href="http://www.rfc-editor.org/info/rfc7180">http://www.rfc-editor.org/info/rfc7180</a>>.
[<a id="ref-RFC7456">RFC7456</a>] Mizrahi, T., Senevirathne, T., Salam, S., Kumar, D., and
D. Eastlake 3rd, "Loss and Delay Measurement in
Transparent Interconnection of Lots of Links (TRILL)", <a href="./rfc7456">RFC</a>
<a href="./rfc7456">7456</a>, March 2015,
<<a href="http://www.rfc-editor.org/info/rfc7456">http://www.rfc-editor.org/info/rfc7456</a>>.
[<a id="ref-TRILLOAMMIB">TRILLOAMMIB</a>]
Kumar, D., Salam, S., and T. Senevirathne, "TRILL OAM
MIB", Work in Progress, <a href="./draft-deepak-trill-oam-mib-01">draft-deepak-trill-oam-mib-01</a>,
October 2013.
[<a id="ref-Y1731">Y1731</a>] ITU-T, "OAM functions and mechanisms for Ethernet based
networks", ITU-T Recommendation G.8013/Y.1731, November
2013.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Backwards Compatibility</span>
The methodology presented in this document is in-line with the
framework defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] for providing fault management coverage.
However, in practice, some TRILL platforms may not have the
capabilities to support some of the required techniques. In this
appendix, we present a method that allows RBridges, which do not have
the required hardware capabilities, to participate in the TRILL OAM
solution.
There are two broad areas to be considered: 1) the Maintenance Point
(MEP/MIP) Model and 2) data-plane encoding and frame identification.
<span class="h3"><a class="selflink" id="appendix-A.1" href="#appendix-A.1">A.1</a>. Maintenance Point (MEP/MIP) Model</span>
For backwards compatibility, MEPs and MIPs are located in the CPU.
This will be referred to as the "central brain" model as opposed to
"port brain" model.
In the "central brain" model, an RBridge using either Access Control
Lists (ACLs) or some other method forwards qualifying OAM messages to
the CPU. The CPU then performs the required processing and
multiplexing to the correct MP (Maintenance Point).
Additionally, RBridges MUST have the capability to prevent the
leaking of OAM packets, as specified in [<a href="./rfc6905" title=""Requirements for Operations, Administration, and Maintenance (OAM) in Transparent Interconnection of Lots of Links (TRILL)"">RFC6905</a>].
<span class="h3"><a class="selflink" id="appendix-A.2" href="#appendix-A.2">A.2</a>. Data-Plane Encoding and Frame Identification</span>
The backwards-compatibility method presented in this section defines
methods to identify OAM frames when implementations do not have
capabilities to utilize the TRILL OAM Alert flag presented earlier in
this document to identify OAM frames in the hardware.
It is assumed that ECMP path selection of non-IP flows utilizes MAC
DA, MAC SA, and VLAN; IP flows utilize IP DA, IP SA, TCP/UDP port
numbers, and other Layer 3 and Layer 4 information. The well-known
fields to identify OAM flows are chosen such that they mimic the ECMP
selection of the actual data along the path. However, it is
important to note that there may be implementations that would
utilize these well-known fields for ECMP selections. Hence,
implementations that support OAM SHOULD move to utilizing the TRILL
Alert flag, as soon as possible, and methods presented here SHOULD be
used only as an interim solution.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Identification methods are divided in to four broader groups:
1. Identification of Unicast non-IP OAM Flows,
2. Identification of Multicast non-IP OAM Flows,
3. Identification of Unicast IP OAM Flows, and
4. Identification of Multicast IP OAM Flows.
As presented in Figure 24, based on the flow type (as defined above),
implementations are required to use a well-known value in either the
Inner.MacSA field or OAM Ethertype field to identify OAM flows.
A receiving RBridge identifies OAM flows based on the presence of the
well-known values in the specified fields. Additionally, for unicast
flows, the egress RBridge nickname of the packet MUST match that of
the local RBridge, or for multicast flows, the TRILL Header multicast
("M") flag MUST be set.
Unicast OAM flows that qualify for local processing MUST be
redirected to the OAM process and MUST NOT be forwarded (to prevent
leaking of the packet out of the TRILL campus).
A copy of multicast OAM flows that qualify for local processing MUST
be sent to the OAM process, and the packets MUST be forwarded along
the normal path. Additionally, methods MUST be in place to prevent
multicast packets from leaking out of the TRILL campus.
Figure 24 summarizes the identification of different OAM frames from
data frames.
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Flow Entropy |Inner.MacSA |OAM Ethertype |Egress |
| | | |nickname |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Unicast no IP | N/A |Match |Match |
| | | | |
|Multicast no IP| N/A |Match |N/A |
| | | | |
|Unicast IP | Match |N/A |Match |
| | | | |
|Multicast IP | Match |N/A |N/A |
| | | | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 24: Identification of TRILL OAM Frames
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
The unicast and multicast Inner.MacSAs used for the unicast and
multicast IP cases, respectively, are 00-00-5E-90-01-00 and
01-00-5E-90-01-00. These have been assigned per the request in
<a href="#appendix-C">Appendix C</a>.
It is important to note that all RBridges MUST generate OAM flows
with the "A" flag set and CFM Ethertype "0x8902" at the Flow Entropy
off-set. However, well-known values MUST be utilized as part of the
flow-entropy when generating OAM messages destined for older RBridges
that are compliant to the backwards-compatibility method defined in
this appendix.
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Base Mode for TRILL OAM</span>
CFM, as defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>], requires configuration of several
parameters before the protocol can be used. These parameters include
MAID, Maintenance Domain Level (MD-Level), and MEP-IDs. The Base
Mode for TRILL OAM defined here facilitates ease of use and provides
out-of-the-box plug-and-play capabilities, supporting the operational
and manageability considerations described in <a href="./rfc7174#section-6">Section 6 of [RFC7174]</a>.
All RBridges that support TRILL OAM MUST support the Base Mode
operation.
All RBridges MUST create a default MA with MAID as specified herein.
MAID [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] has a flexible format and includes two parts:
Maintenance Domain Name and Short MA Name. In the Base Mode
operation, the value of the Maintenance Domain Name must be the
character string "TrillBaseMode" (excluding the quotes). In the Base
Mode operation, the Short MA Name format is set to a 2-octet integer
format (value 3 in Short MA Format field) and Short MA Name set to
65532 (0xFFFC).
The default MA belongs to MD-Level 3.
In the Base Mode of operation, each RBridge creates a single UP MEP
associated with a virtual OAM port with no physical layer (NULL PHY).
The MEP-ID associated with this MEP is the 2-octet RBridge nickname.
By default, all RBridges operating in Base Mode for TRILL OAM are
able to initiate LBM, PTM, and other OAM tools with no configuration.
Implementations MAY provide default flow-entropy to be included in
OAM messages. Content of the default flow-entropy is outside the
scope of this document.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Figure 25 depicts encoding of MAID within CCM messages.
+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Field Name |Size |
| | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Maintenance | 1 |
|Domain Format | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Maintenance | 2 |
|Domain Length | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Maintenance | variable|
|Domain Name | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Short MA | 1 |
|Name Format | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Short MA | 2 |
|Name Length | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Short MA | variable|
|Name | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Padding | Variable|
+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 25: MAID Structure as Defined in [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>]
Maintenance Domain Name Format: set to value 4
Maintenance Domain Name Length: set to value 13
Maintenance Domain Name: set to TrillBaseMode
Short MA Name Format: set to value 3
Short MA Name Length: set to value 2
Short MA Name: set to FFFC
Padding: set of zero up to 48 octets of total length of the MAID
Please refer to [<a href="#ref-8021Q" title=""IEEE Standard for Local and metropolitan area networks -- Bridges and Bridged Networks"">8021Q</a>] for details.
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
<span class="h2"><a class="selflink" id="appendix-C" href="#appendix-C">Appendix C</a>. MAC Addresses Request</span>
Applicant Name: IETF TRILL Working Group
Applicant Email: tsenevir@cisco.com
Applicant Telephone: +1-408-853-2291
Use Name: TRILL OAM
Document: <a href="./rfc7455">RFC 7455</a>
Specify whether this is an application for EUI-48 or EUI-64
identifiers: EUI-48
Size of Block requested: 1
Specify multicast, unicast, or both: Both
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Acknowledgments
Work on this document was largely inspired by the directions provided
by Stewart Bryant in finding a common OAM solution between SDOs.
Acknowledgments are due for many who volunteered to review this
document, notably, Jari Arkko, Adrian Farrel, Pete Resnick, Stephen
Farrell, Dan Romascanu, Gayle Nobel, and Tal Mizrahi.
Special appreciation is due to Dinesh Dutt for his support and
encouragement, especially during the initial discussion phase of
TRILL OAM.
Authors' Addresses
Tissa Senevirathne
Cisco Systems
375 East Tasman Drive
San Jose, CA 95134
United States
Phone: +1 408-853-2291
EMail: tsenevir@cisco.com
Norman Finn
Cisco Systems
510 McCarthy Blvd
Milpitas, CA 95035
United States
EMail: nfinn@cisco.com
Samer Salam
Cisco Systems
595 Burrard St., Suite 2123
Vancouver, BC V7X 1J1
Canada
EMail: ssalam@cisco.com
<span class="grey">Senevirathne, 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="./rfc7455">RFC 7455</a> TRILL Fault Management March 2015</span>
Deepak Kumar
Cisco Systems
510 McCarthy Blvd
Milpitas, CA 95035
United States
Phone: +1 408-853-9760
EMail: dekumar@cisco.com
Donald Eastlake 3rd
Huawei Technologies
155 Beaver Street
Milford, MA 01757
United States
Phone: +1-508-333-2270
EMail: d3e3e3@gmail.com
Sam Aldrin
Huawei Technologies
2330 Central Express Way
Santa Clara, CA 95951
United States
EMail: aldrin.ietf@gmail.com
Yizhou Li
Huawei Technologies
101 Software Avenue
Nanjing 210012
China
Phone: +86-25-56625375
EMail: liyizhou@huawei.com
Senevirathne, et al. Standards Track [Page 63]
</pre>
|