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 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
|
<pre>Network Working Group J. Manner, Ed.
Request for Comments: 3753 M. Kojo, Ed.
Category: Informational June 2004
<span class="h1">Mobility Related Terminology</span>
Status of this Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2004).
Abstract
There is a need for common definitions of terminology in the work to
be done around IP mobility. This document defines terms for mobility
related terminology. The document originated out of work done in the
Seamoby Working Group but has broader applicability for terminology
used in IETF-wide discourse on technology for mobility and IP
networks. Other working groups dealing with mobility may want to
take advantage of this terminology.
Table of Contents
<a href="#section-1">1</a>. Introduction. . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-2">2</a>
<a href="#section-2">2</a>. General Terms . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-2">2</a>
<a href="#section-3">3</a>. Mobile Access Networks and Mobile Networks. . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-4">4</a>. Handover Terminology. . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-4.1">4.1</a>. Scope of Handover . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-4.2">4.2</a>. Handover Control. . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-4.3">4.3</a>. Simultaneous connectivity to Access Routers . . . . . . <a href="#page-19">19</a>
<a href="#section-4.4">4.4</a>. Performance and Functional Aspects. . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-4.5">4.5</a>. Micro Diversity, Macro Diversity, and IP Diversity. . . <a href="#page-21">21</a>
<a href="#section-4.6">4.6</a>. Paging, and Mobile Node States and Modes. . . . . . . . <a href="#page-22">22</a>
<a href="#section-4.7">4.7</a>. Context Transfer. . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-4.8">4.8</a>. Candidate Access Router Discovery . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-4.9">4.9</a>. Types of Mobility . . . . . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#section-5">5</a>. Specific Terminology for Mobile Ad-Hoc Networking . . . . . . <a href="#page-26">26</a>
<a href="#section-6">6</a>. Security-related Terminology. . . . . . . . . . . . . . . . . <a href="#page-27">27</a>
<a href="#section-7">7</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-8">8</a>. Contributors. . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-9">9</a>. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-10">10</a>. Informative References. . . . . . . . . . . . . . . . . . . . <a href="#page-29">29</a>
<span class="grey">Manner & Kojo Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
<a href="#section-11">11</a>. <a href="#appendix-A">Appendix A</a> - Index of Terms . . . . . . . . . . . . . . . . . <a href="#page-31">31</a>
<a href="#section-12">12</a>. Authors' Addresses. . . . . . . . . . . . . . . . . . . . . . <a href="#page-35">35</a>
<a href="#section-13">13</a>. Full Copyright Statement. . . . . . . . . . . . . . . . . . . <a href="#page-36">36</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This document presents terminology to be used for documents and
discussions within the Seamoby Working Group. Other mobility related
working groups could take advantage of this terminology, in order to
create a common terminology for the area of mobility in IP networks.
Some terms and their definitions that are not directly related to the
IP world are included for the purpose of harmonizing the terminology.
For example, 'Access Point' and 'base station' refer to the same
component, from the point of view of IP, but 'Access Router' has a
very different meaning. The presented terminology may also, it is
hoped, be adequate to cover mobile ad-hoc networks.
The proposed terminology is not meant to assert any new terminology.
Rather the authors would welcome discussion on more exact definitions
as well as missing or unnecessary terms. This work is a
collaborative enterprise between people from many different
engineering backgrounds and so already presents a first step in
harmonizing the terminology.
The terminology in this document is divided into several sections.
First, there is a list of terms for general use and mobile access
networks followed by terms related to handovers, and finally some
terms used within the MANET and NEMO working groups.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. General Terms</span>
Bandwidth
The total width of the frequency band available to or used by a
communications channel. Usually measured in Hertz (Hz). The
bandwidth of a channel limits the available channel capacity.
Bandwidth utilization
The actual rate of information transfer achieved over a link,
expressed as a percentage of the theoretical maximum channel
capacity on that link, according to Shannon's Law.
<span class="grey">Manner & Kojo Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Beacon
A control message broadcast by a node (especially, a base station)
informing all the other nodes in its neighborhood of the
continuing presence of the broadcasting node, possibly along with
additional status or configuration information.
Binding Update (BU)
A message indicating a mobile node's current mobility binding, and
in particular its care-of address.
Care-of-Address (CoA)
An IP address associated with a mobile node while visiting a
foreign link; the subnet prefix of this IP address is a foreign
subnet prefix. A packet addressed to the mobile node which
arrives at the mobile node's home network when the mobile node is
away from home and has registered a Care-of Address will be
forwarded to that address by the Home Agent in the home network.
Channel
A subdivision of the physical medium allowing possibly shared
independent uses of the medium. Channels may be made available by
subdividing the medium into distinct time slots, or distinct
spectral bands, or decorrelated coding sequences.
Channel access protocol
A protocol for mediating access to, and possibly allocation of,
the various channels available within the physical communications
medium. Nodes participating in the channel access protocol agree
to communicate only when they have uncontested access to one of
the channels, so that there will be no interference.
Channel capacity
The total capacity of a link to carry information (typically bits)
per unit time. With a given bandwidth, the theoretical maximum
channel capacity is given by Shannon's Law. The actual channel
capacity of a channel is determined by the channel bandwidth, the
coding system used, and the signal to noise ratio.
<span class="grey">Manner & Kojo Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Control message
Information passed between two or more network nodes for
maintaining protocol state, which may be unrelated to any specific
application.
Distance vector
A characteristic of some routing protocols in which, for each
desired destination, a node maintains information about the
distance to that destination, and a vector (next hop) towards that
destination.
Fairness
A property of channel access protocols whereby a medium is made
fairly available to all eligible nodes on the link. Fairness does
not strictly imply equality, especially in cases where nodes are
given link access according to unequal priority or classification.
Flooding
The process of delivering data or control messages to every node
within the network under consideration.
Foreign subnet prefix
A bit string that consists of some number of initial bits of an IP
address which identifies a node's foreign link within the Internet
topology.
Forwarding node
A node which performs the function of forwarding datagrams from
one of its neighbors to another.
Home Address (HoA)
An IP address assigned to a mobile node, used as the permanent
address of the mobile node. This address is within the mobile
node's home link. Standard IP routing mechanisms will deliver
packets destined for a mobile node's home address to its home link
[<a href="#ref-9" title=""Mobility Support in IPv6"">9</a>].
<span class="grey">Manner & Kojo Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Home Agent (HA)
A router on a mobile node's home link with which the mobile node
has registered its current care-of address. While the mobile node
is away from home, the home agent intercepts packets on the home
link destined to the mobile node's home address, encapsulates
them, and tunnels them to the mobile node's registered care-of
address.
Home subnet prefix
A bit string that consists of some number of initial bits of an IP
address which identifies a node's home link within the Internet
topology (i.e., the IP subnet prefix corresponding to the mobile
node's home address, as defined in [<a href="#ref-9" title=""Mobility Support in IPv6"">9</a>]).
Interface
A node's point of attachment to a link.
IP access address
An IP address (often dynamically allocated) which a node uses to
designate its current point of attachment to the local network.
The IP access address is typically to be distinguished from the
mobile node's home address; in fact, while visiting a foreign
network the IP access address may be considered unsuitable for use
as an end-point address by any but the most short-lived
applications. Instead, the IP access address is typically used as
the care-of address of the node.
Link
A communication facility or physical medium that can sustain data
communications between multiple network nodes, such as an Ethernet
(simple or bridged). A link is the layer immediately below IP.
In a layered network stack model, the Link Layer (Layer 2) is
normally below the Network (IP) Layer (Layer 3), and above the
Physical Layer (Layer 1).
Asymmetric link
A link with transmission characteristics which are different
depending upon the relative position or design characteristics of
the transmitter and the receiver of data on the link. For
instance, the range of one transmitter may be much higher than the
range of another transmitter on the same medium.
<span class="grey">Manner & Kojo Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Link establishment
The process of establishing a link between the mobile node and the
local network. This may involve allocating a channel, or other
local wireless resources, possibly including a minimum level of
service or bandwidth.
Link-layer trigger (L2 Trigger)
Information from the link layer that informs the network layer of
the detailed events involved in handover sequencing at the link
layer. L2 triggers are not specific to any particular link layer,
but rather represent generalizations of link layer information
available from a wide variety of link layer protocols [<a href="#ref-4" title=""Fast Handovers for Mobile IPv6"">4</a>].
Link state
A characterization of some routing protocols in which every node
within the network is expected to maintain information about every
link within the network topology.
Link-level acknowledgment
A protocol strategy, typically employed over wireless media,
requiring neighbors to acknowledge receipt of packets (typically
unicast only) from the transmitter. Such strategies aim to avoid
packet loss or delay resulting from lack of, or unwanted
characteristics of, higher level protocols. Link-layer
acknowledgments are often used as part of Automatic Repeat-Request
(ARQ) algorithms for increasing link reliability.
Local broadcast
The delivery of data to every node within range of the
transmitter.
Loop-free
A property of routing protocols whereby the path taken by a data
packet from source to destination never traverses through the same
intermediate node twice before arrival at the destination.
<span class="grey">Manner & Kojo Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Medium Access Protocol (MAC)
A protocol for mediating access to, and possibly allocation of,
the physical communications medium. Nodes participating in the
medium access protocol can communicate only when they have
uncontested access to the medium, so that there will be no
interference. When the physical medium is a radio channel, the
MAC is the same as the Channel Access Protocol.
Mobile network prefix
A bit string that consists of some number of initial bits of an IP
address which identifies the entire mobile network within the
Internet topology. All nodes in a mobile network necessarily have
an address containing this prefix.
Mobility factor
The relative frequency of node movement, compared to the frequency
of application initiation.
Multipoint relay (MPR)
A node which is selected by its one-hop neighbor to re-transmit
all broadcast messages that it receives. The message must be new
and the time-to-live field of the message must be greater than
one. Multipoint relaying is a technique to reduce the number of
redundant re-transmissions while diffusing a broadcast message in
the network.
Neighbor
A "neighbor" is any other node to which data may be propagated
directly over the communications medium without relying on the
assistance of any other forwarding node.
Neighborhood
All the nodes which can receive data on the same link from one
node whenever it transmits data.
Next hop
A neighbor which has been selected to forward packets along the
way to a particular destination.
<span class="grey">Manner & Kojo Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Payload
The actual data within a packet, not including network protocol
headers which were not inserted by an application. Note that
payloads are different between layers: application data is the
payload of TCP, which are the payload of IP, which three are the
payload of link layer protocols etc. Thus, it is important to
identify the scope when talking about payloads.
Prefix
A bit string that consists of some number of initial bits of an
address.
Routing table
The table where forwarding nodes keep information (including next
hop) for various destinations.
Route entry
An entry for a specific destination (unicast or multicast) in the
routing table.
Route establishment
The process of determining a route between a source and a
destination.
Route activation
The process of putting a route into use after it has been
determined.
Routing proxy
A node that routes packets by overlays, e.g., by tunneling,
between communicating partners. The Home Agent and Foreign Agent
are examples of routing proxies, in that they receive packets
destined for the mobile node and tunnel them to the current
address of the mobile node.
<span class="grey">Manner & Kojo Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Shannon's Law
A statement defining the theoretical maximum rate at which error-
free digits can be transmitted over a bandwidth-limited channel in
the presence of noise. No practical error correction coding
system exists that can closely approach the theoretical
performance limit given by Shannon's law.
Signal strength
The detectable power of the signal carrying the data bits, as seen
by the receiver of the signal.
Source route
A source route from node A to node B is an ordered list of IP
addresses, starting with the IP address of node A and ending with
the IP address of the node B. Between A and B, the source route
includes an ordered list of intermediate hops between A and B, as
well as the interface index of the interface through which the
packet should be transmitted to reach the next hop. The list of
intermediate hops might not include all visited nodes, some hops
might be omitted for a reason or another.
Spatial re-use
Simultaneous use of channels with identical or close physical
characteristics, but located spatially far enough apart to avoid
interference (i.e., co-channel interference)
System-wide broadcast
Same as flooding, but used in contrast to local broadcast.
Subnet
A subnet is a logical group of connected network nodes. In IP
networks, nodes in a subnet share a common network mask (in IPV4)
or a network prefix (in IPv6).
Topology (Network Topology)
The interconnection structure of a network: which nodes are
directly connected to each other, and through which links they are
connected. Some simple topologies have been given names, such as
for instance 'bus topology', 'mesh topology', 'ring topology',
'star topology' and 'tree topology'.
<span class="grey">Manner & Kojo Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Triggered update
A solicited route update transmitted by a router along a path to a
destination.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Mobile Access Networks and Mobile Networks</span>
In order to support host mobility a set of nodes towards the network
edge may need to have specific functions. Such a set of nodes forms
a mobile access network that may or may not be part of the global
Internet. Figure 1 presents two examples of such access network
topologies. The figure depicts a reference architecture which
illustrates an IP network with components defined in this section.
We intend to define the concept of the Access Network (AN) which may
also support enhanced mobility. It is possible that to support
routing and QoS for mobile nodes, existing routing protocols (e.g.,
Open Shortest Path First (OSPF) [<a href="#ref-14" title=""OSPF Version 2"">14</a>]) may not be appropriate to
maintain forwarding information for these mobile nodes as they change
their points of attachment to the Access Network. These new
functions are implemented in routers with additional capabilities.
We can distinguish three types of Access Network components: Access
Routers (AR) which handle the last hop to the mobile, typically over
a wireless link; Access Network Gateways (ANG) which form the
boundary on the fixed network side and shield the fixed network from
the specialized routing protocols; and (optionally) other internal
Access Network Routers which may also be needed in some cases to
support the functions. The Access Network consists of the equipment
needed to support this specialized routing, i.e., AR or ANG. AR and
ANG may be the same physical nodes.
In addition, we present a few basic terms on mobile networks, that
is, mobile network, mobile router (MR), and mobile network node
(MNN). More terminology for discussing mobile networks can be found
in [<a href="#ref-13" title=""Network Mobility Support Terminology"">13</a>]. A more thorough discussion of mobile networks can be found
in the working group documents of the NEMO Working Group.
Note: this reference architecture is not well suited for people
dealing with Mobile Ad-hoc Networks (MANET).
<span class="grey">Manner & Kojo Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
|
|
--- ------ ------- |
--- | <--> | | -------| AR | -------------------| | |
| |--[] --- /------ \ /| ANG |--|
--- AP / \ / | | |
MH / \ / ------- |
(with wireless ___ / ------- |
device) | |---- | ANR | |
--- ------- |
AP / \ |
/ \ ------- |
--- ------ / \| | |
| |-------| AR |---------------------| ANG |--|
--- ------ | | |
AP ------- |
|
Access Network (AN) 1 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -|
Access Network (AN) 2 |
|
|
--- ------ ------- |
--- | <--> | | -------| AR | -------------------| | |
| |--[] --- /------ /| ANG |--|
--- AP / / | | |
MH / / ------- |
(with wireless ___ / / |
device) | |---- / |
--- / |
AP / |
/ |
| --- ------ ------- |
--- | | <->| |-------| AR |---------| ANR | |
| |-| [] --- \ ------ ------- |
--- | -----| AP \ / |
MNN |--i MR e \ / |
| ------ --- \ ------ / |
--- | (with | |-------| AR |------- |
| |-| wireless --- ------ |
--- | device) AP |
MNN 'i': MR ingress interface |
'e': MR egress interface |
|
Figure 1: Reference Network Architecture
<span class="grey">Manner & Kojo Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Mobile Node (MN)
An IP node capable of changing its point of attachment to the
network. A Mobile Node may either be a Mobile Host (no forwarding
functionality) or a Mobile Router (forwarding functionality).
Mobile Host (MH)
A mobile node that is an end host and not a router. A Mobile Host
is capable of sending and receiving packets, that is, being a
source or destination of traffic, but not a forwarder of it.
Fixed Node (FN)
A node, either a host or a router, unable to change its point of
attachment to the network and its IP address without breaking open
sessions.
Mobile network
An entire network, moving as a unit, which dynamically changes its
point of attachment to the Internet and thus its reachability in
the topology. The mobile network is composed of one or more IP-
subnets and is connected to the global Internet via one or more
Mobile Routers (MR). The internal configuration of the mobile
network is assumed to be relatively stable with respect to the MR.
Mobile Router (MR)
A router capable of changing its point of attachment to the
network, moving from one link to another link. The MR is capable
of forwarding packets between two or more interfaces, and possibly
running a dynamic routing protocol modifying the state by which it
does packet forwarding.
A MR acting as a gateway between an entire mobile network and the
rest of the Internet has one or more egress interface(s) and one
or more ingress interface(s). Packets forwarded upstream to the
rest of the Internet are transmitted through one of the MR's
egress interface; packets forwarded downstream to the mobile
network are transmitted through one of the MR's ingress interface.
Ingress interface
The interface of a MR attached to a link inside the mobile
network.
<span class="grey">Manner & Kojo Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Egress interface
The interface of a MR attached to the home link if the MR is at
home, or attached to a foreign link if the MR is in a foreign
network.
Mobile Network Node (MNN)
Any node (host or router) located within a mobile network, either
permanently or temporarily. A Mobile Network Node may either be a
mobile node or a fixed node.
Access Link (AL)
A last-hop link between a Mobile Node and an Access Point. That
is, a facility or medium over which an Access Point and the Mobile
Node can communicate at the link layer, i.e., the layer
immediately below IP.
Access Point (AP)
An Access Point is a layer 2 device which is connected to one or
more Access Routers and offers the wireless link connection to the
Mobile Node. Access Points are sometimes called base stations or
access point transceivers. An Access Point may be a separate
entity or co-located with an Access Router.
Radio Cell
The geographical area within which an Access Point provides radio
coverage, i.e., where radio communication between a Mobile Node
and the specific Access Point is possible.
Access Network Router (ANR)
An IP router in the Access Network. An Access Network Router may
include Access Network specific functionalities, for example,
related to mobility and/or QoS. This is to distinguish between
ordinary routers and routers that have Access Network-related
special functionality.
<span class="grey">Manner & Kojo Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Access Router (AR)
An Access Network Router residing on the edge of an Access Network
and connected to one or more Access Points. The Access Points may
be of different technology. An Access Router offers IP
connectivity to Mobile Nodes, acting as a default router to the
Mobile Nodes it is currently serving. The Access Router may
include intelligence beyond a simple forwarding service offered by
ordinary IP routers.
Access Network Gateway (ANG)
An Access Network Router that separates an Access Network from
other IP networks, much in the same way as an ordinary gateway
router. The Access Network Gateway looks to the other IP networks
like a standard IP router. In a small network, an ANG may also
offer the services of an AR, namely offer the IP connectivity to
the mobile nodes.
Access Network (AN)
An IP network which includes one or more Access Network Routers.
Administrative Domain (AD)
A collection of networks under the same administrative control and
grouped together for administrative purposes [<a href="#ref-5" title=""A Framework for Policy-based Admission Control"">5</a>].
Serving Access Router (SAR)
The Access Router currently offering the connectivity to the MN.
This is usually the point of departure for the MN as it makes its
way towards a new Access Router (at which time the Serving Access
Router takes the role of the Previous Access Router). There may
be several Serving Access Routers serving the Mobile Node at the
same time.
New Access Router (NAR)
The Access Router that offers connectivity to the Mobile Node
after a handover.
<span class="grey">Manner & Kojo Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Previous Access Router (PAR)
An Access Router that offered connectivity to the Mobile Node
prior to a handover. This is the Serving Access Router that will
cease or has ceased to offer connectivity to the Mobile Node.
Often also called Old Access Router (OAR).
Candidate Access Router (CAR)
An Access Router to which the Mobile Node may do a handoff. See
<a href="#section-4.8">Section 4.8</a>.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Handover Terminology</span>
These terms refer to different perspectives and approaches to
supporting different aspects of mobility. Distinctions can be made
according to the scope, range overlap, performance characteristics,
diversity characteristics, state transitions, mobility types, and
control modes of handover techniques.
Roaming
An operator-based term involving formal agreements between
operators that allows a mobile to get connectivity from a foreign
network. Roaming (a particular aspect of user mobility) includes,
for example, the functionality by which users can communicate
their identity to the local AN so that inter-AN agreements can be
activated and service and applications in the MN's home network
can be made available to the user locally.
Handover
The process by which an active MN (in the Active State, see
<a href="#section-4.6">section 4.6</a>) changes its point of attachment to the network, or
when such a change is attempted. The access network may provide
features to minimize the interruption to sessions in progress.
Also called handoff.
There are different types of handover classified according to
different aspects involved in the handover. Some of this
terminology follows the description in [<a href="#ref-4" title=""Fast Handovers for Mobile IPv6"">4</a>].
<span class="grey">Manner & Kojo Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Scope of Handover</span>
Layer 2 handover
A handover where the MN changes APs (or some other aspect of the
radio channel) connected to the same AR's interface. This type of
handover is transparent to the routing at the IP layer (or it
appears simply as a link layer reconfiguration without any
mobility implications).
Intra-AR handover
A handover which changes the AR's network interface to the mobile.
That is, the Serving AR remains the same but routing changes
internal to the AR take place.
Intra-AN handover
A handover where the MN changes ARs inside the same AN. Such a
handover is not necessarily visible outside the AN. In case the
ANG serving the MN changes, this handover is seen outside the AN
due to a change in the routing paths. Note that the ANG may
change for only some of the MN's data flows.
Inter-AN handover
A handover where the MN moves to a new AN. This requires support
for macro mobility. Note that this would have to involve the
assignment of a new IP access address (e.g., a new care-of
address) to the MN.
Intra-technology handover
A handover between equipment of the same technology.
Inter-technology handover
A handover between equipment of different technologies.
Horizontal handover
This involves MNs moving between access points of the same type
(in terms of coverage, data rate and mobility), such as, UMTS to
UMTS, or WLAN to WLAN.
<span class="grey">Manner & Kojo Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Vertical handover
This involves MNs moving between access points of different type,
such as, UMTS to WLAN.
Note that the difference between a horizontal and vertical handover
is vague. For example, a handover from an AP with 802.11b WLAN link
to an AP with 802.11g WLAN link may be considered as either a
vertical or a horizontal handover, depending on an individual's point
of view.
Note also that the IP layer sees network interfaces and IP addresses,
rather than specific technologies used by those interfaces. Thus,
horizontal and vertical handovers may or may not be noticed at the IP
layer. Usually a handover can be noticed if the IP address assigned
to the interface changes, the network interface itself changes (which
can also change the IP address), or there is a link outage, for
example, when the mobile node moves out of coverage for a while. For
example, in a GPRS network a horizontal handover happens usually
unnoticed by the IP layer. Similarly, a WLAN horizontal handover may
be noticed if the IP address of the interface changes. On the other
hand, vertical handovers often change the network interface and are,
therefore, noticed on the IP layer. Still, some specific network
cards may be able to switch between access technologies (e.g., GPRS
to UMTS) without changing the network interface. Moreover, either of
the two handovers may or may not result in changing the AR. For
example, an AR could control WLAN and Bluetooth access points, and
the mobile node could do horizontal and vertical handovers under the
same AR without changing its IP address or even the network
interface.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Handover Control</span>
A handover must be one of the following two types (a):
Mobile-initiated handover
The MN is the one that makes the initial decision to initiate
the handover.
Network-initiated handover
The network makes the initial decision to initiate the
handover.
<span class="grey">Manner & Kojo Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
A handover is also one of the following two types (b):
Mobile-controlled handover
The MN has the primary control over the handover process.
Network-controlled handover
The network has the primary control over the handover process.
A handover decision usually involves some sort of measurements about
when and where to handover to. Therefore, a handover is also either
of these three types (c):
Mobile-assisted handover
Information and measurement from the MN are used by the AR to
decide on the execution of a handover.
Network-assisted handover
A handover where the AN collects information that can be used
by the MN in a handover decision.
Unassisted handover
A handover where no assistance is provided by the MN or the AR
to each other.
Note that it is possible that the MN and the AR both do measurements
and decide on the handover.
A handover is also one of the following two types (d):
Push handover
A handover either initiated by the PAR, or where the MN
initiates a handover via the PAR.
Pull handover
A handover either initiated by the NAR, or where the MN
initiates a handover via the NAR.
<span class="grey">Manner & Kojo Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
The handover is also either proactive or reactive (e):
Planned handover
A proactive (expected) handover where some signaling can be
done in advance of the MN getting connected to the new AR,
e.g., building a temporary tunnel from the previous AR to the
new AR.
Unplanned handover
A reactive (unexpected) handover where no signaling is done in
advance of the MN's move from the previous AR to the new AR.
The five handover types (a-e) are mostly independent, and every
handover should be classifiable according to each of these types.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Simultaneous connectivity to Access Routers</span>
Make-before-break (MBB)
During a MBB handover the MN makes the new connection before the
old one is broken. Thus, the MN can communicate simultaneously
with the old and new AR during the handover. This should not be
confused with "soft handover" which relies on macro diversity,
described in <a href="#section-4.5">Section 4.5</a>.
Break-before-make (BBM)
During a BBM handover the MN breaks the old connection before the
new connection is made. Thus, the MN cannot communicate
simultaneously with the old and the new AR.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Performance and Functional Aspects</span>
Handover latency
Handover latency is the difference between the time a MN is last
able to send and/or receive an IP packet by way of the PAR, and
the time the MN is able to send and/or receive an IP packet
through the NAR. Adapted from [<a href="#ref-4" title=""Fast Handovers for Mobile IPv6"">4</a>].
Smooth handover
A handover that aims primarily to minimize packet loss, with no
explicit concern for additional delays in packet forwarding.
<span class="grey">Manner & Kojo Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Fast handover
A handover that aims primarily to minimize handover latency, with
no explicit interest in packet loss.
Seamless handover
A handover in which there is no change in service capability,
security, or quality. In practice, some degradation in service is
to be expected. The definition of a seamless handover in the
practical case should be that other protocols, applications, or
end users do not detect any change in service capability, security
or quality, which would have a bearing on their (normal)
operation. As a consequence, what would be a seamless handover
for one less demanding application might not be seamless for
another more demanding application. See [<a href="#ref-7" title=""Problem Description: Reasons For Performing Context Transfers Between Nodes in an IP Access Network"">7</a>] for more discussion
on the topic.
Throughput
The amount of data from a source to a destination processed by the
protocol for which throughput is to be measured, for instance, IP,
TCP, or the MAC protocol. The throughput differs between protocol
layers.
Goodput
The total bandwidth used, less the volume of control messages,
protocol overhead from the data packets, and packets dropped due
to CRC errors.
Pathloss
A reduction in signal strength caused by traversing the physical
medium constituting the link.
Hidden-terminal problem
The problem whereby a transmitting node can fail in its attempt to
transmit data because of destructive interference which is only
detectable at the receiving node, not the transmitting node.
Exposed terminal problem
The problem whereby a transmitting node A prevents another node B
from transmitting, although node B could have safely transmitted
to anyone else but the transmitting node A.
<span class="grey">Manner & Kojo Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
<span class="h3"><a class="selflink" id="section-4.5" href="#section-4.5">4.5</a>. Micro Diversity, Macro Diversity, and IP Diversity</span>
Certain air interfaces (e.g., the Universal Mobile Telephone System
(UMTS) Terrestrial Radio Access Network (UTRAN) running in Frequency
Division Duplex (FDD) mode) require or at least support macro
diversity combining. Essentially, this refers to the fact that a
single MN is able to send and receive over two independent radio
channels ('diversity branches') at the same time; the information
received over different branches is compared and that from the better
branch passed to the upper layers. This can be used both to improve
overall performance, and to provide a seamless type of handover at
layer 2, since a new branch can be added before the old is deleted.
See also [<a href="#ref-6" title=""IP Mobility and the CDMA Radio Access Network: Applicability Statement for Soft Handoff"">6</a>].
It is necessary to differentiate between combining/diversity that
occurs at the physical and radio link layers, where the relevant unit
of data is the radio frame, and that which occurs at layer 3, the
network layer, where what is considered is the IP packet itself.
In the following definitions micro- and macro diversity refer to
protocol layers below the network layer, and IP diversity refers to
the network layer.
Micro diversity
For example, two antennas on the same transmitter send the same
signal to a receiver over a slightly different path to overcome
fading.
Macro diversity
Duplicating or combining actions taking place over multiple APs,
possibly attached to different ARs. This may require support from
the network layer to move the radio frames between the base
stations and a central combining point.
IP diversity
Refers to the process of duplicating IP packets and sending them
to the receiver through more than one point of attachment. This
is semantically allowed by IP because it does not guarantee packet
uniqueness, and higher level protocols are assumed to eliminate
duplicates whenever that is important for the application.
<span class="grey">Manner & Kojo Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
<span class="h3"><a class="selflink" id="section-4.6" href="#section-4.6">4.6</a>. Paging, and Mobile Node States and Modes</span>
Mobile systems may employ the use of MN states in order to operate
more efficiently without degrading the performance of the system.
The term 'mode' is also common and means the same as 'state'.
A MN is always in one of the following three states:
Active state
When the AN knows the MN's SAR and the MN can send and receive IP
packets. The access link may not be active, but the radio layer
is able to establish one without assistance from the network
layer. The MN has an IP address assigned.
Dormant state
A state in which the mobile restricts its ability to receive
normal IP traffic by reducing its monitoring of radio channels.
The AN knows the MN's Paging Area, but the MN has no SAR and so
packets cannot be delivered to the MN without the AN initiating
paging. Often also called Idle state.
Time-slotted dormant mode
A dormant mode implementation in which the mobile alternates
between periods of not listening for any radio traffic and
listening for traffic. Time-slotted dormant mode
implementations are typically synchronized with the network so
the network can deliver paging messages to the mobile during
listening periods.
Inactive state
the MN is in neither the Active nor Dormant State. The MN is no
longer listening for any packets, not even periodically, and not
sending packets. The MN may be in a powered off state, it may
have shut down all interfaces to drastically conserve power, or it
may be out of range of a radio access point. The MN does not
necessarily have an IP access address from the AN.
Note: in fact, as well as the MN being in one of these three states,
the AN also stores which state it believes the MN is in. Normally
these are consistent; the definitions above assume so.
Here are some additional definitions for paging, taking into account
the above state definitions.
<span class="grey">Manner & Kojo Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Paging
A procedure initiated by the Access Network to move a Dormant MN
into the Active State. As a result of paging, the MN establishes
a SAR and the IP routes are set up.
Location updating
A procedure initiated by the MN, by which it informs the AN that
it has moved into a new paging area.
Paging area
A part of the Access Network, typically containing a number of
ARs/APs, which corresponds to some geographical area. The AN
keeps and updates a list of all the Dormant MNs present in the
area. If the MN is within the radio coverage of the area it will
be able to receive paging messages sent within that Paging Area.
Paging area registrations
Signaling from a dormant mode mobile node to the network, by which
it establishes its presence in a new paging area. Paging Area
Registrations thus enable the network to maintain a rough idea of
where the mobile is located.
Paging channel
A radio channel dedicated to signaling dormant mode mobiles for
paging purposes. By current practice, the paging channel carries
only control traffic necessary for the radio link, although some
paging protocols have provision for carrying arbitrary traffic
(and thus could potentially be used to carry IP).
Traffic channel
The radio channel on which IP traffic to an active mobile is
typically sent. This channel is used by a mobile that is actively
sending and receiving IP traffic, and is not continuously active
in a dormant mode mobile. For some radio link protocols, this may
be the only channel available.
<span class="grey">Manner & Kojo Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
<span class="h3"><a class="selflink" id="section-4.7" href="#section-4.7">4.7</a>. Context Transfer</span>
Context
The information on the current state of a routing-related service
required to re-establish the routing-related service on a new
subnet without having to perform the entire protocol exchange with
the MN from scratch.
Feature context
The collection of information representing the context for a given
feature. The full context associated with a MN is the collection
of one or more feature contexts.
Context transfer
The movement of context from one router or other network entity to
another as a means of re-establishing routing-related services on
a new subnet or collection of subnets.
Routing-related service
A modification to the default routing treatment of packets to and
from the MN. Initially establishing routing-related services
usually requires a protocol exchange with the MN. An example of a
routing-related service is header compression. The service may
also be indirectly related to routing, for example, security.
Security may not affect the forwarding decision of all
intermediate routers, but a packet may be dropped if it fails a
security check (can't be encrypted, authentication failed, etc.).
Dropping the packet is basically a routing decision.
<span class="h3"><a class="selflink" id="section-4.8" href="#section-4.8">4.8</a>. Candidate Access Router Discovery</span>
Capability of an AR
A characteristic of the service offered by an AR that may be of
interest to an MN when the AR is being considered as a handoff
candidate.
Candidate AR (CAR)
An AR to which MN has a choice of performing IP-level handoff.
This means that MN has the right radio interface to connect to an
AP that is served by this AR, as well as the coverage of this AR
overlaps with that of the AR to which MN is currently attached.
<span class="grey">Manner & Kojo Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Target AR (TAR)
An AR with which the procedures for the MN's IP-level handoff are
initiated. TAR is selected after running a TAR Selection
Algorithm that takes into account the capabilities of CARs,
preferences of MN and any local policies.
<span class="h3"><a class="selflink" id="section-4.9" href="#section-4.9">4.9</a>. Types of Mobility</span>
We can differentiate between host and network mobility, and various
types of network mobility. Terminology related more to applications
such as the Session Initiation Protocol, such as personal mobility,
is out of scope for this document.
Host mobility support
Refers to the function of allowing a mobile node to change its
point of attachment to the network, without interrupting IP
packet delivery to/from that node. There may be different sub-
functions depending on what the current level of service is
being provided; in particular, support for host mobility
usually implies active and dormant modes of operation,
depending on whether the node has any current sessions or not.
Access Network procedures are required to keep track of the
current point of attachment of all the MNs or establish it at
will. Accurate location and routing procedures are required in
order to maintain the integrity of the communication. Host
mobility is often called 'terminal mobility'.
Network mobility support
Refers to the function of allowing an entire network to change
its point of attachment to the Internet, and, thus, its
reachability in the topology, without interrupting IP packet
delivery to/from that mobile network.
Two subcategories of mobility can be identified within both host
mobility and network mobility:
Global mobility
Same as Macro mobility.
Local mobility
Same as Micro mobility.
<span class="grey">Manner & Kojo Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Macro mobility
Mobility over a large area. This includes mobility support and
associated address registration procedures that are needed when
a MN moves between IP domains. Inter-AN handovers typically
involve macro-mobility protocols. Mobile-IP can be seen as a
means to provide macro mobility.
Micro mobility
Mobility over a small area. Usually this means mobility within
an IP domain with an emphasis on support for active mode using
handover, although it may include idle mode procedures also.
Micro-mobility protocols exploit the locality of movement by
confining movement related changes and signaling to the access
network.
Local mobility management
Local mobility management (LMM) is a generic term for protocols
dealing with IP mobility management confined within the access
network. LMM messages are not routed outside the access
network, although a handover may trigger Mobile IP messages to
be sent to correspondent nodes and home agents.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Specific Terminology for Mobile Ad-Hoc Networking</span>
Cluster
A group of nodes located within close physical proximity,
typically all within range of one another, which can be grouped
together for the purpose of limiting the production and
propagation of routing information.
Cluster head
A cluster head is a node (often elected in the cluster formation
process) that has complete knowledge about group membership and
link state information in the cluster. Each cluster should have
one and only one cluster head.
Cluster member
All nodes within a cluster except the cluster head are called
members of that cluster.
<span class="grey">Manner & Kojo Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Convergence
The process of approaching a state of equilibrium in which all
nodes in the network agree on a consistent collection of state
about the topology of the network, and in which no further control
messages are needed to establish the consistency of the network
topology.
Convergence time
The time which is required for a network to reach convergence
after an event (typically, the movement of a mobile node) which
changes the network topology.
Laydown
The relative physical location of the nodes within the ad hoc
network.
Pathloss matrix
A matrix of coefficients describing the pathloss between any two
nodes in an ad hoc network. When the links are asymmetric, the
matrix is also asymmetric.
Scenario
The tuple <laydown, pathloss matrix, mobility factor, traffic>
characterizing a class of ad hoc networks.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Security-related Terminology</span>
This section includes terminology commonly used around mobile and
wireless networking. Only a mobility-related subset of the entire
security terminology is presented.
Authorization-enabling extension
An authentication which makes a (registration) message
acceptable to the ultimate recipient of the registration
message. An authorization-enabling extension must contain an
SPI (see below) [<a href="#ref-10" title=""IP Mobility Support for IPv4"">10</a>].
Mobility security association
A collection of security contexts, between a pair of nodes,
which may be applied to mobility-related protocol messages
exchanged between them. In Mobile IP, each context indicates
<span class="grey">Manner & Kojo Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
an authentication algorithm and mode, a secret (a shared key,
or appropriate public/private key pair), and a style of replay
protection in use. Mobility security associations may be
stored separately from the node's IPsec Security Policy
Database (SPD) [<a href="#ref-10" title=""IP Mobility Support for IPv4"">10</a>].
Registration key
A key used in the Mobility Security Association between a
mobile node and a foreign agent. A registration key is
typically only used once or a very few times, and only for the
purposes of verifying a small volume of Authentication data
[<a href="#ref-12" title=""AAA Registration Keys for Mobile IP"">12</a>].
Security context
A security context between two nodes defines the manner in
which two nodes choose to mutually authenticate each other, and
indicates an authentication algorithm and mode.
Security Parameter Index (SPI)
An index identifying a security context between a pair of
routers among the contexts available in the mobility security
association.
The Mobile IPv6 specification includes more security terminology
related to MIPv6 bindings [<a href="#ref-9" title=""Mobility Support in IPv6"">9</a>]. Terminology about the MIP
challenge/response mechanism can be found in [<a href="#ref-11" title=""Mobile IPv4 Challenge/Response Extensions (revised)"">11</a>].
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
This document presents only terminology. There are no security
issues in this document.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Contributors</span>
This document was initially based on the work of Tapio Suihko, Phil
Eardley, Dave Wisely, Robert Hancock, Nikos Georganopoulos, Markku
Kojo, and Jukka Manner.
Charles Perkins has provided input terminology related to ad-hoc
networks.
Thierry Ernst has provided the terminology for discussing mobile
networks.
<span class="grey">Manner & Kojo Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Henrik Levkowetz did a final check of the definitions in revision -05
and suggested a number of changes.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Acknowledgments</span>
This work has been partially performed in the framework of the IST
project IST-2000-28584 MIND, which is partly funded by the European
Union. Some of the authors would like to acknowledge the help of
their colleagues in preparing this document.
Randy Presuhn did a very thorough and helpful review of the -02
version of the terminology.
Some definitions of terminology have been adapted from [<a href="#ref-1" title=""Realtime Mobile IPv6 Framework"">1</a>], [<a href="#ref-2" title=""Mobile IP Regionalized Tunnel Management"">2</a>], [<a href="#ref-3" title=""Internet Protocol, Version 6 (IPv6) Specification"">3</a>],
[<a href="#ref-4" title=""Fast Handovers for Mobile IPv6"">4</a>], [<a href="#ref-7" title=""Problem Description: Reasons For Performing Context Transfers Between Nodes in an IP Access Network"">7</a>], [<a href="#ref-8" title=""Issues in candidate access router discovery for seamless IP- level handoffs"">8</a>], [<a href="#ref-9" title=""Mobility Support in IPv6"">9</a>] and [<a href="#ref-10" title=""IP Mobility Support for IPv4"">10</a>].
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Informative References</span>
[<a id="ref-1">1</a>] Blair, D., Tweedly, A., Thomas, M., Trostle, J. and M. Ramalho,
"Realtime Mobile IPv6 Framework", Work in Progress.
[<a id="ref-2">2</a>] Calhoun, P., Montenegro, G. and C. Perkins, "Mobile IP
Regionalized Tunnel Management", Work in Progress.
[<a id="ref-3">3</a>] Deering, S. and R. Hinden, "Internet Protocol, Version 6 (IPv6)
Specification", <a href="./rfc2460">RFC 2460</a>, December 1998.
[<a id="ref-4">4</a>] Koodli, R., Ed., <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22Fast+Handovers+for+Mobile+IPv6%22'>"Fast Handovers for Mobile IPv6"</a>, Work in
Progress.
[<a id="ref-5">5</a>] Yavatkar, R., Pendarakis, D. and R. Guerin, "A Framework for
Policy-based Admission Control", <a href="./rfc2753">RFC 2753</a>, January 2000.
[<a id="ref-6">6</a>] Kempf, J., McCann, P. and P. Roberts, "IP Mobility and the CDMA
Radio Access Network: Applicability Statement for Soft
Handoff", Work in Progress.
[<a id="ref-7">7</a>] Kempf, J., Ed., "Problem Description: Reasons For Performing
Context Transfers Between Nodes in an IP Access Network", <a href="./rfc3374">RFC</a>
<a href="./rfc3374">3374</a>, September 2002.
[<a id="ref-8">8</a>] Trossen, D., Krishnamurthi, G., Chaskar, H. and J. Kempf,
"Issues in candidate access router discovery for seamless IP-
level handoffs", Work in Progress.
[<a id="ref-9">9</a>] Johnson, D., Perkins, C. and J. Arkko, "Mobility Support in
IPv6", <a href="./rfc3775">RFC 3775</a>, June 2004.
<span class="grey">Manner & Kojo Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
[<a id="ref-10">10</a>] Perkins, C., Ed., "IP Mobility Support for IPv4", <a href="./rfc3344">RFC 3344</a>,
August 2002.
[<a id="ref-11">11</a>] Perkins, C., Calhoun, P. and J. Bharatia, "Mobile IPv4
Challenge/Response Extensions (revised)", Work in Progress.
[<a id="ref-12">12</a>] Perkins, C. and P. Calhoun, "AAA Registration Keys for Mobile
IP", Work in Progress.
[<a id="ref-13">13</a>] Ernst, T. and H. Lach, <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22Network+Mobility+Support+Terminology%22'>"Network Mobility Support Terminology"</a>,
Work in Progress.
[<a id="ref-14">14</a>] Moy, J., "OSPF Version 2", STD 54, <a href="./rfc2328">RFC 2328</a>, April 1998.
<span class="grey">Manner & Kojo Informational [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. <a href="#appendix-A">Appendix A</a> - Index of Terms</span>
AD ............................................................. <a href="#page-14">14</a>
AL ............................................................. <a href="#page-13">13</a>
AN ............................................................. <a href="#page-14">14</a>
ANG ............................................................ <a href="#page-14">14</a>
ANR ............................................................ <a href="#page-13">13</a>
AP ............................................................. <a href="#page-13">13</a>
AR ............................................................. <a href="#page-14">14</a>
Access Link .................................................... <a href="#page-13">13</a>
Access Network ................................................. <a href="#page-14">14</a>
Access Network Gateway ......................................... <a href="#page-14">14</a>
Access Network Router .......................................... <a href="#page-13">13</a>
Access Point ................................................... <a href="#page-13">13</a>
Access Router .................................................. <a href="#page-14">14</a>
Active state ................................................... <a href="#page-22">22</a>
Administrative Domain .......................................... <a href="#page-14">14</a>
Asymmetric link ................................................. <a href="#page-5">5</a>
Authorization-enabling extension ............................... <a href="#page-27">27</a>
BBM ............................................................ <a href="#page-19">19</a>
BU .............................................................. <a href="#page-3">3</a>
Bandwidth ....................................................... <a href="#page-2">2</a>
Bandwidth utilization ........................................... <a href="#page-2">2</a>
Beacon .......................................................... <a href="#page-3">3</a>
Binding Update .................................................. <a href="#page-3">3</a>
Break-before-make .............................................. <a href="#page-19">19</a>
CAR ............................................................ <a href="#page-15">15</a>
CAR ............................................................ <a href="#page-24">24</a>
Candidate AR ................................................... <a href="#page-24">24</a>
Candidate Access Router ........................................ <a href="#page-15">15</a>
Capability of an AR ............................................ <a href="#page-24">24</a>
Care-of-Address ................................................. <a href="#page-3">3</a>
Channel ......................................................... <a href="#page-3">3</a>
Channel access protocol ......................................... <a href="#page-3">3</a>
Channel capacity ................................................ <a href="#page-3">3</a>
Cluster ........................................................ <a href="#page-26">26</a>
Cluster head ................................................... <a href="#page-26">26</a>
Cluster member ................................................. <a href="#page-26">26</a>
CoA ............................................................. <a href="#page-3">3</a>
Context ........................................................ <a href="#page-24">24</a>
Context transfer ............................................... <a href="#page-24">24</a>
Control message ................................................. <a href="#page-4">4</a>
Convergence .................................................... <a href="#page-27">27</a>
Convergence time ............................................... <a href="#page-27">27</a>
Distance vector ................................................. <a href="#page-4">4</a>
Dormant state .................................................. <a href="#page-22">22</a>
Egress interface ............................................... <a href="#page-13">13</a>
Exposed terminal problem ....................................... <a href="#page-20">20</a>
<span class="grey">Manner & Kojo Informational [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
FN ............................................................. <a href="#page-12">12</a>
Fairness ........................................................ <a href="#page-4">4</a>
Fast handover .................................................. <a href="#page-20">20</a>
Feature context ................................................ <a href="#page-24">24</a>
Fixed Node ..................................................... <a href="#page-12">12</a>
Flooding ........................................................ <a href="#page-4">4</a>
Foreign subnet prefix ........................................... <a href="#page-4">4</a>
Forwarding node ................................................. <a href="#page-4">4</a>
Global mobility ................................................ <a href="#page-25">25</a>
Goodput ........................................................ <a href="#page-20">20</a>
HA .............................................................. <a href="#page-5">5</a>
Handoff ........................................................ <a href="#page-15">15</a>
Handover ....................................................... <a href="#page-15">15</a>
Handover latency ............................................... <a href="#page-19">19</a>
Hidden-terminal problem ........................................ <a href="#page-20">20</a>
HoA ............................................................. <a href="#page-4">4</a>
Home Address .................................................... <a href="#page-4">4</a>
Home Agent ...................................................... <a href="#page-5">5</a>
Home subnet prefix .............................................. <a href="#page-5">5</a>
Horizontal Handover ............................................ <a href="#page-16">16</a>
Host mobility support .......................................... <a href="#page-25">25</a>
IP access address ............................................... <a href="#page-5">5</a>
IP diversity ................................................... <a href="#page-21">21</a>
Inactive state ................................................. <a href="#page-22">22</a>
Ingress interface .............................................. <a href="#page-12">12</a>
Inter-AN handover .............................................. <a href="#page-16">16</a>
Inter-technology handover ...................................... <a href="#page-16">16</a>
Interface ....................................................... <a href="#page-5">5</a>
Intra-AN handover .............................................. <a href="#page-16">16</a>
Intra-AR handover .............................................. <a href="#page-16">16</a>
Intra-technology handover ...................................... <a href="#page-16">16</a>
L2 Trigger ...................................................... <a href="#page-6">6</a>
Laydown ........................................................ <a href="#page-27">27</a>
Layer 2 handover ............................................... <a href="#page-16">16</a>
Link ............................................................ <a href="#page-5">5</a>
Link establishment .............................................. <a href="#page-6">6</a>
Link state ...................................................... <a href="#page-6">6</a>
Link-layer trigger .............................................. <a href="#page-6">6</a>
Link-level acknowledgment ....................................... <a href="#page-6">6</a>
Local broadcast ................................................. <a href="#page-6">6</a>
Local mobility ................................................. <a href="#page-25">25</a>
Local mobility management ...................................... <a href="#page-26">26</a>
Location updating .............................................. <a href="#page-23">23</a>
Loop-free ....................................................... <a href="#page-6">6</a>
MAC ............................................................. <a href="#page-7">7</a>
MBB ............................................................ <a href="#page-19">19</a>
MH ............................................................. <a href="#page-12">12</a>
MN ............................................................. <a href="#page-12">12</a>
<span class="grey">Manner & Kojo Informational [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
MNN ............................................................ <a href="#page-13">13</a>
MPR ............................................................. <a href="#page-7">7</a>
MR ............................................................. <a href="#page-12">12</a>
Macro diversity ................................................ <a href="#page-21">21</a>
Macro mobility ................................................. <a href="#page-26">26</a>
Make-before-break .............................................. <a href="#page-19">19</a>
Medium Access Protocol .......................................... <a href="#page-7">7</a>
Micro diversity ................................................ <a href="#page-21">21</a>
Micro mobility ................................................. <a href="#page-26">26</a>
Mobile Host .................................................... <a href="#page-12">12</a>
Mobile Network Node ............................................ <a href="#page-13">13</a>
Mobile Node .................................................... <a href="#page-12">12</a>
Mobile Router .................................................. <a href="#page-12">12</a>
Mobile network ................................................. <a href="#page-12">12</a>
Mobile network prefix ........................................... <a href="#page-7">7</a>
Mobile-assisted handover ....................................... <a href="#page-18">18</a>
Mobile-controlled handover ..................................... <a href="#page-18">18</a>
Mobile-initiated handover ...................................... <a href="#page-17">17</a>
Mobility factor ................................................. <a href="#page-7">7</a>
Mobility security association .................................. <a href="#page-27">27</a>
Multipoint relay ................................................ <a href="#page-7">7</a>
NAR ............................................................ <a href="#page-14">14</a>
Neighbor ........................................................ <a href="#page-7">7</a>
Neighborhood .................................................... <a href="#page-7">7</a>
Network mobility support ....................................... <a href="#page-25">25</a>
Network-assisted handover ...................................... <a href="#page-18">18</a>
Network-controlled handover .................................... <a href="#page-18">18</a>
Network-initiated handover ..................................... <a href="#page-17">17</a>
New Access Router .............................................. <a href="#page-14">14</a>
Next hop ........................................................ <a href="#page-7">7</a>
PAR ............................................................ <a href="#page-15">15</a>
Paging ......................................................... <a href="#page-23">23</a>
Paging area .................................................... <a href="#page-23">23</a>
Paging area registrations ...................................... <a href="#page-23">23</a>
Paging channel ................................................. <a href="#page-23">23</a>
Pathloss ....................................................... <a href="#page-20">20</a>
Pathloss matrix ................................................ <a href="#page-27">27</a>
Payload ......................................................... <a href="#page-8">8</a>
Planned handover ............................................... <a href="#page-19">19</a>
Prefix .......................................................... <a href="#page-8">8</a>
Previous Access Router ......................................... <a href="#page-15">15</a>
Pull handover .................................................. <a href="#page-18">18</a>
Push handover .................................................. <a href="#page-18">18</a>
Radio Cell ..................................................... <a href="#page-13">13</a>
Registration key ............................................... <a href="#page-28">28</a>
Roaming ........................................................ <a href="#page-15">15</a>
Route activation ................................................ <a href="#page-8">8</a>
Route entry ..................................................... <a href="#page-8">8</a>
<span class="grey">Manner & Kojo Informational [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
Route establishment ............................................. <a href="#page-8">8</a>
Routing table ................................................... <a href="#page-8">8</a>
Routing proxy ................................................... <a href="#page-8">8</a>
Routing-related service ........................................ <a href="#page-24">24</a>
SAR ............................................................ <a href="#page-14">14</a>
SPI ............................................................ <a href="#page-28">28</a>
Scenario ....................................................... <a href="#page-27">27</a>
Seamless handover .............................................. <a href="#page-19">19</a>
Security Parameter Index ....................................... <a href="#page-28">28</a>
Security context ............................................... <a href="#page-28">28</a>
Serving Access Router .......................................... <a href="#page-14">14</a>
Shannon's Law ................................................... <a href="#page-9">9</a>
Signal strength ................................................. <a href="#page-9">9</a>
Smooth handover ................................................ <a href="#page-19">19</a>
Source route .................................................... <a href="#page-9">9</a>
Spatial re-use .................................................. <a href="#page-9">9</a>
Subnet .......................................................... <a href="#page-9">9</a>
System-wide broadcast ........................................... <a href="#page-9">9</a>
TAR ............................................................ <a href="#page-25">25</a>
Target AR ...................................................... <a href="#page-25">25</a>
Throughput ..................................................... <a href="#page-20">20</a>
Time-slotted dormant mode ...................................... <a href="#page-22">22</a>
Topology ........................................................ <a href="#page-9">9</a>
Traffic channel ................................................ <a href="#page-23">23</a>
Triggered update ................................................<a href="#page-10">10</a>
Unassisted handover ............................................ <a href="#page-18">18</a>
Unplanned handover ............................................. <a href="#page-19">19</a>
Vertical handover .............................................. <a href="#page-17">17</a>
<span class="grey">Manner & Kojo Informational [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Authors' Addresses</span>
Jukka Manner
Department of Computer Science
University of Helsinki
P.O. Box 26 (Teollisuuskatu 23)
FIN-00014 HELSINKI
Finland
Phone: +358-9-191-44210
Fax: +358-9-191-44441
EMail: jmanner@cs.helsinki.fi
Markku Kojo
Department of Computer Science
University of Helsinki
P.O. Box 26 (Teollisuuskatu 23)
FIN-00014 HELSINKI
Finland
Phone: +358-9-191-44179
Fax: +358-9-191-44441
EMail: kojo@cs.helsinki.fi
<span class="grey">Manner & Kojo Informational [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc3753">RFC 3753</a> Mobility Related Terminology June 2004</span>
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Full Copyright Statement</span>
Copyright (C) The Internet Society (2004). This document is subject
to the rights, licenses and restrictions contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and
except as set forth therein, the authors retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE
REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE
INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed
to pertain to the implementation or use of the technology
described in this document or the extent to which any license
under such rights might or might not be available; nor does it
represent that it has made any independent effort to identify any
such rights. Information on the procedures with respect to
rights in RFC documents can be found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use
of such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository
at <a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention
any copyrights, patents or patent applications, or other
proprietary rights that may cover technology that may be required
to implement this standard. Please address the information to the
IETF at ietf-ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Manner & Kojo Informational [Page 36]
</pre>
|