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
|
<pre>Internet Engineering Task Force (IETF) F. Zhang, Ed.
Request for Comments: 7551 Huawei
Category: Standards Track R. Jing
ISSN: 2070-1721 China Telecom
R. Gandhi, Ed.
Cisco Systems
May 2015
<span class="h1">RSVP-TE Extensions</span>
<span class="h1">for Associated Bidirectional Label Switched Paths (LSPs)</span>
Abstract
This document describes Resource Reservation Protocol (RSVP)
extensions to bind two point-to-point unidirectional Label Switched
Paths (LSPs) into an associated bidirectional LSP. The association
is achieved by defining new Association Types for use in ASSOCIATION
and in Extended ASSOCIATION Objects. One of these types enables
independent provisioning of the associated bidirectional LSPs on both
sides, while the other enables single-sided provisioning. The
REVERSE_LSP Object is also defined to enable a single endpoint to
trigger creation of the reverse LSP and to specify parameters of the
reverse LSP in the single-sided provisioning case.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7551">http://www.rfc-editor.org/info/rfc7551</a>.
<span class="grey">Zhang, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 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">Zhang, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-2">2</a>. Conventions Used in This Document ...............................<a href="#page-5">5</a>
<a href="#section-2.1">2.1</a>. Key Word Definitions .......................................<a href="#page-5">5</a>
<a href="#section-2.2">2.2</a>. Reverse Unidirectional LSPs ................................<a href="#page-5">5</a>
<a href="#section-2.3">2.3</a>. Message Formats ............................................<a href="#page-5">5</a>
<a href="#section-3">3</a>. Overview ........................................................<a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. Provisioning Model Overview ................................<a href="#page-6">6</a>
<a href="#section-3.1.1">3.1.1</a>. Single-Sided Provisioning ...........................<a href="#page-6">6</a>
<a href="#section-3.1.2">3.1.2</a>. Double-Sided Provisioning ...........................<a href="#page-6">6</a>
<a href="#section-3.2">3.2</a>. Association Signaling Overview .............................<a href="#page-6">6</a>
<a href="#section-3.2.1">3.2.1</a>. Single-Sided Provisioning ...........................<a href="#page-7">7</a>
<a href="#section-3.2.2">3.2.2</a>. Double-Sided Provisioning ...........................<a href="#page-7">7</a>
<a href="#section-3.3">3.3</a>. Asymmetric Bandwidth Signaling Overview ....................<a href="#page-8">8</a>
<a href="#section-3.3.1">3.3.1</a>. Single-Sided Provisioning ...........................<a href="#page-8">8</a>
<a href="#section-3.3.2">3.3.2</a>. Double-Sided Provisioning ...........................<a href="#page-8">8</a>
<a href="#section-3.4">3.4</a>. Recovery LSP Overview ......................................<a href="#page-8">8</a>
<a href="#section-4">4</a>. Message and Object Definitions ..................................<a href="#page-9">9</a>
<a href="#section-4.1">4.1</a>. RSVP Message Formats .......................................<a href="#page-9">9</a>
<a href="#section-4.2">4.2</a>. ASSOCIATION Object .........................................<a href="#page-9">9</a>
<a href="#section-4.3">4.3</a>. Extended ASSOCIATION Object ...............................<a href="#page-10">10</a>
<a href="#section-4.4">4.4</a>. REVERSE_LSP Object Definition .............................<a href="#page-11">11</a>
<a href="#section-4.4.1">4.4.1</a>. REVERSE_LSP Object Format ..........................<a href="#page-11">11</a>
<a href="#section-4.4.2">4.4.2</a>. REVERSE_LSP Subobjects .............................<a href="#page-11">11</a>
<a href="#section-5">5</a>. Processing Rules ...............................................<a href="#page-12">12</a>
<a href="#section-5.1">5.1</a>. Rules for ASSOCIATION Object ..............................<a href="#page-12">12</a>
<a href="#section-5.1.1">5.1.1</a>. Compatibility for ASSOCIATION Object ...............<a href="#page-14">14</a>
<a href="#section-5.2">5.2</a>. Rules for REVERSE_LSP Object ..............................<a href="#page-14">14</a>
<a href="#section-5.2.1">5.2.1</a>. Compatibility for REVERSE_LSP Object ...............<a href="#page-16">16</a>
<a href="#section-6">6</a>. IANA Considerations ............................................<a href="#page-16">16</a>
<a href="#section-6.1">6.1</a>. Association Types .........................................<a href="#page-16">16</a>
<a href="#section-6.2">6.2</a>. REVERSE_LSP Object ........................................<a href="#page-16">16</a>
<a href="#section-6.3">6.3</a>. Reverse LSP Failure PathErr Sub-code ......................<a href="#page-17">17</a>
<a href="#section-7">7</a>. Security Considerations ........................................<a href="#page-17">17</a>
<a href="#section-8">8</a>. References .....................................................<a href="#page-18">18</a>
<a href="#section-8.1">8.1</a>. Normative References ......................................<a href="#page-18">18</a>
<a href="#section-8.2">8.2</a>. Informative References ....................................<a href="#page-19">19</a>
Acknowledgements ..................................................<a href="#page-20">20</a>
Contributors ......................................................<a href="#page-20">20</a>
Authors' Addresses ................................................<a href="#page-20">20</a>
<span class="grey">Zhang, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The MPLS Transport Profile (MPLS-TP) requirements document [<a href="./rfc5654" title=""Requirements of an MPLS Transport Profile"">RFC5654</a>]
specifies that MPLS-TP MUST support associated bidirectional point-
to-point Label Switched Paths (LSPs). These requirements are given
in <a href="#section-2.1">Section 2.1</a> ("General Requirements") of that document and are
partially rephrased below:
7. MPLS-TP MUST support associated bidirectional point-to-point
LSPs.
11. The end points of an associated bidirectional LSP MUST be aware
of the pairing relationship of the forward and reverse LSPs used
to support the bidirectional service.
12. Nodes on the LSP of an associated bidirectional LSP where both
the forward and backward directions transit the same node in the
same (sub)layer as the LSP SHOULD be aware of the pairing
relationship of the forward and the backward directions of the
LSP.
50. The MPLS-TP control plane MUST support establishing associated
bidirectional P2P LSP including configuration of protection
functions and any associated maintenance functions.
The above requirements are also repeated in [<a href="./rfc6373" title=""MPLS Transport Profile (MPLS-TP) Control Plane Framework"">RFC6373</a>].
Furthermore, an associated bidirectional LSP is also useful for
protection-switching for Operations, Administration, and Maintenance
(OAM) messages that require a return path.
A variety of applications, such as Internet services and the return
paths of OAM messages, exist and may have different upstream and
downstream bandwidth requirements. [<a href="./rfc5654" title=""Requirements of an MPLS Transport Profile"">RFC5654</a>] specifies an asymmetric
bandwidth requirement in <a href="#section-2.1">Section 2.1</a> ("General Requirements"), and it
is repeated below:
14. MPLS-TP MUST support bidirectional LSPs with asymmetric
bandwidth requirements, i.e., the amount of reserved bandwidth
differs between the forward and backward directions.
The approach for supporting asymmetric bandwidth co-routed
bidirectional LSPs is defined in [<a href="./rfc6387" title=""GMPLS Asymmetric Bandwidth Bidirectional Label Switched Paths (LSPs)"">RFC6387</a>].
The method of association and the corresponding Resource Reservation
Protocol (RSVP) ASSOCIATION Object are defined in [<a href="./rfc4872" title=""RSVP-TE Extensions in Support of End-to-End Generalized Multi-Protocol Label Switching (GMPLS) Recovery"">RFC4872</a>],
[<a href="./rfc4873" title=""GMPLS Segment Recovery"">RFC4873</a>], and [<a href="./rfc6689" title=""Usage of the RSVP ASSOCIATION Object"">RFC6689</a>]. In that context, the ASSOCIATION Object is
used to associate a recovery LSP with the LSP it is protecting. This
<span class="grey">Zhang, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
object also has broader applicability as a mechanism to associate
RSVP states. [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>] defines the Extended ASSOCIATION Objects that
can be more generally applied for this purpose. This document uses
the term "(Extended) ASSOCIATION Objects" to refer collectively to
the ASSOCIATION Objects defined in [<a href="./rfc4872" title=""RSVP-TE Extensions in Support of End-to-End Generalized Multi-Protocol Label Switching (GMPLS) Recovery"">RFC4872</a>] and the Extended
ASSOCIATION Objects defined in [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>].
This document specifies mechanisms for binding two reverse
unidirectional LSPs into an associated bidirectional LSP. The
association is achieved by defining new Association Types for use in
(Extended) ASSOCIATION Objects. One of these types enables
independent provisioning of the associated bidirectional LSPs, while
the other enables single-sided provisioning. The REVERSE_LSP Object
is also defined to enable a single endpoint to trigger creation of
the reverse LSP and to specify parameters of the reverse LSP in the
single-sided provisioning case. For example, the REVERSE_LSP Object
allow asymmetric upstream and downstream bandwidths for the
associated bidirectional LSP.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Conventions Used in This Document</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Key Word Definitions</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Reverse Unidirectional LSPs</span>
Two reverse unidirectional LSPs are setup in the opposite directions
between a pair of source and destination nodes to form an associated
bidirectional LSP. A reverse unidirectional LSP originates on the
same node where the forward unidirectional LSP terminates, and it
terminates on the same node where the forward unidirectional LSP
originates.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Message Formats</span>
This document uses the Routing Backus-Naur Form (RBNF) to define
message formats as defined in [<a href="./rfc5511" title=""Routing Backus-Naur Form (RBNF): A Syntax Used to Form Encoding Rules in Various Routing Protocol Specifications"">RFC5511</a>].
<span class="grey">Zhang, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Overview</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Provisioning Model Overview</span>
This section provides an overview and definition of the models for
provisioning associated bidirectional LSPs.
The associated bidirectional LSP's forward and reverse unidirectional
LSPs are established, monitored, and protected independently as
specified by [<a href="./rfc5654" title=""Requirements of an MPLS Transport Profile"">RFC5654</a>]. Configuration information regarding the LSPs
can be provided at one or both endpoints of the associated
bidirectional LSP. Depending on the method chosen, there are two
models of creating an associated bidirectional LSP -- single-sided
provisioning and double-sided provisioning.
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. Single-Sided Provisioning</span>
For the single-sided provisioning, the Traffic Engineering (TE)
tunnel is configured only on one endpoint. An LSP for this tunnel is
initiated by the initiating endpoint with the (Extended) ASSOCIATION
and REVERSE_LSP Objects inserted in the Path message. The other
endpoint then creates the corresponding reverse TE tunnel and signals
the reverse LSP in response using information from the REVERSE_LSP
Object and other objects present in the received Path message.
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. Double-Sided Provisioning</span>
For the double-sided provisioning, two unidirectional TE tunnels are
configured independently, one on each endpoint. The LSPs for the
tunnels are signaled with (Extended) ASSOCIATION Objects inserted in
the Path message by both endpoints to indicate that the two LSPs are
to be associated to form a bidirectional LSP.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Association Signaling Overview</span>
This section provides an overview of the association signaling
methods for the associated bidirectional LSPs.
Three scenarios exist for binding two unidirectional LSPs together to
form an associated bidirectional LSP. These are:
1) Neither unidirectional LSP exists, and both must be established.
2) Both unidirectional LSPs exist, but the association must be
established.
3) One LSP exists, but the reverse associated LSP must be
established.
<span class="grey">Zhang, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
The following sections describe the applicable provisioning models
for each of these scenarios.
Path Computation Element (PCE)-based approaches [<a href="./rfc4655" title=""A Path Computation Element (PCE)-Based Architecture"">RFC4655</a>] may be used
for path computation of an associated bidirectional LSP. However,
these approaches are outside the scope of this document.
Consider the topology described in Figure 1. LSP1 from node A to B,
takes the path A,D,B, and LSP2 from node B to A takes the path
B,D,C,A. These two LSPs, once established and associated, form an
associated bidirectional LSP between nodes A and B.
LSP1 -->
A-------D-------B
\ / <-- LSP2
\ /
\ /
C
Figure 1: An Example of Associated Bidirectional LSP
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Single-Sided Provisioning</span>
For the single-sided provisioning model, creation of reverse LSP1
shown in Figure 1 is triggered by LSP2, or creation of reverse LSP2
is triggered by LSP1. When creation of reverse LSP2 is triggered by
LSP1, LSP1 is provisioned first (or refreshed, if LSP1 already
exists) at node A. LSP1 is then signaled with an (Extended)
ASSOCIATION, and REVERSE_LSP Objects are inserted in the Path
message. The Association Type indicates single-sided provisioning.
Upon receiving this Path message for LSP1, node B establishes reverse
LSP2. The (Extended) ASSOCIATION Object inserted in LSP2's Path
message is the same as that received in LSP1's Path message.
A similar procedure is used if LSP2 is provisioned first at node B,
and the creation of reverse LSP1 at node A is triggered by LSP2. In
both scenarios, the two unidirectional LSPs are bound together to
form an associated bidirectional LSP based on identical (Extended)
ASSOCIATION Objects in the two LSPs' Path messages.
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a>. Double-Sided Provisioning</span>
For the double-sided provisioning model, both LSP1 and LSP2 shown in
Figure 1 are signaled independently with (Extended) ASSOCIATION
Objects inserted in the Path messages, in which the Association Type
indicating double-sided provisioning is included. In this case, the
two unidirectional LSPs are bound together to form an associated
bidirectional LSP based on identical (Extended) ASSOCIATION Objects
<span class="grey">Zhang, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
in the two LSPs' Path messages. In all three scenarios described in
<a href="#section-3.2">Section 3.2</a>, the LSPs to be selected for the association are
provisioned by the management action applied at both endpoints.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Asymmetric Bandwidth Signaling Overview</span>
This section provides an overview of the methods for signaling
asymmetric upstream and downstream bandwidths for the associated
bidirectional LSPs.
<span class="h4"><a class="selflink" id="section-3.3.1" href="#section-3.3.1">3.3.1</a>. Single-Sided Provisioning</span>
A new REVERSE_LSP Object for use in the single-sided provisioning
model is defined in this document, in <a href="#section-4.4">Section 4.4</a>. The REVERSE_LSP
Object allows the initiating node of the single-sided provisioned LSP
to trigger creation of the reverse LSP on the remote node. When the
single-sided provisioning model is used, a SENDER_TSPEC Object can be
added in the REVERSE_LSP Object as a subobject in the initiating
LSP's Path message to specify a different bandwidth for the reverse
LSP. As described in <a href="#section-4.4">Section 4.4</a>, addition of the REVERSE_LSP Object
also allows the initiating node to control other aspects of the
reverse LSP (such as its path) by including other objects in a
REVERSE_LSP Object.
Consider again the topology described in Figure 1, where the creation
of reverse LSP2 is triggered by LSP1. Node A signals LSP1 with the
(Extended) ASSOCIATION Object with Association Type indicating
single-sided provisioning and inserts a SENDER_TSPEC subobject for
use by LSP2 in the REVERSE_LSP Object in the Path message. Node B
then establishes the LSP2 in the reverse direction using the
asymmetric bandwidth thus specified by LSP1 and allows node A to
control the reverse LSP2.
<span class="h4"><a class="selflink" id="section-3.3.2" href="#section-3.3.2">3.3.2</a>. Double-Sided Provisioning</span>
When the double-sided provisioning model is used, the two
unidirectional LSPs are established with separate bandwidths, which
may or may not be identical. However, these LSPs are associated
purely based on the identical contents of their (Extended)
ASSOCIATION Objects.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Recovery LSP Overview</span>
Recovery of each unidirectional LSP forming the bidirectional LSP is
independent [<a href="./rfc5654" title=""Requirements of an MPLS Transport Profile"">RFC5654</a>] and is based on the parameters signaled in
their respective RSVP Path messages.
<span class="grey">Zhang, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
Recovery LSP association is based on the identical content of the
(Extended) ASSOCIATION Objects signaled in their Path messages during
the initial LSP setup for both single-sided and double-sided
provisioning. As defined in [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>], multiple ASSOCIATION Objects
may be present in the signaling of a single LSP.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Message and Object Definitions</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. RSVP Message Formats</span>
This section presents the RSVP message-related formats as modified by
this document. Unmodified RSVP message formats are not listed.
The format of a Path message is as follows:
<Path Message> ::= <Common Header> [ <INTEGRITY> ]
[ [<MESSAGE_ID_ACK> | <MESSAGE_ID_NACK>] ... ]
[ <MESSAGE_ID> ]
<SESSION> <RSVP_HOP>
<TIME_VALUES>
[ <EXPLICIT_ROUTE> ]
<LABEL_REQUEST>
[ <PROTECTION> ]
[ <LABEL_SET> ... ]
[ <SESSION_ATTRIBUTE> ]
[ <NOTIFY_REQUEST> ... ]
[ <ADMIN_STATUS> ]
[ <ASSOCIATION> ... ]
[ <REVERSE_LSP> ... ]
[ <POLICY_DATA> ... ]
<sender descriptor>
The format of the <sender descriptor> is not modified by this
document.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. ASSOCIATION Object</span>
The ASSOCIATION Object is populated using the rules defined below for
associating two reverse unidirectional LSPs to form an associated
bidirectional LSP.
Association Types:
In order to bind two reverse unidirectional LSPs to be an
associated bidirectional LSP, the Association Type MUST be set to
indicate either single-sided or double-sided LSPs.
<span class="grey">Zhang, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
The new Association Types are defined as follows:
Value Type
----- -----
3 Double-Sided Associated Bidirectional LSP (D)
4 Single-Sided Associated Bidirectional LSP (A)
Association ID:
For both single-sided and double-sided provisioning, Association
ID MUST be set to a value assigned by the node that originates the
association for the bidirectional LSP.
Association Source:
Association Source MUST be set to an address selected by the node
that originates the association for the bidirectional LSP. For
example, this may be a management entity or, in the case of
single-sided provisioning, an address assigned to the node that
originates the LSP.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Extended ASSOCIATION Object</span>
The Extended ASSOCIATION Object is populated using the rules defined
below for associating two reverse unidirectional LSPs to form a
bidirectional LSP.
The Association Type, Association ID, and Association Source MUST be
set as defined for the ASSOCIATION Object in <a href="#section-4.1">Section 4.1</a>.
Global Association Source:
For both single-sided and double-sided provisioning, Global
Association Source, when used, MUST be set to the Global_ID
[<a href="./rfc6370" title=""MPLS Transport Profile (MPLS-TP) Identifiers"">RFC6370</a>] of the node that originates the association for the
bidirectional LSP.
Extended Association ID:
For both single-sided and double-sided provisioning, Extended
Association ID, when used, MUST be set to a value selected by the
node that originates the association for the bidirectional LSP.
<span class="grey">Zhang, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. REVERSE_LSP Object Definition</span>
<span class="h4"><a class="selflink" id="section-4.4.1" href="#section-4.4.1">4.4.1</a>. REVERSE_LSP Object Format</span>
The REVERSE_LSP Object is carried in the Path message of a forward
LSP to provide information to be used by the reverse LSP. The object
also indicates that the LSP is the forward LSP of a single-sided
associated bidirectional LSP.
The Object has the following format:
Class_Num = 203, C_Type = 1.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
// (Subobjects) //
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
<span class="h4"><a class="selflink" id="section-4.4.2" href="#section-4.4.2">4.4.2</a>. REVERSE_LSP Subobjects</span>
Subobjects are used to override the default contents of a Path
message of a reverse LSP; see <a href="#section-5.2">Section 5.2</a>. The contents of a
REVERSE_LSP Object is zero or more variable-length subobjects that
have the same format as RSVP Objects; see <a href="./rfc2205#section-3.1.2">Section 3.1.2 of [RFC2205]</a>.
Any object that may be carried in a Path message MAY be carried in
the REVERSE_LSP Object. Subobject ordering MUST follow any Path
message Object ordering requirements.
Examples of the Path message Objects that can be carried in the
REVERSE_LSP Object are (but not limited to):
- SENDER_TSPEC [<a href="./rfc2205" title=""Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification"">RFC2205</a>]
- EXPLICIT_ROUTE Object (ERO) [<a href="./rfc3209" title=""RSVP-TE: Extensions to RSVP for LSP Tunnels"">RFC3209</a>]
- SESSION_ATTRIBUTE Object [<a href="./rfc3209" title=""RSVP-TE: Extensions to RSVP for LSP Tunnels"">RFC3209</a>]
- ADMIN_STATUS Object [<a href="./rfc3473" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Resource ReserVation Protocol- Traffic Engineering (RSVP-TE) Extensions"">RFC3473</a>]
- LSP_REQUIRED_ATTRIBUTES Object [<a href="./rfc5420" title=""Encoding of Attributes for MPLS LSP Establishment Using Resource Reservation Protocol Traffic Engineering (RSVP-TE)"">RFC5420</a>]
- PROTECTION Object [<a href="./rfc3473" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Resource ReserVation Protocol- Traffic Engineering (RSVP-TE) Extensions"">RFC3473</a>] [<a href="./rfc4872" title=""RSVP-TE Extensions in Support of End-to-End Generalized Multi-Protocol Label Switching (GMPLS) Recovery"">RFC4872</a>]
<span class="grey">Zhang, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Processing Rules</span>
In general, the processing rules for the ASSOCIATION Object are as
specified in [<a href="./rfc4872" title=""RSVP-TE Extensions in Support of End-to-End Generalized Multi-Protocol Label Switching (GMPLS) Recovery"">RFC4872</a>], and those for the Extended ASSOCIATION Object
are as specified in [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>]. The following sections describe the
rules for processing (Extended) ASSOCIATION Objects for both double-
sided and single-sided associated bidirectional LSPs and REVERSE_LSP
Objects for single-sided associated bidirectional LSPs.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Rules for ASSOCIATION Object</span>
This section defines the processing for the association of two
unidirectional LSPs to form an associated bidirectional LSP. Such
association is based on the use of an (Extended) ASSOCIATION Object.
The procedures related to the actual identification of associations
between LSPs based on (Extended) ASSOCIATION Objects are defined in
[<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>]. [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>] specifies that in the absence of rules for
identifying the association that are specific to the Association
Type, the included (Extended) ASSOCIATION Objects in the LSPs MUST be
identical in order for an association to exist. This document adds
no specific rules for the new Association Types defined, and the
identification of an LSP association therefore proceeds as specified
in [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>].
As described in [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>], association of LSPs can be upstream or
downstream initiated, as indicated by (Extended) ASSOCIATION Objects
in Path or Resv Messages. The association of bidirectional LSPs is
always upstream initiated; therefore, the Association Types defined
in this document are only to be interpreted in Path Messages. These
types SHOULD NOT be used in ASSOCIATION Objects carried in Resv
messages and SHOULD be ignored if present.
To indicate an associated bidirectional LSP, an ingress node MUST
insert an (Extended) ASSOCIATION Object into the Path message of the
unidirectional LSP that is part of the associated bidirectional LSP
it initiates. If either Global Association Source or Extended
Association Address is required, then an Extended ASSOCIATION Object
[<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>] MUST be inserted in the Path message. Otherwise, an
ASSOCIATION Object MAY be used. (Extended) ASSOCIATION Objects with
both single-sided and double-sided Association Types MUST NOT be
added or sent in the same Path message.
The ingress node MUST set the Association Type field in the
(Extended) ASSOCIATION Object to "Single-Sided Associated
Bidirectional LSP" when single-sided provisioning is used, and to
"Double-Sided Associated Bidirectional LSP" when double-sided
provisioning is used.
<span class="grey">Zhang, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
A transit node MAY identify the unidirectional LSPs of an associated
bidirectional LSP based on (Extended) ASSOCIATION Objects, with the
Association Type values defined in this document, carried in Path
messages. Clearly, such associations are only possible when the LSPs
transit the node. As mentioned above, such associations are made per
the rules defined in [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>].
Egress nodes that support the Association Types defined in this
document identify the unidirectional LSPs of an associated
bidirectional LSP based on (Extended) ASSOCIATION Objects carried in
Path messages. Note that an ingress node will normally be the
ingress for one of the unidirectional LSPs that make up an associated
bidirectional LSP. When an egress node receives a Path message
containing an (Extended) ASSOCIATION Object with one of the
Association Types defined in this document, it MUST attempt to
identify other LSPs (including ones for which it is an ingress node)
with which the LSP being processed is associated. As defined above,
such associations are made per the rules defined in [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>]. An
LSP not being associated at the time of signaling (for example,
during rerouting or re-optimization) on an egress node is not
necessarily considered an error condition.
Associated bidirectional LSP teardown follows the standard procedures
defined in [<a href="./rfc3209" title=""RSVP-TE: Extensions to RSVP for LSP Tunnels"">RFC3209</a>] and [<a href="./rfc3473" title=""Generalized Multi-Protocol Label Switching (GMPLS) Signaling Resource ReserVation Protocol- Traffic Engineering (RSVP-TE) Extensions"">RFC3473</a>] either without or with the
administrative status. Generally, the teardown procedures of the
unidirectional LSPs forming an associated bidirectional LSP are
independent of each other, so it is possible that while one LSP
follows graceful teardown with administrative status, the reverse LSP
is torn down without administrative status (using
PathTear/ResvTear/PathErr with state removal). See <a href="#section-5.2">Section 5.2</a> for
additional rules related to LSPs established using single-sided
provisioning.
When an LSP signaled with a Path message containing an (Extended)
ASSOCIATION Object with an Association Type defined in this document
is torn down, the processing node SHALL remove the binding of the LSP
to any previously identified associated bidirectional LSP.
No additional processing is needed for Path messages with an
(Extended) ASSOCIATION Object containing an Association Type field
set to "Double-Sided Associated Bidirectional LSP".
<span class="grey">Zhang, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
<span class="h4"><a class="selflink" id="section-5.1.1" href="#section-5.1.1">5.1.1</a>. Compatibility for ASSOCIATION Object</span>
The ASSOCIATION Object has been defined in [<a href="./rfc4872" title=""RSVP-TE Extensions in Support of End-to-End Generalized Multi-Protocol Label Switching (GMPLS) Recovery"">RFC4872</a>] and the Extended
ASSOCIATION Object has been defined in [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>], both with class
numbers in the form 11bbbbbb, which ensures compatibility with non-
supporting nodes. Per [<a href="./rfc2205" title=""Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification"">RFC2205</a>], such nodes will ignore the object
but forward it without modification.
Operators wishing to use a function supported by a particular
Association Type SHOULD ensure that the type is supported on any node
that is expected to act on the association [<a href="./rfc6780" title=""RSVP ASSOCIATION Object Extensions"">RFC6780</a>].
An egress node that does not support the Association Types defined in
this document is expected to return a PathErr with Error Code
"Admission Control Failure" (1) [<a href="./rfc2205" title=""Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification"">RFC2205</a>] and Sub-code "Bad
Association Type" (5) [<a href="./rfc4872" title=""RSVP-TE Extensions in Support of End-to-End Generalized Multi-Protocol Label Switching (GMPLS) Recovery"">RFC4872</a>].
LSP recovery as defined in [<a href="./rfc4872" title=""RSVP-TE Extensions in Support of End-to-End Generalized Multi-Protocol Label Switching (GMPLS) Recovery"">RFC4872</a>] and [<a href="./rfc4873" title=""GMPLS Segment Recovery"">RFC4873</a>] is not impacted by
this document. The recovery mechanisms defined in [<a href="./rfc4872" title=""RSVP-TE Extensions in Support of End-to-End Generalized Multi-Protocol Label Switching (GMPLS) Recovery"">RFC4872</a>] and
[<a href="./rfc4873" title=""GMPLS Segment Recovery"">RFC4873</a>] rely on the use of the (Extended) ASSOCIATION Objects, but
they use a different value for Association Type; multiple ASSOCIATION
Objects can be present in the LSP Path message and can coexist with
the procedures defined in this document.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Rules for REVERSE_LSP Object</span>
When a node initiates setup of an LSP using a Path message containing
an ASSOCIATION or Extended ASSOCIATION Object, and the Association
Type set to "Single-Sided Associated Bidirectional LSP", the Path
message MUST carry the REVERSE_LSP Object to trigger creation of a
reverse LSP on the egress node.
The REVERSE_LSP subobject MAY contain any of the objects that the
initiating node desires to have included in the Path message for the
associated reverse LSP. The REVERSE_LSP Object SHOULD NOT be
included in a REVERSE_LSP Object.
A transit node receiving a valid Path message containing a
REVERSE_LSP Object MUST forward the REVERSE_LSP Object unchanged in
the outgoing Path message.
An egress node, upon receiving a Path message containing an
REVERSE_LSP Object MUST verify that the Path message contains an
ASSOCIATION or Extended ASSOCIATION Object with the Association Type
set to "Single-Sided Associated Bidirectional LSP". If it does not,
the Path message MUST NOT trigger a reverse LSP. This verification
failure SHOULD NOT trigger any RSVP message but can be logged
locally, and perhaps reported through network management mechanisms.
<span class="grey">Zhang, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
Once validated, the egress node MUST create an LSP in the reverse
direction or reject the Path message. If the creation of a reverse
LSP fails, the egress node MUST return a PathErr with Error Code
"Admission Control Failure" (1) [<a href="./rfc2205" title=""Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification"">RFC2205</a>] and Sub-code "Reverse LSP
Failure" (6) defined in this document. Note that normal Resv
processing SHOULD NOT be impacted by the presence of an ASSOCIATION
Object with an Association Type set to "Single-Sided Associated
Bidirectional LSP".
The egress node MUST use the subobjects contained in the REVERSE_LSP
Object for initiating the reverse LSP. When a subobject is not
present in the received REVERSE_LSP Object, the egress node SHOULD
initiate the reverse LSP based on the information contained in the
received Path message of the forward LSP as follows:
o The egress node SHOULD copy the information from the received
SESSION_ATTRIBUTE, CLASS_TYPE, LABEL_REQUEST, ASSOCIATION,
ADMIN_STATUS, and PROTECTION Objects in the forward LSP Path
message to form the Path message of the reverse LSP when the
object is not present in the received REVERSE_LSP Object.
o The IP address in the reverse LSP's SESSION Object SHOULD be set
to the IP address carried in the received SENDER_TEMPLATE Object;
and conversely, the IP address in the SENDER_TEMPLATE Object
SHOULD be set to the IP address carried in the received SESSION
Object. There are no additional requirements related to the IDs
carried in the SESSION and SENDER_TEMPLATE Objects.
o When the forward LSP Path message contains a RECORD_ROUTE Object,
the egress node SHOULD include the received RECORD_ROUTE Object in
the reverse LSP Path message. Local node information SHOULD also
be recorded per standard Path message processing.
o There are no specific requirements related to other objects.
The resulting Path message is used to create the reverse LSP. From
this point on, standard Path message processing is used in processing
the resulting Path message.
Note that the contents of a forward LSP, including a carried
REVERSE_LSP Object, may change over the life of an LSP, and such
changes MUST result in corresponding changes in the reverse LSP. In
particular, any object or subobject that was copied during the
creation of the initial reverse LSP's Path message MUST be copied
when modified in the forward LSP, and a trigger Path message MUST be
processed.
<span class="grey">Zhang, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
The removal of the REVERSE_LSP Object in the received Path message
SHOULD cause the egress node to tear down any previously established
reverse LSP.
When the egress node receives a PathTear message for the forward LSP
or whenever the forward LSP is torn down, the node MUST remove the
associated reverse LSP using standard PathTear message processing.
Teardown of the reverse LSP for other reasons SHOULD NOT trigger
removal of the initiating LSP, but it SHOULD result in the egress
node sending a PathErr with Error Code "Admission Control Failure"
(1) [<a href="./rfc2205" title=""Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification"">RFC2205</a>] and Sub-code "Reverse LSP Failure" (6) defined in this
document.
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>. Compatibility for REVERSE_LSP Object</span>
The REVERSE_LSP Object is defined with class numbers in the form
11bbbbbb, which ensures compatibility with non-supporting nodes. Per
[<a href="./rfc2205" title=""Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification"">RFC2205</a>], such nodes will ignore the object but forward it without
modification.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
IANA has registered values for the namespace defined in this document
and summarized in this section.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Association Types</span>
IANA maintains the "Generalized Multi-Protocol Label Switching
(GMPLS) Signaling Parameters" registry (see
<<a href="http://www.iana.org/assignments/gmpls-sig-parameters">http://www.iana.org/assignments/gmpls-sig-parameters</a>>). The
"Association Type" subregistry is included in this registry.
This registry has been updated by new Association Types for
ASSOCIATION and Extended ASSOCIATION Objects defined in this document
as follows:
Value Name Reference
3 Double-Sided Associated Bidirectional LSP (D) <a href="#section-4.2">Section 4.2</a>
4 Single-Sided Associated Bidirectional LSP (A) <a href="#section-4.2">Section 4.2</a>
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. REVERSE_LSP Object</span>
IANA maintains the "Resource Reservation Protocol (RSVP) Parameters"
registry (see <<a href="http://www.iana.org/assignments/rsvp-parameters">http://www.iana.org/assignments/rsvp-parameters</a>>).
The "Class Names, Class Numbers, and Class Types" subregistry is
included in this registry.
<span class="grey">Zhang, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
This registry has been extended for new Class Number (Class-Num) and
Class Type (C-type) for RSVP REVERSE_LSP Object requested in the
11bbbbbb range defined in this document as follows:
Class Number Class Name Reference
203 REVERSE_LSP <a href="#section-4.4">Section 4.4</a>
o REVERSE_LSP : Class Type or C-type = 1
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Reverse LSP Failure PathErr Sub-code</span>
IANA maintains the "Resource Reservation Protocol (RSVP) Parameters"
registry (see <<a href="http://www.iana.org/assignments/rsvp-parameters">http://www.iana.org/assignments/rsvp-parameters</a>>).
The "Error Codes and Globally-Defined Error Value Sub-Codes"
subregistry is included in this registry.
This registry has been extended for the new PathErr Sub-code defined
in this document as follows:
Error Code = 01: "Admission Control Failure" (see [<a href="./rfc2205" title=""Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification"">RFC2205</a>])
o "Reverse LSP Failure" (6)
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
This document introduces two new Association Types for the (Extended)
ASSOCIATION Object, Double-Sided Associated Bidirectional LSP and
Single-Sided Associated Bidirectional LSP. These types, by
themselves, introduce no additional information to signaling.
Related security considerations are already covered for this in <a href="./rfc6780">RFC</a>
<a href="./rfc6780">6780</a>.
The REVERSE_LSP Object is carried in the Path message of a forward
LSP of the single-sided associated bidirectional LSP. It can carry
parameters for the reverse LSP. This does allow for additional
information to be conveyed, but this information is not fundamentally
different from the information that is already carried in a
bidirectional LSP message. The processing of such messages is
already subject to local policy as well as security considerations
discussions. For a general discussion on MPLS- and GMPLS-related
security issues, see the MPLS/GMPLS security framework [<a href="./rfc5920" title=""Security Framework for MPLS and GMPLS Networks"">RFC5920</a>].
<span class="grey">Zhang, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. References</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC2205">RFC2205</a>] Braden, R., Ed., Zhang, L., Berson, S., Herzog, S., and S.
Jamin, "Resource ReSerVation Protocol (RSVP) -- Version 1
Functional Specification", <a href="./rfc2205">RFC 2205</a>, DOI 10.17487/RFC2205,
September 1997, <<a href="http://www.rfc-editor.org/info/rfc2205">http://www.rfc-editor.org/info/rfc2205</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>, DOI 10.17487/RFC3209, December 2001,
<<a href="http://www.rfc-editor.org/info/rfc3209">http://www.rfc-editor.org/info/rfc3209</a>>.
[<a id="ref-RFC3473">RFC3473</a>] Berger, L., Ed., "Generalized Multi-Protocol Label
Switching (GMPLS) Signaling Resource ReserVation Protocol-
Traffic Engineering (RSVP-TE) Extensions", <a href="./rfc3473">RFC 3473</a>,
DOI 10.17487/RFC3473, January 2003,
<<a href="http://www.rfc-editor.org/info/rfc3473">http://www.rfc-editor.org/info/rfc3473</a>>.
[<a id="ref-RFC4872">RFC4872</a>] Lang, J., Ed., Rekhter, Y., Ed., and D. Papadimitriou,
Ed., "RSVP-TE Extensions in Support of End-to-End
Generalized Multi-Protocol Label Switching (GMPLS)
Recovery", <a href="./rfc4872">RFC 4872</a>, DOI 10.17487/RFC4872, May 2007,
<<a href="http://www.rfc-editor.org/info/rfc4872">http://www.rfc-editor.org/info/rfc4872</a>>.
[<a id="ref-RFC4873">RFC4873</a>] Berger, L., Bryskin, I., Papadimitriou, D., and A. Farrel,
"GMPLS Segment Recovery", <a href="./rfc4873">RFC 4873</a>, DOI 10.17487/RFC4873,
May 2007, <<a href="http://www.rfc-editor.org/info/rfc4873">http://www.rfc-editor.org/info/rfc4873</a>>.
[<a id="ref-RFC5511">RFC5511</a>] Farrel, A., "Routing Backus-Naur Form (RBNF): A Syntax
Used to Form Encoding Rules in Various Routing Protocol
Specifications", <a href="./rfc5511">RFC 5511</a>, DOI 10.17487/RFC5511, April
2009, <<a href="http://www.rfc-editor.org/info/rfc5511">http://www.rfc-editor.org/info/rfc5511</a>>.
[<a id="ref-RFC6780">RFC6780</a>] Berger, L., Le Faucheur, F., and A. Narayanan, "RSVP
ASSOCIATION Object Extensions", <a href="./rfc6780">RFC 6780</a>,
DOI 10.17487/RFC6780, October 2012,
<<a href="http://www.rfc-editor.org/info/rfc6780">http://www.rfc-editor.org/info/rfc6780</a>>.
<span class="grey">Zhang, et al. Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Informative References</span>
[<a id="ref-RFC4655">RFC4655</a>] Farrel, A., Vasseur, J.-P., and J. Ash, "A Path
Computation Element (PCE)-Based Architecture", <a href="./rfc4655">RFC 4655</a>,
DOI 10.17487/RFC4655, August 2006,
<<a href="http://www.rfc-editor.org/info/rfc4655">http://www.rfc-editor.org/info/rfc4655</a>>.
[<a id="ref-RFC5420">RFC5420</a>] Farrel, A., Ed., Papadimitriou, D., Vasseur, JP., and A.
Ayyangarps, "Encoding of Attributes for MPLS LSP
Establishment Using Resource Reservation Protocol Traffic
Engineering (RSVP-TE)", <a href="./rfc5420">RFC 5420</a>, DOI 10.17487/RFC5420,
February 2009, <<a href="http://www.rfc-editor.org/info/rfc5420">http://www.rfc-editor.org/info/rfc5420</a>>.
[<a id="ref-RFC5654">RFC5654</a>] Niven-Jenkins, B., Ed., Brungard, D., Ed., Betts, M., Ed.,
Sprecher, N., and S. Ueno, "Requirements of an MPLS
Transport Profile", <a href="./rfc5654">RFC 5654</a>, DOI 10.17487/RFC5654,
September 2009, <<a href="http://www.rfc-editor.org/info/rfc5654">http://www.rfc-editor.org/info/rfc5654</a>>.
[<a id="ref-RFC5920">RFC5920</a>] Fang, L., Ed., "Security Framework for MPLS and GMPLS
Networks", <a href="./rfc5920">RFC 5920</a>, DOI 10.17487/RFC5920, July 2010,
<<a href="http://www.rfc-editor.org/info/rfc5920">http://www.rfc-editor.org/info/rfc5920</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>,
DOI 10.17487/RFC6370, September 2011,
<<a href="http://www.rfc-editor.org/info/rfc6370">http://www.rfc-editor.org/info/rfc6370</a>>.
[<a id="ref-RFC6373">RFC6373</a>] Andersson, L., Ed., Berger, L., Ed., Fang, L., Ed., Bitar,
N., Ed., and E. Gray, Ed., "MPLS Transport Profile
(MPLS-TP) Control Plane Framework", <a href="./rfc6373">RFC 6373</a>,
DOI 10.17487/RFC6373, September 2011,
<<a href="http://www.rfc-editor.org/info/rfc6373">http://www.rfc-editor.org/info/rfc6373</a>>.
[<a id="ref-RFC6387">RFC6387</a>] Takacs, A., Berger, L., Caviglia, D., Fedyk, D., and J.
Meuric, "GMPLS Asymmetric Bandwidth Bidirectional Label
Switched Paths (LSPs)", <a href="./rfc6387">RFC 6387</a>, DOI 10.17487/RFC6387,
September 2011, <<a href="http://www.rfc-editor.org/info/rfc6387">http://www.rfc-editor.org/info/rfc6387</a>>.
[<a id="ref-RFC6689">RFC6689</a>] Berger, L., "Usage of the RSVP ASSOCIATION Object",
<a href="./rfc6689">RFC 6689</a>, DOI 10.17487/RFC6689, July 2012,
<<a href="http://www.rfc-editor.org/info/rfc6689">http://www.rfc-editor.org/info/rfc6689</a>>.
<span class="grey">Zhang, et al. Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7551">RFC 7551</a> RSVP-TE Extensions for Associated LSP May 2015</span>
Acknowledgements
The authors would like to thank Lou Berger and George Swallow for
their great guidance in this work; Jie Dong for the discussion of the
recovery LSP; Lamberto Sterling for his valuable comments about
asymmetric bandwidth signaling; Attila Takacs for the discussion of
the provisioning model; Siva Sivabalan, Eric Osborne, and Robert
Sawaya for the discussions on the ASSOCIATION Object; and Matt
Hartley for providing useful suggestions on the document. At the
same time, the authors would like to acknowledge the contributions of
Bo Wu, Xihua Fu, and Lizhong Jin for the initial discussions; Wenjuan
He for the prototype implementation; and Lou Berger, Daniel King, and
Deborah Brungard for the review of the document.
Contributors
Fan Yang
ZTE
EMail: yang.fan240347@gmail.com
Weilian Jiang
ZTE
EMail: jiang.weilian@gmail.com
Authors' Addresses
Fei Zhang (editor)
Huawei
EMail: zhangfei7@huawei.com
Ruiquan Jing
China Telecom
EMail: jingrq@ctbri.com.cn
Rakesh Gandhi (editor)
Cisco Systems
EMail: rgandhi@cisco.com
Zhang, et al. Standards Track [Page 20]
</pre>
|