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 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629
|
<pre>Internet Engineering Task Force (IETF) P. Thubert, Ed.
Request for Comments: 8505 Cisco
Updates: <a href="./rfc6775">6775</a> E. Nordmark
Category: Standards Track Zededa
ISSN: 2070-1721 S. Chakrabarti
Verizon
C. Perkins
Futurewei
November 2018
<span class="h1">Registration Extensions for IPv6 over</span>
<span class="h1">Low-Power Wireless Personal Area Network (6LoWPAN) Neighbor Discovery</span>
Abstract
This specification updates <a href="./rfc6775">RFC 6775</a> -- the Low-Power Wireless
Personal Area Network (6LoWPAN) Neighbor Discovery specification --
to clarify the role of the protocol as a registration technique and
simplify the registration operation in 6LoWPAN routers, as well as to
provide enhancements to the registration capabilities and mobility
detection for different network topologies, including the Routing
Registrars performing routing for host routes and/or proxy Neighbor
Discovery in a low-power network.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc7841#section-2">Section 2 of RFC 7841</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="https://www.rfc-editor.org/info/rfc8505">https://www.rfc-editor.org/info/rfc8505</a>.
<span class="grey">Thubert, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Copyright Notice
Copyright (c) 2018 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="https://trustee.ietf.org/license-info">https://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-4">4</a>
<a href="#section-2.1">2.1</a>. Requirements Language ......................................<a href="#page-4">4</a>
<a href="#section-2.2">2.2</a>. Related Documents ..........................................<a href="#page-4">4</a>
<a href="#section-2.3">2.3</a>. Abbreviations ..............................................<a href="#page-4">4</a>
<a href="#section-2.4">2.4</a>. New Terms ..................................................<a href="#page-6">6</a>
<a href="#section-3">3</a>. Applicability of Address Registration Options ...................<a href="#page-7">7</a>
<a href="#section-4">4</a>. Extended Neighbor Discovery Options and Messages ................<a href="#page-8">8</a>
<a href="#section-4.1">4.1</a>. Extended Address Registration Option (EARO) ................<a href="#page-8">8</a>
<a href="#section-4.2">4.2</a>. Extended Duplicate Address Message Formats ................<a href="#page-12">12</a>
<a href="#section-4.3">4.3</a>. Extensions to the Capability Indication Option ............<a href="#page-13">13</a>
<a href="#section-5">5</a>. Updating <a href="./rfc6775">RFC 6775</a> ..............................................<a href="#page-14">14</a>
<a href="#section-5.1">5.1</a>. Extending the Address Registration Option .................<a href="#page-16">16</a>
<a href="#section-5.2">5.2</a>. Transaction ID ............................................<a href="#page-17">17</a>
<a href="#section-5.2.1">5.2.1</a>. Comparing TID Values ...............................<a href="#page-17">17</a>
<a href="#section-5.3">5.3</a>. Registration Ownership Verifier (ROVR) ....................<a href="#page-19">19</a>
<a href="#section-5.4">5.4</a>. Extended Duplicate Address Messages .......................<a href="#page-20">20</a>
<a href="#section-5.5">5.5</a>. Registering the Target Address ............................<a href="#page-20">20</a>
<a href="#section-5.6">5.6</a>. Link-Local Addresses and Registration .....................<a href="#page-21">21</a>
<a href="#section-5.7">5.7</a>. Maintaining the Registration States .......................<a href="#page-22">22</a>
<a href="#section-6">6</a>. Backward Compatibility .........................................<a href="#page-24">24</a>
<a href="#section-6.1">6.1</a>. Signaling EARO Support ....................................<a href="#page-25">25</a>
<a href="#section-6.2">6.2</a>. <a href="./rfc6775">RFC 6775</a>-Only 6LN .........................................<a href="#page-25">25</a>
<a href="#section-6.3">6.3</a>. <a href="./rfc6775">RFC 6775</a>-Only 6LR .........................................<a href="#page-25">25</a>
<a href="#section-6.4">6.4</a>. <a href="./rfc6775">RFC 6775</a>-Only 6LBR ........................................<a href="#page-26">26</a>
<a href="#section-7">7</a>. Security Considerations ........................................<a href="#page-26">26</a>
<a href="#section-8">8</a>. Privacy Considerations .........................................<a href="#page-28">28</a>
<span class="grey">Thubert, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<a href="#section-9">9</a>. IANA Considerations ............................................<a href="#page-29">29</a>
<a href="#section-9.1">9.1</a>. Address Registration Option Flags .........................<a href="#page-29">29</a>
<a href="#section-9.2">9.2</a>. Address Registration Option I-Field .......................<a href="#page-29">29</a>
<a href="#section-9.3">9.3</a>. ICMP Codes ................................................<a href="#page-30">30</a>
<a href="#section-9.4">9.4</a>. New ARO Status Values .....................................<a href="#page-31">31</a>
<a href="#section-9.5">9.5</a>. New 6LoWPAN Capability Bits ...............................<a href="#page-32">32</a>
<a href="#section-10">10</a>. References ....................................................<a href="#page-32">32</a>
<a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-32">32</a>
<a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-34">34</a>
<a href="#appendix-A">Appendix A</a>. Applicability and Fulfilled Requirements
(Not Normative) .......................................<a href="#page-38">38</a>
<a href="#appendix-B">Appendix B</a>. Requirements (Not Normative) ..........................<a href="#page-39">39</a>
<a href="#appendix-B.1">B.1</a>. Requirements Related to Mobility ...........................<a href="#page-39">39</a>
<a href="#appendix-B.2">B.2</a>. Requirements Related to Routing Protocols ..................<a href="#page-40">40</a>
<a href="#appendix-B.3">B.3</a>. Requirements Related to Various Low-Power Link Types .......<a href="#page-41">41</a>
<a href="#appendix-B.4">B.4</a>. Requirements Related to Proxy Operations ...................<a href="#page-42">42</a>
<a href="#appendix-B.5">B.5</a>. Requirements Related to Security ...........................<a href="#page-42">42</a>
<a href="#appendix-B.6">B.6</a>. Requirements Related to Scalability ........................<a href="#page-44">44</a>
<a href="#appendix-B.7">B.7</a>. Requirements Related to Operations and Management ..........<a href="#page-44">44</a>
<a href="#appendix-B.8">B.8</a>. Matching Requirements with Specifications ..................<a href="#page-45">45</a>
Acknowledgments ...................................................<a href="#page-47">47</a>
Authors' Addresses ................................................<a href="#page-47">47</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
IPv6 Low-Power and Lossy Networks (LLNs) support star and mesh
topologies. For such networks, "Neighbor Discovery Optimization for
IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"
[<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] (also referred to as "6LoWPAN Neighbor Discovery (ND)")
defines a registration mechanism and a central IPv6 ND Registrar to
ensure unique addresses. The 6LoWPAN ND mechanism reduces the
dependency of the IPv6 ND protocol [<a href="./rfc4861" title=""Neighbor Discovery for IP version 6 (IPv6)"">RFC4861</a>] [<a href="./rfc4862" title=""IPv6 Stateless Address Autoconfiguration"">RFC4862</a>] on
network-layer multicast and link-layer broadcast operations.
This specification updates 6LoWPAN ND [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] to simplify and
generalize registration in 6LoWPAN Routers (6LRs). In particular,
this specification modifies and extends the behavior and protocol
elements of 6LoWPAN ND to enable the following actions:
o Determining the most recent location in the case of node mobility
o Simplifying the registration flow for Link-Local Addresses
o Support for a routing-unaware leaf node in a route-over network
o Proxy registration in a route-over network
<span class="grey">Thubert, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
o Enabling verification for the registration, using the Registration
Ownership Verifier (ROVR) (<a href="#section-5.3">Section 5.3</a>)
o Registration to an IPv6 ND proxy (e.g., a Routing Registrar)
o Better support for privacy and temporary addresses
These features satisfy the requirements listed in <a href="#appendix-B">Appendix B</a>.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Requirements Language</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in
<a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>] [<a href="./rfc8174" title=""Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"">RFC8174</a>] when, and only when, they appear in all
capitals, as shown here.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Related Documents</span>
In this document, readers will encounter terms and concepts that are
discussed in the following documents:
o "Neighbor Discovery for IP version 6 (IPv6)" [<a href="./rfc4861" title=""Neighbor Discovery for IP version 6 (IPv6)"">RFC4861</a>]
o "IPv6 Stateless Address Autoconfiguration" [<a href="./rfc4862" title=""IPv6 Stateless Address Autoconfiguration"">RFC4862</a>]
o "IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs):
Overview, Assumptions, Problem Statement, and Goals" [<a href="./rfc4919" title=""IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs): Overview, Assumptions, Problem Statement, and Goals"">RFC4919</a>]
o "Problem Statement and Requirements for IPv6 over Low-Power
Wireless Personal Area Network (6LoWPAN) Routing" [<a href="./rfc6606" title=""Problem Statement and Requirements for IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Routing"">RFC6606</a>]
o "Neighbor Discovery Optimization for IPv6 over Low-Power Wireless
Personal Area Networks (6LoWPANs)" [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>]
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Abbreviations</span>
This document uses the following abbreviations:
6BBR: 6LoWPAN Backbone Router
6CIO: Capability Indication Option
6LBR: 6LoWPAN Border Router
6LN: 6LoWPAN Node
<span class="grey">Thubert, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
6LoWPAN: IPv6 over Low-Power Wireless Personal Area Network
6LR: 6LoWPAN Router
ARO: Address Registration Option
DAC: Duplicate Address Confirmation
DAD: Duplicate Address Detection
DAR: Duplicate Address Request
DODAG: Destination-Oriented Directed Acyclic Graph
EARO: Extended Address Registration Option
EDA: Extended Duplicate Address
EDAC: Extended Duplicate Address Confirmation
EDAR: Extended Duplicate Address Request
LLN: Low-Power and Lossy Network
NA: Neighbor Advertisement
NCE: Neighbor Cache Entry
ND: Neighbor Discovery
NS: Neighbor Solicitation
RA: Router Advertisement
ROVR: Registration Ownership Verifier (pronounced "rover")
RPL: IPv6 Routing Protocol for LLNs (pronounced "ripple") [<a href="./rfc6550" title=""RPL: IPv6 Routing Protocol for Low-Power and Lossy Networks"">RFC6550</a>]
RS: Router Solicitation
TID: Transaction ID (a sequence counter in the EARO)
<span class="grey">Thubert, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. New Terms</span>
Backbone Link: An IPv6 transit link that interconnects two or more
Backbone Routers.
Binding: The association between an IP address, a Media Access
Control (MAC) address, and other information about the node
that owns the IP address.
Registration: The process by which a 6LN registers an IPv6 Address
with a 6LR in order to establish connectivity to the LLN.
Registered Node: The 6LN for which the registration is performed,
according to the fields in the EARO.
Registering Node: The node that performs the registration. Either
the Registered Node or a proxy.
IPv6 ND Registrar: A node that can process a registration in either
NS(EARO) or EDAR messages and consequently respond with an NA
or EDAC message containing the EARO and appropriate status for
the registration.
Registered Address: An address registered for the Registered Node.
<a href="./rfc6775">RFC 6775</a>-only: An implementation, a type of node, or a message that
behaves only as specified by [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>], as opposed to the
behavior specified in this document.
Route-over network: A network for which connectivity is provided at
the IP layer.
Routing Registrar: An IPv6 ND Registrar that also provides
reachability services for the Registered Address, including DAD
and proxy NA.
Backbone Router (6BBR): A Routing Registrar that proxies the 6LoWPAN
ND operations specified in this document to ensure that
multiple LLNs federated by a Backbone Link operate as a single
IPv6 subnetwork.
updated: A 6LN, 6LR, or 6LBR that supports this specification, in
contrast to an <a href="./rfc6775">RFC 6775</a>-only device.
<span class="grey">Thubert, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Applicability of Address Registration Options</span>
The ARO as described in [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] facilitates DAD for hosts and
populates NCEs [<a href="./rfc4861" title=""Neighbor Discovery for IP version 6 (IPv6)"">RFC4861</a>] in the routers. This reduces the reliance
on multicast operations, which are often as intrusive as broadcast,
in IPv6 ND operations (see [<a href="#ref-Multicast-over-IEEE802-Wireless">Multicast-over-IEEE802-Wireless</a>]).
This document specifies new status codes for registrations rejected
by a 6LR or 6LBR for reasons other than address duplication.
Examples include:
o the router running out of space.
o a registration bearing a stale sequence number. This could happen
if the host moves after the registration was placed.
o a host misbehaving and attempting to register an invalid address,
such as the unspecified address as defined in [<a href="./rfc4291" title=""IP Version 6 Addressing Architecture"">RFC4291</a>].
o a host using an address that is not topologically correct on
that link.
In such cases, the host will receive an error that will help diagnose
the issue; the host may retry -- possibly with a different address or
possibly registering to a different router -- depending on the
returned error. The ability to return errors to address
registrations is not intended to be used to restrict the ability of
hosts to form and use multiple addresses. Each host may form and
register a number of addresses for enhanced privacy, using mechanisms
such as those described in [<a href="./rfc4941" title=""Privacy Extensions for Stateless Address Autoconfiguration in IPv6"">RFC4941</a>] ("Privacy Extensions for
Stateless Address Autoconfiguration in IPv6"), e.g., Stateless
Address Autoconfiguration (SLAAC), and SHOULD conform to [<a href="./rfc7934" title=""Host Address Availability Recommendations"">RFC7934</a>]
("Host Address Availability Recommendations").
As indicated in IPv6 ND [<a href="./rfc4861" title=""Neighbor Discovery for IP version 6 (IPv6)"">RFC4861</a>], a router needs enough storage to
hold NCEs for all directly connected addresses to which it is
currently forwarding packets (unused entries may be flushed). In
contrast, a router serving the address-registration mechanism needs
enough storage to hold NCEs for all the addresses that may be
registered to it, regardless of whether or not they are actively
communicating. The number of registrations supported by a 6LR or
6LBR MUST be clearly documented by the vendor, and the dynamic use of
associated resources SHOULD be made available to the network
operator, e.g., to a management console. Network administrators need
to ensure that 6LRs/6LBRs in their network support the number and
types of devices that can register to them, based on the number of
IPv6 Addresses that those devices require, as well as their address
renewal rate and behavior.
<span class="grey">Thubert, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Extended Neighbor Discovery Options and Messages</span>
This specification does not introduce any new options; it modifies
existing options and updates the associated behaviors.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Extended Address Registration Option (EARO)</span>
The ARO is defined in <a href="./rfc6775#section-4.1">Section 4.1 of [RFC6775]</a>.
This specification introduces the EARO; the EARO is based on the ARO
for use in NS and NA messages. The EARO includes a sequence counter
called the Transaction ID (TID), which is used to determine the
latest location of a registering mobile device. A new T flag
indicates that the presence of the TID field is populated and that
the option is an EARO. A 6LN requests routing or proxy services from
a 6LR using a new R flag in the EARO.
The EUI-64 field is redefined and renamed "ROVR field" in order to
carry different types of information, e.g., cryptographic information
of variable size (see <a href="#section-5.3">Section 5.3</a>). A larger ROVR size MAY be used
if and only if backward compatibility is not an issue in the
particular LLN. The length of the ROVR field, expressed in units of
8 bytes, is the Length value of the option minus 1. A larger ROVR
size MAY be used if and only if backward compatibility is not an
issue in the particular LLN.
<a href="#section-5.1">Section 5.1</a> discusses those changes in depth.
<span class="grey">Thubert, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
The format of the EARO is shown in Figure 1:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Status | Opaque |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Rsvd | I |R|T| TID | Registration Lifetime |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
... Registration Ownership Verifier (ROVR) ...
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 1: EARO Format
Option Fields:
Type: 33
Length: 8-bit unsigned integer. The length of the option in
units of 8 bytes.
Status: 8-bit unsigned integer. Indicates the status of a
registration in the NA response. MUST be set to 0 in NS
messages. See Table 1 below.
Opaque: An octet opaque to ND. The 6LN MAY pass it transparently
to another process. It MUST be set to 0 when not used.
Rsvd (Reserved):
This field is unused. It MUST be initialized to 0 by the
sender and MUST be ignored by the receiver.
I: 2-bit integer. A value of 0 indicates that the Opaque
field carries an abstract index that is used to decide in
which routing topology the address is expected to be
injected. In that case, the Opaque field is passed to a
routing process with the indication that it carries
topology information, and the value of 0 indicates
default. All other values of "I" are reserved and
MUST NOT be used.
R: The Registering Node sets the R flag to request
reachability services for the Registered Address from a
Routing Registrar.
T: 1-bit flag. Set if the next octet is used as a TID.
<span class="grey">Thubert, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
TID: 1-byte unsigned integer. A Transaction ID that is
maintained by the node and incremented with each
transaction of one or more registrations performed at the
same time to one or more 6LRs. This field MUST be
ignored if the T flag is not set.
Registration Lifetime:
16-bit integer, expressed in minutes. A value of 0
indicates that the registration has ended and that the
associated state MUST be removed.
Registration Ownership Verifier (ROVR):
Enables the correlation between multiple attempts to
register the same IPv6 Address. The ROVR size MUST be
64 bits when backward compatibility is needed; otherwise,
the size MAY be 128, 192, or 256 bits.
<span class="grey">Thubert, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
+-------+-----------------------------------------------------------+
| Value | Description |
+-------+-----------------------------------------------------------+
| 0-2 | As defined in [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>]. Note: A Status value of 1 |
| | ("Duplicate Address") applies to the Registered Address. |
| | If the Source Address conflicts with an existing |
| | registration, "Duplicate Source Address" MUST be used. |
| | |
| 3 | Moved: The registration failed because it is not the most |
| | recent. This Status indicates that the registration is |
| | rejected because another more recent registration was |
| | done, as indicated by the same ROVR and a more recent |
| | TID. One possible cause is a stale registration that has |
| | progressed slowly in the network and was passed by a more |
| | recent one. It could also indicate a ROVR collision. |
| | |
| 4 | Removed: The binding state was removed. This Status MAY |
| | be placed in an NA(EARO) message that is sent as the |
| | rejection of a proxy registration to an IPv6 ND |
| | Registrar, or in an asynchronous NA(EARO), at any time. |
| | |
| 5 | Validation Requested: The Registering Node is challenged |
| | for owning the Registered Address or for being an |
| | acceptable proxy for the registration. An IPv6 ND |
| | Registrar MAY place this Status in asynchronous DAC or NA |
| | messages. |
| | |
| 6 | Duplicate Source Address: The address used as the source |
| | of the NS(EARO) conflicts with an existing registration. |
| | |
| 7 | Invalid Source Address: The address used as the source of |
| | the NS(EARO) is not a Link-Local Address. |
| | |
| 8 | Registered Address Topologically Incorrect: The address |
| | being registered is not usable on this link. |
| | |
| 9 | 6LBR Registry Saturated: A new registration cannot be |
| | accepted because the 6LBR Registry is saturated. Note: |
| | This code is used by 6LBRs instead of Status 2 when |
| | responding to a Duplicate Address message exchange and is |
| | passed on to the Registering Node by the 6LR. |
| | |
| 10 | Validation Failed: The proof of ownership of the |
| | Registered Address is not correct. |
+-------+-----------------------------------------------------------+
Table 1: EARO Status Codes
<span class="grey">Thubert, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Extended Duplicate Address Message Formats</span>
The DAR and DAC messages share a common base format as defined in
<a href="./rfc6775#section-4.4">Section 4.4 of [RFC6775]</a>. Those messages enable information from the
ARO to be transported over multiple hops. The DAR and DAC are
extended as shown in Figure 2:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type |CodePfx|CodeSfx| Checksum |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Status | TID | Registration Lifetime |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
... Registration Ownership Verifier (ROVR) ...
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
+ +
| |
+ Registered Address +
| |
+ +
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 2: Extended Duplicate Address Message Format
Modified Message Fields:
Code: The ICMP Code [<a href="./rfc4443" title=""Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification"">RFC4443</a>] for Duplicate Address messages is
split into two 4-bit fields: the Code Prefix and the Code
Suffix. The Code Prefix MUST be set to 0 by the sender
and MUST be ignored by the receiver. A non-null value of
the Code Suffix indicates support for this specification.
It MUST be set to 1 when operating in a backward-
compatible mode, indicating a ROVR size of 64 bits. It
MAY be 2, 3, or 4, denoting a ROVR size of 128, 192, or
256 bits, respectively.
TID: 1-byte integer. Same definition and processing as the
TID in the EARO as defined in <a href="#section-4.1">Section 4.1</a>. This field
MUST be ignored if the ICMP Code is null.
<span class="grey">Thubert, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Registration Ownership Verifier (ROVR):
The size of the ROVR is known from the ICMP Code Suffix.
This field has the same definition and processing as the
ROVR in the EARO as defined in <a href="#section-4.1">Section 4.1</a>.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Extensions to the Capability Indication Option</span>
This specification defines five new capability bits for use in the
6CIO as defined by [<a href="./rfc7400" title=""6LoWPAN-GHC: Generic Header Compression for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC7400</a>] ("6LoWPAN-GHC: Generic Header
Compression for IPv6 over Low-Power Wireless Personal Area Networks
(6LoWPANs)"), for use in IPv6 ND messages. (The G flag is defined in
<a href="./rfc7400#section-3.3">Section 3.3 of [RFC7400]</a>.)
The D flag indicates that the 6LBR supports EDAR and EDAC messages.
A 6LR that learns the D flag from advertisements can then exchange
EDAR and EDAC messages with the 6LBR, and it also sets the D flag as
well as the L flag in the 6CIO in its own advertisements. In this
way, 6LNs will be able to prefer registration with a 6LR that can
make use of new 6LBR features.
The new L, B, and P flags indicate whether a router is capable of
acting as a 6LR, 6LBR, or Routing Registrar (e.g., 6BBR) (or some
combination thereof), respectively. These flags are not mutually
exclusive; an updated node can advertise multiple collocated
functions.
The E flag indicates that the EARO can be used in a registration. A
6LR that supports this specification MUST set the E flag.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length = 1 | Reserved |D|L|B|P|E|G|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 3: New Capability Bits in the 6CIO
<span class="grey">Thubert, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Option Fields:
Type: 36
D: The 6LBR supports EDAR and EDAC messages.
L: The node is a 6LR.
B: The node is a 6LBR.
P: The node is a Routing Registrar.
E: The node is an IPv6 ND Registrar; i.e., it supports registrations
based on the EARO.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Updating <a href="./rfc6775">RFC 6775</a></span>
The EARO (see <a href="#section-4.1">Section 4.1</a>) updates the ARO used within NS and NA
messages between a 6LN and a 6LR. The update enables a registration
to a Routing Registrar in order to obtain additional services, such
as return routability to the Registered Address by such means as
routing and/or proxy ND, as illustrated in Figure 4.
Routing
6LN Registrar
| |
| NS(EARO) |
|--------------->|
| |
| | Inject/maintain
| | host route or
| | IPv6 ND proxy state
| | <----------------->
| NA(EARO) |
|<---------------|
| |
Figure 4: (Re-)Registration Flow
Similarly, the EDAR and EDAC update the DAR and DAC messages so as to
transport the new information between 6LRs and 6LBRs across an LLN
mesh. The extensions to the ARO are the DAR and the DAC, as used in
the Duplicate Address messages. They convey the additional
information all the way to the 6LBR.
<span class="grey">Thubert, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
In turn, the 6LBR may proxy the registration to obtain reachability
services from a Routing Registrar such as a 6BBR, as illustrated in
Figure 5. This specification avoids the Duplicate Address message
flow for Link-Local Addresses in a route-over [<a href="./rfc6606" title=""Problem Statement and Requirements for IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Routing"">RFC6606</a>] topology (see
<a href="#section-5.6">Section 5.6</a>).
Routing
6LN 6LR 6LBR Registrar
| | | |
|<Link-local>| <Routed> |<Link-local>|
| | | |
| NS(EARO) | | |
|----------->| | |
| | Extended DAR | |
| |------------->| |
| | | proxy |
| | | NS(EARO) |
| | |----------->|
| | | | Inject/maintain
| | | | host route or
| | | | IPv6 ND proxy state
| | | | <----------------->
| | | proxy |
| | | NA(EARO) |
| | Extended DAC |<-----------|
| |<-------------| |
| NA(EARO) | | |
|<-----------| | |
| | | |
Figure 5: (Re-)Registration Flow
This specification allows multiple registrations, including
registrations for privacy and temporary addresses, and provides a
mechanism to help clean up stale registration state as soon as
possible, e.g., after a movement (see <a href="#section-7">Section 7</a>).
<a href="./rfc6775#section-5">Section 5 of [RFC6775]</a> specifies how a 6LN bootstraps an interface
and locates available 6LRs. A Registering Node SHOULD register to a
6LR that supports this specification if one is found, as discussed in
<a href="#section-6.1">Section 6.1</a>, instead of registering to an <a href="./rfc6775">RFC 6775</a>-only 6LR;
otherwise, the Registering Node operates in a backward-compatible
fashion when attaching to an <a href="./rfc6775">RFC 6775</a>-only 6LR.
<span class="grey">Thubert, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Extending the Address Registration Option</span>
The EARO updates the ARO and is backward compatible with the ARO if
and only if the Length value of the option is set to 2. The format
of the EARO is presented in <a href="#section-4.1">Section 4.1</a>. More details on backward
compatibility can be found in <a href="#section-6">Section 6</a>.
The NS message and the ARO are modified as follows:
o The Target Address field in the NS containing the EARO is now the
field that indicates the address that is being registered, as
opposed to the Source Address field in the NS as specified in
[<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] (see <a href="#section-5.5">Section 5.5</a>). This change enables a 6LBR to send a
proxy registration for a 6LN's address to a Routing Registrar and
in most cases also avoids the use of an address as the Source
Address before it is registered.
o The EUI-64 field in the ARO is renamed "Registration Ownership
Verifier (ROVR)" and is not required to be derived from a MAC
address (see <a href="#section-5.3">Section 5.3</a>).
o The option's Length value MAY be different than 2 and take a value
between 3 and 5, in which case the EARO is not backward compatible
with an ARO. The increase in size corresponds to a larger ROVR
field, so the size of the ROVR is inferred from the option's
Length value.
o A new Opaque field is introduced to carry opaque information in
cases where the registration is relayed to another process, e.g.,
to be advertised by a routing protocol. A new "I" field provides
a type for the opaque information and indicates the other process
to which the 6LN passes the opaque value. A value of 0 for the
"I" field indicates topological information to be passed to a
routing process if the registration is redistributed. In that
case, a value of 0 for the Opaque field (1) is backward compatible
with the reserved fields that are overloaded and (2) indicates
that the default topology is to be used.
o This document specifies a new flag in the EARO: the R flag. If
the R flag is set, the Registering Node requests that the 6LR
ensure reachability for the Registered Address, e.g., by means of
routing or proxy ND. Conversely, when it is not set, the R flag
indicates that the Registering Node is a router and that it will
advertise reachability to the Registered Address via a routing
protocol (such as RPL [<a href="./rfc6550" title=""RPL: IPv6 Routing Protocol for Low-Power and Lossy Networks"">RFC6550</a>]).
<span class="grey">Thubert, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
o A node that supports this specification MUST provide a TID field
in the EARO and set the T flag to indicate the presence of the TID
(see <a href="#section-5.2">Section 5.2</a>).
o Finally, this specification introduces new status codes to help
diagnose the cause of a registration failure (see Table 1).
When registering, a 6LN that acts only as a host MUST set the R flag
to indicate that it is not a router and that it will not handle its
own reachability. A 6LR that manages its reachability SHOULD NOT set
the R flag; if it does, routes towards this router may be installed
on its behalf and may interfere with those it advertises.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Transaction ID</span>
The TID is a sequence number that is incremented by the 6LN with each
re-registration to a 6LR. The TID is used to determine the recency
of the registration request. The network uses the most recent TID to
determine the most recent known location(s) of a moving 6LN. When a
Registered Node is registered with multiple 6LRs in parallel, the
same TID MUST be used. This enables the 6LBRs and/or Routing
Registrars to determine whether the registrations are identical and
to distinguish that situation from a movement (for example, see
<a href="#section-5.7">Section 5.7</a> and <a href="#appendix-A">Appendix A</a>).
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>. Comparing TID Values</span>
The operation of the TID is fully compatible with that of the RPL
Path Sequence counter as described in <a href="./rfc6550#section-7.2">Section 7.2 of [RFC6550]</a>
("RPL: IPv6 Routing Protocol for Low-Power and Lossy Networks").
A TID is deemed to be more recent than another when its value is
greater as determined by the operations detailed in this section.
The TID range is subdivided in a "lollipop" fashion [<a href="#ref-Perlman83">Perlman83</a>],
where the values from 128 and greater are used as a linear sequence
to indicate a restart and bootstrap the counter, and the values less
than or equal to 127 are used as a circular sequence number space of
size 128 as mentioned in [<a href="./rfc1982" title=""Serial Number Arithmetic"">RFC1982</a>]. Consideration is given to the
mode of operation when transitioning from the linear region to the
circular region. Finally, when operating in the circular region, if
sequence numbers are determined to be too far apart, then they are
not comparable, as detailed below.
A window of comparison, SEQUENCE_WINDOW = 16, is configured based on
a value of 2^N, where N is defined to be 4 in this specification.
<span class="grey">Thubert, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
For a given sequence counter,
1. Prior to use, the sequence counter SHOULD be initialized to an
implementation-defined value of 128 or greater. A recommended
value is 240 (256 - SEQUENCE_WINDOW).
2. When a sequence counter increment would cause the sequence
counter to increment beyond its maximum value, the sequence
counter MUST wrap back to 0. When incrementing a sequence
counter greater than or equal to 128, the maximum value is 255.
When incrementing a sequence counter less than 128, the maximum
value is 127.
3. When comparing two sequence counters, the following rules MUST be
applied:
1. When a first sequence counter A is in the interval [128-255]
and a second sequence counter B is in the interval [0-127]:
1. If (256 + B - A) is less than or equal to
SEQUENCE_WINDOW, then B is greater than A, A is less than
B, and the two are not equal.
2. If (256 + B - A) is greater than SEQUENCE_WINDOW, then A
is greater than B, B is less than A, and the two are not
equal.
For example, if A is 240 and B is 5, then (256 + 5 - 240) is
21. 21 is greater than SEQUENCE_WINDOW (16); thus, 240 is
greater than 5. As another example, if A is 250 and B is 5,
then (256 + 5 - 250) is 11. 11 is less than SEQUENCE_WINDOW
(16); thus, 250 is less than 5.
2. In the case where both sequence counters to be compared are
less than or equal to 127, and in the case where both
sequence counters to be compared are greater than or equal
to 128:
1. If the absolute magnitude of difference between the two
sequence counters is less than or equal to
SEQUENCE_WINDOW, then a comparison as described in
[<a href="./rfc1982" title=""Serial Number Arithmetic"">RFC1982</a>] is used to determine the relationships
"greater than", "less than", and "equal".
2. If the absolute magnitude of difference of the two
sequence counters is greater than SEQUENCE_WINDOW, then a
desynchronization has occurred and the two sequence
numbers are not comparable.
<span class="grey">Thubert, et al. Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
4. If two sequence numbers are determined to be not comparable,
i.e., the results of the comparison are not defined, then a node
should give precedence to the sequence number that was most
recently incremented. Failing this, the node should select the
sequence number in order to minimize the resulting changes to its
own state.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Registration Ownership Verifier (ROVR)</span>
The ROVR field replaces the EUI-64 field of the ARO defined in
[<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>]. It is associated in the 6LR and the 6LBR with the
registration state. The ROVR can be a unique ID of the Registering
Node, such as the EUI-64 address of an interface. This can also be a
token obtained with cryptographic methods that can be used in
additional protocol exchanges to associate a cryptographic identity
(key) with this registration to ensure that only the owner can modify
it later, if the proof of ownership of the ROVR can be obtained. The
scope of a ROVR is the registration of a particular IPv6 Address, and
it MUST NOT be used to correlate registrations of different
addresses.
The ROVR can be of different types; the type is signaled in the
message that carries the new type. For instance, the type can be a
cryptographic string and can be used to prove the ownership of the
registration as specified in [<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>] ("Address Protected Neighbor
Discovery for Low-power and Lossy Networks"). In order to support
the flows related to the proof of ownership, this specification
introduces new status codes "Validation Requested" and "Validation
Failed" in the EARO.
Note regarding ROVR collisions: Different techniques for forming the
ROVR will operate in different namespaces. [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] specifies the
use of EUI-64 addresses. [<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>] specifies the generation of
cryptographic tokens. While collisions are not expected in the
EUI-64 namespace only, they may happen if [<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>] is implemented by
at least one of the nodes. An implementation that understands the
namespace MUST consider that ROVRs from different namespaces are
different even if they have the same value. An <a href="./rfc6775">RFC 6775</a>-only 6LBR or
6LR will confuse the namespaces; this slightly increases the risk of
a ROVR collision. A ROVR collision has no effect if the two
Registering Nodes register different addresses, since the ROVR is
only significant within the context of one registration. A ROVR is
not expected to be unique to one registration, as this specification
allows a node to use the same ROVR to register multiple IPv6
Addresses. This is why the ROVR MUST NOT be used as a key to
identify the Registering Node or as an index to the registration. It
is only used as a match to ensure that the node that updates a
registration for an IPv6 Address is the node that made the original
<span class="grey">Thubert, et al. Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
registration for that IPv6 Address. Also, when the ROVR is not an
EUI-64 address, then it MUST NOT be used as the Interface Identifier
of the Registered Address. This way, a registration that uses that
ROVR will not collide with that of an IPv6 Address derived from
EUI-64 and using the EUI-64 as the ROVR per [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>].
The Registering Node SHOULD store the ROVR, or enough information to
regenerate it, in persistent memory. If this is not done and an
event such as a reboot causes a loss of state, re-registering the
same address could be impossible until (1) the 6LRs and the 6LBR
time out the previous registration or (2) a management action clears
the relevant state in the network.
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Extended Duplicate Address Messages</span>
In order to map the new EARO content in the EDA messages, a new TID
field is added to the EDAR and EDAC messages as a replacement for the
Reserved field, and a non-null value of the ICMP Code indicates
support for this specification. The format of the EDAR and EDAC
messages is presented in <a href="#section-4.2">Section 4.2</a>.
As with the EARO, the EDA messages are backward compatible with the
<a href="./rfc6775">RFC 6775</a>-only versions, as long as the ROVR field is 64 bits long.
Remarks concerning backward compatibility for the protocol between
the 6LN and the 6LR apply similarly between a 6LR and a 6LBR.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. Registering the Target Address</span>
An NS message with an EARO is a registration if and only if it also
carries an SLLA Option ("SLLAO") [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] ("SLLA" stands for "Source
Link-Layer Address"). The EARO can also be used in NS and NA
messages between Routing Registrars to determine the distributed
registration state; in that case, it does not carry the SLLA Option
and is not confused with a registration.
The Registering Node is the node that performs the registration to
the Routing Registrar. As also described in [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>], it may be the
Registered Node as well, in which case it registers one of its own
addresses and indicates its own MAC address as the SLLA in the
NS(EARO).
This specification adds the capability to proxy the registration
operation on behalf of a Registered Node that is reachable over an
LLN mesh. In that case, if the Registered Node is reachable from the
Routing Registrar via a mesh-under configuration, the Registering
Node indicates the MAC address of the Registered Node as the SLLA in
the NS(EARO). If the Registered Node is reachable over a route-over
configuration from the Registering Node, the SLLA in the NS(ARO) is
<span class="grey">Thubert, et al. Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
that of the Registering Node. This enables the Registering Node to
attract the packets from the Routing Registrar and route them over
the LLN to the Registered Node.
In order to enable the latter operation, this specification changes
the behavior of the 6LN and the 6LR so that the Registered Address is
found in the Target Address field of the NS and NA messages as
opposed to the Source Address field. With this convention, a TLLA
Option (Target Link-Layer Address Option, or "TLLAO") indicates the
link-layer address of the 6LN that owns the address.
A Registering Node (e.g., a 6LBR also acting as a RPL root) that
advertises reachability for the 6LN MUST place its own link-layer
address in the SLLA Option of the registration NS(EARO) message.
This maintains compatibility with <a href="./rfc6775">RFC 6775</a>-only 6LoWPAN ND.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. Link-Local Addresses and Registration</span>
LLN nodes are often not wired and may move. There is no guarantee
that a Link-Local Address will remain unique among a huge and
potentially variable set of neighboring nodes.
Compared to [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>], this specification only requires that a
Link-Local Address be unique from the perspective of the two nodes
that use it to communicate (e.g., the 6LN and the 6LR in an NS/NA
exchange). This simplifies the DAD process in a route-over topology
for Link-Local Addresses by avoiding an exchange of EDA messages
between the 6LR and a 6LBR for those addresses.
An exchange between two nodes using Link-Local Addresses implies that
they are reachable over one hop. A node MUST register a Link-Local
Address to a 6LR in order to obtain further reachability by way of
that 6LR and, in particular, to use the Link-Local Address as the
Source Address to register other addresses, e.g., global addresses.
If there is no collision with a previously registered address, then
the Link-Local Address is unique from the standpoint of this 6LR and
the registration is not a duplicate. Two different 6LRs might claim
the same Link-Local Address but different link-layer addresses. In
that case, a 6LN MUST only interact with at most one of the 6LRs.
The exchange of EDAR and EDAC messages between the 6LR and a 6LBR,
which ensures that an address is unique across the domain covered by
the 6LBR, does not need to take place for Link-Local Addresses.
<span class="grey">Thubert, et al. Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
When sending an NS(EARO) to a 6LR, a 6LN MUST use a Link-Local
Address as the Source Address of the registration, whatever the type
of IPv6 Address that is being registered. That Link-Local Address
MUST be either an address that is already registered to the 6LR or
the address that is being registered.
When a 6LN starts up, it typically multicasts an RS and receives one
or more unicast RA messages from 6LRs. If the 6LR can process EARO
messages, then it places a 6CIO in its RA message with the E flag set
as required in <a href="#section-6.1">Section 6.1</a>.
When a Registering Node does not have an already-registered address,
it MUST register a Link-Local Address, using it as both the Source
Address and the Target Address of an NS(EARO) message. In that case,
it is RECOMMENDED to use an address for which DAD is not required
(see [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>]), e.g., derived from a globally unique EUI-64 address;
using the SLLA Option in the NS is consistent with existing ND
specifications such as [<a href="./rfc4429" title=""Optimistic Duplicate Address Detection (DAD) for IPv6"">RFC4429</a>] ("Optimistic Duplicate Address
Detection (DAD) for IPv6"). The 6LN MAY then use that address to
register one or more other addresses.
A 6LR that supports this specification replies with an NA(EARO),
setting the appropriate status. Since there is no exchange of EDAR
or EDAC messages for Link-Local Addresses, the 6LR may answer
immediately to the registration of a Link-Local Address, based solely
on its existing state and the SLLA Option that is placed in the
NS(EARO) message as required in [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>].
A node registers its IPv6 Global Unicast Addresses (GUAs) to a 6LR in
order to establish global reachability for these addresses via that
6LR. When registering with an updated 6LR, a Registering Node does
not use a GUA as the Source Address, in contrast to a node that
complies with [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>]. For non-Link-Local Addresses, the exchange
of EDAR and EDAC messages MUST conform to [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>], but the extended
formats described in this specification for the DAR and the DAC are
used to relay the extended information in the case of an EARO.
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. Maintaining the Registration States</span>
This section discusses protocol actions that involve the Registering
Node, the 6LR, and the 6LBR. It must be noted that the portion that
deals with a 6LBR only applies to those addresses that are registered
to it; as discussed in <a href="#section-5.6">Section 5.6</a>, this is not the case for
Link-Local Addresses. The registration state includes all data that
is stored in the router relative to that registration, in particular,
but not limited to, an NCE. 6LBRs and Routing Registrars may store
additional registration information and use synchronization protocols
that are out of scope for this document.
<span class="grey">Thubert, et al. Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
A 6LR cannot accept a new registration when its registration storage
space is exhausted. In that situation, the EARO is returned in an NA
message with a status code of "Neighbor Cache Full" (Status 2; see
[<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] and Table 1), and the Registering Node may attempt to
register to another 6LR.
If the registry in the 6LBR is full, then the 6LBR cannot decide
whether a registration for a new address is a duplicate. In that
case, the 6LBR replies to an EDAR message with an EDAC message that
carries a new status code indicating "6LBR Registry Saturated"
(Table 1). Note: This code is used by 6LBRs instead of "Neighbor
Cache Full" when responding to a Duplicate Address message exchange
and is passed on to the Registering Node by the 6LR. There is no
point in the node retrying this registration via another 6LR, since
the problem is network-wide. The node may abandon that address,
de-register other addresses first to make room, or keep the address
"tentative" [<a href="./rfc4861" title=""Neighbor Discovery for IP version 6 (IPv6)"">RFC4861</a>] and retry later.
A node renews an existing registration by sending a new NS(EARO)
message for the Registered Address, and the 6LR MUST report the new
registration to the 6LBR.
A node that ceases to use an address SHOULD attempt to de-register
that address from all the 6LRs to which it has registered the
address. This is achieved using an NS(EARO) message with a
Registration Lifetime of 0. If this is not done, the associated
state will remain in the network until the current Registration
Lifetime expires; this may lead to a situation where the 6LR
resources become saturated, even if they were correctly planned to
start with. The 6LR may then take defensive measures that may
prevent this node or some other nodes from owning as many addresses
as they request (see <a href="#section-7">Section 7</a>).
A node that moves away from a particular 6LR SHOULD attempt to
de-register all of its addresses registered to that 6LR and register
to a new 6LR with an incremented TID. When/if the node appears
elsewhere, an asynchronous NA(EARO) or EDAC message with a status
code of "Moved" SHOULD be used to clean up the state in the previous
location. The "Moved" status can be used by a Routing Registrar in
an NA(EARO) message to indicate that the ownership of the proxy state
was transferred to another Routing Registrar due to movement of the
device. If the receiver of the message has registration state
corresponding to the related address, it SHOULD propagate the status
down the forwarding path to the Registered Node (e.g., reversing an
existing RPL [<a href="./rfc6550" title=""RPL: IPv6 Routing Protocol for Low-Power and Lossy Networks"">RFC6550</a>] path as prescribed in [<a href="#ref-Efficient-NPDAO">Efficient-NPDAO</a>]).
Whether it could do so or not, the receiver MUST clean up said state.
<span class="grey">Thubert, et al. Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Upon receiving an NS(EARO) message with a Registration Lifetime of 0
and determining that this EARO is the most recent for a given NCE
(see <a href="#section-5.2">Section 5.2</a>), a 6LR cleans up its NCE. If the address was
registered to the 6LBR, then the 6LR MUST report to the 6LBR, through
a Duplicate Address exchange with the 6LBR, indicating the null
Registration Lifetime and the latest TID that this 6LR is aware of.
Upon receiving the EDAR message, the 6LBR determines if this is the
most recent TID it has received for that particular registry entry.
If so, then the EDAR is answered with an EDAC message bearing a
status code of 0 ("Success") [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>], and the entry is scheduled to
be removed. Otherwise, a status code of "Moved" is returned instead,
and the existing entry is maintained.
When an address is scheduled to be removed, the 6LBR SHOULD keep its
NCE in a DELAY state [<a href="./rfc4861" title=""Neighbor Discovery for IP version 6 (IPv6)"">RFC4861</a>] for a configurable period of time, so
as to prevent a scenario where (1) a mobile node that de-registered
from one 6LR did not yet register to a new one or (2) the new
registration did not yet reach the 6LBR due to propagation delays in
the network. Once the DELAY time has passed, the 6LBR silently
removes its entry.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Backward Compatibility</span>
This specification changes the behavior of the peers in a
registration flow. To enable backward compatibility, a 6LN that
registers to a 6LR that is not known to support this specification
MUST behave in a manner that is backward compatible with [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>].
Conversely, if the 6LR is found to support this specification, then
the 6LN MUST conform to this specification when communicating with
that 6LR.
A 6LN that supports this specification MUST always use an EARO as a
replacement for an ARO in its registration to a router. This
behavior is backward compatible, since the T flag and TID field
occupy fields that are reserved in [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] and are thus ignored by
an <a href="./rfc6775">RFC 6775</a>-only router. A router that supports this specification
MUST answer an NS(ARO) and an NS(EARO) with an NA(EARO). A router
that does not support this specification will consider the ROVR as an
EUI-64 address and treat it the same; this scenario has no
consequence if the Registered Addresses are different.
<span class="grey">Thubert, et al. Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Signaling EARO Support</span>
[<a id="ref-RFC7400">RFC7400</a>] specifies the 6CIO, which indicates a node's capabilities
to the node's peers. The 6CIO MUST be present in both RS and RA
messages, unless the 6CIO information was already shared in recent
exchanges or pre-configured in all nodes in a network. In any case,
a 6CIO MUST be placed in an RA message that is sent in response to an
RS with a 6CIO.
<a href="#section-4.3">Section 4.3</a> defines a new flag for the 6CIO to signal EARO support by
the issuer of the message. New flags are also added to the 6CIO to
signal the sender's capability to act as a 6LR, 6LBR, and Routing
Registrar (see <a href="#section-4.3">Section 4.3</a>).
<a href="#section-4.3">Section 4.3</a> also defines a new flag that indicates the support of
EDAR and EDAC messages by the 6LBR. This flag is valid in RA
messages but not in RS messages. More information on the 6LBR is
found in a separate Authoritative Border Router Option (ABRO). The
ABRO is placed in RA messages as prescribed by [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>]; in
particular, it MUST be placed in an RA message that is sent in
response to an RS with a 6CIO indicating the capability to act as a
6LR, since the RA propagates information between routers.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. <a href="./rfc6775">RFC 6775</a>-Only 6LN</span>
An <a href="./rfc6775">RFC 6775</a>-only 6LN will use the Registered Address as the Source
Address of the NS message and will not use an EARO. An updated 6LR
MUST accept that registration if it is valid per [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>], and it
MUST manage the binding cache accordingly. The updated 6LR MUST then
use the <a href="./rfc6775">RFC 6775</a>-only DAR and DAC messages as specified in [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>]
to indicate to the 6LBR that the TID is not present in the messages.
The main difference from [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] is that the exchange of DAR and
DAC messages for the purpose of DAD is avoided for Link-Local
Addresses. In any case, the 6LR MUST use an EARO in the reply and
can use any of the status codes defined in this specification.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. <a href="./rfc6775">RFC 6775</a>-Only 6LR</span>
An updated 6LN discovers the capabilities of the 6LR in the 6CIO in
RA messages from that 6LR; if the 6CIO was not present in the RA,
then the 6LR is assumed to be <a href="./rfc6775">RFC 6775</a>-only.
An updated 6LN MUST use an EARO in the request, regardless of the
type of 6LR -- <a href="./rfc6775">RFC 6775</a>-only or updated; this implies that the T flag
is set. It MUST use a ROVR of 64 bits if the 6LR is <a href="./rfc6775">RFC 6775</a>-only.
<span class="grey">Thubert, et al. Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
If an updated 6LN moves from an updated 6LR to an <a href="./rfc6775">RFC 6775</a>-only 6LR,
the <a href="./rfc6775">RFC 6775</a>-only 6LR will send an <a href="./rfc6775">RFC 6775</a>-only DAR message, which
cannot be compared with an updated one for recency. Allowing
<a href="./rfc6775">RFC 6775</a>-only DAR messages to update a state established by the
updated protocol in the 6LBR would be an attack vector; therefore,
this cannot be the default behavior. But if <a href="./rfc6775">RFC 6775</a>-only and
updated 6LRs coexist temporarily in a network, then it makes sense
for an administrator to install a policy that allows this behavior,
using some method that is out of scope for this document.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. <a href="./rfc6775">RFC 6775</a>-Only 6LBR</span>
With this specification, the Duplicate Address messages are extended
to transport the EARO information. As with the NS/NA exchange, an
updated 6LBR MUST always use the EDAR and EDAC messages.
Note that an <a href="./rfc6775">RFC 6775</a>-only 6LBR will accept and process an EDAR
message as if it were an <a href="./rfc6775">RFC 6775</a>-only DAR, as long as the ROVR is
64 bits long. An updated 6LR discovers the capabilities of the 6LBR
in the 6CIO in RA messages from the 6LR; if the 6CIO was not present
in any RA, then the 6LBR is assumed to be <a href="./rfc6775">RFC 6775</a>-only.
If the 6LBR is <a href="./rfc6775">RFC 6775</a>-only, the 6LR MUST use only the 64 leftmost
bits of the ROVR and place the result in the EDAR message to maintain
compatibility. This way, the support of DAD is preserved.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
This specification extends [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>], and the Security Considerations
section of that document also applies to this document. In
particular, the link layer SHOULD be sufficiently protected to
prevent rogue access.
[<a id="ref-RFC6775">RFC6775</a>] does not protect the content of its messages and expects
lower-layer encryption to defeat potential attacks. This
specification requires the LLN MAC layer to provide secure unicast
to/from a Routing Registrar and secure broadcast or multicast from
the Routing Registrar in a way that prevents tampering with or
replaying the ND messages.
This specification recommends using privacy techniques (see
<a href="#section-8">Section 8</a>) and protecting against address theft via methods that are
outside the scope of this document. As an example, [<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>]
guarantees the ownership of the Registered Address using a
cryptographic ROVR.
<span class="grey">Thubert, et al. Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
The registration mechanism may be used by a rogue node to attack the
6LR or 6LBR with a denial-of-service attack against the registry. It
may also happen that the registry of a 6LR or 6LBR is saturated and
cannot take any more registrations; this scenario effectively denies
the requesting node the capability to use a new address. In order to
alleviate those concerns, (1) <a href="#section-5.2">Section 5.2</a> provides a sequence counter
that keeps incrementing to detect and clean up stale registration
information and that contributes to defeat replay attacks and
(2) <a href="#section-5.7">Section 5.7</a> provides a number of recommendations that ensure that
a stale registration is removed as soon as possible from the 6LR
and 6LBR.
In particular, this specification recommends that:
o A node that ceases to use an address SHOULD attempt to de-register
that address from all the 6LRs to which it is registered.
o The registration lifetimes SHOULD be individually configurable for
each address or group of addresses. A node SHOULD be configured
for each address (or address category) with a Registration
Lifetime that reflects the expectation of how long it will use the
address with the 6LR to which the address is registered. In
particular, use cases that involve mobility or rapid address
changes SHOULD use lifetimes that are the same order of magnitude
as the duration of the expectation of presence but that are still
longer.
o The router (6LR or 6LBR) SHOULD be configurable so as to limit the
number of addresses that can be registered by a single node, but
as a protective measure only. In any case, a router MUST be able
to keep a minimum number of addresses per node. That minimum
depends on the type of device and ranges between 3 for a very
constrained LLN and 10 for a larger device. A node may be
identified by its MAC address, as long as it is not obfuscated by
privacy measures. A stronger identification (e.g., by security
credentials) is RECOMMENDED. When the maximum is reached, the
router SHOULD use a Least Recently Used (LRU) algorithm to
clean up the addresses, keeping at least one Link-Local Address.
The router SHOULD attempt to keep one or more stable addresses if
stability can be determined, e.g., because they are used over a
much longer time span than other (privacy, shorter-lived)
addresses.
o In order to avoid denial of registration due to a lack of
resources, administrators should take great care to deploy
adequate numbers of 6LRs to cover the needs of the nodes in their
range, so as to avoid a situation of starving nodes. It is
expected that the 6LBR that serves an LLN is a more capable node
<span class="grey">Thubert, et al. Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
than the average 6LR, but in a network condition where it may
become saturated, a particular LLN should distribute the 6LBR
functionality -- for instance, by leveraging a high-speed Backbone
Link and Routing Registrars to aggregate multiple LLNs into a
larger subnet.
The LLN nodes depend on a 6LBR and may use the services of a Routing
Registrar for their operation. A trust model MUST be put in place to
ensure that only authorized devices are acting in these roles, so as
to avoid threats such as black-holing or bombing attack whereby an
impersonated 6LBR would destroy state in the network by using the
"Removed" status code. At a minimum, this trust model could be based
on Layer 2 access control or could provide role validation as well
(see Req-5.1 in <a href="#appendix-B.5">Appendix B.5</a>).
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Privacy Considerations</span>
As indicated in <a href="#section-3">Section 3</a>, this protocol does not limit the number of
IPv6 Addresses that each device can form. However, to mitigate
denial-of-service attacks, it can be useful as a protective measure
to have a limit that is high enough not to interfere with the normal
behavior of devices in the network. A host should be able to form
and register any address that is topologically correct in the
subnet(s) advertised by the 6LR/6LBR.
This specification does not mandate any particular way for forming
IPv6 Addresses, but it discourages using EUI-64 for forming the
Interface Identifier in the Link-Local Address because this method
prevents the usage of Secure Neighbor Discovery (SEND) [<a href="./rfc3971" title=""SEcure Neighbor Discovery (SEND)"">RFC3971</a>],
Cryptographically Generated Addresses (CGAs) [<a href="./rfc3972" title=""Cryptographically Generated Addresses (CGA)"">RFC3972</a>], and other
address privacy techniques.
[<a id="ref-RFC8065">RFC8065</a>] ("Privacy Considerations for IPv6 Adaptation-Layer
Mechanisms") explains why privacy is important and how to form
privacy-aware addresses. All implementations and deployments must
consider the option of privacy addresses in their own environments.
The IPv6 Address of the 6LN in the IPv6 header can be compressed
statelessly when the Interface Identifier in the IPv6 Address can be
derived from the lower-layer address. When it is not critical to
benefit from that compression, e.g., the address can be compressed
statefully, or it is rarely used and/or it is used only over one hop,
privacy concerns should be considered. In particular, new
implementations should follow [<a href="./rfc8064" title=""Recommendation on Stable IPv6 Interface Identifiers"">RFC8064</a>] ("Recommendation on Stable
IPv6 Interface Identifiers"). [<a href="./rfc8064" title=""Recommendation on Stable IPv6 Interface Identifiers"">RFC8064</a>] recommends the mechanism
specified in [<a href="./rfc7217" title=""A Method for Generating Semantically Opaque Interface Identifiers with IPv6 Stateless Address Autoconfiguration (SLAAC)"">RFC7217</a>] ("A Method for Generating Semantically Opaque
Interface Identifiers with IPv6 Stateless Address Autoconfiguration
(SLAAC)") for generating Interface Identifiers to be used in SLAAC.
<span class="grey">Thubert, et al. Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. IANA Considerations</span>
IANA has made a number of changes under the "Internet Control Message
Protocol version 6 (ICMPv6) Parameters" registry, as follows.
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Address Registration Option Flags</span>
IANA has created a new subregistry for "Address Registration Option
Flags" under the "Internet Control Message Protocol version 6
(ICMPv6) Parameters" registry. (See [<a href="./rfc4443" title=""Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification"">RFC4443</a>] for information
regarding ICMPv6.)
This specification defines eight positions -- bit 0 to bit 7 -- and
assigns bit 6 for the R flag and bit 7 for the T flag (see
<a href="#section-4.1">Section 4.1</a>). The registration procedure is "IETF Review" or "IESG
Approval" (see [<a href="./rfc8126" title="">RFC8126</a>]).
The initial contents of the registry are shown in Table 2.
+-------------+--------------+------------+
| ARO Status | Description | Reference |
+-------------+--------------+------------+
| 0-5 | Unassigned | |
| | | |
| 6 | R Flag | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 7 | T Flag | <a href="./rfc8505">RFC 8505</a> |
+-------------+--------------+------------+
Table 2: New Address Registration Option Flags
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Address Registration Option I-Field</span>
IANA has created a new subregistry for "Address Registration Option
I-Field" under the "Internet Control Message Protocol version 6
(ICMPv6) Parameters" registry.
This specification defines four integer values from 0 to 3 and
assigns value 0 to "Abstract Index for Topology Selection" (see
<a href="#section-4.1">Section 4.1</a>). The registration procedure is "IETF Review" or "IESG
Approval" [<a href="./rfc8126" title="">RFC8126</a>].
<span class="grey">Thubert, et al. Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
The initial contents of the registry are shown in Table 3.
+--------+---------------------------------------+------------+
| Value | Meaning | Reference |
+--------+---------------------------------------+------------+
| 0 | Abstract Index for Topology Selection | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 1-3 | Unassigned | |
+--------+---------------------------------------+------------+
Table 3: New Subregistry for the EARO I-Field
<span class="h3"><a class="selflink" id="section-9.3" href="#section-9.3">9.3</a>. ICMP Codes</span>
IANA has created two new subregistries of the 'ICMPv6 "Code" Fields'
registry, which itself is a subregistry of ICMPv6 codes in the
"Internet Control Message Protocol version 6 (ICMPv6) Parameters"
registry.
The new subregistries relate to ICMP Types 157 (Duplicate Address
Request) (shown in Table 4) and 158 (Duplicate Address Confirmation)
(shown in Table 5), respectively. For those two ICMP types, the ICMP
Code field is split into two subfields: the Code Prefix and the Code
Suffix. The new subregistries relate to the Code Suffix portion of
the ICMP Code. The range of the Code Suffix is 0-15 in all cases.
The registration procedure is "IETF Review" or "IESG Approval"
[<a href="./rfc8126" title="">RFC8126</a>] for both subregistries.
The initial contents of these subregistries are as follows:
+--------------+--------------------------------------+------------+
| Code Suffix | Meaning | Reference |
+--------------+--------------------------------------+------------+
| 0 | DAR message | <a href="./rfc6775">RFC 6775</a> |
| | | |
| 1 | EDAR message with 64-bit ROVR field | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 2 | EDAR message with 128-bit ROVR field | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 3 | EDAR message with 192-bit ROVR field | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 4 | EDAR message with 256-bit ROVR field | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 5-15 | Unassigned | |
+--------------+--------------------------------------+------------+
Table 4: Code Suffixes for ICMP Type 157 DAR Message
<span class="grey">Thubert, et al. Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
+--------------+--------------------------------------+------------+
| Code Suffix | Meaning | Reference |
+--------------+--------------------------------------+------------+
| 0 | DAC message | <a href="./rfc6775">RFC 6775</a> |
| | | |
| 1 | EDAC message with 64-bit ROVR field | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 2 | EDAC message with 128-bit ROVR field | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 3 | EDAC message with 192-bit ROVR field | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 4 | EDAC message with 256-bit ROVR field | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 5-15 | Unassigned | |
+--------------+--------------------------------------+------------+
Table 5: Code Suffixes for ICMP Type 158 DAC Message
<span class="h3"><a class="selflink" id="section-9.4" href="#section-9.4">9.4</a>. New ARO Status Values</span>
IANA has made additions to the "Address Registration Option Status
Values" subregistry, as follows:
+-------+--------------------------------------------+------------+
| Value | Description | Reference |
+-------+--------------------------------------------+------------+
| 3 | Moved | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 4 | Removed | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 5 | Validation Requested | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 6 | Duplicate Source Address | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 7 | Invalid Source Address | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 8 | Registered Address Topologically Incorrect | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 9 | 6LBR Registry Saturated | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 10 | Validation Failed | <a href="./rfc8505">RFC 8505</a> |
+-------+--------------------------------------------+------------+
Table 6: New ARO Status Values
<span class="grey">Thubert, et al. Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h3"><a class="selflink" id="section-9.5" href="#section-9.5">9.5</a>. New 6LoWPAN Capability Bits</span>
IANA has made additions to the "6LoWPAN Capability Bits" subregistry,
as follows:
+------+---------------------------+------------+
| Bit | Description | Reference |
+------+---------------------------+------------+
| 10 | EDA Support (D bit) | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 11 | 6LR capable (L bit) | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 12 | 6LBR capable (B bit) | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 13 | Routing Registrar (P bit) | <a href="./rfc8505">RFC 8505</a> |
| | | |
| 14 | EARO support (E bit) | <a href="./rfc8505">RFC 8505</a> |
+------+---------------------------+------------+
Table 7: New 6LoWPAN Capability Bits
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC4291">RFC4291</a>] Hinden, R. and S. Deering, "IP Version 6 Addressing
Architecture", <a href="./rfc4291">RFC 4291</a>, DOI 10.17487/RFC4291,
February 2006, <<a href="https://www.rfc-editor.org/info/rfc4291">https://www.rfc-editor.org/info/rfc4291</a>>.
[<a id="ref-RFC4443">RFC4443</a>] Conta, A., Deering, S., and M. Gupta, Ed., "Internet
Control Message Protocol (ICMPv6) for the Internet
Protocol Version 6 (IPv6) Specification", STD 89,
<a href="./rfc4443">RFC 4443</a>, DOI 10.17487/RFC4443, March 2006,
<<a href="https://www.rfc-editor.org/info/rfc4443">https://www.rfc-editor.org/info/rfc4443</a>>.
[<a id="ref-RFC4861">RFC4861</a>] Narten, T., Nordmark, E., Simpson, W., and H. Soliman,
"Neighbor Discovery for IP version 6 (IPv6)", <a href="./rfc4861">RFC 4861</a>,
DOI 10.17487/RFC4861, September 2007,
<<a href="https://www.rfc-editor.org/info/rfc4861">https://www.rfc-editor.org/info/rfc4861</a>>.
<span class="grey">Thubert, et al. Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
[<a id="ref-RFC4862">RFC4862</a>] Thomson, S., Narten, T., and T. Jinmei, "IPv6 Stateless
Address Autoconfiguration", <a href="./rfc4862">RFC 4862</a>,
DOI 10.17487/RFC4862, September 2007,
<<a href="https://www.rfc-editor.org/info/rfc4862">https://www.rfc-editor.org/info/rfc4862</a>>.
[<a id="ref-RFC4919">RFC4919</a>] Kushalnagar, N., Montenegro, G., and C. Schumacher, "IPv6
over Low-Power Wireless Personal Area Networks (6LoWPANs):
Overview, Assumptions, Problem Statement, and Goals",
<a href="./rfc4919">RFC 4919</a>, DOI 10.17487/RFC4919, August 2007,
<<a href="https://www.rfc-editor.org/info/rfc4919">https://www.rfc-editor.org/info/rfc4919</a>>.
[<a id="ref-RFC6282">RFC6282</a>] Hui, J., Ed. and P. Thubert, "Compression Format for IPv6
Datagrams over IEEE 802.15.4-Based Networks", <a href="./rfc6282">RFC 6282</a>,
DOI 10.17487/RFC6282, September 2011,
<<a href="https://www.rfc-editor.org/info/rfc6282">https://www.rfc-editor.org/info/rfc6282</a>>.
[<a id="ref-RFC6606">RFC6606</a>] Kim, E., Kaspar, D., Gomez, C., and C. Bormann, "Problem
Statement and Requirements for IPv6 over Low-Power
Wireless Personal Area Network (6LoWPAN) Routing",
<a href="./rfc6606">RFC 6606</a>, DOI 10.17487/RFC6606, May 2012,
<<a href="https://www.rfc-editor.org/info/rfc6606">https://www.rfc-editor.org/info/rfc6606</a>>.
[<a id="ref-RFC6775">RFC6775</a>] Shelby, Z., Ed., Chakrabarti, S., Nordmark, E., and C.
Bormann, "Neighbor Discovery Optimization for IPv6 over
Low-Power Wireless Personal Area Networks (6LoWPANs)",
<a href="./rfc6775">RFC 6775</a>, DOI 10.17487/RFC6775, November 2012,
<<a href="https://www.rfc-editor.org/info/rfc6775">https://www.rfc-editor.org/info/rfc6775</a>>.
[<a id="ref-RFC7400">RFC7400</a>] Bormann, C., "6LoWPAN-GHC: Generic Header Compression for
IPv6 over Low-Power Wireless Personal Area Networks
(6LoWPANs)", <a href="./rfc7400">RFC 7400</a>, DOI 10.17487/RFC7400,
November 2014, <<a href="https://www.rfc-editor.org/info/rfc7400">https://www.rfc-editor.org/info/rfc7400</a>>.
[<a id="ref-RFC8126">RFC8126</a>] Cotton, M., Leiba, B., and T. Narten, "Guidelines for
Writing an IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>,
<a href="./rfc8126">RFC 8126</a>, DOI 10.17487/RFC8126, June 2017,
<<a href="https://www.rfc-editor.org/info/rfc8126">https://www.rfc-editor.org/info/rfc8126</a>>.
[<a id="ref-RFC8174">RFC8174</a>] Leiba, B., "Ambiguity of Uppercase vs Lowercase in
<a href="./rfc2119">RFC 2119</a> Key Words", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc8174">RFC 8174</a>,
DOI 10.17487/RFC8174, May 2017,
<<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>>.
<span class="grey">Thubert, et al. Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Informative References</span>
[<a id="ref-Alternative-Ellip-Curve-Reps">Alternative-Ellip-Curve-Reps</a>]
Struik, R., <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22Alternative+Elliptic+Curve+Representations%22'>"Alternative Elliptic Curve Representations"</a>,
Work in Progress, <a href="./draft-struik-lwip-curve-representations-00">draft-struik-lwip-curve-</a>
<a href="./draft-struik-lwip-curve-representations-00">representations-00</a>, October 2017.
[<a id="ref-AP-ND">AP-ND</a>] Thubert, P., Ed., Sarikaya, B., Sethi, M., and R. Struik,
"Address Protected Neighbor Discovery for Low-power and
Lossy Networks", Work in Progress, <a href="./draft-ietf-6lo-ap-nd-08">draft-ietf-6lo-</a>
<a href="./draft-ietf-6lo-ap-nd-08">ap-nd-08</a>, October 2018.
[<a id="ref-Arch-for-6TiSCH">Arch-for-6TiSCH</a>]
Thubert, P., Ed., "An Architecture for IPv6 over the
TSCH mode of IEEE 802.15.4", Work in Progress,
<a href="./draft-ietf-6tisch-architecture-17">draft-ietf-6tisch-architecture-17</a>, November 2018.
[<a id="ref-Efficient-NPDAO">Efficient-NPDAO</a>]
Jadhav, R., Ed., Thubert, P., Sahoo, R., and Z. Cao,
"Efficient Route Invalidation", Work in Progress,
<a href="./draft-ietf-roll-efficient-npdao-09">draft-ietf-roll-efficient-npdao-09</a>, October 2018.
[<a id="ref-IEEE-802-15-4">IEEE-802-15-4</a>]
IEEE, "IEEE Standard for Low-Rate Wireless Networks",
IEEE Standard 802.15.4, DOI 10.1109/IEEESTD.2016.7460875,
<<a href="https://ieeexplore.ieee.org/document/7460875/">https://ieeexplore.ieee.org/document/7460875/</a>>.
[<a id="ref-IPv6-Backbone-Router">IPv6-Backbone-Router</a>]
Thubert, P., Ed. and C. Perkins, <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22IPv6+Backbone+Router%22'>"IPv6 Backbone Router"</a>,
Work in Progress, <a href="./draft-ietf-6lo-backbone-router-08">draft-ietf-6lo-backbone-router-08</a>,
October 2018.
[<a id="ref-IPv6-over-802.11ah">IPv6-over-802.11ah</a>]
Del Carpio Vega, L., Robles, M., and R. Morabito, "IPv6
over 802.11ah", Work in Progress, <a href="./draft-delcarpio-6lo-wlanah-01">draft-delcarpio-6lo-</a>
<a href="./draft-delcarpio-6lo-wlanah-01">wlanah-01</a>, October 2015.
[<a id="ref-IPv6-over-NFC">IPv6-over-NFC</a>]
Choi, Y., Ed., Hong, Y-G., Youn, J-S., Kim, D-K., and J-H.
Choi, "Transmission of IPv6 Packets over Near Field
Communication", Work in Progress, <a href="./draft-ietf-6lo-nfc-12">draft-ietf-6lo-nfc-12</a>,
November 2018.
[<a id="ref-IPv6-over-PLC">IPv6-over-PLC</a>]
Hou, J., Liu, B., Hong, Y-G., Tang, X., and C. Perkins,
"Transmission of IPv6 Packets over PLC Networks", Work in
Progress, <a href="./draft-hou-6lo-plc-05">draft-hou-6lo-plc-05</a>, October 2018.
<span class="grey">Thubert, et al. Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
[<a id="ref-Multicast-over-IEEE802-Wireless">Multicast-over-IEEE802-Wireless</a>]
Perkins, C., McBride, M., Stanley, D., Kumari, W., and JC.
Zuniga, "Multicast Considerations over IEEE 802 Wireless
Media", Work in Progress, <a href="./draft-ietf-mboned-ieee802-mcast-problems-03">draft-ietf-mboned-ieee802-mcast-</a>
<a href="./draft-ietf-mboned-ieee802-mcast-problems-03">problems-03</a>, October 2018.
[<a id="ref-ND-Optimizations">ND-Optimizations</a>]
Chakrabarti, S., Nordmark, E., Thubert, P., and M.
Wasserman, "IPv6 Neighbor Discovery Optimizations for
Wired and Wireless Networks", Work in Progress,
<a href="./draft-chakrabarti-nordmark-6man-efficient-nd-07">draft-chakrabarti-nordmark-6man-efficient-nd-07</a>,
February 2015.
[<a id="ref-Perlman83">Perlman83</a>]
Perlman, R., "Fault-Tolerant Broadcast of Routing
Information", North-Holland Computer Networks 7:
pp. 395-405, DOI 10.1016/0376-5075(83)90034-X, 1983,
<<a href="http://www.cs.illinois.edu/~pbg/courses/cs598fa09/readings/p83.pdf">http://www.cs.illinois.edu/~pbg/courses/cs598fa09/</a>
<a href="http://www.cs.illinois.edu/~pbg/courses/cs598fa09/readings/p83.pdf">readings/p83.pdf</a>>.
[<a id="ref-RFC1958">RFC1958</a>] Carpenter, B., Ed., "Architectural Principles of the
Internet", <a href="./rfc1958">RFC 1958</a>, DOI 10.17487/RFC1958, June 1996,
<<a href="https://www.rfc-editor.org/info/rfc1958">https://www.rfc-editor.org/info/rfc1958</a>>.
[<a id="ref-RFC1982">RFC1982</a>] Elz, R. and R. Bush, "Serial Number Arithmetic", <a href="./rfc1982">RFC 1982</a>,
DOI 10.17487/RFC1982, August 1996,
<<a href="https://www.rfc-editor.org/info/rfc1982">https://www.rfc-editor.org/info/rfc1982</a>>.
[<a id="ref-RFC3610">RFC3610</a>] Whiting, D., Housley, R., and N. Ferguson, "Counter with
CBC-MAC (CCM)", <a href="./rfc3610">RFC 3610</a>, DOI 10.17487/RFC3610,
September 2003, <<a href="https://www.rfc-editor.org/info/rfc3610">https://www.rfc-editor.org/info/rfc3610</a>>.
[<a id="ref-RFC3810">RFC3810</a>] Vida, R., Ed. and L. Costa, Ed., "Multicast Listener
Discovery Version 2 (MLDv2) for IPv6", <a href="./rfc3810">RFC 3810</a>,
DOI 10.17487/RFC3810, June 2004,
<<a href="https://www.rfc-editor.org/info/rfc3810">https://www.rfc-editor.org/info/rfc3810</a>>.
[<a id="ref-RFC3971">RFC3971</a>] Arkko, J., Ed., Kempf, J., Zill, B., and P. Nikander,
"SEcure Neighbor Discovery (SEND)", <a href="./rfc3971">RFC 3971</a>,
DOI 10.17487/RFC3971, March 2005,
<<a href="https://www.rfc-editor.org/info/rfc3971">https://www.rfc-editor.org/info/rfc3971</a>>.
[<a id="ref-RFC3972">RFC3972</a>] Aura, T., "Cryptographically Generated Addresses (CGA)",
<a href="./rfc3972">RFC 3972</a>, DOI 10.17487/RFC3972, March 2005,
<<a href="https://www.rfc-editor.org/info/rfc3972">https://www.rfc-editor.org/info/rfc3972</a>>.
<span class="grey">Thubert, et al. Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
[<a id="ref-RFC4429">RFC4429</a>] Moore, N., "Optimistic Duplicate Address Detection (DAD)
for IPv6", <a href="./rfc4429">RFC 4429</a>, DOI 10.17487/RFC4429, April 2006,
<<a href="https://www.rfc-editor.org/info/rfc4429">https://www.rfc-editor.org/info/rfc4429</a>>.
[<a id="ref-RFC4941">RFC4941</a>] Narten, T., Draves, R., and S. Krishnan, "Privacy
Extensions for Stateless Address Autoconfiguration in
IPv6", <a href="./rfc4941">RFC 4941</a>, DOI 10.17487/RFC4941, September 2007,
<<a href="https://www.rfc-editor.org/info/rfc4941">https://www.rfc-editor.org/info/rfc4941</a>>.
[<a id="ref-RFC6550">RFC6550</a>] Winter, T., Ed., Thubert, P., Ed., Brandt, A., Hui, J.,
Kelsey, R., Levis, P., Pister, K., Struik, R., Vasseur,
JP., and R. Alexander, "RPL: IPv6 Routing Protocol for
Low-Power and Lossy Networks", <a href="./rfc6550">RFC 6550</a>,
DOI 10.17487/RFC6550, March 2012,
<<a href="https://www.rfc-editor.org/info/rfc6550">https://www.rfc-editor.org/info/rfc6550</a>>.
[<a id="ref-RFC7217">RFC7217</a>] Gont, F., "A Method for Generating Semantically Opaque
Interface Identifiers with IPv6 Stateless Address
Autoconfiguration (SLAAC)", <a href="./rfc7217">RFC 7217</a>,
DOI 10.17487/RFC7217, April 2014,
<<a href="https://www.rfc-editor.org/info/rfc7217">https://www.rfc-editor.org/info/rfc7217</a>>.
[<a id="ref-RFC7428">RFC7428</a>] Brandt, A. and J. Buron, "Transmission of IPv6 Packets
over ITU-T G.9959 Networks", <a href="./rfc7428">RFC 7428</a>,
DOI 10.17487/RFC7428, February 2015,
<<a href="https://www.rfc-editor.org/info/rfc7428">https://www.rfc-editor.org/info/rfc7428</a>>.
[<a id="ref-RFC7668">RFC7668</a>] Nieminen, J., Savolainen, T., Isomaki, M., Patil, B.,
Shelby, Z., and C. Gomez, "IPv6 over BLUETOOTH(R) Low
Energy", <a href="./rfc7668">RFC 7668</a>, DOI 10.17487/RFC7668, October 2015,
<<a href="https://www.rfc-editor.org/info/rfc7668">https://www.rfc-editor.org/info/rfc7668</a>>.
[<a id="ref-RFC7934">RFC7934</a>] Colitti, L., Cerf, V., Cheshire, S., and D. Schinazi,
"Host Address Availability Recommendations", <a href="https://www.rfc-editor.org/bcp/bcp204">BCP 204</a>,
<a href="./rfc7934">RFC 7934</a>, DOI 10.17487/RFC7934, July 2016,
<<a href="https://www.rfc-editor.org/info/rfc7934">https://www.rfc-editor.org/info/rfc7934</a>>.
[<a id="ref-RFC8064">RFC8064</a>] Gont, F., Cooper, A., Thaler, D., and W. Liu,
"Recommendation on Stable IPv6 Interface Identifiers",
<a href="./rfc8064">RFC 8064</a>, DOI 10.17487/RFC8064, February 2017,
<<a href="https://www.rfc-editor.org/info/rfc8064">https://www.rfc-editor.org/info/rfc8064</a>>.
[<a id="ref-RFC8065">RFC8065</a>] Thaler, D., "Privacy Considerations for IPv6 Adaptation-
Layer Mechanisms", <a href="./rfc8065">RFC 8065</a>, DOI 10.17487/RFC8065,
February 2017, <<a href="https://www.rfc-editor.org/info/rfc8065">https://www.rfc-editor.org/info/rfc8065</a>>.
<span class="grey">Thubert, et al. Standards Track [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
[<a id="ref-RFC8105">RFC8105</a>] Mariager, P., Petersen, J., Ed., Shelby, Z., Van de Logt,
M., and D. Barthel, "Transmission of IPv6 Packets over
Digital Enhanced Cordless Telecommunications (DECT) Ultra
Low Energy (ULE)", <a href="./rfc8105">RFC 8105</a>, DOI 10.17487/RFC8105,
May 2017, <<a href="https://www.rfc-editor.org/info/rfc8105">https://www.rfc-editor.org/info/rfc8105</a>>.
[<a id="ref-RFC8163">RFC8163</a>] Lynn, K., Ed., Martocci, J., Neilson, C., and S.
Donaldson, "Transmission of IPv6 over Master-Slave/Token-
Passing (MS/TP) Networks", <a href="./rfc8163">RFC 8163</a>, DOI 10.17487/RFC8163,
May 2017, <<a href="https://www.rfc-editor.org/info/rfc8163">https://www.rfc-editor.org/info/rfc8163</a>>.
[<a id="ref-RFC8279">RFC8279</a>] Wijnands, IJ., Ed., Rosen, E., Ed., Dolganow, A.,
Przygienda, T., and S. Aldrin, "Multicast Using Bit Index
Explicit Replication (BIER)", <a href="./rfc8279">RFC 8279</a>,
DOI 10.17487/RFC8279, November 2017,
<<a href="https://www.rfc-editor.org/info/rfc8279">https://www.rfc-editor.org/info/rfc8279</a>>.
[<a id="ref-Routing-for-RPL-Leaves">Routing-for-RPL-Leaves</a>]
Thubert, P., Ed., <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22Routing+for+RPL+Leaves%22'>"Routing for RPL Leaves"</a>, Work in
Progress, <a href="./draft-thubert-roll-unaware-leaves-05">draft-thubert-roll-unaware-leaves-05</a>, May 2018.
<span class="grey">Thubert, et al. Standards Track [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Applicability and Fulfilled Requirements (Not Normative)</span>
This specification extends 6LoWPAN ND to provide a sequence number to
the registration and fulfills the requirements expressed in
<a href="#appendix-B.1">Appendix B.1</a> by enabling the mobility of devices from one LLN to the
next. A full specification for enabling mobility based on the use of
the EARO and the registration procedures defined in this document can
be found in subsequent work [<a href="#ref-IPv6-Backbone-Router">IPv6-Backbone-Router</a>] ("IPv6 Backbone
Router"). The 6BBR is an example of a Routing Registrar that acts as
an IPv6 ND proxy over a Backbone Link that federates multiple LLNs as
well as the Backbone Link itself into a single IPv6 subnet. The
expected registration flow in that case is illustrated in Figure 6,
noting that any combination of 6LR, 6LBR, and 6BBR may be collocated.
6LN 6LR 6LBR 6BBR
| | | |
| NS(EARO) | | |
|--------------->| | |
| | Extended DAR | |
| |-------------->| |
| | | |
| | | proxy NS(EARO) |
| | |--------------->|
| | | | NS(DAD)
| | | | ------>
| | | | <wait>
| | | |
| | | proxy NA(EARO) |
| | |<---------------|
| | Extended DAC | |
| |<--------------| |
| NA(EARO) | | |
|<---------------| | |
| | | |
Figure 6: (Re-)Registration Flow
[<a id="ref-Arch-for-6TiSCH">Arch-for-6TiSCH</a>] ("An Architecture for IPv6 over the TSCH mode of
IEEE 802.15.4") describes how a 6LoWPAN ND host using the
Time-Slotted Channel Hopping (TSCH) mode of IEEE Std. 802.15.4
[<a href="#ref-IEEE-802-15-4">IEEE-802-15-4</a>] can connect to the Internet via a RPL mesh network.
Doing so requires additions to the 6LoWPAN ND protocol to support
mobility and reachability in a secure and manageable network
environment. This document specifies those new operations and
fulfills the requirements listed in <a href="#appendix-B.2">Appendix B.2</a>.
<span class="grey">Thubert, et al. Standards Track [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
The term "LLN" is used loosely in this document and is intended to
cover multiple types of WLANs and WPANs, including Low-Power IEEE
Std. 802.11 networking, Bluetooth low energy, IEEE Std. 802.11ah, and
IEEE Std. 802.15.4 wireless meshes, so as to address the requirements
discussed in <a href="#appendix-B.3">Appendix B.3</a>.
This specification can be used by any wireless node to register its
IPv6 Addresses with a Routing Registrar and to obtain routing
services such as proxy ND operations over a Backbone Link. This
satisfies the requirements expressed in <a href="#appendix-B.4">Appendix B.4</a>.
This specification is extended by [<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>] to provide a solution to
some of the security-related requirements expressed in <a href="#appendix-B.5">Appendix B.5</a>.
[<a id="ref-ND-Optimizations">ND-Optimizations</a>] ("IPv6 Neighbor Discovery Optimizations for Wired
and Wireless Networks") suggests that 6LoWPAN ND [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] can be
extended to other types of links (beyond IEEE Std. 802.15.4) for
which it was defined. The registration technique is beneficial when
the link-layer technique used to carry IPv6 multicast packets is not
sufficiently efficient in terms of delivery ratio or energy
consumption in the end devices -- in particular, to enable
energy-constrained sleeping nodes. The value of such an extension is
especially apparent in the case of mobile wireless nodes, to reduce
the multicast operations that are related to IPv6 ND [<a href="./rfc4861" title=""Neighbor Discovery for IP version 6 (IPv6)"">RFC4861</a>]
[<a href="./rfc4862" title=""IPv6 Stateless Address Autoconfiguration"">RFC4862</a>] and affect the operation of the wireless medium
[<a href="#ref-Multicast-over-IEEE802-Wireless">Multicast-over-IEEE802-Wireless</a>]. This fulfills the scalability
requirements listed in <a href="#appendix-B.6">Appendix B.6</a>.
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Requirements (Not Normative)</span>
This appendix lists requirements that were discussed by the
6lo Working Group for an update to 6LoWPAN ND. How those
requirements are matched with existing specifications at the time
of this writing is shown in <a href="#appendix-B.8">Appendix B.8</a>.
<span class="h3"><a class="selflink" id="appendix-B.1" href="#appendix-B.1">B.1</a>. Requirements Related to Mobility</span>
Due to the unstable nature of LLN links, even in an LLN of immobile
nodes, a 6LN may change its point of attachment from, say, 6LR-a to
6LR-b but may not be able to notify 6LR-a. Consequently, 6LR-a may
still attract traffic that it cannot deliver any more. When links to
a 6LR change state, there is thus a need to identify stale states in
a 6LR and restore reachability in a timely fashion, e.g., by using
some type of signaling upon detection of the movement or using a
keep-alive mechanism with a period that is consistent with the needs
of the application.
<span class="grey">Thubert, et al. Standards Track [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Req-1.1: Upon a change of point of attachment, connectivity via a
new 6LR MUST be restored in a timely fashion without the
need to de-register from the previous 6LR.
Req-1.2: For that purpose, the protocol MUST enable differentiating
between multiple registrations from one 6LN and
registrations from different 6LNs claiming the same
address.
Req-1.3: Stale states MUST be cleaned up in 6LRs.
Req-1.4: A 6LN SHOULD also be able to register its address
concurrently to multiple 6LRs.
<span class="h3"><a class="selflink" id="appendix-B.2" href="#appendix-B.2">B.2</a>. Requirements Related to Routing Protocols</span>
The point of attachment of a 6LN may be a 6LR in an LLN mesh. IPv6
routing in an LLN can be based on RPL, which is the routing protocol
that was defined by the IETF for this particular purpose. Other
routing protocols are also considered by Standards Development
Organizations (SDOs) on the basis of the expected network
characteristics. It is required that a 6LN attached via ND to a 6LR
indicate whether or not it (1) participates in the selected routing
protocol to obtain reachability via the 6LR or (2) expects the 6LR to
manage its reachability.
The specified updates enable other specifications to define new
services such as Source Address Validation Improvement (SAVI) (via
[<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>]), participation as an unaware leaf to a routing protocol
(such as the protocol described in [<a href="./rfc6550" title=""RPL: IPv6 Routing Protocol for Low-Power and Lossy Networks"">RFC6550</a>] (RPL)) (via
[<a href="#ref-Routing-for-RPL-Leaves">Routing-for-RPL-Leaves</a>]), and registration to Backbone Routers
performing proxy ND in an LLN (via [<a href="#ref-IPv6-Backbone-Router">IPv6-Backbone-Router</a>]).
Beyond the 6LBR unicast address registered by ND, other addresses,
including multicast addresses, are needed as well. For example, a
routing protocol often uses a multicast address to register changes
to established paths. ND needs to register such a multicast address
to enable routing concurrently with discovery.
Multicast is needed for groups. Groups may be formed by device type
(e.g., routers, street lamps), location (geography, RPL subtree),
or both.
The Bit Index Explicit Replication (BIER) architecture [<a href="./rfc8279" title=""Multicast Using Bit Index Explicit Replication (BIER)"">RFC8279</a>]
proposes an optimized technique to enable multicast in an LLN with a
very limited requirement for routing state in the nodes.
<span class="grey">Thubert, et al. Standards Track [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Related requirements are as follows:
Req-2.1: The ND registration method SHOULD be extended so that the
6LR is instructed whether to advertise the address of a 6LN
over the selected routing protocol and obtain reachability
to that address using the selected routing protocol.
Req-2.2: Considering RPL, the ARO that is used in the ND
registration SHOULD be extended to carry enough information
to generate a DAO message as specified in <a href="./rfc6550#section-6.4">Section 6.4 of
[RFC6550]</a> -- in particular, the capability to compute a
Path Sequence and, as an option, a RPLInstanceID.
Req-2.3: Multicast operations SHOULD be supported and optimized --
for instance, using BIER or the Multicast Protocol for
Low-Power and Lossy Networks (MPL). Whether ND is
appropriate for the registration to the Routing Registrar
is to be defined, considering the additional burden of
supporting Multicast Listener Discovery Version 2 (MLDv2)
for IPv6 [<a href="./rfc3810" title=""Multicast Listener Discovery Version 2 (MLDv2) for IPv6"">RFC3810</a>].
<span class="h3"><a class="selflink" id="appendix-B.3" href="#appendix-B.3">B.3</a>. Requirements Related to Various Low-Power Link Types</span>
6LoWPAN ND [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] was defined with a focus on IEEE Std.802.15.4
and, in particular, the capability to derive a unique identifier from
a globally unique EUI-64 address. At this point, the 6lo Working
Group is extending the 6LoWPAN Header Compression (HC) technique
[<a href="./rfc6282" title=""Compression Format for IPv6 Datagrams over IEEE 802.15.4-Based Networks"">RFC6282</a>] to other link types, including ITU-T G.9959 [<a href="./rfc7428" title=""Transmission of IPv6 Packets over ITU-T G.9959 Networks"">RFC7428</a>],
Master-Slave/Token-Passing [<a href="./rfc8163" title=""Transmission of IPv6 over Master-Slave/Token- Passing (MS/TP) Networks"">RFC8163</a>], Digital Enhanced Cordless
Telecommunications (DECT) Ultra Low Energy [<a href="./rfc8105" title=""Transmission of IPv6 Packets over Digital Enhanced Cordless Telecommunications (DECT) Ultra Low Energy (ULE)"">RFC8105</a>], Near Field
Communication [<a href="#ref-IPv6-over-NFC">IPv6-over-NFC</a>], and IEEE Std. 802.11ah
[<a href="#ref-IPv6-over-802.11ah">IPv6-over-802.11ah</a>], as well as Bluetooth low energy [<a href="./rfc7668" title=""IPv6 over BLUETOOTH(R) Low Energy"">RFC7668</a>] and
Power Line Communication (PLC) Networks [<a href="#ref-IPv6-over-PLC">IPv6-over-PLC</a>].
Related requirements are as follows:
Req-3.1: The support of the registration mechanism SHOULD be
extended to more LLN links than IEEE Std.802.15.4, matching
at least the LLN links for which an "IPv6 over foo"
specification exists, as well as low-power Wi-Fi.
Req-3.2: As part of this extension, a mechanism to compute a unique
identifier should be provided, with the capability to form
a Link-Local Address that SHOULD be unique at least within
the LLN connected to a 6LBR discovered by ND in each node
within the LLN.
<span class="grey">Thubert, et al. Standards Track [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Req-3.3: The ARO used in the ND registration SHOULD be extended to
carry the relevant forms of the unique identifier.
Req-3.4: ND should specify the formation of a site-local address
that follows the security recommendations in [<a href="./rfc7217" title=""A Method for Generating Semantically Opaque Interface Identifiers with IPv6 Stateless Address Autoconfiguration (SLAAC)"">RFC7217</a>].
<span class="h3"><a class="selflink" id="appendix-B.4" href="#appendix-B.4">B.4</a>. Requirements Related to Proxy Operations</span>
Duty-cycled devices may not be awake to answer a lookup from a node
that uses IPv6 ND and may need a proxy. Additionally, the
duty-cycled device may rely on the 6LBR to perform registration to
the Routing Registrar.
The ND registration method SHOULD defend the addresses of duty-cycled
devices that are sleeping most of the time and incapable of defending
their own addresses.
Related requirements are as follows:
Req-4.1: The registration mechanism SHOULD enable a third party to
proxy-register an address on behalf of a 6LN that may be
sleeping or located deeper in an LLN mesh.
Req-4.2: The registration mechanism SHOULD be applicable to a
duty-cycled device regardless of the link type and SHOULD
enable a Routing Registrar to operate as a proxy to defend
the Registered Addresses on its behalf.
Req-4.3: The registration mechanism SHOULD enable long sleep
durations, on the order of multiple days to a month.
<span class="h3"><a class="selflink" id="appendix-B.5" href="#appendix-B.5">B.5</a>. Requirements Related to Security</span>
In order to guarantee the operations of the 6LoWPAN ND flows,
spoofing the roles of the 6LR, 6LBR, and Routing Registrar should be
avoided. Once a node successfully registers an address, 6LoWPAN ND
should provide energy-efficient means for the 6LBR to protect that
ownership even when the node that registered the address is sleeping.
In particular, the 6LR and the 6LBR should then be able to verify
whether a subsequent registration for a given address comes from the
original node.
In an LLN, it makes sense to base security on Layer 2 security.
During bootstrap of the LLN, nodes join the network after
authorization by a Joining Assistant (JA) or a Commissioning Tool
(CT). After joining, nodes communicate with each other via secured
links. The keys for Layer 2 security are distributed by the JA/CT.
<span class="grey">Thubert, et al. Standards Track [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
The JA/CT can be part of the LLN or be outside the LLN. In both
cases, the ability to route packets between the JA/CT and the joining
node is needed.
Related requirements are as follows:
Req-5.1: 6LoWPAN ND security mechanisms SHOULD provide a mechanism
for the 6LR, 6LBR, and Routing Registrar to authenticate
and authorize one another for their respective roles, as
well as with the 6LN for the role of 6LR.
Req-5.2: 6LoWPAN ND security mechanisms SHOULD provide a mechanism
for the 6LR and the 6LBR to validate new registrations of
authorized nodes. Joining of unauthorized nodes MUST be
prevented.
Req-5.3: The use of 6LoWPAN ND security mechanisms SHOULD NOT result
in large packet sizes. In particular, the NS, NA, DAR, and
DAC messages for a re-registration flow SHOULD NOT exceed
80 octets so as to fit in a secured IEEE Std.802.15.4
[<a href="#ref-IEEE-802-15-4">IEEE-802-15-4</a>] frame.
Req-5.4: Recurrent 6LoWPAN ND security operations MUST NOT be
computationally intensive on the 6LN's CPU. When
calculation of a key hash is employed, a mechanism lighter
than SHA-1 SHOULD be used.
Req-5.5: The number of keys that the 6LN needs to manipulate SHOULD
be minimized.
Req-5.6: 6LoWPAN ND security mechanisms SHOULD enable (1) the
variation of CCM ("Counter with CBC-MAC") [<a href="./rfc3610" title=""Counter with CBC-MAC (CCM)"">RFC3610</a>] called
"CCM*" for use at both Layer 2 and Layer 3 and (2) the
reuse of a security code that has to be present on the
device for upper-layer security (e.g., TLS). Algorithm
agility and support for large keys (e.g., 256-bit key
sizes) are also desirable.
Req-5.7: Public key and signature sizes SHOULD be minimized while
maintaining adequate confidentiality and data origin
authentication for multiple types of applications with
various degrees of criticality.
Req-5.8: Routing of packets should continue when links pass from the
unsecured state to the secured state.
<span class="grey">Thubert, et al. Standards Track [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Req-5.9: 6LoWPAN ND security mechanisms SHOULD provide a mechanism
for the 6LR and the 6LBR to validate whether a new
registration for a given address corresponds to the same
6LN that registered it initially and, if not, determine the
rightful owner and deny or clean up the registration if it
is a duplicate.
<span class="h3"><a class="selflink" id="appendix-B.6" href="#appendix-B.6">B.6</a>. Requirements Related to Scalability</span>
Use cases from Automatic Meter Reading (AMR) (collection-tree
operations) and Advanced Metering Infrastructure (AMI) (bidirectional
communication to the meters) indicate the need for a large number of
LLN nodes pertaining to a single RPL DODAG (e.g., 5000) and connected
to the 6LBR over a large number of LLN hops (e.g., 15).
Related requirements are as follows:
Req-6.1: The registration mechanism SHOULD enable a single 6LBR to
register multiple thousands of devices.
Req-6.2: The timing of the registration operation should allow for
long latency, such as that found in LLNs with ten or
more hops.
<span class="h3"><a class="selflink" id="appendix-B.7" href="#appendix-B.7">B.7</a>. Requirements Related to Operations and Management</span>
Guideline 3.8 in <a href="./rfc1958#section-3">Section 3 of [RFC1958]</a> ("Architectural Principles of
the Internet") recommends the following: "Avoid options and
parameters whenever possible. Any options and parameters should be
configured or negotiated dynamically rather than manually." This is
especially true in LLNs where the number of devices may be large and
manual configuration is infeasible. Capabilities for dynamic
configuration of LLN devices can also be constrained by network and
power limitations.
A network administrator should be able to validate that the network
is operating within capacity and that, in particular, a 6LBR does not
get overloaded with an excessive amount of registrations, so the
administrator can take actions such as adding a Backbone Link with
additional 6LBRs and Routing Registrars to the network.
<span class="grey">Thubert, et al. Standards Track [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Related requirements are as follows:
Req-7.1: A management model SHOULD be provided that enables access
to the 6LBR, monitors its usage vs. capacity, and sends
alerts in the case of congestion. It is recommended that
the 6LBR be reachable over a non-LLN link.
Req-7.2: A management model SHOULD be provided that enables access
to the 6LR and its capacity to host additional NCEs. This
management model SHOULD avoid polling individual 6LRs in a
way that could disrupt the operation of the LLN.
Req-7.3: Information on successful and failed registrations SHOULD
be provided, including information such as the ROVR of the
6LN, the Registered Address, the address of the 6LR, and
the duration of the registration flow.
Req-7.4: In the case of a failed registration, information on the
failure, including the identification of the node that
rejected the registration and the status in the EARO,
SHOULD be provided.
<span class="h3"><a class="selflink" id="appendix-B.8" href="#appendix-B.8">B.8</a>. Matching Requirements with Specifications</span>
+-------------+--------------------------------+
| Requirement | Document |
+-------------+--------------------------------+
| Req-1.1 | [<a href="#ref-IPv6-Backbone-Router">IPv6-Backbone-Router</a>] |
| | |
| Req-1.2 | [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] |
| | |
| Req-1.3 | [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] |
| | |
| Req-1.4 | <a href="./rfc8505">RFC 8505</a> |
| | |
| Req-2.1 | <a href="./rfc8505">RFC 8505</a> |
| | |
| Req-2.2 | <a href="./rfc8505">RFC 8505</a> |
| | |
| Req-2.3 | |
| | |
| Req-3.1 | Technology Dependent |
| | |
| Req-3.2 | Technology Dependent |
| | |
| Req-3.3 | Technology Dependent |
| | |
| Req-3.4 | Technology Dependent |
<span class="grey">Thubert, et al. Standards Track [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
| | |
| Req-4.1 | <a href="./rfc8505">RFC 8505</a> |
| | |
| Req-4.2 | <a href="./rfc8505">RFC 8505</a> |
| | |
| Req-4.3 | [<a href="./rfc6775" title=""Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"">RFC6775</a>] |
| | |
| Req-5.1 | |
| | |
| Req-5.2 | [<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>] |
| | |
| Req-5.3 | |
| | |
| Req-5.4 | |
| | |
| Req-5.5 | [<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>] |
| | |
| Req-5.6 | [<a href="#ref-Alternative-Ellip-Curve-Reps">Alternative-Ellip-Curve-Reps</a>] |
| | |
| Req-5.7 | [<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>] |
| | |
| Req-5.8 | |
| | |
| Req-5.9 | [<a href="#ref-AP-ND" title=""Address Protected Neighbor Discovery for Low-power and Lossy Networks"">AP-ND</a>] |
| | |
| Req-6.1 | <a href="./rfc8505">RFC 8505</a> |
| | |
| Req-6.2 | <a href="./rfc8505">RFC 8505</a> |
| | |
| Req-7.1 | |
| | |
| Req-7.2 | |
| | |
| Req-7.3 | |
| | |
| Req-7.4 | |
+-------------+--------------------------------+
Table 8: Documents That Address Requirements
<span class="grey">Thubert, et al. Standards Track [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc8505">RFC 8505</a> Registration Extensions for 6LoWPAN ND November 2018</span>
Acknowledgments
Kudos to Eric Levy-Abegnoli, who designed the "First-Hop Security"
infrastructure upon which the first Backbone Router was implemented.
Many thanks to Sedat Gormus, Rahul Jadhav, Tim Chown, Juergen
Schoenwaelder, Chris Lonvick, Dave Thaler, Adrian Farrel, Peter Yee,
Warren Kumari, Benjamin Kaduk, Mirja Kuehlewind, Ben Campbell, Eric
Rescorla, and Lorenzo Colitti for their various contributions and
reviews. Also, many thanks to Thomas Watteyne for the world's first
implementation of a 6LN that was instrumental to the early tests of
the 6LR, 6LBR, and Backbone Router.
Authors' Addresses
Pascal Thubert (editor)
Cisco Systems, Inc.
Building D (Regus) 45 Allee des Ormes
Mougins - Sophia Antipolis
France
Phone: +33 4 97 23 26 34
Email: pthubert@cisco.com
Erik Nordmark
Zededa
Santa Clara, CA
United States of America
Email: nordmark@sonic.net
Samita Chakrabarti
Verizon
San Jose, CA
United States of America
Email: samitac.ietf@gmail.com
Charles E. Perkins
Futurewei
2330 Central Expressway
Santa Clara, CA 95050
United States of America
Email: charliep@computer.org
Thubert, et al. Standards Track [Page 47]
</pre>
|