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 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901
|
<pre>Internet Engineering Task Force (IETF) D. Liu, Ed.
Request for Comments: 7429 China Mobile
Category: Informational JC. Zuniga, Ed.
ISSN: 2070-1721 InterDigital
P. Seite
Orange
H. Chan
Huawei Technologies
CJ. Bernardos
UC3M
January 2015
<span class="h1">Distributed Mobility Management: Current Practices and Gap Analysis</span>
Abstract
This document analyzes deployment practices of existing IP mobility
protocols in a distributed mobility management environment. It then
identifies existing limitations when compared to the requirements
defined for a distributed mobility management solution.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Not all documents
approved by the IESG are a candidate for any level of Internet
Standard; see <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7429">http://www.rfc-editor.org/info/rfc7429</a>.
<span class="grey">Liu, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2">2</a>. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-3">3</a>. Functions of Existing Mobility Protocols . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-4">4</a>. DMM Practices . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-4.1">4.1</a>. Assumptions . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-4.2">4.2</a>. IP Flat Wireless Network . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-4.2.1">4.2.1</a>. Host-Based IP DMM Practices . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4.2.2">4.2.2</a>. Network-Based IP DMM Practices . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-4.3">4.3</a>. Flattening 3GPP Mobile Network Approaches . . . . . . . . <a href="#page-15">15</a>
<a href="#section-5">5</a>. Gap Analysis . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-5.1">5.1</a>. Distributed Mobility Management - REQ1 . . . . . . . . . <a href="#page-19">19</a>
5.2. Bypassable Network-Layer Mobility Support for Each
Application Session - REQ2 . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-5.3">5.3</a>. IPv6 Deployment - REQ3 . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-5.4">5.4</a>. Considering Existing Mobility Protocols - REQ4 . . . . . <a href="#page-23">23</a>
5.5. Coexistence with Deployed Networks/Hosts and Operability
across Different Networks - REQ5 . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-5.6">5.6</a>. Operation and Management Considerations - REQ6 . . . . . <a href="#page-23">23</a>
<a href="#section-5.7">5.7</a>. Security Considerations - REQ7 . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-5.8">5.8</a>. Multicast Considerations - REQ8 . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#section-5.9">5.9</a>. Summary . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#section-6">6</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-7">7</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-7.1">7.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-7.2">7.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
Contributors . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-33">33</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-33">33</a>
<span class="grey">Liu, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Existing network-layer mobility management protocols have primarily
employed a mobility anchor to ensure connectivity of a mobile node by
forwarding packets destined to, or sent from, the mobile node after
the node has moved to a different network. The mobility anchor has
been centrally deployed in the sense that the traffic of millions of
mobile nodes in an operator network is typically managed by the same
anchor. This centralized deployment of mobility anchors to manage IP
sessions poses several problems. In order to address these problems,
a distributed mobility management (DMM) architecture has been
proposed. This document investigates whether it is feasible to
deploy current IP mobility protocols in a DMM scenario in a way that
can fulfill the requirements as defined in [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>], discusses
current deployment practices of existing mobility protocols, and
identifies the limitations (gaps) in these practices from the
standpoint of satisfying DMM requirements. The analysis is primarily
towards IPv6 deployment but can be seen to also apply to IPv4
whenever there are IPv4 counterparts equivalent to the IPv6 mobility
protocols.
The rest of this document is organized as follows: <a href="#section-3">Section 3</a> analyzes
existing IP mobility protocols by examining their functions and how
these functions can be configured and used to work in a DMM
environment, <a href="#section-4">Section 4</a> presents the current practices of IP wireless
networks and 3GPP architectures (both network- and host-based
mobility protocols are considered), and <a href="#section-5">Section 5</a> presents the gap
analysis with respect to the current practices.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
All general mobility-related terms and their acronyms used in this
document are to be interpreted as defined in the Mobile IPv6 base
specification [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>], in the Proxy Mobile IPv6 specification
[<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>], and in the Distributed Mobility Management Requirements
[<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>]. These terms include mobile node (MN), correspondent node
(CN), home agent (HA), local mobility anchor (LMA), mobile access
gateway (MAG), centrally deployed mobility anchors, distributed
mobility management, hierarchical mobile network, flatter mobile
network, and flattening mobile network.
In addition, this document also introduces some definitions of IP
mobility functions in <a href="#section-3">Section 3</a>.
In this document there are also references to a "distributed mobility
management environment." By this term, we refer to a scenario in
which the IP mobility, access network, and routing solutions allow
<span class="grey">Liu, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
for setting up IP networks so that traffic is distributed in an
optimal way without relying on centrally deployed mobility anchors to
manage IP mobility sessions.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Functions of Existing Mobility Protocols</span>
The host-based Mobile IPv6 (MIPv6) [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>] and its network-based
extension, Proxy Mobile IPv6 (PMIPv6) [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>], as well as
Hierarchical Mobile IPv6 (HMIPv6) [<a href="./rfc5380" title=""Hierarchical Mobile IPv6 (HMIPv6) Mobility Management"">RFC5380</a>], are logically
centralized mobility management approaches addressing primarily
hierarchical mobile networks. Although these approaches are
centralized, they have important mobility management functions
resulting from years of extensive work to develop and to extend these
functions. It is therefore useful to take these existing functions
and examine them in a DMM scenario in order to understand how to
deploy the existing mobility protocols to provide distributed
mobility management.
The main mobility management functions of MIPv6, PMIPv6, and HMIPv6
are the following:
1. Anchoring Function (AF): allocation to a mobile node of an IP
address, i.e., Home Address (HoA), or prefix, i.e., Home Network
Prefix (HNP), topologically anchored by the advertising node.
That is, the anchor node is able to advertise a connected route
into the routing infrastructure for the allocated IP prefixes.
This function is a control-plane function.
2. Internetwork Location Management (LM) function: managing and
keeping track of the internetwork location of an MN. The
location information may be a binding of the advertised IP
address/prefix, e.g., HoA or HNP, to the IP routing address of
the MN, or it may be a binding of a node that can forward packets
destined to the MN. It is a control-plane function.
In a client-server protocol model, location query and update
messages may be exchanged between a Location Management client
(LMc) and a Location Management server (LMs).
3. Forwarding Management (FM) function: packet interception and
forwarding to/from the IP address/prefix assigned to the MN,
based on the internetwork location information, either to the
destination or to some other network element that knows how to
forward the packets to their destination.
FM may optionally be split into the control plane (FM-CP) and
data plane (FM-DP).
<span class="grey">Liu, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
In Mobile IPv6, the home agent (HA) typically provides the AF; the
LMs is at the HA, whereas the LMc is at the MN; the FM function is
distributed between the ends of the tunnel at the HA and the MN.
In Proxy Mobile IPv6, the local mobility anchor (LMA) provides the
AF; the LMs is at the LMA, whereas the LMc is at the MAG; the FM
function is distributed between the ends of the tunnel at the LMA and
the MAG.
In HMIPv6 [<a href="./rfc5380" title=""Hierarchical Mobile IPv6 (HMIPv6) Mobility Management"">RFC5380</a>], the Mobility Anchor Point (MAP) serves as a
location information aggregator between the LMs at the HA and the LMc
at the MN. The MAP also provides the FM function to enable tunneling
between HA and itself, as well as tunneling between the MN and
itself.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. DMM Practices</span>
This section documents deployment practices of existing mobility
protocols to satisfy distributed mobility management requirements.
This description considers both IP wireless, e.g., evolved Wi-Fi
hotspots, and 3GPP flattening mobile networks.
While describing the current DMM practices, the section provides
references to the generic mobility management functions described in
<a href="#section-3">Section 3</a> as well as some initial hints on the identified gaps with
respect to the DMM requirements documented in [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>].
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Assumptions</span>
There are many different approaches that can be considered to
implement and deploy a distributed anchoring and mobility solution.
The focus of the gap analysis is on certain current mobile network
architectures and standardized IP mobility solutions, considering any
kind of deployment options that do not violate the original protocol
specifications. In order to limit the scope of our analysis of DMM
practices, we consider the following list of technical assumptions:
1. Both host- and network-based solutions are considered.
2. Solutions should allow selecting and using the most appropriate
IP anchor among a set of available candidates.
3. Mobility management should be realized by the preservation of the
IP address across the different points of attachment (i.e.,
provision of IP address continuity). This is in contrast to
certain transport-layer-based approaches such as Stream Control
Transmission Protocol (SCTP) [<a href="./rfc4960" title=""Stream Control Transmission Protocol"">RFC4960</a>] or application-layer
mobility.
<span class="grey">Liu, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
Applications that can cope with changes in the MN's IP address do not
depend on IP mobility management protocols such as DMM. Typically, a
connection manager, together with the operating system, will
configure the source address selection mechanism of the IP stack.
This might involve identifying application capabilities and
triggering the mobility support accordingly. Further considerations
on application management and source address selection are out of the
scope of this document, but the reader might consult [<a href="./rfc6724" title=""Default Address Selection for Internet Protocol Version 6 (IPv6)"">RFC6724</a>].
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. IP Flat Wireless Network</span>
This section focuses on common IP wireless network architectures and
how they can be flattened from an IP mobility and anchoring point of
view using common and standardized protocols. We take Wi-Fi as a
useful wireless technology since it is widely known and deployed
nowadays. Some representative examples of Wi-Fi deployment
architectures are depicted in Figure 1.
+-------------+ _----_
+---+ | Access | _( )_
|AAA|. . . . . . | Aggregation |----------( Internet )
+---+ | Gateway | (_ _)
+-------------+ '----'
| | |
| | +-------------+
| | |
| | +-----+
+---------------+ | | AR |
| | +--+--+
+-----+ +-----+ *----+----*
| RG | | WLC | ( LAN )
+-----+ +-----+ *---------*
. / \ / \
/ \ +-----+ +-----+ +-----+ +-----+
/ \ |Wi-Fi| |Wi-Fi| |Wi-Fi| |Wi-Fi|
MN1 MN2 | AP1 | | AP2 | | AP3 | | AP4 |
+-----+ +-----+ +-----+ +-----+
. .
/ \ / \
/ \ / \
MN3 MN4 MN5 MN6
Figure 1: IP Wi-Fi Network Architectures
In Figure 1, three typical deployment options are shown
[<a href="#ref-COMMUNITY-WIFI">COMMUNITY-WIFI</a>]. On the left-hand side of the figure, mobile nodes
MN1 and MN2 directly connect to a Residential Gateway (RG) at the
customer premises. The RG hosts the 802.11 Access Point (AP)
<span class="grey">Liu, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
function to enable wireless Layer 2 access connectivity and also
provides Layer 3 routing functions. In the middle of the figure,
mobile nodes MN3 and MN4 connect to Wi-Fi access points AP1 and AP2
that are managed by a Wireless LAN Controller (WLC), which performs
radio resource management on the APs, domain-wide mobility policy
enforcement, and centralized forwarding function for the user
traffic. The WLC could also implement Layer 3 routing functions or
attach to an access router (AR). Last, on the right-hand side of the
figure, access points AP3 and AP4 are directly connected to an access
router. This can also be used as a generic connectivity model.
IP mobility protocols can be used to provide heterogeneous network
mobility support to users, e.g., handover from Wi-Fi to cellular
access. Two kinds of protocols can be used: Proxy Mobile IPv6
[<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>] or Mobile IPv6 [<a href="./rfc5555" title=""Mobile IPv6 Support for Dual Stack Hosts and Routers"">RFC5555</a>], with the role of mobility anchor
(e.g., local mobility anchor or home agent) typically being played by
the edge router of the mobile network [<a href="#ref-SDO-3GPP.23.402">SDO-3GPP.23.402</a>].
Although this section has made use of the example of Wi-Fi networks,
there are other flattening mobile network architectures specified,
such as Worldwide Interoperability for Microwave Access (WiMAX)
[<a href="#ref-IEEE.802-16.2009">IEEE.802-16.2009</a>], which integrates both host- and network-based IP
mobility functions.
Existing IP mobility protocols can also be deployed in a flatter
manner so that the anchoring and access aggregation functions are
distributed. We next describe several practices for the deployment
of existing mobility protocols in a distributed mobility management
environment. The analysis in this section is limited to protocol
solutions based on existing IP mobility protocols, either host- or
network-based, such as Mobile IPv6 [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>] [<a href="./rfc5555" title=""Mobile IPv6 Support for Dual Stack Hosts and Routers"">RFC5555</a>], Proxy Mobile
IPv6 (PMIPv6) [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>] [<a href="./rfc5844" title=""IPv4 Support for Proxy Mobile IPv6"">RFC5844</a>], and Network Mobility (NEMO) Basic
Support Protocol [<a href="./rfc3963" title=""Network Mobility (NEMO) Basic Support Protocol"">RFC3963</a>]. Extensions to these base protocol
solutions are also considered. The analysis is divided into two
parts: host- and network-based practices.
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>. Host-Based IP DMM Practices</span>
Mobile IPv6 (MIPv6) [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>] and its extension to support mobile
networks, the NEMO Basic Support protocol (hereafter, simply referred
to as NEMO) [<a href="./rfc3963" title=""Network Mobility (NEMO) Basic Support Protocol"">RFC3963</a>], are well-known, host-based IP mobility
protocols. They depend on the function of the home agent (HA), a
centralized anchor, to provide mobile nodes (hosts and routers) with
mobility support. In these approaches, the home agent typically
provides the AF, FM function, and Location Management server (LMs)
functions. The mobile node possesses the Location Management client
(LMc) function and the FM function to enable tunneling between the HA
<span class="grey">Liu, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
and itself. We next describe some practices that show how MIPv6/NEMO
and several other protocol extensions can be deployed in a
distributed mobility management environment.
One approach to distribute the anchors can be to deploy several HAs
(as shown in Figure 2), and assign the topologically closest anchor
to each MN [<a href="./rfc4640" title=""Problem Statement for bootstrapping Mobile IPv6 (MIPv6)"">RFC4640</a>] [<a href="./rfc5026" title=""Mobile IPv6 Bootstrapping in Split Scenario"">RFC5026</a>] [<a href="./rfc6611" title=""Mobile IPv6 (MIPv6) Bootstrapping for the Integrated Scenario"">RFC6611</a>]. In the example shown in
Figure 2, the mobile node MN1 is assigned to the home agent HA1 and
uses a home address anchored by HA1 to communicate with the
correspondent node CN1. Similarly, the mobile node MN2 is assigned
to the home agent HA2 and uses a home address anchored by HA2 to
communicate with the correspondent node CN2. Note that MIPv6/NEMO
specifications do not prevent the simultaneous use of multiple home
agents by a single mobile node. In this deployment model, the mobile
node can use several anchors at the same time, each of them anchoring
IP flows initiated at a different point of attachment. However,
there is currently no mechanism specified in IETF standard to enable
an efficient dynamic discovery of available anchors and the selection
of the most suitable one.
<span class="grey">Liu, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
<-INTERNET-> <- HOME NETWORK -> <------- ACCESS NETWORK ------->
+-----+ +-----+ +--------+
| CN1 |--- ===| AR1 |=======| MN1 |
+-----+ \ +-----------+ // +-----+ |(FM,LMc)|
---| HA1 |=== +--------+
|(AF,FM,LMs)| +-----+ (anchored
+-----------+ | AR2 | at HA1)
+-----+
+-----+ +-----------+
| CN2 |-------| HA2 |===
+-----+ |(AF,FM,LMs)| \\ +-----+=======+--------+
+-----------+ ===| AR3 | | MN2 |
+-----+-------|(FM,LMc)|
+-----+ / +--------+
| CN3 |-----------------------------/ (anchored
+-----+ at HA2)
+-----+
| AR4 |
+-----+
CN1 CN2 CN3 HA1 HA2 AR1 AR3 MN1 MN2
| | | | | | | | |
|<-------------->|<======tunnel====+=============>| | BT mode
| | | | | | | | |
| |<-------------->|<======tunnel====+==============>| BT mode
| | | | | | | | |
| | |<----------------------------+-------------->| RO mode
| | | | | | | | |
Figure 2: Distributed Operation of Mobile IPv6 (BT and RO)/NEMO
One goal of the deployment of mobility protocols in a distributed
mobility management environment is to avoid the suboptimal routing
caused by centralized anchoring. Here, the Route Optimization (RO)
support provided by Mobile IPv6 can be used to achieve a flatter IP
data forwarding. By default, Mobile IPv6 and NEMO use the so-called
Bidirectional Tunnel (BT) mode, in which data traffic is always
encapsulated between the MN and its HA before being directed to any
other destination. The RO mode allows the MN to update its current
location on the CNs and then use the direct path between them. Using
the example shown in Figure 2, MN1 and MN2 are using BT mode with CN1
and CN2, respectively, while MN2 is in RO mode with CN3. However,
the RO mode has several drawbacks:
<span class="grey">Liu, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
o The RO mode is only supported by Mobile IPv6. There is no route
optimization support standardized for the NEMO protocol because of
the security problems posed by extending return routability tests
for prefixes, although many different solutions have been proposed
[<a href="./rfc4889" title=""Network Mobility Route Optimization Solution Space Analysis"">RFC4889</a>].
o The RO mode requires signaling that adds some protocol overhead.
o The signaling required to enable RO involves the home agent and is
repeated periodically for security reasons [<a href="./rfc4225" title=""Mobile IP Version 6 Route Optimization Security Design Background"">RFC4225</a>]. Therefore,
the HA remains a single point of failure.
o The RO mode requires support from the CN.
Notwithstanding these considerations, the RO mode does offer the
possibility of substantially reducing traffic through the home agent,
in cases when it can be supported by the relevant correspondent
nodes. Note that a mobile node can also use its Care-of Address
(CoA) directly [<a href="./rfc5014" title=""IPv6 Socket API for Source Address Selection"">RFC5014</a>] when communicating with CNs on the same link
or anywhere in the Internet, although no session continuity support
would be provided by the IP stack in this case.
HMIPv6 [<a href="./rfc5380" title=""Hierarchical Mobile IPv6 (HMIPv6) Mobility Management"">RFC5380</a>], as shown in Figure 3, is another host-based IP
mobility extension that can be considered as a complement to provide
a less centralized mobility deployment. It allows the reduction of
the amount of mobility signaling as well as improving the overall
handover performance of Mobile IPv6 by introducing a new hierarchy
level to handle local mobility. The Mobility Anchor Point (MAP)
entity is introduced as a local mobility handling node deployed
closer to the mobile node. It provides LM intermediary function
between the LMs at the HA and the LMc at the MN. It also performs
the FM function to tunnel with the HA and also with the MN.
<span class="grey">Liu, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
<INTERNET> <- HOME NETWORK -> <---------- ACCESS NETWORK ---------->
LCoA anchored
at AR1
+---+ +--------+
===|AR1|==| MN1 |
+-----+ +-----------+ +----------+ // +---+ |(FM,LMc)|
| CN1 |----| HA1 |======| MAP1 |=== +--------+
+-----+ |(AF,FM,LMs)| /|(AF,FM,LM)| +---+ HoA,
+-----------+ / +----------+ |AR2| RCoA,
HoA anchored / RCoA anchored +---+ LCoA
at HA1 / at MAP1
/ +---+
/ |AR3|
+-----+ / +----------+ +---+
| CN2 |---------------- | MAP2 |
+-----+ |(AF,FM,LM)| +---+
+----------+ |AR4|
+---+
CN1 CN2 HA1 MAP1 AR1 MN1
| | | | | |
|<-------------->|<===============>|<====tunnel============>| HoA
| | | | | |
| |<-------------------------->|<====tunnel============>| RCoA
| | | | | |
Figure 3: Hierarchical Mobile IPv6
When HMIPv6 is used, the MN has two different temporary addresses:
the Regional Care-of Address (RCoA) and the Local Care-of Address
(LCoA). The RCoA is anchored at one MAP, which plays the role of
local home agent, while the LCoA is anchored at the access-router
level. The mobile node uses the RCoA as the CoA that is signaled to
its home agent. Therefore, while roaming within a local domain
handled by the same MAP, the mobile node does not need to update its
home agent, i.e., the mobile node does not change its RCoA.
The use of HMIPv6 enables a form of route optimization, since a
mobile node may decide to directly use the RCoA as the source address
for a communication with a given correspondent node, particularly if
the MN does not expect to move outside the local domain during the
lifetime of the communication. This can be seen as a potential DMM
mode of operation, though it fails to provide session continuity if
and when the MN moves outside the local domain. In the example shown
in Figure 3, MN1 is using its global HoA to communicate with CN1,
while it is using its RCoA to communicate with CN2.
<span class="grey">Liu, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
Furthermore, a local domain might have several MAPs deployed, thus
enabling different kinds of HMIPv6 deployments that are flattening
and distributed. The HMIPv6 specification supports a flexible
selection of the MAP, including selections based on the expected
mobility pattern of the MN or on the distance between the MN and the
MAP.
Another extension that can be used to help with distributing mobility
management functions is the Home Agent switch specification
[<a href="./rfc5142" title=""Mobility Header Home Agent Switch Message"">RFC5142</a>], which defines a new mobility header to signal to a mobile
node that it should acquire a new home agent. [<a href="./rfc5142" title=""Mobility Header Home Agent Switch Message"">RFC5142</a>] does not
specify the case of changing the mobile node's home address, as that
might imply loss of connectivity for ongoing persistent connections.
Nevertheless, that specification could be used to force the change of
home agent in those situations where there are no active persistent
data sessions that cannot cope with a change of home address.
There are other host-based approaches standardized that can be used
to provide mobility support. For example, IKEv2 Mobility and
Multihoming (MOBIKE) [<a href="./rfc4555" title=""IKEv2 Mobility and Multihoming Protocol (MOBIKE)"">RFC4555</a>] allows a mobile node encrypting
traffic through Internet Key Exchange Protocol Version 2 (IKEv2)
[<a href="./rfc7296" title=""Internet Key Exchange Protocol Version 2 (IKEv2)"">RFC7296</a>] to change its point of attachment while maintaining a
Virtual Private Network (VPN) session. The MOBIKE protocol allows
updating the VPN Security Associations (SAs) in cases where the base
connection initially used is lost and needs to be re-established.
The use of the MOBIKE protocol avoids having to perform an IKEv2
renegotiation. Similar considerations to those made for Mobile IPv6
can be applied to MOBIKE; though MOBIKE is best suited for situations
where the address of at least one endpoint is relatively stable and
can be discovered using existing mechanisms such as DNS.
Extensions have been defined to the mobility protocol to optimize the
handover performance. Mobile IPv6 Fast Handovers (FMIPv6) [<a href="./rfc5568" title=""Mobile IPv6 Fast Handovers"">RFC5568</a>]
is the extension to optimize handover latency. It defines new access
router discovery mechanism before handover to reduce the new network
discovery latency. It also defines a tunnel between the previous
access router and the new access router to reduce the packet loss
during handover. The Candidate Access Router Discovery (CARD)
[<a href="./rfc4066" title=""Candidate Access Router Discovery (CARD)"">RFC4066</a>] and Context Transfer Protocol (CXTP) [<a href="./rfc4067" title=""Context Transfer Protocol (CXTP)"">RFC4067</a>] protocols
were standardized to improve the handover performance. The DMM
deployment practice discussed in this section can also use those
extensions to improve the handover performance.
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>. Network-Based IP DMM Practices</span>
Proxy Mobile IPv6 (PMIPv6) [<a href="./rfc5213" title=""Proxy Mobile IPv6"">RFC5213</a>] is the main network-based IP
mobility protocol specified for IPv6. Proxy Mobile IPv4 [<a href="./rfc5844" title=""IPv4 Support for Proxy Mobile IPv6"">RFC5844</a>]
defines some IPv4 extensions. With network-based IP mobility
<span class="grey">Liu, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
protocols, the LMA typically provides the AF, FM function, and
Location Management server (LMs) function. The mobile access gateway
(MAG) provides the Location Management client (LMc) function and FM
function to tunnel with LMA. PMIPv6 is architecturally almost
identical to MIPv6, as the mobility signaling and routing between LMA
and MAG in PMIPv6 is similar to those between the HA and MN in MIPv6.
The required mobility functionality at the MN is provided by the MAG
so that the involvement in mobility support by the MN is not
required.
We next describe some practices that show how network-based mobility
protocols and several other protocol extensions can be deployed in a
distributed mobility management environment.
One way to decentralize Proxy Mobile IPv6 operation can be to deploy
several LMAs and use some selection criteria to assign LMAs to
attaching mobile nodes. An example of this type of assignment is
shown in Figure 4. As with the client-based approach, a mobile node
may use several anchors at the same time, each of them anchoring IP
flows initiated at a different point of attachment. This assignment
can be static or dynamic. The main advantage of this simple approach
is that the IP address anchor, i.e., the LMA, could be placed closer
to the mobile node. Therefore, the resulting paths are close to
optimal. On the other hand, as soon as the mobile node moves, the
resulting path will start deviating from the optimal one.
<span class="grey">Liu, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
<INTERNET> <--- HOME NETWORK ---> <------ ACCESS NETWORK ------->
+--------+ +---+
=======| MAG1 |------|MN1|
+-----+ +-----------+ // |(FM,LMc)| +---+
| CN1 |-------| LMA1 |======= +--------+
+-----+ |(AF,FM,LMs)|
+-----------+ +--------+
+-----+ | MAG2 |
| CN2 |--- |(FM,LMc)|
+-----+ \ +-----------+ +--------+
---| LMA2 |=======
+-----+ |(AF,FM,LMs)| \\ +--------+ +---+
| CN3 | +-----------+ =======| MAG3 |------|MN2|
+-----+ |(FM,LMc)| +---+
+--------+
CN1 CN2 LMA1 LMA2 MAG1 MAG3 MN1 MN2
| | | | | | | |
|<-------------->|<===========tunnel========>|<----------->| |
| | | | | | | |
| |<-------------->|<=====tunnel=============>|<----------->|
| | | | | | | |
Figure 4: Distributed Operation of Proxy Mobile IPv6
In a similar way to the host-based IP mobility case, network-based IP
mobility has some extensions defined to mitigate the suboptimal
routing issues that may arise due to the use of a centralized anchor.
The Local Routing extensions [<a href="./rfc6705" title=""Localized Routing for Proxy Mobile IPv6"">RFC6705</a>] enable optimal routing in
Proxy Mobile IPv6 in three cases: i) when two communicating MNs are
attached to the same MAG and LMA, ii) when two communicating MNs are
attached to different MAGs but to the same LMA, and iii) when two
communicating MNs are attached to the same MAG but have different
LMAs. In these three cases, data traffic between the two mobile
nodes does not traverse the LMA(s), thus providing some form of path
optimization, since the traffic is locally routed at the edge. The
main disadvantage of this approach is that it only tackles the MN-to-
MN communication scenario and only under certain circumstances.
An interesting extension that can also be used to facilitate the
deployment of network-based mobility protocols in a distributed
mobility management environment is the support of an LMA runtime
assignment described in [<a href="./rfc6463" title=""Runtime Local Mobility Anchor (LMA) Assignment Support for Proxy Mobile IPv6"">RFC6463</a>]. This extension specifies a
runtime LMA assignment functionality and corresponding mobility
options for Proxy Mobile IPv6. This runtime LMA assignment takes
place during the Proxy Binding Update / Proxy Binding Acknowledgment
message exchange between a mobile access gateway and an LMA. While
this mechanism is mainly aimed for load-balancing purposes, it can
also be used to select an optimal LMA from the routing point of view.
<span class="grey">Liu, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
A runtime LMA assignment can be used to change the assigned LMA of an
MN, for example, in cases when the mobile node does not have any
active session or when the running sessions can survive an IP address
change. Note that several possible dynamic LMA discovery solutions
can be used, as described in [<a href="./rfc6097" title=""Local Mobility Anchor (LMA) Discovery for Proxy Mobile IPv6"">RFC6097</a>].
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Flattening 3GPP Mobile Network Approaches</span>
The 3GPP is the standards development organization that specifies the
3rd generation mobile network and the Evolved Packet System (EPS)
[<a href="#ref-SDO-3GPP.23.402">SDO-3GPP.23.402</a>], which mainly comprises the Evolved Packet Core
(EPC) and a new radio access network, usually referred to as LTE
(Long Term Evolution).
Architecturally, the 3GPP EPC network is similar to an IP wireless
network running PMIPv6 or MIPv6, as it relies on the Packet Data
Network Gateway (P-GW) anchoring services to provide mobile nodes
with mobility support (see Figure 5). There are client-based and
network-based mobility solutions in 3GPP, which for simplicity will
be analyzed together. We next describe how 3GPP mobility protocols
and several other completed or ongoing extensions can be deployed to
meet some of the DMM requirements [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>].
<span class="grey">Liu, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
+---------------------------------------------------------+
| PCRF |
+-----------+--------------------------+----------------+-+
| | |
+----+ +-----------+------------+ +--------+-----------+ +-+-+
| | | +-+ | | Core Network | | |
| | | +------+ |S|__ | | +--------+ +---+ | | |
| | | |GERAN/|_|G| \ | | | HSS | | | | | |
| +-----+ UTRAN| |S| \ | | +---+----+ | | | | E |
| | | +------+ |N| +-+-+ | | | | | | | x |
| | | +-+ /|MME| | | +---+----+ | | | | t |
| | | +---------+ / +---+ | | | 3GPP | | | | | e |
| +-----+ E-UTRAN |/ | | | AAA | | | | | r |
| | | +---------+\ | | | SERVER | | | | | n |
| | | \ +----+ | | +--------+ | | | | a |
| | | 3GPP AN \|S-GW+---- S5---------------+ P | | | l |
| | | +----+ | | | - | | | |
| | +------------------------+ | | G | | | I |
| UE | | | W | | | P |
| | +------------------------+ | | +-----+ |
| | |+-------------+ +------+| | | | | | n |
| | || Untrusted +-+ ePDG +-S2b---------------+ | | | e |
| +---+| non-3GPP AN | +------+| | | | | | t |
| | |+-------------+ | | | | | | w |
| | +------------------------+ | | | | | o |
| | | | | | | r |
| | +------------------------+ | | | | | k |
| +---+ Trusted non-3GPP AN +-S2a--------------+ | | | s |
| | +------------------------+ | | | | | |
| | | +-+-+ | | |
| +--------------------------S2c--------------------| | | |
| | | | | |
+----+ +--------------------+ +---+
where E-UTRAN - Evolved Universal Terrestrial Radio Access Network
GERAN - GSM EDGE Radio Access Network
HSS - Home Subscriber Server
MME - Mobility Management Entity
PCRF - Policy and Charging Rule Function
SGSN - Serving GPRS Support Node
UTRAN - Universal Terrestrial Radio Access Network
Figure 5: EPS (Non-roaming) Architecture Overview
The GPRS Tunneling Protocol (GTP) [<a href="#ref-SDO-3GPP.29.060">SDO-3GPP.29.060</a>] [<a href="#ref-SDO-3GPP.29.281">SDO-3GPP.29.281</a>]
[<a href="#ref-SDO-3GPP.29.274">SDO-3GPP.29.274</a>] is a network-based mobility protocol specified for
3GPP networks (S2a, S2b, S5, and S8 interfaces). In a similar way to
PMIPv6, it can handle mobility without requiring the involvement of
<span class="grey">Liu, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
the mobile nodes. In this case, the mobile node functionality is
provided in a proxy manner by the Serving Data Gateway (S-GW),
Evolved Packet Data Gateway (ePDG), or Trusted Wireless Access
Gateway (TWAG [<a href="#ref-SDO-3GPP.23.402">SDO-3GPP.23.402</a>]) .
3GPP specifications also include client-based mobility support, based
on adopting the use of Dual-Stack Mobile IPv6 (DSMIPv6) [<a href="./rfc5555" title=""Mobile IPv6 Support for Dual Stack Hosts and Routers"">RFC5555</a>] for
the S2c interface [<a href="#ref-SDO-3GPP.24.303">SDO-3GPP.24.303</a>]. In this case, the User
Equipment (UE) implements the binding update functionality, while the
home agent role is played by the P-GW.
A Local IP Access (LIPA) and Selected IP Traffic Offload (SIPTO)
enabled network [<a href="#ref-SDO-3GPP.23.401">SDO-3GPP.23.401</a>] allows offloading some IP services
at the local access network above the Radio Access Network (RAN)
without the need to travel back to the P-GW (see Figure 6).
+---------+ IP traffic to mobile operator's CN
| User |....................................(Operator's CN)
| Equipm. |..................
+---------+ . Local IP traffic
.
+-----------+
|Residential|
|enterprise |
|IP network |
+-----------+
Figure 6: LIPA Scenario
SIPTO enables an operator to offload certain types of traffic at a
network node close to the UE's point of attachment to the access
network. This is done by selecting a set of GWs (S-GW and P-GW1 in
the figure below) that are geographically/topologically close to the
UE's point of attachment.
SIPTO Traffic
|
.
.
+-------+ +------+
| P-GW1 | ---- | MME |
+-------+ / +------+
| /
+------+ +-----+ +------+/ +-------+
| UE |.....| eNB |...| S-GW |........| P-GW2 |... CN Traffic
+------+ +-----+ +------+ +-------+
Figure 7: SIPTO Architecture
<span class="grey">Liu, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
LIPA, on the other hand, enables an IP addressable UE connected via a
Home evolved Network B (HeNB) to access other IP addressable entities
in the same residential/enterprise IP network without traversing the
mobile operator's network core in the user plane. In order to
achieve this, a Local GW (L-GW) collocated with the HeNB is used. To
establish LIPA, the UE requests a new Public Data Network (PDN)
connection to an access point name for which LIPA is permitted, the
network selects the Local GW associated with the HeNB, and the
network enables a direct user-plane path between the Local GW and the
HeNB.
+------------+ +------+ +----------+ +-------------+ =====
|Residential | | HeNB | | Backhaul | |Mobile | ( IP )
|Enterprise |..|------|..| |..|Operator |..(Network)
|Network | | L-GW | | | |Core network | =======
+------------+ +------+ +----------+ +-------------+
/
|
/
+-----+
| UE |
+-----+
Figure 8: LIPA Architecture
The 3GPP architecture specifications also provide mechanisms to allow
discovery and selection of gateways [<a href="#ref-SDO-3GPP.29.303">SDO-3GPP.29.303</a>]. These
mechanisms enable decisions that take into consideration topological
location and gateway collocation aspects, by relying upon the DNS as
a "location database."
Both SIPTO and LIPA have a very limited mobility support, especially
in 3GPP specifications up to Rel-12. Briefly, LIPA mobility support
is limited to handovers between HeNBs that are managed by the same
L-GW (i.e., mobility within the local domain). There is no guarantee
of IP session continuity for SIPTO.
<span class="grey">Liu, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Gap Analysis</span>
This section identifies the limitations in the current practices,
described in <a href="#section-4">Section 4</a>, with respect to the DMM requirements listed
in [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>].
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Distributed Mobility Management - REQ1</span>
According to requirement REQ1 stated in [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>], IP mobility,
network access, and forwarding solutions provided by DMM must make it
possible for traffic to avoid traversing a single mobility anchor far
from the optimal route.
From the analysis performed in <a href="#section-4">Section 4</a>, a DMM deployment can meet
the requirement "REQ1 Distributed mobility management" usually
relying on the following functions:
o Multiple (distributed) anchoring: ability to anchor different
sessions of a single mobile node at different anchors. In order
to provide improved routing, some anchors might need to be placed
closer to the mobile node or the corresponding node.
o Dynamic anchor assignment/re-location: ability to i) assign the
initial anchor, and ii) dynamically change the initially assigned
anchor and/or assign a new one (this may also require the transfer
of mobility context between anchors). This can be achieved either
by changing anchor for all ongoing sessions or by assigning new
anchors just for new sessions.
GAP1-1: Both the main client- and network-based IP mobility
protocols (namely, MIPv6, DSMIPv6, and PMIPv6) allow
deploying multiple anchors (i.e., home agents and localized
mobility anchors), thereby providing the multiple anchoring
function. However, existing solutions only provide an
initial anchor assignment, thus the lack of dynamic anchor
change/new anchor assignment is a gap. Neither the HA
switch nor the LMA runtime assignment allows changing the
anchor during an ongoing session. This actually comprises
several gaps: ability to perform anchor assignment at any
time (not only at the initial MN's attachment), ability of
the current anchor to initiate/trigger the relocation, and
ability to transfer registration context between anchors.
GAP1-2: Dynamic anchor assignment may lead the MN to manage
different mobility sessions served by different mobility
anchors. This is not an issue with client-based mobility
management, where the mobility client natively knows the
anchor associated with each of its mobility sessions.
<span class="grey">Liu, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
However, there is one gap, as the MN should be capable of
handling IP addresses in a DMM-friendly way, meaning that
the MN can perform smart source address selection (i.e.,
deprecating IP addresses from previous mobility anchors so
they are not used for new sessions). Besides, managing
different mobility sessions served by different mobility
anchors may raise issues with network-based mobility
management. In this case, the mobile client located in the
network, e.g., MAG, usually retrieves the MN's anchor from
the MN's policy profile, as described in <a href="./rfc5213#section-6.2">Section 6.2 of
[RFC5213]</a>. Currently, the MN's policy profile implicitly
assumes a single serving anchor and thus does not maintain
the association between home network prefix and anchor.
GAP1-3: The consequence of the distribution of the mobility anchors
is that there might be more than one available anchor for a
mobile node to use, which leads to an anchor discovery and
selection issue. Currently, there is no efficient mechanism
specified to allow the dynamic discovery of the presence of
nodes that can play the anchor role, the discovery of their
capabilities, and the selection of the most suitable one.
There is also no mechanism to allow selecting a node that is
currently anchoring a given home address/prefix (capability
sometimes required to meet REQ#2). However, there are some
mechanisms that could help to discover anchors, such as the
Dynamic Home Agent Address Discovery (DHAAD) [<a href="./rfc6275" title=""Mobility Support in IPv6"">RFC6275</a>], the
use of the home agent flag (H) in Router Advertisements
(which indicates that the router sending the Router
Advertisement is also functioning as a Mobile IPv6 home
agent on the link) or the MAP option in Router
Advertisements defined by HMIPv6. Note that there are 3GPP
mechanisms providing that functionality defined in
[<a href="#ref-SDO-3GPP.29.303">SDO-3GPP.29.303</a>].
Regarding the ability to transfer registration context between
anchors, there are already some solutions that could be reused or
adapted to fill that gap, such as Fast Handovers for Mobile IPv6
[<a href="./rfc5568" title=""Mobile IPv6 Fast Handovers"">RFC5568</a>] to enable traffic redirection from the old to the new
anchor, the Context Transfer Protocol [<a href="./rfc4067" title=""Context Transfer Protocol (CXTP)"">RFC4067</a>] to enable the
required transfer of registration information between anchors, or the
Handover Keying architecture solutions [<a href="./rfc6697" title=""Handover Keying (HOKEY) Architecture Design"">RFC6697</a>] to speed up the re-
authentication process after a change of anchor. Note that some
extensions might be needed in the context of DMM, as these protocols
were designed in the context of centralized client IP mobility
(focusing on the access reattachment and authentication).
<span class="grey">Liu, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
GAP1-4: Also note that REQ1 is intended to prevent the data-plane
traffic from taking a suboptimal route. Distributed
processing of the traffic may then be needed only in the
data plane. Provision of this capability for distributed
processing should not conflict with the use of a centralized
control plane. Other control-plane solutions (such as
charging, lawful interception, etc.) should not be
constrained by the DMM solution. On the other hand,
combining the control-plane and data-plane FM function may
limit the choice of solutions to those that distribute both
data plane and control plane together. In order to enable
distribution of only the data plane without distributing the
control plane, it would be necessary to split the forwarding
management function into the control-plane (FM-CP) and data-
plane (FM-DP) components; there is currently a gap here.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Bypassable Network-Layer Mobility Support for Each Application</span>
<span class="h3"> Session - REQ2</span>
The requirement REQ2 for "bypassable network-layer mobility support
for each application session" introduced in [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>] requires
flexibility in determining whether network-layer mobility support is
needed. This requirement enables one to choose whether or not to use
network-layer mobility support. The following two functions are also
needed:
o Dynamically assign/relocate anchor: A mobility anchor is assigned
only to sessions that use the network-layer mobility support. The
MN may thus manage more than one session; some of them may be
associated with anchored IP address(es), while the others may be
associated with local IP address(es).
o Multiple IP address management: This function is related to the
preceding item and is about the ability of the mobile node to
simultaneously use multiple IP addresses and select the best one
(from an anchoring point of view) to use on a per-
session/application/service basis. This requires MN to acquire
information regarding the properties of the available IP
addresses.
GAP2-1: The dynamic anchor assignment/relocation needs to ensure
that IP address continuity is guaranteed for sessions that
use such mobility support (e.g., in some scenarios, the
provision of mobility locally within a limited area might be
enough from the point of view of the mobile node or the
application) at the relocated anchor. Implicitly, DMM may
release the needed resources when no applications are using
the network-layer mobility support. DMM is then potentially
<span class="grey">Liu, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
required to know which sessions at the mobile node are
active and are using the mobility support. Typically, this
is known only by the MN (e.g., by its connection manager)
and would require some signaling support, such as socket API
extensions, from applications to indicate to the IP stack
whether or not mobility support is required. This may imply
having the knowledge of which sessions at the mobile node
are active and are using the mobility support. This is
something typically known only by the MN, e.g., by its
connection manager, and would also typically require some
signaling support, such as socket API extensions, from
applications to indicate to the IP stack whether mobility
support is required or not. Therefore, (part of) this
knowledge might need to be transferred to/shared with the
network.
GAP2-2: Management of multiple IP addresses provides the MN with the
choice to pick the correct address (e.g., from those
provided or not provided with mobility support) depending on
the application requirements. When using client-based
mobility management, the MN is itself aware of the anchoring
capabilities of its assigned IP addresses. This is not
necessarily the case with network-based IP mobility
management, as current mechanisms do not allow the MN to be
aware of the properties of its IP addresses. For example,
the MN does not know whether or not the allocated IP
addresses are anchored. However, there are proposals such
as [<a href="#ref-CLASS-PREFIX">CLASS-PREFIX</a>], [<a href="#ref-PREFIX-PROPERTIES">PREFIX-PROPERTIES</a>], and [<a href="#ref-MULTI-ARCH">MULTI-ARCH</a>],
where the network could indicate such properties during IP
address assignment procedures. These proposals could be
considered as attempts to fix the gap.
GAP2-3: The handling of mobility management to the granularity of an
individual session of a user/device needs proper session
identification in addition to user/device identification.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. IPv6 Deployment - REQ3</span>
This requirement states that DMM solutions should primarily target
IPv6 as the primary deployment environment. IPv4 support is not
considered mandatory and solutions should not be tailored
specifically to support IPv4.
All analyzed DMM practices support IPv6. Some of them, such as
MIPv6/NEMO (including the support of dynamic HA selection), MOBIKE,
and SIPTO also have IPv4 support. Some solutions, e.g., PMIPv6, also
have some limited IPv4 support. In conclusion, this requirement is
met by existing DMM practices.
<span class="grey">Liu, et al. Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Considering Existing Mobility Protocols - REQ4</span>
A DMM solution must first consider reusing and extending IETF-
standardized protocols before specifying new protocols.
As stated in [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>], a DMM solution could reuse existing IETF and
standardized protocols before specifying new protocols. Besides,
<a href="#section-4">Section 4</a> of this document discusses various ways to flatten and
distribute current mobility solutions. Actually, nothing prevents
the distribution of mobility functions within IP mobility protocols.
However, as discussed in Sections <a href="#section-5.1">5.1</a> and <a href="#section-5.2">5.2</a>, limitations exist.
The 3GPP data-plane anchoring function, i.e., the P-GW, can also be
distributed but with limitations such as no anchoring relocation and
no context transfer between anchors and the centralized control
plane. The 3GPP architecture is also going in the direction of
flattening with SIPTO and LIPA, though they do not provide full
mobility support. For example, mobility support for SIPTO traffic
can be rather limited, and offloaded traffic cannot access operator
services. Thus, the operator must be very careful in selecting which
traffic to offload.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. Coexistence with Deployed Networks/Hosts and Operability across</span>
<span class="h3"> Different Networks - REQ5</span>
According to [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>], DMM implementations are required to coexist
with existing network deployments, end hosts, and routers.
Additionally, DMM solutions are expected to work across different
networks, possibly operated as separate administrative domains, when
the necessary mobility management signaling, forwarding, and network
access are allowed by the trust relationship between them. All
current mobility protocols can coexist with existing network
deployments and end hosts. There is no gap between existing mobility
protocols and this requirement.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. Operation and Management Considerations - REQ6</span>
This requirement actually comprises several aspects, as summarized
below.
o A DMM solution needs to consider configuring a device, monitoring
the current operational state of a device, responding to events
that impact the device, possibly by modifying the configuration,
and storing the data in a format that can be analyzed later.
o A DMM solution has to describe in what environment and how it can
be scalably deployed and managed.
<span class="grey">Liu, et al. Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
o A DMM solution has to support mechanisms to test if the DMM
solution is working properly.
o A DMM solution is expected to expose the operational state of DMM
to the administrators of the DMM entities.
o A DMM solution, which supports flow mobility, is also expected to
support means to correlate the flow routing policies and the
observed forwarding actions.
o A DMM solution is expected to support mechanisms to check the
liveness of the forwarding path.
o A DMM solution has to provide fault management and monitoring
mechanisms to manage situations where update of the mobility
session or the data path fails.
o A DMM solution is expected to be able to monitor the usage of the
DMM protocol.
o DMM solutions have to support standardized configuration with
Network Configuration Protocol (NETCONF) [<a href="./rfc6241" title=""Network Configuration Protocol (NETCONF)"">RFC6241</a>] using YANG
[<a href="./rfc6020" title=""YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)"">RFC6020</a>] modules, which are expected to be created for DMM when
needed for such configuration.
GAP6-1: Existing mobility management protocols have not thoroughly
documented how, or whether, they support the above list of
operation and management considerations. Each of the above
needs to be considered from the beginning in a DMM solution.
GAP6-2: Management Information Base (MIB) objects are currently
defined in [<a href="./rfc4295" title=""Mobile IPv6 Management Information Base"">RFC4295</a>] for MIPv6 and in [<a href="./rfc6475" title=""Proxy Mobile IPv6 Management Information Base"">RFC6475</a>] for PMIPv6.
Standardized configuration with NETCONF [<a href="./rfc6241" title=""Network Configuration Protocol (NETCONF)"">RFC6241</a>], using
YANG [<a href="./rfc6020" title=""YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)"">RFC6020</a>] modules, is lacking.
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. Security Considerations - REQ7</span>
As stated in [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>], a DMM solution has to support any security
protocols and mechanisms needed to secure the network and to make
continuous security improvements. In addition, with security taken
into consideration early in the design, a DMM solution cannot
introduce new security risks or privacy concerns, or amplify existing
security risks that cannot be mitigated by existing security
protocols and mechanisms.
Any solutions that are intended to fill in gaps identified in this
document need to meet this requirement. At present, it does not
appear that using existing solutions to support DMM has introduced
<span class="grey">Liu, et al. Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
any new security issues. For example, Mobile IPv6 defines security
features to protect binding updates both to home agents and
correspondent nodes. It also defines mechanisms to protect the data
packets transmission for Mobile IPv6 users. Proxy Mobile IPv6 and
other variations of mobile IP also have similar security
considerations.
<span class="h3"><a class="selflink" id="section-5.8" href="#section-5.8">5.8</a>. Multicast Considerations - REQ8</span>
It is stated in [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>] that DMM solutions are expected to allow
the development of multicast solutions to avoid network inefficiency
in multicast traffic delivery.
Current IP mobility solutions address mainly the mobility problem for
unicast traffic. Solutions relying on the use of an anchor point for
tunneling multicast traffic down to the access router, or to the
mobile node, introduce the so-called "tunnel convergence problem".
This means that multiple instances of the same multicast traffic can
converge to the same node, diminishing the advantage of using
multicast protocols.
[<a id="ref-RFC6224">RFC6224</a>] documents a baseline solution for the previous issue, and
[<a href="./rfc7028" title=""Multicast Mobility Routing Optimizations for Proxy Mobile IPv6"">RFC7028</a>] documents a routing optimization solution. The baseline
solution suggests deploying a Multicast Listener Discovery (MLD)
proxy function at the MAG and either a multicast router or another
MLD proxy function at the LMA. The routing optimization solution
describes an architecture where a dedicated multicast tree mobility
anchor or a direct routing option can be used to avoid the tunnel
convergence problem.
Besides the solutions highlighted before, there are no other
mechanisms for mobility protocols to address the multicast tunnel
convergence problem.
<span class="h3"><a class="selflink" id="section-5.9" href="#section-5.9">5.9</a>. Summary</span>
We next list the main gaps identified from the analysis performed
above:
GAP1-1: Existing solutions only provide an optimal initial anchor
assignment, a gap being the lack of dynamic anchor change/
new anchor assignment. Neither the HA switch nor the LMA
runtime assignment allows changing the anchor during an
ongoing session. MOBIKE allows change of GW, but its
applicability has been scoped to a very narrow use case.
<span class="grey">Liu, et al. Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
GAP1-2: The MN needs to be able to perform source address selection.
A proper mechanism to inform the MN is lacking, so there is
not a basis for performing the correct selection.
GAP1-3: Currently, there is no efficient mechanism specified by the
IETF that allows the dynamic discovery of the presence of
nodes that can play the role of anchor, discover their
capabilities, and allow the selection of the most suitable
one. However, the following mechanisms could help
discovering anchors:
Dynamic Home Agent Address Discovery (DHAAD): The use of the
home agent flag (H) in Router Advertisements (which
indicates that the router sending the Router Advertisement
is also functioning as a Mobile IPv6 home agent on the link)
and the MAP option in Router Advertisements defined by
HMIPv6.
GAP1-4: While existing network-based DMM practices may allow the
deployment of multiple LMAs and dynamically select the best
one, this requires to still keep some centralization in the
control plane to access the policy database (as defined in
<a href="./rfc5213">RFC 5213</a>). Although [<a href="./rfc7389" title=""Separation of Control and User Plane for Proxy Mobile IPv6"">RFC7389</a>] allows a MAG to perform
splitting of its control and user planes, there is a lack of
solutions/extensions that support a clear control- and data-
plane separation for IETF IP mobility protocols in a DMM
context.
GAP2-1: The information of which sessions at the mobile node are
active and are using the mobility support need to be
transferred to, or shared with, the network. Such mechanism
has not been defined.
GAP2-2: The mobile node needs to simultaneously use multiple IP
addresses with different properties. There is a lack of
mechanism to expose this information to the mobile node,
which can then update accordingly its source address
selection mechanism.
GAP2-3: The handling of mobility management has not been to the
granularity of an individual session of a user/device
before. The combination of session identification and user/
device identification may be lacking.
<span class="grey">Liu, et al. Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
GAP6-1: Mobility management protocols have not thoroughly documented
how, or whether, they support the following list of
operation and management considerations:
* A DMM solution needs to consider configuring a device,
monitoring the current operational state of a device, and
responding to events that impact the device possibly by
modifying the configuration and storing the data in a
format that can be analyzed later.
* A DMM solution has to describe in what environment, and
how, it can be scalably deployed and managed.
* A DMM solution has to support mechanisms to test if the
DMM solution is working properly.
* A DMM solution is expected to expose the operational
state of DMM to the administrators of the DMM entities.
* A DMM solution, which supports flow mobility, is also
expected to support means to correlate the flow routing
policies and the observed forwarding actions.
* A DMM solution is expected to support mechanisms to check
the liveness of the forwarding path.
* A DMM solution has to provide fault management and
monitoring mechanisms to manage situations where update
of the mobility session or the data path fails.
* A DMM solution is expected to be able to monitor the
usage of the DMM protocol.
* DMM solutions have to support standardized configuration
with NETCONF [<a href="./rfc6241" title=""Network Configuration Protocol (NETCONF)"">RFC6241</a>], using YANG [<a href="./rfc6020" title=""YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)"">RFC6020</a>] modules,
which are expected to be created for DMM when needed for
such configuration.
GAP6-2: Management Information Base (MIB) objects are currently
defined in [<a href="./rfc4295" title=""Mobile IPv6 Management Information Base"">RFC4295</a>] for MIPv6 and in [<a href="./rfc6475" title=""Proxy Mobile IPv6 Management Information Base"">RFC6475</a>] for PMIPv6.
Standardized configuration with NETCONF [<a href="./rfc6241" title=""Network Configuration Protocol (NETCONF)"">RFC6241</a>], using
YANG [<a href="./rfc6020" title=""YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)"">RFC6020</a>] modules, is lacking.
<span class="grey">Liu, et al. Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Security Considerations</span>
The deployment of DMM using existing IP mobility protocols raises
similar security threats as those encountered in centralized mobility
management systems. Without authentication, a malicious node could
forge signaling messages and redirect traffic from its legitimate
path. This would amount to a denial-of-service attack against the
specific node or nodes for which the traffic is intended.
Distributed mobility anchoring, while keeping current security
mechanisms, might require more security associations to be managed by
the mobility management entities, potentially leading to scalability
and performance issues. Moreover, distributed mobility anchoring
makes mobility security problems more complex, since traffic
redirection requests might come from previously unconsidered origins,
thus leading to distributed points of attack. Consequently, the DMM
security design needs to account for the distribution of security
associations between additional mobility entities and fulfill the
security requirement of [<a href="./rfc7333" title=""Requirements for Distributed Mobility Management"">RFC7333</a>].
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. References</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Normative References</span>
[<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-RFC7333">RFC7333</a>] Chan, H., Liu, D., Seite, P., Yokota, H., and J. Korhonen,
"Requirements for Distributed Mobility Management", <a href="./rfc7333">RFC</a>
<a href="./rfc7333">7333</a>, August 2014,
<<a href="http://www.rfc-editor.org/info/rfc7333">http://www.rfc-editor.org/info/rfc7333</a>>.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Informative References</span>
[<a id="ref-CLASS-PREFIX">CLASS-PREFIX</a>]
Systems, C., Halwasia, G., Gundavelli, S., Deng, H.,
Thiebaut, L., Korhonen, J., and I. Farrer, "DHCPv6 class
based prefix", Work in Progress, <a href="./draft-bhandari-dhc-class-based-prefix-05">draft-bhandari-dhc-class-</a>
<a href="./draft-bhandari-dhc-class-based-prefix-05">based-prefix-05</a>, July 2013.
[<a id="ref-COMMUNITY-WIFI">COMMUNITY-WIFI</a>]
Gundavelli, S., Grayson, M., Seite, P., and Y. Lee,
"Service Provider Wi-Fi Services Over Residential
Architectures", Work in Progress, <a href="./draft-gundavelli-v6ops-community-wifi-svcs-06">draft-gundavelli-v6ops-</a>
<a href="./draft-gundavelli-v6ops-community-wifi-svcs-06">community-wifi-svcs-06</a>, April 2013.
<span class="grey">Liu, et al. Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
[<a id="ref-IEEE.802-16.2009">IEEE.802-16.2009</a>]
IEEE, "IEEE Standard for Local and metropolitan area
networks Part 16: Air Interface for Broadband Wireless
Access Systems", IEEE Standard 802.16, 2009,
<<a href="http://standards.ieee.org/getieee802/download/802.16-2009.pdf">http://standards.ieee.org/getieee802/</a>
<a href="http://standards.ieee.org/getieee802/download/802.16-2009.pdf">download/802.16-2009.pdf</a>>.
[<a id="ref-MULTI-ARCH">MULTI-ARCH</a>]
Anipko, D., Ed., "Multiple Provisioning Domain
Architecture", Work in Progress, <a href="./draft-ietf-mif-mpvd-arch-08">draft-ietf-mif-mpvd-arch-</a>
<a href="./draft-ietf-mif-mpvd-arch-08">08</a>, January 2015.
[<a id="ref-PREFIX-PROPERTIES">PREFIX-PROPERTIES</a>]
Korhonen, J., Patil, B., Gundavelli, S., Seite, P., and D.
Liu, "IPv6 Prefix Properties", Work in Progress,
<a href="./draft-korhonen-6man-prefix-properties-02">draft-korhonen-6man-prefix-properties-02</a>, July 2013.
[<a id="ref-RFC3963">RFC3963</a>] Devarapalli, V., Wakikawa, R., Petrescu, A., and P.
Thubert, "Network Mobility (NEMO) Basic Support Protocol",
<a href="./rfc3963">RFC 3963</a>, January 2005,
<<a href="http://www.rfc-editor.org/info/rfc3963">http://www.rfc-editor.org/info/rfc3963</a>>.
[<a id="ref-RFC4066">RFC4066</a>] Liebsch, M., Singh, A., Chaskar, H., Funato, D., and E.
Shim, "Candidate Access Router Discovery (CARD)", <a href="./rfc4066">RFC</a>
<a href="./rfc4066">4066</a>, July 2005, <<a href="http://www.rfc-editor.org/info/rfc4066">http://www.rfc-editor.org/info/rfc4066</a>>.
[<a id="ref-RFC4067">RFC4067</a>] Loughney, J., Nakhjiri, M., Perkins, C., and R. Koodli,
"Context Transfer Protocol (CXTP)", <a href="./rfc4067">RFC 4067</a>, July 2005,
<<a href="http://www.rfc-editor.org/info/rfc4067">http://www.rfc-editor.org/info/rfc4067</a>>.
[<a id="ref-RFC4225">RFC4225</a>] Nikander, P., Arkko, J., Aura, T., Montenegro, G., and E.
Nordmark, "Mobile IP Version 6 Route Optimization Security
Design Background", <a href="./rfc4225">RFC 4225</a>, December 2005,
<<a href="http://www.rfc-editor.org/info/rfc4225">http://www.rfc-editor.org/info/rfc4225</a>>.
[<a id="ref-RFC4295">RFC4295</a>] Keeni, G., Koide, K., Nagami, K., and S. Gundavelli,
"Mobile IPv6 Management Information Base", <a href="./rfc4295">RFC 4295</a>, April
2006, <<a href="http://www.rfc-editor.org/info/rfc4295">http://www.rfc-editor.org/info/rfc4295</a>>.
[<a id="ref-RFC4555">RFC4555</a>] Eronen, P., "IKEv2 Mobility and Multihoming Protocol
(MOBIKE)", <a href="./rfc4555">RFC 4555</a>, June 2006,
<<a href="http://www.rfc-editor.org/info/rfc4555">http://www.rfc-editor.org/info/rfc4555</a>>.
[<a id="ref-RFC4640">RFC4640</a>] Patel, A. and G. Giaretta, "Problem Statement for
bootstrapping Mobile IPv6 (MIPv6)", <a href="./rfc4640">RFC 4640</a>, September
2006, <<a href="http://www.rfc-editor.org/info/rfc4640">http://www.rfc-editor.org/info/rfc4640</a>>.
<span class="grey">Liu, et al. Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
[<a id="ref-RFC4889">RFC4889</a>] Ng, C., Zhao, F., Watari, M., and P. Thubert, "Network
Mobility Route Optimization Solution Space Analysis", <a href="./rfc4889">RFC</a>
<a href="./rfc4889">4889</a>, July 2007, <<a href="http://www.rfc-editor.org/info/rfc4889">http://www.rfc-editor.org/info/rfc4889</a>>.
[<a id="ref-RFC4960">RFC4960</a>] Stewart, R., "Stream Control Transmission Protocol", <a href="./rfc4960">RFC</a>
<a href="./rfc4960">4960</a>, September 2007,
<<a href="http://www.rfc-editor.org/info/rfc4960">http://www.rfc-editor.org/info/rfc4960</a>>.
[<a id="ref-RFC5014">RFC5014</a>] Nordmark, E., Chakrabarti, S., and J. Laganier, "IPv6
Socket API for Source Address Selection", <a href="./rfc5014">RFC 5014</a>,
September 2007, <<a href="http://www.rfc-editor.org/info/rfc5014">http://www.rfc-editor.org/info/rfc5014</a>>.
[<a id="ref-RFC5026">RFC5026</a>] Giaretta, G., Kempf, J., and V. Devarapalli, "Mobile IPv6
Bootstrapping in Split Scenario", <a href="./rfc5026">RFC 5026</a>, October 2007,
<<a href="http://www.rfc-editor.org/info/rfc5026">http://www.rfc-editor.org/info/rfc5026</a>>.
[<a id="ref-RFC5142">RFC5142</a>] Haley, B., Devarapalli, V., Deng, H., and J. Kempf,
"Mobility Header Home Agent Switch Message", <a href="./rfc5142">RFC 5142</a>,
January 2008, <<a href="http://www.rfc-editor.org/info/rfc5142">http://www.rfc-editor.org/info/rfc5142</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-RFC5380">RFC5380</a>] Soliman, H., Castelluccia, C., ElMalki, K., and L.
Bellier, "Hierarchical Mobile IPv6 (HMIPv6) Mobility
Management", <a href="./rfc5380">RFC 5380</a>, October 2008,
<<a href="http://www.rfc-editor.org/info/rfc5380">http://www.rfc-editor.org/info/rfc5380</a>>.
[<a id="ref-RFC5555">RFC5555</a>] Soliman, H., "Mobile IPv6 Support for Dual Stack Hosts and
Routers", <a href="./rfc5555">RFC 5555</a>, June 2009,
<<a href="http://www.rfc-editor.org/info/rfc5555">http://www.rfc-editor.org/info/rfc5555</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>>.
[<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-RFC6020">RFC6020</a>] Bjorklund, M., "YANG - A Data Modeling Language for the
Network Configuration Protocol (NETCONF)", <a href="./rfc6020">RFC 6020</a>,
October 2010, <<a href="http://www.rfc-editor.org/info/rfc6020">http://www.rfc-editor.org/info/rfc6020</a>>.
[<a id="ref-RFC6097">RFC6097</a>] Korhonen, J. and V. Devarapalli, "Local Mobility Anchor
(LMA) Discovery for Proxy Mobile IPv6", <a href="./rfc6097">RFC 6097</a>, February
2011, <<a href="http://www.rfc-editor.org/info/rfc6097">http://www.rfc-editor.org/info/rfc6097</a>>.
<span class="grey">Liu, et al. Informational [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
[<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>>.
[<a id="ref-RFC6241">RFC6241</a>] Enns, R., Bjorklund, M., Schoenwaelder, J., and A.
Bierman, "Network Configuration Protocol (NETCONF)", <a href="./rfc6241">RFC</a>
<a href="./rfc6241">6241</a>, June 2011, <<a href="http://www.rfc-editor.org/info/rfc6241">http://www.rfc-editor.org/info/rfc6241</a>>.
[<a id="ref-RFC6463">RFC6463</a>] Korhonen, J., Gundavelli, S., Yokota, H., and X. Cui,
"Runtime Local Mobility Anchor (LMA) Assignment Support
for Proxy Mobile IPv6", <a href="./rfc6463">RFC 6463</a>, February 2012,
<<a href="http://www.rfc-editor.org/info/rfc6463">http://www.rfc-editor.org/info/rfc6463</a>>.
[<a id="ref-RFC6475">RFC6475</a>] Keeni, G., Koide, K., Gundavelli, S., and R. Wakikawa,
"Proxy Mobile IPv6 Management Information Base", <a href="./rfc6475">RFC 6475</a>,
May 2012, <<a href="http://www.rfc-editor.org/info/rfc6475">http://www.rfc-editor.org/info/rfc6475</a>>.
[<a id="ref-RFC6611">RFC6611</a>] Chowdhury, K. and A. Yegin, "Mobile IPv6 (MIPv6)
Bootstrapping for the Integrated Scenario", <a href="./rfc6611">RFC 6611</a>, May
2012, <<a href="http://www.rfc-editor.org/info/rfc6611">http://www.rfc-editor.org/info/rfc6611</a>>.
[<a id="ref-RFC6697">RFC6697</a>] Zorn, G., Wu, Q., Taylor, T., Nir, Y., Hoeper, K., and S.
Decugis, "Handover Keying (HOKEY) Architecture Design",
<a href="./rfc6697">RFC 6697</a>, July 2012,
<<a href="http://www.rfc-editor.org/info/rfc6697">http://www.rfc-editor.org/info/rfc6697</a>>.
[<a id="ref-RFC6705">RFC6705</a>] Krishnan, S., Koodli, R., Loureiro, P., Wu, Q., and A.
Dutta, "Localized Routing for Proxy Mobile IPv6", <a href="./rfc6705">RFC</a>
<a href="./rfc6705">6705</a>, September 2012,
<<a href="http://www.rfc-editor.org/info/rfc6705">http://www.rfc-editor.org/info/rfc6705</a>>.
[<a id="ref-RFC6724">RFC6724</a>] Thaler, D., Draves, R., Matsumoto, A., and T. Chown,
"Default Address Selection for Internet Protocol Version 6
(IPv6)", <a href="./rfc6724">RFC 6724</a>, September 2012,
<<a href="http://www.rfc-editor.org/info/rfc6724">http://www.rfc-editor.org/info/rfc6724</a>>.
[<a id="ref-RFC7028">RFC7028</a>] Zuniga, JC., Contreras, LM., Bernardos, CJ., Jeon, S., and
Y. Kim, "Multicast Mobility Routing Optimizations for
Proxy Mobile IPv6", <a href="./rfc7028">RFC 7028</a>, September 2013,
<<a href="http://www.rfc-editor.org/info/rfc7028">http://www.rfc-editor.org/info/rfc7028</a>>.
[<a id="ref-RFC7296">RFC7296</a>] Kaufman, C., Hoffman, P., Nir, Y., Eronen, P., and T.
Kivinen, "Internet Key Exchange Protocol Version 2
(IKEv2)", <a href="./rfc7296">RFC 7296</a>, October 2014,
<<a href="http://www.rfc-editor.org/info/rfc7296">http://www.rfc-editor.org/info/rfc7296</a>>.
<span class="grey">Liu, et al. Informational [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
[<a id="ref-RFC7389">RFC7389</a>] Wakikawa, R., Pazhyannur, R., Gundavelli, S., and C.
Perkins, "Separation of Control and User Plane for Proxy
Mobile IPv6", <a href="./rfc7389">RFC 7389</a>, October 2014,
<<a href="http://www.rfc-editor.org/info/rfc7389">http://www.rfc-editor.org/info/rfc7389</a>>.
[<a id="ref-SDO-3GPP.23.401">SDO-3GPP.23.401</a>]
3GPP, "General Packet Radio Service (GPRS) enhancements
for Evolved Universal Terrestrial Radio Access Network
(E-UTRAN) access", 3GPP TS 23.401 10.10.0, March 2013.
[<a id="ref-SDO-3GPP.23.402">SDO-3GPP.23.402</a>]
3GPP, "Architecture enhancements for non-3GPP accesses",
3GPP TS 23.402 10.8.0, September 2012.
[<a id="ref-SDO-3GPP.24.303">SDO-3GPP.24.303</a>]
3GPP, "Mobility management based on Dual-Stack Mobile
IPv6; Stage 3", 3GPP TS 24.303 10.0.0, June 2013.
[<a id="ref-SDO-3GPP.29.060">SDO-3GPP.29.060</a>]
3GPP, "General Packet Radio Service (GPRS); GPRS
Tunnelling Protocol (GTP) across the Gn and Gp interface",
3GPP TS 29.060 3.19.0, March 2004.
[<a id="ref-SDO-3GPP.29.274">SDO-3GPP.29.274</a>]
3GPP, "3GPP Evolved Packet System (EPS); Evolved General
Packet Radio Service (GPRS) Tunnelling Protocol for
Control plane (GTPv2-C); Stage 3", 3GPP TS 29.274 10.11.0,
June 2013.
[<a id="ref-SDO-3GPP.29.281">SDO-3GPP.29.281</a>]
3GPP, "General Packet Radio System (GPRS) Tunnelling
Protocol User Plane (GTPv1-U)", 3GPP TS 29.281 10.3.0,
September 2011.
[<a id="ref-SDO-3GPP.29.303">SDO-3GPP.29.303</a>]
3GPP, "Domain Name System Procedures; Stage 3", 3GPP TS
29.303 10.4.0, September 2012.
<span class="grey">Liu, et al. Informational [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
Contributors
This document has benefited due to valuable contributions from
Charles E. Perkins
Huawei Technologies
EMail: charliep@computer.org
who produced a matrix to compare the different mobility protocols and
extensions against a list of desired DMM properties. They were
useful inputs in the early work of gap analysis. He continued to
give suggestions as well as extensively review comments for this
document.
Authors' Addresses
Dapeng Liu (editor)
China Mobile
Unit 2, 28 Xuanwumenxi Ave, Xuanwu District
Beijing 100053
China
EMail: liudapeng@chinamobile.com
Juan Carlos Zuniga (editor)
InterDigital Communications, LLC
1000 Sherbrooke Street West, 10th floor
Montreal, Quebec H3A 3G4
Canada
EMail: JuanCarlos.Zuniga@InterDigital.com
URI: <a href="http://www.InterDigital.com/">http://www.InterDigital.com/</a>
Pierrick Seite
Orange
4, rue du Clos Courtel, BP 91226
Cesson-Sevigne 35512
France
EMail: pierrick.seite@orange.com
<span class="grey">Liu, et al. Informational [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc7429">RFC 7429</a> DMM Best Practices Gap Analysis January 2015</span>
H Anthony Chan
Huawei Technologies
5340 Legacy Dr. Building 3
Plano, TX 75024
United States
EMail: h.a.chan@ieee.org
Carlos J. Bernardos
Universidad Carlos III de Madrid
Av. Universidad, 30
Leganes, Madrid 28911
Spain
Phone: +34 91624 6236
EMail: cjbc@it.uc3m.es
URI: <a href="http://www.it.uc3m.es/cjbc/">http://www.it.uc3m.es/cjbc/</a>
Liu, et al. Informational [Page 34]
</pre>
|