1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
  
     | 
    
      <pre>Internet Engineering Task Force (IETF)                  F. Abinader, Ed.
Request for Comments: 6602                 Instituto Nokia de Tecnologia
Category: Standards Track                             S. Gundavelli, Ed.
ISSN: 2070-1721                                                 K. Leung
                                                                   Cisco
                                                             S. Krishnan
                                                                Ericsson
                                                               D. Premec
                                                            Unaffiliated
                                                                May 2012
           <span class="h1">Bulk Binding Update Support for Proxy Mobile IPv6</span>
Abstract
   For extending the lifetime of a mobility session, the Proxy Mobile
   IPv6 specification requires the mobile access gateway to send a Proxy
   Binding Update message to the local mobility anchor on a per-session
   basis.  In the absence of signaling semantics for performing
   operations with group-specific scope, this results in a significant
   amount of signaling traffic on a periodic basis between a given
   mobile access gateway and a local mobility anchor.  This document
   defines optimizations to the binding update and revocation operations
   in Proxy Mobile IPv6 for performing operations with group-specific
   scope with the use of a group identifier.
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/rfc6602">http://www.rfc-editor.org/info/rfc6602</a>.
Copyright Notice
   Copyright (c) 2012 IETF Trust and the persons identified as the
   document authors.  All rights reserved.
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
   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-4">4</a>
      <a href="#section-2.1">2.1</a>. Conventions ................................................<a href="#page-4">4</a>
      <a href="#section-2.2">2.2</a>. Terminology ................................................<a href="#page-4">4</a>
   <a href="#section-3">3</a>. Bulk Binding Update Overview ....................................<a href="#page-4">4</a>
      <a href="#section-3.1">3.1</a>. Motivation .................................................<a href="#page-4">4</a>
      <a href="#section-3.2">3.2</a>. General Operation ..........................................<a href="#page-5">5</a>
   <a href="#section-4">4</a>. Message Formats .................................................<a href="#page-8">8</a>
      <a href="#section-4.1">4.1</a>. Extensions to Proxy Binding Update Message .................<a href="#page-9">9</a>
      <a href="#section-4.2">4.2</a>. Extensions to Proxy Binding Acknowledgement Message .......<a href="#page-10">10</a>
      <a href="#section-4.3">4.3</a>. Mobile Node Group Identifier Option .......................<a href="#page-10">10</a>
      <a href="#section-4.4">4.4</a>. Status Codes ..............................................<a href="#page-11">11</a>
   <a href="#section-5">5</a>. Protocol Considerations ........................................<a href="#page-12">12</a>
      <a href="#section-5.1">5.1</a>. MAG Considerations ........................................<a href="#page-12">12</a>
           5.1.1. Extensions to Binding Update List Entry
                  Data Structure .....................................<a href="#page-12">12</a>
           5.1.2. Requesting Bulk Binding Update Support for
                  a Mobility Session .................................<a href="#page-12">12</a>
           <a href="#section-5.1.3">5.1.3</a>. Supporting Bulk Binding Updates ....................<a href="#page-14">14</a>
      <a href="#section-5.2">5.2</a>. LMA Considerations ........................................<a href="#page-15">15</a>
           <a href="#section-5.2.1">5.2.1</a>. Extensions to Binding Cache Entry Data Structure ...<a href="#page-15">15</a>
           5.2.2. Enabling Bulk Binding Update Support for a
                  Mobility Session ...................................<a href="#page-16">16</a>
           <a href="#section-5.2.3">5.2.3</a>. Supporting Bulk Binding Updates ....................<a href="#page-18">18</a>
   <a href="#section-6">6</a>. Protocol Configuration Variables ...............................<a href="#page-20">20</a>
      <a href="#section-6.1">6.1</a>. Local Mobility Anchor - Configuration Variables ...........<a href="#page-20">20</a>
      <a href="#section-6.2">6.2</a>. Mobile Access Gateway - Configuration Variables ...........<a href="#page-20">20</a>
   <a href="#section-7">7</a>. IANA Considerations ............................................<a href="#page-20">20</a>
   <a href="#section-8">8</a>. Security Considerations ........................................<a href="#page-21">21</a>
   <a href="#section-9">9</a>. Acknowledgements ...............................................<a href="#page-21">21</a>
   <a href="#section-10">10</a>. References ....................................................<a href="#page-22">22</a>
      <a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-22">22</a>
      <a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-22">22</a>
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>.  Introduction</span>
   The Proxy Mobile IPv6 base specification [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>] requires the
   Mobile Node Identifier option to be present in the mobility signaling
   messages, such as in the Proxy Binding Update (PBU) and Proxy Binding
   Acknowledgement (PBA) messages.  It essentially limits the
   operational scope of the binding update operation to a single
   mobility session.  These signaling messages lack the capability to
   identify a group of mobility sessions, so the operations related to
   binding update and revocation can be performed on all the mobility
   sessions that are part of that group.
   There is a need to have semantics for associating a group identity to
   a mobility session, so the scope of the operations related to binding
   update and revocation can be extended to all the mobility sessions
   identified by the group identifier.  The group identifier therefore
   provides a considerably improved mechanism for protocol operations
   that would otherwise require multiple atomic transactions on a per-
   mobility-session basis.  Following are some of the use cases where
   the group identifier can be used.
   o  For extending the lifetime of a mobility session, the mobile
      access gateway (MAG) periodically sends a Proxy Binding Update
      message to the local mobility anchor (LMA) on a per-session basis.
      This process can be optimized by allowing the mobile access
      gateway to send a single Proxy Binding Update [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>] message
      for a group of mobility sessions identified by a group identifier.
      Upon accepting the request, the local mobility anchor can update
      the lifetime of all the mobility sessions that are part of that
      group.
   o  On detecting the failure of a specific service card, a local
      mobility anchor, or a mobile access gateway service hosted on
      blade architecture system, can potentially request the peer to
      revoke all the sessions identified by a common group identifier
      that are hosted on that service card.  Potentially, a single
      Binding Revocation Indication [<a href="./rfc5846" title=""Binding Revocation for IPv6 Mobility"">RFC5846</a>] message carrying the group
      identifier can be used to revoke all the sessions hosted on that
      service card, which otherwise needs to be handled on a per-session
      basis.
   This document defines a new mobility option, the Mobile Node Group
   Identifier option, and the extensions to procedures related to
   binding update and binding revocation for performing binding
   operations with group-specific scope.
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
<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 the base Proxy Mobile IPv6 specifications
   [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>] and [<a href="./rfc5844" title=""IPv4 Support for Proxy Mobile IPv6"">RFC5844</a>].  Additionally, this document uses the
   following terms:
   Bulk Binding Update
      A binding update operation that has group-specific scope.  A
      binding operation is associated with a specific mobility session.
      However, a bulk binding update operation is associated with
      multiple mobility sessions.  This operation is not relevant for
      new mobility session creation.
   Bulk Binding Update Group
      A group of mobility sessions that are part of the same logical
      group and therefore share a common group identifier.  This group
      is the bulk binding update group.  This bulk binding update group
      is maintained by both the mobile access gateway and the local
      mobility anchor, and the grouping logic is local to that node.  A
      mobility session can therefore be identified by two bulk binding
      update group identifiers, one specific group created by the mobile
      access gateway and the other specific group created by the local
      mobility anchor.  The bulk binding update group identifiers are
      exchanged as part of the initial mobility session creation.  The
      mobility entities thereafter can perform operations related to
      binding update such as lifetime extension and revocation
      operations on an entire bulk binding update group identified by
      the group identifier.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>.  Bulk Binding Update Overview</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>.  Motivation</span>
   In a typical Proxy Mobile IPv6 domain, a local mobility anchor serves
   multiple mobile access gateways, and the capacity of that node with
   respect to the number of mobility sessions that it can host is quite
   high, typically in the order of a few millions.  As the number of
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
   mobility sessions hosted by a local mobility anchor goes up, so does
   the amount of signaling traffic related to periodic binding update
   traffic.
   The currently specified approach of the binding update procedure for
   extending the lifetimes of multiple mobility sessions (where the
   mobile access gateway is required to send a unique binding update
   message for each mobility session even when there is no change to the
   session state) is inefficient or sub-optimal.  These periodic binding
   update messages consume a significant amount of network resources at
   both the peers, in terms of processing power and network bandwidth.
   There is an opportunity to optimize the signaling procedures by
   allowing the local mobility anchor and the mobile access gateway to
   perform bulk binding update operations.  This document specifies
   extensions to Proxy Mobile IPv6 signaling for performing binding
   update and revocation operations on a group of mobility sessions.
   These extensions do not take away the existing functionality of
   performing binding operations on a single mobility session.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>.  General Operation</span>
   The bulk binding update mechanism specified in this document allows
   the mobile access gateway and the local mobility anchor to perform
   binding update and revocation operations on a group of mobility
   sessions.  As part of the initial signaling during mobility session
   establishment, the local mobility anchor and the mobile access
   gateway exchange the respective bulk binding update group identifiers
   for that mobility session.  Subsequently, both the peers can perform
   bulk operations on those groups by presenting the bulk binding update
   group identifier in the signaling messages.
   When sending a Proxy Binding Update message after detecting a new
   mobile node on its access link, a mobile access gateway can request
   the local mobility anchor to assign a bulk binding update group
   identifier for the mobile node's mobility session.  This is indicated
   by setting the (B) flag in the Proxy Binding Update to a value of
   (1).  The mobile access gateway will also assign a bulk binding
   update group identifier (or it may assign a default bulk binding
   update group - ALL-SESSIONS) and include that in the Mobile Node
   Group Identifier option.
   Upon accepting the request, the local mobility anchor will group the
   mobility session to a specific bulk binding update group (or it may
   assign it to the default bulk binding update group - ALL-SESSIONS)
   and return this bulk binding update group identifier in a Proxy
   Binding Acknowledgement message.  It will also set the (B) flag in
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
   the Proxy Binding Acknowledgement message to a value of (1).  The
   bulk binding update group identifier is carried in the Mobile Node
   Group Identifier option, described in <a href="#section-4.3">Section 4.3</a>.
   Once the bulk binding update group identifiers are exchanged, the
   local mobility anchor and the mobile access gateway can perform
   binding operations on those entire groups, by including the bulk
   binding update group identifier in the signaling messages.  For
   example, the mobile access gateway can extend the lifetime of all the
   mobility sessions that are part of a group by sending a single Proxy
   Binding Update message with that bulk binding update group
   identifier.  Similarly, the local mobility anchor can revoke all the
   mobility sessions that are part of a group by including that group
   identifier in the Proxy Binding Revocation message.  When initiating
   bulk binding update operations on a group of mobility sessions, the
   group identifier that is carried in the Mobile Node Group Identifier
   option is always the identifier of the local group, and not the
   identifier of the group on the peer.
   Figure 1 explains the operational sequence of the bulk binding update
   and revocation operations on a group of mobile nodes (MN1, MN2, and
   MN3).
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
              MAG                         LMA
         (1)  |                            |
    MN1-------|           (2) PBU          |
              |--------------------------->|
              |                            * (3)
              |           (4) PBA          |
              |<---------------------------|
              * (5)                        |
         (6)  |                            |
    MN2-------|                            |
              * (7)........................|
         (8)  |                            |
    MN3-------|                            |
              * (9)........................|
              |                            |
              |           (10) PBU         |
              |--------------------------->|
              |                            * (11)
              |           (12) PBA         |
              |<---------------------------|
              * (13)
              |                            |
              |           (14) BRI         |
              |<---------------------------|
              |                            * (15)
              |           (16) BRA         |
              |--------------------------->|
              * (17)                       |
              |                            |
          Figure 1: Exchange of Group Identifier
   o  (1) to (2): The MAG detects the mobile node's (MN1) attachment to
      the access link.  The MAG groups the mobile node to a specific
      bulk binding update group, (M1).  The MAG notifies this group
      identifier to the LMA by including it in the Mobile Node Group
      Identifier option of the PBU message.
   o  (3): Upon accepting the PBU, the LMA creates a mobility session
      and groups the mobility session to a specific bulk binding update
      group, (L1).  The LMA updates the mobile node's Binding Cache
      entry to include the bulk binding update group identifier, (L1),
      and the bulk binding update group identifier presented by the MAG,
      (M1).  The LMA also notifies the MAG about the bulk binding update
      group identifier (L1), by including it in the PBA.
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
   o  (4) to (5): Upon receiving the PBA, the MAG updates the Binding
      Update List entry for that mobility session to include the bulk
      binding update group identifiers (L1) and (M1).  At this point,
      both the LMA and MAG are aware of the mobile node's bulk binding
      update group identifiers assigned by the peers.
   o  (6) to (9): The above steps (1 through 5) are repeated here for
      MN2 and MN3; details are omitted.  At the end of step (9), the MAG
      completes the signaling with the LMA.  The MAG assigns the mobile
      nodes MN2 and MN3 to bulk binding update groups (M1) and (M2)
      respectively, while the LMA assigns them both to the same bulk
      binding update group, (L1).
   o  At this point, LMA has assigned MN1, MN2, and MN3 to the bulk
      binding update group (L1), while the MAG has assigned MN1 and MN2
      to group (M1) and MN3 to group (M2).  Both peers can now perform
      binding operations on a group of mobility sessions identified by
      the respective bulk binding update group identifier.
   o  (10) to (13): The MAG sends a Proxy Binding Update message for
      extending the lifetime of all the mobility sessions that are part
      of the bulk binding update group (M1).  It includes the bulk
      binding update group identifier (M1) in the PBU.  Upon accepting
      the PBU, the LMA extends the lifetime of both MN1 and MN2, which
      are part of the group (M1).
   o  (14) to (17): The LMA decides to revoke all the sessions that are
      part of bulk binding update group (L1).  The LMA sends a Binding
      Revocation Indication (BRI) message with the bulk binding update
      group identifier (L1).  Upon accepting the BRI message, the MAG
      revokes all the MN1, MN2, and MN3 mobility sessions, which are
      part of that bulk binding update group (L1), and sends a Binding
      Revocation Acknowledgement (BRA) [<a href="./rfc5846" title=""Binding Revocation for IPv6 Mobility"">RFC5846</a>] message.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>.  Message Formats</span>
   This section identifies the extensions to Proxy Mobile IPv6 signaling
   messages that are required for supporting this specification.
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>.  Extensions to Proxy Binding Update Message</span>
    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
                                   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                                   |            Sequence #         |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |A|H|L|K|M|R|P|F|T|B| Reserved  |            Lifetime           |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                                                               |
   .                                                               .
   .                        Mobility options                       .
   .                                                               .
   |                                                               |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
           Figure 2: Extensions to Proxy Binding Update Message
   A new flag, the Bulk-Binding-Update flag (B), is defined in the Proxy
   Binding Update message specified in [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>].  The bit value of
   Bulk-Binding-Update flag (B) in the flags field of the message will
   be 0x0040.
   If the Bulk-Binding-Update flag (B) is set to a value of (1), it
   informs the local mobility anchor to enable bulk binding update
   support for the mobility session associated with this message.  If
   the (B) flag is set to a value of (0), the local mobility anchor MUST
   exclude the mobility session associated with this message from any
   bulk-binding-related operations and any binding update, or binding
   revocation operations with bulk-specific scope will not be relevant
   to that mobility session.
   This flag is relevant only for Proxy Mobile IPv6 and therefore MUST
   be set to the value of (0) when the (P) flag is set to a value of
   (0).
   All other fields in the Proxy Binding Update message and the mobility
   options that can be carried in the message conform to the appropriate
   specifications.
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>.  Extensions to Proxy Binding Acknowledgement Message</span>
    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
                                   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
                                   |   Status      |K|R|P|T|B| Res.|
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |         Sequence #            |           Lifetime            |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                                                               |
   .                                                               .
   .                        Mobility options                       .
   .                                                               .
   |                                                               |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
       Figure 3: Extensions to Proxy Binding Acknowledgement Message
   A new flag, the Bulk-Binding-Update flag (B), is defined in the Proxy
   Binding Acknowledgement message specified in [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>].  The bit
   value of Bulk-Binding-Update flag (B) in the flags field of the
   message is 0x08.
   If the Bulk-Binding-Update flag (B) is set to a value of (1), it
   serves as an indication to the mobile access gateway that the local
   mobility anchor has enabled bulk binding update support for the
   mobility session associated with this message.  The value of the flag
   MUST be set to the value of (0) if the value of the (B) flag in the
   Proxy Binding Update message that it received from the mobile access
   gateway was set to a value of (0).
   This flag is relevant only for Proxy Mobile IPv6 and therefore MUST
   be set to a value of (0) when the (P) flag is set to a value of (0).
   All other fields in the Proxy Binding Acknowledgement message and the
   mobility options that can be carried in the message conform to the
   appropriate specifications.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>.  Mobile Node Group Identifier Option</span>
   A new option, the Mobile Node Group Identifier option, is defined for
   use in Proxy Mobile IPv6 signaling messages exchanged between a local
   mobility anchor and a mobile access gateway.  This option is used for
   carrying the mobile node's group identifier.  There can be multiple
   instances of this option in a given signaling message; however, each
   of the instances SHOULD have a different sub-type value.  This option
   is a generic option, and this specification uses only the sub-type
   value of (1).
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
   The type value for this option is 50.
   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     |   Length      |  Sub-type   |    Reserved     |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                  Mobile Node Group Identifier                 |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
               Figure 4: Mobile Node Group Identifier Option
   Type
      <50>
   Length
      This is an 8-bit unsigned integer indicating the length in octets
      of this option, excluding the type and length fields.  The value
      for this field MUST be set to a value of (6).
   Sub-type
      This 8-bit field identifies the specific mobile node's group type.
      This number space will be managed by the IANA.  The sub-type value
      of (1) is reserved for the Bulk Binding Update Group.
   Reserved
      This 8-bit field is unused for now.  The value MUST be initialized
      to (0) by the sender and MUST be ignored by the receiver.
   Mobile Node Group Identifier
      This 32-bit field contains the mobile node's group identifier.
      The value of (0) is reserved and SHOULD NOT be used.  The value of
      (1) ALL-SESSIONS is the default group of all mobility sessions
      established between a given local mobility anchor and a mobile
      access gateway.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>.  Status Codes</span>
   This document defines the following new status code values for use in
   the Proxy Binding Acknowledgement message.  These values have been
   allocated from the same number space as defined in <a href="./rfc6275#section-6.1.8">Section 6.1.8 of
   [RFC6275]</a>.
   INVALID_MOBILE_NODE_GROUP_IDENTIFIER: 175
      Invalid group identifier value in the request
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>.  Protocol Considerations</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>.  MAG Considerations</span>
   The following are the considerations relevant to the mobile access
   gateway when supporting this specification.
<span class="h4"><a class="selflink" id="section-5.1.1" href="#section-5.1.1">5.1.1</a>.  Extensions to Binding Update List Entry Data Structure</span>
   The conceptual Binding Update List entry data structure maintained by
   the mobile access gateway, described in <a href="./rfc5213#section-6.1">Section 6.1 of [RFC5213]</a>, is
   extended to include the following REQUIRED additional fields:
   o  MAG-Bulk-Binding-Update-Group-Id
      This is the bulk binding update group identifier assigned by this
      mobile access gateway for this mobility session.  It is a 32-bit
      unsigned integer.  This identifier is not globally unique within a
      Proxy Mobile IPv6 domain; the same group identifier value may be
      used by other nodes.
   o  LMA-Bulk-Binding-Update-Group-Id
      This is the bulk binding update group identifier assigned by the
      local mobility anchor for this mobility session.  It is a 32-bit
      unsigned integer.  This identifier is received in the Mobile Node
      Group Identifier option of the Proxy Binding Acknowledgement
      message.  This identifier is not globally unique within a Proxy
      Mobile IPv6 domain; the same group identifier value may be used by
      other nodes.
<span class="h4"><a class="selflink" id="section-5.1.2" href="#section-5.1.2">5.1.2</a>.  Requesting Bulk Binding Update Support for a Mobility Session</span>
   The following are the considerations for the mobile access gateway
   for requesting bulk binding update support for a mobility session.
   o  When sending a Proxy Binding Update message to the local mobility
      anchor, the mobile access gateway can choose to request that the
      local mobility anchor enable bulk binding update support for the
      mobility session associated with that Proxy Binding Update
      request.  When making such request, the Bulk-Binding-Update flag
      (B) in the request MUST be set to a value of (1) and the Mobile
      Node Group Identifier option MUST be present.  The decision to
      request bulk binding update support for a mobile node is a matter
      of local policy at the mobile access gateway and is controlled by
      the configuration variable
      RequestBulkBindingUpdateSupportForMobilitySession.
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
   o  The mobile access gateway MUST assign a bulk binding update group
      identifier for the mobility session.  Considerations on how the
      mobile access gateway assigns a group identifier to a mobility
      session is outside the scope of this document.  This group
      identifier can be unique to the service card on which the mobility
      session is hosted or based on other grouping considerations.  When
      no such group assignment is done, the mobile access gateway SHOULD
      assign the default group identifier value of (ALL-SESSIONS).  This
      assigned group identifier value MUST be present in the Mobile Node
      Group Identifier option, and the sub-type value in the option MUST
      be set to the value of (1) (Bulk Binding Update Group).
   o  If the received Proxy Binding Acknowledgement message has the
      status code value set to (0) (Proxy Binding Update accepted) and
      the Bulk-Binding-Update flag (B) set to a value of (0), in
      response to a Proxy Binding Update request with the Bulk-Binding-
      Update flag (B) set to a value of (1), it is an indication that
      the local mobility anchor has denied the request for enabling bulk
      binding update support for that mobility session and that the
      mobility session is not associated with any bulk binding update
      group.  The mobile access gateway SHOULD set the bulk binding
      update group identifier values LMA-Bulk-Binding-Update-Group-Id
      and MAG-Bulk-Binding-Update-Group-Id to (0) in the Binding Update
      List entry for that mobility session.  Furthermore, the mobility
      session should be excluded from any bulk binding update
      operations.
   o  If the received Proxy Binding Acknowledgement message has the
      status code value set to (0) (Proxy Binding Update accepted) and
      the Bulk-Binding-Update flag (B) in the reply is set to a value of
      (1), it is an indication that the local mobility anchor has
      accepted the request to allow bulk binding update support for that
      mobility session.  Furthermore, the Mobile Node Group Identifier
      option in the reply, with the sub-type value of (1) (Bulk Binding
      Update Group), contains the bulk binding update group identifier
      for that mobility session assigned by the local mobility anchor.
      The mobile access gateway MUST update the LMA-Bulk-Binding-Update-
      Group-Id and MAG-Bulk-Binding-Update-Group-Id parameters in the
      Binding Update List entry for that mobility session.  However, if
      the received Proxy Binding Acknowledgement message has the Bulk-
      Binding-Update flag (B) set to a value of (1), but the Mobile Node
      Group Identifier option is not present, the message MUST be
      considered malformed and ignored.
   o  If, at any point in time, the mobile access gateway chooses to
      request the local mobility anchor to disable bulk binding update
      support for a mobility session, it MUST send a Proxy Binding
      Update message with the (B) flag set to a value of (0), and the
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
      Mobile Node Group Identifier option MUST NOT be present.  This
      message is sent as a normal binding update request for lifetime
      extension.  Requirements from <a href="./rfc5213#section-6.9.1">Section 6.9.1 of [RFC5213]</a> apply.
      Furthermore, the mobile access gateway MUST update the Binding
      Update List entry by setting the bulk binding update group
      identifier values LMA-Bulk-Binding-Update-Group-Id and MAG-Bulk-
      Binding-Update-Group-Id to (0), and the mobility session MUST be
      excluded from any bulk binding update operations.
<span class="h4"><a class="selflink" id="section-5.1.3" href="#section-5.1.3">5.1.3</a>.  Supporting Bulk Binding Updates</span>
   The following section identifies the considerations for a mobile
   access gateway performing binding update and revocation operations
   with group-specific scope.
   o  For extending the lifetime of all mobility sessions that share the
      same bulk binding update group identifier, the mobile access
      gateway can choose to send a bulk binding update request.  To make
      such a request, it can send a Proxy Binding Update message to the
      local mobility anchor, including the Mobile Node Group Identifier
      option with the sub-type value of (1) (Bulk Binding Update Group)
      and with the Bulk-Binding-Update flag (B) set to a value of (0).
      The identifier value in the option MUST be set to the bulk binding
      update group identifier of the group for which bulk binding update
      operation is being requested.  The message MUST NOT include any
      individual session identifiers such as the Mobile Node Identifier
      option [<a href="./rfc4283" title=""Mobile Node Identifier Option for Mobile IPv6 (MIPv6)"">RFC4283</a>], the Home Network Prefix option [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>], the
      IPv4 Home Address Request option [<a href="./rfc5844" title=""IPv4 Support for Proxy Mobile IPv6"">RFC5844</a>], or the GRE Key option
      [<a href="./rfc5845" title=""Generic Routing Encapsulation (GRE) Key Option for Proxy Mobile IPv6"">RFC5845</a>].  All the considerations from <a href="./rfc5213#section-5.3.3">Section 5.3.3 of [RFC5213]</a>
      MUST be followed when sending the bulk binding update request,
      with the exception related to the use of Mobile Node Group
      Identifier option in place of the individual session identifiers
      (Mobile Node Identifier option, Home Network Prefix option, GRE
      Key option, and IPv4 Home Address Request option).
   o  When requesting binding revocation for all the sessions that share
      the same bulk binding update group identifier, the mobile access
      gateway can choose to send a bulk revocation request.  To make
      such a request, it can send a Binding Revocation Indication
      message [<a href="./rfc5846" title=""Binding Revocation for IPv6 Mobility"">RFC5846</a>] to the local mobility anchor, including the
      Mobile Node Group Identifier option with the sub-type value of (1)
      (Bulk Binding Update Group).  The identifier value in the option
      MUST be set to the bulk binding update group identifier of the
      group for which bulk binding update operation is being requested.
      The message MUST NOT include any individual session identifiers
      such as the Mobile Node Identifier option [<a href="./rfc4283" title=""Mobile Node Identifier Option for Mobile IPv6 (MIPv6)"">RFC4283</a>], the Home
      Network Prefix option [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>], the IPv4 Home Address Request
      option [<a href="./rfc5844" title=""IPv4 Support for Proxy Mobile IPv6"">RFC5844</a>], or the GRE Key option [<a href="./rfc5845" title=""Generic Routing Encapsulation (GRE) Key Option for Proxy Mobile IPv6"">RFC5845</a>].  All the
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
      considerations from <a href="./rfc5846#section-9.2">Section 9.2 of [RFC5846]</a> MUST be followed when
      sending the bulk binding update request, with the exception
      related to the use of Mobile Node Group Identifier option in place
      of the individual session identifiers (Mobile Node Identifier
      option, Home Network Prefix option, GRE Key option, IPv4 Home
      Address Request option).
   o  Any time the mobile access gateway receives a Binding Revocation
      Indication message [<a href="./rfc5846" title=""Binding Revocation for IPv6 Mobility"">RFC5846</a>], with a Mobile Node Group Identifier
      option present in the request and with the sub-type value of (1)
      (Bulk Binding Update Group), this message serves as a bulk
      revocation request, with the request scope for revoking of all the
      mobility sessions that are part of that bulk binding update group
      specific to that local mobility anchor and identified by the group
      identifier in the Mobile Node Group Identifier option.
   o  All the considerations from [<a href="./rfc5846" title=""Binding Revocation for IPv6 Mobility"">RFC5846</a>] apply when processing a
      binding revocation request, except making the scope of the
      operation apply to a set of mobility sessions identified by the
      bulk binding update group identifier present in the request.
   o  If the received Binding Revocation Indication message includes the
      Mobile Node Identifier option [<a href="./rfc4283" title=""Mobile Node Identifier Option for Mobile IPv6 (MIPv6)"">RFC4283</a>], the Home Network Prefix
      option [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>], the IPv4 Home Address Request option [<a href="./rfc5844" title=""IPv4 Support for Proxy Mobile IPv6"">RFC5844</a>],
      or the GRE Key option [<a href="./rfc5845" title=""Generic Routing Encapsulation (GRE) Key Option for Proxy Mobile IPv6"">RFC5845</a>], the mobile access gateway MUST
      consider this as an invalid message; it MUST reject the Binding
      Revocation Indication message and send a Binding Revocation
      Acknowledgement message with the Status field set to a value of
      128 (Binding Does NOT Exist).
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>.  LMA Considerations</span>
   The following are the considerations relevant to a local mobility
   anchor when supporting this specification.
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>.  Extensions to Binding Cache Entry Data Structure</span>
   The conceptual Binding Cache entry data structure maintained by the
   local mobility anchor, described in <a href="./rfc5213#section-5.1">Section 5.1 of [RFC5213]</a>, is
   extended to include the following REQUIRED additional fields.
   o  MAG-Bulk-Binding-Update-Group-Id
      This is the bulk binding update group identifier assigned by the
      mobile access gateway for this mobility session.  It is a 32-bit
      unsigned integer.  This identifier is received in the Mobile Node
      Group Identifier option of the Proxy Binding Update message.  This
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
      identifier is not globally unique within a Proxy Mobile IPv6
      domain; the same group identifier value may be used by other
      nodes.
   o  LMA-Bulk-Binding-Update-Group-Id
      This is the bulk binding update group identifier assigned by this
      local mobility anchor for this mobility session.  It is a 32-bit
      unsigned integer.  This identifier is not globally unique within a
      Proxy Mobile IPv6 domain; the same group identifier value may be
      used by other nodes.
<span class="h4"><a class="selflink" id="section-5.2.2" href="#section-5.2.2">5.2.2</a>.  Enabling Bulk Binding Update Support for a Mobility Session</span>
   The local mobility anchor will process a received Proxy Binding
   Update message as specified in [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>].  However, if the (B) flag
   in the received Proxy Binding Update message is set to a value of (1)
   and if it includes a Mobile Node Group Identifier option with the
   sub-type value of (1) (Bulk Binding Update Group), the following
   processing takes place:
   o  If the (B) flag in the received Proxy Binding Update message is
      set to a value of (1) and if the Mobile Node Group Identifier
      option is present in the request, the message serves as a request
      to the local mobility anchor to enable bulk binding update support
      for that mobility session.
   o  Upon successful processing and acceptance of the Proxy Binding
      Update, the local mobility anchor can choose to enable bulk
      binding update support for this mobility session.  The decision
      whether to enable bulk binding update support for that mobility
      session is a matter of local policy and is controlled by the
      configuration variable
      AcceptBulkBindingUpdateReqForMobilitySession.
   o  For enabling the bulk binding update support for the mobility
      session, the local mobility anchor MUST associate the mobility
      session to a specific bulk binding update group locally.  The
      specific details on how the local mobility anchor associates the
      given mobility session to a specific bulk binding update group is
      outside the scope of this document.  The local mobility anchor can
      choose to assign a default bulk binding update group identifier
      value of (ALL-SESSIONS), indicating that all the mobility sessions
      from that mobile access gateway are part of that group.  The local
      mobility anchor SHOULD update the bulk binding update group
      identifier values in the Binding Cache entry, LMA-Bulk-Binding-
      Update-Group-Id and MAG-Bulk-Binding-Update-Group-Id, to the
      respective values.
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
   o  If the bulk binding update support is enabled for the mobile
      node's mobility session, the local mobility anchor MUST send the
      assigned bulk binding update group identifier as part of the
      Mobile Node Group Identifier option, with the sub-type value of
      (1) (Bulk Binding Update Group) in the Proxy Binding
      Acknowledgement message that it sends to the mobile access
      gateway.  The (B) flag in the Proxy Binding Acknowledgement
      message MUST be set to value of (1).
   o  If the bulk binding update support is not enabled for the mobility
      session, the local mobility anchor MUST NOT include the Mobile
      Node Group Identifier option with the sub-type value of (1) (Bulk
      Binding Update Group), in the Proxy Binding Acknowledgement
      message that it sends to the mobile access gateway.  Furthermore,
      the (B) flag in the Proxy Binding Acknowledgement message MUST be
      set to value of (0).  It is to be noted that the Mobile Node Group
      Identifier option is a generic option and new sub-types may be
      defined by future specifications.
   o  If the received Proxy Binding Update message is not a bulk binding
      update request, (i.e., the (B) flag is set to a value of (0) and
      the Mobile Node Group Identifier option with the sub-type value of
      (1) (Bulk Binding Update Group) is not present), but is a request
      for extending the lifetime of an existing mobility session, for
      which the bulk binding update support is already enabled, then the
      local mobility anchor MUST process the request as specified in
      [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>].  However, the value of (0) in the (B) flag in the
      message serves as a request for the local mobility anchor to
      disable bulk binding update support for that mobility session.
      Upon accepting the request, the local mobility anchor SHOULD set
      the parameters, LMA-Bulk-Binding-Update-Group-Id and MAG-Bulk-
      Binding-Update-Group-Id in the Binding Cache entry to a value of
      (0) and the mobility session MUST be excluded from any bulk
      binding update operations.
   o  Any time the local mobility anchor detects that the mobile node
      has roamed and changed its point of attachment to a new mobile
      access gateway, it SHOULD also update the bulk binding update
      group identifier of the mobility session.  Additionally, it should
      also update the existing group identifiers associated with that
      session.  As part of sending the Proxy Binding Acknowledgement to
      the new mobile access gateway, it MUST include the updated group
      identifier in the Mobile Node Group Identifier option, with a sub-
      type value of (1).  However, if the if the received Proxy Binding
      Update from the new mobile access gateway did not have the (B)
      flag set to a value of (1), then it MUST NOT include the mobility
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
      session in any of bulk binding update group and MUST NOT include
      the Mobile Node Group Identifier option with the sub-type value of
      (1).
   o  Any time a mobile node's mobility session is de-registered by the
      mobile access gateway, or the session is revoked for
      administrative or any other reasons, the mobility session MUST
      also be removed from the bulk binding update group.
<span class="h4"><a class="selflink" id="section-5.2.3" href="#section-5.2.3">5.2.3</a>.  Supporting Bulk Binding Updates</span>
   The following section identifies the considerations for a local
   mobility anchor for performing bulk binding update and revocation
   operations with group-specific scope.
   o  Any time the local mobility anchor receives a Proxy Binding Update
      message with the (B) flag in the request set to a value of (0) and
      a Mobile Node Group Identifier option present in the request with
      sub-type value of (1) (Bulk Binding Update Group), the local
      mobility anchor MUST consider the request a bulk binding update
      request, with the request scope including all the mobility
      sessions that are part of that bulk binding update group, specific
      to that mobile access gateway, and identified by the group
      identifier in Mobile Node Group Identifier option.  However, if
      the received request also includes any individual session
      identifiers such as the Mobile Node Identifier option [<a href="./rfc4283" title=""Mobile Node Identifier Option for Mobile IPv6 (MIPv6)"">RFC4283</a>],
      the Home Network Prefix option [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>], the IPv4 Home Address
      Request option [<a href="./rfc5844" title=""IPv4 Support for Proxy Mobile IPv6"">RFC5844</a>], or the GRE Key option [<a href="./rfc5845" title=""Generic Routing Encapsulation (GRE) Key Option for Proxy Mobile IPv6"">RFC5845</a>], the
      local mobility anchor MUST consider this as an invalid message; it
      MUST reject the Proxy Binding Update message and send a Proxy
      Binding Acknowledgement message with the Status field set to
      INVALID_MOBILE_NODE_GROUP_IDENTIFIER (Invalid group identifier
      value in the request).
   o  The local mobility anchor MUST consider the message as a request
      for extending the lifetime of all the mobility sessions that are
      associated with the group identifier in the Mobile Node Group
      Identifier option.  However, if the Mobile Node Group Identifier
      option with the sub-type value of (1) (Bulk Binding Update Group)
      has an unknown group identifier, then the local mobility anchor
      MUST reject the Proxy Binding Update message and send a Proxy
      Binding Acknowledgement message with the Status field set to
      INVALID_MOBILE_NODE_GROUP_IDENTIFIER (Invalid group identifier
      value in the request).
   o  Upon accepting the bulk binding update request, the local mobility
      anchor SHOULD extend the lifetime for all the mobility sessions
      that are part of the bulk binding update group identified by the
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
      group identifier in the Mobile Node Group Identifier in the
      message.  Considerations from [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>] MUST be applied for
      extending the lifetime of a mobile node's session.  It MUST also
      send a Proxy Binding Acknowledgement message with the Status field
      value set to 0 (Proxy Binding Update accepted).  The lifetime
      field in the message MUST be set to the allocated lifetime for all
      the mobility sessions.  The message MUST also include the Mobile
      Node Group Identifier option, with the sub-type value of (1) (Bulk
      Binding Update Group) and with the identifier value copied from
      the Mobile Node Group Identifier option present in the received
      Proxy Binding Update message.
   o  If the local mobility anchor rejects the bulk binding update
      request for any administrative reason, then it MUST NOT update the
      lifetime in the Binding Cache entries of any of the mobile nodes
      identified by the group identifier.  The local mobility anchor
      SHOULD send a Proxy Binding Acknowledgement indicating the reason
      for the rejection in the status code.
   o  Any time the local mobility anchor receives a Binding Revocation
      Indication Message [<a href="./rfc5846" title=""Binding Revocation for IPv6 Mobility"">RFC5846</a>] with a Mobile Node Group Identifier
      option present in the request and with the sub-type value of (1)
      (Bulk Binding Update Group), the local mobility anchor MUST
      consider the request as a bulk revocation request, with the
      request scope including all the mobility sessions that are part of
      the bulk binding update group specific to that mobile access
      gateway and identified by the group identifier in Mobile Node
      Group Identifier option.  However, if the received request also
      includes the Mobile Node Identifier option [<a href="./rfc4283" title=""Mobile Node Identifier Option for Mobile IPv6 (MIPv6)"">RFC4283</a>], the Home
      Network Prefix option [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>], the IPv4 Home Address Request
      option [<a href="./rfc5844" title=""IPv4 Support for Proxy Mobile IPv6"">RFC5844</a>], or the GRE Key option [<a href="./rfc5845" title=""Generic Routing Encapsulation (GRE) Key Option for Proxy Mobile IPv6"">RFC5845</a>], the local
      mobility anchor MUST consider this as an invalid message; it MUST
      reject the Binding Revocation Indication message and send a BRA
      message with the Status field set to a value of 128 (Binding Does
      NOT Exist).  All the considerations from [<a href="./rfc5846" title=""Binding Revocation for IPv6 Mobility"">RFC5846</a>] apply when
      processing a binding revocation request, except making the scope
      of the operation apply to a set of mobility sessions identified by
      the group identifier present in the request.
   o  Upon accepting the Binding Revocation Indication request and
      completing the operation, the local mobility anchor MUST send a
      Binding Revocation Acknowledgement message with the Status field
      set to a value of 0 (success).  The message MUST include the
      Mobile Node Group Identifier option, with the identifier value
      copied from the Mobile Node Group Identifier option present in the
      received Binding Revocation Indication message.
<span class="grey">Abinader, 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="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>.  Protocol Configuration Variables</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>.  Local Mobility Anchor - Configuration Variables</span>
   This specification adds a new configuration variable for the local
   mobility anchor.  The configured value for this variable is expected
   to survive server reboots and service restarts.
   AcceptBulkBindingUpdateReqForMobilitySession
      This flag indicates whether or not the local mobility anchor will
      accept the request from the mobile access gateway to enable bulk
      binding update support for the mobility session.  The default
      value for this flag is set to (1), indicating that it will accept
      the request from the mobile access gateway.  If the value of the
      flag is set to (0), the local mobility anchor will deny the
      request.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>.  Mobile Access Gateway - Configuration Variables</span>
   This specification adds a new configuration variable for the mobile
   access gateway.  The configured value for this variable is expected
   to survive server reboots and service restarts.
   RequestBulkBindingUpdateSupportForMobilitySession
      This flag indicates whether or not the mobile access gateway will
      request the local mobility anchor to enable bulk binding update
      support for the mobility session.  The default value for this flag
      is set to (1), indicating that the mobile access gateway will set
      the bulk binding update flag (B) in the Proxy Binding Update
      request to a value of (1).  If the flag is set to a value of (0),
      the mobile access gateway will set the bulk binding update flag
      (B) in the Proxy Binding Update to a value of (0).
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>.  IANA Considerations</span>
   Per this document, IANA has done the following:
   o  Action-1: This specification defines a new flag (B) to the Proxy
      Binding Update message, specified in [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>].  This flag is
      described in <a href="#section-4.1">Section 4.1</a>.  The value of the flag (B) has been
      allocated from the "Binding Update Flags" registry.
   o  Action-2: This specification defines a new flag (B) to the Proxy
      Binding Acknowledgement message, specified in [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>].  This
      flag is described in <a href="#section-4.2">Section 4.2</a>.  The value of the flag (B) has
      been allocated from the "Binding Acknowledgement Flags" registry.
<span class="grey">Abinader, et al.             Standards Track                   [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
   o  Action-3: This specification defines a new Mobility Header option,
      the Mobile Node Group Identifier option.  This option is described
      in <a href="#section-4.3">Section 4.3</a>.  The Type value for this option has been assigned
      in the same number space as allocated for the other mobility
      options [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>].
   o  Action-4: The Sub-type field of the Mobile Node Group Identifier
      option introduces a new number space.  This number space is now
      managed by IANA, under the Registry, "Mobile Node Group Identifier
      Type Registry".  This specification reserves the sub-type value of
      (1) (Bulk Binding Update Group).  Approval of new sub-type values
      are to be made through IANA Expert Review.  The value range of
      this field is 0 through 255, but the values 0 and 255 are marked
      as reserved.  The remaining values 2-254 are available for
      allocation.
   o  Action-5: This document also defines a new status value
      INVALID_MOBILE_NODE_GROUP_IDENTIFIER (Invalid group identifier
      value in the request: 175) for use in the Proxy Binding
      Acknowledgement message, as described in <a href="#section-4.4">Section 4.4</a>.  This value
      has been assigned from the same number space as allocated for
      other status codes [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>].
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>.  Security Considerations</span>
   The Mobile Node Group Identifier option defined in this specification
   is for use in Proxy Binding Update and Proxy Binding Acknowledgement
   messages.  This option is carried like any other mobility header
   option, and it does not require any other special security
   considerations.
   The bulk binding update and the bulk revocation operations specified
   in this document perform operations on a group of mobility sessions.
   If proper authorization checks are not in place, a malicious node may
   be able to hijack a mobile node's mobility session or may carry out a
   denial-of-service attack.  To prevent this attack, this specification
   requires the local mobility anchor to allow only authorized mobile
   access gateways to perform bulk operations.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>.  Acknowledgements</span>
   The authors would like to specially thank Jouni Korhonen, Basavaraj
   Patil, Carlos Jesus Bernardos Cano, Dirk Von-Hugo, Pete Resnick, and
   Jari Arkko for reviewing this document and providing input.
<span class="grey">Abinader, et al.             Standards Track                   [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>.  References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>.  Normative References</span>
   [<a id="ref-RFC2119">RFC2119</a>]  Bradner, S., "Key words for use in RFCs to Indicate
              Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
   [<a id="ref-RFC5213">RFC5213</a>]  Gundavelli, S., Leung, K., Devarapalli, V., Chowdhury, K.,
              and B. Patil, "Proxy Mobile IPv6", <a href="./rfc5213">RFC 5213</a>, August 2008.
   [<a id="ref-RFC5844">RFC5844</a>]  Wakikawa, R. and S. Gundavelli, "IPv4 Support for Proxy
              Mobile IPv6", <a href="./rfc5844">RFC 5844</a>, May 2010.
   [<a id="ref-RFC5846">RFC5846</a>]  Muhanna, A., Khalil, M., Gundavelli, S., Chowdhury, K.,
              and P. Yegani, "Binding Revocation for IPv6 Mobility",
              <a href="./rfc5846">RFC 5846</a>, June 2010.
   [<a id="ref-RFC6275">RFC6275</a>]  Perkins, C., Johnson, D., and J. Arkko, "Mobility Support
              in IPv6", <a href="./rfc6275">RFC 6275</a>, July 2011.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>.  Informative References</span>
   [<a id="ref-RFC4283">RFC4283</a>]  Patel, A., Leung, K., Khalil, M., Akhtar, H., and K.
              Chowdhury, "Mobile Node Identifier Option for Mobile IPv6
              (MIPv6)", <a href="./rfc4283">RFC 4283</a>, November 2005.
   [<a id="ref-RFC5845">RFC5845</a>]  Muhanna, A., Khalil, M., Gundavelli, S., and K. Leung,
              "Generic Routing Encapsulation (GRE) Key Option for Proxy
              Mobile IPv6", <a href="./rfc5845">RFC 5845</a>, June 2010.
<span class="grey">Abinader, et al.             Standards Track                   [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc6602">RFC 6602</a>               Bulk Binding Update Support              May 2012</span>
Authors' Addresses
   Fuad Abinader (editor)
   Instituto Nokia de Tecnologia
   Av. Torquato Tapajos, 7200 - Km. 12 - Col Terra Nova
   Manaus, AM  69048-660
   Brazil
   EMail: fabinader@gmail.com
   Sri Gundavelli (editor)
   Cisco
   170 West Tasman Drive
   San Jose, CA  95134
   USA
   EMail: sgundave@cisco.com
   Kent Leung
   Cisco
   170 West Tasman Drive
   San Jose, CA  95134
   USA
   EMail: kleung@cisco.com
   Suresh Krishnan
   Ericsson
   8400 Decarie Blvd.
   Town of Mount Royal, QC
   Canada
   Phone: +1 514 345 7900 x42871
   EMail: suresh.krishnan@ericsson.com
   Domagoj Premec
   Unaffiliated
   EMail: domagoj.premec@gmail.com
Abinader, et al.             Standards Track                   [Page 23]
</pre>
 
     |