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
|
<!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 8664: Path Computation Element Communication Protocol (PCEP) Extensions for Segment Routing</title>
<meta content="Siva Sivabalan" name="author">
<meta content="Clarence Filsfils" name="author">
<meta content="Jeff Tantsura" name="author">
<meta content="Wim Henderickx" name="author">
<meta content="Jon Hardwick" name="author">
<meta content='
Segment Routing (SR) enables any head-end node to select any path without relying on a hop-by-hop signaling technique (e.g., LDP or RSVP-TE). It depends only on "segments" that are advertised by link-state Interior Gateway Protocols (IGPs). An SR path can be derived from a variety of mechanisms, including an IGP Shortest Path Tree (SPT), an explicit configuration, or a Path Computation Element (PCE). This document specifies extensions to the Path Computation Element Communication Protocol (PCEP) that allow a stateful PCE to compute and initiate Traffic-Engineering (TE) paths, as well as a Path Computation Client (PCC) to request a path subject to certain constraints and optimization criteria in SR networks.
This document updates RFC 8408.
' name="description">
<meta content="xml2rfc 2.35.0" name="generator">
<meta content="SR" name="keyword">
<meta content="Traffic-Engineering" name="keyword">
<meta content="PCE" name="keyword">
<meta content="8664" name="rfc.number">
<link href="rfc8664.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/rfc8664" 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 8664</td>
<td class="center">PCEP Extensions for Segment Routing</td>
<td class="right">December 2019</td>
</tr></thead>
<tfoot><tr>
<td class="left">Sivabalan, 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/rfc8664" class="eref">8664</a></dd>
<dt class="label-updates">Updates:</dt>
<dd class="updates">
<a href="https://www.rfc-editor.org/rfc/rfc8408" class="eref">8408</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. Sivabalan</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">J. Tantsura</div>
<div class="org">Apstra, Inc.</div>
</div>
<div class="author">
<div class="author-name">W. Henderickx</div>
<div class="org">Nokia</div>
</div>
<div class="author">
<div class="author-name">J. Hardwick</div>
<div class="org">Metaswitch Networks</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 8664</h1>
<h1 id="title">Path Computation Element Communication Protocol (PCEP) 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) enables any head-end node to select any path without relying on a hop-by-hop signaling technique (e.g., LDP or RSVP-TE). It depends only on "segments" that are advertised by link-state Interior Gateway Protocols (IGPs). An SR path can be derived from a variety of mechanisms, including an IGP Shortest Path Tree (SPT), an explicit configuration, or a Path Computation Element (PCE). This document specifies extensions to the Path Computation Element Communication Protocol (PCEP) that allow a stateful PCE to compute and initiate Traffic-Engineering (TE) paths, as well as a Path Computation Client (PCC) to request a path subject to certain constraints and optimization criteria in SR networks.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
<p id="section-abstract-2">
This document updates RFC 8408.<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/rfc8664">https://www.rfc-editor.org/info/rfc8664</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>
</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-terminology" class="xref">Terminology</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-requirements-language" class="xref">Requirements Language</a><a href="#section-toc.1-1.2.2.1.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-overview-of-pcep-operation-" class="xref">Overview of PCEP Operation in SR Networks</a><a href="#section-toc.1-1.3.1" class="pilcrow">¶</a></p>
</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-object-formats" class="xref">Object Formats</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-the-open-object" class="xref">The OPEN Object</a><a href="#section-toc.1-1.4.2.1.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.4.2.1.2.1">
<p id="section-toc.1-1.4.2.1.2.1.1"><a href="#section-4.1.1" class="xref">4.1.1</a>. <a href="#name-the-path-setup-type-capabil" class="xref">The Path Setup Type Capability TLV</a><a href="#section-toc.1-1.4.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4.2.1.2.2">
<p id="section-toc.1-1.4.2.1.2.2.1"><a href="#section-4.1.2" class="xref">4.1.2</a>. <a href="#name-the-sr-pce-capability-sub-t" class="xref">The SR PCE Capability Sub-TLV</a><a href="#section-toc.1-1.4.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</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-the-rp-srp-object" class="xref">The RP/SRP Object</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-ero" class="xref">ERO</a><a href="#section-toc.1-1.4.2.3.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.4.2.3.2.1">
<p id="section-toc.1-1.4.2.3.2.1.1"><a href="#section-4.3.1" class="xref">4.3.1</a>. <a href="#name-sr-ero-subobject" class="xref">SR-ERO Subobject</a><a href="#section-toc.1-1.4.2.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4.2.3.2.2">
<p id="section-toc.1-1.4.2.3.2.2.1"><a href="#section-4.3.2" class="xref">4.3.2</a>. <a href="#name-nai-associated-with-sid" class="xref">NAI Associated with SID</a><a href="#section-toc.1-1.4.2.3.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</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-rro" class="xref">RRO</a><a href="#section-toc.1-1.4.2.4.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.4.2.5">
<p id="section-toc.1-1.4.2.5.1"><a href="#section-4.5" class="xref">4.5</a>. <a href="#name-metric-object" class="xref">METRIC Object</a><a href="#section-toc.1-1.4.2.5.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-procedures" class="xref">Procedures</a><a href="#section-toc.1-1.5.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.5.2.1">
<p id="section-toc.1-1.5.2.1.1"><a href="#section-5.1" class="xref">5.1</a>. <a href="#name-exchanging-the-sr-pce-capab" class="xref">Exchanging the SR PCE Capability</a><a href="#section-toc.1-1.5.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.5.2.2">
<p id="section-toc.1-1.5.2.2.1"><a href="#section-5.2" class="xref">5.2</a>. <a href="#name-ero-processing" class="xref">ERO Processing</a><a href="#section-toc.1-1.5.2.2.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.5.2.2.2.1">
<p id="section-toc.1-1.5.2.2.2.1.1"><a href="#section-5.2.1" class="xref">5.2.1</a>. <a href="#name-sr-ero-validation" class="xref">SR-ERO Validation</a><a href="#section-toc.1-1.5.2.2.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.5.2.2.2.2">
<p id="section-toc.1-1.5.2.2.2.2.1"><a href="#section-5.2.2" class="xref">5.2.2</a>. <a href="#name-interpreting-the-sr-ero" class="xref">Interpreting the SR-ERO</a><a href="#section-toc.1-1.5.2.2.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.5.2.3">
<p id="section-toc.1-1.5.2.3.1"><a href="#section-5.3" class="xref">5.3</a>. <a href="#name-rro-processing" class="xref">RRO Processing</a><a href="#section-toc.1-1.5.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</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-management-considerations" class="xref">Management Considerations</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-controlling-the-path-setup-" class="xref">Controlling the Path Setup Type</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-migrating-a-network-to-use-" class="xref">Migrating a Network to Use PCEP Segment-Routed Paths</a><a href="#section-toc.1-1.6.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.6.2.3">
<p id="section-toc.1-1.6.2.3.1"><a href="#section-6.3" class="xref">6.3</a>. <a href="#name-verification-of-network-ope" class="xref">Verification of Network Operation</a><a href="#section-toc.1-1.6.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.6.2.4">
<p id="section-toc.1-1.6.2.4.1"><a href="#section-6.4" class="xref">6.4</a>. <a href="#name-relationship-to-existing-ma" class="xref">Relationship to Existing Management Models</a><a href="#section-toc.1-1.6.2.4.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-7" class="xref">7</a>. <a href="#name-security-considerations" class="xref">Security Considerations</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-8" class="xref">8</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a><a href="#section-toc.1-1.8.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.8.2.1">
<p id="section-toc.1-1.8.2.1.1"><a href="#section-8.1" class="xref">8.1</a>. <a href="#name-pcep-ero-and-rro-subobjects" class="xref">PCEP ERO and RRO Subobjects</a><a href="#section-toc.1-1.8.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8.2.2">
<p id="section-toc.1-1.8.2.2.1"><a href="#section-8.2" class="xref">8.2</a>. <a href="#name-new-nai-type-registry" class="xref">New NAI Type Registry</a><a href="#section-toc.1-1.8.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8.2.3">
<p id="section-toc.1-1.8.2.3.1"><a href="#section-8.3" class="xref">8.3</a>. <a href="#name-new-sr-ero-flag-registry" class="xref">New SR-ERO Flag Registry</a><a href="#section-toc.1-1.8.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8.2.4">
<p id="section-toc.1-1.8.2.4.1"><a href="#section-8.4" class="xref">8.4</a>. <a href="#name-pcep-error-object" class="xref">PCEP-Error Object</a><a href="#section-toc.1-1.8.2.4.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8.2.5">
<p id="section-toc.1-1.8.2.5.1"><a href="#section-8.5" class="xref">8.5</a>. <a href="#name-pcep-tlv-type-indicators" class="xref">PCEP TLV Type Indicators</a><a href="#section-toc.1-1.8.2.5.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8.2.6">
<p id="section-toc.1-1.8.2.6.1"><a href="#section-8.6" class="xref">8.6</a>. <a href="#name-path-setup-type-capability-" class="xref">PATH-SETUP-TYPE-CAPABILITY Sub-TLV Type Indicators</a><a href="#section-toc.1-1.8.2.6.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8.2.7">
<p id="section-toc.1-1.8.2.7.1"><a href="#section-8.7" class="xref">8.7</a>. <a href="#name-new-path-setup-type" class="xref">New Path Setup Type</a><a href="#section-toc.1-1.8.2.7.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8.2.8">
<p id="section-toc.1-1.8.2.8.1"><a href="#section-8.8" class="xref">8.8</a>. <a href="#name-new-metric-type" class="xref">New Metric Type</a><a href="#section-toc.1-1.8.2.8.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.8.2.9">
<p id="section-toc.1-1.8.2.9.1"><a href="#section-8.9" class="xref">8.9</a>. <a href="#name-sr-pce-capability-flags" class="xref">SR PCE Capability Flags</a><a href="#section-toc.1-1.8.2.9.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-9" class="xref">9</a>. <a href="#name-references" class="xref">References</a><a href="#section-toc.1-1.9.1" class="pilcrow">¶</a></p>
<ul class="toc ulEmpty">
<li class="toc ulEmpty" id="section-toc.1-1.9.2.1">
<p id="section-toc.1-1.9.2.1.1"><a href="#section-9.1" class="xref">9.1</a>. <a href="#name-normative-references" class="xref">Normative References</a><a href="#section-toc.1-1.9.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.9.2.2">
<p id="section-toc.1-1.9.2.2.1"><a href="#section-9.2" class="xref">9.2</a>. <a href="#name-informative-references" class="xref">Informative References</a><a href="#section-toc.1-1.9.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.10">
<p id="section-toc.1-1.10.1"><a href="#section-appendix.a" class="xref">Appendix A</a>. <a href="#name-compatibility-with-early-im" class="xref">Compatibility with Early Implementations</a><a href="#section-toc.1-1.10.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#section-appendix.b" class="xref"></a><a href="#name-acknowledgements" class="xref">Acknowledgements</a><a href="#section-toc.1-1.11.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.12">
<p id="section-toc.1-1.12.1"><a href="#section-appendix.c" class="xref"></a><a href="#name-contributors" class="xref">Contributors</a><a href="#section-toc.1-1.12.1" class="pilcrow">¶</a></p>
</li>
<li class="toc ulEmpty" id="section-toc.1-1.13">
<p id="section-toc.1-1.13.1"><a href="#section-appendix.d" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a><a href="#section-toc.1-1.13.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) leverages the source-routing paradigm. Using
SR, a source node steers a packet through a path without relying on
hop-by-hop signaling protocols such as LDP or RSVP-TE. Each path is
specified as an ordered list of instructions called "segments". Each
segment is an instruction to route the packet to a specific place in
the network or to perform a function on the packet. A database of
segments can be distributed through the network using a routing
protocol (such as IS-IS or OSPF) or by any other means. Several types
of segments are defined. A node segment uniquely identifies a specific
node in the SR domain. Each router in the SR domain associates a node
segment with an ECMP-aware shortest path to the node that it
identifies. An adjacency segment represents a unidirectional
adjacency. An adjacency segment is local to the node that advertises
it. Both node segments and adjacency segments can be used for SR.<a href="#section-1-1" class="pilcrow">¶</a></p>
<p id="section-1-2"><span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span> describes the SR architecture. The
corresponding IS-IS and OSPF extensions are specified in <span>[<a href="#RFC8667" class="xref">RFC8667</a>]</span> and <span>[<a href="#RFC8665" class="xref">RFC8665</a>]</span>, respectively.<a href="#section-1-2" class="pilcrow">¶</a></p>
<p id="section-1-3">The SR architecture can be implemented using either an MPLS
forwarding plane <span>[<a href="#RFC8660" class="xref">RFC8660</a>]</span> or an IPv6 forwarding plane
<span>[<a href="#I-D.ietf-6man-segment-routing-header" class="xref">IPv6-SRH</a>]</span>. The MPLS forwarding plane can be applied
to SR without any change; in which case, an SR path corresponds to an
MPLS Label Switching Path (LSP). This document is relevant to the MPLS
forwarding plane only. In this document, "Node-SID" and
"Adj-SID" denote the Node Segment Identifier and Adjacency
Segment Identifier, respectively.<a href="#section-1-3" class="pilcrow">¶</a></p>
<p id="section-1-4">An SR path can be derived from an IGP Shortest Path Tree
(SPT). Segment Routing Traffic-Engineering (SR-TE) paths may not
follow an IGP SPT. Such paths may be chosen by a suitable network
planning tool and provisioned on the ingress node of the SR-TE
path.<a href="#section-1-4" class="pilcrow">¶</a></p>
<p id="section-1-5"><span>[<a href="#RFC5440" class="xref">RFC5440</a>]</span> describes the Path Computation Element
Communication Protocol (PCEP) for communication between a Path
Computation Client (PCC) and a Path Computation Element (PCE) or
between a pair of PCEs. A PCE computes paths for MPLS
Traffic-Engineering (MPLS-TE) LSPs based on various constraints and
optimization criteria. <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span> specifies extensions
to PCEP that allow a stateful PCE to compute and recommend network
paths in compliance with <span>[<a href="#RFC4657" class="xref">RFC4657</a>]</span>. It also defines objects
and TLVs for MPLS-TE LSPs. Stateful PCEP extensions provide
synchronization of LSP state between a PCC and a PCE or between a pair
of PCEs, delegation of LSP control, reporting of LSP state from a PCC
to a PCE, and control of the setup and path routing of an LSP from a
PCE to a PCC. Stateful PCEP extensions are intended for an operational
model in which LSPs are configured on the PCC, and control over them
is delegated to the PCE.<a href="#section-1-5" class="pilcrow">¶</a></p>
<p id="section-1-6">A mechanism to dynamically initiate LSPs on a PCC based on the requests from a stateful PCE or a controller using stateful PCE is specified in <span>[<a href="#RFC8281" class="xref">RFC8281</a>]</span>. This mechanism is useful in Software-Defined Networking (SDN) applications, such as on-demand engineering or bandwidth calendaring <span>[<a href="#RFC8413" class="xref">RFC8413</a>]</span>.<a href="#section-1-6" class="pilcrow">¶</a></p>
<p id="section-1-7">It is possible to use a stateful PCE for computing one or more SR-TE paths, taking into account various constraints and objective functions. Once a path is chosen, the stateful PCE can initiate an SR-TE path on a PCC using the PCEP extensions specified in <span>[<a href="#RFC8281" class="xref">RFC8281</a>]</span> and the SR-specific PCEP extensions specified in this document. Additionally, using procedures described in this document, a PCC can request an SR path from either a stateful or a stateless PCE.<a href="#section-1-7" class="pilcrow">¶</a></p>
<p id="section-1-8">This specification relies on the procedures specified in <span>[<a href="#RFC8408" class="xref">RFC8408</a>]</span> to exchange the Segment Routing capability and to specify that the path setup type of an LSP is Segment Routing. This specification also updates <span>[<a href="#RFC8408" class="xref">RFC8408</a>]</span> to clarify the use of sub-TLVs in the PATH-SETUP-TYPE-CAPABILITY TLV. See <a href="#pst-cap-tlv" class="xref">Section 4.1.1</a> for details.<a href="#section-1-8" class="pilcrow">¶</a></p>
<p id="section-1-9">This specification provides a mechanism for a network controller (acting as a PCE) to instantiate candidate paths for an SR Policy onto a head-end node (acting as a PCC) using PCEP. For more information on the SR Policy Architecture, see <span>[<a href="#I-D.ietf-spring-segment-routing-policy" class="xref">SR-POLICY</a>]</span>.<a href="#section-1-9" class="pilcrow">¶</a></p>
</section>
<section id="section-2">
<h2 id="name-terminology">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-terminology" class="section-name selfRef">Terminology</a>
</h2>
<p id="section-2-1">The following terminology is used in this document:<a href="#section-2-1" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-2-2">
<dt id="section-2-2.1">ERO:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.2"> Explicit Route Object<a href="#section-2-2.2" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.3">IGP:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.4"> Interior Gateway Protocol<a href="#section-2-2.4" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.5">IS-IS:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.6"> Intermediate System to Intermediate System<a href="#section-2-2.6" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.7">LSR:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.8"> Label Switching Router<a href="#section-2-2.8" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.9">MSD:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.10"> Base MPLS Imposition Maximum SID Depth, as defined in <span>[<a href="#RFC8491" class="xref">RFC8491</a>]</span><a href="#section-2-2.10" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.11">NAI:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.12"> Node or Adjacency Identifier<a href="#section-2-2.12" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.13">OSPF:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.14"> Open Shortest Path First<a href="#section-2-2.14" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.15">PCC:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.16"> Path Computation Client<a href="#section-2-2.16" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.17">PCE:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.18"> Path Computation Element<a href="#section-2-2.18" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.19">PCEP:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.20"> Path Computation Element Communication Protocol<a href="#section-2-2.20" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.21">RRO:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.22"> Record Route Object<a href="#section-2-2.22" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.23">SID:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.24"> Segment Identifier<a href="#section-2-2.24" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.25">SR:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.26"> Segment Routing<a href="#section-2-2.26" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.27">SR-DB:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.28"> Segment Routing Database: the collection of SRGBs, SRLBs, and SIDs and the objects they map to, advertised by a link-state IGP<a href="#section-2-2.28" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.29">SR-TE:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.30"> Segment Routing Traffic Engineering<a href="#section-2-2.30" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.31">SRGB:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.32"> Segment Routing Global Block<a href="#section-2-2.32" class="pilcrow">¶</a>
</dd>
<dt id="section-2-2.33">SRLB:</dt>
<dd style="margin-left: 4.0em" id="section-2-2.34"> Segment Routing Local Block<a href="#section-2-2.34" class="pilcrow">¶</a>
</dd>
</dl>
<section id="section-2.1">
<h3 id="name-requirements-language">
<a href="#section-2.1" class="section-number selfRef">2.1. </a><a href="#name-requirements-language" class="section-name selfRef">Requirements Language</a>
</h3>
<p id="section-2.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-2.1-1" class="pilcrow">¶</a></p>
</section>
</section>
<div id="Operation-Overview">
<section id="section-3">
<h2 id="name-overview-of-pcep-operation-">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-overview-of-pcep-operation-" class="section-name selfRef">Overview of PCEP Operation in SR Networks</a>
</h2>
<p id="section-3-1">In an SR network, the ingress node of an SR path prepends an SR header to all outgoing packets. The SR header consists of a list of SIDs (or MPLS labels in the context of this document). The header has all
necessary information so that, in combination with the information
distributed by the IGP, the packets can be guided from the ingress
node to the egress node of the path; hence, there is no need for
any signaling protocol.<a href="#section-3-1" class="pilcrow">¶</a></p>
<p id="section-3-2">
In PCEP messages, LSP route information is carried in the Explicit
Route Object (ERO), which consists of a sequence of subobjects.
SR-TE paths computed by a PCE can be represented in an ERO in one
of the following forms:<a href="#section-3-2" class="pilcrow">¶</a></p>
<ul>
<li id="section-3-3.1">An ordered set of IP addresses representing network nodes/links.<a href="#section-3-3.1" class="pilcrow">¶</a>
</li>
<li id="section-3-3.2">An ordered set of SIDs, with or without the corresponding IP addresses.<a href="#section-3-3.2" class="pilcrow">¶</a>
</li>
<li id="section-3-3.3">An ordered set of MPLS labels, with or without corresponding IP addresses.<a href="#section-3-3.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-3-4">
The PCC converts these into an MPLS label stack and next hop, as described in <a href="#SR-ERO-INTERPRET" class="xref">Section 5.2.2</a>.<a href="#section-3-4" class="pilcrow">¶</a></p>
<p id="section-3-5">This document defines a new ERO subobject denoted by "SR-ERO subobject" that is capable of carrying a SID as well as the identity of the node/adjacency represented by the SID. SR-capable PCEP speakers should be able to generate and/or process such an ERO subobject.
An ERO containing SR-ERO subobjects can be included in the PCEP Path Computation Reply (PCRep) message defined in <span>[<a href="#RFC5440" class="xref">RFC5440</a>]</span>, the Path Computation LSP Initiate Request (PCInitiate) message defined in <span>[<a href="#RFC8281" class="xref">RFC8281</a>]</span>, and the Path Computation Update Request (PCUpd) and Path Computation State Report (PCRpt) messages for LSPs defined in <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span>.<a href="#section-3-5" class="pilcrow">¶</a></p>
<p id="section-3-6">When a PCEP session between a PCC and a PCE is established, both PCEP speakers exchange their capabilities to indicate their ability to support SR-specific functionality.<a href="#section-3-6" class="pilcrow">¶</a></p>
<p id="section-3-7">A PCE can update an LSP that is initially established via RSVP-TE
signaling to use an SR-TE path by sending a PCUpd to the PCC that
delegated the LSP to it <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span>. A PCC can update an
undelegated LSP that is initially established via RSVP-TE signaling to
use an SR-TE path as follows. First, it requests an SR-TE path from a
PCE by sending a Path Computation Request (PCReq) message. If it
receives a suitable path, it establishes the path in the data plane
and then tears down the original RSVP-TE path. If the PCE is
stateful, then the PCC sends PCRpt messages indicating that the new
path is set up and the old path is torn down, per <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span>.<a href="#section-3-7" class="pilcrow">¶</a></p>
<p id="section-3-8">Similarly, a PCE or PCC can update an LSP initially created with an SR-TE path to use RSVP-TE signaling, if necessary. This capability is useful for rolling back a change when a network is migrated from RSVP-TE to SR-TE technology.<a href="#section-3-8" class="pilcrow">¶</a></p>
<p id="section-3-9">A PCC <span class="bcp14">MAY</span> include a Record Route Object (RRO) containing the recorded LSP in PCReq and PCRpt messages as specified in <span>[<a href="#RFC5440" class="xref">RFC5440</a>]</span> and <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span>, respectively. This document defines a new RRO subobject for SR networks. The methods used by a PCC to record the SR-TE LSP are outside the scope of this document.<a href="#section-3-9" class="pilcrow">¶</a></p>
<p id="section-3-10">In summary, this document:<a href="#section-3-10" class="pilcrow">¶</a></p>
<ul>
<li id="section-3-11.1">Defines a new ERO subobject, a new RRO subobject, and new PCEP error codes.<a href="#section-3-11.1" class="pilcrow">¶</a>
</li>
<li id="section-3-11.2">Specifies how two PCEP speakers can establish a PCEP session that can carry information about SR-TE paths.<a href="#section-3-11.2" class="pilcrow">¶</a>
</li>
<li id="section-3-11.3">Specifies processing rules for the ERO subobject.<a href="#section-3-11.3" class="pilcrow">¶</a>
</li>
<li id="section-3-11.4">Defines a new path setup type to be used in the PATH-SETUP-TYPE and PATH-SETUP-TYPE-CAPABILITY TLVs <span>[<a href="#RFC8408" class="xref">RFC8408</a>]</span>.<a href="#section-3-11.4" class="pilcrow">¶</a>
</li>
<li id="section-3-11.5">Defines a new sub-TLV for the PATH-SETUP-TYPE-CAPABILITY TLV.<a href="#section-3-11.5" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-3-12">The extensions specified in this document complement the existing
PCEP specifications to support SR-TE paths. As such, the PCEP messages
(e.g., PCReq, PCRep, PCRpt, PCUpd, PCInitiate, etc.) are formatted
according to <span>[<a href="#RFC5440" class="xref">RFC5440</a>]</span>, <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span>, <span>[<a href="#RFC8281" class="xref">RFC8281</a>]</span>, and any other applicable PCEP specifications.<a href="#section-3-12" class="pilcrow">¶</a></p>
</section>
</div>
<div id="object-formats">
<section id="section-4">
<h2 id="name-object-formats">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-object-formats" class="section-name selfRef">Object Formats</a>
</h2>
<div id="open-object-fmt">
<section id="section-4.1">
<h3 id="name-the-open-object">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-the-open-object" class="section-name selfRef">The OPEN Object</a>
</h3>
<div id="pst-cap-tlv">
<section id="section-4.1.1">
<h4 id="name-the-path-setup-type-capabil">
<a href="#section-4.1.1" class="section-number selfRef">4.1.1. </a><a href="#name-the-path-setup-type-capabil" class="section-name selfRef">The Path Setup Type Capability TLV</a>
</h4>
<p id="section-4.1.1-1"><span>[<a href="#RFC8408" class="xref">RFC8408</a>]</span> defines the PATH-SETUP-TYPE-CAPABILITY TLV
for use in the OPEN object. The PATH-SETUP-TYPE-CAPABILITY TLV
contains an optional list of sub-TLVs, which are intended to convey
parameters that are associated with the path setup types supported by
a PCEP speaker.<a href="#section-4.1.1-1" class="pilcrow">¶</a></p>
<p id="section-4.1.1-2">This specification updates <span>[<a href="#RFC8408" class="xref">RFC8408</a>]</span> as follows. It
creates a new registry that defines the valid type indicators of the
sub-TLVs of the PATH-SETUP-TYPE-CAPABILITY TLV (see <a href="#IANA-subTLV-Type-Indicators" class="xref">Section 8.6</a>). A PCEP speaker <span class="bcp14">MUST NOT</span>
include a sub-TLV in the PATH-SETUP-TYPE-CAPABILITY TLV unless it
appears in this registry. If a PCEP speaker receives a sub-TLV whose
type indicator does not match one of those from the registry or is not
recognized by the speaker, then the speaker <span class="bcp14">MUST</span> ignore the
sub-TLV.<a href="#section-4.1.1-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="cap-negotiation">
<section id="section-4.1.2">
<h4 id="name-the-sr-pce-capability-sub-t">
<a href="#section-4.1.2" class="section-number selfRef">4.1.2. </a><a href="#name-the-sr-pce-capability-sub-t" class="section-name selfRef">The SR PCE Capability Sub-TLV</a>
</h4>
<p id="section-4.1.2-1">This document defines a new Path Setup Type (PST) for SR, as follows:<a href="#section-4.1.2-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-4.1.2-2.1">
<dl class="dlParallel" id="section-4.1.2-2.1.1">
<dt id="section-4.1.2-2.1.1.1">PST = 1:</dt>
<dd id="section-4.1.2-2.1.1.2">Traffic-engineering path is set up using Segment Routing.<a href="#section-4.1.2-2.1.1.2" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<p id="section-4.1.2-3">A PCEP speaker <span class="bcp14">SHOULD</span> indicate its support of the function described in this document by sending a PATH-SETUP-TYPE-CAPABILITY TLV in the OPEN object with this new PST included in the PST list.<a href="#section-4.1.2-3" class="pilcrow">¶</a></p>
<p id="section-4.1.2-4">This document also defines the SR-PCE-CAPABILITY sub-TLV. PCEP speakers use this sub-TLV to exchange information about their SR capability. If a PCEP speaker includes PST=1 in the PST list of the PATH-SETUP-TYPE-CAPABILITY TLV, then it <span class="bcp14">MUST</span> also include the SR-PCE-CAPABILITY sub-TLV inside the PATH-SETUP-TYPE-CAPABILITY TLV.<a href="#section-4.1.2-4" class="pilcrow">¶</a></p>
<p id="section-4.1.2-5">The format of the SR-PCE-CAPABILITY sub-TLV is shown in the following figure:<a href="#section-4.1.2-5" class="pilcrow">¶</a></p>
<span id="name-sr-pce-capability-sub-tlv-f"></span><div id="Capability-TLV-Fmt">
<figure id="figure-1">
<div class="artwork art-text alignCenter" id="section-4.1.2-6.1">
<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=26 | Length=4 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved | Flags |N|X| MSD |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-1" class="selfRef">Figure 1</a>:
<a href="#name-sr-pce-capability-sub-tlv-f" class="selfRef">SR-PCE-CAPABILITY Sub-TLV Format</a>
</figcaption></figure>
</div>
<p id="section-4.1.2-7">The codepoint for the TLV type is 26. The TLV length is 4 octets.<a href="#section-4.1.2-7" class="pilcrow">¶</a></p>
<p id="section-4.1.2-8">The 32-bit value is formatted as follows.<a href="#section-4.1.2-8" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-4.1.2-9">
<dt id="section-4.1.2-9.1">Reserved:</dt>
<dd id="section-4.1.2-9.2">
<span class="bcp14">MUST</span> be set to zero by the sender and <span class="bcp14">MUST</span> be ignored by the receiver.<a href="#section-4.1.2-9.2" class="pilcrow">¶</a>
</dd>
<dt id="section-4.1.2-9.3">Flags:</dt>
<dd id="section-4.1.2-9.4">
<p id="section-4.1.2-9.4.1"> This document defines the following flag bits. The other bits
<span class="bcp14">MUST</span> be set to zero by the sender and <span class="bcp14">MUST</span> be ignored by the receiver.<a href="#section-4.1.2-9.4.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-4.1.2-9.4.2.1">
<dl class="dlParallel" id="section-4.1.2-9.4.2.1.1">
<dt id="section-4.1.2-9.4.2.1.1.1">N:</dt>
<dd style="margin-left: 2.5em" id="section-4.1.2-9.4.2.1.1.2">A PCC sets this flag bit to 1 to indicate that it is capable of resolving a Node or Adjacency Identifier (NAI) to a SID.<a href="#section-4.1.2-9.4.2.1.1.2" class="pilcrow">¶</a>
</dd>
<dt id="section-4.1.2-9.4.2.1.1.3">X:</dt>
<dd style="margin-left: 2.5em" id="section-4.1.2-9.4.2.1.1.4">A PCC sets this flag bit to 1 to indicate that it does not impose any limit on the MSD.<a href="#section-4.1.2-9.4.2.1.1.4" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
</dd>
<dt id="section-4.1.2-9.5">Maximum SID Depth (MSD):</dt>
<dd id="section-4.1.2-9.6"> specifies the maximum number of SIDs (MPLS label stack depth in the context of this document) that a PCC is capable of imposing on a packet. <a href="#SR-CAP-PROCESS" class="xref">Section 5.1</a> explains the relationship between this field and the X-Flag.<a href="#section-4.1.2-9.6" class="pilcrow">¶</a>
</dd>
</dl>
</section>
</div>
</section>
</div>
<div id="rp-object-fmt">
<section id="section-4.2">
<h3 id="name-the-rp-srp-object">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-the-rp-srp-object" class="section-name selfRef">The RP/SRP Object</a>
</h3>
<p id="section-4.2-1">To set up an SR-TE LSP using SR, the Request Parameter (RP) or Stateful PCE Request Parameter (SRP) object <span class="bcp14">MUST</span> include the PATH-SETUP-TYPE TLV, specified in <span>[<a href="#RFC8408" class="xref">RFC8408</a>]</span>, with the PST set to 1 (and path setup using SR-TE).<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<p id="section-4.2-2">The LSP-IDENTIFIERS TLV <span class="bcp14">MAY</span> be present for the above PST type.<a href="#section-4.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="SR-ERO">
<section id="section-4.3">
<h3 id="name-ero">
<a href="#section-4.3" class="section-number selfRef">4.3. </a><a href="#name-ero" class="section-name selfRef">ERO</a>
</h3>
<p id="section-4.3-1">An SR-TE path consists of one or more SIDs where each SID <span class="bcp14">MAY</span> be associated with the identifier that represents the node or adjacency corresponding to the SID. This identifier is referred to as the NAI. As described later, an NAI can be represented in various formats (e.g., IPv4 address, IPv6 address, etc). Furthermore, an NAI is used for troubleshooting purposes and, if necessary, to derive a SID value as described below.<a href="#section-4.3-1" class="pilcrow">¶</a></p>
<p id="section-4.3-2">The ERO specified in <span>[<a href="#RFC5440" class="xref">RFC5440</a>]</span> is used to carry SR-TE path information. In order to carry a SID and/or NAI, this document defines a new ERO subobject referred to as the "SR-ERO subobject", whose format is specified in the following section. An ERO carrying an SR-TE path consists of one or more ERO subobjects, and it <span class="bcp14">MUST</span> carry only SR-ERO subobjects. Note that an SR-ERO subobject does not need to have both the SID and NAI. However, at least one of them <span class="bcp14">MUST</span> be present.<a href="#section-4.3-2" class="pilcrow">¶</a></p>
<p id="section-4.3-3">When building the MPLS label stack from ERO, a PCC <span class="bcp14">MUST</span> assume that SR-ERO subobjects are organized as a last-in-first-out stack. The first subobject relative to the beginning of ERO contains the information about the topmost label. The last subobject contains information about the bottommost label.<a href="#section-4.3-3" class="pilcrow">¶</a></p>
<div id="SR-ERO-SUB">
<section id="section-4.3.1">
<h4 id="name-sr-ero-subobject">
<a href="#section-4.3.1" class="section-number selfRef">4.3.1. </a><a href="#name-sr-ero-subobject" class="section-name selfRef">SR-ERO Subobject</a>
</h4>
<p id="section-4.3.1-1">An SR-ERO subobject is formatted as shown in the following diagram.<a href="#section-4.3.1-1" class="pilcrow">¶</a></p>
<span id="name-sr-ero-subobject-format"></span><div id="SR-ERO-SUBOBJECT">
<figure id="figure-2">
<div class="artwork art-text alignLeft" id="section-4.3.1-2.1">
<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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|L| Type=36 | Length | NT | Flags |F|S|C|M|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SID (optional) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// NAI (variable, optional) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-2" class="selfRef">Figure 2</a>:
<a href="#name-sr-ero-subobject-format" class="selfRef">SR-ERO Subobject Format</a>
</figcaption></figure>
</div>
<p id="section-4.3.1-3">The fields in the SR-ERO subobject are as follows:<a href="#section-4.3.1-3" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-4.3.1-4">
<dt id="section-4.3.1-4.1">The L-Flag:</dt>
<dd id="section-4.3.1-4.2"> Indicates whether the subobject represents a loose hop in the LSP <span>[<a href="#RFC3209" class="xref">RFC3209</a>]</span>. If this flag is set to zero, a PCC <span class="bcp14">MUST NOT</span> overwrite the SID value present in the SR-ERO subobject. Otherwise, a PCC <span class="bcp14">MAY</span> expand or replace one or more SID values in the received SR-ERO based on its local policy.<a href="#section-4.3.1-4.2" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.3">Type:</dt>
<dd id="section-4.3.1-4.4"> Set to 36.<a href="#section-4.3.1-4.4" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.5">Length:</dt>
<dd id="section-4.3.1-4.6"> Contains the total length of the subobject in octets. The Length <span class="bcp14">MUST</span> be at least 8 and <span class="bcp14">MUST</span> be a multiple of 4. An SR-ERO subobject <span class="bcp14">MUST</span> contain at least one SID or NAI. The flags described below indicate whether the SID or NAI fields are absent.<a href="#section-4.3.1-4.6" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.7">NAI Type (NT):</dt>
<dd id="section-4.3.1-4.8">
<p id="section-4.3.1-4.8.1">Indicates the type and format of the NAI contained in
the object body, if any is present. If the F bit is set to
zero (see below), then the NT field has no meaning and
<span class="bcp14">MUST</span> be ignored by the receiver. This
document describes the following NT values:<a href="#section-4.3.1-4.8.1" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-4.3.1-4.8.2">
<dt id="section-4.3.1-4.8.2.1">NT=0</dt>
<dd id="section-4.3.1-4.8.2.2">The NAI is absent.<a href="#section-4.3.1-4.8.2.2" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.8.2.3">NT=1</dt>
<dd id="section-4.3.1-4.8.2.4">The NAI is an IPv4 node ID.<a href="#section-4.3.1-4.8.2.4" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.8.2.5">NT=2</dt>
<dd id="section-4.3.1-4.8.2.6">The NAI is an IPv6 node ID.<a href="#section-4.3.1-4.8.2.6" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.8.2.7">NT=3</dt>
<dd id="section-4.3.1-4.8.2.8">The NAI is an IPv4 adjacency.<a href="#section-4.3.1-4.8.2.8" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.8.2.9">NT=4</dt>
<dd id="section-4.3.1-4.8.2.10">The NAI is an IPv6 adjacency with global IPv6
addresses.<a href="#section-4.3.1-4.8.2.10" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.8.2.11">NT=5</dt>
<dd id="section-4.3.1-4.8.2.12">The NAI is an unnumbered adjacency with IPv4 node
IDs.<a href="#section-4.3.1-4.8.2.12" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.8.2.13">NT=6</dt>
<dd id="section-4.3.1-4.8.2.14">The NAI is an IPv6 adjacency with link-local IPv6
addresses.<a href="#section-4.3.1-4.8.2.14" class="pilcrow">¶</a>
</dd>
</dl>
</dd>
<dt id="section-4.3.1-4.9">Flags:</dt>
<dd id="section-4.3.1-4.10">
<p id="section-4.3.1-4.10.1"> Used to carry additional information pertaining to the SID. This document defines the following flag bits. The other bits <span class="bcp14">MUST</span> be set to zero by the sender and <span class="bcp14">MUST</span> be ignored by the receiver.<a href="#section-4.3.1-4.10.1" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-4.3.1-4.10.2">
<dt id="section-4.3.1-4.10.2.1">M:</dt>
<dd style="margin-left: 2.5em" id="section-4.3.1-4.10.2.2">If this bit is set to 1, the SID value represents an MPLS label stack entry as specified in <span>[<a href="#RFC3032" class="xref">RFC3032</a>]</span>. Otherwise, the SID value is an administratively configured value that represents an index into an MPLS label space (either SRGB or SRLB) per <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span>.<a href="#section-4.3.1-4.10.2.2" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.10.2.3">C:</dt>
<dd style="margin-left: 2.5em" id="section-4.3.1-4.10.2.4">If the M bit and the C bit are both set to 1, then the TC, S, and TTL fields in the MPLS label stack entry are specified by the PCE. However, a PCC <span class="bcp14">MAY</span> choose to override these values according to its local policy and MPLS forwarding rules. If the M bit is set to 1 but the C bit is set to zero, then the TC, S, and TTL fields <span class="bcp14">MUST</span> be ignored by the PCC. The PCC <span class="bcp14">MUST</span> set these fields according to its local policy and MPLS forwarding rules. If the M bit is set to zero, then the C bit <span class="bcp14">MUST</span> be set to zero.<a href="#section-4.3.1-4.10.2.4" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.10.2.5">S:</dt>
<dd style="margin-left: 2.5em" id="section-4.3.1-4.10.2.6">When this bit is set to 1, the SID value in the subobject body is absent. In this case, the PCC is responsible for choosing the SID value, e.g., by looking it up in the SR-DB using the NAI that, in this case, <span class="bcp14">MUST</span> be present in the subobject. If the S bit is set to 1, then the M and C bits <span class="bcp14">MUST</span> be set to zero.<a href="#section-4.3.1-4.10.2.6" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.1-4.10.2.7">F:</dt>
<dd style="margin-left: 2.5em" id="section-4.3.1-4.10.2.8">When this bit is set to 1, the NAI value in the subobject body is absent. The F bit <span class="bcp14">MUST</span> be set to 1 if NT=0; otherwise, it <span class="bcp14">MUST</span> be set to zero. The S and F bits <span class="bcp14">MUST NOT</span> both be set to 1.<a href="#section-4.3.1-4.10.2.8" class="pilcrow">¶</a>
</dd>
</dl>
</dd>
<dt id="section-4.3.1-4.11">SID:</dt>
<dd id="section-4.3.1-4.12">
<p id="section-4.3.1-4.12.1"> The Segment Identifier. Depending on the M bit, it contains either:<a href="#section-4.3.1-4.12.1" class="pilcrow">¶</a></p>
<ul>
<li id="section-4.3.1-4.12.2.1">A 4-octet index defining the offset into an MPLS label space per <span>[<a href="#RFC8402" class="xref">RFC8402</a>]</span> or<a href="#section-4.3.1-4.12.2.1" class="pilcrow">¶</a>
</li>
<li id="section-4.3.1-4.12.2.2">A 4-octet MPLS label stack entry, where the 20 most significant bits encode the label value per <span>[<a href="#RFC3032" class="xref">RFC3032</a>]</span>.<a href="#section-4.3.1-4.12.2.2" class="pilcrow">¶</a>
</li>
</ul>
</dd>
<dt id="section-4.3.1-4.13">NAI:</dt>
<dd id="section-4.3.1-4.14"> The NAI associated with the SID. The NAI's format depends on the value in the NT field and is described in the following section.<a href="#section-4.3.1-4.14" class="pilcrow">¶</a>
</dd>
</dl>
<p id="section-4.3.1-5">
At least one SID and NAI <span class="bcp14">MUST</span> be included in the SR-ERO subobject, and both <span class="bcp14">MAY</span> be included.<a href="#section-4.3.1-5" class="pilcrow">¶</a></p>
</section>
</div>
<div id="SR-ERO-NODAL-32">
<section id="section-4.3.2">
<h4 id="name-nai-associated-with-sid">
<a href="#section-4.3.2" class="section-number selfRef">4.3.2. </a><a href="#name-nai-associated-with-sid" class="section-name selfRef">NAI Associated with SID</a>
</h4>
<p id="section-4.3.2-1">This document defines the following NAIs:<a href="#section-4.3.2-1" class="pilcrow">¶</a></p>
<dl class="dlParallel" id="section-4.3.2-2">
<dt id="section-4.3.2-2.1">IPv4 Node ID:</dt>
<dd id="section-4.3.2-2.2">Specified as an IPv4 address. In this case, the NT value is 1, and the NAI field length is 4 octets.<a href="#section-4.3.2-2.2" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.2-2.3">IPv6 Node ID:</dt>
<dd id="section-4.3.2-2.4">Specified as an IPv6 address. In this case, the NT value is 2, and the NAI field length is 16 octets.<a href="#section-4.3.2-2.4" class="pilcrow">¶</a>
</dd>
<dt id="section-4.3.2-2.5">IPv4 Adjacency:</dt>
<dd id="section-4.3.2-2.6">
<p id="section-4.3.2-2.6.1">Specified as a pair of IPv4 addresses. In this case, the NT value is 3, and the NAI field length is 8 octets. The format of the NAI is shown in the following figure:<a href="#section-4.3.2-2.6.1" class="pilcrow">¶</a></p>
<span id="name-nai-for-ipv4-adjacency"></span><div id="ADJ-SID-ERO-SUBOBJECT-32">
<figure id="figure-3">
<div class="artwork art-text alignLeft" id="section-4.3.2-2.6.2.1">
<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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Local IPv4 address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Remote IPv4 address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-3" class="selfRef">Figure 3</a>:
<a href="#name-nai-for-ipv4-adjacency" class="selfRef">NAI for IPv4 Adjacency</a>
</figcaption></figure>
</div>
</dd>
<dt id="section-4.3.2-2.7">IPv6 Global Adjacency:</dt>
<dd id="section-4.3.2-2.8">
<p id="section-4.3.2-2.8.1">Specified as a pair of global IPv6 addresses. It is used to describe an IPv6 adjacency for a link that uses global IPv6 addresses. Each global IPv6 address is configured on a specific router interface, so together they identify an adjacency between a pair of routers. In this case, the NT value is 4, and the NAI field length is 32 octets. The format of the NAI is shown in the following figure:<a href="#section-4.3.2-2.8.1" class="pilcrow">¶</a></p>
<span id="name-nai-for-ipv6-global-adjacen"></span><div id="ADJ-SID-ERO-SUBOBJECT-128">
<figure id="figure-4">
<div class="artwork art-text alignLeft" id="section-4.3.2-2.8.2.1">
<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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// Local IPv6 address (16 octets) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// Remote IPv6 address (16 octets) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-4" class="selfRef">Figure 4</a>:
<a href="#name-nai-for-ipv6-global-adjacen" class="selfRef">NAI for IPv6 Global Adjacency</a>
</figcaption></figure>
</div>
</dd>
<dt id="section-4.3.2-2.9">Unnumbered Adjacency with IPv4 NodeIDs:</dt>
<dd id="section-4.3.2-2.10">
<p id="section-4.3.2-2.10.1">Specified as a
pair of (node ID, interface ID) tuples. In this case, the NT value is
5, and the NAI field length is 16 octets. The format of the NAI is
shown in the following figure:<a href="#section-4.3.2-2.10.1" class="pilcrow">¶</a></p>
<span id="name-nai-for-unnumbered-adjacenc"></span><div id="ADJ-SID-ERO-UNNUM-32">
<figure id="figure-5">
<div class="artwork art-text alignLeft" id="section-4.3.2-2.10.2.1">
<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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Local Node ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Local Interface ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Remote Node ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Remote Interface ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-5" class="selfRef">Figure 5</a>:
<a href="#name-nai-for-unnumbered-adjacenc" class="selfRef">NAI for Unnumbered Adjacency with IPv4 Node IDs</a>
</figcaption></figure>
</div>
</dd>
<dt id="section-4.3.2-2.11">IPv6 Link-Local Adjacency:</dt>
<dd id="section-4.3.2-2.12">
<p id="section-4.3.2-2.12.1">Specified as a pair of (global IPv6 address, interface ID) tuples. It is used to describe an IPv6 adjacency for a link that uses only link-local IPv6 addresses. Each global IPv6 address is configured on a specific router, so together they identify a pair of adjacent routers. The interface IDs identify the link that the adjacency is formed over. In this case, the NT value is 6, and the NAI field length is 40 octets. The format of the NAI is shown in the following figure:<a href="#section-4.3.2-2.12.1" class="pilcrow">¶</a></p>
<span id="name-nai-for-ipv6-link-local-adj"></span><div id="ADJ-SID-ERO-LINKLOCAL-40">
<figure id="figure-6">
<div class="artwork art-text alignLeft" id="section-4.3.2-2.12.2.1">
<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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// Local IPv6 address (16 octets) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Local Interface ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// Remote IPv6 address (16 octets) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Remote Interface ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-6" class="selfRef">Figure 6</a>:
<a href="#name-nai-for-ipv6-link-local-adj" class="selfRef">NAI for IPv6 Link-Local Adjacency</a>
</figcaption></figure>
</div>
</dd>
</dl>
</section>
</div>
</section>
</div>
<div id="SR-RRO">
<section id="section-4.4">
<h3 id="name-rro">
<a href="#section-4.4" class="section-number selfRef">4.4. </a><a href="#name-rro" class="section-name selfRef">RRO</a>
</h3>
<p id="section-4.4-1">A PCC reports an SR-TE LSP to a PCE by sending a PCRpt message, per <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span>. The RRO on this message represents the SID list that was applied by the PCC, that is, the actual path taken by the LSP. The procedures of <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span> with respect to the RRO apply equally to this specification without change.<a href="#section-4.4-1" class="pilcrow">¶</a></p>
<p id="section-4.4-2">An RRO contains one or more subobjects called "SR-RRO subobjects", whose format is shown below:<a href="#section-4.4-2" class="pilcrow">¶</a></p>
<span id="name-sr-rro-subobject-format"></span><div id="SR-RRO-SUBOBJECT">
<figure id="figure-7">
<div class="artwork art-text alignLeft" id="section-4.4-3.1">
<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=36 | Length | NT | Flags |F|S|C|M|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// NAI (variable) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-7" class="selfRef">Figure 7</a>:
<a href="#name-sr-rro-subobject-format" class="selfRef">SR-RRO Subobject Format</a>
</figcaption></figure>
</div>
<p id="section-4.4-4">The format of the SR-RRO subobject is the same as that of the SR-ERO subobject, but without the L-Flag.<a href="#section-4.4-4" class="pilcrow">¶</a></p>
<p id="section-4.4-5">A PCC <span class="bcp14">MUST</span> order the SR-RRO subobjects such that the first subobject relative to the beginning of the RRO identifies the first segment visited by the SR-TE LSP, and the last subobject identifies the final segment of the SR-TE LSP, that is, its endpoint.<a href="#section-4.4-5" class="pilcrow">¶</a></p>
</section>
</div>
<div id="SR-METRIC">
<section id="section-4.5">
<h3 id="name-metric-object">
<a href="#section-4.5" class="section-number selfRef">4.5. </a><a href="#name-metric-object" class="section-name selfRef">METRIC Object</a>
</h3>
<p id="section-4.5-1">A PCC <span class="bcp14">MAY</span> request that PCE optimizes an individual path computation request to minimize the SID depth of the computed path by using the METRIC object defined in <span>[<a href="#RFC5440" class="xref">RFC5440</a>]</span>. This document defines a new type for the METRIC object to be used for this purpose, as follows:<a href="#section-4.5-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty">
<li class="ulEmpty" id="section-4.5-2.1">
<dl class="dlParallel" id="section-4.5-2.1.1">
<dt id="section-4.5-2.1.1.1">T = 11:</dt>
<dd id="section-4.5-2.1.1.2">Maximum SID Depth of the requested path.<a href="#section-4.5-2.1.1.2" class="pilcrow">¶</a>
</dd>
</dl>
</li>
</ul>
<p id="section-4.5-3">If the PCC includes a METRIC object of this type on a path computation request, then the PCE minimizes the SID depth of the computed path. If the B (bound) bit is set to 1 in the METRIC object, then the PCE <span class="bcp14">MUST NOT</span> return a path whose SID depth exceeds the given metric value. If the PCC did not set the X-Flag in its SR-PCE-CAPABILITY TLV, then it <span class="bcp14">MUST</span> set the B bit to 1. If the PCC set the X-Flag in its SR-PCE-CAPABILITY TLV, then it <span class="bcp14">MAY</span> set the B bit to 1 or zero.<a href="#section-4.5-3" class="pilcrow">¶</a></p>
<p id="section-4.5-4">If a PCEP session is established with a non-zero default MSD value, then the
PCC <span class="bcp14">MUST NOT</span> send an MSD METRIC object with an MSD greater than
the session's default MSD. If the PCE receives a path computation request
with an MSD METRIC object on such a session that is greater than the session's
default MSD, then it <span class="bcp14">MUST</span> consider the request invalid and send
a PCEP Error (PCErr) with Error-Type = 10 ("Reception of an invalid object") and
Error-value = 9 ("MSD exceeds the default for the PCEP session").<a href="#section-4.5-4" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="procedures">
<section id="section-5">
<h2 id="name-procedures">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-procedures" class="section-name selfRef">Procedures</a>
</h2>
<div id="SR-CAP-PROCESS">
<section id="section-5.1">
<h3 id="name-exchanging-the-sr-pce-capab">
<a href="#section-5.1" class="section-number selfRef">5.1. </a><a href="#name-exchanging-the-sr-pce-capab" class="section-name selfRef">Exchanging the SR PCE Capability</a>
</h3>
<p id="section-5.1-1">A PCC indicates that it is capable of supporting the head-end functions for SR-TE LSP by including the SR-PCE-CAPABILITY sub-TLV in the Open message that it sends to a PCE. A PCE indicates that it is capable of computing SR-TE paths by including the SR-PCE-CAPABILITY sub-TLV in the Open message that it sends to a PCC.<a href="#section-5.1-1" class="pilcrow">¶</a></p>
<p id="section-5.1-2">If a PCEP speaker receives a PATH-SETUP-TYPE-CAPABILITY TLV with a PST list containing PST=1, and supports that path setup type, then it checks for the presence of the SR-PCE-CAPABILITY sub-TLV. If that sub-TLV is absent, then the PCEP speaker <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 12 ("Missing PCE-SR-CAPABILITY sub-TLV") and <span class="bcp14">MUST</span> then close the PCEP session. If a PCEP speaker receives a PATH-SETUP-TYPE-CAPABILITY TLV with a SR-PCE-CAPABILITY sub-TLV, but the PST list does not contain PST=1, then the PCEP speaker <span class="bcp14">MUST</span> ignore the SR-PCE-CAPABILITY sub-TLV.<a href="#section-5.1-2" class="pilcrow">¶</a></p>
<p id="section-5.1-3">If a PCC sets the N-Flag to 1, then the PCE <span class="bcp14">MAY</span> send an SR-ERO subobject containing an NAI and no SID (see <a href="#SR-ERO-PROCESS" class="xref">Section 5.2</a>). Otherwise, the PCE <span class="bcp14">MUST NOT</span> send an SR-ERO subobject containing an NAI and no SID.<a href="#section-5.1-3" class="pilcrow">¶</a></p>
<p id="section-5.1-4">The number of SIDs that can be imposed on a packet depends on the PCC's data-plane capability. If a PCC sets the X-Flag to 1, then the MSD is not used and <span class="bcp14">MUST</span> be set to zero. If a PCE receives an SR-PCE-CAPABILITY sub-TLV with the X-Flag set to 1, then it <span class="bcp14">MUST</span> ignore the MSD field and assume that the sender can impose a SID stack of any depth. If a PCC sets the X-Flag to zero, then it sets the MSD field to the maximum number of SIDs that it can impose on a packet. In this case, the PCC <span class="bcp14">MUST</span> set the MSD to a number greater than zero. If a PCE receives an SR-PCE-CAPABILITY sub-TLV with the X-Flag and MSD both set to zero, then it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 21 ("Maximum SID depth must be non-zero") and <span class="bcp14">MUST</span> then close the PCEP session.<a href="#section-5.1-4" class="pilcrow">¶</a></p>
<p id="section-5.1-5">Note that the MSD value exchanged via the SR-PCE-CAPABILITY sub-TLV indicates the SID/label imposition limit for the PCC node. It is anticipated that, in many deployments, the PCCs will have network interfaces that are homogeneous with respect to MSD (that is, each interface has the same MSD). In such cases, having a per-node MSD on the PCEP session is sufficient; the PCE <span class="bcp14">SHOULD</span> interpret this to mean that all network interfaces on the PCC have the given MSD. However, the PCE <span class="bcp14">MAY</span> also learn a per-node MSD and a per-interface MSD from the routing protocols, as specified in <span>[<a href="#RFC8491" class="xref">RFC8491</a>]</span>, <span>[<a href="#RFC8476" class="xref">RFC8476</a>]</span>, and <span>[<a href="#I-D.ietf-idr-bgp-ls-segment-routing-msd" class="xref">MSD-BGP</a>]</span>. If the PCE learns the per-node MSD of a PCC from a routing protocol, then it <span class="bcp14">MUST</span> ignore the per-node MSD value in the SR-PCE-CAPABILITY sub-TLV and use the per-node MSD learned from the routing protocol instead. If the PCE learns the MSD of a network interface on a PCC from a routing protocol, then it <span class="bcp14">MUST</span> use the per-interface MSD instead of the MSD value in the SR-PCE-CAPABILITY sub-TLV when it computes a path that uses that interface.<a href="#section-5.1-5" class="pilcrow">¶</a></p>
<p id="section-5.1-6">Once an SR-capable PCEP session is established with a non-zero MSD value, the corresponding PCE <span class="bcp14">MUST NOT</span> send SR-TE paths with a number of SIDs exceeding that MSD value. If a PCC needs to modify the MSD value, it <span class="bcp14">MUST</span> close the PCEP session and re-establish it with the new MSD value. If a PCEP session is established with a non-zero MSD value, and the PCC receives an SR-TE path containing more SIDs than specified in the MSD value, the PCC <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 3 ("Unsupported number of SR-ERO subobjects"). If a PCEP session is established with an MSD value of zero, then the PCC <span class="bcp14">MAY</span> specify an MSD for each path computation request that it sends to the PCE, by including a "maximum SID depth" METRIC object on the request, as defined in <a href="#SR-METRIC" class="xref">Section 4.5</a>.<a href="#section-5.1-6" class="pilcrow">¶</a></p>
<p id="section-5.1-7">The N-Flag, X-Flag, and MSD value inside the SR-PCE-CAPABILITY sub-TLV are meaningful only in the Open message sent from a PCC to a PCE. As such, a PCE <span class="bcp14">MUST</span> set the N-Flag to zero, X-Flag to 1, and MSD value to zero in an outbound message to a PCC. Similarly, a PCC <span class="bcp14">MUST</span> ignore any MSD value received from a PCE. If a PCE receives multiple SR-PCE-CAPABILITY sub-TLVs in an Open message, it processes only the first sub-TLV received.<a href="#section-5.1-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="SR-ERO-PROCESS">
<section id="section-5.2">
<h3 id="name-ero-processing">
<a href="#section-5.2" class="section-number selfRef">5.2. </a><a href="#name-ero-processing" class="section-name selfRef">ERO Processing</a>
</h3>
<div id="SR-ERO-VALIDATION">
<section id="section-5.2.1">
<h4 id="name-sr-ero-validation">
<a href="#section-5.2.1" class="section-number selfRef">5.2.1. </a><a href="#name-sr-ero-validation" class="section-name selfRef">SR-ERO Validation</a>
</h4>
<p id="section-5.2.1-1">If a PCC does not support the SR PCE Capability and thus cannot recognize the SR-ERO or SR-RRO subobjects, it will respond according to the rules for a malformed object per <span>[<a href="#RFC5440" class="xref">RFC5440</a>]</span>.<a href="#section-5.2.1-1" class="pilcrow">¶</a></p>
<p id="section-5.2.1-2">On receiving an SR-ERO, a PCC <span class="bcp14">MUST</span> validate that the Length field, S bit, F bit, and NT field are consistent, as follows.<a href="#section-5.2.1-2" class="pilcrow">¶</a></p>
<ul>
<li id="section-5.2.1-3.1">If NT=0, the F bit <span class="bcp14">MUST</span> be 1, the S bit <span class="bcp14">MUST</span> be zero, and the Length <span class="bcp14">MUST</span> be 8.<a href="#section-5.2.1-3.1" class="pilcrow">¶</a>
</li>
<li id="section-5.2.1-3.2">If NT=1, the F bit <span class="bcp14">MUST</span> be zero. If the S bit is 1, the Length <span class="bcp14">MUST</span> be 8; otherwise, the Length <span class="bcp14">MUST</span> be 12.<a href="#section-5.2.1-3.2" class="pilcrow">¶</a>
</li>
<li id="section-5.2.1-3.3">If NT=2, the F bit <span class="bcp14">MUST</span> be zero. If the S bit is 1, the Length <span class="bcp14">MUST</span> be 20; otherwise, the Length <span class="bcp14">MUST</span> be 24.<a href="#section-5.2.1-3.3" class="pilcrow">¶</a>
</li>
<li id="section-5.2.1-3.4">If NT=3, the F bit <span class="bcp14">MUST</span> be zero. If the S bit is 1, the Length <span class="bcp14">MUST</span> be 12; otherwise, the Length <span class="bcp14">MUST</span> be 16.<a href="#section-5.2.1-3.4" class="pilcrow">¶</a>
</li>
<li id="section-5.2.1-3.5">If NT=4, the F bit <span class="bcp14">MUST</span> be zero. If the S bit is 1, the Length <span class="bcp14">MUST</span> be 36; otherwise, the Length <span class="bcp14">MUST</span> be 40.<a href="#section-5.2.1-3.5" class="pilcrow">¶</a>
</li>
<li id="section-5.2.1-3.6">If NT=5, the F bit <span class="bcp14">MUST</span> be zero. If the S bit is 1, the Length <span class="bcp14">MUST</span> be 20; otherwise, the Length <span class="bcp14">MUST</span> be 24.<a href="#section-5.2.1-3.6" class="pilcrow">¶</a>
</li>
<li id="section-5.2.1-3.7">If NT=6, the F bit <span class="bcp14">MUST</span> be zero. If the S bit is 1, the Length <span class="bcp14">MUST</span> be 44; otherwise, the Length <span class="bcp14">MUST</span> be 48.<a href="#section-5.2.1-3.7" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-5.2.1-4">If a PCC finds that the NT field, Length field, S bit, and F bit are not consistent, it <span class="bcp14">MUST</span> consider the entire ERO invalid and <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 11 ("Malformed object").<a href="#section-5.2.1-4" class="pilcrow">¶</a></p>
<p id="section-5.2.1-5">If a PCC does not recognize or support the value in the NT field,
it <span class="bcp14">MUST</span> consider the entire ERO invalid and
<span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10
("Reception of an invalid object") and Error-value = 13
("Unsupported NAI Type in the SR-ERO/SR-RRO subobject").<a href="#section-5.2.1-5" class="pilcrow">¶</a></p>
<p id="section-5.2.1-6">If a PCC receives an SR-ERO subobject in which the S and F bits are both set to 1 (that is, both the SID and NAI are absent), it <span class="bcp14">MUST</span> consider the entire ERO invalid and send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 6 ("Both SID and NAI are absent in the SR-ERO subobject").<a href="#section-5.2.1-6" class="pilcrow">¶</a></p>
<p id="section-5.2.1-7">If a PCC receives an SR-ERO subobject in which the S bit is set to 1 and the F bit is set to zero (that is, the SID is absent and the NAI is present), but the PCC does not support NAI resolution, it <span class="bcp14">MUST</span> consider the entire ERO invalid and send a PCErr message with Error-Type = 4 ("Not supported object") and Error-value = 4 ("Unsupported parameter").<a href="#section-5.2.1-7" class="pilcrow">¶</a></p>
<p id="section-5.2.1-8">If a PCC receives an SR-ERO subobject in which the S bit is set to 1 and either (or both) the M bit or the C bit is set to 1, it <span class="bcp14">MUST</span> consider the entire ERO invalid and send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 11 ("Malformed object").<a href="#section-5.2.1-8" class="pilcrow">¶</a></p>
<p id="section-5.2.1-9">If a PCC receives an SR-ERO subobject in which the S bit is set to zero and the M bit is set to 1, then the subobject contains an MPLS label. The PCC <span class="bcp14">MAY</span> choose not to accept a label provided by the PCE, based on its local policy. The PCC <span class="bcp14">MUST NOT</span> accept MPLS label value 3 (Implicit NULL), but it <span class="bcp14">MAY</span> accept other special-purpose MPLS label values. If the PCC decides not to accept an MPLS label value, it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 2 ("Bad label value").<a href="#section-5.2.1-9" class="pilcrow">¶</a></p>
<p id="section-5.2.1-10">If both the M and C bits of an SR-ERO subobject are set to 1, and if a PCC finds an erroneous setting in one or more of the TC, S, and TTL fields, it <span class="bcp14">MAY</span> overwrite those fields with values chosen according to its own policy. If the PCC does not overwrite them, it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 4 ("Bad label format").<a href="#section-5.2.1-10" class="pilcrow">¶</a></p>
<p id="section-5.2.1-11">If the M bit of an SR-ERO subobject is set to zero but the C bit is set to 1, then the PCC <span class="bcp14">MUST</span> consider the entire ERO invalid and <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 11 ("Malformed object").<a href="#section-5.2.1-11" class="pilcrow">¶</a></p>
<p id="section-5.2.1-12">If a PCC receives an SR-ERO subobject in which the S bit is set to zero and the M bit is set to zero, then the subobject contains a SID index value. If the SID is an Adj-SID, then the L-Flag <span class="bcp14">MUST NOT</span> be set. If the L-Flag is set for an Adj-SID, then the PCC <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 11 ("Malformed object").<a href="#section-5.2.1-12" class="pilcrow">¶</a></p>
<p id="section-5.2.1-13">If a PCC detects that the subobjects of an ERO are a mixture of SR-ERO subobjects and subobjects of other types, then it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 5 ("ERO mixes SR-ERO subobjects with other subobject types").<a href="#section-5.2.1-13" class="pilcrow">¶</a></p>
<p id="section-5.2.1-14">The SR-ERO subobjects can be classified according to whether they contain a SID representing an MPLS label value or an index value, or no SID. If a PCC detects that the SR-ERO subobjects are a mixture of more than one of these types, then it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 20 ("Inconsistent SIDs in SR-ERO/SR-RRO subobjects").<a href="#section-5.2.1-14" class="pilcrow">¶</a></p>
<p id="section-5.2.1-15">If an ERO specifies a new SR-TE path for an existing LSP and the PCC determines that the ERO contains SR-ERO subobjects that are not valid, then the PCC <span class="bcp14">MUST NOT</span> update the LSP.<a href="#section-5.2.1-15" class="pilcrow">¶</a></p>
</section>
</div>
<div id="SR-ERO-INTERPRET">
<section id="section-5.2.2">
<h4 id="name-interpreting-the-sr-ero">
<a href="#section-5.2.2" class="section-number selfRef">5.2.2. </a><a href="#name-interpreting-the-sr-ero" class="section-name selfRef">Interpreting the SR-ERO</a>
</h4>
<p id="section-5.2.2-1">
The SR-ERO contains a sequence of subobjects. Each SR-ERO subobject in
the sequence identifies a segment that the traffic will be directed
to, in the order given. That is, the first subobject identifies the
first segment the traffic will be directed to, the second
subobject represents the second segment, and so on.<a href="#section-5.2.2-1" class="pilcrow">¶</a></p>
<p id="section-5.2.2-2">
The PCC interprets the SR-ERO by converting it to an MPLS label stack plus a
next hop. The PCC sends packets along the segment-routed path by prepending
the MPLS label stack onto the packets and sending the resulting, modified
packet to the next hop.<a href="#section-5.2.2-2" class="pilcrow">¶</a></p>
<p id="section-5.2.2-3">
The PCC uses a different procedure to do this conversion, depending on the
information that the PCE has provided in the subobjects.<a href="#section-5.2.2-3" class="pilcrow">¶</a></p>
<ul>
<li id="section-5.2.2-4.1">
If the subobjects contain SID index values, then the PCC converts them into the
corresponding MPLS labels by following the procedure defined in
<span>[<a href="#RFC8660" class="xref">RFC8660</a>]</span>.<a href="#section-5.2.2-4.1" class="pilcrow">¶</a>
</li>
<li id="section-5.2.2-4.2">
If the subobjects contain NAIs only, the PCC first converts
each NAI into a SID index value and then proceeds as above.
To convert an NAI to a SID index, the PCC looks for a fully specified
prefix or adjacency matching the fields in the NAI. If the PCC finds
a matching prefix/adjacency, and the matching prefix/adjacency has a SID associated
with it, then the PCC uses that SID. If the PCC cannot find a
matching prefix/adjacency, or if the matching prefix/adjacency has no SID associated
with it, the PCC behaves as specified in <a href="#SR-ERO-INTERPRET-ERROR" class="xref">Section 5.2.2.1</a>.<a href="#section-5.2.2-4.2" class="pilcrow">¶</a>
</li>
<li id="section-5.2.2-4.3">
If the subobjects contain MPLS labels, then the PCC looks up the offset of the first subobject's label
in its SRGB or SRLB. This gives the first SID. The PCC pushes the labels in any
remaining subobjects onto the packet (with the final subobject specifying the
bottom-of-stack label).<a href="#section-5.2.2-4.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-5.2.2-5">
For all cases above, after the PCC has imposed the label stack on the packet, it sends the packet to the segment identified by the first SID.<a href="#section-5.2.2-5" class="pilcrow">¶</a></p>
<div id="SR-ERO-INTERPRET-ERROR">
<section id="section-5.2.2.1">
<h5 id="name-handling-errors-during-sr-e">
<a href="#section-5.2.2.1" class="section-number selfRef">5.2.2.1. </a><a href="#name-handling-errors-during-sr-e" class="section-name selfRef">Handling Errors During SR-ERO Conversion</a>
</h5>
<p id="section-5.2.2.1-1">There are several errors that can occur during the process of converting an SR-ERO sequence to an MPLS label stack and a next hop. The PCC deals with them as follows.<a href="#section-5.2.2.1-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-5.2.2.1-2.1">If the PCC cannot find a SID index in the SR-DB, it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 14 ("Unknown SID").<a href="#section-5.2.2.1-2.1" class="pilcrow">¶</a>
</li>
<li id="section-5.2.2.1-2.2">If the PCC cannot find an NAI in the SR-DB, it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 15 ("NAI cannot be resolved to a SID").<a href="#section-5.2.2.1-2.2" class="pilcrow">¶</a>
</li>
<li id="section-5.2.2.1-2.3">If the PCC needs to convert a SID into an MPLS label value but cannot find the corresponding router's SRGB in the SR-DB, it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 16 ("Could not find SRGB").<a href="#section-5.2.2.1-2.3" class="pilcrow">¶</a>
</li>
<li id="section-5.2.2.1-2.4">If the PCC finds that a router's SRGB is not large enough for a SID index value, it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 17 ("SID index exceeds SRGB size").<a href="#section-5.2.2.1-2.4" class="pilcrow">¶</a>
</li>
<li id="section-5.2.2.1-2.5">If the PCC needs to convert a SID into an MPLS label value but cannot find the corresponding router's SRLB in the SR-DB, it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 18 ("Could not find SRLB").<a href="#section-5.2.2.1-2.5" class="pilcrow">¶</a>
</li>
<li id="section-5.2.2.1-2.6">If the PCC finds that a router's SRLB is not large enough for a SID index value, it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 19 ("SID index exceeds SRLB size").<a href="#section-5.2.2.1-2.6" class="pilcrow">¶</a>
</li>
<li id="section-5.2.2.1-2.7">If the number of labels in the computed label stack exceeds the maximum number of SIDs that the PCC can impose on the packet, it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 3 ("Unsupported number of SR-ERO subobjects").<a href="#section-5.2.2.1-2.7" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-5.2.2.1-3">If an ERO specifies a new SR-TE path for an existing LSP and the PCC encounters an error while processing the ERO, then the PCC <span class="bcp14">MUST NOT</span> update the LSP.<a href="#section-5.2.2.1-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="SR-RRO-PROCESS">
<section id="section-5.3">
<h3 id="name-rro-processing">
<a href="#section-5.3" class="section-number selfRef">5.3. </a><a href="#name-rro-processing" class="section-name selfRef">RRO Processing</a>
</h3>
<p id="section-5.3-1">The syntax-checking rules that apply to the SR-RRO subobject are identical to those of the SR-ERO subobject, except as noted below.<a href="#section-5.3-1" class="pilcrow">¶</a></p>
<p id="section-5.3-2">If a PCEP speaker receives an SR-RRO subobject in which both SID and NAI are absent, it <span class="bcp14">MUST</span> consider the entire RRO invalid and send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 7 ("Both SID and NAI are absent in the SR-RRO subobject").<a href="#section-5.3-2" class="pilcrow">¶</a></p>
<p id="section-5.3-3">If a PCE detects that the subobjects of an RRO are a mixture of SR-RRO subobjects and subobjects of other types, then it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 10 ("RRO mixes SR-RRO subobjects with other subobject types").<a href="#section-5.3-3" class="pilcrow">¶</a></p>
<p id="section-5.3-4">The SR-RRO subobjects can be classified according to whether they contain a SID representing an MPLS label value or an index value, or no SID. If a PCE detects that the SR-RRO subobjects are a mixture of more than one of these types, then it <span class="bcp14">MUST</span> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 20 ("Inconsistent SIDs in SR-ERO / SR-RRO subobjects").<a href="#section-5.3-4" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="Management">
<section id="section-6">
<h2 id="name-management-considerations">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-management-considerations" class="section-name selfRef">Management Considerations</a>
</h2>
<p id="section-6-1">This document adds a new path setup type to PCEP to allow LSPs
to be set up using Segment Routing techniques. This path setup
type may be used with PCEP alongside other path setup types,
such as RSVP-TE, or it may be used exclusively.<a href="#section-6-1" class="pilcrow">¶</a></p>
<div id="control">
<section id="section-6.1">
<h3 id="name-controlling-the-path-setup-">
<a href="#section-6.1" class="section-number selfRef">6.1. </a><a href="#name-controlling-the-path-setup-" class="section-name selfRef">Controlling the Path Setup Type</a>
</h3>
<p id="section-6.1-1">The following factors control which path setup type is used for
a given LSP.<a href="#section-6.1-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-6.1-2.1"> The available path setup types are constrained to those that
are supported by, or enabled on, the PCEP speakers. The
PATH-SETUP-TYPE-CAPABILITY TLV indicates which path setup types
a PCEP speaker supports. To use Segment Routing as a path setup type,
it is a prerequisite that the PCC and PCE both include PST=1 in the
list of supported path setup types in this TLV and also include the
SR-PCE-CAPABILITY sub-TLV.<a href="#section-6.1-2.1" class="pilcrow">¶</a>
</li>
<li id="section-6.1-2.2"> When a PCE initiates an LSP, it proposes which path setup type
to use by including it in the
PATH-SETUP-TYPE TLV in the SRP object of the PCInitiate message.
The PCE chooses the path setup type based on the capabilities of the
network nodes on the path and on its local policy. The PCC <span class="bcp14">MAY</span> choose
to accept the proposed path setup type or to reject the PCInitiate
request, based on its local policy.<a href="#section-6.1-2.2" class="pilcrow">¶</a>
</li>
<li id="section-6.1-2.3"> When a PCC requests a path for an LSP, it can nominate a preferred
path setup type by including it in the PATH-SETUP-TYPE TLV in the
RP object of the PCReq message. The PCE <span class="bcp14">MAY</span> choose to reply
with a path of the requested type, reply with a path of a
different type, or reject the request, based on the capabilities of the
network nodes on the path and on its local policy.<a href="#section-6.1-2.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-6.1-3">The operator can influence the path setup type as follows.<a href="#section-6.1-3" class="pilcrow">¶</a></p>
<ul>
<li id="section-6.1-4.1"> Implementations <span class="bcp14">MUST</span> allow the operator to enable and disable
the Segment Routing path setup type on a PCEP-speaking device.
Implementations <span class="bcp14">MAY</span> also allow the operator to enable and disable the RSVP-TE
path setup type.<a href="#section-6.1-4.1" class="pilcrow">¶</a>
</li>
<li id="section-6.1-4.2"> PCE implementations <span class="bcp14">MUST</span> allow the operator to specify that an LSP
should be instantiated using Segment Routing or RSVP-TE as the proposed path
setup type.<a href="#section-6.1-4.2" class="pilcrow">¶</a>
</li>
<li id="section-6.1-4.3"> PCE implementations <span class="bcp14">MAY</span> allow the operator to configure a
preference for the PCE to propose paths using Segment Routing or RSVP-TE in
the absence of a specified path setup type.<a href="#section-6.1-4.3" class="pilcrow">¶</a>
</li>
<li id="section-6.1-4.4"> PCC implementations <span class="bcp14">MUST</span> allow the operator to specify that a path
requested for an LSP nominates Segment Routing or RSVP-TE as the
path setup type.<a href="#section-6.1-4.4" class="pilcrow">¶</a>
</li>
<li id="section-6.1-4.5"> PCC implementations <span class="bcp14">MAY</span> allow the operator to configure a preference
for the PCC to nominate Segment Routing or RSVP-TE as the path
setup type if none is specified for an LSP.<a href="#section-6.1-4.5" class="pilcrow">¶</a>
</li>
<li id="section-6.1-4.6"> PCC implementations <span class="bcp14">SHOULD</span> allow the operator to configure a PCC to
refuse to set up an LSP using an undesired path setup type.<a href="#section-6.1-4.6" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="migrating">
<section id="section-6.2">
<h3 id="name-migrating-a-network-to-use-">
<a href="#section-6.2" class="section-number selfRef">6.2. </a><a href="#name-migrating-a-network-to-use-" class="section-name selfRef">Migrating a Network to Use PCEP Segment-Routed Paths</a>
</h3>
<p id="section-6.2-1">
This section discusses the steps that the operator takes when migrating a
network to enable PCEP to set up paths using Segment Routing as the path
setup type.<a href="#section-6.2-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-6.2-2.1"> The operator enables the Segment Routing PST on the PCE servers.<a href="#section-6.2-2.1" class="pilcrow">¶</a>
</li>
<li id="section-6.2-2.2"> The operator enables the Segment Routing PST on the PCCs.<a href="#section-6.2-2.2" class="pilcrow">¶</a>
</li>
<li id="section-6.2-2.3"> The operator resets each PCEP session. The PCEP sessions come
back up with Segment Routing enabled.<a href="#section-6.2-2.3" class="pilcrow">¶</a>
</li>
<li id="section-6.2-2.4"> If the operator detects a problem, they can roll the network back
to its initial state by disabling the Segment Routing PST on the
PCEP speakers and resetting the PCEP sessions.<a href="#section-6.2-2.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-6.2-3">Note that the data plane is unaffected if a PCEP session is reset. Any
LSPs that were set up before the session reset will remain in place and
will still be present after the session comes back up.<a href="#section-6.2-3" class="pilcrow">¶</a></p>
<p id="section-6.2-4">An implementation <span class="bcp14">SHOULD</span> allow the operator to manually trigger a PCEP
session to be reset.<a href="#section-6.2-4" class="pilcrow">¶</a></p>
<p id="section-6.2-5">An implementation <span class="bcp14">MAY</span> automatically reset a PCEP session when
an operator reconfigures the PCEP speaker's capabilities. However, note that
if the capabilities at both ends of the PCEP session are not reconfigured
simultaneously, then the session could be reset twice, which could lead to
unnecessary network traffic. Therefore, such implementations <span class="bcp14">SHOULD</span> allow
the operator to override this behavior and wait instead for a manual reset.<a href="#section-6.2-5" class="pilcrow">¶</a></p>
<p id="section-6.2-6">Once Segment Routing is enabled on a PCEP session, it can be used as the
path setup type for future LSPs.<a href="#section-6.2-6" class="pilcrow">¶</a></p>
<p id="section-6.2-7">User traffic is not automatically migrated from existing LSPs onto
segment-routed LSPs just by enabling the Segment Routing PST in PCEP. The
migration of user traffic from existing LSPs onto Segment Routing LSPs is
beyond the scope of this document.<a href="#section-6.2-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="verification">
<section id="section-6.3">
<h3 id="name-verification-of-network-ope">
<a href="#section-6.3" class="section-number selfRef">6.3. </a><a href="#name-verification-of-network-ope" class="section-name selfRef">Verification of Network Operation</a>
</h3>
<p id="section-6.3-1">The operator needs the following information to verify that PCEP is
operating correctly with respect to the Segment Routing path setup type.<a href="#section-6.3-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-6.3-2.1"> An implementation <span class="bcp14">SHOULD</span> allow the operator to view whether the
PCEP speaker sent the Segment Routing PST capability to its peer.
If the PCEP speaker is a PCC, then the implementation <span class="bcp14">SHOULD</span> also allow
the operator to view the values of the L-Flag and N-Flag that were sent and the value of the MSD field
that was sent.<a href="#section-6.3-2.1" class="pilcrow">¶</a>
</li>
<li id="section-6.3-2.2"> An implementation <span class="bcp14">SHOULD</span> allow the operator to view
whether the peer sent the Segment Routing PST capability. If the peer
is a PCC, then the implementation <span class="bcp14">SHOULD</span> also allow the operator to view
the values of the L-Flag and N-Flag and MSD fields that the peer sent.<a href="#section-6.3-2.2" class="pilcrow">¶</a>
</li>
<li id="section-6.3-2.3"> An implementation <span class="bcp14">SHOULD</span> allow the operator to view
whether the Segment Routing PST is enabled on the PCEP session.<a href="#section-6.3-2.3" class="pilcrow">¶</a>
</li>
<li id="section-6.3-2.4"> If one PCEP speaker advertises the Segment Routing PST capability, but the other
does not, then the implementation <span class="bcp14">SHOULD</span> create a log to inform the
operator of the capability mismatch.<a href="#section-6.3-2.4" class="pilcrow">¶</a>
</li>
<li id="section-6.3-2.5"> An implementation <span class="bcp14">SHOULD</span> allow the operator to view the PST that was
proposed, or requested, for an LSP and the PST that was actually used.<a href="#section-6.3-2.5" class="pilcrow">¶</a>
</li>
<li id="section-6.3-2.6"> If a PCEP speaker decides to use a different PST to the one that was
proposed, or requested, for an LSP, then the implementation <span class="bcp14">SHOULD</span>
create a log to inform the operator that the expected PST has not been used.
The log <span class="bcp14">SHOULD</span> give the reason for this choice (local policy,
equipment capability, etc.).<a href="#section-6.3-2.6" class="pilcrow">¶</a>
</li>
<li id="section-6.3-2.7"> If a PCEP speaker rejects a Segment Routing path, then it <span class="bcp14">SHOULD</span> create a log
to inform the operator, giving the reason for the decision (local policy,
MSD exceeded, etc.).<a href="#section-6.3-2.7" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="models">
<section id="section-6.4">
<h3 id="name-relationship-to-existing-ma">
<a href="#section-6.4" class="section-number selfRef">6.4. </a><a href="#name-relationship-to-existing-ma" class="section-name selfRef">Relationship to Existing Management Models</a>
</h3>
<p id="section-6.4-1">The PCEP YANG module is defined in <span>[<a href="#I-D.ietf-pce-pcep-yang" class="xref">PCE-PCEP-YANG</a>]</span>. In the future, this
YANG module should be extended or augmented to provide the following
additional information relating to Segment Routing:<a href="#section-6.4-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-6.4-2.1"> The advertised PST capabilities and MSD per PCEP session.<a href="#section-6.4-2.1" class="pilcrow">¶</a>
</li>
<li id="section-6.4-2.2"> The PST configured for, and used by, each LSP.<a href="#section-6.4-2.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-6.4-3">The PCEP MIB <span>[<a href="#RFC7420" class="xref">RFC7420</a>]</span> could also be updated to include this
information.<a href="#section-6.4-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="Security">
<section id="section-7">
<h2 id="name-security-considerations">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-7-1">The security considerations described in <span>[<a href="#RFC5440" class="xref">RFC5440</a>]</span>, <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span>, <span>[<a href="#RFC8281" class="xref">RFC8281</a>]</span>, and <span>[<a href="#RFC8408" class="xref">RFC8408</a>]</span> are
applicable to this specification. No additional security measures are required.<a href="#section-7-1" class="pilcrow">¶</a></p>
<p id="section-7-2">Note that this specification enables a network controller to instantiate a
path in the network without the use of a hop-by-hop signaling protocol
(such as RSVP-TE). This creates an additional vulnerability if the security
mechanisms of <span>[<a href="#RFC5440" class="xref">RFC5440</a>]</span>, <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span>, and <span>[<a href="#RFC8281" class="xref">RFC8281</a>]</span> are not
used. If there is no integrity protection on the session, then an attacker could create a path that is not subjected to the
further verification checks that would be performed by the signaling
protocol.<a href="#section-7-2" class="pilcrow">¶</a></p>
<p id="section-7-3">Note that this specification adds the MSD field to the Open message (see <a href="#cap-negotiation" class="xref">Section 4.1.2</a>),
which discloses how many MPLS labels the sender can push onto packets that
it forwards into the network. If the security mechanisms of <span>[<a href="#RFC8231" class="xref">RFC8231</a>]</span> and <span>[<a href="#RFC8281" class="xref">RFC8281</a>]</span>
are not used with strong encryption, then an attacker could use this
new field to gain intelligence about the capabilities of the edge devices in
the network.<a href="#section-7-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="IANA">
<section id="section-8">
<h2 id="name-iana-considerations">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<div id="PCEP-Object-Codepoints">
<section id="section-8.1">
<h3 id="name-pcep-ero-and-rro-subobjects">
<a href="#section-8.1" class="section-number selfRef">8.1. </a><a href="#name-pcep-ero-and-rro-subobjects" class="section-name selfRef">PCEP ERO and RRO Subobjects</a>
</h3>
<p id="section-8.1-1">This document defines a new subobject type for the PCEP ERO
and a new subobject type for the PCEP RRO. The codepoints for
subobject types of these objects are maintained in the "Resource Reservation Protocol (RSVP) Parameters" registry, under the EXPLICIT_ROUTE and ROUTE_RECORD
objects, respectively.<a href="#section-8.1-1" class="pilcrow">¶</a></p>
<div id="IANA-Subobject-Type">
<table class="center" id="table-1">
<caption><a href="#table-1" class="selfRef">Table 1</a></caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Object</th>
<th class="text-left" rowspan="1" colspan="1">Subobject</th>
<th class="text-left" rowspan="1" colspan="1">Subobject Type</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">EXPLICIT_ROUTE</td>
<td class="text-left" rowspan="1" colspan="1">SR-ERO (PCEP specific)</td>
<td class="text-left" rowspan="1" colspan="1">36</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">ROUTE_RECORD</td>
<td class="text-left" rowspan="1" colspan="1">SR-RRO (PCEP specific)</td>
<td class="text-left" rowspan="1" colspan="1">36</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="NAI-Type-Registry">
<section id="section-8.2">
<h3 id="name-new-nai-type-registry">
<a href="#section-8.2" class="section-number selfRef">8.2. </a><a href="#name-new-nai-type-registry" class="section-name selfRef">New NAI Type Registry</a>
</h3>
<p id="section-8.2-1">IANA has created a new sub-registry within the "Path Computation
Element Protocol (PCEP) Numbers" registry called "PCEP SR-ERO NAI
Types". The allocation policy for this new registry is by IETF
Review <span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span>. The new registry contains the
following values:<a href="#section-8.2-1" class="pilcrow">¶</a></p>
<div id="New-PCEP-SR-ERO-NAI-value">
<table class="center" id="table-2">
<caption><a href="#table-2" class="selfRef">Table 2</a></caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Description </th>
<th class="text-left" rowspan="1" colspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">0</td>
<td class="text-left" rowspan="1" colspan="1">NAI is absent.</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">NAI is an IPv4 node ID.</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">NAI is an IPv6 node ID.</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">NAI is an IPv4 adjacency.</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">NAI is an IPv6 adjacency with global IPv6 addresses.</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">5</td>
<td class="text-left" rowspan="1" colspan="1">NAI is an unnumbered adjacency with IPv4 node IDs.</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">NAI is an IPv6 adjacency with link-local IPv6 addresses.</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">7-15</td>
<td class="text-left" rowspan="1" colspan="1">Unassigned</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="IANA-SR-ERO-FLAG">
<section id="section-8.3">
<h3 id="name-new-sr-ero-flag-registry">
<a href="#section-8.3" class="section-number selfRef">8.3. </a><a href="#name-new-sr-ero-flag-registry" class="section-name selfRef">New SR-ERO Flag Registry</a>
</h3>
<p id="section-8.3-1">IANA has created a new sub-registry, named
"SR-ERO Flag Field", within the "Path Computation
Element Protocol (PCEP) Numbers" registry to manage the Flag
field of the SR-ERO subobject. New values are to be assigned by Standards
Action <span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span>. Each bit should be tracked with the
following qualities:<a href="#section-8.3-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-8.3-2.1">Bit number (counting from bit 0 as the most significant bit)<a href="#section-8.3-2.1" class="pilcrow">¶</a>
</li>
<li id="section-8.3-2.2">Capability description<a href="#section-8.3-2.2" class="pilcrow">¶</a>
</li>
<li id="section-8.3-2.3">Defining RFC<a href="#section-8.3-2.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-8.3-3">The following values are defined in this document:<a href="#section-8.3-3" class="pilcrow">¶</a></p>
<div id="SR-ERO-Flags">
<table class="center" id="table-3">
<caption><a href="#table-3" class="selfRef">Table 3</a></caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Bit</th>
<th class="text-left" rowspan="1" colspan="1">Description </th>
<th class="text-left" rowspan="1" colspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">0-7</td>
<td class="text-left" rowspan="1" colspan="1">Unassigned</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">NAI is absent (F)</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">9</td>
<td class="text-left" rowspan="1" colspan="1">SID is absent (S)</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">SID specifies TC, S, and TTL in addition to an MPLS label (C)</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">11</td>
<td class="text-left" rowspan="1" colspan="1">SID specifies an MPLS label (M)</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="IANA-Error-Object">
<section id="section-8.4">
<h3 id="name-pcep-error-object">
<a href="#section-8.4" class="section-number selfRef">8.4. </a><a href="#name-pcep-error-object" class="section-name selfRef">PCEP-Error Object</a>
</h3>
<p id="section-8.4-1">IANA has allocated the following codepoints in the "PCEP-ERROR Object Error Types and Values" registry for the following new Error-values:<a href="#section-8.4-1" class="pilcrow">¶</a></p>
<div id="PCEP-Error-table">
<table class="center" id="table-4">
<caption><a href="#table-4" class="selfRef">Table 4</a></caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Error-Type</th>
<th class="text-left" rowspan="1" colspan="1">Meaning</th>
<th class="text-left" rowspan="1" colspan="1">Error-value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">Reception of an invalid object</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">2: Bad label value</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">3: Unsupported number of SR-ERO subobjects</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">4: Bad label format</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">5: ERO mixes SR-ERO subobjects with other subobject types</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">6: Both SID and NAI are absent in the SR-ERO subobject</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">7: Both SID and NAI are absent in the SR-RRO subobject</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">9: MSD exceeds the default for the PCEP session</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">10: RRO mixes SR-RRO subobjects with other subobject types</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">12: Missing PCE-SR-CAPABILITY sub-TLV</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">13: Unsupported NAI Type in the SR-ERO/SR-RRO subobject</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">14: Unknown SID</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">15: NAI cannot be resolved to a SID</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">16: Could not find SRGB</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">17: SID index exceeds SRGB size</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">18: Could not find SRLB</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">19: SID index exceeds SRLB size</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">20: Inconsistent SIDs in SR-ERO / SR-RRO subobjects</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">21: MSD must be non-zero</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="IANA-TLV-Type-Indicators">
<section id="section-8.5">
<h3 id="name-pcep-tlv-type-indicators">
<a href="#section-8.5" class="section-number selfRef">8.5. </a><a href="#name-pcep-tlv-type-indicators" class="section-name selfRef">PCEP TLV Type Indicators</a>
</h3>
<p id="section-8.5-1">IANA has allocated the following codepoint in the "PCEP TLV Type Indicators" registry. Note that this TLV type indicator is deprecated but retained in the registry to ensure compatibility with early implementations of this specification. See <a href="#Early" class="xref">Appendix A</a> for details.<a href="#section-8.5-1" class="pilcrow">¶</a></p>
<div id="PCEP-New-TLV-CP">
<table class="center" id="table-5">
<caption><a href="#table-5" class="selfRef">Table 5</a></caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Meaning </th>
<th class="text-left" rowspan="1" colspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">26</td>
<td class="text-left" rowspan="1" colspan="1">SR-PCE-CAPABILITY (deprecated)</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="IANA-subTLV-Type-Indicators">
<section id="section-8.6">
<h3 id="name-path-setup-type-capability-">
<a href="#section-8.6" class="section-number selfRef">8.6. </a><a href="#name-path-setup-type-capability-" class="section-name selfRef">PATH-SETUP-TYPE-CAPABILITY Sub-TLV Type Indicators</a>
</h3>
<p id="section-8.6-1">IANA has created a new sub-registry, named
"PATH-SETUP-TYPE-CAPABILITY Sub-TLV Type Indicators", within
the "Path Computation Element Protocol (PCEP) Numbers"
registry to manage the type indicator space for sub-TLVs of
the PATH-SETUP-TYPE-CAPABILITY TLV. New values are to be
assigned by Standards Action <span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span>. The
valid range of values in the registry is 0-65535. IANA
has initialized the registry with the following
values. All other values in the registry should be marked as
"Unassigned".<a href="#section-8.6-1" class="pilcrow">¶</a></p>
<div id="PCEP-New-subTLV-CP">
<table class="center" id="table-6">
<caption><a href="#table-6" class="selfRef">Table 6</a></caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Meaning </th>
<th class="text-left" rowspan="1" colspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">0</td>
<td class="text-left" rowspan="1" colspan="1">Reserved</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">26</td>
<td class="text-left" rowspan="1" colspan="1">SR-PCE-CAPABILITY</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="IANA-PATH-SETUP-TYPE">
<section id="section-8.7">
<h3 id="name-new-path-setup-type">
<a href="#section-8.7" class="section-number selfRef">8.7. </a><a href="#name-new-path-setup-type" class="section-name selfRef">New Path Setup Type</a>
</h3>
<p id="section-8.7-1">A sub-registry within the "Path Computation Element Protocol (PCEP) Numbers" registry called "PCEP Path Setup Types" was created in <span>[<a href="#RFC8408" class="xref">RFC8408</a>]</span>. IANA has allocated a new codepoint within this registry, as follows:<a href="#section-8.7-1" class="pilcrow">¶</a></p>
<div id="PATH-SETUP-TLV-value">
<table class="center" id="table-7">
<caption><a href="#table-7" class="selfRef">Table 7</a></caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Description </th>
<th class="text-left" rowspan="1" colspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Traffic-engineering path is set up using Segment Routing.</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="IANA-METRIC-TYPE">
<section id="section-8.8">
<h3 id="name-new-metric-type">
<a href="#section-8.8" class="section-number selfRef">8.8. </a><a href="#name-new-metric-type" class="section-name selfRef">New Metric Type</a>
</h3>
<p id="section-8.8-1">IANA has allocated the following codepoint in the PCEP "METRIC Object T Field" registry:<a href="#section-8.8-1" class="pilcrow">¶</a></p>
<div id="METRIC-type">
<table class="center" id="table-8">
<caption><a href="#table-8" class="selfRef">Table 8</a></caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Description </th>
<th class="text-left" rowspan="1" colspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">11</td>
<td class="text-left" rowspan="1" colspan="1">Segment-ID (SID) Depth.</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="IANA-SR-PCE-CAP-FLAG">
<section id="section-8.9">
<h3 id="name-sr-pce-capability-flags">
<a href="#section-8.9" class="section-number selfRef">8.9. </a><a href="#name-sr-pce-capability-flags" class="section-name selfRef">SR PCE Capability Flags</a>
</h3>
<p id="section-8.9-1">IANA has created a new sub-registry, named
"SR Capability Flag Field", within the "Path Computation
Element Protocol (PCEP) Numbers" registry to manage the Flag
field of the SR-PCE-CAPABILITY TLV. New values are to be assigned by Standards
Action <span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span>. Each bit should be tracked with the
following qualities:<a href="#section-8.9-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-8.9-2.1">Bit number (counting from bit 0 as the most significant bit)<a href="#section-8.9-2.1" class="pilcrow">¶</a>
</li>
<li id="section-8.9-2.2">Capability description<a href="#section-8.9-2.2" class="pilcrow">¶</a>
</li>
<li id="section-8.9-2.3">Defining RFC<a href="#section-8.9-2.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-8.9-3">The following values are defined in this document:<a href="#section-8.9-3" class="pilcrow">¶</a></p>
<div id="SR-PCE-CAP-Flags">
<table class="center" id="table-9">
<caption><a href="#table-9" class="selfRef">Table 9</a></caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Bit</th>
<th class="text-left" rowspan="1" colspan="1">Description </th>
<th class="text-left" rowspan="1" colspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">0-5</td>
<td class="text-left" rowspan="1" colspan="1">Unassigned</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">Node or Adjacency Identifier (NAI) is supported (N)</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">7</td>
<td class="text-left" rowspan="1" colspan="1">Unlimited Maximum SID Depth (X)</td>
<td class="text-left" rowspan="1" colspan="1">This document</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</section>
</div>
<section id="section-9">
<h2 id="name-references">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-references" class="section-name selfRef">References</a>
</h2>
<section id="section-9.1">
<h3 id="name-normative-references">
<a href="#section-9.1" class="section-number selfRef">9.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h3>
<dl class="references">
<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="RFC3032">[RFC3032]</dt>
<dd>
<span class="refAuthor">Rosen, E.</span><span class="refAuthor">, Tappan, D.</span><span class="refAuthor">, Fedorkow, G.</span><span class="refAuthor">, Rekhter, Y.</span><span class="refAuthor">, Farinacci, D.</span><span class="refAuthor">, Li, T.</span><span class="refAuthor">, and A. Conta</span>, <span class="refTitle">"MPLS Label Stack Encoding"</span>, <span class="seriesInfo">RFC 3032</span>, <span class="seriesInfo">DOI 10.17487/RFC3032</span>, <time datetime="2001-01">January 2001</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3032">https://www.rfc-editor.org/info/rfc3032</a>></span>. </dd>
<dt id="RFC5440">[RFC5440]</dt>
<dd>
<span class="refAuthor">Vasseur, JP., Ed.</span><span class="refAuthor"> and JL. Le Roux, Ed.</span>, <span class="refTitle">"Path Computation Element (PCE) Communication Protocol (PCEP)"</span>, <span class="seriesInfo">RFC 5440</span>, <span class="seriesInfo">DOI 10.17487/RFC5440</span>, <time datetime="2009-03">March 2009</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5440">https://www.rfc-editor.org/info/rfc5440</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="RFC8231">[RFC8231]</dt>
<dd>
<span class="refAuthor">Crabbe, E.</span><span class="refAuthor">, Minei, I.</span><span class="refAuthor">, Medved, J.</span><span class="refAuthor">, and R. Varga</span>, <span class="refTitle">"Path Computation Element Communication Protocol (PCEP) Extensions for Stateful PCE"</span>, <span class="seriesInfo">RFC 8231</span>, <span class="seriesInfo">DOI 10.17487/RFC8231</span>, <time datetime="2017-09">September 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8231">https://www.rfc-editor.org/info/rfc8231</a>></span>. </dd>
<dt id="RFC8281">[RFC8281]</dt>
<dd>
<span class="refAuthor">Crabbe, E.</span><span class="refAuthor">, Minei, I.</span><span class="refAuthor">, Sivabalan, S.</span><span class="refAuthor">, and R. Varga</span>, <span class="refTitle">"Path Computation Element Communication Protocol (PCEP) Extensions for PCE-Initiated LSP Setup in a Stateful PCE Model"</span>, <span class="seriesInfo">RFC 8281</span>, <span class="seriesInfo">DOI 10.17487/RFC8281</span>, <time datetime="2017-12">December 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8281">https://www.rfc-editor.org/info/rfc8281</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="RFC8408">[RFC8408]</dt>
<dd>
<span class="refAuthor">Sivabalan, S.</span><span class="refAuthor">, Tantsura, J.</span><span class="refAuthor">, Minei, I.</span><span class="refAuthor">, Varga, R.</span><span class="refAuthor">, and J. Hardwick</span>, <span class="refTitle">"Conveying Path Setup Type in PCE Communication Protocol (PCEP) Messages"</span>, <span class="seriesInfo">RFC 8408</span>, <span class="seriesInfo">DOI 10.17487/RFC8408</span>, <time datetime="2018-07">July 2018</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8408">https://www.rfc-editor.org/info/rfc8408</a>></span>. </dd>
<dt id="RFC8491">[RFC8491]</dt>
<dd>
<span class="refAuthor">Tantsura, J.</span><span class="refAuthor">, Chunduri, U.</span><span class="refAuthor">, Aldrin, S.</span><span class="refAuthor">, and L. Ginsberg</span>, <span class="refTitle">"Signaling Maximum SID Depth (MSD) Using IS-IS"</span>, <span class="seriesInfo">RFC 8491</span>, <span class="seriesInfo">DOI 10.17487/RFC8491</span>, <time datetime="2018-11">November 2018</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8491">https://www.rfc-editor.org/info/rfc8491</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>
</dl>
</section>
<section id="section-9.2">
<h3 id="name-informative-references">
<a href="#section-9.2" class="section-number selfRef">9.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
</h3>
<dl class="references">
<dt id="I-D.ietf-6man-segment-routing-header">[IPv6-SRH]</dt>
<dd>
<span class="refAuthor">Filsfils, C.</span><span class="refAuthor">, Dukes, D.</span><span class="refAuthor">, Previdi, S.</span><span class="refAuthor">, Leddy, J.</span><span class="refAuthor">, Matsushima, S.</span><span class="refAuthor">, and D. Voyer</span>, <span class="refTitle">"IPv6 Segment Routing Header (SRH)"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-6man-segment-routing-header-26</span>, <time datetime="2019-10-22">22 October 2019</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-6man-segment-routing-header-26">https://tools.ietf.org/html/draft-ietf-6man-segment-routing-header-26</a>></span>. </dd>
<dt id="I-D.ietf-idr-bgp-ls-segment-routing-msd">[MSD-BGP]</dt>
<dd>
<span class="refAuthor">Tantsura, J.</span><span class="refAuthor">, Chunduri, U.</span><span class="refAuthor">, Talaulikar, K.</span><span class="refAuthor">, Mirsky, G.</span><span class="refAuthor">, and N. Triantafillis</span>, <span class="refTitle">"Signaling MSD (Maximum SID Depth) using Border Gateway Protocol Link-State"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-idr-bgp-ls-segment-routing-msd-09</span>, <time datetime="2019-10-15">15 October 2019</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-idr-bgp-ls-segment-routing-msd-09">https://tools.ietf.org/html/draft-ietf-idr-bgp-ls-segment-routing-msd-09</a>></span>. </dd>
<dt id="I-D.ietf-pce-pcep-yang">[PCE-PCEP-YANG]</dt>
<dd>
<span class="refAuthor">Dhody, D.</span><span class="refAuthor">, Hardwick, J.</span><span class="refAuthor">, Beeram, V.</span><span class="refAuthor">, and J. Tantsura</span>, <span class="refTitle">"A YANG Data Model for Path Computation Element Communications Protocol (PCEP)"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-pce-pcep-yang-13</span>, <time datetime="2019-10-31">31 October 2019</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-pce-pcep-yang-13">https://tools.ietf.org/html/draft-ietf-pce-pcep-yang-13</a>></span>. </dd>
<dt id="RFC3209">[RFC3209]</dt>
<dd>
<span class="refAuthor">Awduche, D.</span><span class="refAuthor">, Berger, L.</span><span class="refAuthor">, Gan, D.</span><span class="refAuthor">, Li, T.</span><span class="refAuthor">, Srinivasan, V.</span><span class="refAuthor">, and G. Swallow</span>, <span class="refTitle">"RSVP-TE: Extensions to RSVP for LSP Tunnels"</span>, <span class="seriesInfo">RFC 3209</span>, <span class="seriesInfo">DOI 10.17487/RFC3209</span>, <time datetime="2001-12">December 2001</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3209">https://www.rfc-editor.org/info/rfc3209</a>></span>. </dd>
<dt id="RFC4657">[RFC4657]</dt>
<dd>
<span class="refAuthor">Ash, J., Ed.</span><span class="refAuthor"> and J.L. Le Roux, Ed.</span>, <span class="refTitle">"Path Computation Element (PCE) Communication Protocol Generic Requirements"</span>, <span class="seriesInfo">RFC 4657</span>, <span class="seriesInfo">DOI 10.17487/RFC4657</span>, <time datetime="2006-09">September 2006</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4657">https://www.rfc-editor.org/info/rfc4657</a>></span>. </dd>
<dt id="RFC7420">[RFC7420]</dt>
<dd>
<span class="refAuthor">Koushik, A.</span><span class="refAuthor">, Stephan, E.</span><span class="refAuthor">, Zhao, Q.</span><span class="refAuthor">, King, D.</span><span class="refAuthor">, and J. Hardwick</span>, <span class="refTitle">"Path Computation Element Communication Protocol (PCEP) Management Information Base (MIB) Module"</span>, <span class="seriesInfo">RFC 7420</span>, <span class="seriesInfo">DOI 10.17487/RFC7420</span>, <time datetime="2014-12">December 2014</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7420">https://www.rfc-editor.org/info/rfc7420</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>
<dt id="RFC8413">[RFC8413]</dt>
<dd>
<span class="refAuthor">Zhuang, Y.</span><span class="refAuthor">, Wu, Q.</span><span class="refAuthor">, Chen, H.</span><span class="refAuthor">, and A. Farrel</span>, <span class="refTitle">"Framework for Scheduled Use of Resources"</span>, <span class="seriesInfo">RFC 8413</span>, <span class="seriesInfo">DOI 10.17487/RFC8413</span>, <time datetime="2018-07">July 2018</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8413">https://www.rfc-editor.org/info/rfc8413</a>></span>. </dd>
<dt id="RFC8476">[RFC8476]</dt>
<dd>
<span class="refAuthor">Tantsura, J.</span><span class="refAuthor">, Chunduri, U.</span><span class="refAuthor">, Aldrin, S.</span><span class="refAuthor">, and P. Psenak</span>, <span class="refTitle">"Signaling Maximum SID Depth (MSD) Using OSPF"</span>, <span class="seriesInfo">RFC 8476</span>, <span class="seriesInfo">DOI 10.17487/RFC8476</span>, <time datetime="2018-12">December 2018</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8476">https://www.rfc-editor.org/info/rfc8476</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>
<dt id="RFC8667">[RFC8667]</dt>
<dd>
<span class="refAuthor">Previdi, S., Ed.</span><span class="refAuthor">, Ginsberg, L., Ed.</span><span class="refAuthor">, Filsfils, C.</span><span class="refAuthor">, Bashandy, A.</span><span class="refAuthor">, Gredler, H.</span><span class="refAuthor">, and B. Decraene</span>, <span class="refTitle">"IS-IS Extensions for Segment Routing"</span>, <span class="seriesInfo">RFC 8667</span>, <span class="seriesInfo">DOI 10.17487/RFC8667</span>, <time datetime="2019-12">December 2019</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8667">https://www.rfc-editor.org/info/rfc8667</a>></span>. </dd>
<dt id="I-D.ietf-spring-segment-routing-policy">[SR-POLICY]</dt>
<dd>
<span class="refAuthor">Filsfils, C.</span><span class="refAuthor">, Sivabalan, S.</span><span class="refAuthor">, Voyer, D.</span><span class="refAuthor">, Bogdanov, A.</span><span class="refAuthor">, and P. Mattes</span>, <span class="refTitle">"Segment Routing Policy Architecture"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-spring-segment-routing-policy-05</span>, <time datetime="2019-11-17">17 November 2019</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-spring-segment-routing-policy-05">https://tools.ietf.org/html/draft-ietf-spring-segment-routing-policy-05</a>></span>. </dd>
</dl>
</section>
</section>
<div id="Early">
<section id="section-appendix.a">
<h2 id="name-compatibility-with-early-im">
<a href="#section-appendix.a" class="section-number selfRef">Appendix A. </a><a href="#name-compatibility-with-early-im" class="section-name selfRef">Compatibility with Early Implementations</a>
</h2>
<p id="section-appendix.a-1">
An early implementation of this specification will send the
SR-CAPABILITY-TLV as a top-level TLV in the OPEN object instead
of sending the PATH-SETUP-TYPE-CAPABILITY TLV in the OPEN object.
Implementations that wish to interoperate with such early implementations
should also send the SR-CAPABILITY-TLV as a top-level TLV in their OPEN object
and should interpret receiving this top-level TLV as though the sender had sent
a PATH-SETUP-TYPE-CAPABILITY TLV with a PST list of (0, 1) (that is, both RSVP-TE and
SR-TE PSTs are supported) with the SR-CAPABILITY-TLV as a sub-TLV.
If a PCEP speaker receives an OPEN object in which both the
SR-CAPABILITY-TLV and PATH-SETUP-TYPE-CAPABILITY TLV appear as top-level
TLVs, then it should ignore the top-level SR-CAPABILITY-TLV and process
only the PATH-SETUP-TYPE-CAPABILITY TLV.<a href="#section-appendix.a-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Acknowledgement">
<section id="section-appendix.b">
<h2 id="name-acknowledgements">
<a href="#name-acknowledgements" class="section-name selfRef">Acknowledgements</a>
</h2>
<p id="section-appendix.b-1">We thank Ina Minei, George Swallow, Marek Zavodsky, Dhruv Dhody, Ing-Wher Chen, and Tomas Janciga for the valuable comments.<a href="#section-appendix.b-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Contributors">
<section id="section-appendix.c">
<h2 id="name-contributors">
<a href="#name-contributors" class="section-name selfRef">Contributors</a>
</h2>
<p id="section-appendix.c-1">The following people contributed to this document:<a href="#section-appendix.c-1" class="pilcrow">¶</a></p>
<ul>
<li id="section-appendix.c-2.1">Lakshmi Sharma<a href="#section-appendix.c-2.1" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-2.2">Jan Medved<a href="#section-appendix.c-2.2" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-2.3">Edward Crabbe<a href="#section-appendix.c-2.3" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-2.4">Robert Raszuk<a href="#section-appendix.c-2.4" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-2.5">Victor Lopez<a href="#section-appendix.c-2.5" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="authors-addresses">
<section id="section-appendix.d">
<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">Siva Sivabalan</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems, Inc.</span></div>
<div dir="auto" class="left"><span class="street-address">2000 Innovation Drive</span></div>
<div dir="auto" class="left">
<span class="locality">Kanata</span> <span class="region">Ontario</span> <span class="postal-code">K2K 3E8</span>
</div>
<div dir="auto" class="left"><span class="country-name">Canada</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:msiva@cisco.com" class="email">msiva@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="street-address">Pegasus Parc</span></div>
<div dir="auto" class="left">
<span class="postal-code">Brabant 1831</span> <span class="locality">De kleetlaan 6a</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">Jeff Tantsura</span></div>
<div dir="auto" class="left"><span class="org">Apstra, Inc.</span></div>
<div dir="auto" class="left"><span class="street-address">333 Middlefield Rd #200</span></div>
<div dir="auto" class="left">
<span class="locality">Menlo Park</span>, <span class="region">CA</span> <span class="postal-code">94025</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:jefftant.ietf@gmail.com" class="email">jefftant.ietf@gmail.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Wim Henderickx</span></div>
<div dir="auto" class="left"><span class="org">Nokia</span></div>
<div dir="auto" class="left"><span class="street-address">Copernicuslaan 50</span></div>
<div dir="auto" class="left">
<span class="postal-code">95134</span> <span class="locality">Antwerp 2018</span>
</div>
<div dir="auto" class="left"><span class="country-name">Belgium</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:wim.henderickx@nokia.com" class="email">wim.henderickx@nokia.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Jon Hardwick</span></div>
<div dir="auto" class="left"><span class="org">Metaswitch Networks</span></div>
<div dir="auto" class="left"><span class="street-address">100 Church Street</span></div>
<div dir="auto" class="left"><span class="locality">Enfield</span></div>
<div dir="auto" class="left"><span class="country-name">United Kingdom</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:jonathan.hardwick@metaswitch.com" class="email">jonathan.hardwick@metaswitch.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>
|