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
|
<pre>Internet Engineering Task Force (IETF) W. George, Ed.
Request for Comments: 7439 Time Warner Cable
Category: Informational C. Pignataro, Ed.
ISSN: 2070-1721 Cisco
January 2015
<span class="h1">Gap Analysis for Operating IPv6-Only MPLS Networks</span>
Abstract
This document reviews the Multiprotocol Label Switching (MPLS)
protocol suite in the context of IPv6 and identifies gaps that must
be addressed in order to allow MPLS-related protocols and
applications to be used with IPv6-only networks. This document is
intended to focus on gaps in the standards defining the MPLS suite,
and is not intended to highlight particular vendor implementations
(or lack thereof) in the context of IPv6-only MPLS functionality.
In the data plane, MPLS fully supports IPv6, and MPLS labeled packets
can be carried over IPv6 packets in a variety of encapsulations.
However, support for IPv6 among MPLS control-plane protocols, MPLS
applications, MPLS Operations, Administration, and Maintenance (OAM),
and MIB modules is mixed, with some protocols having major gaps. For
most major gaps, work is in progress to upgrade the relevant
protocols.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
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). Not all documents
approved by the IESG are a candidate for any level of Internet
Standard; see <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/rfc7439">http://www.rfc-editor.org/info/rfc7439</a>.
<span class="grey">George & Pignataro Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">George & Pignataro Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2">2</a>. Use Case . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3">3</a>. Gap Analysis . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3.1">3.1</a>. MPLS Data Plane . . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.2">3.2</a>. MPLS Control Plane . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.2.1">3.2.1</a>. Label Distribution Protocol (LDP) . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.2.2">3.2.2</a>. Multipoint LDP (mLDP) . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.2.3">3.2.3</a>. RSVP - Traffic Engineering (RSVP-TE) . . . . . . . . <a href="#page-7">7</a>
<a href="#section-3.2.3.1">3.2.3.1</a>. Interior Gateway Protocol (IGP) . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-3.2.3.2">3.2.3.2</a>. RSVP-TE Point-to-Multipoint (P2MP) . . . . . . . <a href="#page-8">8</a>
<a href="#section-3.2.3.3">3.2.3.3</a>. RSVP-TE Fast Reroute (FRR) . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-3.2.4">3.2.4</a>. Path Computation Element (PCE) . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-3.2.5">3.2.5</a>. Border Gateway Protocol (BGP) . . . . . . . . . . . . <a href="#page-9">9</a>
3.2.6. Generalized Multi-Protocol Label Switching (GMPLS) . 9
<a href="#section-3.3">3.3</a>. MPLS Applications . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3.3.1">3.3.1</a>. Layer 2 Virtual Private Network (L2VPN) . . . . . . . <a href="#page-9">9</a>
<a href="#section-3.3.1.1">3.3.1.1</a>. Ethernet VPN (EVPN) . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-3.3.2">3.3.2</a>. Layer 3 Virtual Private Network (L3VPN) . . . . . . . <a href="#page-10">10</a>
3.3.2.1. IPv6 Provider Edge/IPv4 Provider Edge (6PE/4PE) . 11
3.3.2.2. IPv6 Virtual Private Extension/IPv4 Virtual
Private Extension (6VPE/4VPE) . . . . . . . . . . <a href="#page-11">11</a>
3.3.2.3. BGP Encapsulation Subsequent Address Family
Identifier (SAFI) . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.3.2.4">3.3.2.4</a>. Multicast in MPLS/BGP IP VPN (MVPN) . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.3.3">3.3.3</a>. MPLS Transport Profile (MPLS-TP) . . . . . . . . . . <a href="#page-13">13</a>
3.4. MPLS Operations, Administration, and Maintenance (MPLS
OAM) . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-3.4.1">3.4.1</a>. Extended ICMP . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-3.4.2">3.4.2</a>. Label Switched Path Ping (LSP Ping) . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-3.4.3">3.4.3</a>. Bidirectional Forwarding Detection (BFD) . . . . . . <a href="#page-16">16</a>
<a href="#section-3.4.4">3.4.4</a>. Pseudowire OAM . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-3.4.5">3.4.5</a>. MPLS Transport Profile (MPLS-TP) OAM . . . . . . . . <a href="#page-16">16</a>
<a href="#section-3.5">3.5</a>. MIB Modules . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-4">4</a>. Gap Summary . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-5">5</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-6">6</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-6.1">6.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-6.2">6.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-26">26</a>
Contributors . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-26">26</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<span class="grey">George & Pignataro Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
IPv6 [<a href="./rfc2460" title=""Internet Protocol, Version 6 (IPv6) Specification"">RFC2460</a>] is an integral part of modern network deployments. At
the time when this document was written, the majority of these IPv6
deployments were using dual-stack implementations, where IPv4 and
IPv6 are supported equally on many or all of the network nodes, and
single-stack primarily referred to IPv4-only devices. Dual-stack
deployments provide a useful margin for protocols and features that
are not currently capable of operating solely over IPv6, because they
can continue using IPv4 as necessary. However, as IPv6 deployment
and usage becomes more pervasive, and IPv4 exhaustion begins driving
changes in address consumption behaviors, there is an increasing
likelihood that many networks will need to start operating some or
all of their network nodes either as primarily IPv6 (most functions
use IPv6, a few legacy features use IPv4), or as IPv6-only (no IPv4
provisioned on the device). This transition toward IPv6-only
operation exposes any gaps where features, protocols, or
implementations are still reliant on IPv4 for proper function. To
that end, and in the spirit of the recommendation in <a href="./rfc6540">RFC 6540</a>
[<a href="./rfc6540" title=""IPv6 Support Required for All IP-Capable Nodes"">RFC6540</a>] that implementations need to stop requiring IPv4 for proper
and complete function, this document reviews the MPLS protocol suite
in the context of IPv6 and identifies gaps that must be addressed in
order to allow MPLS-related protocols and applications to be used
with IPv6-only networks and networks that are primarily IPv6
(hereafter referred to as IPv6-primary). This document is intended
to focus on gaps in the standards defining the MPLS suite, and not to
highlight particular vendor implementations (or lack thereof) in the
context of IPv6-only MPLS functionality.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Use Case</span>
This section discusses some drivers for ensuring that MPLS completely
supports IPv6-only operation. It is not intended to be a
comprehensive discussion of all potential use cases, but rather a
discussion of one use case to provide context and justification to
undertake such a gap analysis.
IP convergence is continuing to drive new classes of devices to begin
communicating via IP. Examples of such devices could include set-top
boxes for IP video distribution, cell tower electronics (macro or
micro cells), infrastructure Wi-Fi access points, and devices for
machine-to-machine (M2M) or Internet of Things (IoT) applications.
In some cases, these classes of devices represent a very large
deployment base, on the order of thousands or even millions of
devices network-wide. The scale of these networks, coupled with the
increasingly overlapping use of <a href="./rfc1918">RFC 1918</a> [<a href="./rfc1918" title=""Address Allocation for Private Internets"">RFC1918</a>] address space
within the average network and the lack of globally routable IPv4
space available for long-term growth, begins to drive the need for
<span class="grey">George & Pignataro Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
many of the endpoints in this network to be managed solely via IPv6.
Even if these devices are carrying some IPv4 user data, it is often
encapsulated in another protocol such that the communication between
the endpoint and its upstream devices can be IPv6-only without
impacting support for IPv4 on user data. As the number of devices to
manage increases, the operator is compelled to move to IPv6.
Depending on the MPLS features required, it is plausible to assume
that the (existing) MPLS network will need to be extended to these
IPv6-only devices.
Additionally, as the impact of IPv4 exhaustion becomes more acute,
more and more aggressive IPv4 address reclamation measures will be
justified. Many networks are likely to focus on preserving their
remaining IPv4 addresses for revenue-generating customers so that
legacy support for IPv4 can be maintained as long as necessary. As a
result, it may be appropriate for some or all of the network
infrastructure, including MPLS Label Switching Routers (LSRs) and
Label Edge Routers (LERs), to have its IPv4 addresses reclaimed and
transition toward IPv6-only operation.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Gap Analysis</span>
This gap analysis aims to answer the question of what fails when one
attempts to use MPLS features on a network of IPv6-only devices. The
baseline assumption for this analysis is that some endpoints, as well
as Label Switching Routers (Provider Edge (PE) and Provider (P)
routers), only have IPv6 transport available and need to support the
full suite of MPLS features defined as of the time of this document's
writing at parity with the support on an IPv4 network. This is
necessary whether they are enabled via the Label Distribution
Protocol (LDP) [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>], RSVP - Traffic Engineering (RSVP-TE)
[<a href="./rfc3209" title=""RSVP-TE: Extensions to RSVP for LSP Tunnels"">RFC3209</a>], or Border Gateway Protocol (BGP) [<a href="./rfc3107" title=""Carrying Label Information in BGP-4"">RFC3107</a>], and whether
they are encapsulated in MPLS [<a href="./rfc3032" title=""MPLS Label Stack Encoding"">RFC3032</a>], IP [<a href="./rfc4023" title=""Encapsulating MPLS in IP or Generic Routing Encapsulation (GRE)"">RFC4023</a>], Generic
Routing Encapsulation (GRE) [<a href="./rfc4023" title=""Encapsulating MPLS in IP or Generic Routing Encapsulation (GRE)"">RFC4023</a>], or Layer 2 Tunneling Protocol
Version 3 (L2TPv3) [<a href="./rfc4817" title=""Encapsulation of MPLS over Layer 2 Tunneling Protocol Version 3"">RFC4817</a>]. It is important when evaluating these
gaps to distinguish between user data and control-plane data, because
while this document is focused on IPv6-only operation, it is quite
likely that some amount of the user payload data being carried in the
IPv6-only MPLS network will still be IPv4.
A note about terminology: Gaps identified by this document are
characterized as "Major" or "Minor". Major gaps refer to significant
changes necessary in one or more standards to address the gap due to
existing standards language having either missing functionality for
IPv6-only operation or explicit language requiring the use of IPv4
with no IPv6 alternatives defined. Minor gaps refer to changes
necessary primarily to clarify existing standards language. Usually
<span class="grey">George & Pignataro Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
these changes are needed in order to explicitly codify IPv6 support
in places where it is either implicit or omitted today, but the
omission is unlikely to prevent IPv6-only operation.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. MPLS Data Plane</span>
MPLS labeled packets can be transmitted over a variety of data links
[<a href="./rfc3032" title=""MPLS Label Stack Encoding"">RFC3032</a>], and MPLS labeled packets can also be encapsulated over IP.
The encapsulations of MPLS in IP and GRE, as well as MPLS over
L2TPv3, support IPv6. See <a href="./rfc4023#section-3">Section 3 of RFC 4023</a> [<a href="./rfc4023" title=""Encapsulating MPLS in IP or Generic Routing Encapsulation (GRE)"">RFC4023</a>] and
<a href="./rfc4817#section-2">Section 2 of RFC 4817</a> [<a href="./rfc4817" title=""Encapsulation of MPLS over Layer 2 Tunneling Protocol Version 3"">RFC4817</a>], respectively.
Gap: None.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. MPLS Control Plane</span>
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Label Distribution Protocol (LDP)</span>
The Label Distribution Protocol (LDP) [<a href="./rfc5036" title=""LDP Specification"">RFC5036</a>] defines a set of
procedures for distribution of labels between Label Switching Routers
that can use the labels for forwarding traffic. While LDP was
designed to use an IPv4 or dual-stack IP network, it has a number of
deficiencies that prevent it from working in an IPv6-only network.
LDP-IPv6 [<a href="#ref-LDP-IPv6">LDP-IPv6</a>] highlights some of the deficiencies when LDP is
enabled in IPv6-only or dual-stack networks and specifies appropriate
protocol changes. These deficiencies are related to Label Switched
Path (LSP) mapping, LDP identifiers, LDP discovery, LDP session
establishment, next-hop address, and LDP Time To Live (TTL) security
[<a href="./rfc5082" title=""The Generalized TTL Security Mechanism (GTSM)"">RFC5082</a>] [<a href="./rfc6720" title=""The Generalized TTL Security Mechanism (GTSM) for the Label Distribution Protocol (LDP)"">RFC6720</a>].
Gap: Major; update to <a href="./rfc5036">RFC 5036</a> in progress via [<a href="#ref-LDP-IPv6">LDP-IPv6</a>], which
should close this gap.
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a>. Multipoint LDP (mLDP)</span>
Multipoint LDP (mLDP) is a set of extensions to LDP for setting up
Point-to-Multipoint (P2MP) and Multipoint-to-Multipoint (MP2MP) LSPs.
These extensions are specified in <a href="./rfc6388">RFC 6388</a> [<a href="./rfc6388" title=""Label Distribution Protocol Extensions for Point-to- Multipoint and Multipoint-to-Multipoint Label Switched Paths"">RFC6388</a>]. In terms of
IPv6-only gap analysis, mLDP has two identified areas of interest:
1. LDP Control Plane: Since mLDP uses the LDP control plane to
discover and establish sessions with the peer, it shares the same
gaps as LDP (<a href="#section-3.2.1">Section 3.2.1</a>) with regards to control plane
(discovery, transport, and session establishment) in an IPv6-only
network.
<span class="grey">George & Pignataro Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
2. Multipoint (MP) Forwarding Equivalence Class (FEC) Root Address:
mLDP defines its own MP FECs and rules, different from LDP, to
map MP LSPs. An mLDP MP FEC contains a Root Address field that
is an IP address in IP networks. The current specification
allows specifying the root address according to the Address
Family Identifier (AFI), and hence covers both IPv4 or IPv6 root
addresses, requiring no extension to support IPv6-only MP LSPs.
The root address is used by each LSR participating in an MP LSP
setup such that root address reachability is resolved by doing a
table lookup against the root address to find corresponding
upstream neighbor(s). This will pose a problem if an MP LSP
traverses IPv4-only and IPv6-only nodes in a dual-stack network
on the way to the root node.
For example, consider following setup, where R1/R6 are IPv4-only, R3/
R4 are IPv6-only, and R2/R5 are dual-stack LSRs:
( IPv4-only ) ( IPv6-only ) ( IPv4-only )
R1 -- R2 -- R3 -- R4 -- R5 -- R6
Leaf Root
Assume R1 to be a leaf node for a P2MP LSP rooted at R6 (root node).
R1 uses R6's IPv4 address as the root address in MP FEC. As the MP
LSP signaling proceeds from R1 to R6, the MP LSP setup will fail on
the first IPv6-only transit/branch LSRs (R3) when trying to find IPv4
root address reachability. <a href="./rfc6512">RFC 6512</a> [<a href="./rfc6512" title=""Using Multipoint LDP When the Backbone Has No Route to the Root"">RFC6512</a>] defines a recursive-
FEC solution and procedures for mLDP when the backbone (transit/
branch) LSRs have no route to the root. The proposed solution is
defined for a BGP-free core in a VPN environment, but a similar
concept can be used/extended to solve the above issue of the
IPv6-only backbone receiving an MP FEC element with an IPv4 address.
The solution will require a border LSR (the one that is sitting on
the border of an IPv4/IPv6 island (namely, R2 and R5 in this
example)) to translate an IPv4 root address to an equivalent IPv6
address (and vice versa) through procedures similar to <a href="./rfc6512">RFC 6512</a>.
Gap: Major; update in progress for LDP via [<a href="#ref-LDP-IPv6">LDP-IPv6</a>], may need
additional updates to <a href="./rfc6512">RFC 6512</a>.
<span class="h4"><a class="selflink" id="section-3.2.3" href="#section-3.2.3">3.2.3</a>. RSVP - Traffic Engineering (RSVP-TE)</span>
RSVP-TE [<a href="./rfc3209" title=""RSVP-TE: Extensions to RSVP for LSP Tunnels"">RFC3209</a>] defines a set of procedures and enhancements to
establish LSP tunnels that can be automatically routed away from
network failures, congestion, and bottlenecks. RSVP-TE allows
establishing an LSP for an IPv4 or IPv6 prefix, thanks to its
LSP_TUNNEL_IPv6 object and subobjects.
Gap: None.
<span class="grey">George & Pignataro Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
<span class="h5"><a class="selflink" id="section-3.2.3.1" href="#section-3.2.3.1">3.2.3.1</a>. Interior Gateway Protocol (IGP)</span>
<a href="./rfc3630">RFC 3630</a> [<a href="./rfc3630" title=""Traffic Engineering (TE) Extensions to OSPF Version 2"">RFC3630</a>] specifies a method of adding traffic engineering
capabilities to OSPF Version 2. New TLVs and sub-TLVs were added in
<a href="./rfc5329">RFC 5329</a> [<a href="./rfc5329" title=""Traffic Engineering Extensions to OSPF Version 3"">RFC5329</a>] to extend TE capabilities to IPv6 networks in OSPF
Version 3.
<a href="./rfc5305">RFC 5305</a> [<a href="./rfc5305" title=""IS-IS Extensions for Traffic Engineering"">RFC5305</a>] specifies a method of adding traffic engineering
capabilities to IS-IS. New TLVs and sub-TLVs were added in <a href="./rfc6119">RFC 6119</a>
[<a href="./rfc6119" title=""IPv6 Traffic Engineering in IS-IS"">RFC6119</a>] to extend TE capabilities to IPv6 networks.
Gap: None.
<span class="h5"><a class="selflink" id="section-3.2.3.2" href="#section-3.2.3.2">3.2.3.2</a>. RSVP-TE Point-to-Multipoint (P2MP)</span>
<a href="./rfc4875">RFC 4875</a> [<a href="./rfc4875" title=""Extensions to Resource Reservation Protocol - Traffic Engineering (RSVP-TE) for Point-to-Multipoint TE Label Switched Paths (LSPs)"">RFC4875</a>] describes extensions to RSVP-TE for the setup of
Point-to-Multipoint (P2MP) LSPs in MPLS and Generalized MPLS (GMPLS)
with support for both IPv4 and IPv6.
Gap: None.
<span class="h5"><a class="selflink" id="section-3.2.3.3" href="#section-3.2.3.3">3.2.3.3</a>. RSVP-TE Fast Reroute (FRR)</span>
<a href="./rfc4090">RFC 4090</a> [<a href="./rfc4090" title=""Fast Reroute Extensions to RSVP-TE for LSP Tunnels"">RFC4090</a>] specifies Fast Reroute (FRR) mechanisms to
establish backup LSP tunnels for local repair supporting both IPv4
and IPv6 networks. Further, [<a href="./rfc5286" title=""Basic Specification for IP Fast Reroute: Loop-Free Alternates"">RFC5286</a>] describes the use of loop-free
alternates to provide local protection for unicast traffic in pure IP
and MPLS networks in the event of a single failure, whether link,
node, or shared risk link group (SRLG) for both IPv4 and IPv6.
Gap: None.
<span class="h4"><a class="selflink" id="section-3.2.4" href="#section-3.2.4">3.2.4</a>. Path Computation Element (PCE)</span>
The Path Computation Element (PCE) defined in <a href="./rfc4655">RFC 4655</a> [<a href="./rfc4655" title=""A Path Computation Element (PCE)-Based Architecture"">RFC4655</a>] is
an entity that is capable of computing a network path or route based
on a network graph and applying computational constraints. A Path
Computation Client (PCC) may make requests to a PCE for paths to be
computed. The PCE Communication Protocol (PCEP) is designed as a
communication protocol between PCCs and PCEs for path computations
and is defined in <a href="./rfc5440">RFC 5440</a> [<a href="./rfc5440" title=""Path Computation Element (PCE) Communication Protocol (PCEP)"">RFC5440</a>].
The PCEP specification [<a href="./rfc5440" title=""Path Computation Element (PCE) Communication Protocol (PCEP)"">RFC5440</a>] is defined for both IPv4 and IPv6
with support for PCE discovery via an IGP (OSPF [<a href="./rfc5088" title=""OSPF Protocol Extensions for Path Computation Element (PCE) Discovery"">RFC5088</a>] or IS-IS
[<a href="./rfc5089" title=""IS-IS Protocol Extensions for Path Computation Element (PCE) Discovery"">RFC5089</a>]) using both IPv4 and IPv6 addresses. Note that PCEP uses
identical encoding of subobjects, as in RSVP-TE defined in <a href="./rfc3209">RFC 3209</a>
[<a href="./rfc3209" title=""RSVP-TE: Extensions to RSVP for LSP Tunnels"">RFC3209</a>] that supports both IPv4 and IPv6.
<span class="grey">George & Pignataro Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
The extensions to PCEP to support confidentiality [<a href="./rfc5520" title=""Preserving Topology Confidentiality in Inter-Domain Path Computation Using a Path-Key-Based Mechanism"">RFC5520</a>], route
exclusions [<a href="./rfc5521" title=""Extensions to the Path Computation Element Communication Protocol (PCEP) for Route Exclusions"">RFC5521</a>], monitoring [<a href="./rfc5886" title=""A Set of Monitoring Tools for Path Computation Element (PCE)-Based Architecture"">RFC5886</a>], and P2MP TE LSPs
[<a href="./rfc6006" title=""Extensions to the Path Computation Element Communication Protocol (PCEP) for Point-to-Multipoint Traffic Engineering Label Switched Paths"">RFC6006</a>] have support for both IPv4 and IPv6.
Gap: None.
<span class="h4"><a class="selflink" id="section-3.2.5" href="#section-3.2.5">3.2.5</a>. Border Gateway Protocol (BGP)</span>
<a href="./rfc3107">RFC 3107</a> [<a href="./rfc3107" title=""Carrying Label Information in BGP-4"">RFC3107</a>] specifies a set of BGP protocol procedures for
distributing the labels (for prefixes corresponding to any address
family) between label switch routers so that they can use the labels
for forwarding the traffic. <a href="./rfc3107">RFC 3107</a> allows BGP to distribute the
label for IPv4 or IPv6 prefix in an IPv6-only network.
Gap: None.
<span class="h4"><a class="selflink" id="section-3.2.6" href="#section-3.2.6">3.2.6</a>. Generalized Multi-Protocol Label Switching (GMPLS)</span>
The Generalized Multi-Protocol Label Switching (GMPLS) specification
includes signaling functional extensions [<a href="./rfc3471" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description"">RFC3471</a>] and RSVP-TE
extensions [<a href="./rfc3473" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Resource ReserVation Protocol-Traffic Engineering (RSVP-TE) Extensions"">RFC3473</a>]. The gap analysis in <a href="#section-3.2.3">Section 3.2.3</a> applies to
these.
<a href="./rfc4558">RFC 4558</a> [<a href="./rfc4558" title=""Node-ID Based Resource Reservation Protocol (RSVP) Hello: A Clarification Statement"">RFC4558</a>] specifies Node-ID Based RSVP Hello Messages with
capability for both IPv4 and IPv6. <a href="./rfc4990">RFC 4990</a> [<a href="./rfc4990" title=""Use of Addresses in Generalized Multiprotocol Label Switching (GMPLS) Networks"">RFC4990</a>] clarifies the
use of IPv6 addresses in GMPLS networks including handling in the MIB
modules.
The second paragraph of <a href="./rfc6370#section-5.3">Section 5.3 of RFC 6370</a> [<a href="./rfc6370" title=""MPLS Transport Profile (MPLS-TP) Identifiers"">RFC6370</a>] describes
the mapping from an MPLS Transport Profile (MPLS-TP) LSP_ID to RSVP-
TE with an assumption that Node_IDs are derived from valid IPv4
addresses. This assumption fails in an IPv6-only network, given that
there would not be any IPv4 addresses.
Gap: Minor; <a href="./rfc6370#section-5.3">Section 5.3 of RFC 6370</a> [<a href="./rfc6370" title=""MPLS Transport Profile (MPLS-TP) Identifiers"">RFC6370</a>] needs to be updated.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. MPLS Applications</span>
<span class="h4"><a class="selflink" id="section-3.3.1" href="#section-3.3.1">3.3.1</a>. Layer 2 Virtual Private Network (L2VPN)</span>
L2VPN [<a href="./rfc4664" title=""Framework for Layer 2 Virtual Private Networks (L2VPNs)"">RFC4664</a>] specifies two fundamentally different kinds of Layer
2 VPN services that a service provider could offer to a customer:
Virtual Private Wire Service (VPWS) and Virtual Private LAN Service
(VPLS). <a href="./rfc4447">RFC 4447</a> [<a href="./rfc4447" title=""Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)"">RFC4447</a>] and <a href="./rfc4762">RFC 4762</a> [<a href="./rfc4762" title=""Virtual Private LAN Service (VPLS) Using Label Distribution Protocol (LDP) Signaling"">RFC4762</a>] specify the LDP
protocol changes to instantiate VPWS and VPLS services, respectively,
in an MPLS network using LDP as the signaling protocol. This is
complemented by <a href="./rfc6074">RFC 6074</a> [<a href="./rfc6074" title=""Provisioning, Auto-Discovery, and Signaling in Layer 2 Virtual Private Networks (L2VPNs)"">RFC6074</a>], which specifies a set of
procedures for instantiating L2VPNs (e.g., VPWS, VPLS) using BGP as a
<span class="grey">George & Pignataro Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
discovery protocol and LDP, as well as L2TPv3, as a signaling
protocol. <a href="./rfc4761">RFC 4761</a> [<a href="./rfc4761" title=""Virtual Private LAN Service (VPLS) Using BGP for Auto-Discovery and Signaling"">RFC4761</a>] and <a href="./rfc6624">RFC 6624</a> [<a href="./rfc6624" title=""Layer 2 Virtual Private Networks Using BGP for Auto-Discovery and Signaling"">RFC6624</a>] specify BGP
protocol changes to instantiate VPLS and VPWS services in an MPLS
network, using BGP for both discovery and signaling.
In an IPv6-only MPLS network, use of L2VPN represents a connection of
Layer 2 islands over an IPv6 MPLS core, and very few changes are
necessary to support operation over an IPv6-only network. The L2VPN
signaling protocol is either BGP or LDP in an MPLS network, and both
can run directly over IPv6 core infrastructure as well as IPv6 edge
devices. <a href="./rfc6074">RFC 6074</a> [<a href="./rfc6074" title=""Provisioning, Auto-Discovery, and Signaling in Layer 2 Virtual Private Networks (L2VPNs)"">RFC6074</a>] is the only RFC that appears to have a
gap for IPv6-only operation. In its discovery procedures (Sections
3.2.2 and 6 of <a href="./rfc6074">RFC 6074</a> [<a href="./rfc6074" title=""Provisioning, Auto-Discovery, and Signaling in Layer 2 Virtual Private Networks (L2VPNs)"">RFC6074</a>]), it suggests encoding PE IP
addresses in the Virtual Switching Instance ID (VSI-ID), which is
encoded in Network Layer Reachability Information (NLRI) and should
not exceed 12 bytes (to differentiate its AFI/SAFI (Subsequent
Address Family Identifier) encoding from <a href="./rfc4761">RFC 4761</a>). This means that
a PE IP address cannot be an IPv6 address. Also, in its signaling
procedures (<a href="./rfc6074#section-3.2.3">Section 3.2.3 of RFC 6074</a> [<a href="./rfc6074" title=""Provisioning, Auto-Discovery, and Signaling in Layer 2 Virtual Private Networks (L2VPNs)"">RFC6074</a>]), it suggests
encoding PE_addr in the Source Attachment Individual Identifier
(SAII) and the Target Attachment Individual Identifier (TAII), which
are limited to 32 bits (AII Type=1) at the moment.
<a href="./rfc6073">RFC 6073</a> [<a href="./rfc6073" title=""Segmented Pseudowire"">RFC6073</a>] defines the new LDP Pseudowire (PW) Switching
Point PE TLV, which supports IPv4 and IPv6.
Gap: Minor; <a href="./rfc6074">RFC 6074</a> needs to be updated.
<span class="h5"><a class="selflink" id="section-3.3.1.1" href="#section-3.3.1.1">3.3.1.1</a>. Ethernet VPN (EVPN)</span>
Ethernet VPN [<a href="#ref-EVPN" title=""BGP MPLS Based Ethernet VPN"">EVPN</a>] defines a method for using BGP MPLS-based
Ethernet VPNs. Because it can use functions in LDP and mLDP, as well
as Multicast VPLS [<a href="./rfc7117" title=""Multicast in Virtual Private LAN Service (VPLS)"">RFC7117</a>], it inherits LDP gaps previously
identified in <a href="#section-3.2.1">Section 3.2.1</a>. Once those gaps are resolved, it should
function properly on IPv6-only networks as defined.
Gap: Major for LDP; update to <a href="./rfc5036">RFC 5036</a> in progress via [<a href="#ref-LDP-IPv6">LDP-IPv6</a>]
that should close this gap (see <a href="#section-3.2.1">Section 3.2.1</a>).
<span class="h4"><a class="selflink" id="section-3.3.2" href="#section-3.3.2">3.3.2</a>. Layer 3 Virtual Private Network (L3VPN)</span>
<a href="./rfc4364">RFC 4364</a> [<a href="./rfc4364" title=""BGP/MPLS IP Virtual Private Networks (VPNs)"">RFC4364</a>] defines a method by which a Service Provider may
use an IP backbone to provide IP VPNs for its customers. The
following use cases arise in the context of this gap analysis:
1. Connecting IPv6 islands over IPv6-only MPLS network
2. Connecting IPv4 islands over IPv6-only MPLS network
<span class="grey">George & Pignataro Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
Both use cases require mapping an IP packet to an IPv6-signaled LSP.
<a href="./rfc4364">RFC 4364</a> defines Layer 3 Virtual Private Networks (L3VPNs) for
IPv4-only and has references to 32-bit BGP next-hop addresses. <a href="./rfc4659">RFC</a>
<a href="./rfc4659">4659</a> [<a href="./rfc4659" title=""BGP-MPLS IP Virtual Private Network (VPN) Extension for IPv6 VPN"">RFC4659</a>] adds support for IPv6 on L3VPNs, including 128-bit BGP
next-hop addresses, and discusses operation whether IPv6 is the
payload or the underlying transport address family. However, <a href="./rfc4659">RFC</a>
<a href="./rfc4659">4659</a> does not formally update <a href="./rfc4364">RFC 4364</a>, and thus an implementer may
miss this additional set of standards unless it is explicitly
identified independently of the base functionality defined in <a href="./rfc4364">RFC</a>
<a href="./rfc4364">4364</a>. Further, <a href="./rfc4659#section-1">Section 1 of RFC 4659</a> explicitly identifies use case
2 as out of scope for the document.
The authors do not believe that there are any additional issues
encountered when using L2TPv3, RSVP, or GRE (instead of MPLS) as
transport on an IPv6-only network.
Gap: Major; <a href="./rfc4659">RFC 4659</a> needs to be updated to explicitly cover use case
2 (discussed in further detail below)
<span class="h5"><a class="selflink" id="section-3.3.2.1" href="#section-3.3.2.1">3.3.2.1</a>. IPv6 Provider Edge/IPv4 Provider Edge (6PE/4PE)</span>
<a href="./rfc4798">RFC 4798</a> [<a href="./rfc4798" title=""Connecting IPv6 Islands over IPv4 MPLS Using IPv6 Provider Edge Routers (6PE)"">RFC4798</a>] defines IPv6 Provider Edge (6PE), which defines
how to interconnect IPv6 islands over a MPLS-enabled IPv4 cloud.
However, use case 2 is doing the opposite, and thus could also be
referred to as IPv4 Provider Edge (4PE). The method to support this
use case is not defined explicitly. To support it, IPv4 edge devices
need to be able to map IPv4 traffic to MPLS IPv6 core LSPs. Also,
the core switches may not understand IPv4 at all, but in some cases
they may need to be able to exchange Labeled IPv4 routes from one
Autonomous System (AS) to a neighboring AS.
Gap: Major; <a href="./rfc4798">RFC 4798</a> covers only the "6PE" case. Use case 2 is
currently not specified in an RFC.
<span class="h5"><a class="selflink" id="section-3.3.2.2" href="#section-3.3.2.2">3.3.2.2</a>. IPv6 Virtual Private Extension/IPv4 Virtual Private Extension</span>
(6VPE/4VPE)
<a href="./rfc4659">RFC 4659</a> [<a href="./rfc4659" title=""BGP-MPLS IP Virtual Private Network (VPN) Extension for IPv6 VPN"">RFC4659</a>] defines IPv6 Virtual Private Network Extension
(6VPE), a method by which a Service Provider may use its packet-
switched backbone to provide Virtual Private Network (VPN) services
for its IPv6 customers. It allows the core network to be MPLS IPv4
or MPLS IPv6, thus addressing use case 1 above. <a href="./rfc4364">RFC 4364</a> should work
as defined for use case 2 above, which could also be referred to as
IPv4 Virtual Private Extension (4VPE), but the RFC explicitly does
not discuss this use and defines it as out of scope.
Gap: Minor; <a href="./rfc4659">RFC 4659</a> needs to be updated to explicitly cover use case
2.
<span class="grey">George & Pignataro Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
<span class="h5"><a class="selflink" id="section-3.3.2.3" href="#section-3.3.2.3">3.3.2.3</a>. BGP Encapsulation Subsequent Address Family Identifier (SAFI)</span>
<a href="./rfc5512">RFC 5512</a> [<a href="./rfc5512" title=""The BGP Encapsulation Subsequent Address Family Identifier (SAFI) and the BGP Tunnel Encapsulation Attribute"">RFC5512</a>] defines the BGP Encapsulation SAFI and the BGP
Tunnel Encapsulation Attribute, which can be used to signal tunneling
over an IP Core that is using a single address family. This
mechanism supports transport of MPLS (and other protocols) over
Tunnels in an IP core (including an IPv6-only core). In this
context, load balancing can be provided as specified in <a href="./rfc5640">RFC 5640</a>
[<a href="./rfc5640" title=""Load- Balancing for Mesh Softwires"">RFC5640</a>].
Gap: None.
<span class="h5"><a class="selflink" id="section-3.3.2.4" href="#section-3.3.2.4">3.3.2.4</a>. Multicast in MPLS/BGP IP VPN (MVPN)</span>
<a href="./rfc6513">RFC 6513</a> [<a href="./rfc6513" title=""Multicast in MPLS/BGP IP VPNs"">RFC6513</a>] defines the procedure to provide multicast service
over an MPLS VPN backbone for downstream customers. It is sometimes
referred to as Next Generation Multicast VPN (NG-MVPN) The procedure
involves the below set of protocols.
<span class="h6"><a class="selflink" id="section-3.3.2.4.1" href="#section-3.3.2.4.1">3.3.2.4.1</a>. PE-CE Multicast Routing Protocol</span>
<a href="./rfc6513">RFC 6513</a> [<a href="./rfc6513" title=""Multicast in MPLS/BGP IP VPNs"">RFC6513</a>] explains the use of Protocol Independent Multicast
(PIM) as a Provider Edge - Customer Edge (PE-CE) protocol, while
<a href="./rfc6514#section-11.1.2">Section 11.1.2 of RFC 6514</a> [<a href="./rfc6514" title=""BGP Encodings and Procedures for Multicast in MPLS/BGP IP VPNs"">RFC6514</a>] explains the use of mLDP as a
PE-CE protocol.
The MCAST-VPN NLRI route-type format defined in <a href="./rfc6514">RFC 6514</a> [<a href="./rfc6514" title=""BGP Encodings and Procedures for Multicast in MPLS/BGP IP VPNs"">RFC6514</a>] is
not sufficiently covering all scenarios when mLDP is used as a PE-CE
protocol. The issue is explained in Section 2 of [<a href="#ref-mLDP-NLRI">mLDP-NLRI</a>] along
with a new route type that encodes the mLDP FEC in NLRI.
Further, [<a href="#ref-PE-CE" title=""BGP as an MVPN PE-CE Protocol"">PE-CE</a>] defines the use of BGP as a PE-CE protocol.
Gap: None.
<span class="h6"><a class="selflink" id="section-3.3.2.4.2" href="#section-3.3.2.4.2">3.3.2.4.2</a>. P-Tunnel Instantiation</span>
[<a id="ref-RFC6513">RFC6513</a>] explains the use of the below tunnels:
o RSVP-TE P2MP LSP
o PIM Tree
o mLDP P2MP LSP
o mLDP MP2MP LSP
o Ingress Replication
<span class="grey">George & Pignataro Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
Gap: Gaps in RSVP-TE P2MP LSP (<a href="#section-3.2.3.2">Section 3.2.3.2</a>) and mLDP
(<a href="#section-3.2.2">Section 3.2.2</a>) P2MP and MP2MP LSP are covered in previous sections.
There are no MPLS-specific gaps for PIM Tree or Ingress Replication,
and any protocol-specific gaps not related to MPLS are outside the
scope of this document.
<span class="h6"><a class="selflink" id="section-3.3.2.4.3" href="#section-3.3.2.4.3">3.3.2.4.3</a>. PE-PE Multicast Routing Protocol</span>
<a href="./rfc6513#section-3.1">Section 3.1 of RFC 6513</a> [<a href="./rfc6513" title=""Multicast in MPLS/BGP IP VPNs"">RFC6513</a>] explains the use of PIM as a PE-PE
protocol, while <a href="./rfc6514">RFC 6514</a> [<a href="./rfc6514" title=""BGP Encodings and Procedures for Multicast in MPLS/BGP IP VPNs"">RFC6514</a>] explains the use of BGP as a PE-PE
protocol.
PE-PE multicast routing is not specific to P-tunnels or to MPLS. It
can be PIM or BGP with P-tunnels that are label based or PIM tree
based. Enabling PIM as a PE-PE multicast protocol is equivalent to
running it on a non-MPLS IPv6 network, so there are not any MPLS-
specific considerations and any gaps are applicable for non-MPLS
networks as well. Similarly, BGP only includes the P-Multicast
Service Interface (PMSI) tunnel attribute as a part of the NLRI,
which is inherited from P-tunnel instantiation and considered to be
an opaque value. Any gaps in the control plane (PIM or BGP) will not
be specific to MPLS.
Gap: Any gaps in PIM or BGP as a PE-PE multicast routing protocol are
not unique to MPLS, and therefore are outside the scope of this
document. It is included for completeness.
<span class="h4"><a class="selflink" id="section-3.3.3" href="#section-3.3.3">3.3.3</a>. MPLS Transport Profile (MPLS-TP)</span>
MPLS-TP does not require IP (see <a href="./rfc5921#section-2">Section 2 of RFC 5921</a> [<a href="./rfc5921" title=""A Framework for MPLS in Transport Networks"">RFC5921</a>]) and
should not be affected by operation on an IPv6-only network.
Therefore, this is considered out of scope for this document but is
included for completeness.
Although not required, MPLS-TP can use IP. One such example is
included in <a href="#section-3.2.6">Section 3.2.6</a>, where MPLS-TP identifiers can be derived
from valid IPv4 addresses.
Gap: None. MPLS-TP does not require IP.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. MPLS Operations, Administration, and Maintenance (MPLS OAM)</span>
For MPLS LSPs, there are primarily three OAM mechanisms: Extended
ICMP [<a href="./rfc4884" title=""Extended ICMP to Support Multi-Part Messages"">RFC4884</a>] [<a href="./rfc4950" title=""ICMP Extensions for Multiprotocol Label Switching"">RFC4950</a>], LSP Ping [<a href="./rfc4379" title=""Detecting Multi-Protocol Label Switched (MPLS) Data Plane Failures"">RFC4379</a>], and Bidirectional
Forwarding Detection (BFD) for MPLS LSPs [<a href="./rfc5884" title=""Bidirectional Forwarding Detection (BFD) for MPLS Label Switched Paths (LSPs)"">RFC5884</a>]. For MPLS
Pseudowires, there is also Virtual Circuit Connectivity Verification
(VCCV) [<a href="./rfc5085" title=""Pseudowire Virtual Circuit Connectivity Verification (VCCV): A Control Channel for Pseudowires"">RFC5085</a>] [<a href="./rfc5885" title=""Bidirectional Forwarding Detection (BFD) for the Pseudowire Virtual Circuit Connectivity Verification (VCCV)"">RFC5885</a>]. Most of these mechanisms work in pure
<span class="grey">George & Pignataro Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
IPv6 environments, but there are some problems encountered in mixed
environments due to address-family mismatches. The next subsections
cover these gaps in detail.
Gap: Major; <a href="./rfc4379">RFC 4379</a> needs to be updated to better support multipath
IPv6. Additionally, there is potential for dropped messages in
Extended ICMP and LSP Ping due to IP version mismatches. It is
important to note that this is a more generic problem with tunneling
when address-family mismatches exist and is not specific to MPLS.
While MPLS will be affected, it will be difficult to fix this problem
specifically for MPLS, rather than fixing the more generic problem.
<span class="h4"><a class="selflink" id="section-3.4.1" href="#section-3.4.1">3.4.1</a>. Extended ICMP</span>
Extended ICMP to support Multi-part messages is defined in <a href="./rfc4884">RFC 4884</a>
[<a href="./rfc4884" title=""Extended ICMP to Support Multi-Part Messages"">RFC4884</a>]. This extensibility is defined generally for both ICMPv4
and ICMPv6. The specific ICMP extensions for MPLS are defined in <a href="./rfc4950">RFC</a>
<a href="./rfc4950">4950</a> [<a href="./rfc4950" title=""ICMP Extensions for Multiprotocol Label Switching"">RFC4950</a>]. ICMP Multi-part with MPLS extensions works for IPv4
and IPv6. However, the mechanisms described in <a href="./rfc4884">RFC 4884</a> and 4950 may
fail when tunneling IPv4 traffic over an LSP that is supported by an
IPv6-only infrastructure.
Assume the following:
o The path between two IPv4-only hosts contains an MPLS LSP.
o The two routers that terminate the LSP run dual stack.
o The LSP interior routers run IPv6 only.
o The LSP is signaled over IPv6.
Now assume that one of the hosts sends an IPv4 packet to the other.
However, the packet's TTL expires on an LSP interior router.
According to <a href="./rfc3032">RFC 3032</a> [<a href="./rfc3032" title=""MPLS Label Stack Encoding"">RFC3032</a>], the interior router should examine
the IPv4 payload, format an ICMPv4 message, and send it (over the
tunnel upon which the original packet arrived) to the egress LSP. In
this case, however, the LSP interior router is not IPv4-aware. It
cannot parse the original IPv4 datagram, nor can it send an IPv4
message. So, no ICMP message is delivered to the source. Some
specific ICMP extensions, in particular, ICMP extensions for
interface and next-hop identification [<a href="./rfc5837" title=""Extending ICMP for Interface and Next-Hop Identification"">RFC5837</a>], restrict the address
family of address information included in an Interface Information
Object to the same one as the ICMP (see <a href="./rfc5837#section-4.5">Section 4.5 of RFC 5837</a>).
While these extensions are not MPLS specific, they can be used with
MPLS packets carrying IP datagrams. This has no implications for
IPv6-only environments.
<span class="grey">George & Pignataro Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
Gap: Major; IP version mismatches may cause dropped messages.
However, as noted in the previous section, this problem is not
specific to MPLS.
<span class="h4"><a class="selflink" id="section-3.4.2" href="#section-3.4.2">3.4.2</a>. Label Switched Path Ping (LSP Ping)</span>
The LSP Ping mechanism defined in <a href="./rfc4379">RFC 4379</a> [<a href="./rfc4379" title=""Detecting Multi-Protocol Label Switched (MPLS) Data Plane Failures"">RFC4379</a>] is specified to
work with IPv6. Specifically, the Target FEC Stacks include both
IPv4 and IPv6 versions of all FECs (see <a href="./rfc4379#section-3.2">Section 3.2 of RFC 4379</a>).
The only exceptions are the Pseudowire FECs, which are later
specified for IPv6 in <a href="./rfc6829">RFC 6829</a> [<a href="./rfc6829" title=""Label Switched Path (LSP) Ping for Pseudowire Forwarding Equivalence Classes (FECs) Advertised over IPv6"">RFC6829</a>]. The multipath information
also includes IPv6 encodings (see <a href="./rfc4379#section-3.3.1">Section 3.3.1 of RFC 4379</a>).
LSP Ping packets are UDP packets over either IPv4 or IPv6 (see
<a href="./rfc4379#section-4.3">Section 4.3 of RFC 4379</a>). However, for IPv6 the destination IP
address is a (randomly chosen) IPv6 address from the range
0:0:0:0:0:FFFF:127/104; that is, using an IPv4-mapped IPv6 address.
This is a transitional mechanism that should not bleed into IPv6-only
networks, as [<a href="#ref-IPv4-MAPPED">IPv4-MAPPED</a>] explains. The issue is that the MPLS LSP
Ping mechanism needs a range of loopback IP addresses to be used as
destination addresses to exercise Equal Cost Multiple Path (ECMP),
but the IPv6 address architecture specifies a single address
(::1/128) for loopback. A mechanism to achieve this was proposed in
[<a href="#ref-LOOPBACK-PREFIX">LOOPBACK-PREFIX</a>].
Additionally, <a href="./rfc4379">RFC 4379</a> does not define the value to be used in the
IPv6 Router Alert option (RAO). For IPv4 RAO, a value of zero is
used. However, there is no equivalent value for IPv6 RAO. This gap
needs to be fixed to be able to use LSP Ping in IPv6 networks.
Further details on this gap are captured, along with a proposed
solution, in [<a href="#ref-IPv6-RAO">IPv6-RAO</a>].
Another gap is that the mechanisms described in <a href="./rfc4379">RFC 4379</a> may fail
when tunneling IPv4 traffic over an LSP that is supported by
IPv6-only infrastructure.
Assume the following:
o LSP Ping is operating in traceroute mode over an MPLS LSP.
o The two routers that terminate the LSP run dual stack.
o The LSP interior routers run IPv6 only.
o The LSP is signaled over IPv6.
<span class="grey">George & Pignataro Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
Packets will expire at LSP interior routers. According to <a href="./rfc4379">RFC 4379</a>,
the interior router must parse the IPv4 Echo Request and then send an
IPv4 Echo Reply. However, the LSP interior router is not IPv4-aware.
It cannot parse the IPv4 Echo Request, nor can it send an IPv4 Echo
Reply. So, no reply is sent.
The mechanism described in <a href="./rfc4379">RFC 4379</a> also does not sufficiently
explain the behavior in certain IPv6-specific scenarios. For
example, <a href="./rfc4379">RFC 4379</a> defines the K value as 28 octets when the Address
Family is set to IPv6 Unnumbered, but it doesn't describe how to
carry a 32-bit LSR Router ID in the 128-bit Downstream IP Address
field.
Gap: Major; LSP Ping uses IPv4-mapped IPv6 addresses. IP version
mismatches may cause dropped messages and unclear mapping from the
LSR Router ID to Downstream IP Address.
<span class="h4"><a class="selflink" id="section-3.4.3" href="#section-3.4.3">3.4.3</a>. Bidirectional Forwarding Detection (BFD)</span>
The BFD specification for MPLS LSPs [<a href="./rfc5884" title=""Bidirectional Forwarding Detection (BFD) for MPLS Label Switched Paths (LSPs)"">RFC5884</a>] is defined for IPv4, as
well as IPv6, versions of MPLS FECs (see <a href="./rfc5884#section-3.1">Section 3.1 of RFC 5884</a>).
Additionally, the BFD packet is encapsulated over UDP and specified
to run over both IPv4 and IPv6 (see <a href="./rfc5884#section-7">Section 7 of RFC 5884</a>).
Gap: None.
<span class="h4"><a class="selflink" id="section-3.4.4" href="#section-3.4.4">3.4.4</a>. Pseudowire OAM</span>
The OAM specifications for MPLS Pseudowires define usage for both
IPv4 and IPv6. Specifically, VCCV [<a href="./rfc5085" title=""Pseudowire Virtual Circuit Connectivity Verification (VCCV): A Control Channel for Pseudowires"">RFC5085</a>] can carry IPv4 or IPv6
OAM packets (see Sections <a href="#section-5.1.1">5.1.1</a> and <a href="#section-5.2.1">5.2.1</a> of <a href="./rfc5085">RFC 5085</a>), and VCCV for
BFD [<a href="./rfc5885" title=""Bidirectional Forwarding Detection (BFD) for the Pseudowire Virtual Circuit Connectivity Verification (VCCV)"">RFC5885</a>] also defines an IPv6 encapsulation (see <a href="./rfc5885#section-3.2">Section 3.2 of
RFC 5885</a>).
Additionally, for LSP Ping for pseudowires, the Pseudowire FECs are
specified for IPv6 in <a href="./rfc6829">RFC 6829</a> [<a href="./rfc6829" title=""Label Switched Path (LSP) Ping for Pseudowire Forwarding Equivalence Classes (FECs) Advertised over IPv6"">RFC6829</a>].
Gap: None.
<span class="h4"><a class="selflink" id="section-3.4.5" href="#section-3.4.5">3.4.5</a>. MPLS Transport Profile (MPLS-TP) OAM</span>
As with MPLS-TP, MPLS-TP OAM [<a href="./rfc6371" title=""Operations, Administration, and Maintenance Framework for MPLS-Based Transport Networks"">RFC6371</a>] does not require IP or
existing MPLS OAM functions and should not be affected by operation
on an IPv6-only network. Therefore, this is out of scope for this
document but is included for completeness. Although not required,
MPLS-TP can use IP.
Gap: None. MPLS-TP OAM does not require IP.
<span class="grey">George & Pignataro Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. MIB Modules</span>
<a href="./rfc3811">RFC 3811</a> [<a href="./rfc3811" title=""Definitions of Textual Conventions (TCs) for Multiprotocol Label Switching (MPLS) Management"">RFC3811</a>] defines the textual conventions for MPLS. These
lack support for IPv6 in defining MplsExtendedTunnelId and
MplsLsrIdentifier. These textual conventions are used in the MPLS-TE
MIB specification [<a href="./rfc3812" title=""Multiprotocol Label Switching (MPLS) Traffic Engineering (TE) Management Information Base (MIB)"">RFC3812</a>], the GMPLS-TE MIB specification [<a href="./rfc4802" title=""Generalized Multiprotocol Label Switching (GMPLS) Traffic Engineering Management Information Base"">RFC4802</a>]
and the FRR extension [<a href="./rfc6445" title=""Multiprotocol Label Switching (MPLS) Traffic Engineering Management Information Base for Fast Reroute"">RFC6445</a>]. "Definitions of Textual Conventions
(TCs) for Multiprotocol Label Switching (MPLS) Management" [<a href="#ref-MPLS-TC" title=""Definitions of Textual Conventions (TCs) for Multiprotocol Label Switching (MPLS) Management"">MPLS-TC</a>]
tries to resolve this gap by marking this textual convention as
obsolete.
The other MIB specifications for LSR [<a href="./rfc3813" title=""Multiprotocol Label Switching (MPLS) Label Switching Router (LSR) Management Information Base (MIB)"">RFC3813</a>], LDP [<a href="./rfc3815" title=""Definitions of Managed Objects for the Multiprotocol Label Switching (MPLS), Label Distribution Protocol (LDP)"">RFC3815</a>], and TE
[<a href="./rfc4220" title=""Traffic Engineering Link Management Information Base"">RFC4220</a>] have support for both IPv4 and IPv6.
Lastly, <a href="./rfc4990">RFC 4990</a> [<a href="./rfc4990" title=""Use of Addresses in Generalized Multiprotocol Label Switching (GMPLS) Networks"">RFC4990</a>] discusses how to handle IPv6 sources and
destinations in the MPLS and GMPLS-TE MIB modules. In particular,
<a href="./rfc4990#section-8">Section 8 of RFC 4990</a> [<a href="./rfc4990" title=""Use of Addresses in Generalized Multiprotocol Label Switching (GMPLS) Networks"">RFC4990</a>] describes a method of defining or
monitoring an LSP tunnel using the MPLS-TE and GMPLS-TE MIB modules,
working around some of the limitations in <a href="./rfc3811">RFC 3811</a> [<a href="./rfc3811" title=""Definitions of Textual Conventions (TCs) for Multiprotocol Label Switching (MPLS) Management"">RFC3811</a>].
Gap: Minor; <a href="./rfc4990#section-8">Section 8 of RFC 4990</a> [<a href="./rfc4990" title=""Use of Addresses in Generalized Multiprotocol Label Switching (GMPLS) Networks"">RFC4990</a>] describes a method to
handle IPv6 addresses in the MPLS-TE [<a href="./rfc3812" title=""Multiprotocol Label Switching (MPLS) Traffic Engineering (TE) Management Information Base (MIB)"">RFC3812</a>] and GMPLS-TE [<a href="./rfc4802" title=""Generalized Multiprotocol Label Switching (GMPLS) Traffic Engineering Management Information Base"">RFC4802</a>]
MIB modules. Work underway to update <a href="./rfc3811">RFC 3811</a> via [<a href="#ref-MPLS-TC" title=""Definitions of Textual Conventions (TCs) for Multiprotocol Label Switching (MPLS) Management"">MPLS-TC</a>], may
also need to update <a href="./rfc3812">RFC 3812</a>, <a href="./rfc4802">RFC 4802</a>, and <a href="./rfc6445">RFC 6445</a>, which depend on
it.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Gap Summary</span>
This document has reviewed a wide variety of MPLS features and
protocols to determine their suitability for use on IPv6-only or
IPv6-primary networks. While some parts of the MPLS suite will
function properly without additional changes, gaps have been
identified in others that will need to be addressed with follow-on
work. This section will summarize those gaps, along with pointers to
any work in progress to address them. Note that because the
referenced documents are works in progress and do not have consensus
at the time of this document's publication, there could be other
solutions proposed at a future time, and the pointers in this
document should not be considered normative in any way.
Additionally, work in progress on new features that use MPLS
protocols will need to ensure that those protocols support operation
on IPv6-only or IPv6-primary networks, or explicitly identify any
dependencies on existing gaps that, once resolved, will allow proper
IPv6-only operation.
<span class="grey">George & Pignataro Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
Identified Gaps in MPLS for IPv6-Only Networks
+---------+---------------------------------------+-----------------+
| Item | Gap | Addressed in |
+---------+---------------------------------------+-----------------+
| LDP | LSP mapping, LDP identifiers, LDP | [<a href="#ref-LDP-IPv6">LDP-IPv6</a>] |
| S.3.2.1 | discovery, LDP session establishment, | |
| | next-hop address, and LDP TTL | |
| | security | |
+---------+---------------------------------------+-----------------+
| mLDP | Inherits gaps from LDP, <a href="./rfc6512">RFC 6512</a> | Inherits |
| S.3.2.2 | [<a href="./rfc6512" title=""Using Multipoint LDP When the Backbone Has No Route to the Root"">RFC6512</a>] | [<a href="#ref-LDP-IPv6">LDP-IPv6</a>], |
| | | additional |
| | | fixes TBD |
+---------+---------------------------------------+-----------------+
| GMPLS | <a href="./rfc6370">RFC 6370</a> [<a href="./rfc6370" title=""MPLS Transport Profile (MPLS-TP) Identifiers"">RFC6370</a>] Node ID derivation | TBD |
| S.3.2.6 | | |
+---------+---------------------------------------+-----------------+
| L2VPN | <a href="./rfc6074">RFC 6074</a> [<a href="./rfc6074" title=""Provisioning, Auto-Discovery, and Signaling in Layer 2 Virtual Private Networks (L2VPNs)"">RFC6074</a>] discovery, | TBD |
| S.3.3.1 | signaling | |
+---------+---------------------------------------+-----------------+
| L3VPN | <a href="./rfc4659">RFC 4659</a> [<a href="./rfc4659" title=""BGP-MPLS IP Virtual Private Network (VPN) Extension for IPv6 VPN"">RFC4659</a>] does not define a | TBD |
| S.3.3.2 | method for 4PE/4VPE | |
+---------+---------------------------------------+-----------------+
| OAM | <a href="./rfc4379">RFC 4379</a> [<a href="./rfc4379" title=""Detecting Multi-Protocol Label Switched (MPLS) Data Plane Failures"">RFC4379</a>] No IPv6 multipath | [<a href="#ref-IPv6-RAO">IPv6-RAO</a>] |
| S.3.4 | support, no IPv6 RAO, possible | |
| | dropped messages in IP version | |
| | mismatch | |
+---------+---------------------------------------+-----------------+
| MIB | <a href="./rfc3811">RFC 3811</a> [<a href="./rfc3811" title=""Definitions of Textual Conventions (TCs) for Multiprotocol Label Switching (MPLS) Management"">RFC3811</a>] no IPv6 textual | [<a href="#ref-MPLS-TC" title=""Definitions of Textual Conventions (TCs) for Multiprotocol Label Switching (MPLS) Management"">MPLS-TC</a>] |
| Modules | convention | |
| S.3.5 | | |
+---------+---------------------------------------+-----------------+
Table 1: IPv6-Only MPLS Gaps
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Security Considerations</span>
Changing the address family used for MPLS network operation does not
fundamentally alter the security considerations currently extant in
any of the specifics of the protocol or its features. However,
follow-on work recommended by this gap analysis will need to address
any effects that the use of IPv6 in their modifications may have on
security.
<span class="grey">George & Pignataro Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. References</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Normative References</span>
[<a id="ref-RFC2460">RFC2460</a>] Deering, S. and R. Hinden, "Internet Protocol, Version 6
(IPv6) Specification", <a href="./rfc2460">RFC 2460</a>, December 1998,
<<a href="http://www.rfc-editor.org/info/rfc2460">http://www.rfc-editor.org/info/rfc2460</a>>.
[<a id="ref-RFC3032">RFC3032</a>] Rosen, E., Tappan, D., Fedorkow, G., Rekhter, Y.,
Farinacci, D., Li, T., and A. Conta, "MPLS Label Stack
Encoding", <a href="./rfc3032">RFC 3032</a>, January 2001,
<<a href="http://www.rfc-editor.org/info/rfc3032">http://www.rfc-editor.org/info/rfc3032</a>>.
[<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 href="http://www.rfc-editor.org/info/rfc3107">http://www.rfc-editor.org/info/rfc3107</a>>.
[<a id="ref-RFC3209">RFC3209</a>] Awduche, D., Berger, L., Gan, D., Li, T., Srinivasan, V.,
and G. Swallow, "RSVP-TE: Extensions to RSVP for LSP
Tunnels", <a href="./rfc3209">RFC 3209</a>, December 2001,
<<a href="http://www.rfc-editor.org/info/rfc3209">http://www.rfc-editor.org/info/rfc3209</a>>.
[<a id="ref-RFC3471">RFC3471</a>] Berger, L., "Generalized Multi-Protocol Label Switching
(GMPLS) Signaling Functional Description", <a href="./rfc3471">RFC 3471</a>,
January 2003, <<a href="http://www.rfc-editor.org/info/rfc3471">http://www.rfc-editor.org/info/rfc3471</a>>.
[<a id="ref-RFC3473">RFC3473</a>] Berger, L., "Generalized Multi-Protocol Label Switching
(GMPLS) Signaling Resource ReserVation Protocol-Traffic
Engineering (RSVP-TE) Extensions", <a href="./rfc3473">RFC 3473</a>, January 2003,
<<a href="http://www.rfc-editor.org/info/rfc3473">http://www.rfc-editor.org/info/rfc3473</a>>.
[<a id="ref-RFC3811">RFC3811</a>] Nadeau, T. and J. Cucchiara, "Definitions of Textual
Conventions (TCs) for Multiprotocol Label Switching (MPLS)
Management", <a href="./rfc3811">RFC 3811</a>, June 2004,
<<a href="http://www.rfc-editor.org/info/rfc3811">http://www.rfc-editor.org/info/rfc3811</a>>.
[<a id="ref-RFC4023">RFC4023</a>] Worster, T., Rekhter, Y., and E. Rosen, "Encapsulating
MPLS in IP or Generic Routing Encapsulation (GRE)", <a href="./rfc4023">RFC</a>
<a href="./rfc4023">4023</a>, March 2005,
<<a href="http://www.rfc-editor.org/info/rfc4023">http://www.rfc-editor.org/info/rfc4023</a>>.
[<a id="ref-RFC4379">RFC4379</a>] Kompella, K. and G. Swallow, "Detecting Multi-Protocol
Label Switched (MPLS) Data Plane Failures", <a href="./rfc4379">RFC 4379</a>,
February 2006, <<a href="http://www.rfc-editor.org/info/rfc4379">http://www.rfc-editor.org/info/rfc4379</a>>.
<span class="grey">George & Pignataro Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
[<a id="ref-RFC4659">RFC4659</a>] De Clercq, J., Ooms, D., Carugi, M., and F. Le Faucheur,
"BGP-MPLS IP Virtual Private Network (VPN) Extension for
IPv6 VPN", <a href="./rfc4659">RFC 4659</a>, September 2006,
<<a href="http://www.rfc-editor.org/info/4659">http://www.rfc-editor.org/info/4659</a>>.
[<a id="ref-RFC4817">RFC4817</a>] Townsley, M., Pignataro, C., Wainner, S., Seely, T., and
J. Young, "Encapsulation of MPLS over Layer 2 Tunneling
Protocol Version 3", <a href="./rfc4817">RFC 4817</a>, March 2007,
<<a href="http://www.rfc-editor.org/info/rfc4817">http://www.rfc-editor.org/info/rfc4817</a>>.
[<a id="ref-RFC5036">RFC5036</a>] Andersson, L., Minei, I., and B. Thomas, "LDP
Specification", <a href="./rfc5036">RFC 5036</a>, October 2007,
<<a href="http://www.rfc-editor.org/info/rfc5036">http://www.rfc-editor.org/info/rfc5036</a>>.
[<a id="ref-RFC6074">RFC6074</a>] Rosen, E., Davie, B., Radoaca, V., and W. Luo,
"Provisioning, Auto-Discovery, and Signaling in Layer 2
Virtual Private Networks (L2VPNs)", <a href="./rfc6074">RFC 6074</a>, January
2011, <<a href="http://www.rfc-editor.org/info/rfc6074">http://www.rfc-editor.org/info/rfc6074</a>>.
[<a id="ref-RFC6370">RFC6370</a>] Bocci, M., Swallow, G., and E. Gray, "MPLS Transport
Profile (MPLS-TP) Identifiers", <a href="./rfc6370">RFC 6370</a>, September 2011,
<<a href="http://www.rfc-editor.org/info/rfc6370">http://www.rfc-editor.org/info/rfc6370</a>>.
[<a id="ref-RFC6512">RFC6512</a>] Wijnands, IJ., Rosen, E., Napierala, M., and N. Leymann,
"Using Multipoint LDP When the Backbone Has No Route to
the Root", <a href="./rfc6512">RFC 6512</a>, February 2012,
<<a href="http://www.rfc-editor.org/info/rfc6512">http://www.rfc-editor.org/info/rfc6512</a>>.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Informative References</span>
[<a id="ref-EVPN">EVPN</a>] Sajassi, A., Aggarwal, R., Bitar, N., Isaac, A., and J.
Uttaro, "BGP MPLS Based Ethernet VPN", Work in Progress,
<a href="./draft-ietf-l2vpn-evpn-11">draft-ietf-l2vpn-evpn-11</a>, October 2014.
[<a id="ref-IPv4-MAPPED">IPv4-MAPPED</a>]
Metz, C. and J. Hagino, "IPv4-Mapped Addresses on the Wire
Considered Harmful", Work in Progress, <a href="./draft-itojun-v6ops-v4mapped-harmful-02">draft-itojun-v6ops-</a>
<a href="./draft-itojun-v6ops-v4mapped-harmful-02">v4mapped-harmful-02</a>, October 2003.
[<a id="ref-IPv6-RAO">IPv6-RAO</a>]
Raza, K., Akiya, N., and C. Pignataro, "IPv6 Router Alert
Option for MPLS OAM", Work in Progress, <a href="./draft-raza-mpls-oam-ipv6-rao-02">draft-raza-mpls-</a>
<a href="./draft-raza-mpls-oam-ipv6-rao-02">oam-ipv6-rao-02</a>, September 2014.
[<a id="ref-LDP-IPv6">LDP-IPv6</a>]
Asati, R., Manral, V., Papneja, R., and C. Pignataro,
"Updates to LDP for IPv6", Work in Progress, <a href="./draft-ietf-mpls-ldp-ipv6-14">draft-ietf-</a>
<a href="./draft-ietf-mpls-ldp-ipv6-14">mpls-ldp-ipv6-14</a>, October 2014.
<span class="grey">George & Pignataro Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
[<a id="ref-LOOPBACK-PREFIX">LOOPBACK-PREFIX</a>]
Smith, M., <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22A+Larger+Loopback+Prefix+for+IPv6%22'>"A Larger Loopback Prefix for IPv6"</a>, Work in
Progress, <a href="./draft-smith-v6ops-larger-ipv6-loopback-prefix-04">draft-smith-v6ops-larger-ipv6-loopback-prefix-</a>
<a href="./draft-smith-v6ops-larger-ipv6-loopback-prefix-04">04</a>, February 2013.
[<a id="ref-mLDP-NLRI">mLDP-NLRI</a>]
Wijnands, I., Rosen, E., and U. Joorde, "Encoding mLDP
FECs in the NLRI of BGP MCAST-VPN Routes", Work in
Progress, <a href="./draft-ietf-l3vpn-mvpn-mldp-nlri-10">draft-ietf-l3vpn-mvpn-mldp-nlri-10</a>, November
2014.
[<a id="ref-MPLS-TC">MPLS-TC</a>] Manral, V., Tsou, T., Will, W., and F. Fondelli,
"Definitions of Textual Conventions (TCs) for
Multiprotocol Label Switching (MPLS) Management", Work in
Progress, <a href="./draft-manral-mpls-rfc3811bis-04">draft-manral-mpls-rfc3811bis-04</a>, September 2014.
[<a id="ref-PE-CE">PE-CE</a>] Patel, K., Rekhter, Y., and E. Rosen, "BGP as an MVPN
PE-CE Protocol", Work in Progress,
<a href="./draft-ietf-l3vpn-mvpn-pe">draft-ietf-l3vpn-mvpn-pe</a>- ce-02, October 2014.
[<a id="ref-RFC1918">RFC1918</a>] Rekhter, Y., Moskowitz, R., Karrenberg, D., Groot, G., and
E. Lear, "Address Allocation for Private Internets",
<a href="https://www.rfc-editor.org/bcp/bcp5">BCP 5</a>, <a href="./rfc1918">RFC 1918</a>, February 1996,
<<a href="http://www.rfc-editor.org/info/rfc1918">http://www.rfc-editor.org/info/rfc1918</a>>.
[<a id="ref-RFC3630">RFC3630</a>] Katz, D., Kompella, K., and D. Yeung, "Traffic Engineering
(TE) Extensions to OSPF Version 2", <a href="./rfc3630">RFC 3630</a>, September
2003, <<a href="http://www.rfc-editor.org/info/rfc3630">http://www.rfc-editor.org/info/rfc3630</a>>.
[<a id="ref-RFC3812">RFC3812</a>] Srinivasan, C., Viswanathan, A., and T. Nadeau,
"Multiprotocol Label Switching (MPLS) Traffic Engineering
(TE) Management Information Base (MIB)", <a href="./rfc3812">RFC 3812</a>, June
2004, <<a href="http://www.rfc-editor.org/info/rfc3812">http://www.rfc-editor.org/info/rfc3812</a>>.
[<a id="ref-RFC3813">RFC3813</a>] Srinivasan, C., Viswanathan, A., and T. Nadeau,
"Multiprotocol Label Switching (MPLS) Label Switching
Router (LSR) Management Information Base (MIB)", <a href="./rfc3813">RFC 3813</a>,
June 2004, <<a href="http://www.rfc-editor.org/info/rfc3813">http://www.rfc-editor.org/info/rfc3813</a>>.
[<a id="ref-RFC3815">RFC3815</a>] Cucchiara, J., Sjostrand, H., and J. Luciani, "Definitions
of Managed Objects for the Multiprotocol Label Switching
(MPLS), Label Distribution Protocol (LDP)", <a href="./rfc3815">RFC 3815</a>, June
2004, <<a href="http://www.rfc-editor.org/info/rfc3815">http://www.rfc-editor.org/info/rfc3815</a>>.
[<a id="ref-RFC4090">RFC4090</a>] Pan, P., Swallow, G., and A. Atlas, "Fast Reroute
Extensions to RSVP-TE for LSP Tunnels", <a href="./rfc4090">RFC 4090</a>, May
2005, <<a href="http://www.rfc-editor.org/info/rfc4090">http://www.rfc-editor.org/info/rfc4090</a>>.
<span class="grey">George & Pignataro Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
[<a id="ref-RFC4220">RFC4220</a>] Dubuc, M., Nadeau, T., and J. Lang, "Traffic Engineering
Link Management Information Base", <a href="./rfc4220">RFC 4220</a>, November
2005, <<a href="http://www.rfc-editor.org/info/rfc4220">http://www.rfc-editor.org/info/rfc4220</a>>.
[<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 href="http://www.rfc-editor.org/info/rfc4364">http://www.rfc-editor.org/info/rfc4364</a>>.
[<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 href="http://www.rfc-editor.org/info/rfc4447">http://www.rfc-editor.org/info/rfc4447</a>>.
[<a id="ref-RFC4558">RFC4558</a>] Ali, Z., Rahman, R., Prairie, D., and D. Papadimitriou,
"Node-ID Based Resource Reservation Protocol (RSVP) Hello:
A Clarification Statement", <a href="./rfc4558">RFC 4558</a>, June 2006,
<<a href="http://www.rfc-editor.org/info/rfc4558">http://www.rfc-editor.org/info/rfc4558</a>>.
[<a id="ref-RFC4655">RFC4655</a>] Farrel, A., Vasseur, J., and J. Ash, "A Path Computation
Element (PCE)-Based Architecture", <a href="./rfc4655">RFC 4655</a>, August 2006,
<<a href="http://www.rfc-editor.org/info/rfc4655">http://www.rfc-editor.org/info/rfc4655</a>>.
[<a id="ref-RFC4664">RFC4664</a>] Andersson, L. and E. Rosen, "Framework for Layer 2 Virtual
Private Networks (L2VPNs)", <a href="./rfc4664">RFC 4664</a>, September 2006,
<<a href="http://www.rfc-editor.org/info/rfc4664">http://www.rfc-editor.org/info/rfc4664</a>>.
[<a id="ref-RFC4761">RFC4761</a>] Kompella, K. and Y. Rekhter, "Virtual Private LAN Service
(VPLS) Using BGP for Auto-Discovery and Signaling", <a href="./rfc4761">RFC</a>
<a href="./rfc4761">4761</a>, January 2007,
<<a href="http://www.rfc-editor.org/info/rfc4761">http://www.rfc-editor.org/info/rfc4761</a>>.
[<a id="ref-RFC4762">RFC4762</a>] Lasserre, M. and V. Kompella, "Virtual Private LAN Service
(VPLS) Using Label Distribution Protocol (LDP) Signaling",
<a href="./rfc4762">RFC 4762</a>, January 2007,
<<a href="http://www.rfc-editor.org/info/rfc4762">http://www.rfc-editor.org/info/rfc4762</a>>.
[<a id="ref-RFC4798">RFC4798</a>] De Clercq, J., Ooms, D., Prevost, S., and F. Le Faucheur,
"Connecting IPv6 Islands over IPv4 MPLS Using IPv6
Provider Edge Routers (6PE)", <a href="./rfc4798">RFC 4798</a>, February 2007,
<<a href="http://www.rfc-editor.org/info/rfc4798">http://www.rfc-editor.org/info/rfc4798</a>>.
[<a id="ref-RFC4802">RFC4802</a>] Nadeau, T. and A. Farrel, "Generalized Multiprotocol Label
Switching (GMPLS) Traffic Engineering Management
Information Base", <a href="./rfc4802">RFC 4802</a>, February 2007,
<<a href="http://www.rfc-editor.org/info/rfc4802">http://www.rfc-editor.org/info/rfc4802</a>>.
<span class="grey">George & Pignataro Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
[<a id="ref-RFC4875">RFC4875</a>] Aggarwal, R., Papadimitriou, D., and S. Yasukawa,
"Extensions to Resource Reservation Protocol - Traffic
Engineering (RSVP-TE) for Point-to-Multipoint TE Label
Switched Paths (LSPs)", <a href="./rfc4875">RFC 4875</a>, May 2007,
<<a href="http://www.rfc-editor.org/info/rfc4875">http://www.rfc-editor.org/info/rfc4875</a>>.
[<a id="ref-RFC4884">RFC4884</a>] Bonica, R., Gan, D., Tappan, D., and C. Pignataro,
"Extended ICMP to Support Multi-Part Messages", <a href="./rfc4884">RFC 4884</a>,
April 2007, <<a href="http://www.rfc-editor.org/info/rfc4884">http://www.rfc-editor.org/info/rfc4884</a>>.
[<a id="ref-RFC4950">RFC4950</a>] Bonica, R., Gan, D., Tappan, D., and C. Pignataro, "ICMP
Extensions for Multiprotocol Label Switching", <a href="./rfc4950">RFC 4950</a>,
August 2007, <<a href="http://www.rfc-editor.org/info/rfc4950">http://www.rfc-editor.org/info/rfc4950</a>>.
[<a id="ref-RFC4990">RFC4990</a>] Shiomoto, K., Papneja, R., and R. Rabbat, "Use of
Addresses in Generalized Multiprotocol Label Switching
(GMPLS) Networks", <a href="./rfc4990">RFC 4990</a>, September 2007,
<<a href="http://www.rfc-editor.org/info/rfc4990">http://www.rfc-editor.org/info/rfc4990</a>>.
[<a id="ref-RFC5082">RFC5082</a>] Gill, V., Heasley, J., Meyer, D., Savola, P., and C.
Pignataro, "The Generalized TTL Security Mechanism
(GTSM)", <a href="./rfc5082">RFC 5082</a>, October 2007,
<<a href="http://www.rfc-editor.org/info/rfc5082">http://www.rfc-editor.org/info/rfc5082</a>>.
[<a id="ref-RFC5085">RFC5085</a>] Nadeau, T. and C. Pignataro, "Pseudowire Virtual Circuit
Connectivity Verification (VCCV): A Control Channel for
Pseudowires", <a href="./rfc5085">RFC 5085</a>, December 2007,
<<a href="http://www.rfc-editor.org/info/rfc5085">http://www.rfc-editor.org/info/rfc5085</a>>.
[<a id="ref-RFC5088">RFC5088</a>] Le Roux, JL., Vasseur, JP., Ikejiri, Y., and R. Zhang,
"OSPF Protocol Extensions for Path Computation Element
(PCE) Discovery", <a href="./rfc5088">RFC 5088</a>, January 2008,
<<a href="http://www.rfc-editor.org/info/rfc5088">http://www.rfc-editor.org/info/rfc5088</a>>.
[<a id="ref-RFC5089">RFC5089</a>] Le Roux, JL., Vasseur, JP., Ikejiri, Y., and R. Zhang,
"IS-IS Protocol Extensions for Path Computation Element
(PCE) Discovery", <a href="./rfc5089">RFC 5089</a>, January 2008,
<<a href="http://www.rfc-editor.org/info/rfc5089">http://www.rfc-editor.org/info/rfc5089</a>>.
[<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 href="http://www.rfc-editor.org/info/rfc5286">http://www.rfc-editor.org/info/rfc5286</a>>.
[<a id="ref-RFC5305">RFC5305</a>] Li, T. and H. Smit, "IS-IS Extensions for Traffic
Engineering", <a href="./rfc5305">RFC 5305</a>, October 2008,
<<a href="http://www.rfc-editor.org/info/rfc5305">http://www.rfc-editor.org/info/rfc5305</a>>.
<span class="grey">George & Pignataro Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
[<a id="ref-RFC5329">RFC5329</a>] Ishiguro, K., Manral, V., Davey, A., and A. Lindem,
"Traffic Engineering Extensions to OSPF Version 3", <a href="./rfc5329">RFC</a>
<a href="./rfc5329">5329</a>, September 2008,
<<a href="http://www.rfc-editor.org/info/rfc5329">http://www.rfc-editor.org/info/rfc5329</a>>.
[<a id="ref-RFC5440">RFC5440</a>] Vasseur, JP. and JL. Le Roux, "Path Computation Element
(PCE) Communication Protocol (PCEP)", <a href="./rfc5440">RFC 5440</a>, March
2009, <<a href="http://www.rfc-editor.org/info/rfc5440">http://www.rfc-editor.org/info/rfc5440</a>>.
[<a id="ref-RFC5512">RFC5512</a>] Mohapatra, P. and E. Rosen, "The BGP Encapsulation
Subsequent Address Family Identifier (SAFI) and the BGP
Tunnel Encapsulation Attribute", <a href="./rfc5512">RFC 5512</a>, April 2009,
<<a href="http://www.rfc-editor.org/info/rfc5512">http://www.rfc-editor.org/info/rfc5512</a>>.
[<a id="ref-RFC5520">RFC5520</a>] Bradford, R., Vasseur, JP., and A. Farrel, "Preserving
Topology Confidentiality in Inter-Domain Path Computation
Using a Path-Key-Based Mechanism", <a href="./rfc5520">RFC 5520</a>, April 2009,
<<a href="http://www.rfc-editor.org/info/rfc5520">http://www.rfc-editor.org/info/rfc5520</a>>.
[<a id="ref-RFC5521">RFC5521</a>] Oki, E., Takeda, T., and A. Farrel, "Extensions to the
Path Computation Element Communication Protocol (PCEP) for
Route Exclusions", <a href="./rfc5521">RFC 5521</a>, April 2009,
<<a href="http://www.rfc-editor.org/info/rfc5521">http://www.rfc-editor.org/info/rfc5521</a>>.
[<a id="ref-RFC5640">RFC5640</a>] Filsfils, C., Mohapatra, P., and C. Pignataro, "Load-
Balancing for Mesh Softwires", <a href="./rfc5640">RFC 5640</a>, August 2009,
<<a href="http://www.rfc-editor.org/info/rfc5640">http://www.rfc-editor.org/info/rfc5640</a>>.
[<a id="ref-RFC5837">RFC5837</a>] Atlas, A., Bonica, R., Pignataro, C., Shen, N., and JR.
Rivers, "Extending ICMP for Interface and Next-Hop
Identification", <a href="./rfc5837">RFC 5837</a>, April 2010,
<<a href="http://www.rfc-editor.org/info/rfc5837">http://www.rfc-editor.org/info/rfc5837</a>>.
[<a id="ref-RFC5884">RFC5884</a>] Aggarwal, R., Kompella, K., Nadeau, T., and G. Swallow,
"Bidirectional Forwarding Detection (BFD) for MPLS Label
Switched Paths (LSPs)", <a href="./rfc5884">RFC 5884</a>, June 2010,
<<a href="http://www.rfc-editor.org/info/rfc5884">http://www.rfc-editor.org/info/rfc5884</a>>.
[<a id="ref-RFC5885">RFC5885</a>] Nadeau, T. and C. Pignataro, "Bidirectional Forwarding
Detection (BFD) for the Pseudowire Virtual Circuit
Connectivity Verification (VCCV)", <a href="./rfc5885">RFC 5885</a>, June 2010,
<<a href="http://www.rfc-editor.org/info/rfc5885">http://www.rfc-editor.org/info/rfc5885</a>>.
[<a id="ref-RFC5886">RFC5886</a>] Vasseur, JP., Le Roux, JL., and Y. Ikejiri, "A Set of
Monitoring Tools for Path Computation Element (PCE)-Based
Architecture", <a href="./rfc5886">RFC 5886</a>, June 2010,
<<a href="http://www.rfc-editor.org/info/rfc5886">http://www.rfc-editor.org/info/rfc5886</a>>.
<span class="grey">George & Pignataro Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
[<a id="ref-RFC5921">RFC5921</a>] Bocci, M., Bryant, S., Frost, D., Levrau, L., and L.
Berger, "A Framework for MPLS in Transport Networks",
<a href="./rfc5921">RFC 5921</a>, July 2010,
<<a href="http://www.rfc-editor.org/info/rfc5921">http://www.rfc-editor.org/info/rfc5921</a>>.
[<a id="ref-RFC6006">RFC6006</a>] Zhao, Q., King, D., Verhaeghe, F., Takeda, T., Ali, Z.,
and J. Meuric, "Extensions to the Path Computation Element
Communication Protocol (PCEP) for Point-to-Multipoint
Traffic Engineering Label Switched Paths", <a href="./rfc6006">RFC 6006</a>,
September 2010, <<a href="http://www.rfc-editor.org/info/rfc6006">http://www.rfc-editor.org/info/rfc6006</a>>.
[<a id="ref-RFC6073">RFC6073</a>] Martini, L., Metz, C., Nadeau, T., Bocci, M., and M.
Aissaoui, "Segmented Pseudowire", <a href="./rfc6073">RFC 6073</a>, January 2011,
<<a href="http://www.rfc-editor.org/info/rfc6073">http://www.rfc-editor.org/info/rfc6073</a>>.
[<a id="ref-RFC6119">RFC6119</a>] Harrison, J., Berger, J., and M. Bartlett, "IPv6 Traffic
Engineering in IS-IS", <a href="./rfc6119">RFC 6119</a>, February 2011,
<<a href="http://www.rfc-editor.org/info/rfc6119">http://www.rfc-editor.org/info/rfc6119</a>>.
[<a id="ref-RFC6371">RFC6371</a>] Busi, I. and D. Allan, "Operations, Administration, and
Maintenance Framework for MPLS-Based Transport Networks",
<a href="./rfc6371">RFC 6371</a>, September 2011,
<<a href="http://www.rfc-editor.org/info/rfc6371">http://www.rfc-editor.org/info/rfc6371</a>>.
[<a id="ref-RFC6388">RFC6388</a>] Wijnands, IJ., Minei, I., Kompella, K., and B. Thomas,
"Label Distribution Protocol Extensions for Point-to-
Multipoint and Multipoint-to-Multipoint Label Switched
Paths", <a href="./rfc6388">RFC 6388</a>, November 2011,
<<a href="http://www.rfc-editor.org/info/rfc6388">http://www.rfc-editor.org/info/rfc6388</a>>.
[<a id="ref-RFC6445">RFC6445</a>] Nadeau, T., Koushik, A., and R. Cetin, "Multiprotocol
Label Switching (MPLS) Traffic Engineering Management
Information Base for Fast Reroute", <a href="./rfc6445">RFC 6445</a>, November
2011, <<a href="http://www.rfc-editor.org/info/rfc6445">http://www.rfc-editor.org/info/rfc6445</a>>.
[<a id="ref-RFC6513">RFC6513</a>] Rosen, E. and R. Aggarwal, "Multicast in MPLS/BGP IP
VPNs", <a href="./rfc6513">RFC 6513</a>, February 2012,
<<a href="http://www.rfc-editor.org/info/rfc6513">http://www.rfc-editor.org/info/rfc6513</a>>.
[<a id="ref-RFC6514">RFC6514</a>] Aggarwal, R., Rosen, E., Morin, T., and Y. Rekhter, "BGP
Encodings and Procedures for Multicast in MPLS/BGP IP
VPNs", <a href="./rfc6514">RFC 6514</a>, February 2012,
<<a href="http://rfc-editor.org/info/rfc6514">http://rfc-editor.org/info/rfc6514</a>>.
[<a id="ref-RFC6540">RFC6540</a>] George, W., Donley, C., Liljenstolpe, C., and L. Howard,
"IPv6 Support Required for All IP-Capable Nodes", <a href="https://www.rfc-editor.org/bcp/bcp177">BCP 177</a>,
<a href="./rfc6540">RFC 6540</a>, April 2012,
<<a href="http://www.rfc-editor.org/info/rfc6540">http://www.rfc-editor.org/info/rfc6540</a>>.
<span class="grey">George & Pignataro Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
[<a id="ref-RFC6624">RFC6624</a>] Kompella, K., Kothari, B., and R. Cherukuri, "Layer 2
Virtual Private Networks Using BGP for Auto-Discovery and
Signaling", <a href="./rfc6624">RFC 6624</a>, May 2012,
<<a href="http://www.rfc-editor.org/info/rfc6624">http://www.rfc-editor.org/info/rfc6624</a>>.
[<a id="ref-RFC6720">RFC6720</a>] Pignataro, C. and R. Asati, "The Generalized TTL Security
Mechanism (GTSM) for the Label Distribution Protocol
(LDP)", <a href="./rfc6720">RFC 6720</a>, August 2012,
<<a href="http://www.rfc-editor.org/info/rfc6720">http://www.rfc-editor.org/info/rfc6720</a>>.
[<a id="ref-RFC6829">RFC6829</a>] Chen, M., Pan, P., Pignataro, C., and R. Asati, "Label
Switched Path (LSP) Ping for Pseudowire Forwarding
Equivalence Classes (FECs) Advertised over IPv6", <a href="./rfc6829">RFC</a>
<a href="./rfc6829">6829</a>, January 2013,
<<a href="http://www.rfc-editor.org/info/rfc6829">http://www.rfc-editor.org/info/rfc6829</a>>.
[<a id="ref-RFC7117">RFC7117</a>] Aggarwal, R., Kamite, Y., Fang, L., Rekhter, Y., and C.
Kodeboniya, "Multicast in Virtual Private LAN Service
(VPLS)", <a href="./rfc7117">RFC 7117</a>, February 2014,
<<a href="http://www.rfc-editor.org/info/rfc7117">http://www.rfc-editor.org/info/rfc7117</a>>.
Acknowledgements
The authors wish to thank Alvaro Retana, Andrew Yourtchenko, Loa
Andersson, David Allan, Mach Chen, Mustapha Aissaoui, and Mark Tinka
for their detailed reviews, as well as Brian Haberman, Joel Jaeggli,
Adrian Farrel, Nobo Akiya, Francis Dupont, and Tobias Gondrom for
their comments.
Contributors
The following people have contributed text to this document:
Rajiv Asati
Cisco Systems
7025 Kit Creek Road
Research Triangle Park, NC 27709
United States
EMail: rajiva@cisco.com
<span class="grey">George & Pignataro Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
Kamran Raza
Cisco Systems
2000 Innovation Drive
Ottawa, ON K2K-3E8
Canada
EMail: skraza@cisco.com
Ronald Bonica
Juniper Networks
2251 Corporate Park Drive
Herndon, VA 20171
United States
EMail: rbonica@juniper.net
Rajiv Papneja
Huawei Technologies
2330 Central Expressway
Santa Clara, CA 95050
United States
EMail: rajiv.papneja@huawei.com
Dhruv Dhody
Huawei Technologies
Leela Palace
Bangalore, Karnataka 560008
India
EMail: dhruv.ietf@gmail.com
Vishwas Manral
Ionos Networks
Sunnyvale, CA 94089
United States
EMail: vishwas@ionosnetworks.com
<span class="grey">George & Pignataro Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7439">RFC 7439</a> IPv6-Only MPLS January 2015</span>
Nagendra Kumar
Cisco Systems, Inc.
7200 Kit Creek Road
Research Triangle Park, NC 27709
United States
EMail: naikumar@cisco.com
Authors' Addresses
Wesley George (editor)
Time Warner Cable
13820 Sunrise Valley Drive
Herndon, VA 20111
United States
Phone: +1-703-561-2540
EMail: wesley.george@twcable.com
Carlos Pignataro (editor)
Cisco Systems, Inc.
7200-12 Kit Creek Road
Research Triangle Park, NC 27709
United States
Phone: +1-919-392-7428
EMail: cpignata@cisco.com
George & Pignataro Informational [Page 28]
</pre>
|