1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677
|
<pre>Internet Engineering Task Force (IETF) T. Schmidt, Ed.
Request for Comments: 7411 HAW Hamburg
Updates: <a href="./rfc5568">5568</a> M. Waehlisch
Category: Experimental link-lab & FU Berlin
ISSN: 2070-1721 R. Koodli
Intel
G. Fairhurst
University of Aberdeen
D. Liu
China Mobile
November 2014
<span class="h1">Multicast Listener Extensions for Mobile IPv6 (MIPv6) and</span>
<span class="h1">Proxy Mobile IPv6 (PMIPv6) Fast Handovers</span>
Abstract
Fast handover protocols for Mobile IPv6 (MIPv6) and Proxy Mobile IPv6
(PMIPv6) define mobility management procedures that support unicast
communication at reduced handover latency. Fast handover base
operations do not affect multicast communication and, hence, do not
accelerate handover management for native multicast listeners. Many
multicast applications like IPTV or conferencing, though, comprise
delay-sensitive, real-time traffic and will benefit from fast
handover completion. This document specifies extension of the Mobile
IPv6 Fast Handovers (FMIPv6) and the Fast Handovers for Proxy Mobile
IPv6 (PFMIPv6) protocols to include multicast traffic management in
fast handover operations. This multicast support is provided first
at the control plane by management of rapid context transfer between
access routers and second at the data plane by optional fast traffic
forwarding that may include buffering. An FMIPv6 access router
indicates support for multicast using an updated Proxy Router
Advertisements message format.
This document updates <a href="./rfc5568">RFC 5568</a>, "Mobile IPv6 Fast Handovers".
<span class="grey">Schmidt, et al. Experimental [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
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/rfc7411">http://www.rfc-editor.org/info/rfc7411</a>.
Copyright Notice
Copyright (c) 2014 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Schmidt, et al. Experimental [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-1.1">1.1</a>. Use Cases and Deployment Scenarios .........................<a href="#page-5">5</a>
<a href="#section-2">2</a>. Terminology .....................................................<a href="#page-6">6</a>
<a href="#section-3">3</a>. Protocol Overview ...............................................<a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. Multicast Context Transfer between Access Routers ..........<a href="#page-7">7</a>
<a href="#section-3.2">3.2</a>. Protocol Operations Specific to FMIPv6 .....................<a href="#page-9">9</a>
<a href="#section-3.3">3.3</a>. Protocol Operations Specific to PFMIPv6 ...................<a href="#page-12">12</a>
<a href="#section-4">4</a>. Protocol Details ...............................................<a href="#page-15">15</a>
<a href="#section-4.1">4.1</a>. Protocol Operations Specific to FMIPv6 ....................<a href="#page-15">15</a>
<a href="#section-4.1.1">4.1.1</a>. Operations of the Mobile Node ......................<a href="#page-15">15</a>
<a href="#section-4.1.2">4.1.2</a>. Operations of the Previous Access Router ...........<a href="#page-15">15</a>
<a href="#section-4.1.3">4.1.3</a>. Operations of the New Access Router ................<a href="#page-16">16</a>
<a href="#section-4.1.4">4.1.4</a>. Buffering Considerations ...........................<a href="#page-17">17</a>
<a href="#section-4.2">4.2</a>. Protocol Operations Specific to PFMIPv6 ...................<a href="#page-17">17</a>
<a href="#section-4.2.1">4.2.1</a>. Operations of the Mobile Node ......................<a href="#page-17">17</a>
<a href="#section-4.2.2">4.2.2</a>. Operations of the Previous MAG .....................<a href="#page-17">17</a>
<a href="#section-4.2.3">4.2.3</a>. Operations of the New MAG ..........................<a href="#page-19">19</a>
<a href="#section-4.2.4">4.2.4</a>. IPv4 Support Considerations ........................<a href="#page-20">20</a>
<a href="#section-5">5</a>. Message Formats ................................................<a href="#page-20">20</a>
5.1. Multicast Indicator for Proxy Router Advertisement
(PrRtAdv) .................................................<a href="#page-20">20</a>
<a href="#section-5.2">5.2</a>. Extensions to Existing Mobility Header Messages ...........<a href="#page-21">21</a>
<a href="#section-5.3">5.3</a>. New Multicast Mobility Option .............................<a href="#page-21">21</a>
<a href="#section-5.4">5.4</a>. New Multicast Acknowledgement Option ......................<a href="#page-24">24</a>
<a href="#section-5.5">5.5</a>. Length Considerations: Number of Records and Addresses ....<a href="#page-25">25</a>
<a href="#section-5.6">5.6</a>. MLD and IGMP Compatibility Requirements ...................<a href="#page-25">25</a>
<a href="#section-6">6</a>. Security Considerations ........................................<a href="#page-26">26</a>
<a href="#section-7">7</a>. IANA Considerations ............................................<a href="#page-26">26</a>
<a href="#section-8">8</a>. References .....................................................<a href="#page-26">26</a>
<a href="#section-8.1">8.1</a>. Normative References ......................................<a href="#page-26">26</a>
<a href="#section-8.2">8.2</a>. Informative References ....................................<a href="#page-27">27</a>
<a href="#appendix-A">Appendix A</a>. Considerations for Mobile Multicast Sources ..........<a href="#page-29">29</a>
Acknowledgments ...................................................<a href="#page-29">29</a>
Authors' Addresses ................................................<a href="#page-30">30</a>
<span class="grey">Schmidt, et al. Experimental [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Mobile IPv6 [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>] defines a network-layer mobility protocol
involving participation by Mobile Nodes, while Proxy Mobile IPv6
[<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>] provides a mechanism without requiring mobility protocol
operations at a Mobile Node (MN). Both protocols introduce traffic
disruptions on handovers that may be intolerable in many real-time
application scenarios such as gaming or conferencing. Mobile IPv6
Fast Handovers (FMIPv6) [<a href="./rfc5568" title=""Mobile IPv6 Fast Handovers"">RFC5568</a>] and Fast Handovers for Proxy Mobile
IPv6 (PFMIPv6) [<a href="./rfc5949" title=""Fast Handovers for Proxy Mobile IPv6"">RFC5949</a>] improve the performance of handovers for
unicast communication. Delays are reduced to the order of the
maximum of the link switching delay and the signaling delay between
Access Routers (ARs) or Mobile Access Gateways (MAGs)
[<a href="#ref-FMIPv6-Analysis">FMIPv6-Analysis</a>].
No dedicated treatment of seamless IP multicast [<a href="./rfc1112" title=""Host extensions for IP multicasting"">RFC1112</a>] data
service has been proposed by any of the above protocols. MIPv6 only
roughly defines multicast for Mobile Nodes using a remote
subscription approach or a home subscription through bidirectional
tunneling via the Home Agent (HA). Multicast forwarding services
have not been specified in [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>] but are subject to separate
specifications: [<a href="./rfc6224" title=""Base Deployment for Multicast Listener Support in Proxy Mobile IPv6 (PMIPv6) Domains"">RFC6224</a>] and [<a href="./rfc7287" title=""Mobile Multicast Sender Support in Proxy Mobile IPv6 (PMIPv6) Domains"">RFC7287</a>]. It is assumed throughout
this document that mechanisms and protocol operations are in place to
transport multicast traffic to ARs. These operations are referred to
as 'JOIN/LEAVE' of an AR, while the explicit techniques to manage
multicast transmission are beyond the scope of this document.
Mobile multicast protocols need to support applications such as IPTV
with high-volume content streams and allow distribution to
potentially large numbers of receivers. They should thus preserve
the multicast nature of packet distribution and approximate optimal
routing [<a href="./rfc5757" title=""Multicast Mobility in Mobile IP Version 6 (MIPv6): Problem Statement and Brief Survey"">RFC5757</a>]. It is undesirable to rely on home tunneling for
optimizing multicast. Unencapsulated, native multicast transmission
requires establishing forwarding state, which will not be transferred
between access routers by the unicast fast handover protocols. Thus,
multicast traffic will not experience expedited handover performance,
but an MN -- or its corresponding MAG in PMIPv6 -- can perform remote
subscriptions in each visited network.
This document specifies extensions to FMIPv6 and PFMIPv6 that include
multicast traffic management for fast handover operations in the
presence of any-source or source-specific multicast. The protocol
extensions were designed under the requirements that
o multicast context transfer shall be transparently included in
unicast fast handover operations;
<span class="grey">Schmidt, et al. Experimental [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
o neither unicast mobility protocols nor multicast routing shall be
modified or otherwise affected; and
o no active participation of MNs in PMIPv6 domains is defined.
The solution common to both underlying unicast protocols defines the
per-group or per-channel transfer of multicast contexts between ARs
or MAGs. The protocol defines corresponding message extensions
necessary for carrying (*,G) or (S,G) context information independent
of the particular handover protocol. ARs or MAGs are then enabled to
treat multicast traffic according to fast unicast handovers and with
similar performance. No protocol changes are introduced that prevent
a multicast-unaware node from performing fast handovers with
multicast-aware ARs or MAGs.
The specified mechanisms apply when a Mobile Node has joined and
maintains one or several multicast group subscriptions prior to
undergoing a fast handover. It does not introduce any requirements
on the multicast routing protocols in use, nor are the ARs or MAGs
assumed to be multicast routers. It assumes network conditions,
though, that allow native multicast reception in both the previous
and new access network. Methods to bridge regions without native
multicast connectivity are beyond the scope of this document.
<a href="#section-5.1">Section 5.1</a> of this memo updates the Proxy Router Advertisements
(PrRtAdv) message format defined in <a href="./rfc5568#section-6.1.2">Section 6.1.2 of [RFC5568]</a> to
allow an FMIPv6 AR to indicate support for multicast.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Use Cases and Deployment Scenarios</span>
Multicast extensions for fast handovers enable multicast services in
domains that operate either of the unicast fast handover protocols:
[<a href="./rfc5568" title=""Mobile IPv6 Fast Handovers"">RFC5568</a>] or [<a href="./rfc5949" title=""Fast Handovers for Proxy Mobile IPv6"">RFC5949</a>]. Typically, fast handover protocols are
activated within an operator network or within a dedicated service
installation.
Multicast group communication has a variety of dominant use cases.
One traditional application area is infotainment with voluminous
multimedia streams delivered to a large number of receivers (e.g.,
IPTV). Other time-critical services, such as news items or stock-
exchange prices, are commonly transmitted via multicast to support
fair and fast updates. Both of these use cases may be mobile, and
both largely benefit from fast handover operations. Mobile operators
may therefore enhance their operational quality or offer premium
services by enabling fast handovers.
<span class="grey">Schmidt, et al. Experimental [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
Another traditional application area for multicast is conversational
group communication in scenarios like conferencing or gaming as well
as in dedicated collaborative environments or teams. Machine-to-
machine communication in the emerging Internet of Things is expected
to generate various additional mobile use cases (e.g., among cars).
High demands on transmission quality and rapidly moving parties may
require fast handovers.
Most of the deployment scenarios above are bound to a fixed
infrastructure with consumer equipment at the edge. Today, they are
thus likely to follow an operator-centric approach like PFMIPv6.
However, Internet technologies evolve for adoption in
infrastructureless scenarios, for example, disaster recovery, rescue,
crisis prevention, and civil safety. Mobile end-to-end communication
in groups is needed in Public Protection and Disaster Relief (PPDR)
scenarios, where mobile multicast communication needs to be supported
between members of rescue teams, police officers, fire brigade teams,
paramedic teams, and command control offices in order to support the
protection and health of citizens. These use cases require fast and
reliable mobile services that cannot rely on operator infrastructure.
They are thus expected to benefit from running multicast with FMIPv6.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</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>].
This document uses the terminology for mobility entities in
[<a href="./rfc5568" title=""Mobile IPv6 Fast Handovers"">RFC5568</a>], [<a href="./rfc5949" title=""Fast Handovers for Proxy Mobile IPv6"">RFC5949</a>], [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>], and [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>].
A multicast group is any group (*,G) or (S,G) multicast channel
listed in a Multicast Listener Report Message.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Protocol Overview</span>
This section provides an informative overview of the protocol
mechanisms without normative specifications.
The reference scenario for multicast fast handover is illustrated in
Figure 1. A Mobile Node is initially attached to the previous access
network (P-AN) via the Previous Access Router (PAR) or Previous
Mobile Access Gateway (PMAG) and moves to the new access network
(N-AN) connected via a New AR (NAR) or New MAG (NMAG).
<span class="grey">Schmidt, et al. Experimental [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
*** *** *** ***
* ** ** ** *
* *
* Multicast Cloud *
* *
* ** ** ** *
*** *** *** ***
/ \
/ \
/ \
+........../..+ +..\..........+
. +-------+-+ .______. +-+-------+ .
. | PAR |()_______)| NAR | .
. | (PMAG) | . . | (NMAG) | .
. +----+----+ . . +----+----+ .
. | . . | .
. ___|___ . . ___|___ .
. / \ . . / \ .
. ( P-AN ) . . ( N-AN ) .
. \_______/ . . \_______/ .
. | . . | .
. +----+ . . +----+ .
. | MN | ----------> | MN | .
. +----+ . . +----+ .
+.............+ +.............+
Figure 1: Reference Network for Fast Handover
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Multicast Context Transfer between Access Routers</span>
In a fast handover scenario (see Figure 1), ARs/MAGs establish a
mutual binding and provide the capability to exchange context
information concerning the MN. This context transfer will be
triggered by detecting the forthcoming movement of an MN to a new AR
and assists the MN to immediately resume communication on the new
subnet using its previous IP address. In contrast to unicast,
multicast flow reception does not primarily depend on address and
binding cache management but requires distribution trees to adapt so
that traffic follows the movement of the MN. This process may be
significantly slower than fast handover management [<a href="./rfc5757" title=""Multicast Mobility in Mobile IP Version 6 (MIPv6): Problem Statement and Brief Survey"">RFC5757</a>]. To
accelerate the handover, a multicast listener may offer a twofold
advantage of including the multicast groups under subscription in the
context transfer. First, the NAR can proactively join the subscribed
groups as soon as it gains knowledge of them. Second, multicast
flows can be included in traffic forwarding via the tunnel that is
established from the PAR to the NAR by the unicast fast handover
protocol.
<span class="grey">Schmidt, et al. Experimental [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
There are two modes of operation in FMIPv6 and in PFMIPv6. The
predictive mode allows for AR-binding and context transfer prior to
an MN handover, while in the reactive mode, these steps are executed
after detection that the MN has reattached to a NAR (NMAG). Details
of the signaling schemes differ between FMIPv6 and PFMIPv6 and are
outlined in Sections <a href="#section-3.2">3.2</a> and <a href="#section-3.3">3.3</a>.
In a predictive fast handover, the access router (i.e., PAR (PMAG) in
Figure 1) learns about the impending movement of the MN and
simultaneously about the multicast group context as specified in
Sections <a href="#section-3.2">3.2</a> and <a href="#section-3.3">3.3</a>. Thereafter, the PAR will initiate an AR-
binding and context transfer by transmitting a Handover Initiation
(HI) message to the NAR (NMAG). The HI message is extended by
multicast group states carried in mobility header options, as defined
in <a href="#section-5.3">Section 5.3</a>. On reception of the HI message, the NAR returns a
multicast acknowledgement in its Handover Acknowledgement (HAck)
answer that indicates its ability to support each requested group
(see <a href="#section-5.4">Section 5.4</a>). The NAR (NMAG) expresses its willingness to
receive multicast traffic forwarded by the PAR using standard
Multicast Listener Discovery (MLD) signaling for IPv6 or the Internet
Group Management Protocol (IGMP) for an IPv4 compatibility case.
Nodes normally create forwarding state for each group requested.
There are several reasons why a node may decide not to forward a
specific group, e.g., the NAR could already have a native
subscription for the group(s) or capacity constraints can hinder
decapsulation of additional streams. At the previous network, there
may be policy or capacity constraints that make it undesirable to
forward the multicast traffic. The PAR can add the tunnel interface
obtained from the underlying unicast protocol to its multicast
forwarding database for those groups the MN wishes to receive, so
that multicast flows can be forwarded in parallel to the unicast
traffic.
The NAR implements an MLD proxy [<a href="./rfc4605" title=""Internet Group Management Protocol (IGMP) / Multicast Listener Discovery (MLD)-Based Multicast Forwarding ("">RFC4605</a>] providing host-side
behavior towards the upstream PAR. The proxy will submit an MLD
report to the upstream tunnel interface to signal the set of groups
to be forwarded. It will terminate multicast forwarding from the
tunnel when the group is natively received. In parallel, the NAR
joins all groups that are not already under subscription using its
native multicast upstream interface. While the MN has not arrived at
a downstream interface of the NAR, multicast subscriptions on behalf
of the MN are associated with a downstream loopback interface.
Reception of the Join at the NAR enables downstream native multicast
forwarding of the subscribed group(s).
<span class="grey">Schmidt, et al. Experimental [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
In a reactive fast handover, the PAR will learn about the movement of
the MN after the latter has re-associated with the new access
network. Also, from the new link, it will be informed about the
multicast context of the MN. As group membership information is
present at the new access network prior to context transfer, MLD join
signaling can proceed in parallel to HI/HAck exchange. Following the
context transfer, multicast data can be forwarded to the new access
network using the PAR-NAR tunnel of the fast handover protocol.
Depending on the specific network topology, multicast traffic for
some groups may natively arrive before it is forwarded from the PAR.
In both modes of operation, it is the responsibility of the PAR
(PMAG) to properly apply multicast state management when an MN leaves
(i.e., to determine whether it can prune the traffic for any
unsubscribed group). Depending on the link type and MLD parameter
settings, methods for observing the departure of an MN need to be
applied (see [<a href="./rfc5757" title=""Multicast Mobility in Mobile IP Version 6 (MIPv6): Problem Statement and Brief Survey"">RFC5757</a>]). While considering subscriptions of the
remaining nodes and from the tunnel interfaces, the PAR uses normal
multicast forwarding rules to determine whether multicast traffic can
be pruned.
This method allows an MN to participate in multicast group
communication with a handover performance that is comparable to
unicast handover. It is worth noting that tunnel management between
access routers in all modes is inherited from the corresponding
unicast fast handover protocols. Tunnels thus remain active until
unicast handover operations have been completed for the MN.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Protocol Operations Specific to FMIPv6</span>
ARs that provide multicast support in FMIPv6 will advertise this
general service by setting an indicator bit ('M' bit) in its PrRtAdv
message, as defined in <a href="#section-5.1">Section 5.1</a>. Additional details about the
multicast service support, e.g., flavors and groups, will be
exchanged within HI/HAck dialogs later at handover.
An MN operating FMIPv6 will actively initiate the handover management
by submitting a Fast Binding Update (FBU). The MN, which is aware of
the multicast groups it wishes to maintain, will attach mobility
options containing its group states (see <a href="#section-5.3">Section 5.3</a>) to the FBU and
thereby inform ARs about its multicast context. ARs will use these
multicast context options for inter-AR context transfer.
In predictive mode, the FBU is issued on the previous link and
received by the PAR as displayed in Figure 2. The PAR will extract
the multicast context options and append them to its HI message.
From the HAck message, the PAR will redistribute the multicast
acknowledgement by adding the corresponding mobility options to its
<span class="grey">Schmidt, et al. Experimental [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
Fast Binding ACK (FBack) message. From receiving the FBack message,
the MN will learn about the multicast support for each group in the
new access network. If some groups or multicast service models are
not supported, it can decide to take actions to overcome a missing
service (e.g., by tunneling). Note that the proactive multicast
context transfer may proceed successfully, even if the MN misses the
FBack message on the previous link.
MN PAR NAR
| | |
|------RtSolPr------->| |
|<-----PrRtAdv--------| |
| | |
| | |
|---------FBU-------->|----------HI--------->|
| (Multicast MobOpt) | (Multicast MobOpt) |
| | |
| |<--------HAck---------|
| | (Multicast AckOpt) |
| | Join to
| | Multicast
| | Groups
| | |
| <-----FBack---|--FBack------> |
| (Multicast AckOpt) | (Multicast AckOpt) |
| | |
disconnect optional |
| packet ================>|
| forwarding |
| | |
connect | |
| | |
|------------UNA --------------------------->|
|<=================================== deliver packets
| |
Figure 2: Predictive Multicast Handover for FMIPv6
The flow diagram for reactive mode is depicted in Figure 3. After
attaching to the new access link and performing an Unsolicited
Neighbor Advertisement (UNA), the MN issues an FBU that the NAR
forwards to the PAR without processing. At this time, the MN is able
to rejoin all subscribed multicast groups without relying on AR
assistance. Nevertheless, multicast context options are exchanged in
the HI/HAck dialog to facilitate intermediate forwarding of the
requested multicast flows. The multicast traffic could arrive from
an MN subscription at the same time that the NAR receives the HI
message. Such multicast flows may be transparently excluded from
<span class="grey">Schmidt, et al. Experimental [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
forwarding by setting an appropriate Multicast Acknowledgement
Option. In either case, to avoid duplication, the NAR MUST ensure
that not more than one flow of the same group is forwarded to the MN.
MN PAR NAR
| | |
|------RtSolPr------->| |
|<-----PrRtAdv--------| |
| | |
disconnect | |
| | |
| | |
connect | |
|-------UNA-----------|--------------------->|
|-------FBU-----------|---------------------)|
| (Multicast MobOpt) |<-------FBU----------)|
| | |
Join to | |
Multicast | |
Groups | |
| |----------HI--------->|
| | (Multicast MobOpt) |
| |<-------HAck----------|
| | (Multicast AckOpt) |
| | |
| |(HI/HAck if necessary)|
| | |
| FBack, optional |
| packet forwarding ==========>|
| | |
|<=================================== deliver packets
| |
Figure 3: Reactive Multicast Handover for FMIPv6
<span class="grey">Schmidt, et al. Experimental [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Protocol Operations Specific to PFMIPv6</span>
In a proxy mobile IPv6 environment, the MN remains agnostic of
network layer changes, and fast handover procedures are operated by
the access routers or MAGs to which MNs are connected via node-
specific point-to-point links. The handover initiation, or the re-
association, is managed by the access networks. Consequently, access
routers need to be aware of multicast membership state at the Mobile
Node. There are two ways to obtain the multicast membership of an
MN.
o MAGs may perform explicit tracking (see [<a href="./rfc4605" title=""Internet Group Management Protocol (IGMP) / Multicast Listener Discovery (MLD)-Based Multicast Forwarding ("">RFC4605</a>] and [<a href="./rfc6224" title=""Base Deployment for Multicast Listener Support in Proxy Mobile IPv6 (PMIPv6) Domains"">RFC6224</a>])
or extract membership status from forwarding states at node-
specific links.
o routers can issue a general MLD query at handovers. Both methods
are equally applicable. However, a router that does not provide
explicit membership tracking needs to query its downstream links
after a handover. The MLD membership information then allows the
PMAG to learn the multicast group subscriptions of the MN.
In predictive mode, the PMAG will learn about the upcoming movement
of the Mobile Node, including its new Access Point Identifier (New AP
ID). Without explicit tracking, it will immediately submit a general
MLD query and receive MLD reports indicating the multicast address
listening state of the subscribed group(s). As displayed in
Figure 4, it will initiate binding and context transfer with the NMAG
by issuing a HI message that is augmented by multicast contexts in
the mobility options defined in <a href="#section-5.3">Section 5.3</a>. NMAG will extract
multicast context information and act as described in <a href="#section-3.1">Section 3.1</a>.
<span class="grey">Schmidt, et al. Experimental [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
PMAG NMAG
MN P-AN N-AN (PAR) (NAR)
| | | | |
| Report | | | |
|---(MN ID,-->| | | |
| New AP ID) | | | |
| | HO Indication | |
| |--(MN ID, New AP ID)-->| |
| | | | |
| | | Optional: |
| | | MLD Query |
| | | | |
| | | |------HI---->|
| | | |(Multicast MobOpt)
| | | | |
| | | |<---HAck-----|
| | | |(Multicast AckOpt)
| | | | |
| | | | Join to
| | | | Multicast
| | | | Groups
| | | | |
| | | |HI/HAck(optional)
| | | |<- - - - - ->|
| | | | |
| | | optional packet |
| | | forwarding =======>|
disconnect | | | |
| | | | |
connect | | | |
| MN-AN connection | AN-MAG connection |
|<----establishment----->|<----establishment------->|
| | | (substitute for UNA) |
| | | | |
|<========================================== deliver packets
| | | | |
Figure 4: Predictive Multicast Handover for PFMIPv6
In reactive mode, the NMAG will learn the attachment of the MN to the
N-AN and establish connectivity using the PMIPv6 protocol operations.
However, it will have no knowledge about multicast state at the MN.
Triggered by an MN attachment, the NMAG will send a general MLD query
and thereafter join the groups for which it receives multicast
listener report messages. In the case of a reactive handover, the
binding is initiated by the NMAG, and the HI/HAck message semantic is
inverted (see [<a href="./rfc5949" title=""Fast Handovers for Proxy Mobile IPv6"">RFC5949</a>]). For multicast context transfer, the NMAG
attaches to its HI message those group identifiers it requests to be
<span class="grey">Schmidt, et al. Experimental [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
forwarded from PMAG. Using the identical syntax in its Multicast
Mobility Option headers, as defined in <a href="#section-5.4">Section 5.4</a>, the PMAG
acknowledges the set of requested groups in a HAck answer, indicating
the group(s) it is willing to forward. The corresponding call flow
is displayed in Figure 5.
PMAG NMAG
MN P-AN N-AN (PAR) (NAR)
| | | | |
disconnect | | | |
| | | | |
connect | | | |
| | | | |
| MN-AN connection | AN-MAG connection |
|<---establishment---->|<----establishment------->|
| | |(substitute for UNA & FBU)|
| | | | |
| | | | MLD Query
| | | | |
| | | | Join to
| | | | Multicast
| | | | Groups
| | | |
| | | |<------HI----|
| | | |(Multicast MobOpt)
| | | | |
| | | |---HAck----->|
| | | |(Multicast AckOpt)
| | | | |
| | | | |
| | | |HI/HAck(optional)
| | | |<- - - - - ->|
| | | | |
| | | optional packet |
| | | forwarding =======>|
| | | | |
|<======================================== deliver packets
| | | | |
Figure 5: Reactive Multicast Handover for PFMIPv6
<span class="grey">Schmidt, et al. Experimental [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Protocol Details</span>
This section provides a normative definition of the protocol
operations.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Protocol Operations Specific to FMIPv6</span>
<span class="h4"><a class="selflink" id="section-4.1.1" href="#section-4.1.1">4.1.1</a>. Operations of the Mobile Node</span>
A Mobile Node willing to manage multicast traffic by fast handover
operations MUST transfer its MLD listener state records within fast
handover negotiations.
When sensing a handover in predictive mode, an MN MUST build a
Multicast Mobility Option, as described in <a href="#section-5.3">Section 5.3</a>, that contains
the MLD or IGMP multicast listener state and append it to the Fast
Binding Update (FBU) prior to signaling with PAR.
The MN will receive the Multicast Acknowledgement Option(s) as a part
of the Fast Binding Acknowledge (FBack) (see <a href="#section-5.4">Section 5.4</a>) and learn
about unsupported or prohibited groups at the NAR. The MN MAY take
appropriate actions such as home tunneling to enable reception of
groups that are not available via the NAR. Beyond standard FMIPv6
signaling, no multicast-specific operation is required by the MN when
reattaching in the new network.
In reactive mode, the MN MUST append the identical Multicast Mobility
Option to the FBU sent after its reconnect. In response, it will
learn about the Multicast Acknowledgement Option(s) from the FBack
and expect corresponding multicast data. Concurrently, it joins all
subscribed multicast groups directly on its newly established access
link.
<span class="h4"><a class="selflink" id="section-4.1.2" href="#section-4.1.2">4.1.2</a>. Operations of the Previous Access Router</span>
A PAR that supports multicast advertises that support by setting the
'M' bit in the Proxy Router Advertisement (PrRtAdv) message, as
specified in <a href="#section-5.1">Section 5.1</a> of this document. This indicator
exclusively informs the MNs about the capability of the PAR to
process and exchange Multicast Mobility Options during fast handover
operations.
In predictive mode, a PAR will receive the multicast listener state
of an MN prior to handover from the Multicast Mobility Option
appended to the FBU. It forwards these records to the NAR within HI
messages and will expect Multicast Acknowledgement Option(s) in a
HAck, which is itself returned to the MN as an appendix to the FBack.
In performing the multicast context exchange, the PAR is instructed
<span class="grey">Schmidt, et al. Experimental [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
to include the PAR-to-NAR tunnel obtained from unicast handover
management in its multicast downstream interfaces and awaits
reception of multicast listener report messages from the NAR. In
response to receiving multicast subscriptions, the PAR SHOULD forward
group data acting as a regular multicast router or proxy. However,
the PAR MAY refuse to forward some or all of the multicast flows
(e.g., due to administrative configurations or load conditions).
In reactive mode, the PAR will receive the FBU augmented by the
Multicast Mobility Option from the new network but continues with an
identical multicast record exchange in the HI/HAck dialog. As in the
predictive case, it configures the PAR-to-NAR tunnel for the
multicast downstream. It then (if capable) forwards data according
to the group membership indicated in the multicast listener report
messages received from NAR.
In both modes, the PAR MUST interpret the first of the two events --
the departure of the MN or the reception of the Multicast
Acknowledgement Option(s) -- as if the MN had sent a multicast LEAVE
message and react according to the signaling scheme deployed in the
access network (i.e., MLD querying, explicit tracking).
<span class="h4"><a class="selflink" id="section-4.1.3" href="#section-4.1.3">4.1.3</a>. Operations of the New Access Router</span>
A NAR that supports multicast advertises that support by setting the
'M' bit in PrRtAdv as specified in <a href="#section-5.1">Section 5.1</a> of this document.
This indicator exclusively serves the purpose of informing MNs about
the capability of the NAR to process and exchange Multicast Mobility
Options during fast handover operations.
In predictive mode, a NAR will receive the multicast listener state
of an expected MN from the Multicast Mobility Option appended to the
HI message. It will extract the multicast group membership records
from the message and match the request subscription with its
multicast service offer. Further on, it will join the requested
groups using a downstream loopback interface. This will lead to
suitable regular subscriptions to a native multicast upstream
interface without additional forwarding. Concurrently, the NAR
builds a Multicast Acknowledgement Option(s) (see <a href="#section-5.4">Section 5.4</a>)
listing the set of groups that are unsupported on the new access link
and returns this list within a HAck. As soon as there is an
operational bidirectional tunnel from the PAR to NAR, the NAR joins
the groups requested by the MN, which are then forwarded by the PAR
using the tunnel link.
In reactive mode, the NAR will learn about the multicast listener
state of a new MN from the Multicast Mobility Option appended to each
HI message after the MN has already performed local subscriptions of
<span class="grey">Schmidt, et al. Experimental [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
the multicast service. Thus, the NAR solely determines the
intersection of requested and supported groups and issues a join
request for each group forwarding this on the PAR-NAR tunnel
interface.
In both modes, the NAR MUST send a LEAVE message to the tunnel when
it is no longer needed to forward a group, e.g., after arrival of
native multicast traffic or termination of a group membership from
the MN. Although the message can be delayed, immediately sending the
LEAVE message eliminates the need for the PAR and NAR to process
traffic that is not to be forwarded.
<span class="h4"><a class="selflink" id="section-4.1.4" href="#section-4.1.4">4.1.4</a>. Buffering Considerations</span>
Multicast packets may be lost during handover. For example, in
predictive mode, as illustrated by Figure 2, packets may be lost
while the MN is -- already or still -- detached from the networks,
even though they are forwarded to the NAR. In reactive mode as
illustrated by Figure 3, the situation may be worse, since there will
be a delay before joining the multicast group after the MN reattaches
to the NAR. Multicast packets cannot be delivered during this time.
Buffering the multicast packets at the PAR can reduce multicast
packet loss but may then increase resource consumption and delay in
packet transmission. Implementors should balance the different
requirements in the context of predominant application demands (e.g.,
real-time requirements or loss sensitivity).
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Protocol Operations Specific to PFMIPv6</span>
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>. Operations of the Mobile Node</span>
A Mobile Node willing to participate in multicast traffic will join,
maintain, and leave groups as if located in the fixed Internet. It
will cooperate in handover indication as specified in [<a href="./rfc5949" title=""Fast Handovers for Proxy Mobile IPv6"">RFC5949</a>] and
required by its access link-layer technology. No multicast-specific
mobility actions nor implementations are required at the MN in a
PMIPv6 domain.
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>. Operations of the Previous MAG</span>
A MAG receiving a handover indication for one of its MNs follows the
same predictive fast handover mode as a PMAG. It MUST issue an MLD
General Query immediately on its corresponding link unless it
performs explicit membership tracking on that link. After knowledge
of the multicast subscriptions of the MN is acquired, the PMAG builds
a Multicast Mobility Option, as described in <a href="#section-5.3">Section 5.3</a>, that
contains the MLD and IGMP multicast listener state. If not empty,
this Mobility Option is appended to the regular fast handover HI
<span class="grey">Schmidt, et al. Experimental [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
messages. In the case when a unicast HI message is submitted prior
to multicast state detection, the multicast listener state is sent in
an additional HI message to the NMAG.
The PMAG then waits until it receives the Multicast Acknowledgement
Option(s) with a HAck message (see <a href="#section-5.4">Section 5.4</a>) and the bidirectional
tunnel with the NMAG is created. After the HAck message is received,
the PMAG adds the tunnel to its downstream interfaces in the
multicast forwarding database. For those groups reported in the
Multicast Acknowledgement Option(s), i.e., not supported in the new
access network, the PMAG normally takes appropriate actions (e.g.,
forwarding and termination) according to the network policy. It
SHOULD start forwarding multicast traffic down the tunnel interface
for the groups indicated in the multicast listener reports received
from NMAG. However, it MAY deny forwarding some or all groups
included in the multicast listener reports (e.g., due to
administrative configurations or load conditions).
After the departure of the MN and on the reception of a LEAVE
message, it is RECOMMENDED that the PMAG terminates forwarding of the
specified groups and updates its multicast forwarding database. It
correspondingly sends a LEAVE message to its upstream link for any
group where there are no longer any active listeners on any
downstream link.
A MAG receiving a HI message with the Multicast Mobility Option for a
currently attached node follows the reactive fast handover mode as a
PMAG. It will return a Multicast Acknowledgement Option(s) (see
<a href="#section-5.4">Section 5.4</a>) within a HAck message listing the groups for which it
does not provide forwarding support to the NMAG. It will add the
bidirectional tunnel with NMAG to its downstream interfaces and will
start forwarding multicast traffic for the groups listed in the
multicast listener report messages from the NMAG. On reception of a
LEAVE message for a group, the PMAG terminates forwarding for the
specific group and updates its multicast forwarding database.
According to its multicast forwarding state, it sends a LEAVE message
to its upstream link for any group where there are no longer any
active listeners on any downstream link.
In both modes, the PMAG will interpret the departure of the MN as a
multicast LEAVE message of the MN and react according to the
signaling scheme deployed in the access network (i.e., MLD querying
and explicit tracking).
<span class="grey">Schmidt, et al. Experimental [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
<span class="h4"><a class="selflink" id="section-4.2.3" href="#section-4.2.3">4.2.3</a>. Operations of the New MAG</span>
A MAG receiving a HI message with a Multicast Mobility Option for a
currently unattached node follows the same predictive fast handover
mode as an NMAG. It will decide the multicast groups to be forwarded
from the PMAG and build a Multicast Acknowledgement Option (see
<a href="#section-5.4">Section 5.4</a>) that enumerates only unwanted groups. This Mobility
Option is appended to the regular fast handover HAck messages or, in
the case of a unicast HAck message being submitted prior to multicast
state acknowledgement, sent in an additional HAck message to the
PMAG. Immediately thereafter, the NMAG SHOULD update its MLD
membership state based on the membership reported in the Multicast
Mobility Option. Until the MN reattaches, the NMAG uses its Loopback
interface for downstream and MUST NOT forward traffic to the
potential link of the MN. The NMAG SHOULD issue JOIN messages for
those newly selected groups to its regular multicast upstream
interface. As soon as the bidirectional tunnel with PMAG is
established, the NMAG additionally joins those groups on the tunnel
interface requested to be forwarded from the PMAG.
A MAG experiencing a connection request for an MN without prior
reception of a corresponding Multicast Mobility Option is operating
in the reactive fast handover mode as an NMAG. Following the
reattachment, it SHOULD immediately issue an MLD General Query to
learn about multicast subscriptions of the newly arrived MN. Using
standard multicast operations, the NMAG joins groups not currently
forwarded using its regular multicast upstream interface.
Concurrently, it selects groups for forwarding from PMAG and builds a
Multicast Mobility Option, as described in <a href="#section-5.3">Section 5.3</a>, that contains
the multicast listener state. If not empty, this Mobility Option is
appended to the regular fast handover HI messages with the F flag set
or, in the case of unicast HI message being submitted prior to
multicast state detection, sent in an additional HI message to the
PMAG. Upon reception of the Multicast Acknowledgement Option and
establishment of the bidirectional tunnel, the NMAG additionally
joins the set of groups on the tunnel interface that it wishes to
receive by forwarding from the PMAG. When multicast flows arrive,
the NMAG forwards data to the appropriate downlink(s).
In both modes, the NMAG MUST send a LEAVE message to the tunnel when
forwarding of a group is no longer needed, e.g., after native
multicast traffic arrives or group membership of the MN terminates.
Although the message can be delayed, immediately sending the LEAVE
message eliminates the need for PAR and NAR to process traffic that
is not to be forwarded.
<span class="grey">Schmidt, et al. Experimental [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
<span class="h4"><a class="selflink" id="section-4.2.4" href="#section-4.2.4">4.2.4</a>. IPv4 Support Considerations</span>
An MN in a PMIPv6 domain MAY use an IPv4 address transparently for
communication, as specified in [<a href="./rfc5844" title=""IPv4 Support for Proxy Mobile IPv6"">RFC5844</a>]. For this purpose, Local
Mobility Anchors (LMAs) can register IPv4-Proxy-CoAs in its binding
caches, and MAGs can provide IPv4 support in access networks.
Correspondingly, multicast membership management will be performed by
the MN using IGMP. For multiprotocol multicast support on the
network side, IGMPv3 router functions are required at both MAGs (see
<a href="#section-5.6">Section 5.6</a> for compatibility considerations with previous IGMP
versions). Context transfer between MAGs can transparently proceed
in the HI/HAck message exchanges by encapsulating IGMP multicast
state records within Multicast Mobility Options (see Sections <a href="#section-5.3">5.3</a> and
5.4 for details on message formats).
The deployment of IPv4 multicast support SHOULD be homogeneous across
a PMIP domain. This avoids multicast service breaks during
handovers.
It is worth mentioning the scenarios of a dual-stack IPv4/IPv6 access
network and the use of Generic Routing Encapsulation (GRE) tunneling
as specified in [<a href="./rfc5845" title=""Generic Routing Encapsulation (GRE) Key Option for Proxy Mobile IPv6"">RFC5845</a>]. Corresponding implications and operations
are discussed in the PMIP Multicast Base Deployment document (see
[<a href="./rfc6224" title=""Base Deployment for Multicast Listener Support in Proxy Mobile IPv6 (PMIPv6) Domains"">RFC6224</a>]).
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Message Formats</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Multicast Indicator for Proxy Router Advertisement (PrRtAdv)</span>
This document updates the Proxy Router Advertisements (PrRtAdv)
message format defined in <a href="./rfc5568#section-6.1.2">Section 6.1.2 of [RFC5568]</a>. The update
assigns the first bit of the Reserved field to carry the 'M' bit, as
defined in Figure 6. An FMIPv6 AR indicates support for multicast by
setting the 'M' bit to a value of 1.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Code | Checksum |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Subtype |M| Reserved | Identifier |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Options ...
+-+-+-+-+-+-+-+-+-+-+-+-
Figure 6: Multicast Indicator Bit for Proxy Router Advertisement
(PrRtAdv) Message
<span class="grey">Schmidt, et al. Experimental [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
This document updates the Reserved field to include the 'M' bit. It
is specified as follows.
M = 1 indicates that the specifications of this document apply.
M = 0 indicates that the behavior during fast handover proceeds
according to [<a href="./rfc5568" title=""Mobile IPv6 Fast Handovers"">RFC5568</a>].
The default value (0) of this bit indicates a non-multicast-capable
service.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Extensions to Existing Mobility Header Messages</span>
The fast handover protocols use an IPv6 header type called Mobility
Header, as defined in [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>]. Mobility Headers can carry variable
Mobility Options.
The multicast listener context of an MN is transferred in fast
handover operations from PAR/PMAG to NAR/NMAG within a new Multicast
Mobility Option and MUST be acknowledged by a corresponding Multicast
Acknowledgement Option. Depending on the specific handover scenario
and protocol in use, the corresponding option is included within the
mobility option list of HI/HAck only (PFMIPv6) or of FBU/FBack/HI/
HAck (FMIPv6).
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. New Multicast Mobility Option</span>
This section defines the Multicast Mobility Option. It contains the
current listener state record of the MN obtained from the MLD
Multicast Listener Report message and has the format displayed in
Figure 7.
<span class="grey">Schmidt, et al. Experimental [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Option-Code | Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
+ +
| |
+ MLD or IGMP Report Payload +
~ ~
~ ~
| |
+ +
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 7: Mobility Header Multicast Option
Type: 60
Length: 8-bit unsigned integer. The length of this option in 32-bit
words, not including the Type, Length, Option-Code, and Reserved
fields.
Option-Code:
1: IGMPv3 Payload Type
2: MLDv2 Payload Type
3: IGMPv3 Payload Type from IGMPv2 Compatibility Mode
4: MLDv2 Payload Type from MLDv1 Compatibility Mode
Reserved: MUST be set to zero by the sender and MUST be ignored by
the receiver.
MLD or IGMP Report Payload: This field is composed of the Membership
Report message after stripping its ICMP header. This Report Payload
always contains an integer number of multicast records.
Corresponding message formats are defined for MLDv2 in [<a href="./rfc3810" title=""Multicast Listener Discovery Version 2 (MLDv2) for IPv6"">RFC3810</a>] and
for IGMPv3 in [<a href="./rfc3376" title=""Internet Group Management Protocol, Version 3"">RFC3376</a>]. This field MUST always contain the first
header line (Reserved field and No of Mcast Address Records).
<span class="grey">Schmidt, et al. Experimental [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
Figure 8 shows the Report Payload for MLDv2 (see <a href="./rfc3810#section-5.2">Section 5.2 of
[RFC3810]</a> for the definition of Multicast Address Records). When
IGMPv3 is used, the payload format is defined according to IGMPv3
Group Records (see <a href="./rfc3376#section-4.2">Section 4.2 of [RFC3376]</a> for the definition of
Group Records).
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved |No of Mcast Address Records (M)|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. Multicast Address Record (1) .
. .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. .
. Multicast Address Record (2) .
. .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| . |
. . .
| . |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
. .
. Multicast Address Record (M) .
. .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 8: MLDv2 Report Payload
<span class="grey">Schmidt, et al. Experimental [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. New Multicast Acknowledgement Option</span>
The Multicast Acknowledgement Option reports the status of the
context transfer and contains the list of state records that could
not be successfully transferred to the next access network. It has
the format displayed in Figure 9.
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 | Option-Code | Status |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
+ +
| |
+ MLD or IGMP Unsupported Report Payload +
~ ~
~ ~
| |
+ +
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 9: Mobility Header Multicast Acknowledgement Option
Type: 61
Length: 8-bit unsigned integer. The length of this option in 32-bit
words, not including the Type, Length, Option-Code, and Status
fields.
Option-Code: 0
Status:
1: Report Payload type unsupported
2: Requested group service unsupported
3: Requested group service administratively prohibited
MLD or IGMP Unsupported Report Payload: This field is syntactically
identical to the MLD and IGMP Report Payload field described in
<a href="#section-5.3">Section 5.3</a> but is only composed of those Multicast Address Records
that are not supported or prohibited in the new access network. This
field MUST always contain the first header line (Reserved field and
No of Mcast Address Records) but MUST NOT contain any Mcast Address
Records if the status code equals 1.
<span class="grey">Schmidt, et al. Experimental [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
Note that group subscriptions to specific sources may be rejected at
the destination network; thus, the composition of multicast address
records may differ from initial requests within an MLD or IGMP Report
Payload option.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. Length Considerations: Number of Records and Addresses</span>
Mobility Header messages exchanged in HI/HAck and FBU/FBack dialogs
impose length restrictions on multicast context records due to the
8-bit Length field. The maximal payload length available in FBU/
FBack messages is 4 octets (Mobility Option header line) + 1024
octets (MLD Report Payload). For example, not more than 51 Multicast
Address Records of minimal length (without source states) may be
exchanged in one message pair. In typical handover scenarios, this
number reduces further according to unicast context and Binding
Authorization data. A larger number of MLD reports that exceeds the
available payload size MAY be sent within multiple HI/HAck or FBU/
FBack message pairs. In PFMIPv6, context information can be
fragmented over several HI/HAck messages. However, a single MLDv2
Report Payload MUST NOT be fragmented. Hence, for a single Multicast
Address Record, the number of source addresses (S,.) is limited to
62.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. MLD and IGMP Compatibility Requirements</span>
Access routers (MAGs) MUST support MLDv2 and IGMPv3. To enable
multicast service for MLDv1 and IGMPv2 listeners, the routers MUST
follow the interoperability rules defined in [<a href="./rfc3810" title=""Multicast Listener Discovery Version 2 (MLDv2) for IPv6"">RFC3810</a>] and [<a href="./rfc3376" title=""Internet Group Management Protocol, Version 3"">RFC3376</a>]
and appropriately set the Multicast Address Compatibility Mode.
When the Multicast Address Compatibility Mode is MLDv1 or IGMPv2, a
router internally translates the subsequent MLDv1 and IGMPv2 messages
for that multicast address to their MLDv2 and IGMPv3 equivalents and
uses these messages in the context transfer. The current state of
Compatibility Mode is translated into the code of the Multicast
Mobility Option, as defined in <a href="#section-5.3">Section 5.3</a>. A NAR (NMAG) receiving a
Multicast Mobility Option during handover will switch to the lowest
level of MLD and IGMP Compatibility Mode that it learned from its
previous and new option values. This minimal compatibility agreement
is used to allow for continued operation.
<span class="grey">Schmidt, et al. Experimental [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Security Considerations</span>
Security vulnerabilities that exceed issues discussed in the base
protocols mentioned in this document ([<a href="./rfc5568" title=""Mobile IPv6 Fast Handovers"">RFC5568</a>], [<a href="./rfc5949" title=""Fast Handovers for Proxy Mobile IPv6"">RFC5949</a>],
[<a href="./rfc3810" title=""Multicast Listener Discovery Version 2 (MLDv2) for IPv6"">RFC3810</a>], and [<a href="./rfc3376" title=""Internet Group Management Protocol, Version 3"">RFC3376</a>]) are identified as follows.
Multicast context transfer at predictive handovers implements group
states at remote access routers and may lead to group subscriptions
without further validation of the multicast service requests.
Thereby, a NAR (NMAG) is requested to cooperate in potentially
complex multicast rerouting and may receive large volumes of traffic.
Malicious or inadvertent multicast context transfers may result in a
significant burden of route establishment and traffic management onto
the backbone infrastructure and the access router itself. Rapid
rerouting or traffic overload can be mitigated by a rate control at
the AR that restricts the frequency of traffic redirects and the
total number of subscriptions. In addition, the wireless access
network remains protected from multicast data injection until the
requesting MN attaches to the new location.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. IANA Considerations</span>
This document defines two new mobility options that have been
allocated from the "Mobility Options" registry at
<<a href="http://www.iana.org/assignments/mobility-parameters">http://www.iana.org/assignments/mobility-parameters</a>>:
60 Multicast Mobility Option, described in <a href="#section-5.3">Section 5.3</a>
61 Multicast Acknowledgement Option, described in <a href="#section-5.4">Section 5.4</a>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. References</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<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,
<<a href="http://www.rfc-editor.org/info/rfc6275">http://www.rfc-editor.org/info/rfc6275</a>>.
[<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 href="http://www.rfc-editor.org/info/rfc5213">http://www.rfc-editor.org/info/rfc5213</a>>.
[<a id="ref-RFC5568">RFC5568</a>] Koodli, R., "Mobile IPv6 Fast Handovers", <a href="./rfc5568">RFC 5568</a>, July
2009, <<a href="http://www.rfc-editor.org/info/rfc5568">http://www.rfc-editor.org/info/rfc5568</a>>.
<span class="grey">Schmidt, et al. Experimental [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
[<a id="ref-RFC5949">RFC5949</a>] Yokota, H., Chowdhury, K., Koodli, R., Patil, B., and F.
Xia, "Fast Handovers for Proxy Mobile IPv6", <a href="./rfc5949">RFC 5949</a>,
September 2010, <<a href="http://www.rfc-editor.org/info/rfc5949">http://www.rfc-editor.org/info/rfc5949</a>>.
[<a id="ref-RFC1112">RFC1112</a>] Deering, S., "Host extensions for IP multicasting", STD 5,
<a href="./rfc1112">RFC 1112</a>, August 1989,
<<a href="http://www.rfc-editor.org/info/rfc1112">http://www.rfc-editor.org/info/rfc1112</a>>.
[<a id="ref-RFC4605">RFC4605</a>] Fenner, B., He, H., Haberman, B., and H. Sandick,
"Internet Group Management Protocol (IGMP) / Multicast
Listener Discovery (MLD)-Based Multicast Forwarding
("IGMP/MLD Proxying")", <a href="./rfc4605">RFC 4605</a>, August 2006,
<<a href="http://www.rfc-editor.org/info/rfc4605">http://www.rfc-editor.org/info/rfc4605</a>>.
[<a id="ref-RFC3810">RFC3810</a>] Vida, R. and L. Costa, "Multicast Listener Discovery
Version 2 (MLDv2) for IPv6", <a href="./rfc3810">RFC 3810</a>, June 2004,
<<a href="http://www.rfc-editor.org/info/rfc3810">http://www.rfc-editor.org/info/rfc3810</a>>.
[<a id="ref-RFC3376">RFC3376</a>] Cain, B., Deering, S., Kouvelas, I., Fenner, B., and A.
Thyagarajan, "Internet Group Management Protocol, Version
3", <a href="./rfc3376">RFC 3376</a>, October 2002,
<<a href="http://www.rfc-editor.org/info/rfc3376">http://www.rfc-editor.org/info/rfc3376</a>>.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Informative References</span>
[<a id="ref-RFC5757">RFC5757</a>] Schmidt, T., Waehlisch, M., and G. Fairhurst, "Multicast
Mobility in Mobile IP Version 6 (MIPv6): Problem Statement
and Brief Survey", <a href="./rfc5757">RFC 5757</a>, February 2010,
<<a href="http://www.rfc-editor.org/info/rfc5757">http://www.rfc-editor.org/info/rfc5757</a>>.
[<a id="ref-FMCAST-MIP6">FMCAST-MIP6</a>]
Suh, K., Kwon, D., Suh, Y., and Y. Park, "Fast Multicast
Protocol for Mobile IPv6 in the fast handovers
environments", Work in Progress, <a href="./draft-suh-mipshop-fmcast-mip6-00">draft-suh-mipshop-fmcast-</a>
<a href="./draft-suh-mipshop-fmcast-mip6-00">mip6-00</a>, February 2004.
[<a id="ref-FMIPv6-Analysis">FMIPv6-Analysis</a>]
Schmidt, T. and M. Waehlisch, "Predictive versus Reactive
-- Analysis of Handover Performance and Its Implications
on IPv6 and Multicast Mobility", Telecommunication
Systems, Vol. 30, No. 1-3, pp. 123-142, November 2005,
<<a href="http://dx.doi.org/10.1007/s11235-005-4321-4">http://dx.doi.org/10.1007/s11235-005-4321-4</a>>.
[<a id="ref-RFC6224">RFC6224</a>] Schmidt, T., Waehlisch, M., and S. Krishnan, "Base
Deployment for Multicast Listener Support in Proxy Mobile
IPv6 (PMIPv6) Domains", <a href="./rfc6224">RFC 6224</a>, April 2011,
<<a href="http://www.rfc-editor.org/info/rfc6224">http://www.rfc-editor.org/info/rfc6224</a>>.
<span class="grey">Schmidt, et al. Experimental [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
[<a id="ref-RFC7287">RFC7287</a>] Schmidt, T., Gao, S., Zhang, H., and M. Waehlisch, "Mobile
Multicast Sender Support in Proxy Mobile IPv6 (PMIPv6)
Domains", <a href="./rfc7287">RFC 7287</a>, June 2014,
<<a href="http://www.rfc-editor.org/info/rfc7287">http://www.rfc-editor.org/info/rfc7287</a>>.
[<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 href="http://www.rfc-editor.org/info/rfc5844">http://www.rfc-editor.org/info/rfc5844</a>>.
[<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,
<<a href="http://www.rfc-editor.org/info/rfc5845">http://www.rfc-editor.org/info/rfc5845</a>>.
<span class="grey">Schmidt, et al. Experimental [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Considerations for Mobile Multicast Sources</span>
This document only specifies protocol operations for fast handovers
for mobile listeners. In this appendix, we briefly discuss aspects
of supporting mobile multicast sources.
In a multicast-enabled Proxy Mobile IPv6 domain, multicast sender
support is likely to be enabled by any one of the mechanisms
described in [<a href="./rfc7287" title=""Mobile Multicast Sender Support in Proxy Mobile IPv6 (PMIPv6) Domains"">RFC7287</a>]. In this case, multicast data packets from an
MN are transparently forwarded either to its associated LMA or to a
multicast-enabled access network. In all cases, a mobile source can
continue to transmit multicast packets after a handover from PMAG to
NMAG without additional management operations. Packets (with a
persistent source address) will continue to flow via the LMA or the
access network into the previously established distribution system.
In contrast, an MN will change its Care-of Address while performing
FMIPv6 handovers. Even though MNs are enabled to send packets via
the reverse NAR-PAR tunnel using their previous Care-of Address for a
limited time, multicast sender support in such a Mobile IPv6 regime
will most likely follow one of the basic mechanisms described in
<a href="./rfc5757#section-5.1">Section 5.1 of [RFC5757]</a>: (1) bidirectional tunneling, (2) remote
subscription, or (3) agent-based solutions. A solution for multicast
senders that is homogeneously deployed throughout the mobile access
network can support seamless services during fast handovers, the
details of which are beyond the scope of this document.
Acknowledgments
Protocol extensions to support multicast in Fast Mobile IPv6 have
been loosely discussed for several years. Repeated attempts have
been made to define corresponding protocol extensions. The first
version [<a href="#ref-FMCAST-MIP6">FMCAST-MIP6</a>] was presented by Kyungjoo Suh, Dong-Hee Kwon,
Young-Joo Suh, and Youngjun Park in 2004.
This work was stimulated by many fruitful discussions in the MobOpts
research group. We would like to thank all active members for
constructive thoughts and contributions on the subject of multicast
mobility. The MULTIMOB working group has provided continuous
feedback during the evolution of this work. Comments, discussions,
and reviewing remarks have been contributed by (in alphabetical
order) Carlos J. Bernardos, Luis M. Contreras, Hui Deng, Shuai Gao,
Brian Haberman, Dirk von Hugo, Min Hui, Georgios Karagian, Marco
Liebsch, Behcet Sarikaya, Stig Venaas, and Juan Carlos Zuniga.
Funding has been provided by the German Federal Ministry of Education
and Research within the projects Mindstone, SKIMS, and SAFEST. This
is gratefully acknowledged.
<span class="grey">Schmidt, et al. Experimental [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc7411">RFC 7411</a> Multicast for FMIPv6/PFMIPv6 November 2014</span>
Authors' Addresses
Thomas C. Schmidt (editor)
HAW Hamburg
Dept. Informatik
Berliner Tor 7
Hamburg D-20099
Germany
EMail: t.schmidt@haw-hamburg.de
Matthias Waehlisch
link-lab & FU Berlin
Hoenower Str. 35
Berlin D-10318
Germany
EMail: mw@link-lab.net
Rajeev Koodli
Intel
3600 Juliette Lane
Santa Clara, CA 95054
United States
EMail: rajeev.koodli@intel.com
Godred Fairhurst
University of Aberdeen
School of Engineering
Aberdeen AB24 3UE
United Kingdom
EMail: gorry@erg.abdn.ac.uk
Dapeng Liu
China Mobile
Phone: +86-123-456-7890
EMail: liudapeng@chinamobile.com
Schmidt, et al. Experimental [Page 30]
</pre>
|