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
|
<!DOCTYPE html>
<html lang="en" class="RFC">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 8667: IS-IS Extensions for Segment Routing</title>
<meta content="Stefano Previdi" name="author">
<meta content="Les Ginsberg" name="author">
<meta content="Clarence Filsfils" name="author">
<meta content="Ahmed Bashandy" name="author">
<meta content="Hannes Gredler" name="author">
<meta content="Bruno Decraene" name="author">
<meta content='
Segment Routing (SR) allows for a flexible definition of end-to-end
paths within IGP topologies by encoding paths as sequences of
topological sub-paths, called "segments". These segments are advertised
by the link-state routing protocols (IS-IS and OSPF).
This document describes the IS-IS extensions that need to be
introduced for Segment Routing operating on an MPLS data plane.
' name="description">
<meta content="xml2rfc 2.35.0" name="generator">
<meta content="MPLS" name="keyword">
<meta content="SID" name="keyword">
<meta content="IGP" name="keyword">
<meta content="IS-IS" name="keyword">
<meta content="Label advertisement" name="keyword">
<meta content="Segment Routing" name="keyword">
<meta content="8667" name="rfc.number">
<link href="rfc8667.xml" type="application/rfc+xml" rel="alternate">
<link href="#copyright" rel="license">
<style type="text/css">/*
NOTE: Changes at the bottom of this file overrides some earlier settings.
Once the style has stabilized and has been adopted as an official RFC style,
this can be consolidated so that style settings occur only in one place, but
for now the contents of this file consists first of the initial CSS work as
provided to the RFC Formatter (xml2rfc) work, followed by itemized and
commented changes found necssary during the development of the v3
formatters.
*/
/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */
@viewport {
zoom: 1.0;
width: extend-to-zoom;
}
@-ms-viewport {
width: extend-to-zoom;
zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
max-width: 90%;
margin: 1.5em auto;
color: #222;
background-color: #fff;
font-size: 14px;
font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
line-height: 1.6;
scroll-behavior: smooth;
}
.ears {
display: none;
}
/* headings */
#title, h1, h2, h3, h4, h5, h6 {
margin: 1em 0 0.5em;
font-weight: bold;
line-height: 1.3;
}
#title {
clear: both;
border-bottom: 1px solid #ddd;
margin: 0 0 0.5em 0;
padding: 1em 0 0.5em;
}
.author {
padding-bottom: 4px;
}
h1 {
font-size: 26px;
margin: 1em 0;
}
h2 {
font-size: 22px;
margin-top: -20px; /* provide offset for in-page anchors */
padding-top: 33px;
}
h3 {
font-size: 18px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h4 {
font-size: 16px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h5, h6 {
font-size: 14px;
}
#n-copyright-notice {
border-bottom: 1px solid #ddd;
padding-bottom: 1em;
margin-bottom: 1em;
}
/* general structure */
p {
padding: 0;
margin: 0 0 1em 0;
text-align: left;
}
div, span {
position: relative;
}
div {
margin: 0;
}
.alignRight.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignRight.art-text pre {
padding: 0;
}
.alignRight {
margin: 1em 0;
}
.alignRight > *:first-child {
border: none;
margin: 0;
float: right;
clear: both;
}
.alignRight > *:nth-child(2) {
clear: both;
display: block;
border: none;
}
svg {
display: block;
}
.alignCenter.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
padding: 0;
}
.alignCenter {
margin: 1em 0;
}
.alignCenter > *:first-child {
border: none;
/* this isn't optimal, but it's an existence proof. PrinceXML doesn't
support flexbox yet.
*/
display: table;
margin: 0 auto;
}
/* lists */
ol, ul {
padding: 0;
margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
margin-left: 1em;
}
li {
margin: 0 0 0.25em 0;
}
.ulCompact li {
margin: 0;
}
ul.empty, .ulEmpty {
list-style-type: none;
}
ul.empty li, .ulEmpty li {
margin-top: 0.5em;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
line-height: 100%;
margin: 0 0 0 2em;
}
/* definition lists */
dl {
}
dl > dt {
float: left;
margin-right: 1em;
}
/*
dl.nohang > dt {
float: none;
}
*/
dl > dd {
margin-bottom: .8em;
min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
margin-bottom: 0em;
}
dl > dd > dl {
margin-top: 0.5em;
margin-bottom: 0em;
}
/* links */
a {
text-decoration: none;
}
a[href] {
color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
background-color: transparent;
cursor: default;
} */
/* Figures */
tt, code, pre, code {
background-color: #f9f9f9;
font-family: 'Roboto Mono', monospace;
}
pre {
border: 1px solid #eee;
margin: 0;
padding: 1em;
}
img {
max-width: 100%;
}
figure {
margin: 0;
}
figure blockquote {
margin: 0.8em 0.4em 0.4em;
}
figcaption {
font-style: italic;
margin: 0 0 1em 0;
}
@media screen {
pre {
overflow-x: auto;
max-width: 100%;
max-width: calc(100% - 22px);
}
}
/* aside, blockquote */
aside, blockquote {
margin-left: 0;
padding: 1.2em 2em;
}
blockquote {
background-color: #f9f9f9;
color: #111; /* Arlen: WCAG 2019 */
border: 1px solid #ddd;
border-radius: 3px;
margin: 1em 0;
}
cite {
display: block;
text-align: right;
font-style: italic;
}
/* tables */
table {
width: 100%;
margin: 0 0 1em;
border-collapse: collapse;
border: 1px solid #eee;
}
th, td {
text-align: left;
vertical-align: top;
padding: 0.5em 0.75em;
}
th {
text-align: left;
background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
background-color: #f5f5f5;
}
table caption {
font-style: italic;
margin: 0;
padding: 0;
text-align: left;
}
table p {
/* XXX to avoid bottom margin on table row signifiers. If paragraphs should
be allowed within tables more generally, it would be far better to select on a class. */
margin: 0;
}
/* pilcrow */
a.pilcrow {
color: #666; /* Arlen: AHDJ 2019 */
text-decoration: none;
visibility: hidden;
user-select: none;
-ms-user-select: none;
-o-user-select:none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
@media screen {
aside:hover > a.pilcrow,
p:hover > a.pilcrow,
blockquote:hover > a.pilcrow,
div:hover > a.pilcrow,
li:hover > a.pilcrow,
pre:hover > a.pilcrow {
visibility: visible;
}
a.pilcrow:hover {
background-color: transparent;
}
}
/* misc */
hr {
border: 0;
border-top: 1px solid #eee;
}
.bcp14 {
font-variant: small-caps;
}
.role {
font-variant: all-small-caps;
}
/* info block */
#identifiers {
margin: 0;
font-size: 0.9em;
}
#identifiers dt {
width: 3em;
clear: left;
}
#identifiers dd {
float: left;
margin-bottom: 0;
}
#identifiers .authors .author {
display: inline-block;
margin-right: 1.5em;
}
#identifiers .authors .org {
font-style: italic;
}
/* The prepared/rendered info at the very bottom of the page */
.docInfo {
color: #666; /* Arlen: WCAG 2019 */
font-size: 0.9em;
font-style: italic;
margin-top: 2em;
}
.docInfo .prepared {
float: left;
}
.docInfo .prepared {
float: right;
}
/* table of contents */
#toc {
padding: 0.75em 0 2em 0;
margin-bottom: 1em;
}
nav.toc ul {
margin: 0 0.5em 0 0;
padding: 0;
list-style: none;
}
nav.toc li {
line-height: 1.3em;
margin: 0.75em 0;
padding-left: 1.2em;
text-indent: -1.2em;
}
/* references */
.references dt {
text-align: right;
font-weight: bold;
min-width: 7em;
}
.references dd {
margin-left: 8em;
overflow: auto;
}
.refInstance {
margin-bottom: 1.25em;
}
.references .ascii {
margin-bottom: 0.25em;
}
/* index */
.index ul {
margin: 0 0 0 1em;
padding: 0;
list-style: none;
}
.index ul ul {
margin: 0;
}
.index li {
margin: 0;
text-indent: -2em;
padding-left: 2em;
padding-bottom: 5px;
}
.indexIndex {
margin: 0.5em 0 1em;
}
.index a {
font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
.index ul {
-moz-column-count: 2;
-moz-column-gap: 20px;
}
.index ul ul {
-moz-column-count: 1;
-moz-column-gap: 0;
}
}
/* authors */
address.vcard {
font-style: normal;
margin: 1em 0;
}
address.vcard .nameRole {
font-weight: 700;
margin-left: 0;
}
address.vcard .label {
font-family: "Noto Sans",Arial,Helvetica,sans-serif;
margin: 0.5em 0;
}
address.vcard .type {
display: none;
}
.alternative-contact {
margin: 1.5em 0 1em;
}
hr.addr {
border-top: 1px dashed;
margin: 0;
color: #ddd;
max-width: calc(100% - 16px);
}
/* temporary notes */
.rfcEditorRemove::before {
position: absolute;
top: 0.2em;
right: 0.2em;
padding: 0.2em;
content: "The RFC Editor will remove this note";
color: #9e2a00; /* Arlen: WCAG 2019 */
background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
position: relative;
padding-top: 1.8em;
background-color: #ffd; /* Arlen: WCAG 2019 */
border-radius: 3px;
}
.cref {
background-color: #ffd; /* Arlen: WCAG 2019 */
padding: 2px 4px;
}
.crefSource {
font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
body {
padding-top: 2em;
}
#title {
padding: 1em 0;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 38px;
}
#identifiers dd {
max-width: 60%;
}
#toc {
position: fixed;
z-index: 2;
top: 0;
right: 0;
padding: 0;
margin: 0;
background-color: inherit;
border-bottom: 1px solid #ccc;
}
#toc h2 {
margin: -1px 0 0 0;
padding: 4px 0 4px 6px;
padding-right: 1em;
min-width: 190px;
font-size: 1.1em;
text-align: right;
background-color: #444;
color: white;
cursor: pointer;
}
#toc h2::before { /* css hamburger */
float: right;
position: relative;
width: 1em;
height: 1px;
left: -164px;
margin: 6px 0 0 0;
background: white none repeat scroll 0 0;
box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
content: "";
}
#toc nav {
display: none;
padding: 0.5em 1em 1em;
overflow: auto;
height: calc(100vh - 48px);
border-left: 1px solid #ddd;
}
}
/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
body {
max-width: 724px;
margin: 42px auto;
padding-left: 1.5em;
padding-right: 29em;
}
#toc {
position: fixed;
top: 42px;
right: 42px;
width: 25%;
margin: 0;
padding: 0 1em;
z-index: 1;
}
#toc h2 {
border-top: none;
border-bottom: 1px solid #ddd;
font-size: 1em;
font-weight: normal;
margin: 0;
padding: 0.25em 1em 1em 0;
}
#toc nav {
display: block;
height: calc(90vh - 84px);
bottom: 0;
padding: 0.5em 0 0;
overflow: auto;
}
img { /* future proofing */
max-width: 100%;
height: auto;
}
}
/* pagination */
@media print {
body {
width: 100%;
}
p {
orphans: 3;
widows: 3;
}
#n-copyright-notice {
border-bottom: none;
}
#toc, #n-introduction {
page-break-before: always;
}
#toc {
border-top: none;
padding-top: 0;
}
figure, pre {
page-break-inside: avoid;
}
figure {
overflow: scroll;
}
h1, h2, h3, h4, h5, h6 {
page-break-after: avoid;
}
h2+*, h3+*, h4+*, h5+*, h6+* {
page-break-before: avoid;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
font-size: 10pt;
}
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
}
/* This is commented out here, as the string-set: doesn't
pass W3C validation currently */
/*
.ears thead .left {
string-set: ears-top-left content();
}
.ears thead .center {
string-set: ears-top-center content();
}
.ears thead .right {
string-set: ears-top-right content();
}
.ears tfoot .left {
string-set: ears-bottom-left content();
}
.ears tfoot .center {
string-set: ears-bottom-center content();
}
.ears tfoot .right {
string-set: ears-bottom-right content();
}
*/
@page :first {
padding-top: 0;
@top-left {
content: normal;
border: none;
}
@top-center {
content: normal;
border: none;
}
@top-right {
content: normal;
border: none;
}
}
@page {
size: A4;
margin-bottom: 45mm;
padding-top: 20px;
/* The follwing is commented out here, but set appropriately by in code, as
the content depends on the document */
/*
@top-left {
content: 'Internet-Draft';
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-left {
content: string(ears-top-left);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-center {
content: string(ears-top-center);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-right {
content: string(ears-top-right);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@bottom-left {
content: string(ears-bottom-left);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-center {
content: string(ears-bottom-center);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-right {
content: '[Page ' counter(page) ']';
vertical-align: top;
border-top: solid 1px #ccc;
}
*/
}
/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
clear: both;
}
/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
vertical-align: top;
}
/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
width: 8em;
}
/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
margin-left: 1em;
}
/* Give floating toc a background color (needed when it's a div inside section */
#toc {
background-color: white;
}
/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
#toc h2 a,
#toc h2 a:link,
#toc h2 a:focus,
#toc h2 a:hover,
#toc a.toplink,
#toc a.toplink:hover {
color: white;
background-color: #444;
text-decoration: none;
}
}
/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
#toc {
padding: 0 0 1em 1em;
}
}
/* Style section numbers with more space between number and title */
.section-number {
padding-right: 0.5em;
}
/* prevent monospace from becoming overly large */
tt, code, pre, code {
font-size: 95%;
}
/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
line-height: 1.12;
}
/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
float: right;
margin-right: 0.5em;
}
/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
float: left;
margin-right: 1em;
}
dl.dlNewline > dt {
float: none;
}
/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
text-align: left;
}
table td.text-center,
table th.text-center {
text-align: center;
}
table td.text-right,
table th.text-right {
text-align: right;
}
/* Make the alternative author contact informatio look less like just another
author, and group it closer with the primary author contact information */
.alternative-contact {
margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
margin: 0 0 0 2em;
}
/* With it being possible to set tables with alignment
left, center, and right, { width: 100%; } does not make sense */
table {
width: auto;
}
/* Avoid reference text that sits in a block with very wide left margin,
because of a long floating dt label.*/
.references dd {
overflow: visible;
}
/* Control caption placement */
caption {
caption-side: bottom;
}
/* Limit the width of the author address vcard, so names in right-to-left
script don't end up on the other side of the page. */
address.vcard {
max-width: 30em;
margin-right: auto;
}
/* For address alignment dependent on LTR or RTL scripts */
address div.left {
text-align: left;
}
address div.right {
text-align: right;
}
/* Provide table alignment support. We can't use the alignX classes above
since they do unwanted things with caption and other styling. */
table.right {
margin-left: auto;
margin-right: 0;
}
table.center {
margin-left: auto;
margin-right: auto;
}
table.left {
margin-left: 0;
margin-right: auto;
}
/* Give the table caption label the same styling as the figcaption */
caption a[href] {
color: #222;
}
@media print {
.toplink {
display: none;
}
/* avoid overwriting the top border line with the ToC header */
#toc {
padding-top: 1px;
}
/* Avoid page breaks inside dl and author address entries */
.vcard {
page-break-inside: avoid;
}
}
/* Avoid wrapping of URLs in references */
@media screen {
.references a {
white-space: nowrap;
}
}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
font-variant: small-caps;
font-weight: bold;
font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
h2 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 31px;
}
h3 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
h4 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
/* Float artwork pilcrow to the right */
@media screen {
.artwork a.pilcrow {
display: block;
line-height: 0.7;
margin-top: 0.15em;
}
}
/* Make pilcrows on dd visible */
@media screen {
dd:hover > a.pilcrow {
visibility: visible;
}
}
/* Make the placement of figcaption match that of a table's caption
by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
possibly even requiring a new line */
@media print {
a.pilcrow {
display: none;
}
}
/* Styling for the external metadata */
div#external-metadata {
background-color: #eee;
padding: 0.5em;
margin-bottom: 0.5em;
display: none;
}
div#internal-metadata {
padding: 0.5em; /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
clear: both;
margin: 0 0 -1em;
padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
margin: 0 0 0.25em 0;
min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
border-left: 1px solid #ddd;
margin: 1em 0 1em 2em;
padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
margin-bottom: 0;
}
/* Additional page break settings */
@media print {
figcaption, table caption {
page-break-before: avoid;
}
}
/* Font size adjustments for print */
@media print {
body { font-size: 10pt; line-height: normal; max-width: 96%; }
h1 { font-size: 1.72em; padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
h2 { font-size: 1.44em; padding-top: 1.5em; } /* 1*1.2*1.2 */
h3 { font-size: 1.2em; padding-top: 1.5em; } /* 1*1.2 */
h4 { font-size: 1em; padding-top: 1.5em; }
h5, h6 { font-size: 1em; margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
.sourcecode {
margin-bottom: 1em;
}
}</style>
<link href="rfc-local.css" type="text/css" rel="stylesheet">
<link href="https://dx.doi.org/10.17487/rfc8667" rel="alternate">
<link href="urn:issn:2070-1721" rel="alternate">
<link href="https://datatracker.ietf.org/doc/draft-ietf-pce-segment-routing-16" rel="prev">
</head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 8667</td>
<td class="center">IS-IS Extensions for Segment Routing</td>
<td class="right">December 2019</td>
</tr></thead>
<tfoot><tr>
<td class="left">Previdi, et al.</td>
<td class="center">Standards Track</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc8667" class="eref">8667</a></dd>
<dt class="label-category">Category:</dt>
<dd class="category">Standards Track</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2019-12" class="published">December 2019</time>
</dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
<div class="author-name">S. Previdi, <span class="editor">Ed.</span>
</div>
<div class="org">Huawei Technologies</div>
</div>
<div class="author">
<div class="author-name">L. Ginsberg, <span class="editor">Ed.</span>
</div>
<div class="org">Cisco Systems, Inc.</div>
</div>
<div class="author">
<div class="author-name">C. Filsfils</div>
<div class="org">Cisco Systems, Inc.</div>
</div>
<div class="author">
<div class="author-name">A. Bashandy</div>
<div class="org">Arrcus</div>
</div>
<div class="author">
<div class="author-name">H. Gredler</div>
<div class="org">RtBrick Inc.</div>
</div>
<div class="author">
<div class="author-name">B. Decraene</div>
<div class="org">Orange</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 8667</h1>
<h1 id="title">IS-IS Extensions for Segment Routing</h1>
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">Segment Routing (SR) allows for a flexible definition of end-to-end
paths within IGP topologies by encoding paths as sequences of
topological sub-paths, called "segments". These segments are advertised
by the link-state routing protocols (IS-IS and OSPF).<a href="#section-abstract-1" class="pilcrow">¶</a></p>
<p id="section-abstract-2">This document describes the IS-IS extensions that need to be
introduced for Segment Routing operating on an MPLS data plane.<a href="#section-abstract-2" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
<h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
</h2>
<p id="section-boilerplate.1-1">
This is an Internet Standards Track document.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
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 Section 2 of
RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
<span><a href="https://www.rfc-editor.org/info/rfc8667">https://www.rfc-editor.org/info/rfc8667</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
<h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
</h2>
<p id="section-boilerplate.2-1">
Copyright (c) 2019 IETF Trust and the persons identified as the
document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) 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.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
<a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
</h2>
<nav class="toc"><ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.1">
<p id="section-toc.1-1.1.1"><a href="#section-1" class="xref">1</a>. <a href="#name-introduction" class="xref">Introduction</a><a href="#section-toc.1-1.1.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.1.2.1">
<p id="section-toc.1-1.1.2.1.1"><a href="#section-1.1" class="xref">1.1</a>. <a href="#name-requirements-language" class="xref">Requirements Language</a><a href="#section-toc.1-1.1.2.1.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2">
<p id="section-toc.1-1.2.1"><a href="#section-2" class="xref">2</a>. <a href="#name-segment-routing-identifiers" class="xref">Segment Routing Identifiers</a><a href="#section-toc.1-1.2.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.2.2.1">
<p id="section-toc.1-1.2.2.1.1"><a href="#section-2.1" class="xref">2.1</a>. <a href="#name-prefix-segment-identifier-p" class="xref">Prefix Segment Identifier (Prefix-SID) Sub-TLV</a><a href="#section-toc.1-1.2.2.1.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.2.2.1.2.1">
<p id="section-toc.1-1.2.2.1.2.1.1"><a href="#section-2.1.1" class="xref">2.1.1</a>. <a href="#name-flags" class="xref">Flags</a><a href="#section-toc.1-1.2.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.1.2.2">
<p id="section-toc.1-1.2.2.1.2.2.1"><a href="#section-2.1.2" class="xref">2.1.2</a>. <a href="#name-prefix-sid-propagation" class="xref">Prefix-SID Propagation</a><a href="#section-toc.1-1.2.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.2">
<p id="section-toc.1-1.2.2.2.1"><a href="#section-2.2" class="xref">2.2</a>. <a href="#name-adjacency-segment-identifie" class="xref">Adjacency Segment Identifier</a><a href="#section-toc.1-1.2.2.2.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.2.2.2.2.1">
<p id="section-toc.1-1.2.2.2.2.1.1"><a href="#section-2.2.1" class="xref">2.2.1</a>. <a href="#name-adjacency-segment-identifier" class="xref">Adjacency Segment Identifier (Adj-SID) Sub-TLV</a><a href="#section-toc.1-1.2.2.2.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.2.2.2">
<p id="section-toc.1-1.2.2.2.2.2.1"><a href="#section-2.2.2" class="xref">2.2.2</a>. <a href="#name-adjacency-segment-identifier-" class="xref">Adjacency Segment Identifier (LAN-Adj-SID) Sub-TLV</a><a href="#section-toc.1-1.2.2.2.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.3">
<p id="section-toc.1-1.2.2.3.1"><a href="#section-2.3" class="xref">2.3</a>. <a href="#name-sid-label-sub-tlv" class="xref">SID/Label Sub-TLV</a><a href="#section-toc.1-1.2.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.4">
<p id="section-toc.1-1.2.2.4.1"><a href="#section-2.4" class="xref">2.4</a>. <a href="#name-sid-label-binding-tlv" class="xref">SID/Label Binding TLV</a><a href="#section-toc.1-1.2.2.4.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.2.2.4.2.1">
<p id="section-toc.1-1.2.2.4.2.1.1"><a href="#section-2.4.1" class="xref">2.4.1</a>. <a href="#name-flags-2" class="xref">Flags</a><a href="#section-toc.1-1.2.2.4.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.4.2.2">
<p id="section-toc.1-1.2.2.4.2.2.1"><a href="#section-2.4.2" class="xref">2.4.2</a>. <a href="#name-range" class="xref">Range</a><a href="#section-toc.1-1.2.2.4.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.4.2.3">
<p id="section-toc.1-1.2.2.4.2.3.1"><a href="#section-2.4.3" class="xref">2.4.3</a>. <a href="#name-prefix-length-prefix" class="xref">Prefix Length, Prefix</a><a href="#section-toc.1-1.2.2.4.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.4.2.4">
<p id="section-toc.1-1.2.2.4.2.4.1"><a href="#section-2.4.4" class="xref">2.4.4</a>. <a href="#name-mapping-server-prefix-sid" class="xref">Mapping Server Prefix-SID</a><a href="#section-toc.1-1.2.2.4.2.4.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.4.2.5">
<p id="section-toc.1-1.2.2.4.2.5.1"><a href="#section-2.4.5" class="xref">2.4.5</a>. <a href="#name-sid-label-sub-tlv-2" class="xref">SID/Label Sub-TLV</a><a href="#section-toc.1-1.2.2.4.2.5.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.4.2.6">
<p id="section-toc.1-1.2.2.4.2.6.1"><a href="#section-2.4.6" class="xref">2.4.6</a>. <a href="#name-example-encodings" class="xref">Example Encodings</a><a href="#section-toc.1-1.2.2.4.2.6.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.2.2.5">
<p id="section-toc.1-1.2.2.5.1"><a href="#section-2.5" class="xref">2.5</a>. <a href="#name-multi-topology-sid-label-bi" class="xref">Multi-Topology SID/Label Binding TLV</a><a href="#section-toc.1-1.2.2.5.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1"><a href="#section-3" class="xref">3</a>. <a href="#name-router-capabilities" class="xref">Router Capabilities</a><a href="#section-toc.1-1.3.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.3.2.1">
<p id="section-toc.1-1.3.2.1.1"><a href="#section-3.1" class="xref">3.1</a>. <a href="#name-sr-capabilities-sub-tlv" class="xref">SR-Capabilities Sub-TLV</a><a href="#section-toc.1-1.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.2">
<p id="section-toc.1-1.3.2.2.1"><a href="#section-3.2" class="xref">3.2</a>. <a href="#name-sr-algorithm-sub-tlv" class="xref">SR-Algorithm Sub-TLV</a><a href="#section-toc.1-1.3.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.3">
<p id="section-toc.1-1.3.2.3.1"><a href="#section-3.3" class="xref">3.3</a>. <a href="#name-sr-local-block-sub-tlv" class="xref">SR Local Block Sub-TLV</a><a href="#section-toc.1-1.3.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.3.2.4">
<p id="section-toc.1-1.3.2.4.1"><a href="#section-3.4" class="xref">3.4</a>. <a href="#name-srms-preference-sub-tlv" class="xref">SRMS Preference Sub-TLV</a><a href="#section-toc.1-1.3.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4">
<p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a><a href="#section-toc.1-1.4.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.4.2.1">
<p id="section-toc.1-1.4.2.1.1"><a href="#section-4.1" class="xref">4.1</a>. <a href="#name-sub-tlvs-for-types-22-23-25" class="xref">Sub-TLVs for Types 22, 23, 25, 141, 222, and 223</a><a href="#section-toc.1-1.4.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4.2.2">
<p id="section-toc.1-1.4.2.2.1"><a href="#section-4.2" class="xref">4.2</a>. <a href="#name-sub-tlvs-for-types-135-235-" class="xref">Sub-TLVs for Types 135, 235, 236, and 237</a><a href="#section-toc.1-1.4.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4.2.3">
<p id="section-toc.1-1.4.2.3.1"><a href="#section-4.3" class="xref">4.3</a>. <a href="#name-sub-tlvs-for-type-242" class="xref">Sub-TLVs for Type 242</a><a href="#section-toc.1-1.4.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4.2.4">
<p id="section-toc.1-1.4.2.4.1"><a href="#section-4.4" class="xref">4.4</a>. <a href="#name-new-tlv-codepoint-and-sub-t" class="xref">New TLV Codepoint and Sub-TLV Registry</a><a href="#section-toc.1-1.4.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.5">
<p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a><a href="#section-toc.1-1.5.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.6">
<p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>. <a href="#name-references" class="xref">References</a><a href="#section-toc.1-1.6.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.6.2.1">
<p id="section-toc.1-1.6.2.1.1"><a href="#section-6.1" class="xref">6.1</a>. <a href="#name-normative-references" class="xref">Normative References</a><a href="#section-toc.1-1.6.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.6.2.2">
<p id="section-toc.1-1.6.2.2.1"><a href="#section-6.2" class="xref">6.2</a>. <a href="#name-informative-references" class="xref">Informative References</a><a href="#section-toc.1-1.6.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.7">
<p id="section-toc.1-1.7.1"><a href="#section-appendix.a" class="xref"></a><a href="#name-acknowledgements" class="xref">Acknowledgements</a><a href="#section-toc.1-1.7.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8">
<p id="section-toc.1-1.8.1"><a href="#section-appendix.b" class="xref"></a><a href="#name-contributors" class="xref">Contributors</a><a href="#section-toc.1-1.8.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-appendix.c" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a><a href="#section-toc.1-1.9.1" class="pilcrow">¶</a></p>
</li>
</ul>
</nav>
</section>
</div>
<section id="section-1">
<h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
</h2>
<p id="section-1-1">Segment Routing (SR) allows for a flexible definition of end-to-end
paths within IGP topologies by encoding paths as sequences of
topological sub-paths, called "segments". These segments are advertised
by the link-state routing protocols (IS-IS and OSPF). Prefix segments
represent an ECMP-aware shortest path to a prefix (or a node), as per
the state of the IGP topology. Adjacency segments represent a hop over a
specific adjacency between two nodes in the IGP. A prefix segment is
typically a multi-hop path while an adjacency segment, in most of the
cases, is a one-hop path. SR's control plane can be applied to both IPv6
and MPLS data planes and does not require any additional signaling
(other than the regular IGP). For example, when used in MPLS networks,
SR paths do not require any LDP or RSVP-TE signaling. Still, SR can
interoperate in the presence of Label Switched Paths (LSPs) established with RSVP or LDP.<a href="#section-1-1" class="pilcrow">¶</a></p>
<p id="section-1-2">There are additional segment types, e.g., the Binding SID as defined in
<span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>. This document also defines an advertisement
for one type of Binding SID: the Mirror Context segment.<a href="#section-1-2" class="pilcrow">¶</a></p>
<p id="section-1-3">This document describes the IS-IS extensions that need to be
introduced for Segment Routing operating on an MPLS data plane.<a href="#section-1-3" class="pilcrow">¶</a></p>
<p id="section-1-4">The Segment Routing architecture is described in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>. Segment Routing use cases are described in <span>[<a href="#RFC7855" class="xref">RFC7855</a>]</span>.<a href="#section-1-4" class="pilcrow">¶</a></p>
<section id="section-1.1">
<h3 id="name-requirements-language">
<a href="#section-1.1" class="section-number selfRef">1.1. </a><a href="#name-requirements-language" class="section-name selfRef">Requirements Language</a>
</h3>
<p id="section-1.1-1">The key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>", "<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>", "<span class="bcp14">SHALL NOT</span>", "<span class="bcp14">SHOULD</span>", "<span class="bcp14">SHOULD NOT</span>", "<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>",
"<span class="bcp14">MAY</span>", and "<span class="bcp14">OPTIONAL</span>" in this document are to be interpreted as
described in BCP 14 <span>[<a href="#RFC2119" class="xref">RFC2119</a>]</span> <span>[<a href="#RFC8174" class="xref">RFC8174</a>]</span>
when, and only when, they appear in all capitals, as shown here.<a href="#section-1.1-1" class="pilcrow">¶</a></p>
</section>
</section>
<section id="section-2">
<h2 id="name-segment-routing-identifiers">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-segment-routing-identifiers" class="section-name selfRef">Segment Routing Identifiers</a>
</h2>
<p id="section-2-1">The Segment Routing architecture <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span> defines
different types of Segment Identifiers (SIDs). This document defines the
IS-IS encodings for the IGP-Prefix Segment, the IGP-Adjacency Segment,
the IGP-LAN-Adjacency Segment, and the Binding Segment.<a href="#section-2-1" class="pilcrow">¶</a></p>
<div id="PREFIXSIDSUBTLV">
<section id="section-2.1">
<h3 id="name-prefix-segment-identifier-p">
<a href="#section-2.1" class="section-number selfRef">2.1. </a><a href="#name-prefix-segment-identifier-p" class="section-name selfRef">Prefix Segment Identifier (Prefix-SID) Sub-TLV</a>
</h3>
<p id="section-2.1-1">A new IS-IS sub-TLV is defined: the Prefix Segment Identifier
(Prefix-SID) sub-TLV.<a href="#section-2.1-1" class="pilcrow">¶</a></p>
<p id="section-2.1-2">The Prefix-SID sub-TLV carries the Segment Routing IGP-Prefix-SID
as defined in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>. The 'Prefix-SID' <span class="bcp14">MUST</span> be
unique within a given IGP domain (when the L-Flag is not set).<a href="#section-2.1-2" class="pilcrow">¶</a></p>
<p id="section-2.1-3">A Prefix-SID sub-TLV is associated to a prefix advertised by a node
and <span class="bcp14">MAY</span> be present in any of the following TLVs:<a href="#section-2.1-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.1-4.1">TLV-135 (Extended IPv4 reachability) defined in <span>[<a href="#RFC5305" class="xref">RFC5305</a>]</span>.<a href="#section-2.1-4.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.1-4.2">TLV-235 (Multi-topology IPv4 Reachability) defined in <span>[<a href="#RFC5120" class="xref">RFC5120</a>]</span>.<a href="#section-2.1-4.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.1-4.3">TLV-236 (IPv6 IP Reachability) defined in <span>[<a href="#RFC5308" class="xref">RFC5308</a>]</span>.<a href="#section-2.1-4.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.1-4.4">TLV-237 (Multi-topology IPv6 IP Reachability) defined in <span>[<a href="#RFC5120" class="xref">RFC5120</a>]</span>.<a href="#section-2.1-4.4" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.1-4.5">The Binding TLV and Multi-Topology Binding TLV are defined in Sections <a href="#BINDINGTLV" class="xref">2.4</a> and <a href="#MTBINDINGTLV" class="xref">2.5</a>,
respectively.<a href="#section-2.1-4.5" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2.1-5">The Prefix-SID sub-TLV has the following format:<a href="#section-2.1-5" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.1-6">
<pre>
0 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 | Flags | Algorithm |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SID/Index/Label (variable) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-2.1-6" class="pilcrow">¶</a>
</div>
<p id="section-2.1-7">where:<a href="#section-2.1-7" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.1-8.1">
<dl class="dlParallel" id="section-2.1-8.1.1">
<dt id="section-2.1-8.1.1.1">Type:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.2">3<a href="#section-2.1-8.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.1-8.1.1.3">Length:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.4">5 or 6 depending on the size of the SID (described
below)<a href="#section-2.1-8.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.1-8.1.1.5">
Flags:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.6">
<p id="section-2.1-8.1.1.6.1"> 1-octet field of the following flags:<a href="#section-2.1-8.1.1.6.1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.1-8.1.1.6.2">
<pre>
0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
|R|N|P|E|V|L| |
+-+-+-+-+-+-+-+-+</pre><a href="#section-2.1-8.1.1.6.2" class="pilcrow">¶</a>
</div>
<p id="section-2.1-8.1.1.6.3"> where:<a href="#section-2.1-8.1.1.6.3" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-2.1-8.1.1.6.4">
<dt id="section-2.1-8.1.1.6.4.1">R-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.6.4.2">Re-advertisement Flag. If set, then the prefix to
which this Prefix-SID is attached has been propagated by the
router from either another level (i.e., from Level-1 to
Level-2 or the opposite) or redistribution (e.g., from
another protocol).<a href="#section-2.1-8.1.1.6.4.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.1-8.1.1.6.4.3">N-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.6.4.4">Node-SID Flag. If set, then the Prefix-SID refers
to the router identified by the prefix. Typically, the N-Flag
is set on Prefix-SIDs that are attached to a router loopback address.
The N-Flag is set when the Prefix-SID is a Node-SID as
described in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-2.1-8.1.1.6.4.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.1-8.1.1.6.4.5">P-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.6.4.6">No-PHP
(No Penultimate Hop-Popping) Flag. If set, then the penultimate hop <span class="bcp14">MUST NOT</span> pop the Prefix-SID before delivering the packet to the
node that advertised the Prefix-SID.<a href="#section-2.1-8.1.1.6.4.6" class="pilcrow">¶</a>
</dd>
<dt id="section-2.1-8.1.1.6.4.7">E-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.6.4.8">Explicit NULL Flag. If set, any upstream neighbor
of the Prefix-SID originator <span class="bcp14">MUST</span> replace the Prefix-SID with
a Prefix-SID that has an Explicit NULL value (0 for IPv4 and 2
for IPv6) before forwarding the packet.<a href="#section-2.1-8.1.1.6.4.8" class="pilcrow">¶</a>
</dd>
<dt id="section-2.1-8.1.1.6.4.9">V-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.6.4.10">Value Flag. If set, then the Prefix-SID carries a
value (instead of an index). By default, the flag is UNSET.<a href="#section-2.1-8.1.1.6.4.10" class="pilcrow">¶</a>
</dd>
<dt id="section-2.1-8.1.1.6.4.11">L-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.6.4.12">Local Flag. If set, then the value/index carried by
the Prefix-SID has local significance. By default, the flag is
UNSET.<a href="#section-2.1-8.1.1.6.4.12" class="pilcrow">¶</a>
</dd>
<dt id="section-2.1-8.1.1.6.4.13">Other bits:</dt>
<dd style="margin-left: 4.5em" id="section-2.1-8.1.1.6.4.14">
<span class="bcp14">MUST</span> be zero when originated and ignored when
received.<a href="#section-2.1-8.1.1.6.4.14" class="pilcrow">¶</a>
</dd>
</dl>
</dd>
</dl>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.1-9.1">
<dl class="dlParallel" id="section-2.1-9.1.1">
<dt id="section-2.1-9.1.1.1">Algorithm:</dt>
<dd id="section-2.1-9.1.1.2">the router may use various algorithms when
calculating reachability to other nodes or to prefixes attached to
these nodes. Algorithm identifiers are defined in <a href="#SRALGOSUBTLV" class="xref">Section 3.2</a>. Examples of these algorithms are metric-based
Shortest Path First (SPF), various sorts of Constrained SPF,
etc. The Algorithm field of the Prefix-SID contains the identifier
of the algorithm the router uses to compute the reachability of
the prefix to which the Prefix-SID is associated.<a href="#section-2.1-9.1.1.2" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.1-10.1">
At origination, the Prefix-SID Algorithm field <span class="bcp14">MUST</span> be set to 0
or to any value advertised in the SR-Algorithm sub-TLV (see <a href="#SRALGOSUBTLV" class="xref">Section 3.2</a>).<a href="#section-2.1-10.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.1-10.2">A router receiving a Prefix-SID from a remote node and with an
algorithm value that such remote node has not advertised in the
SR-Algorithm sub-TLV (see <a href="#SRALGOSUBTLV" class="xref">Section 3.2</a>) <span class="bcp14">MUST</span> ignore
the Prefix-SID sub-TLV.<a href="#section-2.1-10.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.1-10.3">SID/Index/Label as defined in <a href="#VANDLFLAGS" class="xref">Section 2.1.1.1</a>.<a href="#section-2.1-10.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2.1-11">When the Prefix-SID is an index (and the V-Flag is not set), the value
is used to determine the actual label value inside the set of all
advertised label ranges of a given router. This allows a receiving
router to construct the forwarding state to a particular destination
router.<a href="#section-2.1-11" class="pilcrow">¶</a></p>
<p id="section-2.1-12">In many use cases, a 'stable transport' address is overloaded as an
identifier of a given node. Because Prefixes may be re-advertised into
other levels, there may be some ambiguity (e.g., originating router vs. L1L2 router) for which node a particular IP prefix serves as the
identifier. The Prefix-SID sub-TLV contains the necessary flags to
disambiguate Prefix-to-node mappings. Furthermore, if a given node has
several 'stable transport' addresses, there are flags to differentiate
those among other Prefixes advertised from a given node.<a href="#section-2.1-12" class="pilcrow">¶</a></p>
<div id="FLAGS">
<section id="section-2.1.1">
<h4 id="name-flags">
<a href="#section-2.1.1" class="section-number selfRef">2.1.1. </a><a href="#name-flags" class="section-name selfRef">Flags</a>
</h4>
<div id="VANDLFLAGS">
<section id="section-2.1.1.1">
<h5 id="name-v-flag-and-l-flag">
<a href="#section-2.1.1.1" class="section-number selfRef">2.1.1.1. </a><a href="#name-v-flag-and-l-flag" class="section-name selfRef">V-Flag and L-Flag</a>
</h5>
<p id="section-2.1.1.1-1">The V-Flag indicates whether the SID/Index/Label field is a
value or an index.<a href="#section-2.1.1.1-1" class="pilcrow">¶</a></p>
<p id="section-2.1.1.1-2">The L-Flag indicates whether the value/index in the
SID/Index/Label field has local or global significance.<a href="#section-2.1.1.1-2" class="pilcrow">¶</a></p>
<p id="section-2.1.1.1-3">The following settings for V-Flag and L-Flag are valid:<a href="#section-2.1.1.1-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.1.1.1-4.1">
<dl class="dlParallel" id="section-2.1.1.1-4.1.1">
<dt id="section-2.1.1.1-4.1.1.1">The V-Flag and L-Flag are set to 0:</dt>
<dd id="section-2.1.1.1-4.1.1.2">The SID/Index/Label
field is a 4-octet index defining the offset in the SID/Label
space advertised by this router using the encodings defined in
<a href="#SRCAPSUBTLV" class="xref">Section 3.1</a>.<a href="#section-2.1.1.1-4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.1.1.1-4.1.1.3">The V-Flag and L-Flag are set to 1:</dt>
<dd id="section-2.1.1.1-4.1.1.4">The SID/Index/Label
field is a 3-octet local label where the 20 rightmost bits are
used for encoding the label value.<a href="#section-2.1.1.1-4.1.1.4" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<p id="section-2.1.1.1-5">All other combinations of V-Flag and L-Flag are invalid, and any
SID advertisement received with an invalid setting for the V-Flag and
L-Flag <span class="bcp14">MUST</span> be ignored.<a href="#section-2.1.1.1-5" class="pilcrow">¶</a></p>
</section>
</div>
<div id="RANDNFLAGS">
<section id="section-2.1.1.2">
<h5 id="name-r-flag-and-n-flag">
<a href="#section-2.1.1.2" class="section-number selfRef">2.1.1.2. </a><a href="#name-r-flag-and-n-flag" class="section-name selfRef">R-Flag and N-Flag</a>
</h5>
<p id="section-2.1.1.2-1">The R-Flag <span class="bcp14">MUST</span> be set for prefixes that are not local to the
router and are advertised because of:<a href="#section-2.1.1.2-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.1.1.2-2.1">propagation (Level-1 into Level-2);<a href="#section-2.1.1.2-2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.1.1.2-2.2">leaking (Level-2 into Level-1); or<a href="#section-2.1.1.2-2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.1.1.2-2.3">redistribution (e.g., from another protocol).<a href="#section-2.1.1.2-2.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2.1.1.2-3">In the case where a Level-1-2 router has local interface
addresses configured in one level, it may also propagate these
addresses into the other level. In such case, the Level-1-2 router
<span class="bcp14">MUST NOT</span> set the R bit.<a href="#section-2.1.1.2-3" class="pilcrow">¶</a></p>
<p id="section-2.1.1.2-4">The N-Flag is used in order to define a Node-SID. A router <span class="bcp14">MAY</span>
set the N-Flag only if all of the following conditions are
met:<a href="#section-2.1.1.2-4" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.1.1.2-5.1">The prefix to which the Prefix-SID is attached is local to
the router (i.e., the prefix is configured on one of the local
interfaces, e.g., a 'stable transport' loopback).<a href="#section-2.1.1.2-5.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.1.1.2-5.2">The prefix to which the Prefix-SID is attached has a Prefix
length of either /32 (IPv4) or /128 (IPv6).<a href="#section-2.1.1.2-5.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2.1.1.2-6">The router <span class="bcp14">MUST</span> ignore the N-Flag on a received Prefix-SID if
the prefix has a Prefix length different than /32 (IPv4) or /128
(IPv6).<a href="#section-2.1.1.2-6" class="pilcrow">¶</a></p>
<p id="section-2.1.1.2-7">The Prefix Attribute Flags sub-TLV <span>[<a href="#RFC7794" class="xref">RFC7794</a>]</span>
also defines the N-Flag and R-Flag and with the same semantics of the
equivalent flags defined in this document. Whenever the Prefix
Attribute Flags sub-TLV is present for a given prefix, the values
of the N-Flag and R-Flag advertised in that sub-TLV <span class="bcp14">MUST</span> be used, and
the values in a corresponding Prefix-SID sub-TLV (if present) <span class="bcp14">MUST</span>
be ignored.<a href="#section-2.1.1.2-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="EANDPFLAGS">
<section id="section-2.1.1.3">
<h5 id="name-e-flag-and-p-flag">
<a href="#section-2.1.1.3" class="section-number selfRef">2.1.1.3. </a><a href="#name-e-flag-and-p-flag" class="section-name selfRef">E-Flag and P-Flag</a>
</h5>
<p id="section-2.1.1.3-1">The following behavior is associated with the settings of the E-Flag
and P-Flag:<a href="#section-2.1.1.3-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-2.1.1.3-2.1">If the P-Flag is not set, then any upstream neighbor of the
Prefix-SID originator <span class="bcp14">MUST</span> pop the Prefix-SID. This is
equivalent to the "penultimate hop-popping" mechanism used in
the MPLS data plane, which improves performance of the ultimate
hop. MPLS EXP bits of the Prefix-SID are not preserved to the
ultimate hop (the Prefix-SID being removed). If the P-Flag is
unset, the received E-Flag is ignored.<a href="#section-2.1.1.3-2.1" class="pilcrow">¶</a>
</li>
<li id="section-2.1.1.3-2.2">
<p id="section-2.1.1.3-2.2.1">If the P-Flag is set, then:<a href="#section-2.1.1.3-2.2.1" class="pilcrow">¶</a></p>
<ul>
<li id="section-2.1.1.3-2.2.2.1">If the E-Flag is not set, then any upstream neighbor of
the Prefix-SID originator <span class="bcp14">MUST</span> keep the Prefix-SID on top
of the stack. This is useful when, e.g., the originator of
the Prefix-SID must stitch the incoming packet into a
continuing MPLS LSP to the final destination. This could
occur at an inter-area border router (prefix propagation
from one area to another) or at an interdomain border
router (prefix propagation from one domain to
another).<a href="#section-2.1.1.3-2.2.2.1" class="pilcrow">¶</a>
</li>
<li id="section-2.1.1.3-2.2.2.2">If the E-Flag is set, then any upstream neighbor of the
Prefix-SID originator <span class="bcp14">MUST</span> replace the Prefix-SID with a
Prefix-SID having an Explicit NULL value. This is useful,
e.g., when the originator of the Prefix-SID is the final
destination for the related prefix and the originator
wishes to receive the packet with the original EXP
bits.<a href="#section-2.1.1.3-2.2.2.2" class="pilcrow">¶</a>
</li>
</ul>
</li>
</ul>
<p id="section-2.1.1.3-3">When propagating (from either Level-1 to Level-2 or Level-2 to Level-1)
a reachability advertisement originated by another IS-IS speaker,
the router <span class="bcp14">MUST</span> set the P-Flag and <span class="bcp14">MUST</span> clear the E-Flag of the
related Prefix-SIDs.<a href="#section-2.1.1.3-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="PROPAGATION">
<section id="section-2.1.2">
<h4 id="name-prefix-sid-propagation">
<a href="#section-2.1.2" class="section-number selfRef">2.1.2. </a><a href="#name-prefix-sid-propagation" class="section-name selfRef">Prefix-SID Propagation</a>
</h4>
<p id="section-2.1.2-1">The Prefix-SID sub-TLV <span class="bcp14">MUST</span> be included when the associated
Prefix Reachability TLV is propagated across level boundaries.<a href="#section-2.1.2-1" class="pilcrow">¶</a></p>
<p id="section-2.1.2-2">The Level-1-2 router that propagates the Prefix-SID sub-TLV
between levels maintains the content (flags and SID), except as noted
in Sections <a href="#RANDNFLAGS" class="xref">2.1.1.2</a> and <a href="#EANDPFLAGS" class="xref">2.1.1.3</a>.<a href="#section-2.1.2-2" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<section id="section-2.2">
<h3 id="name-adjacency-segment-identifie">
<a href="#section-2.2" class="section-number selfRef">2.2. </a><a href="#name-adjacency-segment-identifie" class="section-name selfRef">Adjacency Segment Identifier</a>
</h3>
<p id="section-2.2-1">A new IS-IS sub-TLV is defined: the Adjacency Segment Identifier (Adj-SID)
sub-TLV.<a href="#section-2.2-1" class="pilcrow">¶</a></p>
<p id="section-2.2-2">The Adj-SID sub-TLV is an optional sub-TLV carrying the Segment
Routing IGP-Adjacency-SID as defined in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span> with
flags and fields that may be used, in future extensions of Segment
Routing, for carrying other types of SIDs.<a href="#section-2.2-2" class="pilcrow">¶</a></p>
<p id="section-2.2-3">IS-IS adjacencies are advertised using one of the IS Neighbor TLVs
below:<a href="#section-2.2-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.2-4.1">TLV-22 (Extended IS reachability) <span>[<a href="#RFC5305" class="xref">RFC5305</a>]</span><a href="#section-2.2-4.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2-4.2">TLV-222 (MT-ISN) <span>[<a href="#RFC5120" class="xref">RFC5120</a>]</span><a href="#section-2.2-4.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2-4.3">TLV-23 (IS Neighbor Attribute) <span>[<a href="#RFC5311" class="xref">RFC5311</a>]</span><a href="#section-2.2-4.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2-4.4">TLV-223 (MT IS Neighbor Attribute) <span>[<a href="#RFC5311" class="xref">RFC5311</a>]</span><a href="#section-2.2-4.4" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2-4.5">TLV-141 (inter-AS reachability information) <span>[<a href="#RFC5316" class="xref">RFC5316</a>]</span><a href="#section-2.2-4.5" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2.2-5">Multiple Adj-SID sub-TLVs <span class="bcp14">MAY</span> be associated with a single
IS Neighbor.<a href="#section-2.2-5" class="pilcrow">¶</a></p>
<div id="ADJSIDSUBTLV">
<section id="section-2.2.1">
<h4 id="name-adjacency-segment-identifier">
<a href="#section-2.2.1" class="section-number selfRef">2.2.1. </a><a href="#name-adjacency-segment-identifier" class="section-name selfRef">Adjacency Segment Identifier (Adj-SID) Sub-TLV</a>
</h4>
<p id="section-2.2.1-1">The following format is defined for the Adj-SID sub-TLV:<a href="#section-2.2.1-1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.2.1-2">
<pre>
0 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 | Flags | Weight |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SID/Label/Index (variable) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-2.2.1-2" class="pilcrow">¶</a>
</div>
<p id="section-2.2.1-3">where:<a href="#section-2.2.1-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.2.1-4.1">
<dl class="dlParallel" id="section-2.2.1-4.1.1">
<dt id="section-2.2.1-4.1.1.1">Type:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.2">31<a href="#section-2.2.1-4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.1-4.1.1.3">Length:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.4">5 or 6 depending on size of the SID<a href="#section-2.2.1-4.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.1-4.1.1.5">Flags:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.6">
<p id="section-2.2.1-4.1.1.6.1">1-octet field of the following flags:<a href="#section-2.2.1-4.1.1.6.1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.2.1-4.1.1.6.2">
<pre> 0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
|F|B|V|L|S|P| |
+-+-+-+-+-+-+-+-+</pre><a href="#section-2.2.1-4.1.1.6.2" class="pilcrow">¶</a>
</div>
<p id="section-2.2.1-4.1.1.6.3"> where:<a href="#section-2.2.1-4.1.1.6.3" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-2.2.1-4.1.1.6.4">
<dt id="section-2.2.1-4.1.1.6.4.1">F-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.6.4.2">Address-Family Flag. If unset, then the Adj-SID
is used when forwarding IPv4-encapsulated traffic to the
neighbor. If set, then the Adj-SID is used when forwarding
IPv6-encapsulated traffic to the neighbor.<a href="#section-2.2.1-4.1.1.6.4.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.1-4.1.1.6.4.3">B-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.6.4.4">Backup Flag. If set, the Adj-SID is eligible for
protection (e.g., using IP Fast Reroute (IPFRR) or MPLS Fast Reroute (MPLS-FRR)) as described in
<span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-2.2.1-4.1.1.6.4.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.1-4.1.1.6.4.5">V-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.6.4.6">Value Flag. If set, then the Adj-SID carries a
value. By default, the flag is SET.<a href="#section-2.2.1-4.1.1.6.4.6" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.1-4.1.1.6.4.7">L-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.6.4.8">Local Flag. If set, then the value/index carried
by the Adj-SID has local significance. By default, the flag
is SET.<a href="#section-2.2.1-4.1.1.6.4.8" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.1-4.1.1.6.4.9">S-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.6.4.10">Set Flag. When set, the S-Flag indicates that the
Adj-SID refers to a set of adjacencies (and therefore <span class="bcp14">MAY</span> be
assigned to other adjacencies as well).<a href="#section-2.2.1-4.1.1.6.4.10" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.1-4.1.1.6.4.11">P-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.6.4.12">Persistent Flag. When set, the P-Flag indicates
that the Adj-SID is persistently allocated, i.e., the
Adj-SID value remains consistent across router restart
and/or interface flap.<a href="#section-2.2.1-4.1.1.6.4.12" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.1-4.1.1.6.4.13">Other bits:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-4.1.1.6.4.14">
<span class="bcp14">MUST</span> be zero when originated and ignored when
received.<a href="#section-2.2.1-4.1.1.6.4.14" class="pilcrow">¶</a>
</dd>
</dl>
</dd>
</dl>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.2.1-5.1">
<dl class="dlParallel" id="section-2.2.1-5.1.1">
<dt id="section-2.2.1-5.1.1.1">Weight:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.1-5.1.1.2">1 octet. The value represents the weight of the
Adj-SID for the purpose of load balancing. The use of the weight
is defined in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-2.2.1-5.1.1.2" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.2.1-6.1">SID/Index/Label as defined in <a href="#VANDLFLAGS" class="xref">Section 2.1.1.1</a>.<a href="#section-2.2.1-6.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2.1-6.2">An SR-capable router <span class="bcp14">MAY</span> allocate an Adj-SID for each of its
adjacencies.<a href="#section-2.2.1-6.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2.1-6.3">An SR-capable router <span class="bcp14">MAY</span> allocate more than one Adj-SID to an
adjacency.<a href="#section-2.2.1-6.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2.1-6.4">An SR-capable router <span class="bcp14">MAY</span> allocate the same Adj-SID to
different adjacencies.<a href="#section-2.2.1-6.4" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2.1-6.5">When the P-Flag is not set, the Adj-SID <span class="bcp14">MAY</span> be persistent.
When the P-Flag is set, the Adj-SID <span class="bcp14">MUST</span> be persistent.<a href="#section-2.2.1-6.5" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2.1-6.6">Examples of Adj-SID sub-TLV use are described in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-2.2.1-6.6" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.2.1-6.7">The F-Flag is used in order for the router to advertise the
outgoing encapsulation of the adjacency the Adj-SID is attached
to.<a href="#section-2.2.1-6.7" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="LANADJSIDSUBTLV">
<section id="section-2.2.2">
<h4 id="name-adjacency-segment-identifier-">
<a href="#section-2.2.2" class="section-number selfRef">2.2.2. </a><a href="#name-adjacency-segment-identifier-" class="section-name selfRef">Adjacency Segment Identifier (LAN-Adj-SID) Sub-TLV</a>
</h4>
<p id="section-2.2.2-1">In LAN subnetworks, the Designated Intermediate System (DIS) is
elected and originates the Pseudonode LSP (PN LSP) including all
neighbors of the DIS.<a href="#section-2.2.2-1" class="pilcrow">¶</a></p>
<p id="section-2.2.2-2">When Segment Routing is used, each router in the LAN <span class="bcp14">MAY</span>
advertise the Adj-SID of each of its neighbors. Since, on LANs, each
router only advertises one adjacency to the DIS (and doesn't
advertise any other adjacency), each router advertises the set of
Adj-SIDs (for each of its neighbors) inside a newly defined sub-TLV
that is a part of the TLV advertising the adjacency to the DIS (e.g.,
TLV-22).<a href="#section-2.2.2-2" class="pilcrow">¶</a></p>
<p id="section-2.2.2-3">The following new sub-TLV is defined: LAN Adjacency Segment Identifier (LAN-Adj-SID) containing the
set of Adj-SIDs the router assigned to each of its LAN
neighbors.<a href="#section-2.2.2-3" class="pilcrow">¶</a></p>
<p id="section-2.2.2-4">The format of the LAN-Adj-SID sub-TLV is as follows:<a href="#section-2.2.2-4" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.2.2-5">
<pre>
0 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 | Flags | Weight |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Neighbor System-ID (ID length octets) |
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SID/Label/Index (variable) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-2.2.2-5" class="pilcrow">¶</a>
</div>
<p id="section-2.2.2-6">where:<a href="#section-2.2.2-6" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.2.2-7.1">
<dl class="dlParallel" id="section-2.2.2-7.1.1">
<dt id="section-2.2.2-7.1.1.1">Type:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.2-7.1.1.2">32<a href="#section-2.2.2-7.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.2-7.1.1.3">Length:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.2-7.1.1.4">Variable<a href="#section-2.2.2-7.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.2-7.1.1.5">Flags:</dt>
<dd style="margin-left: 4.5em" id="section-2.2.2-7.1.1.6">
<p id="section-2.2.2-7.1.1.6.1"> 1-octet field of the following flags:<a href="#section-2.2.2-7.1.1.6.1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.2.2-7.1.1.6.2">
<pre> 0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
|F|B|V|L|S|P| |
+-+-+-+-+-+-+-+-+</pre><a href="#section-2.2.2-7.1.1.6.2" class="pilcrow">¶</a>
</div>
<p id="section-2.2.2-7.1.1.6.3"> where the F-Flag, B-Flag, V-Flag, L-Flag, S-Flag, and P-Flag are defined in <a href="#ADJSIDSUBTLV" class="xref">Section 2.2.1</a>.<a href="#section-2.2.2-7.1.1.6.3" class="pilcrow">¶</a></p>
</dd>
</dl>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.2.2-8.1">
<dl class="dlParallel" id="section-2.2.2-8.1.1">
<dt id="section-2.2.2-8.1.1.1">Other bits:</dt>
<dd style="margin-left: 6.5em" id="section-2.2.2-8.1.1.2">
<span class="bcp14">MUST</span> be zero when
originated and ignored when received.<a href="#section-2.2.2-8.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.2-8.1.1.3">Weight:</dt>
<dd style="margin-left: 6.5em" id="section-2.2.2-8.1.1.4">1 octet. The value represents the weight of the
Adj-SID for the purpose of load balancing. The use of the weight
is defined in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-2.2.2-8.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.2-8.1.1.5">Neighbor System-ID:</dt>
<dd style="margin-left: 6.5em" id="section-2.2.2-8.1.1.6">IS-IS System-ID of length "ID Length" as
defined in <span>[<a href="#ISO10589" class="xref">ISO10589</a>]</span>.<a href="#section-2.2.2-8.1.1.6" class="pilcrow">¶</a>
</dd>
<dt id="section-2.2.2-8.1.1.7">SID/Index/Label:</dt>
<dd style="margin-left: 6.5em" id="section-2.2.2-8.1.1.8">As defined in <a href="#VANDLFLAGS" class="xref">Section 2.1.1.1</a>.<a href="#section-2.2.2-8.1.1.8" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<p id="section-2.2.2-9">Multiple LAN-Adj-SID sub-TLVs <span class="bcp14">MAY</span> be encoded.<a href="#section-2.2.2-9" class="pilcrow">¶</a></p>
<p id="section-2.2.2-10">Note that this sub-TLV <span class="bcp14">MUST NOT</span> appear in TLV 141.<a href="#section-2.2.2-10" class="pilcrow">¶</a></p>
<p id="section-2.2.2-11">In case TLV-22, TLV-23, TLV-222, or TLV-223 (reporting the adjacency to the
DIS) can't contain the whole set of LAN-Adj-SID sub-TLVs, multiple
advertisements of the adjacency to the DIS <span class="bcp14">MUST</span> be used, and all
advertisements <span class="bcp14">MUST</span> have the same metric.<a href="#section-2.2.2-11" class="pilcrow">¶</a></p>
<p id="section-2.2.2-12">Each router within the level, by receiving the DIS PN LSP as well
as the non-PN LSP of each router in the LAN, is capable of
reconstructing the LAN topology as well as the set of Adj-SIDs each
router uses for each of its neighbors.<a href="#section-2.2.2-12" class="pilcrow">¶</a></p>
</section>
</div>
</section>
<div id="SIDLABELSUBTLV">
<section id="section-2.3">
<h3 id="name-sid-label-sub-tlv">
<a href="#section-2.3" class="section-number selfRef">2.3. </a><a href="#name-sid-label-sub-tlv" class="section-name selfRef">SID/Label Sub-TLV</a>
</h3>
<p id="section-2.3-1">The SID/Label sub-TLV may be present in the following TLVs/sub-TLVs
defined in this document:<a href="#section-2.3-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.3-2.1">SR-Capabilities sub-TLV (<a href="#SRCAPSUBTLV" class="xref">Section 3.1</a>)<a href="#section-2.3-2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.3-2.2">SR Local Block sub-TLV (<a href="#SRLBSUBTLV" class="xref">Section 3.3</a>)<a href="#section-2.3-2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.3-2.3">SID/Label Binding TLV (<a href="#BINDINGTLV" class="xref">Section 2.4</a>)<a href="#section-2.3-2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.3-2.4">Multi-Topology SID/Label Binding TLV (<a href="#MTBINDINGTLV" class="xref">Section 2.5</a>)<a href="#section-2.3-2.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2.3-3">Note that the codepoint used in all of the above cases is the
SID/Label sub-TLV codepoint specified in the new "sub-TLVs for
TLV 149 and 150" registry created by this document.<a href="#section-2.3-3" class="pilcrow">¶</a></p>
<p id="section-2.3-4">The SID/Label sub-TLV contains a SID or an MPLS label. The SID/Label
sub-TLV has the following format:<a href="#section-2.3-4" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.3-5">
<pre>
0 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 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SID/Label (variable) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-2.3-5" class="pilcrow">¶</a>
</div>
<p id="section-2.3-6">where:<a href="#section-2.3-6" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.3-7.1">
<dl class="dlParallel" id="section-2.3-7.1.1">
<dt id="section-2.3-7.1.1.1">Type:</dt>
<dd style="margin-left: 6.0em" id="section-2.3-7.1.1.2">1<a href="#section-2.3-7.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.3-7.1.1.3">Length:</dt>
<dd style="margin-left: 6.0em" id="section-2.3-7.1.1.4">3 or 4<a href="#section-2.3-7.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.3-7.1.1.5">SID/Label:</dt>
<dd style="margin-left: 6.0em" id="section-2.3-7.1.1.6">If the length is set to 3, then the 20 rightmost bits
represent an MPLS label. If the length is set to 4, then the value is a
32-bit index.<a href="#section-2.3-7.1.1.6" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
</section>
</div>
<div id="BINDINGTLV">
<section id="section-2.4">
<h3 id="name-sid-label-binding-tlv">
<a href="#section-2.4" class="section-number selfRef">2.4. </a><a href="#name-sid-label-binding-tlv" class="section-name selfRef">SID/Label Binding TLV</a>
</h3>
<p id="section-2.4-1">The SID/Label Binding TLV <span class="bcp14">MAY</span> be originated by any router in an
IS-IS domain. There are multiple uses of the SID/Label Binding
TLV.<a href="#section-2.4-1" class="pilcrow">¶</a></p>
<p id="section-2.4-2">The SID/Label Binding TLV may be used to advertise prefixes to
SID/Label mappings. This functionality is called the Segment Routing
Mapping Server (SRMS). The behavior of the SRMS is defined in <span>[<a href="#RFC8661" class="xref">RFC8661</a>]</span>.<a href="#section-2.4-2" class="pilcrow">¶</a></p>
<p id="section-2.4-3">The SID/Label Binding TLV may also be used to advertise a Mirror
SID indicating the ability of a node to process traffic originally destined to
another IGP node. This behavior is defined in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-2.4-3" class="pilcrow">¶</a></p>
<p id="section-2.4-4">The SID/Label Binding TLV has the following format:<a href="#section-2.4-4" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.4-5">
<pre>
0 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 | Flags | RESERVED |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Range | Prefix Length | Prefix |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// Prefix (continued, variable) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sub-TLVs (variable) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-2.4-5" class="pilcrow">¶</a>
</div>
<p id="section-2.4-6">where:<a href="#section-2.4-6" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.4-7.1">
<dl class="dlParallel" id="section-2.4-7.1.1">
<dt id="section-2.4-7.1.1.1">Type:</dt>
<dd style="margin-left: 6.0em" id="section-2.4-7.1.1.2">149<a href="#section-2.4-7.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4-7.1.1.3">Length:</dt>
<dd style="margin-left: 6.0em" id="section-2.4-7.1.1.4">Variable<a href="#section-2.4-7.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4-7.1.1.5">Flags:</dt>
<dd style="margin-left: 6.0em" id="section-2.4-7.1.1.6">1 octet<a href="#section-2.4-7.1.1.6" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4-7.1.1.7">RESERVED:</dt>
<dd style="margin-left: 6.0em" id="section-2.4-7.1.1.8">1 octet (<span class="bcp14">SHOULD</span> be transmitted as 0 and <span class="bcp14">MUST</span> be
ignored on receipt)<a href="#section-2.4-7.1.1.8" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4-7.1.1.9">Range:</dt>
<dd style="margin-left: 6.0em" id="section-2.4-7.1.1.10">2 octets<a href="#section-2.4-7.1.1.10" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4-7.1.1.11">Prefix Length:</dt>
<dd style="margin-left: 6.0em" id="section-2.4-7.1.1.12">1 octet<a href="#section-2.4-7.1.1.12" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4-7.1.1.13">Prefix:</dt>
<dd style="margin-left: 6.0em" id="section-2.4-7.1.1.14">0-16 octets<a href="#section-2.4-7.1.1.14" class="pilcrow">¶</a>
</dd>
</dl>
<p id="section-2.4-7.1.2">sub-TLVs, where each sub-TLV consists of a sequence of:<a href="#section-2.4-7.1.2" class="pilcrow">¶</a></p>
<ul>
<li id="section-2.4-7.1.3.1">1 octet of sub-TLV type<a href="#section-2.4-7.1.3.1" class="pilcrow">¶</a>
</li>
<li id="section-2.4-7.1.3.2">1 octet of length of the value field of the sub-TLV<a href="#section-2.4-7.1.3.2" class="pilcrow">¶</a>
</li>
<li id="section-2.4-7.1.3.3">0-243 octets of value<a href="#section-2.4-7.1.3.3" class="pilcrow">¶</a>
</li>
</ul>
</li>
</ul>
<section id="section-2.4.1">
<h4 id="name-flags-2">
<a href="#section-2.4.1" class="section-number selfRef">2.4.1. </a><a href="#name-flags-2" class="section-name selfRef">Flags</a>
</h4>
<p id="section-2.4.1-1">Flags: 1-octet field of the following flags:<a href="#section-2.4.1-1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.4.1-2">
<pre>
0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
|F|M|S|D|A| |
+-+-+-+-+-+-+-+-+</pre><a href="#section-2.4.1-2" class="pilcrow">¶</a>
</div>
<p id="section-2.4.1-3"> where:<a href="#section-2.4.1-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.4.1-4.1">
<dl class="dlParallel" id="section-2.4.1-4.1.1">
<dt id="section-2.4.1-4.1.1.1">F-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.4.1-4.1.1.2">Address-Family Flag. If unset, then the prefix
carries an IPv4 prefix. If set, then the prefix carries an IPv6
prefix.<a href="#section-2.4.1-4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4.1-4.1.1.3">M-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.4.1-4.1.1.4">Mirror Context Flag. Set if the advertised SID
corresponds to a mirrored context. The use of a mirrored context
is described in <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-2.4.1-4.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4.1-4.1.1.5">S-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.4.1-4.1.1.6">If set, the SID/Label Binding TLV <span class="bcp14">SHOULD</span> be flooded
across the entire routing domain. If the S-Flag is not set, the
SID/Label Binding TLV <span class="bcp14">MUST NOT</span> be leaked between levels. This
bit <span class="bcp14">MUST NOT</span> be altered during the TLV leaking.<a href="#section-2.4.1-4.1.1.6" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4.1-4.1.1.7">D-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.4.1-4.1.1.8">When the SID/Label Binding TLV is leaked from Level-2
to Level-1, the D-Flag <span class="bcp14">MUST</span> be set. Otherwise, this flag <span class="bcp14">MUST</span> be
clear. SID/Label Binding TLVs with the D-Flag set <span class="bcp14">MUST NOT</span> be
leaked from Level-1 to Level-2. This is to prevent TLV looping
across levels.<a href="#section-2.4.1-4.1.1.8" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4.1-4.1.1.9">A-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-2.4.1-4.1.1.10">Attached Flag. The originator of the SID/Label
Binding TLV <span class="bcp14">MAY</span> set the A bit in order to signal that the
prefixes and SIDs advertised in the SID/Label Binding TLV are
directly connected to their originators. The mechanisms through
which the originator of the SID/Label Binding TLV can figure out
if a prefix is attached or not are outside the scope of this
document (e.g., through explicit configuration). If the Binding
TLV is leaked to other areas/levels, the A-Flag <span class="bcp14">MUST</span> be
cleared.<a href="#section-2.4.1-4.1.1.10" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.4.1-5.1">An implementation may decide not to honor the S-Flag in order
to not leak Binding TLVs between levels (for policy
reasons).<a href="#section-2.4.1-5.1" class="pilcrow">¶</a>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.4.1-6.1">
<dl class="dlParallel" id="section-2.4.1-6.1.1">
<dt id="section-2.4.1-6.1.1.1">Other bits:</dt>
<dd id="section-2.4.1-6.1.1.2">
<span class="bcp14">MUST</span> be zero when originated and ignored when
received.<a href="#section-2.4.1-6.1.1.2" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
</section>
<section id="section-2.4.2">
<h4 id="name-range">
<a href="#section-2.4.2" class="section-number selfRef">2.4.2. </a><a href="#name-range" class="section-name selfRef">Range</a>
</h4>
<p id="section-2.4.2-1">The 'Range' field provides the ability to specify a range of
addresses and their associated Prefix-SIDs. This advertisement
supports the SRMS functionality. It is essentially a compression
scheme to distribute a continuous prefix and their continuous,
corresponding SID/Label Block. If a single SID is advertised, then
the Range field <span class="bcp14">MUST</span> be set to one. For range advertisements > 1,
the Range field <span class="bcp14">MUST</span> be set to the number of addresses that need to
be mapped into a Prefix-SID. In either case, the prefix is the first
address to which a SID is to be assigned.<a href="#section-2.4.2-1" class="pilcrow">¶</a></p>
</section>
<section id="section-2.4.3">
<h4 id="name-prefix-length-prefix">
<a href="#section-2.4.3" class="section-number selfRef">2.4.3. </a><a href="#name-prefix-length-prefix" class="section-name selfRef">Prefix Length, Prefix</a>
</h4>
<p id="section-2.4.3-1">The 'Prefix' represents the Forwarding Equivalence Class at the
tail end of the advertised path. The 'Prefix' does not need to
correspond to a routable prefix of the originating node.<a href="#section-2.4.3-1" class="pilcrow">¶</a></p>
<p id="section-2.4.3-2">The 'Prefix Length' field contains the length of the prefix in
bits. Only the most significant octets of the prefix are encoded
(i.e., 1 octet for prefix length 1 up to 8, 2 octets for prefix
length 9 to up 16, 3 octets for prefix length 17 up to 24, 4 octets
for prefix length 25 up to 32, ...., and 16 octets for prefix length 113
up to 128).<a href="#section-2.4.3-2" class="pilcrow">¶</a></p>
</section>
<section id="section-2.4.4">
<h4 id="name-mapping-server-prefix-sid">
<a href="#section-2.4.4" class="section-number selfRef">2.4.4. </a><a href="#name-mapping-server-prefix-sid" class="section-name selfRef">Mapping Server Prefix-SID</a>
</h4>
<p id="section-2.4.4-1">The Prefix-SID sub-TLV is defined in <a href="#PREFIXSIDSUBTLV" class="xref">Section 2.1</a> and contains the SID/Index/Label value
associated with the prefix and range. The Prefix-SID sub-TLV <span class="bcp14">MUST</span> be
present in the SID/Label Binding TLV when the M-Flag is clear. The
Prefix-SID sub-TLV <span class="bcp14">MUST NOT</span> be present when the M-Flag is set.<a href="#section-2.4.4-1" class="pilcrow">¶</a></p>
<section id="section-2.4.4.1">
<h5 id="name-prefix-sid-flags">
<a href="#section-2.4.4.1" class="section-number selfRef">2.4.4.1. </a><a href="#name-prefix-sid-flags" class="section-name selfRef">Prefix-SID Flags</a>
</h5>
<p id="section-2.4.4.1-1">The Prefix-SID Flags are defined in <a href="#PREFIXSIDSUBTLV" class="xref">Section 2.1</a>. The Mapping Server <span class="bcp14">MAY</span> advertise a
mapping with the N-Flag set when the prefix being mapped is known
in the link-state topology with a mask length of 32 (IPv4) or 128
(IPv6) and when the prefix represents a node. The mechanisms
through which the operator defines that a prefix represents a node
are outside the scope of this document (typically it will be
through configuration).<a href="#section-2.4.4.1-1" class="pilcrow">¶</a></p>
<p id="section-2.4.4.1-2">The other flags defined in <a href="#PREFIXSIDSUBTLV" class="xref">Section 2.1</a> are
not used by the Mapping Server and <span class="bcp14">MUST</span> be ignored at
reception.<a href="#section-2.4.4.1-2" class="pilcrow">¶</a></p>
</section>
<div id="MSPHP">
<section id="section-2.4.4.2">
<h5 id="name-php-behavior-when-using-map">
<a href="#section-2.4.4.2" class="section-number selfRef">2.4.4.2. </a><a href="#name-php-behavior-when-using-map" class="section-name selfRef">PHP Behavior when Using Mapping Server Advertisements</a>
</h5>
<p id="section-2.4.4.2-1">As the Mapping Server does not specify the originator of a
prefix advertisement, it is not possible to determine PHP behavior
solely based on the Mapping Server Advertisement. However, if
additional information is available, PHP behavior may safely be
done. The required information consists of:<a href="#section-2.4.4.2-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-2.4.4.2-2.1">A prefix reachability advertisement for the prefix has been
received, which includes the Prefix Attribute Flags sub-TLV
<span>[<a href="#RFC7794" class="xref">RFC7794</a>]</span>.<a href="#section-2.4.4.2-2.1" class="pilcrow">¶</a>
</li>
<li id="section-2.4.4.2-2.2">X-Flag and R-Flag are both set to 0 in the Prefix Attribute
Flags sub-TLV.<a href="#section-2.4.4.2-2.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2.4.4.2-3">In the absence of a Prefix Attribute Flags sub-TLV <span>[<a href="#RFC7794" class="xref">RFC7794</a>]</span>, the A-Flag in the Binding TLV indicates that
the originator of a prefix reachability advertisement is directly
connected to the prefix; thus, PHP <span class="bcp14">MUST</span> be done by the neighbors
of the router originating the prefix reachability advertisement.
Note that the A-Flag is only valid in the original area in which the
Binding TLV is advertised.<a href="#section-2.4.4.2-3" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-2.4.4.3">
<h5 id="name-prefix-sid-algorithm">
<a href="#section-2.4.4.3" class="section-number selfRef">2.4.4.3. </a><a href="#name-prefix-sid-algorithm" class="section-name selfRef">Prefix-SID Algorithm</a>
</h5>
<p id="section-2.4.4.3-1">The Algorithm field contains the identifier of the algorithm
associated with the SIDs for the prefix(es) in the range. Use of
the Algorithm field is described in <a href="#PREFIXSIDSUBTLV" class="xref">Section 2.1</a>.<a href="#section-2.4.4.3-1" class="pilcrow">¶</a></p>
</section>
</section>
<div id="BSIDSUBTLV">
<section id="section-2.4.5">
<h4 id="name-sid-label-sub-tlv-2">
<a href="#section-2.4.5" class="section-number selfRef">2.4.5. </a><a href="#name-sid-label-sub-tlv-2" class="section-name selfRef">SID/Label Sub-TLV</a>
</h4>
<p id="section-2.4.5-1">The SID/Label sub-TLV (Type: 1) contains the SID/Label value as
defined in <a href="#SIDLABELSUBTLV" class="xref">Section 2.3</a>. It <span class="bcp14">MUST</span> be present in
the SID/Label Binding TLV when the M-Flag is set in the Flags field
of the parent TLV.<a href="#section-2.4.5-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="BSIDEXAMPLE">
<section id="section-2.4.6">
<h4 id="name-example-encodings">
<a href="#section-2.4.6" class="section-number selfRef">2.4.6. </a><a href="#name-example-encodings" class="section-name selfRef">Example Encodings</a>
</h4>
<p id="section-2.4.6-1">Example 1: If the following IPv4 router addresses (loopback
addresses) need to be mapped into the corresponding Prefix-SID
indexes, then:<a href="#section-2.4.6-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.4.6-2.1">Router-A: 192.0.2.1/32, Prefix-SID: Index 1<a href="#section-2.4.6-2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-2.2">Router-B: 192.0.2.2/32, Prefix-SID: Index 2<a href="#section-2.4.6-2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-2.3">Router-C: 192.0.2.3/32, Prefix-SID: Index 3<a href="#section-2.4.6-2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-2.4">Router-D: 192.0.2.4/32, Prefix-SID: Index 4<a href="#section-2.4.6-2.4" class="pilcrow">¶</a>
</li>
</ul>
<div class="artwork art-text alignLeft" id="section-2.4.6-3">
<pre>
0 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 |0|0|0|0|0| | RESERVED |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Range = 4 | 32 | 192 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0 | 2 | 1 |Prefix-SID Type|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sub-TLV Length| Flags | Algorithm | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 1 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ </pre><a href="#section-2.4.6-3" class="pilcrow">¶</a>
</div>
<p id="section-2.4.6-4">Example 2: If the following IPv4 prefixes need to be mapped into
the corresponding Prefix-SID indexes, then:<a href="#section-2.4.6-4" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.4.6-5.1">10.1.1/24, Prefix-SID: Index 51<a href="#section-2.4.6-5.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-5.2">10.1.2/24, Prefix-SID: Index 52<a href="#section-2.4.6-5.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-5.3">10.1.3/24, Prefix-SID: Index 53<a href="#section-2.4.6-5.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-5.4">10.1.4/24, Prefix-SID: Index 54<a href="#section-2.4.6-5.4" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-5.5">10.1.5/24, Prefix-SID: Index 55<a href="#section-2.4.6-5.5" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-5.6">10.1.6/24, Prefix-SID: Index 56<a href="#section-2.4.6-5.6" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-5.7">10.1.7/24, Prefix-SID: Index 57<a href="#section-2.4.6-5.7" class="pilcrow">¶</a>
</li>
</ul>
<div class="artwork art-text alignLeft" id="section-2.4.6-6">
<pre>
0 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 |0|0|0|0|0| | RESERVED |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Range = 7 | 24 | 10 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 1 | 1 |Prefix-SID Type| Sub-TLV Length|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Flags | Algorithm | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 51 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-2.4.6-6" class="pilcrow">¶</a>
</div>
<p id="section-2.4.6-7">Example 3: If the following IPv6 prefixes need to be mapped into
the corresponding Prefix-SID indexes, then:<a href="#section-2.4.6-7" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.4.6-8.1">2001:db8:1/48, Prefix-SID: Index 151<a href="#section-2.4.6-8.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-8.2">2001:db8:2/48, Prefix-SID: Index 152<a href="#section-2.4.6-8.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-8.3">2001:db8:3/48, Prefix-SID: Index 153<a href="#section-2.4.6-8.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-2.4.6-8.4">2001:db8:4/48, Prefix-SID: Index 154<a href="#section-2.4.6-8.4" class="pilcrow">¶</a>
</li>
</ul>
<div class="artwork art-text alignLeft" id="section-2.4.6-9">
<pre>
0 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 |1|0|0|0|0| | RESERVED |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Range = 4 | 48 | 0x20 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0x01 | 0x0d | 0xb8 | 0x00 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0x01 |Prefix-SID Type| Sub-TLV Length| Flags |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Algorithm | 0 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 151 |
+-+-+-+-+-+-+-+-+</pre><a href="#section-2.4.6-9" class="pilcrow">¶</a>
</div>
<p id="section-2.4.6-10">It is not expected that a network operator will be able to keep
fully continuous Prefix/SID/Index mappings. In order to support
noncontinuous mapping ranges, an implementation <span class="bcp14">MAY</span> generate several
instances of Binding TLVs.<a href="#section-2.4.6-10" class="pilcrow">¶</a></p>
<p id="section-2.4.6-11">For example, if a router wants to advertise the following ranges:<a href="#section-2.4.6-11" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.4.6-12.1">
<dl class="dlParallel" id="section-2.4.6-12.1.1">
<dt id="section-2.4.6-12.1.1.1">Range 16:</dt>
<dd style="margin-left: 6.0em" id="section-2.4.6-12.1.1.2">{ 192.0.2.1-15, Index 1-15 }<a href="#section-2.4.6-12.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4.6-12.1.1.3">Range 6:</dt>
<dd style="margin-left: 6.0em" id="section-2.4.6-12.1.1.4">{ 192.0.2.22-27, Index 22-27 }<a href="#section-2.4.6-12.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2.4.6-12.1.1.5">Range 41:</dt>
<dd style="margin-left: 6.0em" id="section-2.4.6-12.1.1.6">{ 192.0.2.44-84, Index 80-120 }<a href="#section-2.4.6-12.1.1.6" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<p id="section-2.4.6-13"> a router would need to advertise three instances of the
Binding TLV.<a href="#section-2.4.6-13" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="MTBINDINGTLV">
<section id="section-2.5">
<h3 id="name-multi-topology-sid-label-bi">
<a href="#section-2.5" class="section-number selfRef">2.5. </a><a href="#name-multi-topology-sid-label-bi" class="section-name selfRef">Multi-Topology SID/Label Binding TLV</a>
</h3>
<p id="section-2.5-1">The Multi-Topology SID/Label Binding TLV allows the support of
Multi-Topology IS-IS (M-ISIS) as defined in <span>[<a href="#RFC5120" class="xref">RFC5120</a>]</span>. The Multi-Topology
SID/Label Binding TLV has the same format as the SID/Label Binding TLV
defined in <a href="#BINDINGTLV" class="xref">Section 2.4</a> with the difference consisting
of a Multi-topology Identifier (MT ID) as defined here below:<a href="#section-2.5-1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.5-2">
<pre>
0 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 | MT ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Flags | RESERVED | Range |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Prefix Length | Prefix (variable) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sub-TLVs (variable) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-2.5-2" class="pilcrow">¶</a>
</div>
<p id="section-2.5-3">where:<a href="#section-2.5-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.5-4.1">
<dl class="dlParallel" id="section-2.5-4.1.1">
<dt id="section-2.5-4.1.1.1">Type:</dt>
<dd style="margin-left: 4.5em" id="section-2.5-4.1.1.2">150<a href="#section-2.5-4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.5-4.1.1.3">Length:</dt>
<dd style="margin-left: 4.5em" id="section-2.5-4.1.1.4">Variable<a href="#section-2.5-4.1.1.4" class="pilcrow">¶</a>
</dd>
</dl>
<p id="section-2.5-4.1.2">MT ID is the Multi-topology Identifier defined as:<a href="#section-2.5-4.1.2" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-2.5-4.1.3">
<pre>
0 1
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| RESVD | MT ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-2.5-4.1.3" class="pilcrow">¶</a>
</div>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.5-4.1.4.1">
<dl class="dlParallel" id="section-2.5-4.1.4.1.1">
<dt id="section-2.5-4.1.4.1.1.1">RESVD:</dt>
<dd style="margin-left: 4.5em" id="section-2.5-4.1.4.1.1.2">Reserved bits. <span class="bcp14">MUST</span> be reset on transmission and
ignored on receive.<a href="#section-2.5-4.1.4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2.5-4.1.4.1.1.3">MT ID:</dt>
<dd style="margin-left: 4.5em" id="section-2.5-4.1.4.1.1.4">A 12-bit field containing the non-zero ID of the
topology being announced. The TLV <span class="bcp14">MUST</span> be ignored if the ID is
zero. This is to ensure the consistent view of the standard
unicast topology.<a href="#section-2.5-4.1.4.1.1.4" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-2.5-5.1">
<p id="section-2.5-5.1.1">The other fields and sub-TLVs are defined in <a href="#BINDINGTLV" class="xref">Section 2.4</a>.<a href="#section-2.5-5.1.1" class="pilcrow">¶</a></p>
</li>
</ul>
</section>
</div>
</section>
<section id="section-3">
<h2 id="name-router-capabilities">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-router-capabilities" class="section-name selfRef">Router Capabilities</a>
</h2>
<p id="section-3-1">This section defines sub-TLVs that are inserted into the IS-IS
Router Capability that is defined in <span>[<a href="#RFC7981" class="xref">RFC7981</a>]</span>.<a href="#section-3-1" class="pilcrow">¶</a></p>
<div id="SRCAPSUBTLV">
<section id="section-3.1">
<h3 id="name-sr-capabilities-sub-tlv">
<a href="#section-3.1" class="section-number selfRef">3.1. </a><a href="#name-sr-capabilities-sub-tlv" class="section-name selfRef">SR-Capabilities Sub-TLV</a>
</h3>
<p id="section-3.1-1">Segment Routing requires each router to advertise its SR data plane
capability and the range of MPLS label values it uses for Segment
Routing in the case where global SIDs are allocated (i.e., global
indexes). Data plane capabilities and label ranges are advertised
using the newly defined SR-Capabilities sub-TLV.<a href="#section-3.1-1" class="pilcrow">¶</a></p>
<p id="section-3.1-2">The Router Capability TLV specifies flags that control its
advertisement. The SR-Capabilities sub-TLV <span class="bcp14">MUST</span> be propagated
throughout the level and <span class="bcp14">MUST NOT</span> be advertised across level
boundaries. Therefore, Router Capability TLV distribution flags are set
accordingly, i.e., the S-Flag in the Router Capability TLV <span>[<a href="#RFC7981" class="xref">RFC7981</a>]</span> <span class="bcp14">MUST</span> be unset.<a href="#section-3.1-2" class="pilcrow">¶</a></p>
<p id="section-3.1-3">The SR-Capabilities sub-TLV has the following format:<a href="#section-3.1-3" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-3.1-4">
<pre>
0 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 | Flags |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Range |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// SID/Label Sub-TLV (variable) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-3.1-4" class="pilcrow">¶</a>
</div>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-5.1">
<dl class="dlParallel" id="section-3.1-5.1.1">
<dt id="section-3.1-5.1.1.1">Type:</dt>
<dd style="margin-left: 4.5em" id="section-3.1-5.1.1.2">2<a href="#section-3.1-5.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.1-5.1.1.3">Length:</dt>
<dd style="margin-left: 4.5em" id="section-3.1-5.1.1.4">Variable<a href="#section-3.1-5.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-3.1-5.1.1.5">Flags:</dt>
<dd style="margin-left: 4.5em" id="section-3.1-5.1.1.6">
<p id="section-3.1-5.1.1.6.1">1 octet of flags. The following are defined:<a href="#section-3.1-5.1.1.6.1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-3.1-5.1.1.6.2">
<pre> 0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
|I|V| |
+-+-+-+-+-+-+-+-+</pre><a href="#section-3.1-5.1.1.6.2" class="pilcrow">¶</a>
</div>
</dd>
</dl>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-6.1">
<p id="section-3.1-6.1.1">where:<a href="#section-3.1-6.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-6.1.2.1">
<dl class="dlParallel" id="section-3.1-6.1.2.1.1">
<dt id="section-3.1-6.1.2.1.1.1">I-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-3.1-6.1.2.1.1.2">MPLS IPv4 Flag. If set, then the router is capable
of processing SR-MPLS-encapsulated IPv4 packets on all
interfaces.<a href="#section-3.1-6.1.2.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.1-6.1.2.1.1.3">V-Flag:</dt>
<dd style="margin-left: 4.5em" id="section-3.1-6.1.2.1.1.4">MPLS IPv6 Flag. If set, then the router is capable
of processing SR-MPLS-encapsulated IPv6 packets on all
interfaces.<a href="#section-3.1-6.1.2.1.1.4" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-7.1">
<p id="section-3.1-7.1.1">One or more Segment Routing Global Block (SRGB) Descriptor entries, each of which have the
following format:<a href="#section-3.1-7.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-7.1.2.1">
<dl class="dlParallel" id="section-3.1-7.1.2.1.1">
<dt id="section-3.1-7.1.2.1.1.1">Range:</dt>
<dd style="margin-left: 4.5em" id="section-3.1-7.1.2.1.1.2">3 octets<a href="#section-3.1-7.1.2.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.1-7.1.2.1.1.3">SID/Label sub-TLV:</dt>
<dd style="margin-left: 4.5em" id="section-3.1-7.1.2.1.1.4">MPLS label as defined in <a href="#SIDLABELSUBTLV" class="xref">Section 2.3</a><a href="#section-3.1-7.1.2.1.1.4" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
</li>
</ul>
<p id="section-3.1-8">The SID/Label sub-TLV contains the first value of the SRGB while the
range contains the number of SRGB elements. The range value <span class="bcp14">MUST</span> be
higher than 0.<a href="#section-3.1-8" class="pilcrow">¶</a></p>
<p id="section-3.1-9">The SR-Capabilities sub-TLV <span class="bcp14">MAY</span> be advertised in an LSP of any
number, but a router <span class="bcp14">MUST NOT</span> advertise more than one SR-Capabilities
sub-TLV. A router receiving multiple SR-Capabilities sub-TLVs from the
same originator <span class="bcp14">SHOULD</span> select the first advertisement in the lowest-numbered
LSP.<a href="#section-3.1-9" class="pilcrow">¶</a></p>
<p id="section-3.1-10">When multiple SRGB Descriptors are advertised, the entries define an
ordered set of ranges on which a SID index is to be applied. For this
reason, changing the order in which the descriptors are advertised will
have a disruptive effect on forwarding.<a href="#section-3.1-10" class="pilcrow">¶</a></p>
<p id="section-3.1-11">When a router adds a new SRGB Descriptor to an existing
SR-Capabilities sub-TLV, the new descriptor <span class="bcp14">SHOULD</span> add the newly
configured block at the end of the sub-TLV and <span class="bcp14">SHOULD NOT</span> change the
order of previously advertised blocks. Changing the order of the
advertised descriptors will create label churn in the FIB and
black hole / misdirect some traffic during the IGP convergence. In
particular, if a range that is not the last is extended, it's
preferable to add a new range rather than extending the previously
advertised range.<a href="#section-3.1-11" class="pilcrow">¶</a></p>
<p id="section-3.1-12">The originating router <span class="bcp14">MUST</span> ensure the order is unchanged after a
graceful restart (using checkpointing, non-volatile storage, or any
other mechanism).<a href="#section-3.1-12" class="pilcrow">¶</a></p>
<p id="section-3.1-13">The originating router <span class="bcp14">MUST NOT</span> advertise overlapping ranges.<a href="#section-3.1-13" class="pilcrow">¶</a></p>
<p id="section-3.1-14">When a router receives multiple overlapping ranges, it <span class="bcp14">MUST</span> conform
to the procedures defined in <span>[<a href="#RFC8660" class="xref">RFC8660</a>]</span>.<a href="#section-3.1-14" class="pilcrow">¶</a></p>
<p id="section-3.1-15">Here follows an example of the advertisement of multiple ranges:<a href="#section-3.1-15" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-16.1">
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-16.1.1.1">The originating router advertises the following ranges:<a href="#section-3.1-16.1.1.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-3.1-16.1.1.2">SR-Cap: range: 100, SID value: 100<a href="#section-3.1-16.1.1.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-3.1-16.1.1.3">SR-Cap: range: 100, SID value: 1000<a href="#section-3.1-16.1.1.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty" id="section-3.1-16.1.1.4">SR-Cap: range: 100, SID value: 500<a href="#section-3.1-16.1.1.4" class="pilcrow">¶</a>
</li>
</ul>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-17.1">
The receiving routers concatenate the ranges in the received
order and build the SRGB as follows:<a href="#section-3.1-17.1" class="pilcrow">¶</a>
</li>
</ul>
<div class="artwork art-text alignLeft" id="section-3.1-18">
<pre>
SRGB = [100, 199]
[1000, 1099]
[500, 599]</pre><a href="#section-3.1-18" class="pilcrow">¶</a>
</div>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.1-19.1">The indexes span multiple ranges:<a href="#section-3.1-19.1" class="pilcrow">¶</a>
</li>
</ul>
<div class="artwork art-text alignLeft" id="section-3.1-20">
<pre>
index 0 means label 100
...
index 99 means label 199
index 100 means label 1000
index 199 means label 1099
...
index 200 means label 500
...</pre><a href="#section-3.1-20" class="pilcrow">¶</a>
</div>
</section>
</div>
<div id="SRALGOSUBTLV">
<section id="section-3.2">
<h3 id="name-sr-algorithm-sub-tlv">
<a href="#section-3.2" class="section-number selfRef">3.2. </a><a href="#name-sr-algorithm-sub-tlv" class="section-name selfRef">SR-Algorithm Sub-TLV</a>
</h3>
<p id="section-3.2-1">The router may use various algorithms when calculating reachability
to other nodes or to prefixes attached to these nodes. Examples of
these algorithms are metric-based SPF, various
sorts of Constrained SPF, etc. The SR-Algorithm sub-TLV allows the
router to advertise the algorithms that the router is currently using.
Algorithm values are defined in the "IGP Algorithm Type" registry
defined in <span>[<a href="#RFC8665" class="xref">RFC8665</a>]</span>.
The following values have been defined:<a href="#section-3.2-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.2-2.1">
<dl class="dlParallel" id="section-3.2-2.1.1">
<dt id="section-3.2-2.1.1.1">0:</dt>
<dd id="section-3.2-2.1.1.2">SPF algorithm based on link metric.
This is the well-known shortest path algorithm as computed by the
IS-IS Decision Process. Consistent with the deployed practice for
link-state protocols, algorithm 0 permits any node to overwrite
the SPF path with a different path based on local policy.<a href="#section-3.2-2.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.2-2.1.1.3">1:</dt>
<dd id="section-3.2-2.1.1.4">Strict SPF algorithm based on link
metric. The algorithm is identical to algorithm 0, but algorithm 1
requires that all nodes along the path will honor the SPF routing
decision. Local policy <span class="bcp14">MUST NOT</span> alter the forwarding decision
computed by algorithm 1 at the node claiming to support algorithm
1.<a href="#section-3.2-2.1.1.4" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<p id="section-3.2-3">The Router Capability TLV specifies flags that control its
advertisement. The SR-Algorithm <span class="bcp14">MUST</span> be propagated throughout the
level and <span class="bcp14">MUST NOT</span> be advertised across level boundaries. Therefore,
Router Capability TLV distribution flags are set accordingly, i.e.,
the S-Flag <span class="bcp14">MUST</span> be unset.<a href="#section-3.2-3" class="pilcrow">¶</a></p>
<p id="section-3.2-4">The SR-Algorithm sub-TLV is optional. It <span class="bcp14">MUST NOT</span> be advertised
more than once at a given level. A router receiving multiple
SR-Algorithm sub-TLVs from the same originator <span class="bcp14">SHOULD</span> select the first
advertisement in the lowest-numbered LSP.<a href="#section-3.2-4" class="pilcrow">¶</a></p>
<p id="section-3.2-5">When the originating router does not advertise the SR-Algorithm
sub-TLV, it implies that algorithm 0 is the only algorithm supported by the routers
that support the extensions defined in this document.<a href="#section-3.2-5" class="pilcrow">¶</a></p>
<p id="section-3.2-6">When the originating router does advertise the SR-Algorithm
sub-TLV, then algorithm 0 <span class="bcp14">MUST</span> be present while non-zero algorithms
<span class="bcp14">MAY</span> be present.<a href="#section-3.2-6" class="pilcrow">¶</a></p>
<p id="section-3.2-7">The SR-Algorithm sub-TLV has the following format:<a href="#section-3.2-7" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-3.2-8">
<pre>
0 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 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Algorithm 1 | Algorithm 2 | Algorithm ... | Algorithm n |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-3.2-8" class="pilcrow">¶</a>
</div>
<p id="section-3.2-9"> where:<a href="#section-3.2-9" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.2-10.1">
<dl class="dlParallel" id="section-3.2-10.1.1">
<dt id="section-3.2-10.1.1.1">Type:</dt>
<dd style="margin-left: 6.0em" id="section-3.2-10.1.1.2">19<a href="#section-3.2-10.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.2-10.1.1.3">Length:</dt>
<dd style="margin-left: 6.0em" id="section-3.2-10.1.1.4">Variable<a href="#section-3.2-10.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-3.2-10.1.1.5">Algorithm:</dt>
<dd style="margin-left: 6.0em" id="section-3.2-10.1.1.6">1 octet of algorithm<a href="#section-3.2-10.1.1.6" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
</section>
</div>
<div id="SRLBSUBTLV">
<section id="section-3.3">
<h3 id="name-sr-local-block-sub-tlv">
<a href="#section-3.3" class="section-number selfRef">3.3. </a><a href="#name-sr-local-block-sub-tlv" class="section-name selfRef">SR Local Block Sub-TLV</a>
</h3>
<p id="section-3.3-1">The SR Local Block (SRLB) sub-TLV contains the range of labels the
node has reserved for Local SIDs. Local SIDs are used, e.g., for
Adj-SIDs, and may also be allocated by components other than the
IS-IS protocol. As an example, an application or a controller may
instruct the router to allocate a specific Local SID. Therefore, in
order for such applications or controllers to know what Local
SIDs are available in the router, it is required that the router
advertises its SRLB.<a href="#section-3.3-1" class="pilcrow">¶</a></p>
<p id="section-3.3-2">The SRLB sub-TLV is used for this purpose and has following
format:<a href="#section-3.3-2" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-3.3-3">
<pre> 0 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 | Flags |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Range |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// SID/Label Sub-TLV (variable) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-3.3-3" class="pilcrow">¶</a>
</div>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.3-4.1">
<dl class="dlParallel" id="section-3.3-4.1.1">
<dt id="section-3.3-4.1.1.1">Type:</dt>
<dd style="margin-left: 4.5em" id="section-3.3-4.1.1.2">22<a href="#section-3.3-4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.3-4.1.1.3">Length:</dt>
<dd style="margin-left: 4.5em" id="section-3.3-4.1.1.4">Variable<a href="#section-3.3-4.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-3.3-4.1.1.5">Flags:</dt>
<dd style="margin-left: 4.5em" id="section-3.3-4.1.1.6">1 octet of flags. None are defined at this stage.<a href="#section-3.3-4.1.1.6" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.3-5.1">
<p id="section-3.3-5.1.1">One or more SRLB Descriptor entries, each of which have the
following format:<a href="#section-3.3-5.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.3-5.1.2.1">
<dl class="dlParallel" id="section-3.3-5.1.2.1.1">
<dt id="section-3.3-5.1.2.1.1.1">Range:</dt>
<dd style="margin-left: 4.5em" id="section-3.3-5.1.2.1.1.2">3 octets<a href="#section-3.3-5.1.2.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.3-5.1.2.1.1.3">SID/Label sub-TLV:</dt>
<dd style="margin-left: 4.5em" id="section-3.3-5.1.2.1.1.4">MPLS label as defined in <a href="#SIDLABELSUBTLV" class="xref">Section 2.3</a><a href="#section-3.3-5.1.2.1.1.4" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
</li>
</ul>
<p id="section-3.3-6">The SID/Label sub-TLV contains the first value of the SRLB while the
range contains the number of SRLB elements. The range value <span class="bcp14">MUST</span> be
higher than 0.<a href="#section-3.3-6" class="pilcrow">¶</a></p>
<p id="section-3.3-7">The SRLB sub-TLV <span class="bcp14">MAY</span> be advertised in an LSP of any number, but a
router <span class="bcp14">MUST NOT</span> advertise more than one SRLB sub-TLV. A router
receiving multiple SRLB sub-TLVs, from the same originator, <span class="bcp14">SHOULD</span>
select the first advertisement in the lowest-numbered LSP.<a href="#section-3.3-7" class="pilcrow">¶</a></p>
<p id="section-3.3-8">The originating router <span class="bcp14">MUST NOT</span> advertise overlapping ranges.<a href="#section-3.3-8" class="pilcrow">¶</a></p>
<p id="section-3.3-9">When a router receives multiple overlapping ranges, it <span class="bcp14">MUST</span> conform
to the procedures defined in <span>[<a href="#RFC8660" class="xref">RFC8660</a>]</span>.<a href="#section-3.3-9" class="pilcrow">¶</a></p>
<p id="section-3.3-10">It is important to note that each time a SID from the SRLB is
allocated, it should also be reported to all components (e.g.,
controller or applications) in order for these components to have an
up-to-date view of the current SRLB allocation and to avoid
collision between allocation instructions.<a href="#section-3.3-10" class="pilcrow">¶</a></p>
<p id="section-3.3-11">Within the context of IS-IS, the reporting of Local SIDs is done
through IS-IS sub-TLVs such as the Adj-SID. However, the
reporting of allocated Local SIDs may also be done through other means
and protocols that are outside the scope of this document.<a href="#section-3.3-11" class="pilcrow">¶</a></p>
<p id="section-3.3-12">A router advertising the SRLB sub-TLV may also have other label
ranges, outside the SRLB, for its local allocation purposes that are
NOT advertised in the SRLB. For example, it is possible that an
Adj-SID is allocated using a local label not part of the
SRLB.<a href="#section-3.3-12" class="pilcrow">¶</a></p>
</section>
</div>
<div id="SRMSPREFSUBTLV">
<section id="section-3.4">
<h3 id="name-srms-preference-sub-tlv">
<a href="#section-3.4" class="section-number selfRef">3.4. </a><a href="#name-srms-preference-sub-tlv" class="section-name selfRef">SRMS Preference Sub-TLV</a>
</h3>
<p id="section-3.4-1">The SRMS Preference sub-TLV is
used in order to associate a preference with SRMS advertisements from
a particular source.<a href="#section-3.4-1" class="pilcrow">¶</a></p>
<p id="section-3.4-2">The SRMS Preference sub-TLV has the following format:<a href="#section-3.4-2" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-3.4-3">
<pre> 0 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 | Preference |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre><a href="#section-3.4-3" class="pilcrow">¶</a>
</div>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-3.4-4.1">
<dl class="dlParallel" id="section-3.4-4.1.1">
<dt id="section-3.4-4.1.1.1">Type:</dt>
<dd style="margin-left: 6.5em" id="section-3.4-4.1.1.2">24<a href="#section-3.4-4.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-3.4-4.1.1.3">Length:</dt>
<dd style="margin-left: 6.5em" id="section-3.4-4.1.1.4">1<a href="#section-3.4-4.1.1.4" class="pilcrow">¶</a>
</dd>
<dt id="section-3.4-4.1.1.5">Preference:</dt>
<dd style="margin-left: 6.5em" id="section-3.4-4.1.1.6">1 octet and unsigned 8-bit SRMS preference.<a href="#section-3.4-4.1.1.6" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<p id="section-3.4-5">The SRMS Preference sub-TLV <span class="bcp14">MAY</span> be advertised in an LSP of any
number, but a router <span class="bcp14">MUST NOT</span> advertise more than one SRMS Preference
sub-TLV. A router receiving multiple SRMS Preference sub-TLVs, from
the same originator, <span class="bcp14">SHOULD</span> select the first advertisement in the
lowest-numbered LSP.<a href="#section-3.4-5" class="pilcrow">¶</a></p>
<p id="section-3.4-6">The use of the SRMS preference during the SID selection process is
described in <span>[<a href="#RFC8661" class="xref">RFC8661</a>]</span>.<a href="#section-3.4-6" class="pilcrow">¶</a></p>
</section>
</div>
</section>
<div id="IANA">
<section id="section-4">
<h2 id="name-iana-considerations">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<p id="section-4-1">Per this document, IANA has allocated the following TLVs and
sub-TLVs.<a href="#section-4-1" class="pilcrow">¶</a></p>
<section id="section-4.1">
<h3 id="name-sub-tlvs-for-types-22-23-25">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-sub-tlvs-for-types-22-23-25" class="section-name selfRef">Sub-TLVs for Types 22, 23, 25, 141, 222, and 223</a>
</h3>
<p id="section-4.1-1">This document makes the following registrations in the "Sub-TLVs
for TLV 22, 23, 25, 141, 222, and 223" registry.<a href="#section-4.1-1" class="pilcrow">¶</a></p>
<div id="IANA_table_1">
<table class="left" id="table-1">
<caption><a href="#table-1" class="selfRef">Table 1</a></caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Type</th>
<th class="text-left" rowspan="1" colspan="1">Description</th>
<th class="text-center" rowspan="1" colspan="1">22</th>
<th class="text-center" rowspan="1" colspan="1">23</th>
<th class="text-center" rowspan="1" colspan="1">25</th>
<th class="text-center" rowspan="1" colspan="1">141</th>
<th class="text-center" rowspan="1" colspan="1">222</th>
<th class="text-center" rowspan="1" colspan="1">223</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">31</td>
<td class="text-left" rowspan="1" colspan="1">Adjacency Segment Identifier</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">n</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">32</td>
<td class="text-left" rowspan="1" colspan="1">LAN Adjacency Segment Identifier</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">n</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-4.2">
<h3 id="name-sub-tlvs-for-types-135-235-">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-sub-tlvs-for-types-135-235-" class="section-name selfRef">Sub-TLVs for Types 135, 235, 236, and 237</a>
</h3>
<p id="section-4.2-1">This document makes the following registrations in the "Sub-TLVs
for TLV 135, 235, 236, and 237" registry.<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<div id="IANA_table_2">
<table class="left" id="table-2">
<caption><a href="#table-2" class="selfRef">Table 2</a></caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Type</th>
<th class="text-left" rowspan="1" colspan="1">Description</th>
<th class="text-center" rowspan="1" colspan="1">135</th>
<th class="text-center" rowspan="1" colspan="1">235</th>
<th class="text-center" rowspan="1" colspan="1">236</th>
<th class="text-center" rowspan="1" colspan="1">237</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">Prefix Segment Identifier</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-4.3">
<h3 id="name-sub-tlvs-for-type-242">
<a href="#section-4.3" class="section-number selfRef">4.3. </a><a href="#name-sub-tlvs-for-type-242" class="section-name selfRef">Sub-TLVs for Type 242</a>
</h3>
<p id="section-4.3-1">This document makes the following registrations in the "Sub-TLVs
for TLV 242" registry.<a href="#section-4.3-1" class="pilcrow">¶</a></p>
<div id="IANA_table_3">
<table class="left" id="table-3">
<caption><a href="#table-3" class="selfRef">Table 3</a></caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Type</th>
<th class="text-left" rowspan="1" colspan="1">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">Segment Routing Capability</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">19</td>
<td class="text-left" rowspan="1" colspan="1">Segment Routing Algorithm</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">22</td>
<td class="text-left" rowspan="1" colspan="1">Segment Routing Local Block (SRLB)</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">24</td>
<td class="text-left" rowspan="1" colspan="1">Segment Routing Mapping Server Preference (SRMS Preference)</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-4.4">
<h3 id="name-new-tlv-codepoint-and-sub-t">
<a href="#section-4.4" class="section-number selfRef">4.4. </a><a href="#name-new-tlv-codepoint-and-sub-t" class="section-name selfRef">New TLV Codepoint and Sub-TLV Registry</a>
</h3>
<p id="section-4.4-1">This document registers the following TLV:<a href="#section-4.4-1" class="pilcrow">¶</a></p>
<div id="IANA_table_4">
<table class="left" id="table-4">
<caption><a href="#table-4" class="selfRef">Table 4</a></caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Name</th>
<th class="text-center" rowspan="1" colspan="1">IIH</th>
<th class="text-center" rowspan="1" colspan="1">LSP</th>
<th class="text-center" rowspan="1" colspan="1">SNP</th>
<th class="text-center" rowspan="1" colspan="1">Purge</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">149</td>
<td class="text-left" rowspan="1" colspan="1">Segment Identifier / Label Binding</td>
<td class="text-center" rowspan="1" colspan="1">n</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">n</td>
<td class="text-center" rowspan="1" colspan="1">n</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">150</td>
<td class="text-left" rowspan="1" colspan="1">Multi-Topology Segment Identifier / Label Binding</td>
<td class="text-center" rowspan="1" colspan="1">n</td>
<td class="text-center" rowspan="1" colspan="1">y</td>
<td class="text-center" rowspan="1" colspan="1">n</td>
<td class="text-center" rowspan="1" colspan="1">n</td>
</tr>
</tbody>
</table>
</div>
<p id="section-4.4-3">This document creates the following sub-TLV Registry:<a href="#section-4.4-3" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-4.4-4">
<dt id="section-4.4-4.1">Name:</dt>
<dd id="section-4.4-4.2">Sub-TLVs for TLVs 149 and 150<a href="#section-4.4-4.2" class="pilcrow">¶</a>
</dd>
<dt id="section-4.4-4.3">Registration Procedure:</dt>
<dd id="section-4.4-4.4">Expert Review <span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span><a href="#section-4.4-4.4" class="pilcrow">¶</a>
</dd>
</dl>
<div id="IANA_table_5">
<table class="left" id="table-5">
<caption><a href="#table-5" class="selfRef">Table 5</a></caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Type</th>
<th class="text-center" rowspan="1" colspan="1">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">0</td>
<td class="text-left" rowspan="1" colspan="1">Reserved</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">SID/Label</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">Unassigned</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">Prefix Segment Identifier</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4-255</td>
<td class="text-left" rowspan="1" colspan="1">Unassigned</td>
</tr>
</tbody>
</table>
</div>
</section>
</section>
</div>
<div id="Security">
<section id="section-5">
<h2 id="name-security-considerations">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-5-1">With the use of the extensions defined in this document, IS-IS
carries information that will be used to program the MPLS data plane
<span>[<a href="#RFC3031" class="xref">RFC3031</a>]</span>. In general, the same type of attacks that can be carried out
on the IP/IPv6 control plane can be carried out on the MPLS control
plane, resulting in traffic being misrouted in the respective data
planes. However, the latter may be more difficult to detect and
isolate.<a href="#section-5-1" class="pilcrow">¶</a></p>
<p id="section-5-2">Existing security extensions as described in <span>[<a href="#RFC5304" class="xref">RFC5304</a>]</span>
and <span>[<a href="#RFC5310" class="xref">RFC5310</a>]</span> apply to these Segment Routing extensions.<a href="#section-5-2" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-6">
<h2 id="name-references">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-references" class="section-name selfRef">References</a>
</h2>
<section id="section-6.1">
<h3 id="name-normative-references">
<a href="#section-6.1" class="section-number selfRef">6.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h3>
<dl class="references">
<dt id="ISO10589">[ISO10589]</dt>
<dd>
<span class="refAuthor">ISO</span>, <span class="refTitle">"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)"</span>, <span class="seriesInfo">ISO/IEC 10589:2002, Second Edition</span>, <time datetime="2002-11">November 2002</time>. </dd>
<dt id="RFC2119">[RFC2119]</dt>
<dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03">March 1997</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>></span>. </dd>
<dt id="RFC3031">[RFC3031]</dt>
<dd>
<span class="refAuthor">Rosen, E.</span><span class="refAuthor">, Viswanathan, A.</span><span class="refAuthor">, and R. Callon</span>, <span class="refTitle">"Multiprotocol Label Switching Architecture"</span>, <span class="seriesInfo">RFC 3031</span>, <span class="seriesInfo">DOI 10.17487/RFC3031</span>, <time datetime="2001-01">January 2001</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3031">https://www.rfc-editor.org/info/rfc3031</a>></span>. </dd>
<dt id="RFC5120">[RFC5120]</dt>
<dd>
<span class="refAuthor">Przygienda, T.</span><span class="refAuthor">, Shen, N.</span><span class="refAuthor">, and N. Sheth</span>, <span class="refTitle">"M-ISIS: Multi Topology (MT) Routing in Intermediate System to Intermediate Systems (IS-ISs)"</span>, <span class="seriesInfo">RFC 5120</span>, <span class="seriesInfo">DOI 10.17487/RFC5120</span>, <time datetime="2008-02">February 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5120">https://www.rfc-editor.org/info/rfc5120</a>></span>. </dd>
<dt id="RFC5304">[RFC5304]</dt>
<dd>
<span class="refAuthor">Li, T.</span><span class="refAuthor"> and R. Atkinson</span>, <span class="refTitle">"IS-IS Cryptographic Authentication"</span>, <span class="seriesInfo">RFC 5304</span>, <span class="seriesInfo">DOI 10.17487/RFC5304</span>, <time datetime="2008-10">October 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5304">https://www.rfc-editor.org/info/rfc5304</a>></span>. </dd>
<dt id="RFC5310">[RFC5310]</dt>
<dd>
<span class="refAuthor">Bhatia, M.</span><span class="refAuthor">, Manral, V.</span><span class="refAuthor">, Li, T.</span><span class="refAuthor">, Atkinson, R.</span><span class="refAuthor">, White, R.</span><span class="refAuthor">, and M. Fanto</span>, <span class="refTitle">"IS-IS Generic Cryptographic Authentication"</span>, <span class="seriesInfo">RFC 5310</span>, <span class="seriesInfo">DOI 10.17487/RFC5310</span>, <time datetime="2009-02">February 2009</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5310">https://www.rfc-editor.org/info/rfc5310</a>></span>. </dd>
<dt id="RFC7794">[RFC7794]</dt>
<dd>
<span class="refAuthor">Ginsberg, L., Ed.</span><span class="refAuthor">, Decraene, B.</span><span class="refAuthor">, Previdi, S.</span><span class="refAuthor">, Xu, X.</span><span class="refAuthor">, and U. Chunduri</span>, <span class="refTitle">"IS-IS Prefix Attributes for Extended IPv4 and IPv6 Reachability"</span>, <span class="seriesInfo">RFC 7794</span>, <span class="seriesInfo">DOI 10.17487/RFC7794</span>, <time datetime="2016-03">March 2016</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7794">https://www.rfc-editor.org/info/rfc7794</a>></span>. </dd>
<dt id="RFC7981">[RFC7981]</dt>
<dd>
<span class="refAuthor">Ginsberg, L.</span><span class="refAuthor">, Previdi, S.</span><span class="refAuthor">, and M. Chen</span>, <span class="refTitle">"IS-IS Extensions for Advertising Router Information"</span>, <span class="seriesInfo">RFC 7981</span>, <span class="seriesInfo">DOI 10.17487/RFC7981</span>, <time datetime="2016-10">October 2016</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7981">https://www.rfc-editor.org/info/rfc7981</a>></span>. </dd>
<dt id="RFC8174">[RFC8174]</dt>
<dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05">May 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>></span>. </dd>
<dt id="RFC8402">[RFC8402]</dt>
<dd>
<span class="refAuthor">Filsfils, C., Ed.</span><span class="refAuthor">, Previdi, S., Ed.</span><span class="refAuthor">, Ginsberg, L.</span><span class="refAuthor">, Decraene, B.</span><span class="refAuthor">, Litkowski, S.</span><span class="refAuthor">, and R. Shakir</span>, <span class="refTitle">"Segment Routing Architecture"</span>, <span class="seriesInfo">RFC 8402</span>, <span class="seriesInfo">DOI 10.17487/RFC8402</span>, <time datetime="2018-07">July 2018</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8402">https://www.rfc-editor.org/info/rfc8402</a>></span>. </dd>
<dt id="RFC8660">[RFC8660]</dt>
<dd>
<span class="refAuthor">Bashandy, A., Ed.</span><span class="refAuthor">, Filsfils, C., Ed.</span><span class="refAuthor">, Previdi, S.</span><span class="refAuthor">, Decraene, B.</span><span class="refAuthor">, Litkowski, S.</span><span class="refAuthor">, and R. Shakir</span>, <span class="refTitle">"Segment Routing with the MPLS Data Plane"</span>, <span class="seriesInfo">RFC 8660</span>, <span class="seriesInfo">DOI 10.17487/RFC8660</span>, <time datetime="2019-12">December 2019</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8660">https://www.rfc-editor.org/info/rfc8660</a>></span>. </dd>
<dt id="RFC8661">[RFC8661]</dt>
<dd>
<span class="refAuthor">Bashandy, A., Ed.</span><span class="refAuthor">, Filsfils, C., Ed.</span><span class="refAuthor">, Previdi, S.</span><span class="refAuthor">, Decraene, B.</span><span class="refAuthor">, and S. Litkowski</span>, <span class="refTitle">"Segment Routing MPLS Interworking with LDP"</span>, <span class="seriesInfo">RFC 8661</span>, <span class="seriesInfo">DOI 10.17487/RFC8661</span>, <time datetime="2019-12">December 2019</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8661">https://www.rfc-editor.org/info/rfc8661</a>></span>. </dd>
<dt id="RFC8665">[RFC8665]</dt>
<dd>
<span class="refAuthor">Psenak, P., Ed.</span><span class="refAuthor">, Previdi, S., Ed.</span><span class="refAuthor">, Filsfils, C.</span><span class="refAuthor">, Gredler, H.</span><span class="refAuthor">, Shakir, R.</span><span class="refAuthor">, Henderickx, W.</span><span class="refAuthor">, and J. Tantsura</span>, <span class="refTitle">"OSPF Extensions for Segment Routing"</span>, <span class="seriesInfo">RFC 8665</span>, <span class="seriesInfo">DOI 10.17487/RFC8665</span>, <time datetime="2019-12">December 2019</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8665">https://www.rfc-editor.org/info/rfc8665</a>></span>. </dd>
</dl>
</section>
<section id="section-6.2">
<h3 id="name-informative-references">
<a href="#section-6.2" class="section-number selfRef">6.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
</h3>
<dl class="references">
<dt id="RFC5305">[RFC5305]</dt>
<dd>
<span class="refAuthor">Li, T.</span><span class="refAuthor"> and H. Smit</span>, <span class="refTitle">"IS-IS Extensions for Traffic Engineering"</span>, <span class="seriesInfo">RFC 5305</span>, <span class="seriesInfo">DOI 10.17487/RFC5305</span>, <time datetime="2008-10">October 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5305">https://www.rfc-editor.org/info/rfc5305</a>></span>. </dd>
<dt id="RFC5308">[RFC5308]</dt>
<dd>
<span class="refAuthor">Hopps, C.</span>, <span class="refTitle">"Routing IPv6 with IS-IS"</span>, <span class="seriesInfo">RFC 5308</span>, <span class="seriesInfo">DOI 10.17487/RFC5308</span>, <time datetime="2008-10">October 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5308">https://www.rfc-editor.org/info/rfc5308</a>></span>. </dd>
<dt id="RFC5311">[RFC5311]</dt>
<dd>
<span class="refAuthor">McPherson, D., Ed.</span><span class="refAuthor">, Ginsberg, L.</span><span class="refAuthor">, Previdi, S.</span><span class="refAuthor">, and M. Shand</span>, <span class="refTitle">"Simplified Extension of Link State PDU (LSP) Space for IS-IS"</span>, <span class="seriesInfo">RFC 5311</span>, <span class="seriesInfo">DOI 10.17487/RFC5311</span>, <time datetime="2009-02">February 2009</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5311">https://www.rfc-editor.org/info/rfc5311</a>></span>. </dd>
<dt id="RFC5316">[RFC5316]</dt>
<dd>
<span class="refAuthor">Chen, M.</span><span class="refAuthor">, Zhang, R.</span><span class="refAuthor">, and X. Duan</span>, <span class="refTitle">"ISIS Extensions in Support of Inter-Autonomous System (AS) MPLS and GMPLS Traffic Engineering"</span>, <span class="seriesInfo">RFC 5316</span>, <span class="seriesInfo">DOI 10.17487/RFC5316</span>, <time datetime="2008-12">December 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5316">https://www.rfc-editor.org/info/rfc5316</a>></span>. </dd>
<dt id="RFC7855">[RFC7855]</dt>
<dd>
<span class="refAuthor">Previdi, S., Ed.</span><span class="refAuthor">, Filsfils, C., Ed.</span><span class="refAuthor">, Decraene, B.</span><span class="refAuthor">, Litkowski, S.</span><span class="refAuthor">, Horneffer, M.</span><span class="refAuthor">, and R. Shakir</span>, <span class="refTitle">"Source Packet Routing in Networking (SPRING) Problem Statement and Requirements"</span>, <span class="seriesInfo">RFC 7855</span>, <span class="seriesInfo">DOI 10.17487/RFC7855</span>, <time datetime="2016-05">May 2016</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7855">https://www.rfc-editor.org/info/rfc7855</a>></span>. </dd>
<dt id="RFC8126">[RFC8126]</dt>
<dd>
<span class="refAuthor">Cotton, M.</span><span class="refAuthor">, Leiba, B.</span><span class="refAuthor">, and T. Narten</span>, <span class="refTitle">"Guidelines for Writing an IANA Considerations Section in RFCs"</span>, <span class="seriesInfo">BCP 26</span>, <span class="seriesInfo">RFC 8126</span>, <span class="seriesInfo">DOI 10.17487/RFC8126</span>, <time datetime="2017-06">June 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8126">https://www.rfc-editor.org/info/rfc8126</a>></span>. </dd>
</dl>
</section>
</section>
<div id="Acknowledgements">
<section id="section-appendix.a">
<h2 id="name-acknowledgements">
<a href="#name-acknowledgements" class="section-name selfRef">Acknowledgements</a>
</h2>
<p id="section-appendix.a-1">We would like to thank Dave Ward, Dan Frost, Stewart Bryant, Pierre
Francois, and Jesper Skrivers for their contribution to the content of
this document.<a href="#section-appendix.a-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Contributors">
<section id="section-appendix.b">
<h2 id="name-contributors">
<a href="#name-contributors" class="section-name selfRef">Contributors</a>
</h2>
<p id="section-appendix.b-1">The following people gave a substantial contribution to the content
of this document and should be considered as coauthors:<a href="#section-appendix.b-1" class="pilcrow">¶</a></p>
<div class="artwork art-text alignLeft" id="section-appendix.b-2">
<pre>Stephane Litkowski
Orange
France
Email: stephane.litkowski@orange.com</pre><a href="#section-appendix.b-2" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.b-3">
<pre>
Jeff Tantsura
Apstra, Inc.
Email: jefftant@gmail.com</pre><a href="#section-appendix.b-3" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.b-4">
<pre>
Peter Psenak
Cisco Systems Inc.
United States of America
Email: ppsenak@cisco.com</pre><a href="#section-appendix.b-4" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.b-5">
<pre>
Martin Horneffer
Deutsche Telekom
Germany
Email: Martin.Horneffer@telekom.de</pre><a href="#section-appendix.b-5" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.b-6">
<pre>
Wim Henderickx
Nokia
Belgium
Email: wim.henderickx@nokia.com</pre><a href="#section-appendix.b-6" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.b-7">
<pre>
Edward Crabbe
Oracle
United States of America
Email: edward.crabbe@oracle.com</pre><a href="#section-appendix.b-7" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.b-8">
<pre>
Rob Shakir
Google
United Kingdom
Email: robjs@google.com</pre><a href="#section-appendix.b-8" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.b-9">
<pre>
Igor Milojevic
Individual
Serbia
Email: milojevicigor@gmail.com</pre><a href="#section-appendix.b-9" class="pilcrow">¶</a>
</div>
<div class="artwork art-text alignLeft" id="section-appendix.b-10">
<pre>
Saku Ytti
TDC
Finland
Email: saku@ytti.fi</pre><a href="#section-appendix.b-10" class="pilcrow">¶</a>
</div>
</section>
</div>
<div id="authors-addresses">
<section id="section-appendix.c">
<h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
</h2>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Stefano Previdi (<span class="role">editor</span>)</span></div>
<div dir="auto" class="left"><span class="org">Huawei Technologies</span></div>
<div dir="auto" class="left"><span class="country-name">Italy</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:stefano@previdi.net" class="email">stefano@previdi.net</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Les Ginsberg (<span class="role">editor</span>)</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems, Inc.</span></div>
<div dir="auto" class="left"><span class="country-name">United States of America</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:ginsberg@cisco.com" class="email">ginsberg@cisco.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Clarence Filsfils</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems, Inc.</span></div>
<div dir="auto" class="left"> <span class="locality">Brussels</span>
</div>
<div dir="auto" class="left"><span class="country-name">Belgium</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:cfilsfil@cisco.com" class="email">cfilsfil@cisco.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Ahmed Bashandy</span></div>
<div dir="auto" class="left"><span class="org">Arrcus</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:abashandy.ietf@gmail.com" class="email">abashandy.ietf@gmail.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Hannes Gredler</span></div>
<div dir="auto" class="left"><span class="org">RtBrick Inc.</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:hannes@rtbrick.com" class="email">hannes@rtbrick.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Bruno Decraene</span></div>
<div dir="auto" class="left"><span class="org">Orange</span></div>
<div dir="auto" class="left"><span class="country-name">France</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:bruno.decraene@orange.com" class="email">bruno.decraene@orange.com</a>
</div>
</address>
</section>
</div>
<script>var toc = document.getElementById("toc");
var tocToggle = toc.querySelector("h2");
var tocNav = toc.querySelector("nav");
// mobile menu toggle
tocToggle.onclick = function(event) {
if (window.innerWidth < 1024) {
var tocNavDisplay = tocNav.currentStyle ? tocNav.currentStyle.display : getComputedStyle(tocNav, null).display;
if (tocNavDisplay == "none") {
tocNav.style.display = "block";
} else {
tocNav.style.display = "none";
}
}
}
// toc anchor scroll to anchor
tocNav.addEventListener("click", function (event) {
event.preventDefault();
if (event.target.nodeName == 'A') {
if (window.innerWidth < 1024) {
tocNav.style.display = "none";
}
var href = event.target.getAttribute("href");
var anchorId = href.substr(1);
var anchor = document.getElementById(anchorId);
anchor.scrollIntoView(true);
window.history.pushState("","",href);
}
});
// switch toc mode when window resized
window.onresize = function () {
if (window.innerWidth < 1024) {
tocNav.style.display = "none";
} else {
tocNav.style.display = "block";
}
}
</script>
</body>
</html>
|