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
|
<pre>Internet Engineering Task Force (IETF) S. Gundavelli, Ed.
Request for Comments: 7629 K. Leung
Category: Experimental Cisco
ISSN: 2070-1721 G. Tsirtsis
Qualcomm
A. Petrescu
CEA, LIST
August 2015
<span class="h1">Flow-Binding Support for Mobile IP</span>
Abstract
This specification defines extensions to the Mobile IP protocol for
allowing a mobile node with multiple interfaces to register a care-of
address for each of its network interfaces and to simultaneously
establish multiple IP tunnels with its home agent. This essentially
allows the mobile node to utilize all the available network
interfaces and build a higher aggregated logical pipe with its home
agent for its home address traffic. Furthermore, these extensions
also allow the mobile node and the home agent to negotiate IP traffic
flow policies for binding individual flows with the registered care-
of addresses.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for examination, experimental implementation, and
evaluation.
This document defines an Experimental Protocol for the Internet
community. 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/rfc7629">http://www.rfc-editor.org/info/rfc7629</a>.
<span class="grey">Gundavelli, et al. Experimental [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 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.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2">2</a>. Conventions and Terminology . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2.1">2.1</a>. Conventions . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2.2">2.2</a>. Terminology . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-3">3</a>. Overview . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3.1">3.1</a>. Example Call Flow . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-4">4</a>. Message Extensions . . . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4.1">4.1</a>. Multipath Extension . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4.2">4.2</a>. Flow-Binding Extension . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-4.3">4.3</a>. New Error Codes for Registration Reply . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-5">5</a>. Protocol Operation . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-5.1">5.1</a>. Mobile Node Considerations . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-5.2">5.2</a>. Home Agent Considerations . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-6">6</a>. Routing Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-7">7</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-8">8</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-9">9</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-9.1">9.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-9.2">9.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
Contributors . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<span class="grey">Gundavelli, et al. Experimental [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
With the ubiquitous availability of wireless networks based on
different access technology types, mobile devices are now equipped
with multiple wireless interfaces and have the ability to connect to
the network using any of those interfaces. For example, most mobile
devices are equipped with Wi-Fi and LTE (Long Term Evolution)
interfaces. In many deployments, it is desirable for a mobile node
to leverage all the available network interfaces and have IP mobility
support for its IP flows.
The operation defined in the Mobile IP protocol [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>] allows a
mobile node to continue to use its home address as it moves around
the Internet. Based on the mode of operation, there will be an IP
tunnel that will be established between the home agent and the mobile
node or between the home agent and the foreign agent where the mobile
node is attached; see [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>]. In both of these modes, there will
only be one interface on the mobile node that is receiving the IP
traffic from the home agent. This approach of using a single access
interface for routing all mobile node's traffic is not efficient and
so there is a need to extend Mobile IP to concurrently use multiple
access interfaces for routing the mobile node's IP traffic. The goal
is for efficient use of all the available access links to obtain
higher aggregated bandwidth for the tunneled traffic between the home
agent and the mobile node.
This specification defines extensions to Mobile IPv4 protocol for
allowing a mobile node with multiple interfaces to register a care-of
address for each of its network interfaces and to simultaneously
leverage all access links for the mobile node's IP traffic.
Furthermore, this specification also defines extensions to allow the
mobile node and the home agent to optionally negotiate IP flow
policies for binding individual IP flows with the registered care-of
addresses.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Conventions and Terminology</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Conventions</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">RFC 2119</a> [<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>. Terminology</span>
All the mobility-related terms used in this document are to be
interpreted as defined in [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>] and [<a href="./rfc3753" title=""Mobility Related Terminology"">RFC3753</a>]. In addition, this
document uses the following terms.
<span class="grey">Gundavelli, et al. Experimental [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
Binding Identifier (BID)
It is an identifier assigned to a mobile node's binding. A
binding defines an association between a mobile node's home
address and its registered care-of address. When a mobile node
registers multiple bindings with its home agent, each using a
different care-of address, then each of those bindings are given a
unique identifier. Each of the binding identifiers will have a
unique value that will be different from the identifiers assigned
to the mobile node's other bindings.
Flow Identifier (FID)
It is an identifier for a given IP flow, uniquely identified by
source address, destination address, protocol type, source port,
destination port, Security Parameter Index, and other parameters
as identified in [<a href="./rfc6088" title=""Traffic Selectors for Flow Bindings"">RFC6088</a>]. In the context of this document, the
IP flows associated with a mobile node are the IP flows using its
home address. For a mobile router, the IP flows also include the
IP flows using the mobile network prefix [<a href="./rfc6626" title=""Dynamic Prefix Allocation for Network Mobility for Mobile IPv4 (NEMOv4)"">RFC6626</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Overview</span>
The illustration below in Figure 1 is an example scenario where a
mobile node is connected to WLAN, LTE, and CDMA access networks. The
mobile node is configured with a home address, HoA_1, and has
obtained the following care-of addresses [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>]: CoA_1, from the
WLAN network; CoA_2, from the LTE network; and CoA_3, from the CDMA
network.
The mobile node using the extensions specified in this document
registers all three care-of addresses with its home agent. The
mobile node also establishes an IP tunnel with the home agent using
each of its IP addresses, which results in three IP tunnels
(Tunnel_1, Tunnel_2, and Tunnel_3) between the mobile node and the
home agent. Each of the tunnels represents an overlay routing path
between the mobile node and the home agent and can be used for
forwarding the mobile node's IP traffic.
Furthermore, using the extensions specified in this document, the
mobile node and the home agent can negotiate an IP flow policy. The
negotiated flow policy allows the mobile node and the home agent to
determine the access network path for each of the mobile node's IP
flows.
<span class="grey">Gundavelli, et al. Experimental [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
Flow_1 (SIP)
|
|Flow_2 (SSH)
| |
| |Flow_3 (HTTP) _----_
| | | CoA_1 _( )_ Tunnel_1
| | | .---=======( Wi-Fi )========\ Flow_1
| | | | (_ _) \
| | | | '----' \
| | | +=====+ _----_ \ +=====+ _----_
| | '-| | CoA_2 _( )_ Tunnel_2 \ | | _( )_ --
| '---| MN |---====( LTE )=========-----| HA |-( Internet )--
'-----| | (_ _) Flow_3 / | | (_ _) --
+=====+ '----' / +=====+ '----'
| | _----_ /
HoA_1--' | CoA_3 _( )_ Tunnel_3 /
.------====( CDMA )========/ Flow_2
(_ _)
'----'
Figure 1: Mobile Node (MN) with Multiple Tunnels
to the Home Agent (HA)
The table below is an example of how the individual flows are bound
to different care-of addresses registered with the home agent.
+=========+===================+=====================================+
| Flow ID | Access Network | Description |
| (FID) | Preferences | |
+=========+===================+=====================================+
| Flow_1 | Tunnel_1 / CoA_1 | All SIP flows over Wi-Fi (Preferred)|
| | Tunnel_2 / CoA_2 | If Wi-Fi is not available, use LTE |
| | <DROP> | If Wi-Fi and LTE access networks are|
| | | not available, drop the flow |
+---------+-------------------+-------------------------------------+
| Flow_3 | Tunnel_2 / CoA_2 | All HTTP flows over LTE (Preferred) |
| | <DROP> | If LTE not available, drop the flow |
+---------+-------------------+-------------------------------------+
| Flow_2 | Tunnel_3 / CoA_3 | All SSH flows over CDMA (Preferred) |
| | Tunnel_2 / CoA_2 | If CDMA not available, use LTE |
| | Tunnel_1 / CoA_1 | If LTE not available, use Wi-Fi |
+---------+-------------------+-------------------------------------+
Figure 2: Example of an IP Traffic Policy
<span class="grey">Gundavelli, et al. Experimental [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Example Call Flow</span>
Figure 3 is the call flow for the example scenario where a mobile
node is connected to WLAN and LTE access networks.
+-------+ +-------+ +-------+ +-------+
| MN | | WLAN | | LTE | | HA |
| | |Network| |Network| | |
+-------+ +-------+ +-------+ +-------+
| | | |
* MIP RRQ is sent using the IP address obtained from the WLAN Network
|<--- (1) --------->| | |
| | RRQ (Multipath, Flow-Binding) |
|---- (2) ----------------------------------------------->|
| | RRP | |
|<--- (3) ------------------------------------------------|
| MIP Tunnel through WLAN Network |
|=====(4)===========*=====================================|
* MIP RRQ is sent using the IP address obtained from the LTE Network
|<--- (5) ---------------------------->| |
| | RRQ (Multipath, Flow-Binding) |
|---- (6) ----------------------------------------------->|
| | RRP | |
|<--- (7) ------------------------------------------------|
| MIP Tunnel through LTE Access Network |
|=====(8)==============================*==================|
| |
* *
(Policy-based Routing Rule) (Policy-based Routing Rule)
Figure 3: Multipath Negotiation - Example Call Flow
o (1): The mobile node attaches to the WLAN network and obtains the
IP address configuration for its WLAN interface.
o (2)-(3): The mobile node sends a Registration Request (RRQ)
[<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>] to the home agent through the WLAN network. The message
includes the Multipath (<a href="#section-4.1">Section 4.1</a>) and the Flow-Binding
(<a href="#section-4.2">Section 4.2</a>) Extensions. The home agent, upon accepting the
request, sends a Registration Reply (RRP) [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>] with a value
of (0) in the Code field of the Registration Reply.
<span class="grey">Gundavelli, et al. Experimental [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
o (4): The mobile node and the home agent establish a bidirectional
IP tunnel over the WLAN network.
o (5): The mobile node attaches to the LTE network and obtains the
IP address configuration from that network.
o (6)-(7): The mobile node sends a Registration Request to the home
agent through the LTE network. The message includes the Multipath
and the Flow-Binding Extensions. The Flow-Binding Extension
indicates that all HTTP flows need to be routed over the WLAN
network and if the WLAN access network is not available, they need
be routed over other access networks. The negotiated policy also
requires all voice-related traffic flows to be routed over the LTE
network. The home agent, upon accepting the request, sends a
Registration Reply with a value of (0) in the Code field of the
Registration Reply.
o (8): The mobile node and the home agent establish a bidirectional
IP tunnel over the LTE network. The negotiated traffic flow
policy is applied. Both the home agent and the mobile node route
all the voice flows over the tunnel established through the LTE
access network and the HTTP flows over the WLAN network.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Message Extensions</span>
This specification defines the following new extensions to Mobile IP.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Multipath Extension</span>
This extension is used for requesting multipath support. It
indicates that the sender is requesting the home agent to register
the current care-of address listed in this Registration Request as
one of the many care-of addresses through which the mobile node can
be reached. It is also for carrying the information specific to the
interface to which the care-of address that is being registered is
bound.
This extension is a non-skippable extension and MAY be added by the
mobile node to the Registration Request message. There MUST NOT be
more than one instance of this extension present in the message.
This extension MUST NOT be added by the home agent to the
Registration Reply.
This extension should be protected using the Mobile-Home
Authentication Extension [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>]. As specified in Sections <a href="#section-3.2">3.2</a> and
3.6.1.3 of [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>], the mobile node MUST place this Extension
before the Mobile-Home Authentication Extension in the registration
messages so that this extension is integrity protected.
<span class="grey">Gundavelli, et al. Experimental [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
The format of this extension is as shown below. It adheres to the
long extension format described in [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>].
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Subtype | Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| If-ATT | If-Label | Binding ID |B|O| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 4: Multipath Extension
Type
Type: Multipath-Extension-Type (154)
Subtype
This field MUST be set to a value of 1 (Multipath Extension).
Length
The length of the extension in octets, excluding Type, Subtype,
and Length fields. This field MUST be set to a value of 4.
Interface Access-Technology Type (If-ATT)
This 8-bit field identifies the Access Technology type of the
interface through which the mobile node is connected. The
permitted values for this are from the Access Technology Type
registry defined in [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>].
Interface Label (If-Label)
This 8-bit field represents the interface label represented as an
unsigned integer. The mobile node identifies the label for each
of the interfaces through which it registers a CoA with the home
agent. When using static traffic flow policies on the mobile node
and the home agent, the label can be used for indexing forwarding
policies. For example, the operator may have a policy that binds
an IP flow "F1" to any interface with the label "Blue". When a
registration through an interface matching the label "Blue" gets
activated, the home agent and the mobile node establish an IP
tunnel and the tunnel is marked with that label. Both the home
agent and the mobile node generate traffic rules for forwarding IP
flow traffic "F1" through the mobile IP tunnel matching the label
"Blue". The permitted values for If-Label are 1 through 255.
<span class="grey">Gundavelli, et al. Experimental [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
Binding Identifier (BID)
This 8-bit field is used for carrying the binding identifier. It
uniquely identifies a specific binding of the mobile node
associated with this Registration Request. Each binding
identifier is represented as an unsigned integer. The permitted
values are 1 through 254. The BID value of 0 and 255 are
reserved.
Bulk Re-registration Flag (B)
The (B) flag, if set to a value of (1), notifies the home agent to
update the binding lifetime of all the mobile node's bindings upon
accepting this request. The (B) flag MUST NOT be set to a value
of (1) if the value of the Registration Overwrite Flag (O) flag is
set to a value of (1).
Registration Overwrite (O)
The (O) flag, if set to a value of (1), notifies the home agent
that upon accepting this request it should replace all of the
mobile node's existing bindings with the new binding that will be
created upon accepting this request. The (O) flag MUST NOT be set
to a value of (1) if the value of the Bulk Re-registration Flag
(B) is set to a value of (1). This flag MUST be set to a value of
(0) in De-Registration requests.
Reserved (R)
This 6-bit field is unused for now. The value MUST be initialized
to (0) by the sender and MUST be ignored by the receiver.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Flow-Binding Extension</span>
This extension contains information that can be used by the mobile
node and the home agent for binding mobile node's IP flows to a
specific multipath registration. There can be more than one instance
of this extension present in the message.
This extension is a non-skippable extension and MAY be added to the
Registration Request by the mobile node or by the home agent to the
Registration Reply.
This extension should be protected by Mobile-Home Authentication
Extension [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>]. As specified in <a href="#section-3.2">Section 3.2</a> and 3.6.1.3 of
[<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>], the mobile node MUST place this extension before the
Mobile-Home Authentication Extension in the registration messages so
that this extension is integrity protected.
<span class="grey">Gundavelli, et al. Experimental [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
The format of this extension is as shown below. It adheres to the
long extension format described in [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>].
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Subtype | Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Action | BID Count | ... BID List ... ~
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| TS Format | Traffic Selector ~
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 5: Flow-Binding Extension
Type
Type: Multipath-Extension-Type (154)
Subtype
This field MUST be set to a value of 2 (Flow-Binding Extension).
Length
The length of the extension in octets, excluding Type, Subtype,
and Length fields.
Action
The Action field identifies the traffic rule that needs to be
enforced. Following are the possible values.
<span class="grey">Gundavelli, et al. Experimental [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
+---------+-------+-------------------------------------------------+
| Action | Value | Description |
+---------+-------+-------------------------------------------------+
| DROP | 0 | Drop matching packets. A filter rule |
| | | indicating a drop action MUST include a single |
| | | BID byte, the value of which MAY be set to 255 |
| | | by the sender and the value of which SHOULD be |
| | | ignored by the receiver. |
+---------+-------+-------------------------------------------------+
| FORWARD | 1 | Forward matching packets to the first BID in the|
| | | list of BIDs the filter rule is pointing to. |
| | | If the first BID becomes invalid (i.e., the |
| | | corresponding CoA is de-registered), use the |
| | | next BID in the list. |
+---------+-------+-------------------------------------------------+
Figure 6: Action Rules for the Traffic Selector
BID Count
Total number of binding identifiers that follow this field. The
permitted values for this field are 1 through 8; each binding
identifier is represented as an unsigned integer in a single octet
field. There is no delimiter between two binding identifier
values; they are spaced consecutively.
TS Format
An 8-bit unsigned integer indicating the Traffic Selector (TS)
Format. The value (0) is reserved and MUST NOT be used. When the
value of the TS Format field is set to (1), the format that
follows is the IPv4 Binary Traffic Selector specified in
<a href="./rfc6088#section-3.1">Section 3.1 of [RFC6088]</a>, and when the value of the TS Format
field is set to (2), the format that follows is the IPv6 Binary
Traffic Selector specified in <a href="./rfc6088#section-3.2">Section 3.2 of [RFC6088]</a>. The IPv6
traffic selectors are only relevant when the mobile node registers
IPv6 prefixes per [<a href="./rfc5454" title=""Dual-Stack Mobile IPv4"">RFC5454</a>].
Traffic Selector
A variable-length opaque field for including the traffic
specification identified by the TS Format field. It identifies
the traffic selectors for matching the IP traffic and binding them
to specific binding identifiers.
<span class="grey">Gundavelli, et al. Experimental [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. New Error Codes for Registration Reply</span>
This document defines the following error code values for use by the
home agent in the Code field of the Registration Reply.
MULTIPATH_NOT_ALLOWED (Multipath Support not allowed for this mobile
node): 152
INVALID_FB_IDENTIFIER (Invalid Flow-Binding Identifier): 153
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Protocol Operation</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Mobile Node Considerations</span>
o The mobile node should register a care-of address for each of the
connected interfaces that it wishes to register with the home
agent. It can do so by sending a Registration Request to the home
agent through each of those interfaces.
o Each of the Registration Requests that is sent includes the care-
of address of the respective interface. The Registration Request
has to be routed through the specific interface for which the
registration is sought for. Some of these interfaces may be
connected to networks with a configured foreign agent on the link,
and in such foreign-agent-based registrations, the care-of address
will be the IP address of the foreign agent.
o A Multipath Extension (<a href="#section-4.1">Section 4.1</a>) reflecting the interface
parameters is present in each of the Registration Requests. This
serves as an indication to the home agent that the Registration
Request is a Multipath registration and the home agent will have
to register this care-of address as one of the many care-of
addresses through which the mobile node's home address is
reachable.
o If the mobile node is configured to exchange IP flow policy to the
home agent, then the Flow-Binding Extension (<a href="#section-4.2">Section 4.2</a>)
reflecting the flow policy can be included in the message.
Otherwise, the Flow-Binding Extension will not be included.
o The mobile node, upon receiving a Registration Reply with the Code
value set to MULTIPATH_NOT_ALLOWED, MAY choose to register without
the Multipath Extension specified in this document. This implies
the home agent has not enabled multipath support for this mobile
node and hence multipath support MUST be disabled on the mobile
node.
<span class="grey">Gundavelli, et al. Experimental [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
o The mobile node, upon receiving a Registration Reply with the Code
value set to INVALID_FB_IDENTIFIER, MUST re-register that specific
binding with the home agent.
o The mobile node at any time can extend the lifetime of a specific
care-of address registration by sending a Registration Request to
the home agent with a new lifetime value. The message MUST be
sent as the initial multipath registration and must be routed
through that specific interface. The message MUST include the
Multipath Extension (<a href="#section-4.1">Section 4.1</a>) with the value in the Binding ID
field set to the binding identifier assigned to that binding.
Alternatively, the home agent can send a single Registration
Request with the Bulk Re-registration Flag (B) set to a value of
(1). This serves as a request to the home agent to update the
registration lifetime of all the mobile node's registrations.
o The mobile node can, at any time, de-register a specific care-of
address by sending a Registration Request to the home agent with a
lifetime value of (0). The message must include the Multipath
Extension (<a href="#section-4.1">Section 4.1</a>) with the value in the Binding ID field set
to the binding identifier assigned to that binding.
Alternatively, the home agent can send a single Registration
Request with the Bulk Re-registration Flag (B) set to a value of
(1) and a lifetime value of (0). This serves as a request to the
home agent to consider this request as a request to de-register
all the mobile node's care-of addresses.
o The mobile node can, at any time, update the parameters of a
specific registration by sending a Registration Request to the
home agent. This includes a change of care-of address associated
with a previously registered interface. The message must be sent
as the initial multipath registration and must be routed through
that specific interface. The message must include the Multipath
Extension (<a href="#section-4.1">Section 4.1</a>) with the value in the Binding ID field set
to the binding identifier assigned to that binding, and the
Overwrite Flag (O) flag MUST be set to a value of (1).
o The mobile node, upon receiving a Registration Reply with the Code
value set to 0 (registration accepted), will establish a Mobile IP
tunnel to the home agent using that care-of address. When using a
foreign agent care-of address, the tunnel is between the home
agent and the foreign agent. The tunnel encapsulation type and
any other parameters are based on the registration for that path.
If there is also an exchange of flow policy between the mobile
node and the home agent, with the use of Flow-Binding Extensions,
then the mobile node must set up the forwarding plane that matches
the flow policy.
<span class="grey">Gundavelli, et al. Experimental [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Home Agent Considerations</span>
The home agent, upon receiving a Registration Request from a mobile
node with a Multipath Extension, should check if the mobile node is
authorized for multipath support. If multipath support is not
enabled, the home agent MUST reject the request with a Registration
Reply and with the Code set to MULTIPATH_NOT_ALLOWED.
If the received Registration Request includes a Multipath Extension
and additionally has the Bulk Re-registration (B) flag set to a value
of (1), then the home agent MUST extend the lifetime of all the
bindings associated with that mobile node.
The home agent, upon receipt of a Registration Request with the Flow-
Binding Extension, must process the extension and, upon accepting the
flow policy, must set up the forwarding plane that matches the flow
policy. If the home agent cannot identify any of the binding
identifiers, then it MUST reject the request with a Registration
Reply and with the Code set to INVALID_FB_IDENTIFIER.
If the received Registration Request includes a Multipath Extension
and additionally has the Registration Overwrite (O) flag set to a
value of (1), then the home agent MUST consider this as a request to
replace all other mobile node's bindings with just one binding and
that is the binding associated with this request.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Routing Considerations</span>
When multipath registration is enabled for a mobility node, there
will be multiple Mobile IP tunnels established between a mobile node
and its home agent. These Mobile IP tunnels appear to the forwarding
plane of the mobile node as equal-cost, point-to-point links.
If there is also an exchange of traffic flow policy between the
mobile node and the home agent, with the use of Flow-Binding
Extensions (<a href="#section-4.2">Section 4.2</a>), then the mobile node's IP traffic can be
routed by the mobility entities as per the negotiated flow policy.
However, if multipath is enabled for a mobility session without the
use of any flow policy exchange, then both the mobile node and the
home agent are required to have a pre-configured static flow policy.
The specific details on the semantics of this static flow policy are
outside the scope of this document.
In the absence of any established traffic flow policies, most IP
hosts support two alternative traffic load-balancing schemes, per-
flow and per-packet load balancing [<a href="./rfc2991" title=""Multipath Issues in Unicast and Multicast Next-Hop Selection"">RFC2991</a>]. These load-balancing
schemes allow the forwarding plane to evenly distribute traffic on
either a per-packet or per-flow basis, across all the available
<span class="grey">Gundavelli, et al. Experimental [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
equal-cost links through which a destination can be reached. The
default forwarding behavior of per-flow load balancing will ensure a
given flow always takes the same path and will eliminate any packet
re-ordering issues, and that is critical for delay-sensitive traffic,
whereas the per-destination load-balancing scheme leverages all the
paths much more effectively but with the potential issue of packet
re-ordering on the receiver end. This issue will be specially
magnified when the access links have very different forwarding
characteristics. A host can choose to enable any of these
approaches. Therefore, this specification recommends the use of per-
flow load balancing.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. IANA Considerations</span>
Per this document, the following IANA actions have been completed.
o Action 1: This specification defines two new Mobile IP extensions,
the Multipath Extension and the Flow-Binding Extension. The
format of the Multipath Extension is described in <a href="#section-4.1">Section 4.1</a>, and
the format of the Flow-Binding Extension is described in
<a href="#section-4.2">Section 4.2</a>. Both of these extensions are non-skippable
extensions to the Mobile IPv4 header in accordance to the long
extension format of [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>]. Both of these extensions use a
common Type value, Multipath-Extension (154), but are identified
using different Subtype values. The Type value 154 for these
extensions has been allocated from the "Extensions to Mobile IP
Registration Messages" registry at the URL
<<a href="http://www.iana.org/assignments/mobileip-numbers">http://www.iana.org/assignments/mobileip-numbers</a>>. The field
"Permitted for Notification Messages" for this extension MUST be
set to "N".
o Action 2: This specification defines a new message subtype space,
Multipath Extension subtype. This field is described in
<a href="#section-4.1">Section 4.1</a>. The values for this subtype field are managed by
IANA under the "Multipath Extension subtypes (Value 154)"
registry. This specification reserves the following Type values.
Approvals of new Multipath Extension subtype values are to be made
through IANA Expert Review [<a href="./rfc5226" title="">RFC5226</a>].
<span class="grey">Gundavelli, et al. Experimental [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
+=========================================================+
| 0 | Reserved |
+=========================================================+
| 1 | Multipath Extension |
+=========================================================+
| 2 | Flow-Binding Extension |
+=========================================================+
| | |
~ 3-254 | Unassigned ~
| | |
+=========================================================+
| 255 | Reserved |
+=========================================================+
o Action 3: This document defines new status code values,
MULTIPATH_NOT_ALLOWED (152) and INVALID_FB_IDENTIFIER (153), for
use by the home agent in the Code field of the Registration Reply,
as described in <a href="#section-4.3">Section 4.3</a>. These values have been assigned from
the "Registration denied by the home agent" registry at
<<a href="http://www.iana.org/assignments/mobileip-numbers">http://www.iana.org/assignments/mobileip-numbers</a>>.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
This specification allows a mobile node to establish multiple Mobile
IP tunnels with its home agent by registering a care-of address for
each of its active roaming interfaces. This essentially allows the
mobile node's IP traffic to be routed through any of the tunnel paths
based on a static or a dynamically negotiated flow policy. This new
capability has no impact on the protocol security. Furthermore, this
specification defines two new Mobile IP extensions, the Multipath
Extension and the Flow-Binding Extension. These extensions are
specified to be included in Mobile IP control messages, which are
authenticated and integrity protected as described in [<a href="./rfc5944" title=""IP Mobility Support for IPv4, Revised"">RFC5944</a>].
Therefore, this specification does not weaken the security of the
Mobile IP protocol and does not introduce any new security
vulnerabilities.
<span class="grey">Gundavelli, et al. Experimental [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. References</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
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-RFC5213">RFC5213</a>] Gundavelli, S., Ed., Leung, K., Devarapalli, V.,
Chowdhury, K., and B. Patil, "Proxy Mobile IPv6",
<a href="./rfc5213">RFC 5213</a>, DOI 10.17487/RFC5213, August 2008,
<<a href="http://www.rfc-editor.org/info/rfc5213">http://www.rfc-editor.org/info/rfc5213</a>>.
[<a id="ref-RFC5944">RFC5944</a>] Perkins, C., Ed., "IP Mobility Support for IPv4, Revised",
<a href="./rfc5944">RFC 5944</a>, DOI 10.17487/RFC5944, November 2010,
<<a href="http://www.rfc-editor.org/info/rfc5944">http://www.rfc-editor.org/info/rfc5944</a>>.
[<a id="ref-RFC6088">RFC6088</a>] Tsirtsis, G., Giarreta, G., Soliman, H., and N. Montavont,
"Traffic Selectors for Flow Bindings", <a href="./rfc6088">RFC 6088</a>,
DOI 10.17487/RFC6088, January 2011,
<<a href="http://www.rfc-editor.org/info/rfc6088">http://www.rfc-editor.org/info/rfc6088</a>>.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-RFC2991">RFC2991</a>] Thaler, D. and C. Hopps, "Multipath Issues in Unicast and
Multicast Next-Hop Selection", <a href="./rfc2991">RFC 2991</a>,
DOI 10.17487/RFC2991, November 2000,
<<a href="http://www.rfc-editor.org/info/rfc2991">http://www.rfc-editor.org/info/rfc2991</a>>.
[<a id="ref-RFC3753">RFC3753</a>] Manner, J., Ed. and M. Kojo, Ed., "Mobility Related
Terminology", <a href="./rfc3753">RFC 3753</a>, DOI 10.17487/RFC3753, June 2004,
<<a href="http://www.rfc-editor.org/info/rfc3753">http://www.rfc-editor.org/info/rfc3753</a>>.
[<a id="ref-RFC5226">RFC5226</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc5226">RFC 5226</a>,
DOI 10.17487/RFC5226, May 2008,
<<a href="http://www.rfc-editor.org/info/rfc5226">http://www.rfc-editor.org/info/rfc5226</a>>.
[<a id="ref-RFC5454">RFC5454</a>] Tsirtsis, G., Park, V., and H. Soliman, "Dual-Stack Mobile
IPv4", <a href="./rfc5454">RFC 5454</a>, DOI 10.17487/RFC5454, March 2009,
<<a href="http://www.rfc-editor.org/info/rfc5454">http://www.rfc-editor.org/info/rfc5454</a>>.
[<a id="ref-RFC6626">RFC6626</a>] Tsirtsis, G., Park, V., Narayanan, V., and K. Leung,
"Dynamic Prefix Allocation for Network Mobility for Mobile
IPv4 (NEMOv4)", <a href="./rfc6626">RFC 6626</a>, DOI 10.17487/RFC6626, May 2012,
<<a href="http://www.rfc-editor.org/info/rfc6626">http://www.rfc-editor.org/info/rfc6626</a>>.
<span class="grey">Gundavelli, et al. Experimental [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
Acknowledgements
We would like to thank Qin Wu, Shahriar Rahman, Mohana Jeyatharan,
Yungui Wang, Hui Deng Behcet Sarikaya, Jouni Korhonen, Michaela
Vanderveen, Antti Makela, Charles Perkins, Pierrick Seite, Vijay
Gurbani, Barry Leiba, Henrik Levkowetz, Pete McCann, and Brian
Haberman for their review and comments on this document.
Contributors
This document reflects discussions and contributions from the
following people:
Ahmad Muhanna
Email: asmuhanna@yahoo.com
Srinivasa Kanduru
Email: skanduru@gmail.com
Vince Park
Email: vpark@qualcomm.com
Hesham Soliman
Email: hesham@elevatemobile.com
<span class="grey">Gundavelli, et al. Experimental [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7629">RFC 7629</a> Flow-Binding Support for Mobile IP August 2015</span>
Authors' Addresses
Sri Gundavelli (editor)
Cisco
170 West Tasman Drive
San Jose, CA 95134
United States
Email: sgundave@cisco.com
Kent Leung
Cisco
170 West Tasman Drive
San Jose, CA 95134
United States
Email: kleung@cisco.com
George Tsirtsis
Qualcomm
Email: tsirtsis@qualcomm.com
Alexandre Petrescu
CEA, LIST
CEA Saclay
Gif-sur-Yvette , Ile-de-France 91191
France
Phone: +33169089223
Email: alexandre.petrescu@cea.fr
Gundavelli, et al. Experimental [Page 19]
</pre>
|