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
|
<?xml version='1.0' encoding='utf-8'?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" version="3" category="std" consensus="true" docName="draft-ietf-pce-segment-routing-16" indexInclude="true" ipr="trust200902" number="8664" prepTime="2019-12-04T22:27:30" scripts="Common,Latin" sortRefs="true" submissionType="IETF" symRefs="true" tocDepth="3" tocInclude="true" updates="8408" xml:lang="en">
<link href="https://datatracker.ietf.org/doc/draft-ietf-pce-segment-routing-16" rel="prev"/>
<link href="https://dx.doi.org/10.17487/rfc8664" rel="alternate"/>
<link href="urn:issn:2070-1721" rel="alternate"/>
<front>
<title abbrev="PCEP Extensions for Segment Routing">Path Computation Element Communication Protocol (PCEP) Extensions for Segment Routing</title>
<seriesInfo name="RFC" value="8664" stream="IETF"/>
<author fullname="Siva Sivabalan" initials="S." surname="Sivabalan">
<organization showOnFrontPage="true">Cisco Systems, Inc.</organization>
<address>
<postal>
<street>2000 Innovation Drive</street>
<city>Kanata</city>
<region>Ontario</region>
<code>K2K 3E8</code>
<country>Canada</country>
</postal>
<email>msiva@cisco.com</email>
</address>
</author>
<author fullname="Clarence Filsfils" initials="C." surname="Filsfils">
<organization showOnFrontPage="true">Cisco Systems, Inc.</organization>
<address>
<postal>
<street>Pegasus Parc</street>
<city>De kleetlaan 6a</city>
<region>Diegem</region>
<code>Brabant 1831</code>
<country>Belgium</country>
</postal>
<email>cfilsfil@cisco.com</email>
</address>
</author>
<author fullname="Jeff Tantsura" initials="J." surname="Tantsura">
<organization showOnFrontPage="true">Apstra, Inc.</organization>
<address>
<postal>
<street>333 Middlefield Rd #200</street>
<city>Menlo Park</city>
<region>CA</region>
<code>94025</code>
<country>United States of America</country>
</postal>
<email>jefftant.ietf@gmail.com</email>
</address>
</author>
<author fullname="Wim Henderickx" initials="W." surname="Henderickx">
<organization showOnFrontPage="true">Nokia</organization>
<address>
<postal>
<street>Copernicuslaan 50</street>
<city>Antwerp 2018</city>
<region>CA</region>
<code>95134</code>
<country>Belgium</country>
</postal>
<email>wim.henderickx@nokia.com</email>
</address>
</author>
<author fullname="Jon Hardwick" initials="J." surname="Hardwick">
<organization showOnFrontPage="true">Metaswitch Networks</organization>
<address>
<postal>
<street>100 Church Street</street>
<city>Enfield</city>
<region>Middlesex</region>
<country>United Kingdom</country>
</postal>
<email>jonathan.hardwick@metaswitch.com</email>
</address>
</author>
<date month="12" year="2019"/>
<workgroup>PCE</workgroup>
<keyword>SR</keyword>
<keyword>Traffic-Engineering</keyword>
<keyword>PCE</keyword>
<abstract pn="section-abstract">
<t pn="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.</t>
<t pn="section-abstract-2">
This document updates RFC 8408.
</t>
</abstract>
<boilerplate>
<section anchor="status-of-memo" numbered="false" removeInRFC="false" toc="exclude" pn="section-boilerplate.1">
<name slugifiedName="name-status-of-this-memo">Status of This Memo</name>
<t pn="section-boilerplate.1-1">
This is an Internet Standards Track document.
</t>
<t pn="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.
</t>
<t pn="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
<eref target="https://www.rfc-editor.org/info/rfc8664" brackets="none"/>.
</t>
</section>
<section anchor="copyright" numbered="false" removeInRFC="false" toc="exclude" pn="section-boilerplate.2">
<name slugifiedName="name-copyright-notice">Copyright Notice</name>
<t pn="section-boilerplate.2-1">
Copyright (c) 2019 IETF Trust and the persons identified as the
document authors. All rights reserved.
</t>
<t pn="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<eref target="https://trustee.ietf.org/license-info" brackets="none"/>) 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.
</t>
</section>
</boilerplate>
<toc>
<section anchor="toc" numbered="false" removeInRFC="false" toc="exclude" pn="section-toc.1">
<name slugifiedName="name-table-of-contents">Table of Contents</name>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1">
<li pn="section-toc.1-1.1">
<t keepWithNext="true" pn="section-toc.1-1.1.1"><xref derivedContent="1" format="counter" sectionFormat="of" target="section-1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-introduction">Introduction</xref></t>
</li>
<li pn="section-toc.1-1.2">
<t keepWithNext="true" pn="section-toc.1-1.2.1"><xref derivedContent="2" format="counter" sectionFormat="of" target="section-2"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-terminology">Terminology</xref></t>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1.2.2">
<li pn="section-toc.1-1.2.2.1">
<t keepWithNext="true" pn="section-toc.1-1.2.2.1.1"><xref derivedContent="2.1" format="counter" sectionFormat="of" target="section-2.1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-requirements-language">Requirements Language</xref></t>
</li>
</ul>
</li>
<li pn="section-toc.1-1.3">
<t keepWithNext="true" pn="section-toc.1-1.3.1"><xref derivedContent="3" format="counter" sectionFormat="of" target="section-3"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-overview-of-pcep-operation-">Overview of PCEP Operation in SR Networks</xref></t>
</li>
<li pn="section-toc.1-1.4">
<t keepWithNext="true" pn="section-toc.1-1.4.1"><xref derivedContent="4" format="counter" sectionFormat="of" target="section-4"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-object-formats">Object Formats</xref></t>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1.4.2">
<li pn="section-toc.1-1.4.2.1">
<t keepWithNext="true" pn="section-toc.1-1.4.2.1.1"><xref derivedContent="4.1" format="counter" sectionFormat="of" target="section-4.1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-the-open-object">The OPEN Object</xref></t>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1.4.2.1.2">
<li pn="section-toc.1-1.4.2.1.2.1">
<t keepWithNext="true" pn="section-toc.1-1.4.2.1.2.1.1"><xref derivedContent="4.1.1" format="counter" sectionFormat="of" target="section-4.1.1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-the-path-setup-type-capabil">The Path Setup Type Capability TLV</xref></t>
</li>
<li pn="section-toc.1-1.4.2.1.2.2">
<t keepWithNext="true" pn="section-toc.1-1.4.2.1.2.2.1"><xref derivedContent="4.1.2" format="counter" sectionFormat="of" target="section-4.1.2"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-the-sr-pce-capability-sub-t">The SR PCE Capability Sub-TLV</xref></t>
</li>
</ul>
</li>
<li pn="section-toc.1-1.4.2.2">
<t keepWithNext="true" pn="section-toc.1-1.4.2.2.1"><xref derivedContent="4.2" format="counter" sectionFormat="of" target="section-4.2"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-the-rp-srp-object">The RP/SRP Object</xref></t>
</li>
<li pn="section-toc.1-1.4.2.3">
<t keepWithNext="true" pn="section-toc.1-1.4.2.3.1"><xref derivedContent="4.3" format="counter" sectionFormat="of" target="section-4.3"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-ero">ERO</xref></t>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1.4.2.3.2">
<li pn="section-toc.1-1.4.2.3.2.1">
<t keepWithNext="true" pn="section-toc.1-1.4.2.3.2.1.1"><xref derivedContent="4.3.1" format="counter" sectionFormat="of" target="section-4.3.1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-sr-ero-subobject">SR-ERO Subobject</xref></t>
</li>
<li pn="section-toc.1-1.4.2.3.2.2">
<t keepWithNext="true" pn="section-toc.1-1.4.2.3.2.2.1"><xref derivedContent="4.3.2" format="counter" sectionFormat="of" target="section-4.3.2"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-nai-associated-with-sid">NAI Associated with SID</xref></t>
</li>
</ul>
</li>
<li pn="section-toc.1-1.4.2.4">
<t keepWithNext="true" pn="section-toc.1-1.4.2.4.1"><xref derivedContent="4.4" format="counter" sectionFormat="of" target="section-4.4"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-rro">RRO</xref></t>
</li>
<li pn="section-toc.1-1.4.2.5">
<t keepWithNext="true" pn="section-toc.1-1.4.2.5.1"><xref derivedContent="4.5" format="counter" sectionFormat="of" target="section-4.5"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-metric-object">METRIC Object</xref></t>
</li>
</ul>
</li>
<li pn="section-toc.1-1.5">
<t keepWithNext="true" pn="section-toc.1-1.5.1"><xref derivedContent="5" format="counter" sectionFormat="of" target="section-5"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-procedures">Procedures</xref></t>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1.5.2">
<li pn="section-toc.1-1.5.2.1">
<t keepWithNext="true" pn="section-toc.1-1.5.2.1.1"><xref derivedContent="5.1" format="counter" sectionFormat="of" target="section-5.1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-exchanging-the-sr-pce-capab">Exchanging the SR PCE Capability</xref></t>
</li>
<li pn="section-toc.1-1.5.2.2">
<t keepWithNext="true" pn="section-toc.1-1.5.2.2.1"><xref derivedContent="5.2" format="counter" sectionFormat="of" target="section-5.2"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-ero-processing">ERO Processing</xref></t>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1.5.2.2.2">
<li pn="section-toc.1-1.5.2.2.2.1">
<t keepWithNext="true" pn="section-toc.1-1.5.2.2.2.1.1"><xref derivedContent="5.2.1" format="counter" sectionFormat="of" target="section-5.2.1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-sr-ero-validation">SR-ERO Validation</xref></t>
</li>
<li pn="section-toc.1-1.5.2.2.2.2">
<t keepWithNext="true" pn="section-toc.1-1.5.2.2.2.2.1"><xref derivedContent="5.2.2" format="counter" sectionFormat="of" target="section-5.2.2"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-interpreting-the-sr-ero">Interpreting the SR-ERO</xref></t>
</li>
</ul>
</li>
<li pn="section-toc.1-1.5.2.3">
<t keepWithNext="true" pn="section-toc.1-1.5.2.3.1"><xref derivedContent="5.3" format="counter" sectionFormat="of" target="section-5.3"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-rro-processing">RRO Processing</xref></t>
</li>
</ul>
</li>
<li pn="section-toc.1-1.6">
<t keepWithNext="true" pn="section-toc.1-1.6.1"><xref derivedContent="6" format="counter" sectionFormat="of" target="section-6"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-management-considerations">Management Considerations</xref></t>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1.6.2">
<li pn="section-toc.1-1.6.2.1">
<t keepWithNext="true" pn="section-toc.1-1.6.2.1.1"><xref derivedContent="6.1" format="counter" sectionFormat="of" target="section-6.1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-controlling-the-path-setup-">Controlling the Path Setup Type</xref></t>
</li>
<li pn="section-toc.1-1.6.2.2">
<t keepWithNext="true" pn="section-toc.1-1.6.2.2.1"><xref derivedContent="6.2" format="counter" sectionFormat="of" target="section-6.2"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-migrating-a-network-to-use-">Migrating a Network to Use PCEP Segment-Routed Paths</xref></t>
</li>
<li pn="section-toc.1-1.6.2.3">
<t keepWithNext="true" pn="section-toc.1-1.6.2.3.1"><xref derivedContent="6.3" format="counter" sectionFormat="of" target="section-6.3"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-verification-of-network-ope">Verification of Network Operation</xref></t>
</li>
<li pn="section-toc.1-1.6.2.4">
<t keepWithNext="true" pn="section-toc.1-1.6.2.4.1"><xref derivedContent="6.4" format="counter" sectionFormat="of" target="section-6.4"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-relationship-to-existing-ma">Relationship to Existing Management Models</xref></t>
</li>
</ul>
</li>
<li pn="section-toc.1-1.7">
<t keepWithNext="true" pn="section-toc.1-1.7.1"><xref derivedContent="7" format="counter" sectionFormat="of" target="section-7"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-security-considerations">Security Considerations</xref></t>
</li>
<li pn="section-toc.1-1.8">
<t keepWithNext="true" pn="section-toc.1-1.8.1"><xref derivedContent="8" format="counter" sectionFormat="of" target="section-8"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-iana-considerations">IANA Considerations</xref></t>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1.8.2">
<li pn="section-toc.1-1.8.2.1">
<t keepWithNext="true" pn="section-toc.1-1.8.2.1.1"><xref derivedContent="8.1" format="counter" sectionFormat="of" target="section-8.1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-pcep-ero-and-rro-subobjects">PCEP ERO and RRO Subobjects</xref></t>
</li>
<li pn="section-toc.1-1.8.2.2">
<t keepWithNext="true" pn="section-toc.1-1.8.2.2.1"><xref derivedContent="8.2" format="counter" sectionFormat="of" target="section-8.2"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-new-nai-type-registry">New NAI Type Registry</xref></t>
</li>
<li pn="section-toc.1-1.8.2.3">
<t keepWithNext="true" pn="section-toc.1-1.8.2.3.1"><xref derivedContent="8.3" format="counter" sectionFormat="of" target="section-8.3"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-new-sr-ero-flag-registry">New SR-ERO Flag Registry</xref></t>
</li>
<li pn="section-toc.1-1.8.2.4">
<t keepWithNext="true" pn="section-toc.1-1.8.2.4.1"><xref derivedContent="8.4" format="counter" sectionFormat="of" target="section-8.4"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-pcep-error-object">PCEP-Error Object</xref></t>
</li>
<li pn="section-toc.1-1.8.2.5">
<t keepWithNext="true" pn="section-toc.1-1.8.2.5.1"><xref derivedContent="8.5" format="counter" sectionFormat="of" target="section-8.5"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-pcep-tlv-type-indicators">PCEP TLV Type Indicators</xref></t>
</li>
<li pn="section-toc.1-1.8.2.6">
<t keepWithNext="true" pn="section-toc.1-1.8.2.6.1"><xref derivedContent="8.6" format="counter" sectionFormat="of" target="section-8.6"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-path-setup-type-capability-">PATH-SETUP-TYPE-CAPABILITY Sub-TLV Type Indicators</xref></t>
</li>
<li pn="section-toc.1-1.8.2.7">
<t keepWithNext="true" pn="section-toc.1-1.8.2.7.1"><xref derivedContent="8.7" format="counter" sectionFormat="of" target="section-8.7"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-new-path-setup-type">New Path Setup Type</xref></t>
</li>
<li pn="section-toc.1-1.8.2.8">
<t keepWithNext="true" pn="section-toc.1-1.8.2.8.1"><xref derivedContent="8.8" format="counter" sectionFormat="of" target="section-8.8"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-new-metric-type">New Metric Type</xref></t>
</li>
<li pn="section-toc.1-1.8.2.9">
<t keepWithNext="true" pn="section-toc.1-1.8.2.9.1"><xref derivedContent="8.9" format="counter" sectionFormat="of" target="section-8.9"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-sr-pce-capability-flags">SR PCE Capability Flags</xref></t>
</li>
</ul>
</li>
<li pn="section-toc.1-1.9">
<t keepWithNext="true" pn="section-toc.1-1.9.1"><xref derivedContent="9" format="counter" sectionFormat="of" target="section-9"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-references">References</xref></t>
<ul bare="true" empty="true" indent="2" spacing="compact" pn="section-toc.1-1.9.2">
<li pn="section-toc.1-1.9.2.1">
<t keepWithNext="true" pn="section-toc.1-1.9.2.1.1"><xref derivedContent="9.1" format="counter" sectionFormat="of" target="section-9.1"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-normative-references">Normative References</xref></t>
</li>
<li pn="section-toc.1-1.9.2.2">
<t keepWithNext="true" pn="section-toc.1-1.9.2.2.1"><xref derivedContent="9.2" format="counter" sectionFormat="of" target="section-9.2"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-informative-references">Informative References</xref></t>
</li>
</ul>
</li>
<li pn="section-toc.1-1.10">
<t keepWithNext="true" pn="section-toc.1-1.10.1"><xref derivedContent="Appendix A" format="default" sectionFormat="of" target="section-appendix.a"/>.  <xref derivedContent="" format="title" sectionFormat="of" target="name-compatibility-with-early-im">Compatibility with Early Implementations</xref></t>
</li>
<li pn="section-toc.1-1.11">
<t keepWithNext="true" pn="section-toc.1-1.11.1"><xref derivedContent="" format="none" sectionFormat="of" target="section-appendix.b"/><xref derivedContent="" format="title" sectionFormat="of" target="name-acknowledgements">Acknowledgements</xref></t>
</li>
<li pn="section-toc.1-1.12">
<t keepWithNext="true" pn="section-toc.1-1.12.1"><xref derivedContent="" format="none" sectionFormat="of" target="section-appendix.c"/><xref derivedContent="" format="title" sectionFormat="of" target="name-contributors">Contributors</xref></t>
</li>
<li pn="section-toc.1-1.13">
<t keepWithNext="true" pn="section-toc.1-1.13.1"><xref derivedContent="" format="none" sectionFormat="of" target="section-appendix.d"/><xref derivedContent="" format="title" sectionFormat="of" target="name-authors-addresses">Authors' Addresses</xref></t>
</li>
</ul>
</section>
</toc>
</front>
<middle>
<section numbered="true" toc="include" removeInRFC="false" pn="section-1">
<name slugifiedName="name-introduction">Introduction</name>
<t pn="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.</t>
<t pn="section-1-2"><xref target="RFC8402" format="default" sectionFormat="of" derivedContent="RFC8402"/> describes the SR architecture. The
corresponding IS-IS and OSPF extensions are specified in <xref target="RFC8667" format="default" sectionFormat="of" derivedContent="RFC8667"/> and <xref target="RFC8665" format="default" sectionFormat="of" derivedContent="RFC8665"/>, respectively.</t>
<t pn="section-1-3">The SR architecture can be implemented using either an MPLS
forwarding plane <xref target="RFC8660" format="default" sectionFormat="of" derivedContent="RFC8660"/> or an IPv6 forwarding plane
<xref target="I-D.ietf-6man-segment-routing-header" format="default" sectionFormat="of" derivedContent="IPv6-SRH"/>. 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.</t>
<t pn="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.</t>
<t pn="section-1-5"><xref target="RFC5440" format="default" sectionFormat="of" derivedContent="RFC5440"/> 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. <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/> specifies extensions
to PCEP that allow a stateful PCE to compute and recommend network
paths in compliance with <xref target="RFC4657" format="default" sectionFormat="of" derivedContent="RFC4657"/>. 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.</t>
<t pn="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 <xref target="RFC8281" format="default" sectionFormat="of" derivedContent="RFC8281"/>. This mechanism is useful in Software-Defined Networking (SDN) applications, such as on-demand engineering or bandwidth calendaring <xref target="RFC8413" format="default" sectionFormat="of" derivedContent="RFC8413"/>.</t>
<t pn="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 <xref target="RFC8281" format="default" sectionFormat="of" derivedContent="RFC8281"/> 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.</t>
<t pn="section-1-8">This specification relies on the procedures specified in <xref target="RFC8408" format="default" sectionFormat="of" derivedContent="RFC8408"/> to exchange the Segment Routing capability and to specify that the path setup type of an LSP is Segment Routing. This specification also updates <xref target="RFC8408" format="default" sectionFormat="of" derivedContent="RFC8408"/> to clarify the use of sub-TLVs in the PATH-SETUP-TYPE-CAPABILITY TLV. See <xref target="pst-cap-tlv" format="default" sectionFormat="of" derivedContent="Section 4.1.1"/> for details.</t>
<t pn="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 <xref target="I-D.ietf-spring-segment-routing-policy" format="default" sectionFormat="of" derivedContent="SR-POLICY"/>.</t>
</section>
<section numbered="true" toc="include" removeInRFC="false" pn="section-2">
<name slugifiedName="name-terminology">Terminology</name>
<t pn="section-2-1">The following terminology is used in this document:
</t>
<dl newline="false" spacing="normal" indent="8" pn="section-2-2">
<dt pn="section-2-2.1">ERO:</dt>
<dd pn="section-2-2.2"> Explicit Route Object</dd>
<dt pn="section-2-2.3">IGP:</dt>
<dd pn="section-2-2.4"> Interior Gateway Protocol</dd>
<dt pn="section-2-2.5">IS-IS:</dt>
<dd pn="section-2-2.6"> Intermediate System to Intermediate System</dd>
<dt pn="section-2-2.7">LSR:</dt>
<dd pn="section-2-2.8"> Label Switching Router</dd>
<dt pn="section-2-2.9">MSD:</dt>
<dd pn="section-2-2.10"> Base MPLS Imposition Maximum SID Depth, as defined in <xref target="RFC8491" format="default" sectionFormat="of" derivedContent="RFC8491"/></dd>
<dt pn="section-2-2.11">NAI:</dt>
<dd pn="section-2-2.12"> Node or Adjacency Identifier</dd>
<dt pn="section-2-2.13">OSPF:</dt>
<dd pn="section-2-2.14"> Open Shortest Path First</dd>
<dt pn="section-2-2.15">PCC:</dt>
<dd pn="section-2-2.16"> Path Computation Client</dd>
<dt pn="section-2-2.17">PCE:</dt>
<dd pn="section-2-2.18"> Path Computation Element</dd>
<dt pn="section-2-2.19">PCEP:</dt>
<dd pn="section-2-2.20"> Path Computation Element Communication Protocol</dd>
<dt pn="section-2-2.21">RRO:</dt>
<dd pn="section-2-2.22"> Record Route Object</dd>
<dt pn="section-2-2.23">SID:</dt>
<dd pn="section-2-2.24"> Segment Identifier</dd>
<dt pn="section-2-2.25">SR:</dt>
<dd pn="section-2-2.26"> Segment Routing</dd>
<dt pn="section-2-2.27">SR-DB:</dt>
<dd pn="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</dd>
<dt pn="section-2-2.29">SR-TE:</dt>
<dd pn="section-2-2.30"> Segment Routing Traffic Engineering</dd>
<dt pn="section-2-2.31">SRGB:</dt>
<dd pn="section-2-2.32"> Segment Routing Global Block</dd>
<dt pn="section-2-2.33">SRLB:</dt>
<dd pn="section-2-2.34"> Segment Routing Local Block</dd>
</dl>
<section numbered="true" toc="include" removeInRFC="false" pn="section-2.1">
<name slugifiedName="name-requirements-language">Requirements Language</name>
<t pn="section-2.1-1">The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCPÂ 14 <xref target="RFC2119" format="default" sectionFormat="of" derivedContent="RFC2119"/> <xref target="RFC8174" format="default" sectionFormat="of" derivedContent="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.
</t>
</section>
</section>
<section anchor="Operation-Overview" numbered="true" toc="include" removeInRFC="false" pn="section-3">
<name slugifiedName="name-overview-of-pcep-operation-">Overview of PCEP Operation in SR Networks</name>
<t pn="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.
</t>
<t pn="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:
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-3-3">
<li pn="section-3-3.1">An ordered set of IP addresses representing network nodes/links.</li>
<li pn="section-3-3.2">An ordered set of SIDs, with or without the corresponding IP addresses.</li>
<li pn="section-3-3.3">An ordered set of MPLS labels, with or without corresponding IP addresses.</li>
</ul>
<t pn="section-3-4">
The PCC converts these into an MPLS label stack and next hop, as described in <xref target="SR-ERO-INTERPRET" format="default" sectionFormat="of" derivedContent="Section 5.2.2"/>.
</t>
<t pn="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 <xref target="RFC5440" format="default" sectionFormat="of" derivedContent="RFC5440"/>, the Path Computation LSP Initiate Request (PCInitiate) message defined in <xref target="RFC8281" format="default" sectionFormat="of" derivedContent="RFC8281"/>, and the Path Computation Update Request (PCUpd) and Path Computation State Report (PCRpt) messages for LSPs defined in <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/>.</t>
<t pn="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.</t>
<t pn="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 <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/>. 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 <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/>.</t>
<t pn="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.</t>
<t pn="section-3-9">A PCC <bcp14>MAY</bcp14> include a Record Route Object (RRO) containing the recorded LSP in PCReq and PCRpt messages as specified in <xref target="RFC5440" format="default" sectionFormat="of" derivedContent="RFC5440"/> and <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/>, 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.</t>
<t pn="section-3-10">In summary, this document:
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-3-11">
<li pn="section-3-11.1">Defines a new ERO subobject, a new RRO subobject, and new PCEP error codes.</li>
<li pn="section-3-11.2">Specifies how two PCEP speakers can establish a PCEP session that can carry information about SR-TE paths.</li>
<li pn="section-3-11.3">Specifies processing rules for the ERO subobject.</li>
<li pn="section-3-11.4">Defines a new path setup type to be used in the PATH-SETUP-TYPE and PATH-SETUP-TYPE-CAPABILITY TLVs <xref target="RFC8408" format="default" sectionFormat="of" derivedContent="RFC8408"/>.</li>
<li pn="section-3-11.5">Defines a new sub-TLV for the PATH-SETUP-TYPE-CAPABILITY TLV.</li>
</ul>
<t pn="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 <xref target="RFC5440" format="default" sectionFormat="of" derivedContent="RFC5440"/>, <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/>, <xref target="RFC8281" format="default" sectionFormat="of" derivedContent="RFC8281"/>, and any other applicable PCEP specifications.</t>
</section>
<section anchor="object-formats" numbered="true" toc="include" removeInRFC="false" pn="section-4">
<name slugifiedName="name-object-formats">Object Formats</name>
<section anchor="open-object-fmt" numbered="true" toc="include" removeInRFC="false" pn="section-4.1">
<name slugifiedName="name-the-open-object">The OPEN Object</name>
<section anchor="pst-cap-tlv" numbered="true" toc="include" removeInRFC="false" pn="section-4.1.1">
<name slugifiedName="name-the-path-setup-type-capabil">The Path Setup Type Capability TLV</name>
<t pn="section-4.1.1-1"><xref target="RFC8408" format="default" sectionFormat="of" derivedContent="RFC8408"/> 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.</t>
<t pn="section-4.1.1-2">This specification updates <xref target="RFC8408" format="default" sectionFormat="of" derivedContent="RFC8408"/> 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 <xref target="IANA-subTLV-Type-Indicators" format="default" sectionFormat="of" derivedContent="Section 8.6"/>). A PCEP speaker <bcp14>MUST NOT</bcp14>
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 <bcp14>MUST</bcp14> ignore the
sub-TLV.</t>
</section>
<section anchor="cap-negotiation" numbered="true" toc="include" removeInRFC="false" pn="section-4.1.2">
<name slugifiedName="name-the-sr-pce-capability-sub-t">The SR PCE Capability Sub-TLV</name>
<t pn="section-4.1.2-1">This document defines a new Path Setup Type (PST) for SR, as follows:
</t>
<ul spacing="normal" empty="true" bare="false" pn="section-4.1.2-2">
<li pn="section-4.1.2-2.1">
<dl newline="false" spacing="normal" pn="section-4.1.2-2.1.1">
<dt pn="section-4.1.2-2.1.1.1">PST = 1:</dt>
<dd pn="section-4.1.2-2.1.1.2">Traffic-engineering path is set up using Segment Routing.</dd>
</dl>
</li>
</ul>
<t pn="section-4.1.2-3">A PCEP speaker <bcp14>SHOULD</bcp14> 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.</t>
<t pn="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 <bcp14>MUST</bcp14> also include the SR-PCE-CAPABILITY sub-TLV inside the PATH-SETUP-TYPE-CAPABILITY TLV.</t>
<t pn="section-4.1.2-5">The format of the SR-PCE-CAPABILITY sub-TLV is shown in the following figure:</t>
<figure anchor="Capability-TLV-Fmt" align="left" suppress-title="false" pn="figure-1">
<name slugifiedName="name-sr-pce-capability-sub-tlv-f">SR-PCE-CAPABILITY Sub-TLV Format</name>
<artwork align="center" name="" type="" alt="" pn="section-4.1.2-6.1">
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 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</artwork>
</figure>
<t pn="section-4.1.2-7">The codepoint for the TLV type is 26. The TLV length is 4 octets.</t>
<t pn="section-4.1.2-8">The 32-bit value is formatted as follows.
</t>
<dl newline="false" spacing="normal" pn="section-4.1.2-9">
<dt pn="section-4.1.2-9.1">Reserved:</dt>
<dd pn="section-4.1.2-9.2">
<bcp14>MUST</bcp14> be set to zero by the sender and <bcp14>MUST</bcp14> be ignored by the receiver.</dd>
<dt pn="section-4.1.2-9.3">Flags:</dt>
<dd pn="section-4.1.2-9.4">
<t pn="section-4.1.2-9.4.1"> This document defines the following flag bits. The other bits
<bcp14>MUST</bcp14> be set to zero by the sender and <bcp14>MUST</bcp14> be ignored by the receiver.
</t>
<ul spacing="normal" empty="true" bare="false" pn="section-4.1.2-9.4.2">
<li pn="section-4.1.2-9.4.2.1">
<dl indent="5" newline="false" spacing="normal" pn="section-4.1.2-9.4.2.1.1">
<dt pn="section-4.1.2-9.4.2.1.1.1">N:</dt>
<dd pn="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.</dd>
<dt pn="section-4.1.2-9.4.2.1.1.3">X:</dt>
<dd pn="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.</dd>
</dl>
</li>
</ul>
</dd>
<dt pn="section-4.1.2-9.5">Maximum SID Depth (MSD):</dt>
<dd pn="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. <xref target="SR-CAP-PROCESS" format="default" sectionFormat="of" derivedContent="Section 5.1"/> explains the relationship between this field and the X-Flag.</dd>
</dl>
</section>
</section>
<section anchor="rp-object-fmt" numbered="true" toc="include" removeInRFC="false" pn="section-4.2">
<name slugifiedName="name-the-rp-srp-object">The RP/SRP Object</name>
<t pn="section-4.2-1">To set up an SR-TE LSP using SR, the Request Parameter (RP) or Stateful PCE Request Parameter (SRP) object <bcp14>MUST</bcp14> include the PATH-SETUP-TYPE TLV, specified in <xref target="RFC8408" format="default" sectionFormat="of" derivedContent="RFC8408"/>, with the PST set to 1 (and path setup using SR-TE).</t>
<t pn="section-4.2-2">The LSP-IDENTIFIERS TLV <bcp14>MAY</bcp14> be present for the above PST type.</t>
</section>
<section anchor="SR-ERO" numbered="true" toc="include" removeInRFC="false" pn="section-4.3">
<name slugifiedName="name-ero">ERO</name>
<t pn="section-4.3-1">An SR-TE path consists of one or more SIDs where each SID <bcp14>MAY</bcp14> 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.</t>
<t pn="section-4.3-2">The ERO specified in <xref target="RFC5440" format="default" sectionFormat="of" derivedContent="RFC5440"/> 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 <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> be present.</t>
<t pn="section-4.3-3">When building the MPLS label stack from ERO, a PCC <bcp14>MUST</bcp14> 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.</t>
<section anchor="SR-ERO-SUB" numbered="true" toc="include" removeInRFC="false" pn="section-4.3.1">
<name slugifiedName="name-sr-ero-subobject">SR-ERO Subobject</name>
<t pn="section-4.3.1-1">An SR-ERO subobject is formatted as shown in the following diagram.</t>
<figure anchor="SR-ERO-SUBOBJECT" align="left" suppress-title="false" pn="figure-2">
<name slugifiedName="name-sr-ero-subobject-format">SR-ERO Subobject Format</name>
<artwork name="" type="" align="left" alt="" pn="section-4.3.1-2.1">
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) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</artwork>
</figure>
<t pn="section-4.3.1-3">The fields in the SR-ERO subobject are as follows:
</t>
<dl newline="false" spacing="normal" pn="section-4.3.1-4">
<dt pn="section-4.3.1-4.1">The L-Flag:</dt>
<dd pn="section-4.3.1-4.2"> Indicates whether the subobject represents a loose hop in the LSP <xref target="RFC3209" format="default" sectionFormat="of" derivedContent="RFC3209"/>. If this flag is set to zero, a PCC <bcp14>MUST NOT</bcp14> overwrite the SID value present in the SR-ERO subobject. Otherwise, a PCC <bcp14>MAY</bcp14> expand or replace one or more SID values in the received SR-ERO based on its local policy.</dd>
<dt pn="section-4.3.1-4.3">Type:</dt>
<dd pn="section-4.3.1-4.4"> Set to 36. </dd>
<dt pn="section-4.3.1-4.5">Length:</dt>
<dd pn="section-4.3.1-4.6"> Contains the total length of the subobject in octets. The Length <bcp14>MUST</bcp14> be at least 8 and <bcp14>MUST</bcp14> be a multiple of 4. An SR-ERO subobject <bcp14>MUST</bcp14> contain at least one SID or NAI. The flags described below indicate whether the SID or NAI fields are absent.</dd>
<dt pn="section-4.3.1-4.7">NAI Type (NT):</dt>
<dd pn="section-4.3.1-4.8">
<t pn="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
<bcp14>MUST</bcp14> be ignored by the receiver. This
document describes the following NT values:</t>
<dl newline="false" spacing="normal" pn="section-4.3.1-4.8.2">
<dt pn="section-4.3.1-4.8.2.1">NT=0</dt>
<dd pn="section-4.3.1-4.8.2.2">The NAI is absent.</dd>
<dt pn="section-4.3.1-4.8.2.3">NT=1</dt>
<dd pn="section-4.3.1-4.8.2.4">The NAI is an IPv4 node ID.</dd>
<dt pn="section-4.3.1-4.8.2.5">NT=2</dt>
<dd pn="section-4.3.1-4.8.2.6">The NAI is an IPv6 node ID.</dd>
<dt pn="section-4.3.1-4.8.2.7">NT=3</dt>
<dd pn="section-4.3.1-4.8.2.8">The NAI is an IPv4 adjacency.</dd>
<dt pn="section-4.3.1-4.8.2.9">NT=4</dt>
<dd pn="section-4.3.1-4.8.2.10">The NAI is an IPv6 adjacency with global IPv6
addresses.</dd>
<dt pn="section-4.3.1-4.8.2.11">NT=5</dt>
<dd pn="section-4.3.1-4.8.2.12">The NAI is an unnumbered adjacency with IPv4 node
IDs.</dd>
<dt pn="section-4.3.1-4.8.2.13">NT=6</dt>
<dd pn="section-4.3.1-4.8.2.14">The NAI is an IPv6 adjacency with link-local IPv6
addresses.</dd>
</dl>
</dd>
<dt pn="section-4.3.1-4.9">Flags:</dt>
<dd pn="section-4.3.1-4.10">
<t pn="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 <bcp14>MUST</bcp14> be set to zero by the sender and <bcp14>MUST</bcp14> be ignored by the receiver.
</t>
<dl newline="false" spacing="normal" indent="5" pn="section-4.3.1-4.10.2">
<dt pn="section-4.3.1-4.10.2.1">M:</dt>
<dd pn="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 <xref target="RFC3032" format="default" sectionFormat="of" derivedContent="RFC3032"/>. Otherwise, the SID value is an administratively configured value that represents an index into an MPLS label space (either SRGB or SRLB) per <xref target="RFC8402" format="default" sectionFormat="of" derivedContent="RFC8402"/>.</dd>
<dt pn="section-4.3.1-4.10.2.3">C:</dt>
<dd pn="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 <bcp14>MAY</bcp14> 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 <bcp14>MUST</bcp14> be ignored by the PCC. The PCC <bcp14>MUST</bcp14> set these fields according to its local policy and MPLS forwarding rules. If the M bit is set to zero, then the C bit <bcp14>MUST</bcp14> be set to zero.</dd>
<dt pn="section-4.3.1-4.10.2.5">S:</dt>
<dd pn="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, <bcp14>MUST</bcp14> be present in the subobject. If the S bit is set to 1, then the M and C bits <bcp14>MUST</bcp14> be set to zero.</dd>
<dt pn="section-4.3.1-4.10.2.7">F:</dt>
<dd pn="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 <bcp14>MUST</bcp14> be set to 1 if NT=0; otherwise, it <bcp14>MUST</bcp14> be set to zero. The S and F bits <bcp14>MUST NOT</bcp14> both be set to 1.</dd>
</dl>
</dd>
<dt pn="section-4.3.1-4.11">SID:</dt>
<dd pn="section-4.3.1-4.12">
<t pn="section-4.3.1-4.12.1"> The Segment Identifier. Depending on the M bit, it contains either:
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-4.3.1-4.12.2">
<li pn="section-4.3.1-4.12.2.1">A 4-octet index defining the offset into an MPLS label space per <xref target="RFC8402" format="default" sectionFormat="of" derivedContent="RFC8402"/> or</li>
<li pn="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 <xref target="RFC3032" format="default" sectionFormat="of" derivedContent="RFC3032"/>.</li>
</ul>
</dd>
<dt pn="section-4.3.1-4.13">NAI:</dt>
<dd pn="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.</dd>
</dl>
<t pn="section-4.3.1-5">
At least one SID and NAI <bcp14>MUST</bcp14> be included in the SR-ERO subobject, and both <bcp14>MAY</bcp14> be included.
</t>
</section>
<section anchor="SR-ERO-NODAL-32" numbered="true" toc="include" removeInRFC="false" pn="section-4.3.2">
<name slugifiedName="name-nai-associated-with-sid">NAI Associated with SID</name>
<t pn="section-4.3.2-1">This document defines the following NAIs:
</t>
<dl newline="false" spacing="normal" pn="section-4.3.2-2">
<dt pn="section-4.3.2-2.1">IPv4 Node ID:</dt>
<dd pn="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.</dd>
<dt pn="section-4.3.2-2.3">IPv6 Node ID:</dt>
<dd pn="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.</dd>
<dt pn="section-4.3.2-2.5">IPv4 Adjacency:</dt>
<dd pn="section-4.3.2-2.6">
<t pn="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:
</t>
<figure anchor="ADJ-SID-ERO-SUBOBJECT-32" align="left" suppress-title="false" pn="figure-3">
<name slugifiedName="name-nai-for-ipv4-adjacency">NAI for IPv4 Adjacency</name>
<artwork name="" type="" align="left" alt="" pn="section-4.3.2-2.6.2.1">
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 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</artwork>
</figure>
</dd>
<dt pn="section-4.3.2-2.7">IPv6 Global Adjacency:</dt>
<dd pn="section-4.3.2-2.8">
<t pn="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:
</t>
<figure anchor="ADJ-SID-ERO-SUBOBJECT-128" align="left" suppress-title="false" pn="figure-4">
<name slugifiedName="name-nai-for-ipv6-global-adjacen">NAI for IPv6 Global Adjacency</name>
<artwork name="" type="" align="left" alt="" pn="section-4.3.2-2.8.2.1">
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) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</artwork>
</figure>
</dd>
<dt pn="section-4.3.2-2.9">Unnumbered Adjacency with IPv4 NodeIDs:</dt>
<dd pn="section-4.3.2-2.10">
<t pn="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:
</t>
<figure anchor="ADJ-SID-ERO-UNNUM-32" align="left" suppress-title="false" pn="figure-5">
<name slugifiedName="name-nai-for-unnumbered-adjacenc">NAI for Unnumbered Adjacency with IPv4 Node IDs</name>
<artwork name="" type="" align="left" alt="" pn="section-4.3.2-2.10.2.1">
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 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</artwork>
</figure>
</dd>
<dt pn="section-4.3.2-2.11">IPv6 Link-Local Adjacency:</dt>
<dd pn="section-4.3.2-2.12">
<t pn="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:
</t>
<figure anchor="ADJ-SID-ERO-LINKLOCAL-40" align="left" suppress-title="false" pn="figure-6">
<name slugifiedName="name-nai-for-ipv6-link-local-adj">NAI for IPv6 Link-Local Adjacency</name>
<artwork name="" type="" align="left" alt="" pn="section-4.3.2-2.12.2.1">
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 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</artwork>
</figure>
</dd>
</dl>
</section>
</section>
<section anchor="SR-RRO" numbered="true" toc="include" removeInRFC="false" pn="section-4.4">
<name slugifiedName="name-rro">RRO</name>
<t pn="section-4.4-1">A PCC reports an SR-TE LSP to a PCE by sending a PCRpt message, per <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/>. 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 <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/> with respect to the RRO apply equally to this specification without change.</t>
<t pn="section-4.4-2">An RRO contains one or more subobjects called "SR-RRO subobjects", whose format is shown below:</t>
<figure anchor="SR-RRO-SUBOBJECT" align="left" suppress-title="false" pn="figure-7">
<name slugifiedName="name-sr-rro-subobject-format">SR-RRO Subobject Format</name>
<artwork name="" type="" align="left" alt="" pn="section-4.4-3.1">
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) //
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</artwork>
</figure>
<t pn="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.</t>
<t pn="section-4.4-5">A PCC <bcp14>MUST</bcp14> 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.</t>
</section>
<section anchor="SR-METRIC" numbered="true" toc="include" removeInRFC="false" pn="section-4.5">
<name slugifiedName="name-metric-object">METRIC Object</name>
<t pn="section-4.5-1">A PCC <bcp14>MAY</bcp14> 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 <xref target="RFC5440" format="default" sectionFormat="of" derivedContent="RFC5440"/>. This document defines a new type for the METRIC object to be used for this purpose, as follows:
</t>
<ul spacing="normal" empty="true" bare="false" pn="section-4.5-2">
<li pn="section-4.5-2.1">
<dl newline="false" spacing="normal" pn="section-4.5-2.1.1">
<dt pn="section-4.5-2.1.1.1">T = 11:</dt>
<dd pn="section-4.5-2.1.1.2">Maximum SID Depth of the requested path.</dd>
</dl>
</li>
</ul>
<t pn="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 <bcp14>MUST NOT</bcp14> 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 <bcp14>MUST</bcp14> set the B bit to 1. If the PCC set the X-Flag in its SR-PCE-CAPABILITY TLV, then it <bcp14>MAY</bcp14> set the B bit to 1 or zero.</t>
<t pn="section-4.5-4">If a PCEP session is established with a non-zero default MSD value, then the
PCC <bcp14>MUST NOT</bcp14> 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 <bcp14>MUST</bcp14> 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").
</t>
</section>
</section>
<section anchor="procedures" numbered="true" toc="include" removeInRFC="false" pn="section-5">
<name slugifiedName="name-procedures">Procedures</name>
<section anchor="SR-CAP-PROCESS" numbered="true" toc="include" removeInRFC="false" pn="section-5.1">
<name slugifiedName="name-exchanging-the-sr-pce-capab">Exchanging the SR PCE Capability</name>
<t pn="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.</t>
<t pn="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 <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 12 ("Missing PCE-SR-CAPABILITY sub-TLV") and <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> ignore the SR-PCE-CAPABILITY sub-TLV.</t>
<t pn="section-5.1-3">If a PCC sets the N-Flag to 1, then the PCE <bcp14>MAY</bcp14> send an SR-ERO subobject containing an NAI and no SID (see <xref target="SR-ERO-PROCESS" format="default" sectionFormat="of" derivedContent="Section 5.2"/>). Otherwise, the PCE <bcp14>MUST NOT</bcp14> send an SR-ERO subobject containing an NAI and no SID.</t>
<t pn="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 <bcp14>MUST</bcp14> be set to zero. If a PCE receives an SR-PCE-CAPABILITY sub-TLV with the X-Flag set to 1, then it <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> then close the PCEP session.</t>
<t pn="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 <bcp14>SHOULD</bcp14> interpret this to mean that all network interfaces on the PCC have the given MSD. However, the PCE <bcp14>MAY</bcp14> also learn a per-node MSD and a per-interface MSD from the routing protocols, as specified in <xref target="RFC8491" format="default" sectionFormat="of" derivedContent="RFC8491"/>, <xref target="RFC8476" format="default" sectionFormat="of" derivedContent="RFC8476"/>, and <xref target="I-D.ietf-idr-bgp-ls-segment-routing-msd" format="default" sectionFormat="of" derivedContent="MSD-BGP"/>. If the PCE learns the per-node MSD of a PCC from a routing protocol, then it <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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.</t>
<t pn="section-5.1-6">Once an SR-capable PCEP session is established with a non-zero MSD value, the corresponding PCE <bcp14>MUST NOT</bcp14> send SR-TE paths with a number of SIDs exceeding that MSD value. If a PCC needs to modify the MSD value, it <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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 <bcp14>MAY</bcp14> 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 <xref target="SR-METRIC" format="default" sectionFormat="of" derivedContent="Section 4.5"/>.</t>
<t pn="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 <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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.</t>
</section>
<section anchor="SR-ERO-PROCESS" numbered="true" toc="include" removeInRFC="false" pn="section-5.2">
<name slugifiedName="name-ero-processing">ERO Processing</name>
<section anchor="SR-ERO-VALIDATION" numbered="true" toc="include" removeInRFC="false" pn="section-5.2.1">
<name slugifiedName="name-sr-ero-validation">SR-ERO Validation</name>
<t pn="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 <xref target="RFC5440" format="default" sectionFormat="of" derivedContent="RFC5440"/>.</t>
<t pn="section-5.2.1-2">On receiving an SR-ERO, a PCC <bcp14>MUST</bcp14> validate that the Length field, S bit, F bit, and NT field are consistent, as follows.
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-5.2.1-3">
<li pn="section-5.2.1-3.1">If NT=0, the F bit <bcp14>MUST</bcp14> be 1, the S bit <bcp14>MUST</bcp14> be zero, and the Length <bcp14>MUST</bcp14> be 8.</li>
<li pn="section-5.2.1-3.2">If NT=1, the F bit <bcp14>MUST</bcp14> be zero. If the S bit is 1, the Length <bcp14>MUST</bcp14> be 8; otherwise, the Length <bcp14>MUST</bcp14> be 12.</li>
<li pn="section-5.2.1-3.3">If NT=2, the F bit <bcp14>MUST</bcp14> be zero. If the S bit is 1, the Length <bcp14>MUST</bcp14> be 20; otherwise, the Length <bcp14>MUST</bcp14> be 24.</li>
<li pn="section-5.2.1-3.4">If NT=3, the F bit <bcp14>MUST</bcp14> be zero. If the S bit is 1, the Length <bcp14>MUST</bcp14> be 12; otherwise, the Length <bcp14>MUST</bcp14> be 16.</li>
<li pn="section-5.2.1-3.5">If NT=4, the F bit <bcp14>MUST</bcp14> be zero. If the S bit is 1, the Length <bcp14>MUST</bcp14> be 36; otherwise, the Length <bcp14>MUST</bcp14> be 40.</li>
<li pn="section-5.2.1-3.6">If NT=5, the F bit <bcp14>MUST</bcp14> be zero. If the S bit is 1, the Length <bcp14>MUST</bcp14> be 20; otherwise, the Length <bcp14>MUST</bcp14> be 24.</li>
<li pn="section-5.2.1-3.7">If NT=6, the F bit <bcp14>MUST</bcp14> be zero. If the S bit is 1, the Length <bcp14>MUST</bcp14> be 44; otherwise, the Length <bcp14>MUST</bcp14> be 48.</li>
</ul>
<t pn="section-5.2.1-4">If a PCC finds that the NT field, Length field, S bit, and F bit are not consistent, it <bcp14>MUST</bcp14> consider the entire ERO invalid and <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 11 ("Malformed object").</t>
<t pn="section-5.2.1-5">If a PCC does not recognize or support the value in the NT field,
it <bcp14>MUST</bcp14> consider the entire ERO invalid and
<bcp14>MUST</bcp14> 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").</t>
<t pn="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 <bcp14>MUST</bcp14> 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").</t>
<t pn="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 <bcp14>MUST</bcp14> consider the entire ERO invalid and send a PCErr message with Error-Type = 4 ("Not supported object") and Error-value = 4 ("Unsupported parameter").</t>
<t pn="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 <bcp14>MUST</bcp14> 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").</t>
<t pn="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 <bcp14>MAY</bcp14> choose not to accept a label provided by the PCE, based on its local policy. The PCC <bcp14>MUST NOT</bcp14> accept MPLS label value 3 (Implicit NULL), but it <bcp14>MAY</bcp14> accept other special-purpose MPLS label values. If the PCC decides not to accept an MPLS label value, it <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 2 ("Bad label value").</t>
<t pn="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 <bcp14>MAY</bcp14> overwrite those fields with values chosen according to its own policy. If the PCC does not overwrite them, it <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 4 ("Bad label format").</t>
<t pn="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 <bcp14>MUST</bcp14> consider the entire ERO invalid and <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 11 ("Malformed object").</t>
<t pn="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 <bcp14>MUST NOT</bcp14> be set. If the L-Flag is set for an Adj-SID, then the PCC <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 11 ("Malformed object").</t>
<t pn="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 <bcp14>MUST</bcp14> 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").</t>
<t pn="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 <bcp14>MUST</bcp14> 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").</t>
<t pn="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 <bcp14>MUST NOT</bcp14> update the LSP.</t>
</section>
<section anchor="SR-ERO-INTERPRET" numbered="true" toc="include" removeInRFC="false" pn="section-5.2.2">
<name slugifiedName="name-interpreting-the-sr-ero">Interpreting the SR-ERO</name>
<t pn="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.
</t>
<t pn="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.
</t>
<t pn="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.
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-5.2.2-4">
<li pn="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
<xref target="RFC8660" format="default" sectionFormat="of" derivedContent="RFC8660"/>.
</li>
<li pn="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 <xref target="SR-ERO-INTERPRET-ERROR" format="default" sectionFormat="of" derivedContent="Section 5.2.2.1"/>.
</li>
<li pn="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).
</li>
</ul>
<t pn="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.
</t>
<section anchor="SR-ERO-INTERPRET-ERROR" numbered="true" toc="exclude" removeInRFC="false" pn="section-5.2.2.1">
<name slugifiedName="name-handling-errors-during-sr-e">Handling Errors During SR-ERO Conversion</name>
<t pn="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.
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-5.2.2.1-2">
<li pn="section-5.2.2.1-2.1">If the PCC cannot find a SID index in the SR-DB, it <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 14 ("Unknown SID").</li>
<li pn="section-5.2.2.1-2.2">If the PCC cannot find an NAI in the SR-DB, it <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 15 ("NAI cannot be resolved to a SID").</li>
<li pn="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 <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 16 ("Could not find SRGB").</li>
<li pn="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 <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 17 ("SID index exceeds SRGB size").</li>
<li pn="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 <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 18 ("Could not find SRLB").</li>
<li pn="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 <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 19 ("SID index exceeds SRLB size").</li>
<li pn="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 <bcp14>MUST</bcp14> send a PCErr message with Error-Type = 10 ("Reception of an invalid object") and Error-value = 3 ("Unsupported number of SR-ERO subobjects").</li>
</ul>
<t pn="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 <bcp14>MUST NOT</bcp14> update the LSP.</t>
</section>
</section>
</section>
<section anchor="SR-RRO-PROCESS" numbered="true" toc="include" removeInRFC="false" pn="section-5.3">
<name slugifiedName="name-rro-processing">RRO Processing</name>
<t pn="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.</t>
<t pn="section-5.3-2">If a PCEP speaker receives an SR-RRO subobject in which both SID and NAI are absent, it <bcp14>MUST</bcp14> 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").</t>
<t pn="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 <bcp14>MUST</bcp14> 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").</t>
<t pn="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 <bcp14>MUST</bcp14> 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").</t>
</section>
</section>
<section anchor="Management" numbered="true" toc="include" removeInRFC="false" pn="section-6">
<name slugifiedName="name-management-considerations">Management Considerations</name>
<t pn="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.</t>
<section anchor="control" numbered="true" toc="include" removeInRFC="false" pn="section-6.1">
<name slugifiedName="name-controlling-the-path-setup-">Controlling the Path Setup Type</name>
<t pn="section-6.1-1">The following factors control which path setup type is used for
a given LSP.
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-6.1-2">
<li pn="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.</li>
<li pn="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 <bcp14>MAY</bcp14> choose
to accept the proposed path setup type or to reject the PCInitiate
request, based on its local policy.</li>
<li pn="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 <bcp14>MAY</bcp14> 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.</li>
</ul>
<t pn="section-6.1-3">The operator can influence the path setup type as follows.
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-6.1-4">
<li pn="section-6.1-4.1"> Implementations <bcp14>MUST</bcp14> allow the operator to enable and disable
the Segment Routing path setup type on a PCEP-speaking device.
Implementations <bcp14>MAY</bcp14> also allow the operator to enable and disable the RSVP-TE
path setup type.</li>
<li pn="section-6.1-4.2"> PCE implementations <bcp14>MUST</bcp14> allow the operator to specify that an LSP
should be instantiated using Segment Routing or RSVP-TE as the proposed path
setup type. </li>
<li pn="section-6.1-4.3"> PCE implementations <bcp14>MAY</bcp14> 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.</li>
<li pn="section-6.1-4.4"> PCC implementations <bcp14>MUST</bcp14> allow the operator to specify that a path
requested for an LSP nominates Segment Routing or RSVP-TE as the
path setup type.</li>
<li pn="section-6.1-4.5"> PCC implementations <bcp14>MAY</bcp14> 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.</li>
<li pn="section-6.1-4.6"> PCC implementations <bcp14>SHOULD</bcp14> allow the operator to configure a PCC to
refuse to set up an LSP using an undesired path setup type.</li>
</ul>
</section>
<section anchor="migrating" numbered="true" toc="include" removeInRFC="false" pn="section-6.2">
<name slugifiedName="name-migrating-a-network-to-use-">Migrating a Network to Use PCEP Segment-Routed Paths</name>
<t pn="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.
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-6.2-2">
<li pn="section-6.2-2.1"> The operator enables the Segment Routing PST on the PCE servers.</li>
<li pn="section-6.2-2.2"> The operator enables the Segment Routing PST on the PCCs.</li>
<li pn="section-6.2-2.3"> The operator resets each PCEP session. The PCEP sessions come
back up with Segment Routing enabled.</li>
<li pn="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.</li>
</ul>
<t pn="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.</t>
<t pn="section-6.2-4">An implementation <bcp14>SHOULD</bcp14> allow the operator to manually trigger a PCEP
session to be reset.</t>
<t pn="section-6.2-5">An implementation <bcp14>MAY</bcp14> 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 <bcp14>SHOULD</bcp14> allow
the operator to override this behavior and wait instead for a manual reset.</t>
<t pn="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.</t>
<t pn="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.</t>
</section>
<section anchor="verification" numbered="true" toc="include" removeInRFC="false" pn="section-6.3">
<name slugifiedName="name-verification-of-network-ope">Verification of Network Operation</name>
<t pn="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.
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-6.3-2">
<li pn="section-6.3-2.1"> An implementation <bcp14>SHOULD</bcp14> 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 <bcp14>SHOULD</bcp14> 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.</li>
<li pn="section-6.3-2.2"> An implementation <bcp14>SHOULD</bcp14> allow the operator to view
whether the peer sent the Segment Routing PST capability. If the peer
is a PCC, then the implementation <bcp14>SHOULD</bcp14> also allow the operator to view
the values of the L-Flag and N-Flag and MSD fields that the peer sent.</li>
<li pn="section-6.3-2.3"> An implementation <bcp14>SHOULD</bcp14> allow the operator to view
whether the Segment Routing PST is enabled on the PCEP session.</li>
<li pn="section-6.3-2.4"> If one PCEP speaker advertises the Segment Routing PST capability, but the other
does not, then the implementation <bcp14>SHOULD</bcp14> create a log to inform the
operator of the capability mismatch.</li>
<li pn="section-6.3-2.5"> An implementation <bcp14>SHOULD</bcp14> allow the operator to view the PST that was
proposed, or requested, for an LSP and the PST that was actually used.</li>
<li pn="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 <bcp14>SHOULD</bcp14>
create a log to inform the operator that the expected PST has not been used.
The log <bcp14>SHOULD</bcp14> give the reason for this choice (local policy,
equipment capability, etc.).</li>
<li pn="section-6.3-2.7"> If a PCEP speaker rejects a Segment Routing path, then it <bcp14>SHOULD</bcp14> create a log
to inform the operator, giving the reason for the decision (local policy,
MSD exceeded, etc.).</li>
</ul>
</section>
<section anchor="models" numbered="true" toc="include" removeInRFC="false" pn="section-6.4">
<name slugifiedName="name-relationship-to-existing-ma">Relationship to Existing Management Models</name>
<t pn="section-6.4-1">The PCEP YANG module is defined in <xref target="I-D.ietf-pce-pcep-yang" format="default" sectionFormat="of" derivedContent="PCE-PCEP-YANG"/>. In the future, this
YANG module should be extended or augmented to provide the following
additional information relating to Segment Routing:
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-6.4-2">
<li pn="section-6.4-2.1"> The advertised PST capabilities and MSD per PCEP session.</li>
<li pn="section-6.4-2.2"> The PST configured for, and used by, each LSP.</li>
</ul>
<t pn="section-6.4-3">The PCEP MIB <xref target="RFC7420" format="default" sectionFormat="of" derivedContent="RFC7420"/> could also be updated to include this
information.</t>
</section>
</section>
<section anchor="Security" numbered="true" toc="include" removeInRFC="false" pn="section-7">
<name slugifiedName="name-security-considerations">Security Considerations</name>
<t pn="section-7-1">The security considerations described in <xref target="RFC5440" format="default" sectionFormat="of" derivedContent="RFC5440"/>, <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/>, <xref target="RFC8281" format="default" sectionFormat="of" derivedContent="RFC8281"/>, and <xref target="RFC8408" format="default" sectionFormat="of" derivedContent="RFC8408"/> are
applicable to this specification. No additional security measures are required.</t>
<t pn="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 <xref target="RFC5440" format="default" sectionFormat="of" derivedContent="RFC5440"/>, <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/>, and <xref target="RFC8281" format="default" sectionFormat="of" derivedContent="RFC8281"/> 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.</t>
<t pn="section-7-3">Note that this specification adds the MSD field to the Open message (see <xref target="cap-negotiation" format="default" sectionFormat="of" derivedContent="Section 4.1.2"/>),
which discloses how many MPLS labels the sender can push onto packets that
it forwards into the network. If the security mechanisms of <xref target="RFC8231" format="default" sectionFormat="of" derivedContent="RFC8231"/> and <xref target="RFC8281" format="default" sectionFormat="of" derivedContent="RFC8281"/>
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.</t>
</section>
<section anchor="IANA" numbered="true" toc="include" removeInRFC="false" pn="section-8">
<name slugifiedName="name-iana-considerations">IANA Considerations</name>
<section anchor="PCEP-Object-Codepoints" numbered="true" toc="include" removeInRFC="false" pn="section-8.1">
<name slugifiedName="name-pcep-ero-and-rro-subobjects">PCEP ERO and RRO Subobjects</name>
<t pn="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.</t>
<table anchor="IANA-Subobject-Type" align="center" pn="table-1">
<thead>
<tr>
<th align="left" colspan="1" rowspan="1">Object</th>
<th align="left" colspan="1" rowspan="1">Subobject</th>
<th align="left" colspan="1" rowspan="1">Subobject Type</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" colspan="1" rowspan="1">EXPLICIT_ROUTE</td>
<td align="left" colspan="1" rowspan="1">SR-ERO (PCEP specific)</td>
<td align="left" colspan="1" rowspan="1">36</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1">ROUTE_RECORD</td>
<td align="left" colspan="1" rowspan="1">SR-RRO (PCEP specific)</td>
<td align="left" colspan="1" rowspan="1">36</td>
</tr>
</tbody>
</table>
</section>
<section anchor="NAI-Type-Registry" numbered="true" toc="include" removeInRFC="false" pn="section-8.2">
<name slugifiedName="name-new-nai-type-registry">New NAI Type Registry</name>
<t pn="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 <xref target="RFC8126" format="default" sectionFormat="of" derivedContent="RFC8126"/>. The new registry contains the
following values:
</t>
<table anchor="New-PCEP-SR-ERO-NAI-value" align="center" pn="table-2">
<thead>
<tr>
<th align="left" colspan="1" rowspan="1">Value</th>
<th align="left" colspan="1" rowspan="1">Description </th>
<th align="left" colspan="1" rowspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" colspan="1" rowspan="1">0</td>
<td align="left" colspan="1" rowspan="1">NAI is absent.</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1">1</td>
<td align="left" colspan="1" rowspan="1">NAI is an IPv4 node ID.</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1">2</td>
<td align="left" colspan="1" rowspan="1">NAI is an IPv6 node ID.</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1">3</td>
<td align="left" colspan="1" rowspan="1">NAI is an IPv4 adjacency.</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1">4</td>
<td align="left" colspan="1" rowspan="1">NAI is an IPv6 adjacency with global IPv6 addresses.</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1">5</td>
<td align="left" colspan="1" rowspan="1">NAI is an unnumbered adjacency with IPv4 node IDs.</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1">6</td>
<td align="left" colspan="1" rowspan="1">NAI is an IPv6 adjacency with link-local IPv6 addresses.</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1">7-15</td>
<td align="left" colspan="1" rowspan="1">Unassigned</td>
<td align="left" colspan="1" rowspan="1"/>
</tr>
</tbody>
</table>
</section>
<section anchor="IANA-SR-ERO-FLAG" numbered="true" toc="include" removeInRFC="false" pn="section-8.3">
<name slugifiedName="name-new-sr-ero-flag-registry">New SR-ERO Flag Registry</name>
<t pn="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 <xref target="RFC8126" format="default" sectionFormat="of" derivedContent="RFC8126"/>. Each bit should be tracked with the
following qualities:
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-8.3-2">
<li pn="section-8.3-2.1">Bit number (counting from bit 0 as the most significant bit)</li>
<li pn="section-8.3-2.2">Capability description</li>
<li pn="section-8.3-2.3">Defining RFC</li>
</ul>
<t pn="section-8.3-3">The following values are defined in this document:</t>
<table anchor="SR-ERO-Flags" align="center" pn="table-3">
<thead>
<tr>
<th align="center" colspan="1" rowspan="1">Bit</th>
<th align="left" colspan="1" rowspan="1">Description </th>
<th align="left" colspan="1" rowspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td align="center" colspan="1" rowspan="1">0-7</td>
<td align="left" colspan="1" rowspan="1">Unassigned</td>
<td align="left" colspan="1" rowspan="1"/>
</tr>
<tr>
<td align="center" colspan="1" rowspan="1">8</td>
<td align="left" colspan="1" rowspan="1">NAI is absent (F)</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="center" colspan="1" rowspan="1">9</td>
<td align="left" colspan="1" rowspan="1">SID is absent (S)</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="center" colspan="1" rowspan="1">10</td>
<td align="left" colspan="1" rowspan="1">SID specifies TC, S, and TTL in addition to an MPLS label (C)</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="center" colspan="1" rowspan="1">11</td>
<td align="left" colspan="1" rowspan="1">SID specifies an MPLS label (M)</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
</tbody>
</table>
</section>
<section anchor="IANA-Error-Object" numbered="true" toc="include" removeInRFC="false" pn="section-8.4">
<name slugifiedName="name-pcep-error-object">PCEP-Error Object</name>
<t pn="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:</t>
<table anchor="PCEP-Error-table" align="center" pn="table-4">
<thead>
<tr>
<th align="left" colspan="1" rowspan="1">Error-Type</th>
<th align="left" colspan="1" rowspan="1">Meaning</th>
<th align="left" colspan="1" rowspan="1">Error-value</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" colspan="1" rowspan="1">10</td>
<td align="left" colspan="1" rowspan="1">Reception of an invalid object</td>
<td align="left" colspan="1" rowspan="1"/>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">2: Bad label value</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">3: Unsupported number of SR-ERO subobjects</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">4: Bad label format</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">5: ERO mixes SR-ERO subobjects with other subobject types</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">6: Both SID and NAI are absent in the SR-ERO subobject</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">7: Both SID and NAI are absent in the SR-RRO subobject</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">9: MSD exceeds the default for the PCEP session</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">10: RRO mixes SR-RRO subobjects with other subobject types</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">12: Missing PCE-SR-CAPABILITY sub-TLV</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">13: Unsupported NAI Type in the SR-ERO/SR-RRO subobject</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">14: Unknown SID</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">15: NAI cannot be resolved to a SID</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">16: Could not find SRGB</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">17: SID index exceeds SRGB size</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">18: Could not find SRLB</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">19: SID index exceeds SRLB size</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">20: Inconsistent SIDs in SR-ERO / SR-RRO subobjects</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1"/>
<td align="left" colspan="1" rowspan="1">21: MSD must be non-zero</td>
</tr>
</tbody>
</table>
</section>
<section anchor="IANA-TLV-Type-Indicators" numbered="true" toc="include" removeInRFC="false" pn="section-8.5">
<name slugifiedName="name-pcep-tlv-type-indicators">PCEP TLV Type Indicators</name>
<t pn="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 <xref target="Early" format="default" sectionFormat="of" derivedContent="Appendix A"/> for details.</t>
<table anchor="PCEP-New-TLV-CP" align="center" pn="table-5">
<thead>
<tr>
<th align="left" colspan="1" rowspan="1">Value</th>
<th align="left" colspan="1" rowspan="1">Meaning </th>
<th align="left" colspan="1" rowspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" colspan="1" rowspan="1">26</td>
<td align="left" colspan="1" rowspan="1">SR-PCE-CAPABILITY (deprecated)</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
</tbody>
</table>
</section>
<section anchor="IANA-subTLV-Type-Indicators" numbered="true" toc="include" removeInRFC="false" pn="section-8.6">
<name slugifiedName="name-path-setup-type-capability-">PATH-SETUP-TYPE-CAPABILITY Sub-TLV Type Indicators</name>
<t pn="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 <xref target="RFC8126" format="default" sectionFormat="of" derivedContent="RFC8126"/>. 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".</t>
<table anchor="PCEP-New-subTLV-CP" align="center" pn="table-6">
<thead>
<tr>
<th align="left" colspan="1" rowspan="1">Value</th>
<th align="left" colspan="1" rowspan="1">Meaning </th>
<th align="left" colspan="1" rowspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" colspan="1" rowspan="1">0</td>
<td align="left" colspan="1" rowspan="1">Reserved</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="left" colspan="1" rowspan="1">26</td>
<td align="left" colspan="1" rowspan="1">SR-PCE-CAPABILITY</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
</tbody>
</table>
</section>
<section anchor="IANA-PATH-SETUP-TYPE" numbered="true" toc="include" removeInRFC="false" pn="section-8.7">
<name slugifiedName="name-new-path-setup-type">New Path Setup Type</name>
<t pn="section-8.7-1">A sub-registry within the "Path Computation Element Protocol (PCEP) Numbers" registry called "PCEP Path Setup Types" was created in <xref target="RFC8408" format="default" sectionFormat="of" derivedContent="RFC8408"/>. IANA has allocated a new codepoint within this registry, as follows:</t>
<table anchor="PATH-SETUP-TLV-value" align="center" pn="table-7">
<thead>
<tr>
<th align="left" colspan="1" rowspan="1">Value</th>
<th align="left" colspan="1" rowspan="1">Description </th>
<th align="left" colspan="1" rowspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" colspan="1" rowspan="1">1</td>
<td align="left" colspan="1" rowspan="1">Traffic-engineering path is set up using Segment Routing.</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
</tbody>
</table>
</section>
<section anchor="IANA-METRIC-TYPE" numbered="true" toc="include" removeInRFC="false" pn="section-8.8">
<name slugifiedName="name-new-metric-type">New Metric Type</name>
<t pn="section-8.8-1">IANA has allocated the following codepoint in the PCEP "METRIC Object T Field" registry:</t>
<table anchor="METRIC-type" align="center" pn="table-8">
<thead>
<tr>
<th align="left" colspan="1" rowspan="1">Value</th>
<th align="left" colspan="1" rowspan="1">Description </th>
<th align="left" colspan="1" rowspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" colspan="1" rowspan="1">11</td>
<td align="left" colspan="1" rowspan="1">Segment-ID (SID) Depth.</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
</tbody>
</table>
</section>
<section anchor="IANA-SR-PCE-CAP-FLAG" numbered="true" toc="include" removeInRFC="false" pn="section-8.9">
<name slugifiedName="name-sr-pce-capability-flags">SR PCE Capability Flags</name>
<t pn="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 <xref target="RFC8126" format="default" sectionFormat="of" derivedContent="RFC8126"/>. Each bit should be tracked with the
following qualities:
</t>
<ul spacing="normal" bare="false" empty="false" pn="section-8.9-2">
<li pn="section-8.9-2.1">Bit number (counting from bit 0 as the most significant bit)</li>
<li pn="section-8.9-2.2">Capability description</li>
<li pn="section-8.9-2.3">Defining RFC</li>
</ul>
<t pn="section-8.9-3">The following values are defined in this document:</t>
<table anchor="SR-PCE-CAP-Flags" align="center" pn="table-9">
<thead>
<tr>
<th align="center" colspan="1" rowspan="1">Bit</th>
<th align="left" colspan="1" rowspan="1">Description </th>
<th align="left" colspan="1" rowspan="1">Reference </th>
</tr>
</thead>
<tbody>
<tr>
<td align="center" colspan="1" rowspan="1">0-5</td>
<td align="left" colspan="1" rowspan="1">Unassigned</td>
<td align="left" colspan="1" rowspan="1"/>
</tr>
<tr>
<td align="center" colspan="1" rowspan="1">6</td>
<td align="left" colspan="1" rowspan="1">Node or Adjacency Identifier (NAI) is supported (N)</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
<tr>
<td align="center" colspan="1" rowspan="1">7</td>
<td align="left" colspan="1" rowspan="1">Unlimited Maximum SID Depth (X)</td>
<td align="left" colspan="1" rowspan="1">This document</td>
</tr>
</tbody>
</table>
</section>
</section>
</middle>
<back>
<displayreference target="I-D.ietf-6man-segment-routing-header" to="IPv6-SRH"/>
<displayreference target="I-D.ietf-spring-segment-routing-policy" to="SR-POLICY"/>
<displayreference target="I-D.ietf-idr-bgp-ls-segment-routing-msd" to="MSD-BGP"/>
<displayreference target="I-D.ietf-pce-pcep-yang" to="PCE-PCEP-YANG"/>
<references pn="section-9">
<name slugifiedName="name-references">References</name>
<references pn="section-9.1">
<name slugifiedName="name-normative-references">Normative References</name>
<reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" quoteTitle="true" derivedAnchor="RFC2119">
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials="S." surname="Bradner" fullname="S. Bradner">
<organization showOnFrontPage="true"/>
</author>
<date year="1997" month="March"/>
<abstract>
<t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
</abstract>
</front>
<seriesInfo name="BCP" value="14"/>
<seriesInfo name="RFC" value="2119"/>
<seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>
<reference anchor="RFC3032" target="https://www.rfc-editor.org/info/rfc3032" quoteTitle="true" derivedAnchor="RFC3032">
<front>
<title>MPLS Label Stack Encoding</title>
<author initials="E." surname="Rosen" fullname="E. Rosen">
<organization showOnFrontPage="true"/>
</author>
<author initials="D." surname="Tappan" fullname="D. Tappan">
<organization showOnFrontPage="true"/>
</author>
<author initials="G." surname="Fedorkow" fullname="G. Fedorkow">
<organization showOnFrontPage="true"/>
</author>
<author initials="Y." surname="Rekhter" fullname="Y. Rekhter">
<organization showOnFrontPage="true"/>
</author>
<author initials="D." surname="Farinacci" fullname="D. Farinacci">
<organization showOnFrontPage="true"/>
</author>
<author initials="T." surname="Li" fullname="T. Li">
<organization showOnFrontPage="true"/>
</author>
<author initials="A." surname="Conta" fullname="A. Conta">
<organization showOnFrontPage="true"/>
</author>
<date year="2001" month="January"/>
<abstract>
<t>This document specifies the encoding to be used by an LSR in order to transmit labeled packets on Point-to-Point Protocol (PPP) data links, on LAN data links, and possibly on other data links as well. This document also specifies rules and procedures for processing the various fields of the label stack encoding. [STANDARDS-TRACK]</t>
</abstract>
</front>
<seriesInfo name="RFC" value="3032"/>
<seriesInfo name="DOI" value="10.17487/RFC3032"/>
</reference>
<reference anchor="RFC5440" target="https://www.rfc-editor.org/info/rfc5440" quoteTitle="true" derivedAnchor="RFC5440">
<front>
<title>Path Computation Element (PCE) Communication Protocol (PCEP)</title>
<author initials="JP." surname="Vasseur" fullname="JP. Vasseur" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="JL." surname="Le Roux" fullname="JL. Le Roux" role="editor">
<organization showOnFrontPage="true"/>
</author>
<date year="2009" month="March"/>
<abstract>
<t>This document specifies the Path Computation Element (PCE) Communication Protocol (PCEP) for communications between a Path Computation Client (PCC) and a PCE, or between two PCEs. Such interactions include path computation requests and path computation replies as well as notifications of specific states related to the use of a PCE in the context of Multiprotocol Label Switching (MPLS) and Generalized MPLS (GMPLS) Traffic Engineering. PCEP is designed to be flexible and extensible so as to easily allow for the addition of further messages and objects, should further requirements be expressed in the future. [STANDARDS-TRACK]</t>
</abstract>
</front>
<seriesInfo name="RFC" value="5440"/>
<seriesInfo name="DOI" value="10.17487/RFC5440"/>
</reference>
<reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174" quoteTitle="true" derivedAnchor="RFC8174">
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials="B." surname="Leiba" fullname="B. Leiba">
<organization showOnFrontPage="true"/>
</author>
<date year="2017" month="May"/>
<abstract>
<t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
</abstract>
</front>
<seriesInfo name="BCP" value="14"/>
<seriesInfo name="RFC" value="8174"/>
<seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>
<reference anchor="RFC8231" target="https://www.rfc-editor.org/info/rfc8231" quoteTitle="true" derivedAnchor="RFC8231">
<front>
<title>Path Computation Element Communication Protocol (PCEP) Extensions for Stateful PCE</title>
<author initials="E." surname="Crabbe" fullname="E. Crabbe">
<organization showOnFrontPage="true"/>
</author>
<author initials="I." surname="Minei" fullname="I. Minei">
<organization showOnFrontPage="true"/>
</author>
<author initials="J." surname="Medved" fullname="J. Medved">
<organization showOnFrontPage="true"/>
</author>
<author initials="R." surname="Varga" fullname="R. Varga">
<organization showOnFrontPage="true"/>
</author>
<date year="2017" month="September"/>
<abstract>
<t>The Path Computation Element Communication Protocol (PCEP) provides mechanisms for Path Computation Elements (PCEs) to perform path computations in response to Path Computation Client (PCC) requests.</t>
<t>Although PCEP explicitly makes no assumptions regarding the information available to the PCE, it also makes no provisions for PCE control of timing and sequence of path computations within and across PCEP sessions. This document describes a set of extensions to PCEP to enable stateful control of MPLS-TE and GMPLS Label Switched Paths (LSPs) via PCEP.</t>
</abstract>
</front>
<seriesInfo name="RFC" value="8231"/>
<seriesInfo name="DOI" value="10.17487/RFC8231"/>
</reference>
<reference anchor="RFC8281" target="https://www.rfc-editor.org/info/rfc8281" quoteTitle="true" derivedAnchor="RFC8281">
<front>
<title>Path Computation Element Communication Protocol (PCEP) Extensions for PCE-Initiated LSP Setup in a Stateful PCE Model</title>
<author initials="E." surname="Crabbe" fullname="E. Crabbe">
<organization showOnFrontPage="true"/>
</author>
<author initials="I." surname="Minei" fullname="I. Minei">
<organization showOnFrontPage="true"/>
</author>
<author initials="S." surname="Sivabalan" fullname="S. Sivabalan">
<organization showOnFrontPage="true"/>
</author>
<author initials="R." surname="Varga" fullname="R. Varga">
<organization showOnFrontPage="true"/>
</author>
<date year="2017" month="December"/>
<abstract>
<t>The Path Computation Element Communication Protocol (PCEP) provides mechanisms for Path Computation Elements (PCEs) to perform path computations in response to Path Computation Client (PCC) requests.</t>
<t>The extensions for stateful PCE provide active control of Multiprotocol Label Switching (MPLS) Traffic Engineering Label Switched Paths (TE LSPs) via PCEP, for a model where the PCC delegates control over one or more locally configured LSPs to the PCE. This document describes the creation and deletion of PCE-initiated LSPs under the stateful PCE model.</t>
</abstract>
</front>
<seriesInfo name="RFC" value="8281"/>
<seriesInfo name="DOI" value="10.17487/RFC8281"/>
</reference>
<reference anchor="RFC8402" target="https://www.rfc-editor.org/info/rfc8402" quoteTitle="true" derivedAnchor="RFC8402">
<front>
<title>Segment Routing Architecture</title>
<author initials="C." surname="Filsfils" fullname="C. Filsfils" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="S." surname="Previdi" fullname="S. Previdi" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="L." surname="Ginsberg" fullname="L. Ginsberg">
<organization showOnFrontPage="true"/>
</author>
<author initials="B." surname="Decraene" fullname="B. Decraene">
<organization showOnFrontPage="true"/>
</author>
<author initials="S." surname="Litkowski" fullname="S. Litkowski">
<organization showOnFrontPage="true"/>
</author>
<author initials="R." surname="Shakir" fullname="R. Shakir">
<organization showOnFrontPage="true"/>
</author>
<date year="2018" month="July"/>
<abstract>
<t>Segment Routing (SR) leverages the source routing paradigm. A node steers a packet through an ordered list of instructions, called "segments". A segment can represent any instruction, topological or service based. A segment can have a semantic local to an SR node or global within an SR domain. SR provides a mechanism that allows a flow to be restricted to a specific topological path, while maintaining per-flow state only at the ingress node(s) to the SR domain.</t>
<t>SR can be directly applied to the MPLS architecture with no change to the forwarding plane. A segment is encoded as an MPLS label. An ordered list of segments is encoded as a stack of labels. The segment to process is on the top of the stack. Upon completion of a segment, the related label is popped from the stack.</t>
<t>SR can be applied to the IPv6 architecture, with a new type of routing header. A segment is encoded as an IPv6 address. An ordered list of segments is encoded as an ordered list of IPv6 addresses in the routing header. The active segment is indicated by the Destination Address (DA) of the packet. The next active segment is indicated by a pointer in the new routing header.</t>
</abstract>
</front>
<seriesInfo name="RFC" value="8402"/>
<seriesInfo name="DOI" value="10.17487/RFC8402"/>
</reference>
<reference anchor="RFC8408" target="https://www.rfc-editor.org/info/rfc8408" quoteTitle="true" derivedAnchor="RFC8408">
<front>
<title>Conveying Path Setup Type in PCE Communication Protocol (PCEP) Messages</title>
<author initials="S." surname="Sivabalan" fullname="S. Sivabalan">
<organization showOnFrontPage="true"/>
</author>
<author initials="J." surname="Tantsura" fullname="J. Tantsura">
<organization showOnFrontPage="true"/>
</author>
<author initials="I." surname="Minei" fullname="I. Minei">
<organization showOnFrontPage="true"/>
</author>
<author initials="R." surname="Varga" fullname="R. Varga">
<organization showOnFrontPage="true"/>
</author>
<author initials="J." surname="Hardwick" fullname="J. Hardwick">
<organization showOnFrontPage="true"/>
</author>
<date year="2018" month="July"/>
<abstract>
<t>A Path Computation Element (PCE) can compute Traffic Engineering (TE) paths through a network; these paths are subject to various constraints. Currently, TE paths are Label Switched Paths (LSPs) that are set up using the RSVP-TE signaling protocol. However, other TE path setup methods are possible within the PCE architecture. This document proposes an extension to the PCE Communication Protocol (PCEP) to allow support for different path setup methods over a given PCEP session.</t>
</abstract>
</front>
<seriesInfo name="RFC" value="8408"/>
<seriesInfo name="DOI" value="10.17487/RFC8408"/>
</reference>
<reference anchor="RFC8491" target="https://www.rfc-editor.org/info/rfc8491" quoteTitle="true" derivedAnchor="RFC8491">
<front>
<title>Signaling Maximum SID Depth (MSD) Using IS-IS</title>
<author initials="J." surname="Tantsura" fullname="J. Tantsura">
<organization showOnFrontPage="true"/>
</author>
<author initials="U." surname="Chunduri" fullname="U. Chunduri">
<organization showOnFrontPage="true"/>
</author>
<author initials="S." surname="Aldrin" fullname="S. Aldrin">
<organization showOnFrontPage="true"/>
</author>
<author initials="L." surname="Ginsberg" fullname="L. Ginsberg">
<organization showOnFrontPage="true"/>
</author>
<date year="2018" month="November"/>
<abstract>
<t>This document defines a way for an Intermediate System to Intermediate System (IS-IS) router to advertise multiple types of supported Maximum SID Depths (MSDs) at node and/or link granularity. Such advertisements allow entities (e.g., centralized controllers) to determine whether a particular Segment ID (SID) stack can be supported in a given network. This document only defines one type of MSD: Base MPLS Imposition. However, it defines an encoding that can support other MSD types. This document focuses on MSD use in a network that is Segment Routing (SR) enabled, but MSD may also be useful when SR is not enabled.</t>
</abstract>
</front>
<seriesInfo name="RFC" value="8491"/>
<seriesInfo name="DOI" value="10.17487/RFC8491"/>
</reference>
<reference anchor="RFC8660" target="https://www.rfc-editor.org/info/rfc8660" quoteTitle="true" derivedAnchor="RFC8660">
<front>
<title>Segment Routing with the MPLS Data Plane</title>
<author initials="A" surname="Bashandy" fullname="Ahmed Bashandy" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="C" surname="Filsfils" fullname="Clarence Filsfils" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="S" surname="Previdi" fullname="Stefano Previdi">
<organization showOnFrontPage="true"/>
</author>
<author initials="B" surname="Decraene" fullname="Bruno Decraene">
<organization showOnFrontPage="true"/>
</author>
<author initials="S" surname="Litkowski" fullname="Stephane Litkowski">
<organization showOnFrontPage="true"/>
</author>
<author initials="R" surname="Shakir" fullname="Rob Shakir">
<organization showOnFrontPage="true"/>
</author>
<date month="December" year="2019"/>
</front>
<seriesInfo name="RFC" value="8660"/>
<seriesInfo name="DOI" value="10.17487/RFC8660"/>
</reference>
</references>
<references pn="section-9.2">
<name slugifiedName="name-informative-references">Informative References</name>
<reference anchor="I-D.ietf-6man-segment-routing-header" quoteTitle="true" target="https://tools.ietf.org/html/draft-ietf-6man-segment-routing-header-26" derivedAnchor="IPv6-SRH">
<front>
<title>IPv6 Segment Routing Header (SRH)</title>
<author initials="C" surname="Filsfils" fullname="Clarence Filsfils">
<organization showOnFrontPage="true"/>
</author>
<author initials="D" surname="Dukes" fullname="Darren Dukes">
<organization showOnFrontPage="true"/>
</author>
<author initials="S" surname="Previdi" fullname="Stefano Previdi">
<organization showOnFrontPage="true"/>
</author>
<author initials="J" surname="Leddy" fullname="John Leddy">
<organization showOnFrontPage="true"/>
</author>
<author initials="S" surname="Matsushima" fullname="Satoru Matsushima">
<organization showOnFrontPage="true"/>
</author>
<author initials="D" surname="Voyer" fullname="Daniel Voyer">
<organization showOnFrontPage="true"/>
</author>
<date month="October" day="22" year="2019"/>
<abstract>
<t>Segment Routing can be applied to the IPv6 data plane using a new type of Routing Extension Header called the Segment Routing Header. This document describes the Segment Routing Header and how it is used by Segment Routing capable nodes.</t>
</abstract>
</front>
<seriesInfo name="Internet-Draft" value="draft-ietf-6man-segment-routing-header-26"/>
<format type="TXT" target="http://www.ietf.org/internet-drafts/draft-ietf-6man-segment-routing-header-26.txt"/>
<refcontent>Work in Progress</refcontent>
</reference>
<reference anchor="I-D.ietf-idr-bgp-ls-segment-routing-msd" quoteTitle="true" target="https://tools.ietf.org/html/draft-ietf-idr-bgp-ls-segment-routing-msd-09" derivedAnchor="MSD-BGP">
<front>
<title>Signaling MSD (Maximum SID Depth) using Border Gateway Protocol Link-State</title>
<author initials="J" surname="Tantsura" fullname="Jeff Tantsura">
<organization showOnFrontPage="true"/>
</author>
<author initials="U" surname="Chunduri" fullname="Uma Chunduri">
<organization showOnFrontPage="true"/>
</author>
<author initials="K" surname="Talaulikar" fullname="Ketan Talaulikar">
<organization showOnFrontPage="true"/>
</author>
<author initials="G" surname="Mirsky" fullname="Gregory Mirsky">
<organization showOnFrontPage="true"/>
</author>
<author initials="N" surname="Triantafillis" fullname="Nikos Triantafillis">
<organization showOnFrontPage="true"/>
</author>
<date month="October" day="15" year="2019"/>
<abstract>
<t>This document defines a way for a Border Gateway Protocol Link-State (BGP-LS) speaker to advertise multiple types of supported Maximum SID Depths (MSDs) at node and/or link granularity. Such advertisements allow entities (e.g., centralized controllers) to determine whether a particular Segment Identifier (SID) stack can be supported in a given network.</t>
</abstract>
</front>
<seriesInfo name="Internet-Draft" value="draft-ietf-idr-bgp-ls-segment-routing-msd-09"/>
<format type="TXT" target="http://www.ietf.org/internet-drafts/draft-ietf-idr-bgp-ls-segment-routing-msd-09.txt"/>
<refcontent>Work in Progress</refcontent>
</reference>
<reference anchor="I-D.ietf-pce-pcep-yang" quoteTitle="true" target="https://tools.ietf.org/html/draft-ietf-pce-pcep-yang-13" derivedAnchor="PCE-PCEP-YANG">
<front>
<title>A YANG Data Model for Path Computation Element Communications Protocol (PCEP)</title>
<author initials="D" surname="Dhody" fullname="Dhruv Dhody">
<organization showOnFrontPage="true"/>
</author>
<author initials="J" surname="Hardwick" fullname="Jonathan Hardwick">
<organization showOnFrontPage="true"/>
</author>
<author initials="V" surname="Beeram" fullname="Vishnu Beeram">
<organization showOnFrontPage="true"/>
</author>
<author initials="J" surname="Tantsura" fullname="Jeff Tantsura">
<organization showOnFrontPage="true"/>
</author>
<date month="October" day="31" year="2019"/>
<abstract>
<t>This document defines a YANG data model for the management of Path Computation Element communications Protocol (PCEP) for communications between a Path Computation Client (PCC) and a Path Computation Element (PCE), or between two PCEs. The data model includes configuration and state data.</t>
</abstract>
</front>
<seriesInfo name="Internet-Draft" value="draft-ietf-pce-pcep-yang-13"/>
<format type="TXT" target="http://www.ietf.org/internet-drafts/draft-ietf-pce-pcep-yang-13.txt"/>
<refcontent>Work in Progress</refcontent>
</reference>
<reference anchor="RFC3209" target="https://www.rfc-editor.org/info/rfc3209" quoteTitle="true" derivedAnchor="RFC3209">
<front>
<title>RSVP-TE: Extensions to RSVP for LSP Tunnels</title>
<author initials="D." surname="Awduche" fullname="D. Awduche">
<organization showOnFrontPage="true"/>
</author>
<author initials="L." surname="Berger" fullname="L. Berger">
<organization showOnFrontPage="true"/>
</author>
<author initials="D." surname="Gan" fullname="D. Gan">
<organization showOnFrontPage="true"/>
</author>
<author initials="T." surname="Li" fullname="T. Li">
<organization showOnFrontPage="true"/>
</author>
<author initials="V." surname="Srinivasan" fullname="V. Srinivasan">
<organization showOnFrontPage="true"/>
</author>
<author initials="G." surname="Swallow" fullname="G. Swallow">
<organization showOnFrontPage="true"/>
</author>
<date year="2001" month="December"/>
<abstract>
<t>This document describes the use of RSVP (Resource Reservation Protocol), including all the necessary extensions, to establish label-switched paths (LSPs) in MPLS (Multi-Protocol Label Switching). Since the flow along an LSP is completely identified by the label applied at the ingress node of the path, these paths may be treated as tunnels. A key application of LSP tunnels is traffic engineering with MPLS as specified in RFC 2702. [STANDARDS-TRACK]</t>
</abstract>
</front>
<seriesInfo name="RFC" value="3209"/>
<seriesInfo name="DOI" value="10.17487/RFC3209"/>
</reference>
<reference anchor="RFC4657" target="https://www.rfc-editor.org/info/rfc4657" quoteTitle="true" derivedAnchor="RFC4657">
<front>
<title>Path Computation Element (PCE) Communication Protocol Generic Requirements</title>
<author initials="J." surname="Ash" fullname="J. Ash" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="J.L." surname="Le Roux" fullname="J.L. Le Roux" role="editor">
<organization showOnFrontPage="true"/>
</author>
<date year="2006" month="September"/>
<abstract>
<t>The PCE model is described in the "PCE Architecture" document and facilitates path computation requests from Path Computation Clients (PCCs) to Path Computation Elements (PCEs). This document specifies generic requirements for a communication protocol between PCCs and PCEs, and also between PCEs where cooperation between PCEs is desirable. Subsequent documents will specify application-specific requirements for the PCE communication protocol. This memo provides information for the Internet community.</t>
</abstract>
</front>
<seriesInfo name="RFC" value="4657"/>
<seriesInfo name="DOI" value="10.17487/RFC4657"/>
</reference>
<reference anchor="RFC7420" target="https://www.rfc-editor.org/info/rfc7420" quoteTitle="true" derivedAnchor="RFC7420">
<front>
<title>Path Computation Element Communication Protocol (PCEP) Management Information Base (MIB) Module</title>
<author initials="A." surname="Koushik" fullname="A. Koushik">
<organization showOnFrontPage="true"/>
</author>
<author initials="E." surname="Stephan" fullname="E. Stephan">
<organization showOnFrontPage="true"/>
</author>
<author initials="Q." surname="Zhao" fullname="Q. Zhao">
<organization showOnFrontPage="true"/>
</author>
<author initials="D." surname="King" fullname="D. King">
<organization showOnFrontPage="true"/>
</author>
<author initials="J." surname="Hardwick" fullname="J. Hardwick">
<organization showOnFrontPage="true"/>
</author>
<date year="2014" month="December"/>
<abstract>
<t>This memo defines a portion of the Management Information Base (MIB) for use with network management protocols in the Internet community. In particular, it describes managed objects for modeling of the Path Computation Element Communication Protocol (PCEP) for communications between a Path Computation Client (PCC) and a Path Computation Element (PCE), or between two PCEs.</t>
</abstract>
</front>
<seriesInfo name="RFC" value="7420"/>
<seriesInfo name="DOI" value="10.17487/RFC7420"/>
</reference>
<reference anchor="RFC8126" target="https://www.rfc-editor.org/info/rfc8126" quoteTitle="true" derivedAnchor="RFC8126">
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<author initials="M." surname="Cotton" fullname="M. Cotton">
<organization showOnFrontPage="true"/>
</author>
<author initials="B." surname="Leiba" fullname="B. Leiba">
<organization showOnFrontPage="true"/>
</author>
<author initials="T." surname="Narten" fullname="T. Narten">
<organization showOnFrontPage="true"/>
</author>
<date year="2017" month="June"/>
<abstract>
<t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
<t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
<t>This is the third edition of this document; it obsoletes RFC 5226.</t>
</abstract>
</front>
<seriesInfo name="BCP" value="26"/>
<seriesInfo name="RFC" value="8126"/>
<seriesInfo name="DOI" value="10.17487/RFC8126"/>
</reference>
<reference anchor="RFC8413" target="https://www.rfc-editor.org/info/rfc8413" quoteTitle="true" derivedAnchor="RFC8413">
<front>
<title>Framework for Scheduled Use of Resources</title>
<author initials="Y." surname="Zhuang" fullname="Y. Zhuang">
<organization showOnFrontPage="true"/>
</author>
<author initials="Q." surname="Wu" fullname="Q. Wu">
<organization showOnFrontPage="true"/>
</author>
<author initials="H." surname="Chen" fullname="H. Chen">
<organization showOnFrontPage="true"/>
</author>
<author initials="A." surname="Farrel" fullname="A. Farrel">
<organization showOnFrontPage="true"/>
</author>
<date year="2018" month="July"/>
<abstract>
<t>Time-Scheduled (TS) reservation of Traffic Engineering (TE) resources can be used to provide resource booking for TE Label Switched Paths so as to better guarantee services for customers and to improve the efficiency of network resource usage at any moment in time, including network usage that is planned for the future. This document provides a framework that describes and discusses the architecture for supporting scheduled reservation of TE resources. This document does not describe specific protocols or protocol extensions needed to realize this service.</t>
</abstract>
</front>
<seriesInfo name="RFC" value="8413"/>
<seriesInfo name="DOI" value="10.17487/RFC8413"/>
</reference>
<reference anchor="RFC8476" target="https://www.rfc-editor.org/info/rfc8476" quoteTitle="true" derivedAnchor="RFC8476">
<front>
<title>Signaling Maximum SID Depth (MSD) Using OSPF</title>
<author initials="J." surname="Tantsura" fullname="J. Tantsura">
<organization showOnFrontPage="true"/>
</author>
<author initials="U." surname="Chunduri" fullname="U. Chunduri">
<organization showOnFrontPage="true"/>
</author>
<author initials="S." surname="Aldrin" fullname="S. Aldrin">
<organization showOnFrontPage="true"/>
</author>
<author initials="P." surname="Psenak" fullname="P. Psenak">
<organization showOnFrontPage="true"/>
</author>
<date year="2018" month="December"/>
<abstract>
<t>This document defines a way for an Open Shortest Path First (OSPF) router to advertise multiple types of supported Maximum SID Depths (MSDs) at node and/or link granularity. Such advertisements allow entities (e.g., centralized controllers) to determine whether a particular Segment Identifier (SID) stack can be supported in a given network. This document only refers to the Signaling MSD as defined in RFC 8491, but it defines an encoding that can support other MSD types. Here, the term "OSPF" means both OSPFv2 and OSPFv3.</t>
</abstract>
</front>
<seriesInfo name="RFC" value="8476"/>
<seriesInfo name="DOI" value="10.17487/RFC8476"/>
</reference>
<reference anchor="RFC8665" target="https://www.rfc-editor.org/info/rfc8665" quoteTitle="true" derivedAnchor="RFC8665">
<front>
<title>OSPF Extensions for Segment Routing</title>
<author initials="P" surname="Psenak" fullname="Peter Psenak" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="S" surname="Previdi" fullname="Stefano Previdi" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="C" surname="Filsfils" fullname="Clarence Filsfils">
<organization showOnFrontPage="true"/>
</author>
<author initials="H" surname="Gredler" fullname="Hannes Gredler">
<organization showOnFrontPage="true"/>
</author>
<author initials="R" surname="Shakir" fullname="Rob Shakir">
<organization showOnFrontPage="true"/>
</author>
<author initials="W" surname="Henderickx" fullname="Wim Henderickx">
<organization showOnFrontPage="true"/>
</author>
<author initials="J" surname="Tantsura" fullname="Jeff Tantsura">
<organization showOnFrontPage="true"/>
</author>
<date month="December" year="2019"/>
</front>
<seriesInfo name="RFC" value="8665"/>
<seriesInfo name="DOI" value="10.17487/RFC8665"/>
</reference>
<reference anchor="RFC8667" target="https://www.rfc-editor.org/info/rfc8667" quoteTitle="true" derivedAnchor="RFC8667">
<front>
<title>IS-IS Extensions for Segment Routing</title>
<author initials="S" surname="Previdi" fullname="Stefano Previdi" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="L" surname="Ginsberg" fullname="Les Ginsberg" role="editor">
<organization showOnFrontPage="true"/>
</author>
<author initials="C" surname="Filsfils" fullname="Clarence Filsfils">
<organization showOnFrontPage="true"/>
</author>
<author initials="A" surname="Bashandy" fullname="Ahmed Bashandy">
<organization showOnFrontPage="true"/>
</author>
<author initials="H" surname="Gredler" fullname="Hannes Gredler">
<organization showOnFrontPage="true"/>
</author>
<author initials="B" surname="Decraene" fullname="Bruno Decraene">
<organization showOnFrontPage="true"/>
</author>
<date month="December" year="2019"/>
</front>
<seriesInfo name="RFC" value="8667"/>
<seriesInfo name="DOI" value="10.17487/RFC8667"/>
</reference>
<reference anchor="I-D.ietf-spring-segment-routing-policy" quoteTitle="true" target="https://tools.ietf.org/html/draft-ietf-spring-segment-routing-policy-05" derivedAnchor="SR-POLICY">
<front>
<title>Segment Routing Policy Architecture</title>
<author initials="C" surname="Filsfils" fullname="Clarence Filsfils">
<organization showOnFrontPage="true"/>
</author>
<author initials="S" surname="Sivabalan" fullname="Siva Sivabalan">
<organization showOnFrontPage="true"/>
</author>
<author initials="D" surname="Voyer" fullname="Daniel Voyer">
<organization showOnFrontPage="true"/>
</author>
<author initials="A" surname="Bogdanov" fullname="Alex Bogdanov">
<organization showOnFrontPage="true"/>
</author>
<author initials="P" surname="Mattes" fullname="Paul Mattes">
<organization showOnFrontPage="true"/>
</author>
<date month="November" day="17" year="2019"/>
<abstract>
<t>Segment Routing (SR) allows a headend node to steer a packet flow along any path. Intermediate per-flow states are eliminated thanks to source routing. The headend node steers a flow into an SR Policy. The header of a packet steered in an SR Policy is augmented with an ordered list of segments associated with that SR Policy. This document details the concepts of SR Policy and steering into an SR Policy.</t>
</abstract>
</front>
<seriesInfo name="Internet-Draft" value="draft-ietf-spring-segment-routing-policy-05"/>
<format type="TXT" target="http://www.ietf.org/internet-drafts/draft-ietf-spring-segment-routing-policy-05.txt"/>
<refcontent>Work in Progress</refcontent>
</reference>
</references>
</references>
<section anchor="Early" numbered="true" toc="include" removeInRFC="false" pn="section-appendix.a">
<name slugifiedName="name-compatibility-with-early-im">Compatibility with Early Implementations</name>
<t pn="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.
</t>
</section>
<section anchor="Acknowledgement" numbered="false" toc="include" removeInRFC="false" pn="section-appendix.b">
<name slugifiedName="name-acknowledgements">Acknowledgements</name>
<t pn="section-appendix.b-1">We thank Ina Minei, George Swallow, Marek Zavodsky, Dhruv Dhody, Ing-Wher Chen, and Tomas Janciga for the valuable comments.</t>
</section>
<section anchor="Contributors" numbered="false" toc="include" removeInRFC="false" pn="section-appendix.c">
<name slugifiedName="name-contributors">Contributors</name>
<t pn="section-appendix.c-1">The following people contributed to this document:
</t>
<ul spacing="compact" bare="false" empty="false" pn="section-appendix.c-2">
<li pn="section-appendix.c-2.1">Lakshmi Sharma</li>
<li pn="section-appendix.c-2.2">Jan Medved</li>
<li pn="section-appendix.c-2.3">Edward Crabbe</li>
<li pn="section-appendix.c-2.4">Robert Raszuk</li>
<li pn="section-appendix.c-2.5">Victor Lopez</li>
</ul>
</section>
<section anchor="authors-addresses" numbered="false" removeInRFC="false" toc="include" pn="section-appendix.d">
<name slugifiedName="name-authors-addresses">Authors' Addresses</name>
<author fullname="Siva Sivabalan" initials="S." surname="Sivabalan">
<organization showOnFrontPage="true">Cisco Systems, Inc.</organization>
<address>
<postal>
<street>2000 Innovation Drive</street>
<city>Kanata</city>
<region>Ontario</region>
<code>K2K 3E8</code>
<country>Canada</country>
</postal>
<email>msiva@cisco.com</email>
</address>
</author>
<author fullname="Clarence Filsfils" initials="C." surname="Filsfils">
<organization showOnFrontPage="true">Cisco Systems, Inc.</organization>
<address>
<postal>
<street>Pegasus Parc</street>
<city>De kleetlaan 6a</city>
<region>Diegem</region>
<code>Brabant 1831</code>
<country>Belgium</country>
</postal>
<email>cfilsfil@cisco.com</email>
</address>
</author>
<author fullname="Jeff Tantsura" initials="J." surname="Tantsura">
<organization showOnFrontPage="true">Apstra, Inc.</organization>
<address>
<postal>
<street>333 Middlefield Rd #200</street>
<city>Menlo Park</city>
<region>CA</region>
<code>94025</code>
<country>United States of America</country>
</postal>
<email>jefftant.ietf@gmail.com</email>
</address>
</author>
<author fullname="Wim Henderickx" initials="W." surname="Henderickx">
<organization showOnFrontPage="true">Nokia</organization>
<address>
<postal>
<street>Copernicuslaan 50</street>
<city>Antwerp 2018</city>
<region>CA</region>
<code>95134</code>
<country>Belgium</country>
</postal>
<email>wim.henderickx@nokia.com</email>
</address>
</author>
<author fullname="Jon Hardwick" initials="J." surname="Hardwick">
<organization showOnFrontPage="true">Metaswitch Networks</organization>
<address>
<postal>
<street>100 Church Street</street>
<city>Enfield</city>
<region>Middlesex</region>
<country>United Kingdom</country>
</postal>
<email>jonathan.hardwick@metaswitch.com</email>
</address>
</author>
</section>
</back>
</rfc>
|