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
|
<pre>Internet Engineering Task Force (IETF) T. Beckhaus, Ed.
Request for Comments: 7032 Deutsche Telekom AG
Category: Standards Track B. Decraene
ISSN: 2070-1721 Orange
K. Tiruveedhula
Juniper Networks
M. Konstantynowicz, Ed.
L. Martini
Cisco Systems, Inc.
October 2013
<span class="h1">LDP Downstream-on-Demand in Seamless MPLS</span>
Abstract
Seamless MPLS design enables a single IP/MPLS network to scale over
core, metro, and access parts of a large packet network
infrastructure using standardized IP/MPLS protocols. One of the key
goals of Seamless MPLS is to meet requirements specific to access
networks including high number of devices, device position in network
topology, and compute and memory constraints that limit the amount of
state access devices can hold. This can be achieved with LDP
Downstream-on-Demand (DoD) label advertisement. This document
describes LDP DoD use cases and lists required LDP DoD procedures in
the context of Seamless MPLS design.
In addition, a new optional TLV type in the LDP Label Request message
is defined for fast-up convergence.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7032">http://www.rfc-editor.org/info/rfc7032</a>.
<span class="grey">Beckhaus, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
Copyright Notice
Copyright (c) 2013 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Beckhaus, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-2">2</a>. Reference Topologies ............................................<a href="#page-6">6</a>
<a href="#section-2.1">2.1</a>. Access Topologies with Static Routing ......................<a href="#page-6">6</a>
<a href="#section-2.2">2.2</a>. Access Topologies with Access IGP .........................<a href="#page-10">10</a>
<a href="#section-3">3</a>. LDP DoD Use Cases ..............................................<a href="#page-11">11</a>
<a href="#section-3.1">3.1</a>. Initial Network Setup .....................................<a href="#page-12">12</a>
<a href="#section-3.1.1">3.1.1</a>. AN with Static Routing .............................<a href="#page-12">12</a>
<a href="#section-3.1.2">3.1.2</a>. AN with Access IGP .................................<a href="#page-13">13</a>
<a href="#section-3.2">3.2</a>. Service Provisioning and Activation .......................<a href="#page-14">14</a>
<a href="#section-3.3">3.3</a>. Service Changes and Decommissioning .......................<a href="#page-16">16</a>
<a href="#section-3.4">3.4</a>. Service Failure ...........................................<a href="#page-17">17</a>
<a href="#section-3.5">3.5</a>. Network Transport Failure .................................<a href="#page-17">17</a>
<a href="#section-3.5.1">3.5.1</a>. General Notes ......................................<a href="#page-17">17</a>
<a href="#section-3.5.2">3.5.2</a>. AN Failure .........................................<a href="#page-18">18</a>
<a href="#section-3.5.3">3.5.3</a>. AN/AGN Link Failure ................................<a href="#page-19">19</a>
<a href="#section-3.5.4">3.5.4</a>. AGN Failure ........................................<a href="#page-20">20</a>
<a href="#section-3.5.5">3.5.5</a>. AGN Network-Side Reachability Failure ..............<a href="#page-20">20</a>
<a href="#section-4">4</a>. LDP DoD Procedures .............................................<a href="#page-20">20</a>
<a href="#section-4.1">4.1</a>. LDP Label Distribution Control and Retention Modes ........<a href="#page-21">21</a>
<a href="#section-4.2">4.2</a>. LDP DoD Session Negotiation ...............................<a href="#page-23">23</a>
<a href="#section-4.3">4.3</a>. Label Request Procedures ..................................<a href="#page-23">23</a>
<a href="#section-4.3.1">4.3.1</a>. Access LSR/ABR Label Request .......................<a href="#page-23">23</a>
<a href="#section-4.3.2">4.3.2</a>. Label Request Retry ................................<a href="#page-24">24</a>
<a href="#section-4.4">4.4</a>. Label Withdraw ............................................<a href="#page-25">25</a>
<a href="#section-4.5">4.5</a>. Label Release .............................................<a href="#page-26">26</a>
<a href="#section-4.6">4.6</a>. Local-Repair ..............................................<a href="#page-27">27</a>
<a href="#section-5">5</a>. LDP Extension for LDP DoD Fast-Up Convergence ..................<a href="#page-27">27</a>
<a href="#section-6">6</a>. IANA Considerations ............................................<a href="#page-29">29</a>
<a href="#section-6.1">6.1</a>. LDP TLV Type ..............................................<a href="#page-29">29</a>
<a href="#section-7">7</a>. Security Considerations ........................................<a href="#page-29">29</a>
<a href="#section-7.1">7.1</a>. LDP DoD Native Security Properties ........................<a href="#page-30">30</a>
<a href="#section-7.2">7.2</a>. Data-Plane Security .......................................<a href="#page-31">31</a>
<a href="#section-7.3">7.3</a>. Control-Plane Security ....................................<a href="#page-31">31</a>
<a href="#section-8">8</a>. Acknowledgements ...............................................<a href="#page-32">32</a>
<a href="#section-9">9</a>. References .....................................................<a href="#page-33">33</a>
<a href="#section-9.1">9.1</a>. Normative References ......................................<a href="#page-33">33</a>
<a href="#section-9.2">9.2</a>. Informative References ....................................<a href="#page-33">33</a>
<span class="grey">Beckhaus, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Seamless MPLS design [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>] enables a single IP/MPLS network
to scale over core, metro, and access parts of a large packet network
infrastructure using standardized IP/MPLS protocols. One of the key
goals of Seamless MPLS is to meet requirements specific to access
including high number of devices, device position in network
topology, and compute and memory constraints that limit the amount of
state access devices can hold.
In general, MPLS Label Switching Routers (LSRs) implement either LDP
or RSVP for MPLS label distribution.
The focus of this document is on LDP, as Seamless MPLS design does
not include a requirement for general-purpose explicit traffic
engineering and bandwidth reservation. This document concentrates on
the unicast connectivity only. Multicast connectivity is a subject
for further study.
In Seamless MPLS design [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>], IP/MPLS protocol
optimization is possible due to relatively simple access network
topologies. Examples of such topologies involving access nodes (ANs)
and aggregation nodes (AGNs) include:
a. A single AN homed to a single AGN.
b. A single AN dual-homed to two AGNs.
c. Multiple ANs daisy-chained via a hub-AN to a single AGN.
d. Multiple ANs daisy-chained via a hub-AN to two AGNs.
e. Two ANs dual-homed to two AGNs.
f. Multiple ANs chained in a ring and dual-homed to two AGNs.
The amount of IP Routing Information Base (RIB) and Forwarding
Information Base (FIB) state on ANs can be easily controlled in the
listed access topologies by using simple IP routing configuration
with either static routes or dedicated access IGP. Note that in all
of the above topologies, AGNs act as the access area border routers
(access ABRs) connecting the access topology to the rest of the
network. Hence, in many cases, it is sufficient for ANs to have a
default route pointing towards AGNs in order to achieve complete
network connectivity from ANs to the network.
<span class="grey">Beckhaus, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
However, the amount of MPLS forwarding state requires additional
consideration. In general, MPLS routers implement LDP Downstream
Unsolicited (LDP DU) label advertisements [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] and advertise
MPLS labels for all valid routes in their RIB tables. This is seen
as an inadequate approach for ANs, which require a small subset of
the total routes (and associated labels) based on the required
connectivity for the provisioned services. Although filters can be
applied to those LDP DU label advertisements, it is not seen as a
suitable tool to facilitate any-to-any AN-driven connectivity between
access and the rest of the MPLS network.
This document describes an AN-driven "subscription model" for label
distribution in the access network. The approach relies on the
standard LDP DoD label advertisements as specified in [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>]. LDP
DoD enables on-demand label distribution ensuring that only required
labels are requested, provided, and installed. Procedures described
in this document are equally applicable to LDP IPv4 and IPv6 address
families. For simplicity, the document provides examples based on
the LDP IPv4 address family.
The following sections describe a set of reference access topologies
considered for LDP DoD usage and their associated IP routing
configurations, followed by LDP DoD use cases and LDP DoD procedures
in the context of Seamless MPLS design.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="grey">Beckhaus, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Reference Topologies</span>
LDP DoD use cases are described in the context of a generic reference
end-to-end network topology based on Seamless MPLS design
[<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>] as shown in Figure 1.
+-------+ +-------+ +------+ +------+
---+ AGN11 +--+ AGN21 +--+ ABR1 +--+ LSR1 +--> to LSR/AGN
+--------+/ +-------+ +-------+ +------+ +------+
| Access | \/ \/
| Network| /\ /\
+--------+ +-------+ +-------+ +------+ +------+
\---+ AGN12 +--+ AGN22 +--+ ABR2 +--+ LSR2 +--> to LSR/AGN
+-------+ +-------+ +------+ +------+
static routes
or access IGP IGP area IGP area
<----Access----><--Aggregation Domain--><----Core----->
<------------------------- MPLS ---------------------->
Figure 1: Seamless MPLS End-to-End Reference Network Topology
The access network is either single- or dual-homed to AGN1x, with
either a single parallel link or multiple parallel links to AGN1x.
Seamless MPLS access network topologies can range from a single- or
dual-homed access node to a chain or ring of access nodes, and it can
use either static routing or access IGP (IS-IS or OSPF). The
following sections describe reference access topologies in more
detail.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Access Topologies with Static Routing</span>
In most cases, access nodes connect to the rest of the network using
very simple topologies. Here, static routing is sufficient to
provide the required IP connectivity. The following topologies are
considered for use with static routing and LDP DoD:
a. [I1] topology - a single AN homed to a single AGN.
b. [I] topology - multiple ANs daisy-chained to a single AGN.
c. [V] topology - a single AN dual-homed to two AGNs.
d. [U2] topology - two ANs dual-homed to two AGNs.
e. [Y] topology - multiple ANs daisy-chained to two AGNs.
<span class="grey">Beckhaus, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
The reference static routing and LDP configuration for [V] access
topology is shown in Figure 2. The same static routing and LDP
configuration also applies to the [I1] topology.
+----+ +-------+
|AN1 +------------------------+ AGN11 +-------
| +-------\ /-----------+ +-\ /
+----+ \ / +-------+ \ /
\/ \/
/\ /\
+----+ / \ +-------+ / \
|AN2 +-------/ \-----------+ AGN12 +-/ \
| +------------------------+ +-------
+----+ +-------+
--(u)-> <-(d)--
<----- static routing -------> <------ IGP ------>
<---- LDP DU ----->
<--------- LDP DoD ----------> <-- labeled BGP -->
(u) static routes: 0/0 default, (optional) /32 routes
(d) static routes: AN loopbacks
Figure 2: [V] Access Topology with Static Routes
In line with the Seamless MPLS design, static routes configured on
AGN1x and pointing towards the access network are redistributed in
either IGP or BGP labeled IP routes [<a href="./rfc3107" title=""Carrying Label Information in BGP-4"">RFC3107</a>].
<span class="grey">Beckhaus, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
The reference static routing and LDP configuration for [U2] access
topology is shown in Figure 3.
+----+ +-------+
(d1) |AN1 +------------------------+ AGN11 +-------
| | + + +-\ /
v +-+--+ +-------+ \ /
| \/
| /\
^ +-+--+ +-------+ / \
| |AN2 + + AGN12 +-/ \
(d2) | +------------------------+ +-------
+----+ +-------+
--(u)-> <-(d)--
<----- static routing -------> <------ IGP ------>
<---- LDP DU ----->
<--------- LDP DoD ----------> <-- labeled BGP -->
(u) static route 0/0 default, (optional) /32 routes
(d) static route for AN loopbacks
(d1) static route for AN2 loopback and 0/0 default with
lower preference
(d2) static route for AN1 loopback and 0/0 default with
lower preference
Figure 3: [U2] Access Topology with Static Routes
<span class="grey">Beckhaus, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
The reference static routing and LDP configuration for [Y] access
topology is shown in Figure 4. The same static routing and LDP
configuration also applies to the [I] topology.
+-------+
| |---/
/----+ AGN11 |
+----+ +----+ +----+ / | |---\
| | | | | +----/ +-------+
|ANn +...|AN2 +---+AN1 |
| | | | | +----\ +-------+
+----+ +----+ +----+ \ | |---/
\----+ AGN12 |
<-(d2)-- <-(d1)-- | |---\
--(u)-> --(u)-> --(u)-> +-------+
<-(d)--
<------- static routing --------> <------ IGP ------>
<---- LDP DU ----->
<----------- LDP DoD -----------> <-- labeled BGP -->
(u) static routes: 0/0 default, (optional) /32 routes
(d) static routes: AN loopbacks [1..n]
(d1) static routes: AN loopbacks [2..n]
(d2) static routes: AN loopbacks [3..n]
Figure 4: [Y] Access Topology with Static Routes
Note that in all of the above topologies, parallel Equal-Cost
Multipath (ECMP) (or Layer 2 Link Aggregation Group (L2 LAG)) links
can be used between the nodes.
ANs support Inter-area LDP [<a href="./rfc5283" title=""LDP Extension for Inter-Area Label Switched Paths (LSPs)"">RFC5283</a>] in order to use the IP default
route to match the LDP Forwarding Equivalence Class (FEC) advertised
by AGN1x and other ANs.
<span class="grey">Beckhaus, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Access Topologies with Access IGP</span>
A dedicated access IGP instance is used in the access network to
perform the internal routing between AGN1x and connected AN devices.
Examples of such an IGP could be IS-IS, OSPFv2 and v3, or RIPv2 and
RIPng. This access IGP instance is distinct from the IGP of the
aggregation domain.
The following topologies are considered for use with access IGP
routing and LDP DoD:
a. [U] topology - multiple ANs chained in an open ring and dual-
homed to two AGNs.
b. [Y] topology - multiple ANs daisy-chained via a hub-AN to two
AGNs.
The reference access IGP and LDP configuration for [U] access
topology is shown in Figure 5.
+-------+
+-----+ +-----+ +----+ | +---/
| AN3 |---| AN2 |---|AN1 +-----+ AGN11 |
+-----+ +-----+ +----+ | +---\
. +-------+
.
. +-------+
+-----+ +-----+ +----+ | +---/
|ANn-2|---|ANn-1|---|ANn +-----+ AGN12 |
+-----+ +-----+ +----+ | +---\
+-------+
<---------- access IGP ------------> <------ IGP ------>
<---- LDP DU ----->
<------------ LDP DoD -------------> <-- labeled BGP -->
Figure 5: [U] Access Topology with Access IGP
<span class="grey">Beckhaus, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
The reference access IGP and LDP configuration for [Y] access
topology is shown in Figure 6.
+-------+
| |---/
/----+ AGN11 |2
+----+ +----+ +----+ / | |---\
| | | | | +----/ +-------+
|ANn +...|AN2 +---+AN1 |
| | | | | +----\ +-------+
+----+ +----+ +----+ \ | |---/
\----+ AGN12 |
| |---\
+-------+
<---------- access IGP ------------> <------ IGP ------>
<---- LDP DU ----->
<------------ LDP DoD -------------> <-- labeled BGP -->
Figure 6: [Y] Access Topology with Access IGP
Note that in all of the above topologies, parallel ECMP (or L2 LAG)
links can be used between the nodes.
In both of the above topologies, ANs (ANn ... AN1) and AGN1x share
the access IGP and advertise their IPv4 and IPv6 loopbacks and link
addresses. AGN1x advertises a default route into the access IGP.
ANs support Inter-area LDP [<a href="./rfc5283" title=""LDP Extension for Inter-Area Label Switched Paths (LSPs)"">RFC5283</a>] in order to use the IP default
route for matching the LDP FECs advertised by AGN1x or other ANs.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. LDP DoD Use Cases</span>
LDP DoD use cases described in this document are based on the
Seamless MPLS scenarios listed in Seamless MPLS design
[<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>]. This section illustrates these use cases focusing
on services provisioned on the access nodes and clarifies expected
LDP DoD operation on the AN and AGN1x devices. Two representative
service types are used to illustrate the service use cases: MPLS
Pseudowire Edge-to-Edge (PWE3) [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>] and BGP/MPLS IP VPN
[<a href="./rfc4364" title=""BGP/MPLS IP Virtual Private Networks (VPNs)"">RFC4364</a>].
Described LDP DoD operations apply equally to all reference access
topologies described in <a href="#section-2">Section 2</a>. Operations that are specific to
certain access topologies are called out explicitly.
References to upstream and downstream nodes are made in line with the
definition of upstream and downstream LSRs [<a href="./rfc3031" title=""Multiprotocol Label Switching Architecture"">RFC3031</a>].
<span class="grey">Beckhaus, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Initial Network Setup</span>
An access node is commissioned without any services provisioned on
it. The AN can request labels for loopback addresses of any AN, AGN,
or other nodes within the Seamless MPLS network for operational and
management purposes. It is assumed that AGN1x has the required
IP/MPLS configuration for network-side connectivity in line with
Seamless MPLS design [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>].
LDP sessions are configured between adjacent ANs and AGN1x using
their respective loopback addresses.
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. AN with Static Routing</span>
If access static routing is used, ANs are provisioned with the
following static IP routing entries (topology references from
<a href="#section-2">Section 2</a> are listed in square brackets):
a. [I1, V, U2] - Static default route 0/0 pointing to links
connected to AGN1x. Requires support for Inter-area LDP
[<a href="./rfc5283" title=""LDP Extension for Inter-Area Label Switched Paths (LSPs)"">RFC5283</a>].
b. [U2] - Static /32 routes pointing to the other AN. Lower
preference static default route 0/0 pointing to links connected
to the other AN. Requires support for Inter-area LDP [<a href="./rfc5283" title=""LDP Extension for Inter-Area Label Switched Paths (LSPs)"">RFC5283</a>].
c. [I, Y] - Static default route 0/0 pointing to links leading
towards AGN1x. Requires support for Inter-area LDP [<a href="./rfc5283" title=""LDP Extension for Inter-Area Label Switched Paths (LSPs)"">RFC5283</a>].
d. [I, Y] - Static /32 routes to all ANs in the daisy-chain pointing
to links towards those ANs.
e. [I1, V, U2] - Optional - Static /32 routes for specific nodes
within the Seamless MPLS network, pointing to links connected to
AGN1x.
f. [I, Y] - Optional - Static /32 routes for specific nodes within
the Seamless MPLS network, pointing to links leading towards
AGN1x.
The upstream AN/AGN1x requests labels over an LDP DoD session(s) from
downstream AN/AGN1x for configured static routes if those static
routes are configured with an LDP DoD request policy and if they are
pointing to a next hop selected by routing. It is expected that all
configured /32 static routes to be used for LDP DoD are configured
with such a policy on an AN/AGN1x.
<span class="grey">Beckhaus, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
The downstream AN/AGN1x responds to the Label Request from the
upstream AN/AGN1x with a label mapping if the requested route is
present in its RIB and there is a valid label binding from its
downstream neighbor or if it is the egress node. In such a case, the
downstream AN/AGN1x installs the advertised label as an incoming
label in its label information base (LIB) and its label forwarding
information base (LFIB). The upstream AN/AGN1x also installs the
received label as an outgoing label in its LIB and LFIB. If the
downstream AN/AGN1x does have the route present in its RIB, but does
not have a valid label binding from its downstream neighbor, it
forwards the request to its downstream neighbor.
In order to facilitate ECMP and IP Fast Reroute (IPFRR) Loop-Free
Alternate (LFA) local-repair [<a href="./rfc5286" title=""Basic Specification for IP Fast Reroute: Loop-Free Alternates"">RFC5286</a>], the upstream AN/AGN1x also
sends LDP DoD Label Requests to alternate next hops per its RIB, and
installs received labels as alternate entries in its LIB and LFIB.
The AGN1x on the network side can use BGP labeled IP routes [<a href="./rfc3107" title=""Carrying Label Information in BGP-4"">RFC3107</a>]
in line with the Seamless MPLS design [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>]. In such a
case, AGN1x will redistribute its static routes pointing to local ANs
into BGP labeled IP routes to facilitate network-to-access traffic
flows. Likewise, to facilitate access-to-network traffic flows,
AGN1x will respond to access-originated LDP DoD Label Requests with
label mappings based on its BGP labeled IP routes reachability for
requested FECs.
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. AN with Access IGP</span>
If access IGP is used, an AN(s) advertises its loopbacks over the
access IGP with configured metrics. The AGN1x advertises a default
route over the access IGP.
Routers request labels over LDP DoD session(s) according to their
needs for MPLS connectivity (via Label Switching Paths (LSPs)). In
particular, if AGNs, as per Seamless MPLS design [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>],
redistribute routes from the IGP into BGP labeled IP routes
[<a href="./rfc3107" title=""Carrying Label Information in BGP-4"">RFC3107</a>], they request labels over LDP DoD session(s) for those
routes.
Identical to the static route case, the downstream AN/AGN1x responds
to the Label Request from the upstream AN/AGN1x with a label mapping
(if the requested route is present in its RIB and there is a valid
label binding from its downstream neighbor), and installs the
advertised label as an incoming label in its LIB and LFIB. The
upstream AN/AGN1x also installs the received label as an outgoing
label in its LIB and LFIB.
<span class="grey">Beckhaus, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
Identical to the static route case, in order to facilitate ECMP and
IPFRR LFA local-repair, the upstream AN/AGN1x also sends LDP DoD
Label Requests to alternate next hops per its RIB, and it installs
received labels as alternate entries in its LIB and LFIB.
The AGN1x on the network side can use labeled BGP [<a href="./rfc3107" title=""Carrying Label Information in BGP-4"">RFC3107</a>] in line
with Seamless MPLS design [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>]. In such a case, AGN1x
will redistribute routes received over the access IGP (and pointing
to local ANs), into BGP labeled IP routes to facilitate network-to-
access traffic flows. Likewise, to facilitate access-to-network
traffic flows, the AGN1x will respond to access-originated LDP DoD
Label Requests with label mappings based on its BGP labeled IP routes
reachability for requested FECs.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Service Provisioning and Activation</span>
Following the initial setup phase described in <a href="#section-3.1">Section 3.1</a>, a
specific access node, referred to as AN*, is provisioned with a
network service. AN* relies on LDP DoD to request the required MPLS
LSP(s) label(s) from the downstream AN/AGN1x node(s). Note that LDP
DoD operations are service agnostic; that is, they are the same
independently of the services provisioned on the AN*.
For illustration purposes, two service types are described: MPLS PWE3
[<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>] service and BGP/MPLS IPVPN [<a href="./rfc4364" title=""BGP/MPLS IP Virtual Private Networks (VPNs)"">RFC4364</a>].
MPLS PWE3 service: For description simplicity, it is assumed that a
single segment pseudowire is signaled using targeted LDP (tLDP)
FEC128 (0x80), and it is provisioned with the pseudowire ID and the
loopback IPv4 address of the destination node. The following IP/MPLS
operations need to be completed on the AN* to successfully establish
such PWE3 service:
a. LSP labels for destination /32 FEC (outgoing label) and the local
/32 loopback (incoming label) need to be signaled using LDP DoD.
b. A tLDP session over an associated TCP/IP connection needs to be
established to the PWE3 destination Provider Edge (PE). This is
triggered either by an explicit tLDP session configuration on the
AN* or automatically at the time of provisioning the PWE3
instance.
c. Local and remote PWE3 labels for specific FEC128 PW ID need to be
signaled using tLDP and PWE3 signaling procedures [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>].
d. Upon successful completion of the above operations, AN* programs
its RIB/LIB and LFIB tables and activates the MPLS PWE3 service.
<span class="grey">Beckhaus, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
Note: Only minimum operations applicable to service connectivity have
been listed. Other non-IP/non-MPLS connectivity operations that are
required for successful service provisioning and activation are out
of scope in this document.
BGP/MPLS IPVPN service: For description simplicity, it is assumed
that the AN* is provisioned with a unicast IPv4 IPVPN service (VPNv4
for short) [<a href="./rfc4364" title=""BGP/MPLS IP Virtual Private Networks (VPNs)"">RFC4364</a>]. The following IP/MPLS operations need to be
completed on the AN* to successfully establish VPNv4 service:
a. BGP peering sessions with associated TCP/IP connections need to
be established with the remote destination VPNv4 PEs or Route
Reflectors.
b. Based on configured BGP policies, VPNv4 BGP Network Layer
Reachability Information (NLRI) needs to be exchanged between AN*
and its BGP peers.
c. Based on configured BGP policies, VPNv4 routes need to be
installed in the AN* VPN Routing and Forwarding (VRF) RIB and
FIB, with corresponding BGP next hops.
d. LSP labels for destination BGP next-hop /32 FEC (outgoing label)
and the local /32 loopback (incoming label) need to be signaled
using LDP DoD.
e. Upon successful completion of above operations, AN* programs its
RIB/LIB and LFIB tables, and activates the BGP/MPLS IPVPN
service.
Note: Only minimum operations applicable to service connectivity have
been listed. Other non-IP/-MPLS connectivity operations that are
required for successful service provisioning are out of scope in this
document.
To establish an LSP for destination /32 FEC for any of the above
services, AN* looks up its local routing table for a matching route
and selects the best next hop(s) and associated outgoing link(s).
If a label for this /32 FEC is not already installed based on the
configured static route with LDP DoD request policy or access IGP RIB
entry, AN* sends an LDP DoD label mapping request. A downstream
AN/AGN1x LSR(s) checks its RIB for presence of the requested /32 and
associated valid outgoing label binding, and if both are present,
replies with its label for this FEC and installs this label as
incoming in its LIB and LFIB. Upon receiving the label mapping, the
AN* accepts this label based on the exact route match of the
advertised FEC and route entry in its RIB or based on the longest
<span class="grey">Beckhaus, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
match in line with Inter-area LDP [<a href="./rfc5283" title=""LDP Extension for Inter-Area Label Switched Paths (LSPs)"">RFC5283</a>]. If the AN* accepts the
label, it installs it as an outgoing label in its LIB and LFIB.
In access topologies [V] and [Y], if AN* is dual-homed to two AGN1x
and routing entries for these AGN1x's are configured as equal-cost
paths, AN* sends LDP DoD Label Requests to both AGN1x devices and
installs all received labels in its LIB and LFIB.
In order for AN* to implement IPFRR LFA local-repair, AN* also sends
LDP DoD Label Requests to alternate next hops per its RIB, and
installs received labels as alternate entries in its LIB and LFIB.
When forwarding PWE3 or VPNv4 packets, AN* chooses the LSP label
based on the locally configured static /32 or default route or
default route signaled via access IGP. If a route is reachable via
multiple interfaces to AGN1x nodes and the route has multiple equal-
cost paths, AN* implements ECMP functionality. This involves AN*
using a hash-based load-balancing mechanism and sending the PWE3 or
VPNv4 packets in a flow-aware manner with appropriate LSP labels via
all equal-cost links.
The ECMP mechanism is applicable in an equal manner to parallel links
between two network elements and multiple paths towards the
destination. The traffic demand is distributed over the available
paths.
The AGN1x on the network side can use labeled BGP [<a href="./rfc3107" title=""Carrying Label Information in BGP-4"">RFC3107</a>] in line
with Seamless MPLS design [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>]. In such a case, the AGN1x
will redistribute its static routes (or routes received from the
access IGP) pointing to local ANs into BGP labeled IP routes to
facilitate network-to-access traffic flows. Likewise, to facilitate
access-to-network traffic flows, the AGN1x will respond to access-
originated LDP DoD Label Requests with label mappings based on its
BGP labeled IP routes reachability for requested FECs.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Service Changes and Decommissioning</span>
Whenever the AN* service gets decommissioned or changed and
connectivity to a specific destination is no longer required, the
associated MPLS LSP label resources are to be released on AN*.
MPLS PWE3 service: If the PWE3 service gets decommissioned and it is
the last PWE3 to a specific destination node, the tLDP session is no
longer needed and is to be terminated (automatically or by
configuration). The MPLS LSP(s) to that destination is no longer
needed either.
<span class="grey">Beckhaus, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
BGP/MPLS IPVPN service: Deletion of a specific VPNv4 (VRF) instance
via local or remote reconfiguration can result in a specific BGP next
hop(s) no longer being needed. The MPLS LSP(s) to that destination
is no longer needed either.
In all of the above cases, the following operations related to LDP
DoD apply:
o If the /32 FEC label for the aforementioned destination node was
originally requested based on either tLDP session configuration
and default route or required BGP next hop and default route, AN*
deletes the label from its LIB and LFIB, and releases it from the
downstream AN/AGN1x by using LDP DoD procedures.
o If the /32 FEC label was originally requested based on the static
/32 route configuration with LDP DoD request policy, the label is
retained by AN*.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Service Failure</span>
A service instance can stop being operational due to a local or
remote service failure event.
In general, unless the service failure event modifies required MPLS
connectivity, there is no impact on the LDP DoD operation.
If the service failure event does modify the required MPLS
connectivity, LDP DoD operations apply as described in Sections <a href="#section-3.2">3.2</a>
and 3.3.
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. Network Transport Failure</span>
A number of different network events can impact services on AN*. The
following sections describe network event types that impact LDP DoD
operation on AN and AGN1x nodes.
<span class="h4"><a class="selflink" id="section-3.5.1" href="#section-3.5.1">3.5.1</a>. General Notes</span>
If service on any of the ANs is affected by any network failure and
there is no network redundancy, the service goes into a failure
state. Upon recovery from network failure, the service is to be
re-established automatically.
The following additional LDP-related functions need to be supported
to comply with Seamless MPLS [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>] fast service restoration
requirements:
<span class="grey">Beckhaus, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
a. Local-repair: AN and AGN1x support local-repair for adjacent link
or node failure for access-to-network, network-to-access, and
access-to-access traffic flows. Local-repair is to be
implemented by using either IPFRR LDP LFA, simple ECMP, or
primary/backup switchover upon failure detection.
b. LDP session protection: LDP sessions are configured with LDP
session protection to avoid delay upon the recovery from link
failure. LDP session protection ensures that FEC label binding
is maintained in the control plane as long as the LDP session
stays up.
c. IGP-LDP synchronization: If access IGP is used, LDP sessions
between ANs, and between ANs and AGN1x, are configured with IGP-
LDP synchronization to avoid unnecessary traffic loss in case the
access IGP converged before LDP and there is no LDP label binding
to the best downstream next hop.
<span class="h4"><a class="selflink" id="section-3.5.2" href="#section-3.5.2">3.5.2</a>. AN Failure</span>
If the AN fails, adjacent AN/AGN1x nodes remove all routes pointing
to the failed node from their RIB tables (including /32 loopback
belonging to the failed AN and any other routes reachable via the
failed AN). In turn, this triggers the removal of associated
outgoing /32 FEC labels from their LIB and LFIB tables.
If access IGP is used, the AN failure will be propagated via IGP link
updates across the access topology.
If a specific /32 FEC(s) is no longer reachable from those
ANs/AGN1x's, they also send LDP Label Withdraw messages to their
upstream LSRs to notify them about the failure, and remove the
associated incoming label(s) from their LIB and LFIB tables.
Upstream LSRs, upon receiving a Label Withdraw, remove the signaled
labels from their LIB/LFIB tables, and propagate LDP Label Withdraws
across their upstream LDP DoD sessions.
In the [U] topology, there may be an alternative path to routes
previously reachable via the failed AN. In this case, adjacent
AN/AGN1x pairs invoke local-repair (IPFRR LFA, ECMP) and switch over
to an alternate next hop to reach those routes.
AGN1x is notified about the AN failure via access IGP (if used)
and/or cascaded LDP DoD Label Withdraw(s). AGN1x implements all
relevant global-repair IP/MPLS procedures to propagate the AN failure
towards the core network. This involves removing associated routes
(in the access IGP case) and labels from its LIB and LFIB tables, and
<span class="grey">Beckhaus, et al. Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
propagating the failure on the network side using labeled BGP and/or
core IGP/LDP DU procedures.
Upon the AN coming back up, adjacent AN/AGN1x nodes automatically add
routes pointing to recovered links based on the configured static
routes or access IGP adjacency and link state updates. This is then
followed by LDP DoD label signaling and subsequent binding and
installation of labels in LIB and LFIB tables.
<span class="h4"><a class="selflink" id="section-3.5.3" href="#section-3.5.3">3.5.3</a>. AN/AGN Link Failure</span>
Depending on the access topology and the failed link location,
different cases apply to the network operation after AN link failure
(topology references from <a href="#section-2">Section 2</a> in square brackets):
a. [all] - link failed, but at least one ECMP parallel link remains.
Nodes on both sides of the failed link stop using the failed link
immediately (local-repair) and keep using the remaining ECMP
parallel links.
b. [I1, I, Y] - link failed, and there are no ECMP or alternative
links and paths. Nodes on both sides of the failed link remove
routes pointing to the failed link immediately from the RIB,
remove associated labels from their LIB and LFIB tables, and send
LDP Label Withdraw(s) to their upstream LSRs.
c. [U2, U, V, Y] - link failed, but at least one ECMP or alternate
path remains. The AN/AGN1x node stops using the failed link and
immediately switches over (local-repair) to the remaining ECMP
path or alternate path. The AN/AGN1x removes affected next hops
and labels. If there is an AGN1x terminating the failed link, it
immediately removes routes pointing to the failed link from the
RIB, removes any associated labels from the LIB and LFIB tables,
and propagates the failure on the network side using labeled BGP
and/or core IGP procedures.
If access IGP is used, AN/AGN1x link failure will be propagated via
IGP link updates across the access topology.
LDP DoD will also propagate the link failure by sending Label
Withdraws to upstream AN/AGN1x nodes, and Label Release messages to
downstream AN/AGN1x nodes.
<span class="grey">Beckhaus, et al. Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
<span class="h4"><a class="selflink" id="section-3.5.4" href="#section-3.5.4">3.5.4</a>. AGN Failure</span>
If an AGN1x fails adjacent access then, depending on the access
topology, the following cases apply to the network operation
(topology references from <a href="#section-2">Section 2</a> are shown in square brackets):
a. [I1, I] - ANs are isolated from the network - An AN adjacent to
the failure immediately removes routes pointing to the failed
AGN1x from the RIB, removes associated labels from the LIB and
LFIB tables, and sends LDP Label Withdraw message(s) to its
upstream neighbors. If access IGP is used, an IGP link update is
sent.
b. [U2, U, V, Y] - at least one ECMP or alternate path remains. AN
adjacent to failed AGN1x stops using the failed link and
immediately switches over (local-repair) to the remaining ECMP
path or alternate path by following LDP [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] procedures.
(Appendix A.1.7 "Detect Change in FEC Next Hop")
Network-side procedures for handling AGN1x failure have been
described in Seamless MPLS [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>].
<span class="h4"><a class="selflink" id="section-3.5.5" href="#section-3.5.5">3.5.5</a>. AGN Network-Side Reachability Failure</span>
If AGN1x loses network reachability to a specific destination or set
of network-side destinations, AGN1x sends LDP Label Withdraw messages
to its upstream ANs, withdrawing labels for all affected /32 FECs.
Upon receiving those messages, ANs remove those labels from their LIB
and LFIB tables, and use alternative LSPs instead (if available) as
part of global-repair.
If access IGP is used, and AGN1x gets completely isolated from the
core network, it stops advertising the default route 0/0 into the
access IGP.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. LDP DoD Procedures</span>
All LDP Downstream-on-Demand implementations follow the Label
Distribution Protocol as specified in [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>]. This section does
not update [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] procedures, but illustrates LDP DoD operations
in the context of use cases identified in <a href="#section-3">Section 3</a> in this document,
for information only.
In the MPLS architecture [<a href="./rfc3031" title=""Multiprotocol Label Switching Architecture"">RFC3031</a>], network traffic flows from the
upstream LSR to the downstream LSR. The use cases in this document
rely on the downstream assignment of labels, where labels are
assigned by the downstream LSR and signaled to the upstream LSR as
shown in Figure 7.
<span class="grey">Beckhaus, et al. Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
+----------+ +------------+
| upstream | | downstream |
------+ LSR +------+ LSR +----
traffic | | | | address
source +----------+ +------------+ (/32 for IPv4)
traffic
label distribution for IPv4 FEC destination
<-------------------------
traffic flow
------------------------->
Figure 7: LDP Label Assignment Direction
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. LDP Label Distribution Control and Retention Modes</span>
The LDP specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] defines two modes for label
distribution control, following the definitions in the MPLS
architecture [<a href="./rfc3031" title=""Multiprotocol Label Switching Architecture"">RFC3031</a>]:
o Independent mode: An LSR recognizes a particular FEC and makes a
decision to bind a label to the FEC independently from
distributing that label binding to its label distribution peers.
A new FEC is recognized whenever a new route becomes valid on the
LSR.
o Ordered mode: An LSR needs to bind a label to a particular FEC if
it knows how to forward packets for that FEC (i.e., it has a route
corresponding to that FEC) and if it has already received at least
one Label Request message from an upstream LSR.
Using independent label distribution control with LDP DoD and access
static routing would prevent the access LSRs from propagating label
binding failure along the access topology, making it impossible for
an upstream LSR to be notified about the downstream failure and for
an application using the LSP to switch over to an alternate path,
even if such a path exists.
The LDP specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] defines two modes for label
retention, following the definitions in the MPLS architecture
[<a href="./rfc3031" title=""Multiprotocol Label Switching Architecture"">RFC3031</a>]:
o Conservative label retention mode: If operating in DoD mode, an
LSR will request label mappings only from the next-hop LSR
according to routing. The main advantage of the conservative
label retention mode is that only the labels that are required for
the forwarding of data are allocated and maintained. This is
particularly important in LSRs where the label space is inherently
<span class="grey">Beckhaus, et al. Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
limited, such as in an ATM switch. A disadvantage of the
conservative label retention mode is that if routing changes the
next hop for a given destination, a new label must be obtained
from the new next hop before labeled packets can be forwarded.
o Liberal label retention mode: When operating in DoD mode with
liberal label retention mode, an LSR might choose to request label
mappings for all known prefixes from all peer LSRs. The main
advantage of the liberal label retention mode is that reaction to
routing changes can be quick because labels already exist. The
main disadvantage of the liberal label retention mode is that
unneeded label mappings are distributed and maintained.
Note that the conservative label retention mode would prevent LSRs
from requesting and maintaining label mappings for any backup routes
that are not used for forwarding. In turn, this would prevent the
access LSRs (AN and AGN1x nodes) from implementing any local
protection schemes that rely on using alternate next hops in case of
the primary next-hop failure. Such schemes include IPFRR LFA if
access IGP is used, or a primary and backup static route
configuration. Using LDP DoD in combination with liberal label
retention mode allows the LSR to request labels for the specific FEC
from primary next-hop LSR(s) and the alternate next-hop LSR(s) for
this FEC.
Note that even though LDP DoD operates in a liberal label retention
mode, if used with access IGP and if no LFA exists, the LDP DoD will
introduce additional delay in traffic restoration as the labels for
the new next hop will be requested only after the access IGP
convergence.
Adhering to the overall design goals of Seamless MPLS
[<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>], specifically achieving a large network scale without
compromising fast service restoration, all access LSRs (AN and AGN1x
nodes) use LDP DoD advertisement mode with:
o Ordered label distribution control: enables propagation of label
binding failure within the access topology.
o Liberal label retention mode: enables pre-programming of alternate
next hops with associated FEC labels.
In Seamless MPLS [<a href="#ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>], an AGN1x acts as an access ABR
connecting access and metro domains. To enable failure propagation
between those domains, the access ABR implements ordered label
distribution control when redistributing routes/FECs between the
<span class="grey">Beckhaus, et al. Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
access side (using LDP DoD and static or access IGP) and the network
side (using labeled BGP [<a href="./rfc3107" title=""Carrying Label Information in BGP-4"">RFC3107</a>] or core IGP with LDP Downstream
Unsolicited label advertisements).
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. LDP DoD Session Negotiation</span>
An access LSR/ABR proposes the DoD label advertisement by setting the
"A" value to 1 in the Common Session Parameters TLV of the
Initialization message. The rules for negotiating the label
advertisement mode are specified in the LDP specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>].
To establish a DoD session between the two access LSR/ABRs, both
propose the DoD label advertisement mode in the Initialization
message. If the access LSR only supports LDP DoD and the access ABR
proposes the Downstream Unsolicited mode, the access LSR sends a
Notification message with status "Session Rejected/Parameters
Advertisement Mode" and then closes the LDP session as specified in
the LDP specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>].
If an access LSR is acting in an active role, it re-attempts the LDP
session immediately. If the access LSR receives the same Downstream
Unsolicited mode again, it follows the exponential backoff algorithm
as defined in the LDP specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] with a delay of 15
seconds and subsequent delays growing to a maximum delay of 2
minutes.
In case a PWE3 service is required between the adjacent access
LSR/ABR, and LDP DoD has been negotiated for IPv4 and IPv6 FECs, the
same LDP session is used for PWE3 FECs. Even if the LDP DoD label
advertisement has been negotiated for IPv4 and IPv6 LDP FECs as
described earlier, the LDP session uses a Downstream Unsolicited
label advertisement for PWE3 FECs as specified in PWE3 LDP [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>].
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Label Request Procedures</span>
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. Access LSR/ABR Label Request</span>
The upstream access LSR/ABR will request label bindings from an
adjacent downstream access LSR/ABR based on the following trigger
events:
a. An access LSR/ABR is configured with /32 static route with LDP
DoD Label Request policy in line with the initial network setup
use case described in <a href="#section-3.1">Section 3.1</a>.
b. An access LSR/ABR is configured with a service in line with
service use cases described in Sections <a href="#section-3.2">3.2</a> and <a href="#section-3.3">3.3</a>.
<span class="grey">Beckhaus, et al. Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
c. Configuration with access static routes: An access LSR/ABR link
to an adjacent node comes up, and an LDP DoD session is
established. In this case, the access LSR sends Label Request
messages for all /32 static routes configured with an LDP DoD
policy and all /32 routes related to provisioned services that
are covered by the default route.
d. Configuration with access IGP: An access LSR/ABR link to an
adjacent node comes up, and an LDP DoD session is established.
In this case, the access LSR sends Label Request messages for all
/32 routes learned over the access IGP and all /32 routes related
to provisioned services that are covered by access IGP routes.
e. In all above cases, requests are sent to any next-hop LSRs and
alternate LSRs.
The downstream access LSR/ABR will respond with a Label Mapping
message with a non-null label if any of the below conditions are met:
a. Downstream access LSR/ABR: The requested FEC is an IGP or static
route, and there is an LDP label already learned from the next-
next-hop downstream LSR (by LDP DoD or LDP DU). If there is no
label for the requested FEC and there is an LDP DoD session to
the next-next-hop downstream LSR, the downstream LSR sends a
Label Request message for the same FEC to the next-next-hop
downstream LSR. In such a case, the downstream LSR will respond
back to the requesting upstream access LSR only after getting a
label from the next-next-hop downstream LSR peer.
b. Downstream access ABR only: The requested FEC is a BGP labeled IP
routes [<a href="./rfc3107" title=""Carrying Label Information in BGP-4"">RFC3107</a>], and this BGP route is the best selected for
this FEC.
The downstream access LSR/ABR can respond with a label mapping with
an explicit-null or implicit-null label if it is acting as an egress
for the requested FEC, or it can respond with a "No Route"
notification if no route exists.
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. Label Request Retry</span>
Following the LDP specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>], if an access LSR/ABR
receives a "No Route" notification in response to its Label Request
message, it retries using an exponential backoff algorithm similar to
the backoff algorithm mentioned in the LDP session negotiation
described in <a href="#section-4.2">Section 4.2</a>.
<span class="grey">Beckhaus, et al. Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
If there is no response to the Label Request message sent, the LDP
specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] (Section A.1.1) states that the LSR does not
send another request for the same label to the peer and mandates that
a duplicate Label Request be considered a protocol error and be
dropped by the receiving LSR by sending a Notification message.
Thus, if there is no response from the downstream peer, the access
LSR/ABR does not send a duplicate Label Request message.
If the static route corresponding to the FEC gets deleted or if the
DoD request policy is modified to reject the FEC before receiving the
Label Mapping message, then the access LSR/ABR sends a Label Abort
message to the downstream LSR.
To address the case of slower convergence resulting from described
LDP behavior in line with the LDP specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>], a new LDP
TLV extension is proposed and described in <a href="#section-5">Section 5</a>.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Label Withdraw</span>
If an MPLS label on the downstream access LSR/ABR is no longer valid,
the downstream access LSR/ABR withdraws this FEC/label binding from
the upstream access LSR/ABR with the Label Withdraw message [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>]
with a specified label TLV or with an empty label TLV.
The downstream access LSR/ABR withdraws a label for a specific FEC in
the following cases:
a. If an LDP DoD ingress label is associated with an outgoing label
assigned by a labeled BGP route and this route is withdrawn.
b. If an LDP DoD ingress label is associated with an outgoing label
assigned by LDP (DoD or DU), and the IGP route is withdrawn from
the RIB or the downstream LDP session is lost.
c. If an LDP DoD ingress label is associated with an outgoing label
assigned by LDP (DoD or DU) and the outgoing label is withdrawn
by the downstream LSR.
d. If an LDP DoD ingress label is associated with an outgoing label
assigned by LDP (DoD or DU), the next hop in the route has
changed, and
* there is no LDP session to the new next hop. To minimize the
probability of this, the access LSR/ABR implements LDP-IGP
synchronization procedures as specified in [<a href="./rfc5443" title=""LDP IGP Synchronization"">RFC5443</a>].
<span class="grey">Beckhaus, et al. Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
* there is an LDP session but no label from a downstream LSR.
See note below.
e. If an access LSR/ABR is configured with a policy to reject
exporting label mappings to an upstream LSR.
The upstream access LSR/ABR responds to the Label Withdraw message
with the Label Release message [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>].
After sending the Label Release message to the downstream access
LSR/ABR, the upstream access LSR/ABR resends the Label Request
message, assuming the upstream access LSR/ABR still requires the
label.
The downstream access LSR/ABR withdraws a label if the local route
configuration (e.g., /32 loopback) is deleted.
Note: For any events inducing next-hop change, a downstream access
LSR/ABR attempts to converge the LSP locally before withdrawing the
label from an upstream access LSR/ABR. For example, if the next hop
changes for a particular FEC and if the new next hop allocates labels
by the LDP DoD session, then the downstream access LSR/ABR sends a
Label Request on the new next-hop session. If the downstream access
LSR/ABR doesn't get a label mapping for some duration, then and only
then does the downstream access LSR/ABR withdraw the upstream label.
<span class="h3"><a class="selflink" id="section-4.5" href="#section-4.5">4.5</a>. Label Release</span>
If an access LSR/ABR no longer needs a label for a FEC, it sends a
Label Release message [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] to the downstream access LSR/ABR with
or without the label TLV.
If an upstream access LSR/ABR receives an unsolicited label mapping
on a DoD session, it releases the label by sending a Label Release
message.
The access LSR/ABR sends a Label Release message to the downstream
LSR in the following cases:
a. If it receives a Label Withdraw from the downstream access
LSR/ABR.
b. If the /32 static route with LDP DoD Label Request policy is
deleted.
c. If the service gets decommissioned and there is no corresponding
/32 static route with LDP DoD Label Request policy configured.
<span class="grey">Beckhaus, et al. Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
d. If the next hop in the route has changed and the label does not
point to the best or alternate next hop.
e. If it receives a Label Withdraw from a downstream DoD session.
<span class="h3"><a class="selflink" id="section-4.6" href="#section-4.6">4.6</a>. Local-Repair</span>
To support local-repair with ECMP and IPFRR LFA, the access LSR/ABR
requests labels on both the best next-hop and the alternate next-hop
LDP DoD sessions, as specified in the Label Request procedures in
<a href="#section-4.3">Section 4.3</a>. If remote LFA is enabled, the access LSR/ABR needs a
label from its alternate next hop toward the PQ node and needs a
label from the remote PQ node toward its FEC/destination [<a href="#ref-RLFA" title=""Remote LFA FRR"">RLFA</a>]. If
the access LSR/ABR doesn't already know those labels, it requests
them.
This will enable the access LSR/ABR to pre-program the alternate
forwarding path with the alternate label(s) and invoke the IPFRR LFA
switchover procedure if the primary next-hop link fails.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. LDP Extension for LDP DoD Fast-Up Convergence</span>
In some conditions, the exponential backoff algorithm usage described
in <a href="#section-4.3.2">Section 4.3.2</a> can result in a wait time that is longer than
desired to get a successful LDP label-to-route mapping. An example
is when a specific route is unavailable on the downstream LSR when
the label mapping request from the upstream is received, but later
comes back. In such a case, using the exponential backoff algorithm
can result in a max delay wait time before the upstream LSR sends
another LDP Label Request.
This section describes an extension to the LDP DoD procedure to
address fast-up convergence, and as such is to be treated as a
normative reference. The downstream and upstream LSRs SHOULD
implement this extension if fast-up convergence is desired.
The extension consists of the upstream LSR indicating to the
downstream LSR that the Label Request SHOULD be queued on the
downstream LSR until the requested route is available.
<span class="grey">Beckhaus, et al. Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
To implement this behavior, a new Optional Parameter is defined for
use in the Label Request message:
Optional Parameter Length Value
Queue Request TLV 0 see below
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|1|0| Queue Request (0x0971) | Length (0x00) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
U-bit = 1
Unknown TLV bit. Upon receipt of an unknown TLV, due to the
U-bit being set (=1), the unknown TLV MUST be silently ignored
and the rest of the message processed as if the unknown TLV
did not exist. In case the requested route is not available,
the downstream LSR MUST ignore this unknown TLV and send a
"No Route" notification back. This ensures backward
compatibility.
F-bit = 0
Forward unknown TLV bit. This bit applies only when the U-bit is
set and the LDP message containing the unknown TLV is to be
forwarded. Due to the F-bit being clear (=0), the unknown TLV is
not forwarded with the message.
Type = 0x0971
Queue Request TLV (allocated by IANA).
Length = 0x00
Specifies the length of the Value field in octets.
The specified operation is as follows.
To benefit from the fast-up convergence improvement, the upstream LSR
sends a Label Request message with a Queue Request TLV.
If the downstream LSR supports the Queue Request TLV, it verifies if
a route is available; if so, it replies with a label mapping as per
existing LDP procedures. If the route is not available, the
downstream LSR queues the request and replies as soon as the route
becomes available. In the meantime, it does not send a "No Route"
notification back. When sending a Label Request with the Queue
Request TLV, the upstream LSR does not retry the Label Request
message if it does not receive a reply from its downstream peer.
<span class="grey">Beckhaus, et al. Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
If the upstream LSR wants to abort an outstanding Label Request while
the Label Request is queued in the downstream LSR, the upstream LSR
sends a Label Abort Request message, making the downstream LSR remove
the original request from the queue and send back a Label Request
Aborted notification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>].
If the downstream LSR does not support the Queue Request TLV, and the
requested route is not available, it ignores this unknown TLV and
sends a "No Route" notification back, in line with [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>]. In
this case, the upstream LSR invokes the exponential backoff algorithm
described in <a href="#section-4.3.2">Section 4.3.2</a>, following the LDP specification
[<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>].
This procedure ensures backward compatibility.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. LDP TLV Type</span>
This document uses a new Optional Parameter, Queue Request TLV, in
the Label Request message defined in <a href="#section-5">Section 5</a>. IANA already
maintains a registry of LDP parameters called the "TLV Type Name
Space" registry, as defined by <a href="./rfc5036">RFC 5036</a>. The following assignment
has been made:
TLV type Description
0x0971 Queue Request TLV
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
MPLS LDP DoD deployment in the access network is subject to the same
security threats as any MPLS LDP deployment. It is recommended that
baseline security measures be considered, as described in "Security
Framework for MPLS and GMPLS Networks" [<a href="./rfc5920" title=""Security Framework for MPLS and GMPLS Networks"">RFC5920</a>] and the LDP
specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] including ensuring authenticity and integrity
of LDP messages, as well as protection against spoofing and denial-
of-service attacks.
Some deployments require increased measures of network security if a
subset of access nodes are placed in locations with lower levels of
physical security, e.g., street cabinets (common practice for Very
high bit-rate Digital Subscriber Line (VDSL) access). In such cases,
it is the responsibility of the system designer to take into account
the physical security measures (environmental design, mechanical or
electronic access control, intrusion detection) as well as monitoring
and auditing measures (configuration and Operating System changes,
reloads, route advertisements).
<span class="grey">Beckhaus, et al. Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
But even with all this in mind, the designer still needs to consider
network security risks and adequate measures arising from the lower
level of physical security of those locations.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. LDP DoD Native Security Properties</span>
MPLS LDP DoD operation is request driven, and unsolicited label
mappings are not accepted by upstream LSRs by design. This
inherently limits the potential of an unauthorized third party
injecting unsolicited label mappings on the wire.
This native security property enables an ABR LSR to act as a gateway
to the MPLS network and to control the requests coming from any
access LSR and prevent cases when the access LSR attempts to get
access to an unauthorized FEC or remote LSR after being compromised.
In the event that an access LSR gets compromised and manages to
advertise a FEC belonging to another LSR (e.g., in order to 'steal'
third-party data flows, or breach the privacy of a VPN), such an
access LSR would also have to influence the routing decision for
affected FECs on the ABR LSR to attract the flows. The following
measures need to be considered on an ABR LSR to prevent such an event
from occurring:
a. Access with static routes: An access LSR cannot influence ABR LSR
routing decisions due to the static nature of routing
configuration, a native property of the design.
b. Access with IGP - access FEC "stealing": If the compromised
access LSR is a leaf in the access topology (leaf node in
topologies I1, I, V, Y described earlier), this will not have any
adverse effect, due to the leaf IGP metrics being configured on
the ABR LSR. If the compromised access LSR is a transit LSR in
the access topology (transit node in topologies I, Y, U), it is
only possible for this access LSR to attract traffic destined to
the nodes upstream from it. Such a 'man-in-the-middle attack'
can quickly be detected by upstream access LSRs not receiving
traffic and by the LDP TCP session being lost.
c. Access with IGP - network FEC "stealing": The compromised access
LSR can use IGP to advertise a "stolen" FEC prefix belonging to
the network side. This case can be prevented by giving a better
administrative preference to the BGP labeled IP routes versus
access IGP routes.
In summary, the native properties of MPLS in access design with LDP
DoD prevent a number of security attacks and make their detection
quick and straightforward.
<span class="grey">Beckhaus, et al. Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
The following two sections describe other security considerations
applicable to general MPLS deployments in the access network.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Data-Plane Security</span>
Data-plane security risks applicable to the access MPLS network
include:
a. Labeled packets from a specific access LSR that are sent to an
unauthorized destination.
b. Unlabeled packets that are sent by an access LSR to remote
network nodes.
The following mechanisms apply to MPLS access design with LDP DoD
that address listed data-plane security risks:
1. addressing (a): Access and ABR LSRs do not accept labeled packets
over a particular data link, unless from the access or ABR LSR
perspective this data link is known to attach to a trusted system
based on control-plane security as described in <a href="#section-7.3">Section 7.3</a> and
the top label has been distributed to the upstream neighbor by
the receiving access or ABR LSR.
2. addressing (a) - The ABR LSR restricts network reachability for
access devices to a subset of remote network LSRs, based on
control-plane security as described in <a href="#section-7.3">Section 7.3</a>, FEC filters,
and routing policy.
3. addressing (a): Control-plane authentication as described in
<a href="#section-7.3">Section 7.3</a> is used.
4. addressing (b): The ABR LSR restricts IP network reachability to
and from the access LSR.
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. Control-Plane Security</span>
Similar to Inter-AS MPLS/VPN deployments [<a href="./rfc4364" title=""BGP/MPLS IP Virtual Private Networks (VPNs)"">RFC4364</a>], control-plane
security is a prerequisite for data-plane security.
To ensure control-plane security access, LDP DoD sessions are
established only with LDP peers that are considered trusted from the
local LSR perspective, meaning they are reachable over a data link
that is known to attach to a trusted system based on employed
authentication mechanism(s) on the local LSR.
<span class="grey">Beckhaus, et al. Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
The security of LDP sessions is analyzed in the LDP specification
[<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] and in [<a href="./rfc6952" title=""Analysis of BGP, LDP, PCEP, and MSDP Issues According to the Keying and Authentication for Routing Protocols (KARP) Design Guide"">RFC6952</a>] ("Analysis of BGP, LDP, PCEP, and MSDP
Issues According to the Keying and Authentication for Routing
Protocols (KARP) Design Guide"). Both documents state that LDP is
subject to two different types of attacks: spoofing and denial-of-
service attacks.
The threat of spoofed LDP Hello messages can be reduced by following
guidelines listed in the LDP specification [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>]: accepting Basic
Hellos only on interfaces connected to trusted LSRs, ignoring Basic
Hellos that are not addressed to all routers in this subnet multicast
group, and using access lists. LDP Hello messages can also be
secured using an optional Cryptographic Authentication TLV as
specified in "LDP Hello Cryptographic Authentication" [<a href="#ref-CRYPTO-AUTH">CRYPTO-AUTH</a>]
that further reduces the threat of spoofing during the LDP discovery
phase.
Spoofing during the LDP session communication phase can be prevented
by using the TCP Authentication Option (TCP-AO) [<a href="./rfc5925" title=""The TCP Authentication Option"">RFC5925</a>], which uses
a stronger hashing algorithm, e.g., SHA1 as compared to the
traditionally used MD5 authentication. TCP-AO is recommended as
being more secure as compared to the TCP/IP MD5 authentication option
[<a href="./rfc5925" title=""The TCP Authentication Option"">RFC5925</a>].
The threat of a denial-of-service attack targeting a well-known UDP
port for LDP discovery or a TCP port for LDP session establishment
can be reduced by following the guidelines listed in [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] and in
[<a href="./rfc6952" title=""Analysis of BGP, LDP, PCEP, and MSDP Issues According to the Keying and Authentication for Routing Protocols (KARP) Design Guide"">RFC6952</a>].
Access IGP (if used) and any routing protocols used in the access
network for signaling service routes also need to be secured
following best practices in routing protocol security. Refer to the
KARP IS-IS security analysis document [<a href="#ref-KARP-ISIS">KARP-ISIS</a>] and to [<a href="./rfc6863" title=""Analysis of OSPF Security According to the Keying and Authentication for Routing Protocols (KARP) Design Guide"">RFC6863</a>]
("Analysis of OSPF Security According to the Keying and
Authentication for Routing Protocols (KARP) Design Guide") for
further analysis of security properties of IS-IS and OSPF IGP routing
protocols.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Acknowledgements</span>
The authors would like to thank Nischal Sheth, Nitin Bahadur, Nicolai
Leymann, George Swallow, Geraldine Calvignac, Ina Minei, Eric Gray,
and Lizhong Jin for their suggestions and review. Additional thanks
go to Adrian Farrel for thorough pre-publication review, and to
Stephen Kent for review and guidance specifically for the security
section.
<span class="grey">Beckhaus, et al. Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. References</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC3031">RFC3031</a>] Rosen, E., Viswanathan, A., and R. Callon, "Multiprotocol
Label Switching Architecture", <a href="./rfc3031">RFC 3031</a>, January 2001.
[<a id="ref-RFC4364">RFC4364</a>] Rosen, E. and Y. Rekhter, "BGP/MPLS IP Virtual Private
Networks (VPNs)", <a href="./rfc4364">RFC 4364</a>, February 2006.
[<a id="ref-RFC4447">RFC4447</a>] Martini, L., Rosen, E., El-Aawar, N., Smith, T., and G.
Heron, "Pseudowire Setup and Maintenance Using the Label
Distribution Protocol (LDP)", <a href="./rfc4447">RFC 4447</a>, April 2006.
[<a id="ref-RFC5036">RFC5036</a>] Andersson, L., Minei, I., and B. Thomas, "LDP
Specification", <a href="./rfc5036">RFC 5036</a>, October 2007.
[<a id="ref-RFC5283">RFC5283</a>] Decraene, B., Le Roux, JL., and I. Minei, "LDP Extension
for Inter-Area Label Switched Paths (LSPs)", <a href="./rfc5283">RFC 5283</a>,
July 2008.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-CRYPTO-AUTH">CRYPTO-AUTH</a>]
Zheng, L., Chen, M., and M. Bhatia, "LDP Hello
Cryptographic Authentication", Work in Progress, August
2013.
[<a id="ref-KARP-ISIS">KARP-ISIS</a>]
Chunduri, U., Tian, A., and W. Lu, "KARP IS-IS security
analysis", Work in Progress, March 2013.
[<a id="ref-RFC3107">RFC3107</a>] Rekhter, Y. and E. Rosen, "Carrying Label Information in
BGP-4", <a href="./rfc3107">RFC 3107</a>, May 2001.
[<a id="ref-RFC5286">RFC5286</a>] Atlas, A. and A. Zinin, "Basic Specification for IP Fast
Reroute: Loop-Free Alternates", <a href="./rfc5286">RFC 5286</a>, September 2008.
[<a id="ref-RFC5443">RFC5443</a>] Jork, M., Atlas, A., and L. Fang, "LDP IGP
Synchronization", <a href="./rfc5443">RFC 5443</a>, March 2009.
[<a id="ref-RFC5920">RFC5920</a>] Fang, L., "Security Framework for MPLS and GMPLS
Networks", <a href="./rfc5920">RFC 5920</a>, July 2010.
<span class="grey">Beckhaus, et al. Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
[<a id="ref-RFC5925">RFC5925</a>] Touch, J., Mankin, A., and R. Bonica, "The TCP
Authentication Option", <a href="./rfc5925">RFC 5925</a>, June 2010.
[<a id="ref-RFC6863">RFC6863</a>] Hartman, S. and D. Zhang, "Analysis of OSPF Security
According to the Keying and Authentication for Routing
Protocols (KARP) Design Guide", <a href="./rfc6863">RFC 6863</a>, March 2013.
[<a id="ref-RFC6952">RFC6952</a>] Jethanandani, M., Patel, K., and L. Zheng, "Analysis of
BGP, LDP, PCEP, and MSDP Issues According to the Keying
and Authentication for Routing Protocols (KARP) Design
Guide", <a href="./rfc6952">RFC 6952</a>, May 2013.
[<a id="ref-RLFA">RLFA</a>] Bryant, S., Filsfils, C., Previdi, S., Shand, M., and N.
So, "Remote LFA FRR", Work in Progress, May 2013.
[<a id="ref-SEAMLESS-MPLS">SEAMLESS-MPLS</a>]
Leymann, N., Ed., Decraene, B., Filsfils, C.,
Konstantynowicz, M., Ed., and D. Steinberg, "Seamless MPLS
Architecture", Work in Progress, July 2013.
<span class="grey">Beckhaus, et al. Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc7032">RFC 7032</a> LDP DoD October 2013</span>
Authors' Addresses
Thomas Beckhaus (editor)
Deutsche Telekom AG
Heinrich-Hertz-Strasse 3-7
Darmstadt 64307
Germany
Phone: +49 6151 58 12825
EMail: thomas.beckhaus@telekom.de
Bruno Decraene
Orange
38-40 rue du General Leclerc
Issy Moulineaux cedex 9 92794
France
EMail: bruno.decraene@orange.com
Kishore Tiruveedhula
Juniper Networks
10 Technology Park Drive
Westford, Massachusetts 01886
USA
Phone: 1-(978)-589-8861
EMail: kishoret@juniper.net
Maciek Konstantynowicz (editor)
Cisco Systems, Inc.
10 New Square Park, Bedfont Lakes
London
United Kingdom
EMail: maciek@cisco.com
Luca Martini
Cisco Systems, Inc.
9155 East Nichols Avenue, Suite 400
Englewood, CO 80112
USA
EMail: lmartini@cisco.com
Beckhaus, et al. Standards Track [Page 35]
</pre>
|