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 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603
|
<!DOCTYPE html>
<html lang="en" class="RFC">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 9008: Using RPI Option Type, Routing Header for Source Routes, and IPv6-in-IPv6 Encapsulation in the RPL Data Plane</title>
<meta content="Maria Ines Robles" name="author">
<meta content="Michael C. Richardson" name="author">
<meta content="Pascal Thubert" name="author">
<meta content="
This document looks at different data flows through Low-Power and Lossy Networks (LLN) where RPL
(IPv6 Routing Protocol for Low-Power and Lossy Networks) is used to establish routing.
The document enumerates the cases where RPL Packet Information (RPI) Option Type (RFC 6553),
RPL Source Route Header (RFC 6554),
and IPv6-in-IPv6 encapsulation are required in the data plane.
This analysis provides the basis upon which to design efficient compression of these headers.
This document updates RFC 6553 by adding a change to the RPI Option Type. Additionally, this document updates
RFC 6550 by defining a flag in the DODAG Information Object (DIO) Configuration option to indicate this change and
updates RFC 8138 as well to consider the new Option Type when the RPL Option is decompressed.
" name="description">
<meta content="xml2rfc 3.7.0" name="generator">
<meta content="RPL Option" name="keyword">
<meta content="6LoWPAN" name="keyword">
<meta content="RFC 6553" name="keyword">
<meta content="9008" name="rfc.number">
<!-- Generator version information:
xml2rfc 3.7.0
Python 3.6.10
appdirs 1.4.4
ConfigArgParse 1.2.3
google-i18n-address 2.3.5
html5lib 1.0.1
intervaltree 3.0.2
Jinja2 2.11.2
kitchen 1.2.6
lxml 4.4.2
pycairo 1.19.0
pycountry 19.8.18
pyflakes 2.1.1
PyYAML 5.3.1
requests 2.22.0
setuptools 40.6.2
six 1.14.0
WeasyPrint 51
-->
<link href="rfc9008.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<style type="text/css">/*
NOTE: Changes at the bottom of this file overrides some earlier settings.
Once the style has stabilized and has been adopted as an official RFC style,
this can be consolidated so that style settings occur only in one place, but
for now the contents of this file consists first of the initial CSS work as
provided to the RFC Formatter (xml2rfc) work, followed by itemized and
commented changes found necssary during the development of the v3
formatters.
*/
/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */
@viewport {
zoom: 1.0;
width: extend-to-zoom;
}
@-ms-viewport {
width: extend-to-zoom;
zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
max-width: 90%;
margin: 1.5em auto;
color: #222;
background-color: #fff;
font-size: 14px;
font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
line-height: 1.6;
scroll-behavior: smooth;
}
.ears {
display: none;
}
/* headings */
#title, h1, h2, h3, h4, h5, h6 {
margin: 1em 0 0.5em;
font-weight: bold;
line-height: 1.3;
}
#title {
clear: both;
border-bottom: 1px solid #ddd;
margin: 0 0 0.5em 0;
padding: 1em 0 0.5em;
}
.author {
padding-bottom: 4px;
}
h1 {
font-size: 26px;
margin: 1em 0;
}
h2 {
font-size: 22px;
margin-top: -20px; /* provide offset for in-page anchors */
padding-top: 33px;
}
h3 {
font-size: 18px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h4 {
font-size: 16px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h5, h6 {
font-size: 14px;
}
#n-copyright-notice {
border-bottom: 1px solid #ddd;
padding-bottom: 1em;
margin-bottom: 1em;
}
/* general structure */
p {
padding: 0;
margin: 0 0 1em 0;
text-align: left;
}
div, span {
position: relative;
}
div {
margin: 0;
}
.alignRight.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignRight.art-text pre {
padding: 0;
}
.alignRight {
margin: 1em 0;
}
.alignRight > *:first-child {
border: none;
margin: 0;
float: right;
clear: both;
}
.alignRight > *:nth-child(2) {
clear: both;
display: block;
border: none;
}
svg {
display: block;
}
.alignCenter.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
padding: 0;
}
.alignCenter {
margin: 1em 0;
}
.alignCenter > *:first-child {
border: none;
/* this isn't optimal, but it's an existence proof. PrinceXML doesn't
support flexbox yet.
*/
display: table;
margin: 0 auto;
}
/* lists */
ol, ul {
padding: 0;
margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
margin-left: 1em;
}
li {
margin: 0 0 0.25em 0;
}
.ulCompact li {
margin: 0;
}
ul.empty, .ulEmpty {
list-style-type: none;
}
ul.empty li, .ulEmpty li {
margin-top: 0.5em;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
line-height: 100%;
margin: 0 0 0 2em;
}
/* definition lists */
dl {
}
dl > dt {
float: left;
margin-right: 1em;
}
/*
dl.nohang > dt {
float: none;
}
*/
dl > dd {
margin-bottom: .8em;
min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
margin-bottom: 0em;
}
dl > dd > dl {
margin-top: 0.5em;
margin-bottom: 0em;
}
/* links */
a {
text-decoration: none;
}
a[href] {
color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
background-color: transparent;
cursor: default;
} */
/* Figures */
tt, code, pre, code {
background-color: #f9f9f9;
font-family: 'Roboto Mono', monospace;
}
pre {
border: 1px solid #eee;
margin: 0;
padding: 1em;
}
img {
max-width: 100%;
}
figure {
margin: 0;
}
figure blockquote {
margin: 0.8em 0.4em 0.4em;
}
figcaption {
font-style: italic;
margin: 0 0 1em 0;
}
@media screen {
pre {
overflow-x: auto;
max-width: 100%;
max-width: calc(100% - 22px);
}
}
/* aside, blockquote */
aside, blockquote {
margin-left: 0;
padding: 1.2em 2em;
}
blockquote {
background-color: #f9f9f9;
color: #111; /* Arlen: WCAG 2019 */
border: 1px solid #ddd;
border-radius: 3px;
margin: 1em 0;
}
cite {
display: block;
text-align: right;
font-style: italic;
}
/* tables */
table {
width: 100%;
margin: 0 0 1em;
border-collapse: collapse;
border: 1px solid #eee;
}
th, td {
text-align: left;
vertical-align: top;
padding: 0.5em 0.75em;
}
th {
text-align: left;
background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
background-color: #f5f5f5;
}
table caption {
font-style: italic;
margin: 0;
padding: 0;
text-align: left;
}
table p {
/* XXX to avoid bottom margin on table row signifiers. If paragraphs should
be allowed within tables more generally, it would be far better to select on a class. */
margin: 0;
}
/* pilcrow */
a.pilcrow {
color: #666; /* Arlen: AHDJ 2019 */
text-decoration: none;
visibility: hidden;
user-select: none;
-ms-user-select: none;
-o-user-select:none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
@media screen {
aside:hover > a.pilcrow,
p:hover > a.pilcrow,
blockquote:hover > a.pilcrow,
div:hover > a.pilcrow,
li:hover > a.pilcrow,
pre:hover > a.pilcrow {
visibility: visible;
}
a.pilcrow:hover {
background-color: transparent;
}
}
/* misc */
hr {
border: 0;
border-top: 1px solid #eee;
}
.bcp14 {
font-variant: small-caps;
}
.role {
font-variant: all-small-caps;
}
/* info block */
#identifiers {
margin: 0;
font-size: 0.9em;
}
#identifiers dt {
width: 3em;
clear: left;
}
#identifiers dd {
float: left;
margin-bottom: 0;
}
#identifiers .authors .author {
display: inline-block;
margin-right: 1.5em;
}
#identifiers .authors .org {
font-style: italic;
}
/* The prepared/rendered info at the very bottom of the page */
.docInfo {
color: #666; /* Arlen: WCAG 2019 */
font-size: 0.9em;
font-style: italic;
margin-top: 2em;
}
.docInfo .prepared {
float: left;
}
.docInfo .prepared {
float: right;
}
/* table of contents */
#toc {
padding: 0.75em 0 2em 0;
margin-bottom: 1em;
}
nav.toc ul {
margin: 0 0.5em 0 0;
padding: 0;
list-style: none;
}
nav.toc li {
line-height: 1.3em;
margin: 0.75em 0;
padding-left: 1.2em;
text-indent: -1.2em;
}
/* references */
.references dt {
text-align: right;
font-weight: bold;
min-width: 7em;
}
.references dd {
margin-left: 8em;
overflow: auto;
}
.refInstance {
margin-bottom: 1.25em;
}
.references .ascii {
margin-bottom: 0.25em;
}
/* index */
.index ul {
margin: 0 0 0 1em;
padding: 0;
list-style: none;
}
.index ul ul {
margin: 0;
}
.index li {
margin: 0;
text-indent: -2em;
padding-left: 2em;
padding-bottom: 5px;
}
.indexIndex {
margin: 0.5em 0 1em;
}
.index a {
font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
.index ul {
-moz-column-count: 2;
-moz-column-gap: 20px;
}
.index ul ul {
-moz-column-count: 1;
-moz-column-gap: 0;
}
}
/* authors */
address.vcard {
font-style: normal;
margin: 1em 0;
}
address.vcard .nameRole {
font-weight: 700;
margin-left: 0;
}
address.vcard .label {
font-family: "Noto Sans",Arial,Helvetica,sans-serif;
margin: 0.5em 0;
}
address.vcard .type {
display: none;
}
.alternative-contact {
margin: 1.5em 0 1em;
}
hr.addr {
border-top: 1px dashed;
margin: 0;
color: #ddd;
max-width: calc(100% - 16px);
}
/* temporary notes */
.rfcEditorRemove::before {
position: absolute;
top: 0.2em;
right: 0.2em;
padding: 0.2em;
content: "The RFC Editor will remove this note";
color: #9e2a00; /* Arlen: WCAG 2019 */
background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
position: relative;
padding-top: 1.8em;
background-color: #ffd; /* Arlen: WCAG 2019 */
border-radius: 3px;
}
.cref {
background-color: #ffd; /* Arlen: WCAG 2019 */
padding: 2px 4px;
}
.crefSource {
font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
body {
padding-top: 2em;
}
#title {
padding: 1em 0;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 38px;
}
#identifiers dd {
max-width: 60%;
}
#toc {
position: fixed;
z-index: 2;
top: 0;
right: 0;
padding: 0;
margin: 0;
background-color: inherit;
border-bottom: 1px solid #ccc;
}
#toc h2 {
margin: -1px 0 0 0;
padding: 4px 0 4px 6px;
padding-right: 1em;
min-width: 190px;
font-size: 1.1em;
text-align: right;
background-color: #444;
color: white;
cursor: pointer;
}
#toc h2::before { /* css hamburger */
float: right;
position: relative;
width: 1em;
height: 1px;
left: -164px;
margin: 6px 0 0 0;
background: white none repeat scroll 0 0;
box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
content: "";
}
#toc nav {
display: none;
padding: 0.5em 1em 1em;
overflow: auto;
height: calc(100vh - 48px);
border-left: 1px solid #ddd;
}
}
/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
body {
max-width: 724px;
margin: 42px auto;
padding-left: 1.5em;
padding-right: 29em;
}
#toc {
position: fixed;
top: 42px;
right: 42px;
width: 25%;
margin: 0;
padding: 0 1em;
z-index: 1;
}
#toc h2 {
border-top: none;
border-bottom: 1px solid #ddd;
font-size: 1em;
font-weight: normal;
margin: 0;
padding: 0.25em 1em 1em 0;
}
#toc nav {
display: block;
height: calc(90vh - 84px);
bottom: 0;
padding: 0.5em 0 0;
overflow: auto;
}
img { /* future proofing */
max-width: 100%;
height: auto;
}
}
/* pagination */
@media print {
body {
width: 100%;
}
p {
orphans: 3;
widows: 3;
}
#n-copyright-notice {
border-bottom: none;
}
#toc, #n-introduction {
page-break-before: always;
}
#toc {
border-top: none;
padding-top: 0;
}
figure, pre {
page-break-inside: avoid;
}
figure {
overflow: scroll;
}
h1, h2, h3, h4, h5, h6 {
page-break-after: avoid;
}
h2+*, h3+*, h4+*, h5+*, h6+* {
page-break-before: avoid;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
font-size: 10pt;
}
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
}
/* This is commented out here, as the string-set: doesn't
pass W3C validation currently */
/*
.ears thead .left {
string-set: ears-top-left content();
}
.ears thead .center {
string-set: ears-top-center content();
}
.ears thead .right {
string-set: ears-top-right content();
}
.ears tfoot .left {
string-set: ears-bottom-left content();
}
.ears tfoot .center {
string-set: ears-bottom-center content();
}
.ears tfoot .right {
string-set: ears-bottom-right content();
}
*/
@page :first {
padding-top: 0;
@top-left {
content: normal;
border: none;
}
@top-center {
content: normal;
border: none;
}
@top-right {
content: normal;
border: none;
}
}
@page {
size: A4;
margin-bottom: 45mm;
padding-top: 20px;
/* The follwing is commented out here, but set appropriately by in code, as
the content depends on the document */
/*
@top-left {
content: 'Internet-Draft';
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-left {
content: string(ears-top-left);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-center {
content: string(ears-top-center);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-right {
content: string(ears-top-right);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@bottom-left {
content: string(ears-bottom-left);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-center {
content: string(ears-bottom-center);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-right {
content: '[Page ' counter(page) ']';
vertical-align: top;
border-top: solid 1px #ccc;
}
*/
}
/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
clear: both;
}
/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
vertical-align: top;
}
/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
width: 8em;
}
/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
margin-left: 1em;
}
/* Give floating toc a background color (needed when it's a div inside section */
#toc {
background-color: white;
}
/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
#toc h2 a,
#toc h2 a:link,
#toc h2 a:focus,
#toc h2 a:hover,
#toc a.toplink,
#toc a.toplink:hover {
color: white;
background-color: #444;
text-decoration: none;
}
}
/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
#toc {
padding: 0 0 1em 1em;
}
}
/* Style section numbers with more space between number and title */
.section-number {
padding-right: 0.5em;
}
/* prevent monospace from becoming overly large */
tt, code, pre, code {
font-size: 95%;
}
/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
line-height: 1.12;
}
/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
float: right;
margin-right: 0.5em;
}
/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
float: left;
margin-right: 1em;
}
dl.dlNewline > dt {
float: none;
}
/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
text-align: left;
}
table td.text-center,
table th.text-center {
text-align: center;
}
table td.text-right,
table th.text-right {
text-align: right;
}
/* Make the alternative author contact informatio look less like just another
author, and group it closer with the primary author contact information */
.alternative-contact {
margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
margin: 0 0 0 2em;
}
/* With it being possible to set tables with alignment
left, center, and right, { width: 100%; } does not make sense */
table {
width: auto;
}
/* Avoid reference text that sits in a block with very wide left margin,
because of a long floating dt label.*/
.references dd {
overflow: visible;
}
/* Control caption placement */
caption {
caption-side: bottom;
}
/* Limit the width of the author address vcard, so names in right-to-left
script don't end up on the other side of the page. */
address.vcard {
max-width: 30em;
margin-right: auto;
}
/* For address alignment dependent on LTR or RTL scripts */
address div.left {
text-align: left;
}
address div.right {
text-align: right;
}
/* Provide table alignment support. We can't use the alignX classes above
since they do unwanted things with caption and other styling. */
table.right {
margin-left: auto;
margin-right: 0;
}
table.center {
margin-left: auto;
margin-right: auto;
}
table.left {
margin-left: 0;
margin-right: auto;
}
/* Give the table caption label the same styling as the figcaption */
caption a[href] {
color: #222;
}
@media print {
.toplink {
display: none;
}
/* avoid overwriting the top border line with the ToC header */
#toc {
padding-top: 1px;
}
/* Avoid page breaks inside dl and author address entries */
.vcard {
page-break-inside: avoid;
}
}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
font-variant: small-caps;
font-weight: bold;
font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
h2 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 31px;
}
h3 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
h4 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
/* Float artwork pilcrow to the right */
@media screen {
.artwork a.pilcrow {
display: block;
line-height: 0.7;
margin-top: 0.15em;
}
}
/* Make pilcrows on dd visible */
@media screen {
dd:hover > a.pilcrow {
visibility: visible;
}
}
/* Make the placement of figcaption match that of a table's caption
by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
possibly even requiring a new line */
@media print {
a.pilcrow {
display: none;
}
}
/* Styling for the external metadata */
div#external-metadata {
background-color: #eee;
padding: 0.5em;
margin-bottom: 0.5em;
display: none;
}
div#internal-metadata {
padding: 0.5em; /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
clear: both;
margin: 0 0 -1em;
padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
margin-bottom: 0.25em;
min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
border-left: 1px solid #ddd;
margin: 1em 0 1em 2em;
padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
margin-bottom: 0.5em;
}
/* Additional page break settings */
@media print {
figcaption, table caption {
page-break-before: avoid;
}
}
/* Font size adjustments for print */
@media print {
body { font-size: 10pt; line-height: normal; max-width: 96%; }
h1 { font-size: 1.72em; padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
h2 { font-size: 1.44em; padding-top: 1.5em; } /* 1*1.2*1.2 */
h3 { font-size: 1.2em; padding-top: 1.5em; } /* 1*1.2 */
h4 { font-size: 1em; padding-top: 1.5em; }
h5, h6 { font-size: 1em; margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
.artwork,
.sourcecode {
margin-bottom: 1em;
}
}
/* Avoid narrow tables forcing too narrow table captions, which may render badly */
table {
min-width: 20em;
}
/* ol type a */
ol.type-a { list-style-type: lower-alpha; }
ol.type-A { list-style-type: upper-alpha; }
ol.type-i { list-style-type: lower-roman; }
ol.type-I { list-style-type: lower-roman; }
/* Apply the print table and row borders in general, on request from the RPC,
and increase the contrast between border and odd row background sligthtly */
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
tr:nth-child(2n+1) > td {
background-color: #f8f8f8;
}
/* Use style rules to govern display of the TOC. */
@media screen and (max-width: 1023px) {
#toc nav { display: none; }
#toc.active nav { display: block; }
}
/* Add support for keepWithNext */
.keepWithNext {
break-after: avoid-page;
break-after: avoid-page;
}
/* Add support for keepWithPrevious */
.keepWithPrevious {
break-before: avoid-page;
}
/* Change the approach to avoiding breaks inside artwork etc. */
figure, pre, table, .artwork, .sourcecode {
break-before: avoid-page;
break-after: auto;
}
/* Avoid breaks between <dt> and <dd> */
dl {
break-before: auto;
break-inside: auto;
}
dt {
break-before: auto;
break-after: avoid-page;
}
dd {
break-before: avoid-page;
break-after: auto;
orphans: 3;
widows: 3
}
span.break, dd.break {
margin-bottom: 0;
min-height: 0;
break-before: auto;
break-inside: auto;
break-after: auto;
}
/* Undo break-before ToC */
@media print {
#toc {
break-before: auto;
}
}
/* Text in compact lists should not get extra bottim margin space,
since that would makes the list not compact */
ul.compact p, .ulCompact p,
ol.compact p, .olCompact p {
margin: 0;
}
/* But the list as a whole needs the extra space at the end */
section ul.compact,
section .ulCompact,
section ol.compact,
section .olCompact {
margin-bottom: 1em; /* same as p not within ul.compact etc. */
}
/* The tt and code background above interferes with for instance table cell
backgrounds. Changed to something a bit more selective. */
tt, code {
background-color: transparent;
}
p tt, p code, li tt, li code {
background-color: #f8f8f8;
}
/* Tweak the pre margin -- 0px doesn't come out well */
pre {
margin-top: 0.5px;
}
/* Tweak the comact list text */
ul.compact, .ulCompact,
ol.compact, .olCompact,
dl.compact, .dlCompact {
line-height: normal;
}
/* Don't add top margin for nested lists */
li > ul, li > ol, li > dl,
dd > ul, dd > ol, dd > dl,
dl > dd > dl {
margin-top: initial;
}
/* Elements that should not be rendered on the same line as a <dt> */
/* This should match the element list in writer.text.TextWriter.render_dl() */
dd > div.artwork:first-child,
dd > aside:first-child,
dd > figure:first-child,
dd > ol:first-child,
dd > div:first-child > pre.sourcecode,
dd > table:first-child,
dd > ul:first-child {
clear: left;
}
/* fix for weird browser behaviour when <dd/> is empty */
dt+dd:empty::before{
content: "\00a0";
}
/* Make paragraph spacing inside <li> smaller than in body text, to fit better within the list */
li > p {
margin-bottom: 0.5em
}
/* Don't let p margin spill out from inside list items */
li > p:last-of-type {
margin-bottom: 0;
}
</style>
<link href="rfc-local.css" rel="stylesheet" type="text/css">
<link href="https://dx.doi.org/10.17487/rfc9008" rel="alternate">
<link href="urn:issn:2070-1721" rel="alternate">
<link href="https://datatracker.ietf.org/doc/draft-ietf-roll-useofrplinfo-44" rel="prev">
</head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 9008</td>
<td class="center">RPL Data Plane</td>
<td class="right">April 2021</td>
</tr></thead>
<tfoot><tr>
<td class="left">Robles, et al.</td>
<td class="center">Standards Track</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc9008" class="eref">9008</a></dd>
<dt class="label-updates">Updates:</dt>
<dd class="updates">
<a href="https://www.rfc-editor.org/rfc/rfc6550" class="eref">6550</a>, <a href="https://www.rfc-editor.org/rfc/rfc6553" class="eref">6553</a>, <a href="https://www.rfc-editor.org/rfc/rfc8138" class="eref">8138</a> </dd>
<dt class="label-category">Category:</dt>
<dd class="category">Standards Track</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2021-04" class="published">April 2021</time>
</dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
<div class="author-name">M.I. Robles</div>
<div class="org">UTN-FRM/Aalto</div>
</div>
<div class="author">
<div class="author-name">M. Richardson</div>
<div class="org">SSW</div>
</div>
<div class="author">
<div class="author-name">P. Thubert</div>
<div class="org">Cisco</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 9008</h1>
<h1 id="title">Using RPI Option Type, Routing Header for Source Routes, and IPv6-in-IPv6 Encapsulation in the RPL Data Plane</h1>
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">
This document looks at different data flows through Low-Power and Lossy Networks (LLN) where RPL
(IPv6 Routing Protocol for Low-Power and Lossy Networks) is used to establish routing.
The document enumerates the cases where RPL Packet Information (RPI) Option Type (RFC 6553),
RPL Source Route Header (RFC 6554),
and IPv6-in-IPv6 encapsulation are required in the data plane.
This analysis provides the basis upon which to design efficient compression of these headers.
This document updates RFC 6553 by adding a change to the RPI Option Type. Additionally, this document updates
RFC 6550 by defining a flag in the DODAG Information Object (DIO) Configuration option to indicate this change and
updates RFC 8138 as well to consider the new Option Type when the RPL Option is decompressed.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
<h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
</h2>
<p id="section-boilerplate.1-1">
This is an Internet Standards Track document.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
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 Section 2 of
RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
<span><a href="https://www.rfc-editor.org/info/rfc9008">https://www.rfc-editor.org/info/rfc9008</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
<h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
</h2>
<p id="section-boilerplate.2-1">
Copyright (c) 2021 IETF Trust and the persons identified as the
document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) 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.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
<a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
</h2>
<nav class="toc"><ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.1">
<p id="section-toc.1-1.1.1" class="keepWithNext"><a href="#section-1" class="xref">1</a>. <a href="#name-introduction" class="xref">Introduction</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.1.2.1">
<p id="section-toc.1-1.1.2.1.1" class="keepWithNext"><a href="#section-1.1" class="xref">1.1</a>. <a href="#name-overview" class="xref">Overview</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.2">
<p id="section-toc.1-1.2.1" class="keepWithNext"><a href="#section-2" class="xref">2</a>. <a href="#name-terminology-and-requirement" class="xref">Terminology and Requirements Language</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1"><a href="#section-3" class="xref">3</a>. <a href="#name-rpl-overview" class="xref">RPL Overview</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4">
<p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>. <a href="#name-updates-to-rfc-6550-rfc-655" class="xref">Updates to RFC 6550, RFC 6553, and RFC 8138</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.1">
<p id="section-toc.1-1.4.2.1.1"><a href="#section-4.1" class="xref">4.1</a>. <a href="#name-updates-to-rfc-6550" class="xref">Updates to RFC 6550</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.1.2.1">
<p id="section-toc.1-1.4.2.1.2.1.1"><a href="#section-4.1.1" class="xref">4.1.1</a>. <a href="#name-advertising-external-routes" class="xref">Advertising External Routes with Non-Storing Mode Signaling</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.1.2.2">
<p id="section-toc.1-1.4.2.1.2.2.1"><a href="#section-4.1.2" class="xref">4.1.2</a>. <a href="#name-configuration-options-and-m" class="xref">Configuration Options and Mode of Operation</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.1.2.3">
<p id="section-toc.1-1.4.2.1.2.3.1"><a href="#section-4.1.3" class="xref">4.1.3</a>. <a href="#name-indicating-the-new-rpi-in-t" class="xref">Indicating the New RPI in the DODAG Configuration Option Flag</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.2">
<p id="section-toc.1-1.4.2.2.1"><a href="#section-4.2" class="xref">4.2</a>. <a href="#name-updates-to-rfc-6553-indicat" class="xref">Updates to RFC 6553: Indicating the New RPI Option Type</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.3">
<p id="section-toc.1-1.4.2.3.1"><a href="#section-4.3" class="xref">4.3</a>. <a href="#name-updates-to-rfc-8138-indicat" class="xref">Updates to RFC 8138: Indicating the Way to Decompress with the New RPI Option Type</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5">
<p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>. <a href="#name-reference-topology" class="xref">Reference Topology</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6">
<p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>. <a href="#name-use-cases" class="xref">Use Cases</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7">
<p id="section-toc.1-1.7.1"><a href="#section-7" class="xref">7</a>. <a href="#name-storing-mode" class="xref">Storing Mode</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.1">
<p id="section-toc.1-1.7.2.1.1"><a href="#section-7.1" class="xref">7.1</a>. <a href="#name-storing-mode-interaction-be" class="xref">Storing Mode: Interaction between Leaf and Root</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.1.2.1">
<p id="section-toc.1-1.7.2.1.2.1.1"><a href="#section-7.1.1" class="xref">7.1.1</a>. <a href="#name-sm-example-of-flow-from-ral" class="xref">SM: Example of Flow from RAL to Root</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.1.2.2">
<p id="section-toc.1-1.7.2.1.2.2.1"><a href="#section-7.1.2" class="xref">7.1.2</a>. <a href="#name-sm-example-of-flow-from-roo" class="xref">SM: Example of Flow from Root to RAL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.1.2.3">
<p id="section-toc.1-1.7.2.1.2.3.1"><a href="#section-7.1.3" class="xref">7.1.3</a>. <a href="#name-sm-example-of-flow-from-root" class="xref">SM: Example of Flow from Root to RUL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.1.2.4">
<p id="section-toc.1-1.7.2.1.2.4.1"><a href="#section-7.1.4" class="xref">7.1.4</a>. <a href="#name-sm-example-of-flow-from-rul" class="xref">SM: Example of Flow from RUL to Root</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.2">
<p id="section-toc.1-1.7.2.2.1"><a href="#section-7.2" class="xref">7.2</a>. <a href="#name-sm-interaction-between-leaf" class="xref">SM: Interaction between Leaf and Internet</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.2.2.1">
<p id="section-toc.1-1.7.2.2.2.1.1"><a href="#section-7.2.1" class="xref">7.2.1</a>. <a href="#name-sm-example-of-flow-from-ral-" class="xref">SM: Example of Flow from RAL to Internet</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.2.2.2">
<p id="section-toc.1-1.7.2.2.2.2.1"><a href="#section-7.2.2" class="xref">7.2.2</a>. <a href="#name-sm-example-of-flow-from-int" class="xref">SM: Example of Flow from Internet to RAL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.2.2.3">
<p id="section-toc.1-1.7.2.2.2.3.1"><a href="#section-7.2.3" class="xref">7.2.3</a>. <a href="#name-sm-example-of-flow-from-rul-" class="xref">SM: Example of Flow from RUL to Internet</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.2.2.4">
<p id="section-toc.1-1.7.2.2.2.4.1"><a href="#section-7.2.4" class="xref">7.2.4</a>. <a href="#name-sm-example-of-flow-from-inte" class="xref">SM: Example of Flow from Internet to RUL</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.3">
<p id="section-toc.1-1.7.2.3.1"><a href="#section-7.3" class="xref">7.3</a>. <a href="#name-sm-interaction-between-leaf-" class="xref">SM: Interaction between Leaf and Leaf</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.3.2.1">
<p id="section-toc.1-1.7.2.3.2.1.1"><a href="#section-7.3.1" class="xref">7.3.1</a>. <a href="#name-sm-example-of-flow-from-ral-t" class="xref">SM: Example of Flow from RAL to RAL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.3.2.2">
<p id="section-toc.1-1.7.2.3.2.2.1"><a href="#section-7.3.2" class="xref">7.3.2</a>. <a href="#name-sm-example-of-flow-from-ral-to" class="xref">SM: Example of Flow from RAL to RUL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.3.2.3">
<p id="section-toc.1-1.7.2.3.2.3.1"><a href="#section-7.3.3" class="xref">7.3.3</a>. <a href="#name-sm-example-of-flow-from-rul-t" class="xref">SM: Example of Flow from RUL to RAL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7.2.3.2.4">
<p id="section-toc.1-1.7.2.3.2.4.1"><a href="#section-7.3.4" class="xref">7.3.4</a>. <a href="#name-sm-example-of-flow-from-rul-to" class="xref">SM: Example of Flow from RUL to RUL</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8">
<p id="section-toc.1-1.8.1"><a href="#section-8" class="xref">8</a>. <a href="#name-non-storing-mode" class="xref">Non-Storing Mode</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.1">
<p id="section-toc.1-1.8.2.1.1"><a href="#section-8.1" class="xref">8.1</a>. <a href="#name-non-storing-mode-interactio" class="xref">Non-Storing Mode: Interaction between Leaf and Root</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.1.2.1">
<p id="section-toc.1-1.8.2.1.2.1.1"><a href="#section-8.1.1" class="xref">8.1.1</a>. <a href="#name-non-sm-example-of-flow-from" class="xref">Non-SM: Example of Flow from RAL to Root</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.1.2.2">
<p id="section-toc.1-1.8.2.1.2.2.1"><a href="#section-8.1.2" class="xref">8.1.2</a>. <a href="#name-non-sm-example-of-flow-from-" class="xref">Non-SM: Example of Flow from Root to RAL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.1.2.3">
<p id="section-toc.1-1.8.2.1.2.3.1"><a href="#section-8.1.3" class="xref">8.1.3</a>. <a href="#name-non-sm-example-of-flow-from-r" class="xref">Non-SM: Example of Flow from Root to RUL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.1.2.4">
<p id="section-toc.1-1.8.2.1.2.4.1"><a href="#section-8.1.4" class="xref">8.1.4</a>. <a href="#name-non-sm-example-of-flow-from-ru" class="xref">Non-SM: Example of Flow from RUL to Root</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.2">
<p id="section-toc.1-1.8.2.2.1"><a href="#section-8.2" class="xref">8.2</a>. <a href="#name-non-storing-mode-interaction" class="xref">Non-Storing Mode: Interaction between Leaf and Internet</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.2.2.1">
<p id="section-toc.1-1.8.2.2.2.1.1"><a href="#section-8.2.1" class="xref">8.2.1</a>. <a href="#name-non-sm-example-of-flow-from-ra" class="xref">Non-SM: Example of Flow from RAL to Internet</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.2.2.2">
<p id="section-toc.1-1.8.2.2.2.2.1"><a href="#section-8.2.2" class="xref">8.2.2</a>. <a href="#name-non-sm-example-of-flow-from-i" class="xref">Non-SM: Example of Flow from Internet to RAL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.2.2.3">
<p id="section-toc.1-1.8.2.2.2.3.1"><a href="#section-8.2.3" class="xref">8.2.3</a>. <a href="#name-non-sm-example-of-flow-from-rul" class="xref">Non-SM: Example of Flow from RUL to Internet</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.2.2.4">
<p id="section-toc.1-1.8.2.2.2.4.1"><a href="#section-8.2.4" class="xref">8.2.4</a>. <a href="#name-non-sm-example-of-flow-from-in" class="xref">Non-SM: Example of Flow from Internet to RUL</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.3">
<p id="section-toc.1-1.8.2.3.1"><a href="#section-8.3" class="xref">8.3</a>. <a href="#name-non-sm-interaction-between-" class="xref">Non-SM: Interaction between Leaves</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.3.2.1">
<p id="section-toc.1-1.8.2.3.2.1.1"><a href="#section-8.3.1" class="xref">8.3.1</a>. <a href="#name-non-sm-example-of-flow-from-ral" class="xref">Non-SM: Example of Flow from RAL to RAL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.3.2.2">
<p id="section-toc.1-1.8.2.3.2.2.1"><a href="#section-8.3.2" class="xref">8.3.2</a>. <a href="#name-non-sm-example-of-flow-from-ral-" class="xref">Non-SM: Example of Flow from RAL to RUL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.3.2.3">
<p id="section-toc.1-1.8.2.3.2.3.1"><a href="#section-8.3.3" class="xref">8.3.3</a>. <a href="#name-non-sm-example-of-flow-from-rul-" class="xref">Non-SM: Example of Flow from RUL to RAL</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.3.2.4">
<p id="section-toc.1-1.8.2.3.2.4.1"><a href="#section-8.3.4" class="xref">8.3.4</a>. <a href="#name-non-sm-example-of-flow-from-rul-t" class="xref">Non-SM: Example of Flow from RUL to RUL</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-9" class="xref">9</a>. <a href="#name-operational-considerations-" class="xref">Operational Considerations of Supporting RULs</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.10">
<p id="section-toc.1-1.10.1"><a href="#section-10" class="xref">10</a>. <a href="#name-operational-considerations-o" class="xref">Operational Considerations of Introducing 0x23</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#section-11" class="xref">11</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.11.2.1">
<p id="section-toc.1-1.11.2.1.1"><a href="#section-11.1" class="xref">11.1</a>. <a href="#name-option-type-in-rpl-option-2" class="xref">Option Type in RPL Option</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.11.2.2">
<p id="section-toc.1-1.11.2.2.1"><a href="#section-11.2" class="xref">11.2</a>. <a href="#name-change-to-the-dodag-configu" class="xref">Change to the "DODAG Configuration Option Flags" Subregistry</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.11.2.3">
<p id="section-toc.1-1.11.2.3.1"><a href="#section-11.3" class="xref">11.3</a>. <a href="#name-change-mop-value-7-to-reser" class="xref">Change MOP Value 7 to Reserved</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12">
<p id="section-toc.1-1.12.1"><a href="#section-12" class="xref">12</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13">
<p id="section-toc.1-1.13.1"><a href="#section-13" class="xref">13</a>. <a href="#name-references" class="xref">References</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.1">
<p id="section-toc.1-1.13.2.1.1"><a href="#section-13.1" class="xref">13.1</a>. <a href="#name-normative-references" class="xref">Normative References</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.2">
<p id="section-toc.1-1.13.2.2.1"><a href="#section-13.2" class="xref">13.2</a>. <a href="#name-informative-references" class="xref">Informative References</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.14">
<p id="section-toc.1-1.14.1"><a href="#section-appendix.a" class="xref"></a><a href="#name-acknowledgments" class="xref">Acknowledgments</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.15">
<p id="section-toc.1-1.15.1"><a href="#section-appendix.b" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a></p>
</li>
</ul>
</nav>
</section>
</div>
<section id="section-1">
<h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
</h2>
<p id="section-1-1">
RPL (IPv6 Routing Protocol for Low-Power and Lossy Networks)
<span>[<a href="#RFC6550" class="xref">RFC6550</a>]</span> is a routing protocol for
constrained networks. <span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span>
defines the RPL Option carried within the IPv6 Hop-by-Hop Options
header to carry the RPLInstanceID and quickly identify inconsistencies (loops) in the routing topology.
The RPL Option is commonly referred to as the RPL Packet Information
(RPI), although the RPI is the routing information that is defined
in <span>[<a href="#RFC6550" class="xref">RFC6550</a>]</span> and transported in the RPL Option.
RFC 6554 <span>[<a href="#RFC6554" class="xref">RFC6554</a>]</span> defines the "RPL Source Route Header" (RH3), an
IPv6 extension header to deliver datagrams within a RPL
routing domain, particularly in Non-Storing mode.<a href="#section-1-1" class="pilcrow">¶</a></p>
<p id="section-1-2">
These various items are referred to as RPL artifacts, and
they are seen on all of the data plane traffic that occurs in
RPL-routed networks; they do not, in general, appear on the RPL
control plane at all, which is mostly hop-by-hop
traffic (one exception being Destination Advertisement Object (DAO) messages in Non-Storing mode).<a href="#section-1-2" class="pilcrow">¶</a></p>
<p id="section-1-3">
It has become clear from attempts to do multi-vendor
interoperability, and from a desire to compress as many of
the above artifacts as possible, that not all implementers
agree when artifacts are necessary, or when they can be safely
omitted, or removed.<a href="#section-1-3" class="pilcrow">¶</a></p>
<p id="section-1-4">
The ROLL (Routing Over Low power and Lossy networks) Working Group
analyzed how IPv6 rules <span>[<a href="#RFC2460" class="xref">RFC2460</a>]</span> apply to the Storing and
Non-Storing use of RPL. The result was 24 data-plane use
cases. They are exhaustively outlined here in order to be
completely unambiguous. During the processing of this
document, new rules were published as
<span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span>, and this document was updated
to reflect the normative changes in that document.<a href="#section-1-4" class="pilcrow">¶</a></p>
<p id="section-1-5">
This document updates <span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span>, changing the value of the Option Type of the RPL Option
to make routers compliant with <span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span> ignore this option when it is not recognized.<a href="#section-1-5" class="pilcrow">¶</a></p>
<p id="section-1-6">
A Routing Header Dispatch for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPAN) (6LoRH) <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>
defines a mechanism for compressing RPL Option information and Routing Header type 3 (RH3)
<span>[<a href="#RFC6554" class="xref">RFC6554</a>]</span>, as well as an efficient IPv6-in-IPv6 technique.<a href="#section-1-6" class="pilcrow">¶</a></p>
<p id="section-1-7">
Most of the use cases described herein require the use of IPv6-in-IPv6 packet encapsulation.
When encapsulating and decapsulating packets, <span>[<a href="#RFC6040" class="xref">RFC6040</a>]</span> <span class="bcp14">MUST</span> be applied to map the
setting of the explicit congestion notification (ECN) field between inner and outer headers.
Additionally, <span>[<a href="#I-D.ietf-intarea-tunnels" class="xref">TUNNELS</a>]</span> is recommended reading to explain
the relationship of IP tunnels to existing protocol layers and the challenges
in supporting IP tunneling.<a href="#section-1-7" class="pilcrow">¶</a></p>
<p id="section-1-8">
Unconstrained uses of RPL are not in scope of this document, and
applicability statements for those uses may provide different
advice, e.g., <span>[<a href="#I-D.ietf-anima-autonomic-control-plane" class="xref">ACP</a>]</span>.<a href="#section-1-8" class="pilcrow">¶</a></p>
<section id="section-1.1">
<h3 id="name-overview">
<a href="#section-1.1" class="section-number selfRef">1.1. </a><a href="#name-overview" class="section-name selfRef">Overview</a>
</h3>
<p id="section-1.1-1">
The rest of the document is organized as follows: <a href="#sec_terms" class="xref">Section 2</a> describes the terminology that is used.
<a href="#sec_rpl_overview" class="xref">Section 3</a> provides a RPL overview.
<a href="#updateRFCs_section" class="xref">Section 4</a> describes the updates to RFC 6553, RFC 6550, and RFC 8138.
<a href="#sec_ref_topo" class="xref">Section 5</a> provides the reference topology used for the use cases.
<a href="#sec_use_cases" class="xref">Section 6</a> describes the use cases included.
<a href="#sec_sm" class="xref">Section 7</a> describes the Storing mode cases and <a href="#sec_non-sm" class="xref">Section 8</a> the Non-Storing mode cases.
<a href="#notrplaware" class="xref">Section 9</a> describes the operational considerations of supporting RPL-unaware leaves.
<a href="#sec_op_con_0x23" class="xref">Section 10</a> depicts operational considerations for the proposed change on RPI Option Type, <a href="#iana" class="xref">Section 11</a> the
IANA considerations, and then <a href="#Security" class="xref">Section 12</a> describes the security
aspects.<a href="#section-1.1-1" class="pilcrow">¶</a></p>
</section>
</section>
<div id="sec_terms">
<section id="section-2">
<h2 id="name-terminology-and-requirement">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-terminology-and-requirement" class="section-name selfRef">Terminology and Requirements Language</a>
</h2>
<p id="section-2-1">
The key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>", "<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>", "<span class="bcp14">SHALL NOT</span>", "<span class="bcp14">SHOULD</span>", "<span class="bcp14">SHOULD NOT</span>", "<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>",
"<span class="bcp14">MAY</span>", and "<span class="bcp14">OPTIONAL</span>" in this document are to be interpreted as
described in BCP 14 <span>[<a href="#RFC2119" class="xref">RFC2119</a>]</span> <span>[<a href="#RFC8174" class="xref">RFC8174</a>]</span>
when, and only when, they appear in all capitals, as shown here.<a href="#section-2-1" class="pilcrow">¶</a></p>
<p id="section-2-2">
The following terminology defined in <span>[<a href="#RFC7102" class="xref">RFC7102</a>]</span> applies to this document: LLN, RPL, RPL domain, and ROLL.<a href="#section-2-2" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-2-3">
<dt id="section-2-3.1">
Consumed:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.2">A Routing Header is consumed when the Segments Left field is zero, which indicates that the
destination in the IPv6 header is the final destination of the packet and that the hops in the Routing Header
have been traversed.<a href="#section-2-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.3">
RPL Leaf:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.4">An IPv6 host that is attached to a RPL router and obtains connectivity
through a RPL Destination-Oriented Directed Acyclic Graph (DODAG). As an IPv6 node,
a RPL leaf is expected to ignore a consumed Routing Header, and as an IPv6 host, it
is expected to ignore a Hop-by-Hop Options header. Thus, a RPL leaf can correctly
receive a packet with RPL artifacts. On the other hand, a RPL leaf is not expected
to generate RPL artifacts or to support IP-in-IP encapsulation. For simplification,
this document uses the standalone term leaf to mean a RPL leaf.<a href="#section-2-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.5">
RPL Packet Information (RPI):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.6">
The information defined abstractly in <span>[<a href="#RFC6550" class="xref">RFC6550</a>]</span> to be placed in IP packets.
The term is commonly used, including in this document, to refer to the RPL Option <span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span>
that transports that abstract information in an IPv6 Hop-by-Hop Options header. <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span> provides
an alternate (more compressed) formatting for the same abstract information.<a href="#section-2-3.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.7">
RPL-Aware Node (RAN):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.8">A device that implements RPL. Please note that the device can be found inside the LLN or outside LLN.<a href="#section-2-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.9">
RPL-Aware Leaf (RAL):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.10">A RPL-aware node that is also a RPL leaf.<a href="#section-2-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.11">
RPL-Unaware Node:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.12">A device that does not implement RPL, thus the device is RPL unaware.
Please note that the device can be found inside the LLN.<a href="#section-2-3.12" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.13">
RPL-Unaware Leaf (RUL):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.14">A RPL-unaware node that is also a RPL leaf.<a href="#section-2-3.14" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.15">
6LoWPAN Node (6LN):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.16">
<span>[<a href="#RFC6775" class="xref">RFC6775</a>]</span> defines it as the following:
"A 6LoWPAN node is any host or router participating in a LoWPAN.
This term is used when referring to situations in which either a
host or router can play the role described." In this document, a 6LN acts as a leaf.<a href="#section-2-3.16" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.17">
6LoWPAN Router (6LR):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.18">
<span>[<a href="#RFC6775" class="xref">RFC6775</a>]</span> defines it as the following:
"An intermediate router in the LoWPAN that is able to send and
receive Router Advertisements (RAs) and Router Solicitations (RSs)
as well as forward and route IPv6 packets. 6LoWPAN routers are
present only in route-over topologies."<a href="#section-2-3.18" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.19">
6LoWPAN Border Router (6LBR):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.20">
<span>[<a href="#RFC6775" class="xref">RFC6775</a>]</span> defines it as the following:
"A border router located at the junction of separate 6LoWPAN
networks or between a 6LoWPAN network and another IP network.
There may be one or more 6LBRs at the 6LoWPAN network boundary. A
6LBR is the responsible authority for IPv6 prefix propagation for
the 6LoWPAN network it is serving. An isolated LoWPAN also
contains a 6LBR in the network, which provides the prefix(es) for
the isolated network."<a href="#section-2-3.20" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.21">
Flag Day:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.22">A flag day is caused when a network is reconfigured in a way that nodes running the older configuration cannot communicate with nodes running the new configuration. An example of a flag day is when the ARPANET changed from IP version 3 to IP version 4 on January 1, 1983 <span>[<a href="#RFC0801" class="xref">RFC0801</a>]</span>.
In the context of this document, a switch from RPI Option Type (0x63) to Option Type (0x23) presents as a disruptive changeover. In order to reduce the amount of time for such a changeover, <a href="#update6550" class="xref">Section 4.1.3</a> provides a mechanism to allow nodes to be incrementally upgraded.<a href="#section-2-3.22" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.23">
Non-Storing Mode (Non-SM):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.24">A RPL mode of operation in which the RPL-aware
nodes send information to the root about their parents. Thus, the root knows the topology.
Because the root knows the topology, the intermediate 6LRs do not maintain routing state, and
source routing is needed.<a href="#section-2-3.24" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.25">
Storing Mode (SM):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.26">A RPL mode of operation in which RPL-aware nodes (6LRs) maintain routing
state (of the children) so that source routing is not needed.<a href="#section-2-3.26" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<aside id="section-2-4">
<p id="section-2-4.1">
Note: Due to lack of space in some tables, we refer to IPv6-in-IPv6 as IP6-IP6.<a href="#section-2-4.1" class="pilcrow">¶</a></p>
</aside>
</section>
</div>
<div id="sec_rpl_overview">
<section id="section-3">
<h2 id="name-rpl-overview">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-rpl-overview" class="section-name selfRef">RPL Overview</a>
</h2>
<p id="section-3-1">
RPL defines the RPL control message (control plane), which is an
ICMPv6 message <span>[<a href="#RFC4443" class="xref">RFC4443</a>]</span> with a Type of 155.
DIS (DODAG Information Solicitation), DIO (DODAG Information Object),
and DAO (Destination Advertisement Object) messages are
all RPL control messages but with different Code values.
A RPL stack is shown in <a href="#fig_RPLStack" class="xref">Figure 1</a>.<a href="#section-3-1" class="pilcrow">¶</a></p>
<span id="name-rpl-stack"></span><div id="fig_RPLStack">
<figure id="figure-1">
<div class="artwork art-text alignLeft" id="section-3-2.1">
<pre>
+--------------+
| Upper Layers |
| |
+--------------+
| RPL |
| |
+--------------+
| ICMPv6 |
| |
+--------------+
| IPv6 |
| |
+--------------+
| 6LoWPAN |
| |
+--------------+
| PHY-MAC |
| |
+--------------+
</pre>
</div>
<figcaption><a href="#figure-1" class="selfRef">Figure 1</a>:
<a href="#name-rpl-stack" class="selfRef">RPL Stack</a>
</figcaption></figure>
</div>
<p id="section-3-3">
RPL supports two modes of Downward internal traffic: in Storing mode (SM),
it is fully stateful; in Non-Storing mode (non-SM), it is fully source
routed. A RPL Instance is either fully Storing or fully
Non-Storing, i.e., a RPL Instance with a combination of fully
Storing and Non-Storing nodes is not supported with the
current specifications at the time of writing this document.
External routes are advertised with non-SM messaging
even in an SM network, see <a href="#nnstext" class="xref">Section 4.1.1</a><a href="#section-3-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="updateRFCs_section">
<section id="section-4">
<h2 id="name-updates-to-rfc-6550-rfc-655">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-updates-to-rfc-6550-rfc-655" class="section-name selfRef">Updates to RFC 6550, RFC 6553, and RFC 8138</a>
</h2>
<div id="updateRFC_section6550">
<section id="section-4.1">
<h3 id="name-updates-to-rfc-6550">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-updates-to-rfc-6550" class="section-name selfRef">Updates to RFC 6550</a>
</h3>
<div id="nnstext">
<section id="section-4.1.1">
<h4 id="name-advertising-external-routes">
<a href="#section-4.1.1" class="section-number selfRef">4.1.1. </a><a href="#name-advertising-external-routes" class="section-name selfRef">Advertising External Routes with Non-Storing Mode Signaling</a>
</h4>
<p id="section-4.1.1-1">
<span><a href="https://www.rfc-editor.org/rfc/rfc6550#section-6.7.8" class="relref">Section 6.7.8</a> of [<a href="#RFC6550" class="xref">RFC6550</a>]</span> introduces the 'E' flag that
is set to indicate that the 6LR that generates the DAO redistributes
external targets into the RPL network. An external target is a target
that has been learned through an alternate protocol, for instance, a
route to a prefix that is outside the RPL domain but reachable via a
6LR. Being outside of the RPL domain, a node that is reached via an
external target cannot be guaranteed to ignore the RPL artifacts and
cannot be expected to process the compression defined in <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>
correctly. This means that the RPL artifacts should be contained in an
IP-in-IP encapsulation that is removed by the 6LR, and that any
remaining compression should be expanded by the 6LR before it forwards
a packet outside the RPL domain.<a href="#section-4.1.1-1" class="pilcrow">¶</a></p>
<p id="section-4.1.1-2">
This specification updates <span>[<a href="#RFC6550" class="xref">RFC6550</a>]</span> to say that advertising external
targets using Non-Storing mode DAO messaging even in a Storing mode
network is <span class="bcp14">RECOMMENDED</span>. This way, external routes are not
advertised within the DODAG, and all packets to an external target
reach the root like normal Non-Storing mode traffic. The Non-Storing
mode DAO informs the root of the address of the 6LR that injects the
external route, and the root uses IP-in-IP encapsulation to that 6LR,
which terminates the IP-in-IP tunnel and forwards the original packet
outside the RPL domain free of RPL artifacts.<a href="#section-4.1.1-2" class="pilcrow">¶</a></p>
<p id="section-4.1.1-3">
In the other direction,
for traffic coming from an external target into the LLN, the parent
(6LR) that injects the traffic always encapsulates to the root.
This whole operation is
transparent to intermediate routers that only see traffic between the
6LR and the root, and only the root and the 6LRs that inject external
routes in the network need to be upgraded to add this function to the
network.<a href="#section-4.1.1-3" class="pilcrow">¶</a></p>
<p id="section-4.1.1-4">
A RUL is a special case of external target when the target is actually
a host, and it is known to support a consumed Routing Header and to
ignore a Hop-by-Hop Options header as prescribed by <span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span>.
The target may have been learned through an external routing protocol or may have
been registered to the 6LR using <span>[<a href="#RFC8505" class="xref">RFC8505</a>]</span>.<a href="#section-4.1.1-4" class="pilcrow">¶</a></p>
<p id="section-4.1.1-5">
In order to enable IP-in-IP all the way to a 6LN, it is beneficial
that the 6LN supports decapsulating IP-in-IP, but that is not assumed
by <span>[<a href="#RFC8504" class="xref">RFC8504</a>]</span>.
If the 6LN is a RUL, the root that encapsulates a packet <span class="bcp14">SHOULD</span>
terminate the tunnel at a parent 6LR. The root may encapsulate all the
way to the RUL if it is aware that the RUL supports IP-in-IP decapsulation
and the artifacts in the outer header chain.<a href="#section-4.1.1-5" class="pilcrow">¶</a></p>
<p id="section-4.1.1-6">
A node that is reachable over an external route is not expected to
support <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>. Whether a decapsulation took place
or not and even when the 6LR is delivering the packet to a RUL, the
6LR that injected an external route <span class="bcp14">MUST</span> undo the <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span> compression on the packet before
forwarding over that external route.<a href="#section-4.1.1-6" class="pilcrow">¶</a></p>
</section>
</div>
<div id="mopchanges">
<section id="section-4.1.2">
<h4 id="name-configuration-options-and-m">
<a href="#section-4.1.2" class="section-number selfRef">4.1.2. </a><a href="#name-configuration-options-and-m" class="section-name selfRef">Configuration Options and Mode of Operation</a>
</h4>
<p id="section-4.1.2-1">
<span><a href="https://www.rfc-editor.org/rfc/rfc6550#section-6.7.6" class="relref">Section 6.7.6</a> of [<a href="#RFC6550" class="xref">RFC6550</a>]</span> describes the DODAG Configuration option as
containing a series of flags in the first octet of the payload.<a href="#section-4.1.2-1" class="pilcrow">¶</a></p>
<p id="section-4.1.2-2">
Anticipating future work to revise RPL relating to how the LLN and DODAG
are configured, this document renames the IANA "DODAG Configuration Option
Flags" subregistry so that it applies to Mode of Operation (MOP) values zero
(0) through six (6) only, leaving the flags unassigned for MOP value seven
(7). The MOP is described in <span>[<a href="#RFC6550" class="xref">RFC6550</a>], <a href="https://www.rfc-editor.org/rfc/rfc6550#section-6.3.1" class="relref">Section 6.3.1</a></span>.<a href="#section-4.1.2-2" class="pilcrow">¶</a></p>
<p id="section-4.1.2-3">
In addition, this document reserves MOP value 7 for future expansion.<a href="#section-4.1.2-3" class="pilcrow">¶</a></p>
<p id="section-4.1.2-4">
See Sections <a href="#sec_op_flags_reg" class="xref">11.2</a> and <a href="#sec_mop_val_change" class="xref">11.3</a>.<a href="#section-4.1.2-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="update6550">
<section id="section-4.1.3">
<h4 id="name-indicating-the-new-rpi-in-t">
<a href="#section-4.1.3" class="section-number selfRef">4.1.3. </a><a href="#name-indicating-the-new-rpi-in-t" class="section-name selfRef">Indicating the New RPI in the DODAG Configuration Option Flag</a>
</h4>
<p id="section-4.1.3-1">
In order to avoid a flag day caused by lack of interoperation
between nodes of the new RPI Option Type (0x23) and old RPI Option Type (0x63), this section
defines a flag in the DODAG Configuration option, to indicate when
the new RPI Option Type can be safely used. This means that the flag is going
to indicate the value of Option Type that the network will be using for the RPL Option. Thus, when a
node joins to a network, it will know which value to use.
With this, RPL-capable nodes know if it is safe to use 0x23 when creating a new RPL Option.
A node that forwards a packet with an RPI <span class="bcp14">MUST NOT</span> modify the Option Type of the RPL Option.<a href="#section-4.1.3-1" class="pilcrow">¶</a></p>
<p id="section-4.1.3-2">
This is done using a DODAG Configuration option flag that will
signal "RPI 0x23 enable" and propagate through the network.
<span><a href="https://www.rfc-editor.org/rfc/rfc6550#section-6.3.1" class="relref">Section 6.3.1</a> of [<a href="#RFC6550" class="xref">RFC6550</a>]</span> defines a 3-bit Mode of
Operation (MOP) in the DIO Base Object. The flag is defined only
for MOP value between 0 to 6.<a href="#section-4.1.3-2" class="pilcrow">¶</a></p>
<p id="section-4.1.3-3">
For a MOP value of 7, a node <span class="bcp14">MUST</span> use the RPI 0x23 option.<a href="#section-4.1.3-3" class="pilcrow">¶</a></p>
<p id="section-4.1.3-4">
As stated in <span>[<a href="#RFC6550" class="xref">RFC6550</a>]</span>, the DODAG Configuration option is present in DIO messages.
The DODAG Configuration option distributes configuration
information. It is generally static, and it does not change within
the DODAG.
This information is configured at the DODAG root and distributed
throughout the DODAG with the DODAG Configuration option.
Nodes other than the DODAG root do not modify this information when
propagating the DODAG Configuration option.<a href="#section-4.1.3-4" class="pilcrow">¶</a></p>
<p id="section-4.1.3-5">
Currently, the DODAG Configuration option in <span>[<a href="#RFC6550" class="xref">RFC6550</a>]</span> states
that the unused bits "<span class="bcp14">MUST</span> be initialized to zero by the sender
and <span class="bcp14">MUST</span> be ignored by the receiver." If the flag is received with a
value zero, which is the default, then new nodes will remain compatible with
RFC 6553 -- originating traffic with the old RPI Option Type value (0x63).
If the flag is received with a value of 1, then the value for the
RPL Option <span class="bcp14">MUST</span> be set to 0x23.<a href="#section-4.1.3-5" class="pilcrow">¶</a></p>
<p id="section-4.1.3-6">
Bit number three of the Flags field in the DODAG Configuration option
is to be used as shown in <a href="#fig_RPIflagday2" class="xref">Table 1</a> (which is the same as <a href="#fig_RPIflagdayConfOption" class="xref">Table 36</a>
in <a href="#iana" class="xref">Section 11</a> and is shown here for convenience):<a href="#section-4.1.3-6" class="pilcrow">¶</a></p>
<span id="name-dodag-configuration-option-"></span><div id="fig_RPIflagday2">
<table class="center" id="table-1">
<caption>
<a href="#table-1" class="selfRef">Table 1</a>:
<a href="#name-dodag-configuration-option-" class="selfRef">DODAG Configuration Option Flag to Indicate the RPI Flag Day</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Bit number</th>
<th class="text-center" rowspan="1" colspan="1">Description</th>
<th class="text-center" rowspan="1" colspan="1">Reference</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-center" rowspan="1" colspan="1">RPI 0x23 enable</td>
<td class="text-center" rowspan="1" colspan="1">This document</td>
</tr>
</tbody>
</table>
</div>
<p id="section-4.1.3-8">
In the case of reboot, the node (6LN or 6LR) does not remember the
RPI Option Type (i.e., whether or not the flag is set), so the node will not trigger DIO
messages until a DIO message is received that indicates the RPI
value to be used. The node will use the value 0x23 if the network supports this feature.<a href="#section-4.1.3-8" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<section id="section-4.2">
<h3 id="name-updates-to-rfc-6553-indicat">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-updates-to-rfc-6553-indicat" class="section-name selfRef">Updates to RFC 6553: Indicating the New RPI Option Type</a>
</h3>
<p id="section-4.2-1">
This modification is required in order to be able to send, for example,
IPv6 packets from a RPL-aware leaf to a RPL-unaware node through the Internet (see <a href="#sm-Ral2i" class="xref">Section 7.2.1</a>)
without requiring IPv6-in-IPv6 encapsulation.<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<p id="section-4.2-2">
<span><a href="https://www.rfc-editor.org/rfc/rfc6553#section-6" class="relref">Section 6</a> of [<a href="#RFC6553" class="xref">RFC6553</a>]</span> states, as shown in <a href="#fig_RPIOption" class="xref">Table 2</a>,
that in the Option Type field of the RPL Option,
the two high-order bits must be set to '01' and the third bit is equal to '1'.
The first two bits indicate that the IPv6 node must discard the packet
if it doesn't recognize the Option Type,
and the third bit indicates that the Option Data may change in route.
The remaining bits serve as the Option Type.<a href="#section-4.2-2" class="pilcrow">¶</a></p>
<span id="name-option-type-in-rpl-option"></span><div id="fig_RPIOption">
<table class="center" id="table-2">
<caption>
<a href="#table-2" class="selfRef">Table 2</a>:
<a href="#name-option-type-in-rpl-option" class="selfRef">Option Type in RPL Option</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="2" colspan="1">Hex Value</th>
<th class="text-center" rowspan="1" colspan="3">Binary Value</th>
<th class="text-center" rowspan="2" colspan="1">Description</th>
<th class="text-center" rowspan="2" colspan="1">Reference</th>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">act</th>
<th class="text-center" rowspan="1" colspan="1">chg</th>
<th class="text-center" rowspan="1" colspan="1">rest</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">0x63</td>
<td class="text-center" rowspan="1" colspan="1">01</td>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-center" rowspan="1" colspan="1">00011</td>
<td class="text-center" rowspan="1" colspan="1">RPL Option</td>
<td class="text-center" rowspan="1" colspan="1">
<span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span>
</td>
</tr>
</tbody>
</table>
</div>
<p id="section-4.2-4">
This document illustrates that it is not always possible to know for sure at the source whether a packet will travel only within the RPL domain or whether it will leave it.<a href="#section-4.2-4" class="pilcrow">¶</a></p>
<p id="section-4.2-5">
At the time <span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span> was published, leaking a Hop-by-Hop Options header in the outer IPv6 header
chain could potentially impact core routers in the Internet. So at that time, it was decided to encapsulate
any packet with a RPL Option using IPv6-in-IPv6 in all cases where it was unclear whether the packet would
remain within the RPL domain. In the exception case where a packet would still leak, the Option Type would
ensure that the first router in the Internet that does not recognize the option would drop the packet and
protect the rest of the network.<a href="#section-4.2-5" class="pilcrow">¶</a></p>
<p id="section-4.2-6">
Even with <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>, where the IPv6-in-IPv6 header is compressed, this approach yields extra bytes
in a packet; this means consuming more energy and more bandwidth, incurring higher chances of loss, and possibly
causing a fragmentation at the 6LoWPAN level. This impacts the daily operation of constrained devices for a case
that generally does not happen and would not heavily impact the core anyway.<a href="#section-4.2-6" class="pilcrow">¶</a></p>
<p id="section-4.2-7">
While the intention was and remains that the Hop-by-Hop Options header with a RPL Option should be confined within the
RPL domain, this specification modifies this behavior in order to reduce the dependency on IPv6-in-IPv6 and
protect the constrained devices. <span><a href="https://www.rfc-editor.org/rfc/rfc8200#section-4" class="relref">Section 4</a> of [<a href="#RFC8200" class="xref">RFC8200</a>]</span> clarifies the behavior of routers in
the Internet as follows: "it is now expected that nodes along a packet's delivery path only examine and process
the Hop-by-Hop Options header if explicitly configured to do so."<a href="#section-4.2-7" class="pilcrow">¶</a></p>
<p id="section-4.2-8">
When unclear about the travel of a packet, it becomes preferable for a source not to encapsulate, accepting
the fact that the packet may leave the RPL domain on its way to its destination. In that event, the packet
should reach its destination and should not be discarded by the first node that does not recognize the RPL Option.
However, with the current value of the Option Type, if a node in the Internet is configured to process the Hop-by-Hop Options
header, and if such a node encounters an Option Type with the first two bits set to 01 and the node conforms to <span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span>,
it will drop the packet. Host systems should do the same, irrespective of the configuration.<a href="#section-4.2-8" class="pilcrow">¶</a></p>
<p id="section-4.2-9">
Thus, this document updates the Option Type of the RPL Option <span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span>,
naming it RPI Option Type for simplicity
(<a href="#fig_RPIOption_new" class="xref">Table 3</a>):
the two high order bits <span class="bcp14">MUST</span> be set to '00',
and the third bit is equal to '1'.
The first two bits indicate that the IPv6 node <span class="bcp14">MUST</span>
skip over this option and continue processing the header
(<span>[<a href="#RFC8200" class="xref">RFC8200</a>], <a href="https://www.rfc-editor.org/rfc/rfc8200#section-4.2" class="relref">Section 4.2</a></span>)
if it doesn't recognize the Option Type,
and the third bit continues to be set to indicate that the Option
Data may change en route. The rightmost five bits remain at 0x3(00011).
This ensures that a packet that leaves the RPL domain of an LLN (or that
leaves the LLN entirely) will not be discarded when it contains the RPL Option.<a href="#section-4.2-9" class="pilcrow">¶</a></p>
<p id="section-4.2-10">
With the new Option Type, if an IPv6 (intermediate) node (RPL unaware) receives a packet with a
RPL Option, it should ignore the Hop-by-Hop RPL Option
(skip over this option and continue processing the header). This is relevant, as it was mentioned previously, in the case that
there is a flow from RAL to Internet (see <a href="#sm-Ral2i" class="xref">Section 7.2.1</a>).<a href="#section-4.2-10" class="pilcrow">¶</a></p>
<p id="section-4.2-11">
This is a significant update to <span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span>.<a href="#section-4.2-11" class="pilcrow">¶</a></p>
<span id="name-revised-option-type-in-rpl-"></span><div id="fig_RPIOption_new">
<table class="center" id="table-3">
<caption>
<a href="#table-3" class="selfRef">Table 3</a>:
<a href="#name-revised-option-type-in-rpl-" class="selfRef">Revised Option Type in RPL Option</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="2" colspan="1">Hex Value</th>
<th class="text-center" rowspan="1" colspan="3">Binary Value</th>
<th class="text-center" rowspan="2" colspan="1">Description</th>
<th class="text-center" rowspan="2" colspan="1">Reference</th>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">act</th>
<th class="text-center" rowspan="1" colspan="1">chg</th>
<th class="text-center" rowspan="1" colspan="1">rest</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">0x23</td>
<td class="text-center" rowspan="1" colspan="1">00</td>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-center" rowspan="1" colspan="1">00011</td>
<td class="text-center" rowspan="1" colspan="1">RPL Option</td>
<td class="text-center" rowspan="1" colspan="1">This document</td>
</tr>
</tbody>
</table>
</div>
<p id="section-4.2-13">
Without the signaling described below, this change would otherwise create a lack of interoperation (flag day) for existing networks that are
currently using 0x63 as the RPI Option Type value. A move to 0x23 will not
be understood by those networks. It is suggested that
RPL implementations accept both 0x63 and 0x23 when
processing the header.<a href="#section-4.2-13" class="pilcrow">¶</a></p>
<p id="section-4.2-14">
When forwarding packets, implementations <span class="bcp14">SHOULD</span> use the same value of RPI Type
as was received. This is required because the RPI Option Type does not change en route
(<span>[<a href="#RFC8200" class="xref">RFC8200</a>], <a href="https://www.rfc-editor.org/rfc/rfc8200#section-4.2" class="relref">Section 4.2</a></span>). It allows the network to be incrementally
upgraded and allows the DODAG root to know which parts of the
network have been upgraded.<a href="#section-4.2-14" class="pilcrow">¶</a></p>
<p id="section-4.2-15">
When originating new packets,
implementations should have an option to determine which value to
originate with. This option is controlled by the DODAG Configuration option (<a href="#update6550" class="xref">Section 4.1.3</a>).<a href="#section-4.2-15" class="pilcrow">¶</a></p>
<p id="section-4.2-16">
The change of RPI Option Type from 0x63 to 0x23 makes all nodes that are compliant with
<span><a href="https://www.rfc-editor.org/rfc/rfc8200#section-4.2" class="relref">Section 4.2</a> of [<a href="#RFC8200" class="xref">RFC8200</a>]</span> tolerant of the RPL artifacts. There
is no longer a need to remove the artifacts when
sending traffic to the Internet. This change clarifies when
to use IPv6-in-IPv6 headers and how to address them:
the Hop-by-Hop Options header containing the RPI <span class="bcp14">MUST</span> always
be added when 6LRs originate packets (without IPv6-in-IPv6
headers), and IPv6-in-IPv6 headers <span class="bcp14">MUST</span> always be added
when a 6LR finds that it needs to insert a Hop-by-Hop Options header
containing the RPL Option. The IPv6-in-IPv6 header is to
be addressed to the
RPL root when on the way up, and to the end host when on the way down.<a href="#section-4.2-16" class="pilcrow">¶</a></p>
<p id="section-4.2-17">
In the Non-Storing case, dealing with RPL-unaware leaf nodes
is much easier as the 6LBR (DODAG root) has complete knowledge
about the connectivity of all DODAG nodes, and all traffic flows
through the root node.<a href="#section-4.2-17" class="pilcrow">¶</a></p>
<p id="section-4.2-18">
The 6LBR can recognize RPL-unaware leaf nodes because it will
receive a DAO about that node from the 6LR immediately above that
RPL-unaware node.<a href="#section-4.2-18" class="pilcrow">¶</a></p>
<p id="section-4.2-19">
The Non-Storing mode case does not require the Type change from
0x63 to 0x23, as the root can always create the right packet.
The Type change does not adversely affect the Non-Storing case (see <a href="#update6550" class="xref">Section 4.1.3</a>).<a href="#section-4.2-19" class="pilcrow">¶</a></p>
</section>
<section id="section-4.3">
<h3 id="name-updates-to-rfc-8138-indicat">
<a href="#section-4.3" class="section-number selfRef">4.3. </a><a href="#name-updates-to-rfc-8138-indicat" class="section-name selfRef">Updates to RFC 8138: Indicating the Way to Decompress with the New RPI Option Type</a>
</h3>
<p id="section-4.3-1">
This modification is required in order to be able to decompress the RPL Option
with the new Option Type of 0x23.<a href="#section-4.3-1" class="pilcrow">¶</a></p>
<p id="section-4.3-2">
The RPI-6LoRH header provides a compressed form for the RPL RPI; see
<span>[<a href="#RFC8138" class="xref">RFC8138</a>], <a href="https://www.rfc-editor.org/rfc/rfc8138#section-6" class="relref">Section 6</a></span>. A node that is decompressing this header
<span class="bcp14">MUST</span> decompress using the RPI Option Type that is currently active, that
is, a choice between 0x23 (new) and 0x63 (old). The node will know which to
use based upon the presence of the flag in the DODAG Configuration option defined in
<a href="#update6550" class="xref">Section 4.1.3</a>. For example, if the network is in 0x23 mode (by DIO option),
then it should be decompressed to 0x23.<a href="#section-4.3-2" class="pilcrow">¶</a></p>
<p id="section-4.3-3">
<span><a href="https://www.rfc-editor.org/rfc/rfc8138#section-7" class="relref">Section 7</a> of [<a href="#RFC8138" class="xref">RFC8138</a>]</span> documents how to compress
the IPv6-in-IPv6 header.<a href="#section-4.3-3" class="pilcrow">¶</a></p>
<p id="section-4.3-4">
There are potential significant advantages to having a single
code path that always processes IPv6-in-IPv6 headers with no
conditional branches.<a href="#section-4.3-4" class="pilcrow">¶</a></p>
<p id="section-4.3-5">
In Storing mode, the scenarios where the flow goes from RAL to RUL and RUL
to RUL include compression of the IPv6-in-IPv6 and RPI headers. The
IPv6-in-IPv6 header <span class="bcp14">MUST</span> be used in this case, and
it <span class="bcp14">SHOULD</span> be compressed as specified in
<span>[<a href="#RFC8138" class="xref">RFC8138</a>], <a href="https://www.rfc-editor.org/rfc/rfc8138#section-7" class="relref">Section 7</a></span>.
<a href="#rtghc" class="xref">Figure 2</a>
illustrates the case in Storing mode where the packet is received from the Internet, then the
root encapsulates the packet to insert the RPI. In that example,
the leaf is not known to support RFC 8138, and the packet is
encapsulated to the 6LR that is the parent and last hop to the
final destination.<a href="#section-4.3-5" class="pilcrow">¶</a></p>
<span id="name-rpi-inserted-by-the-root-in"></span><div id="rtghc">
<figure id="figure-2">
<div class="artwork art-text alignLeft" id="section-4.3-6.1">
<pre>
+-+ ... -+-+ ... +-+- ... -+-+- +-+-+-+ ... +-+-+ ... -+++ ... +-...
|11110001|SRH-6LoRH| RPI- |IP-in-IP| NH=1 |11110CPP| UDP | UDP
|Page 1 |Type1 S=0| 6LoRH |6LoRH |LOWPAN_IPHC| UDP | hdr |Payld
+-+ ... -+-+ ... +-+- ... -+-+-.+-+-+-+-+ ... +-+-+ ... -+ ... +-...
<-4bytes-> <- RFC 6282 ->
No RPL artifact
</pre>
</div>
<figcaption><a href="#figure-2" class="selfRef">Figure 2</a>:
<a href="#name-rpi-inserted-by-the-root-in" class="selfRef">RPI Inserted by the Root in Storing Mode</a>
</figcaption></figure>
</div>
<p id="section-4.3-7">
In <a href="#rtghc" class="xref">Figure 2</a>, the source of the IPv6-in-IPv6 encapsulation is
the root, so it is elided in the IP-in-IP 6LoRH. The destination is
the parent 6LR of the destination of the inner packet so it cannot be
elided. It is placed as the single entry in a Source Route Header 6LoRH (SRH-6LoRH) as the first
6LoRH. There is a single entry so the SRH-6LoRH Size is zero. In that
example, the Type is 1 so the 6LR address is compressed to two bytes.
This results in the total length of the SRH-6LoRH being four bytes.
The RPI-6LoRH and then the IP-in-IP 6LoRH follow. When the
IP-in-IP 6LoRH is removed, all the router headers that precede it are
also removed.
The Paging Dispatch <span>[<a href="#RFC8025" class="xref">RFC8025</a>]</span> may also be removed if
there was no previous Page change to a Page other than 0 or 1, since
the LOWPAN_IPHC is encoded in the same fashion in the default Page 0
and in Page 1. The resulting packet to the destination is the inner
packet compressed with <span>[<a href="#RFC6282" class="xref">RFC6282</a>]</span>.<a href="#section-4.3-7" class="pilcrow">¶</a></p>
</section>
</section>
</div>
<div id="sec_ref_topo">
<section id="section-5">
<h2 id="name-reference-topology">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-reference-topology" class="section-name selfRef">Reference Topology</a>
</h2>
<p id="section-5-1">
A RPL network in general is composed of a 6LBR,
a Backbone Router (6BBR), a 6LR, and a 6LN as a leaf logically organized in a DODAG structure.<a href="#section-5-1" class="pilcrow">¶</a></p>
<p id="section-5-2">
<a href="#fig_CommonTopology" class="xref">Figure 3</a> shows the reference RPL topology for this document. The
nodes are labeled with letters so that
they may be referenced in subsequent sections. In the figure,
6LR represents a full router node.
The 6LN is a RPL-aware router or host (as a leaf).
Additionally, for simplification purposes,
it is supposed that the 6LBR has direct access to Internet and is the root of the DODAG, thus the 6BBR
is not present in the figure.<a href="#section-5-2" class="pilcrow">¶</a></p>
<p id="section-5-3">
The 6LN leaves marked as RAL (F, H, and I) are RPL nodes with no children hosts.<a href="#section-5-3" class="pilcrow">¶</a></p>
<p id="section-5-4">
The leaves marked as RUL (G and J) are
devices that do not speak RPL at all (RPL unaware),
but use Router Advertisements, 6LoWPAN Duplicate Address Request and Duplicate Address Confirmation (DAR/DAC), and
6LoWPAN Neighbor Discovery (ND) only to participate in the network <span>[<a href="#RFC8505" class="xref">RFC8505</a>]</span>.
In the document, these leaves (G and J) are also referred to as
a RUL.<a href="#section-5-4" class="pilcrow">¶</a></p>
<p id="section-5-5">
The 6LBR (A) in the figure is the root of the Global DODAG.<a href="#section-5-5" class="pilcrow">¶</a></p>
<span id="name-a-reference-rpl-topology"></span><div id="fig_CommonTopology">
<figure id="figure-3">
<div class="artwork art-text alignLeft" id="section-5-6.1">
<pre>
+------------+
| INTERNET ----------+
| | |
+------------+ |
|
|
|
A |
+-------+
|6LBR |
+-----------|(root) |-------+
| +-------+ |
| |
| |
| |
| |
| B |C
+---|---+ +---|---+
| 6LR | | 6LR |
+---------| |--+ +--- ---+
| +-------+ | | +-------+ |
| | | |
| | | |
| | | |
| | | |
| D | E | |
+-|-----+ +---|---+ | |
| 6LR | | 6LR | | |
| | +------ | | |
+---|---+ | +---|---+ | |
| | | | |
| | +--+ | |
| | | | |
| | | | |
| | | I | J |
F | | G | H | |
+-----+-+ +-|-----+ +---|--+ +---|---+ +---|---+
| RAL | | RUL | | RAL | | RAL | | RUL |
| 6LN | | 6LN | | 6LN | | 6LN | | 6LN |
+-------+ +-------+ +------+ +-------+ +-------+
</pre>
</div>
<figcaption><a href="#figure-3" class="selfRef">Figure 3</a>:
<a href="#name-a-reference-rpl-topology" class="selfRef">A Reference RPL Topology</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_use_cases">
<section id="section-6">
<h2 id="name-use-cases">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-use-cases" class="section-name selfRef">Use Cases</a>
</h2>
<p id="section-6-1">
In the data plane, a combination of RFC 6553, RFC 6554, and
IPv6-in-IPv6 encapsulation are going to be analyzed for a number of
representative traffic flows.<a href="#section-6-1" class="pilcrow">¶</a></p>
<p id="section-6-2">
The use cases describe the communication in the following cases:<a href="#section-6-2" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-6-3.1">Between RPL-aware nodes with the root (6LBR)<a href="#section-6-3.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-3.2">Between RPL-aware nodes with the Internet<a href="#section-6-3.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-3.3">Between RUL nodes within the LLN (e.g., see <a href="#sm-nRal2root" class="xref">Section 7.1.4</a>)<a href="#section-6-3.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-3.4">Inside of the LLN when the final destination address resides outside
of the LLN (e.g., see <a href="#sm-nRal2i" class="xref">Section 7.2.3</a>)<a href="#section-6-3.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-6-4">
The use cases are as follows:<a href="#section-6-4" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-6-5.1">
<p id="section-6-5.1.1">
Interaction between leaf and root:<a href="#section-6-5.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-6-5.1.2.1">
RAL to root<a href="#section-6-5.1.2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-6-5.1.2.2">
root to RAL<a href="#section-6-5.1.2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-6-5.1.2.3">
RUL to root<a href="#section-6-5.1.2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-6-5.1.2.4">
root to RUL<a href="#section-6-5.1.2.4" class="pilcrow">¶</a>
</li>
</ul>
</li>
<li class="ulEmpty normal" id="section-6-5.2">
<p id="section-6-5.2.1">
Interaction between leaf and Internet:<a href="#section-6-5.2.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-6-5.2.2.1">
RAL to Internet<a href="#section-6-5.2.2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-6-5.2.2.2">
Internet to RAL<a href="#section-6-5.2.2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-6-5.2.2.3">
RUL to Internet<a href="#section-6-5.2.2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-6-5.2.2.4">
Internet to RUL<a href="#section-6-5.2.2.4" class="pilcrow">¶</a>
</li>
</ul>
</li>
<li class="ulEmpty normal" id="section-6-5.3">
<p id="section-6-5.3.1">
Interaction between leaves:<a href="#section-6-5.3.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-6-5.3.2.1">
RAL to RAL<a href="#section-6-5.3.2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-6-5.3.2.2">
RAL to RUL<a href="#section-6-5.3.2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-6-5.3.2.3">
RUL to RAL<a href="#section-6-5.3.2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-6-5.3.2.4">
RUL to RUL<a href="#section-6-5.3.2.4" class="pilcrow">¶</a>
</li>
</ul>
</li>
</ul>
<p id="section-6-6">
This document is consistent with the rule that a header cannot be
inserted or removed on the fly inside an IPv6 packet that is
being routed.
This is a fundamental precept of the IPv6 architecture as
outlined in <span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span>.<a href="#section-6-6" class="pilcrow">¶</a></p>
<p id="section-6-7">
As the Rank information in the RPI artifact is changed at each
hop, it will typically be zero when it arrives at the DODAG
root. The DODAG root <span class="bcp14">MUST</span> force it to zero when passing the
packet out to the Internet. The Internet will therefore not see
any SenderRank information.<a href="#section-6-7" class="pilcrow">¶</a></p>
<p id="section-6-8">
Despite being legal to leave the RPI artifact in place,
an intermediate router that needs to add an extension header
(e.g., RH3 or RPL Option) <span class="bcp14">MUST</span> still encapsulate the packet in an
(additional) outer IP header. The new header is placed after
this new outer IP header.<a href="#section-6-8" class="pilcrow">¶</a></p>
<p id="section-6-9">
A corollary is that an
intermediate router can remove an RH3 or RPL Option only
if it is placed in an encapsulating IPv6
header that is addressed <em>to</em> this intermediate router.
When doing the above, the whole encapsulating header must be
removed. (A replacement may be added.)<a href="#section-6-9" class="pilcrow">¶</a></p>
<p id="section-6-10">
Both the RPL Option and the RH3 headers may be modified in very specific ways
by routers on the path of the packet without the need to add and
remove an encapsulating header. Both headers were designed with
this modification in
mind, and both the RPL RH3 and the RPL Option are marked mutable
but recoverable: so an IPsec Authentication Header (AH) can be applied
across these headers, but it cannot secure the values that mutate.<a href="#section-6-10" class="pilcrow">¶</a></p>
<p id="section-6-11">
The RPI <span class="bcp14">MUST</span> be present in every single RPL data packet.<a href="#section-6-11" class="pilcrow">¶</a></p>
<p id="section-6-12">
Prior to <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>, there was significant
interest in creating an exception to this rule and removing the RPI for Downward flows in Non-Storing
mode. This exception covered a very small number of cases, and
caused significant interoperability challenges while adding
significant interest in the code and tests. The ability to compress
the RPI down to three bytes or less removes much of the pressure
to optimize this any further.<a href="#section-6-12" class="pilcrow">¶</a></p>
<p id="section-6-13">
Throughout the following subsections, the examples are described in more detail in the first subsections,
and more concisely in the later ones.<a href="#section-6-13" class="pilcrow">¶</a></p>
<p id="section-6-14">
The use cases are delineated based on the following IPV6 and RPL mandates:<a href="#section-6-14" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-6-15.1">
<p id="section-6-15.1.1">The RPI has to be in every packet that traverses the LLN.<a href="#section-6-15.1.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-6-15.1.2.1">
Because of the above requirement, packets from the Internet have to be encapsulated.<a href="#section-6-15.1.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-15.1.2.2">
A header cannot be inserted or removed on the fly inside an IPv6 packet that is being routed.<a href="#section-6-15.1.2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-15.1.2.3">
Extension headers may not be added or removed except by the sender or the receiver.<a href="#section-6-15.1.2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-15.1.2.4">
RPI and RH3 headers may be modified by routers on the path of the packet without the need to add and remove an encapsulating header.<a href="#section-6-15.1.2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-15.1.2.5">
An RH3 or RPL Option can only be removed by an intermediate router if it is placed in an encapsulating IPv6 header, which is addressed to the intermediate router.<a href="#section-6-15.1.2.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-15.1.2.6">
The Non-Storing mode requires downstream encapsulation by the root for RH3.<a href="#section-6-15.1.2.6" class="pilcrow">¶</a>
</li>
</ul>
</li>
</ul>
<p id="section-6-16">
The use cases are delineated based on the following assumptions:<a href="#section-6-16" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-6-17.1">
<p id="section-6-17.1.1">This document assumes that the LLN is using the no-drop RPI Option Type (0x23).<a href="#section-6-17.1.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-6-17.1.2.1">
Each IPv6 node (including Internet routers) obeys <span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span>, so that the 0x23 RPI Option Type can be safely inserted.<a href="#section-6-17.1.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-17.1.2.2">
All 6LRs obey <span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span>.<a href="#section-6-17.1.2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-17.1.2.3">
The RPI is ignored at the IPv6 destination (dst) node (RUL).<a href="#section-6-17.1.2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-17.1.2.4">
In the use cases, we assume that the RAL supports IP-in-IP encapsulation.<a href="#section-6-17.1.2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-17.1.2.5">
In the use cases, we don't assume that the RUL supports IP-in-IP encapsulation.<a href="#section-6-17.1.2.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-17.1.2.6">
For traffic leaving a RUL, if the RUL adds an opaque RPI, then the 6LR as a RPL Border Router <span class="bcp14">SHOULD</span> rewrite
the RPI to indicate the selected Instance and set the flags.<a href="#section-6-17.1.2.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-17.1.2.7">
The description for RALs applies to RAN in general.<a href="#section-6-17.1.2.7" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-17.1.2.8">
Unconstrained uses of RPL are not in scope of this document.<a href="#section-6-17.1.2.8" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-17.1.2.9">
Compression is based on <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>.<a href="#section-6-17.1.2.9" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6-17.1.2.10">
The flow label <span>[<a href="#RFC6437" class="xref">RFC6437</a>]</span> is not needed in RPL.<a href="#section-6-17.1.2.10" class="pilcrow">¶</a>
</li>
</ul>
</li>
</ul>
</section>
</div>
<div id="sec_sm">
<section id="section-7">
<h2 id="name-storing-mode">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-storing-mode" class="section-name selfRef">Storing Mode</a>
</h2>
<p id="section-7-1">
In Storing mode (SM) (fully stateful), the sender can determine if
the destination is inside the LLN by
looking if the destination address is matched by the DIO's Prefix Information Option (PIO) option.<a href="#section-7-1" class="pilcrow">¶</a></p>
<p id="section-7-2">
<a href="#fig_EncStoMode" class="xref">Table 4</a> itemizes which headers are needed in each of the following scenarios.
It indicates whether an IPv6-in-IPv6 header must be added and to which destination it must be addressed:<a href="#section-7-2" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-7-3">
<li id="section-7-3.1"> the final destination (the RAL node that is the target (tgt)),<a href="#section-7-3.1" class="pilcrow">¶</a>
</li>
<li id="section-7-3.2"> the "root", or<a href="#section-7-3.2" class="pilcrow">¶</a>
</li>
<li id="section-7-3.3">the 6LR parent of a RUL.<a href="#section-7-3.3" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-7-4">
In cases where no IPv6-in-IPv6 header is needed, the column states "No", and the destination is N/A (Not Applicable).
If the IPv6-in-IPv6 header is needed, the column shows "must".<a href="#section-7-4" class="pilcrow">¶</a></p>
<p id="section-7-5">
In all cases, the RPI is needed, since it identifies
inconsistencies (loops) in the routing topology.
In general, the RH3 is not needed because it is not used in Storing mode. However, there is one scenario (from the root to the RUL in SM)
where the RH3 can be used to point at the RUL (<a href="#Storing-root2notrplnoIPIP" class="xref">Table 8</a>).<a href="#section-7-5" class="pilcrow">¶</a></p>
<p id="section-7-6">
The leaf can be a router 6LR or a host, both indicated as 6LN. The root refers to the 6LBR
(see <a href="#fig_CommonTopology" class="xref">Figure 3</a>).<a href="#section-7-6" class="pilcrow">¶</a></p>
<span id="name-ipv6-in-ipv6-encapsulation-"></span><div id="fig_EncStoMode">
<table class="center" id="table-4">
<caption>
<a href="#table-4" class="selfRef">Table 4</a>:
<a href="#name-ipv6-in-ipv6-encapsulation-" class="selfRef">IPv6-in-IPv6 Encapsulation in Storing Mode</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Interaction between</th>
<th class="text-center" rowspan="1" colspan="1">Use Case</th>
<th class="text-center" rowspan="1" colspan="1">IPv6-in-IPv6</th>
<th class="text-center" rowspan="1" colspan="1">IPv6-in-IPv6 dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="4" colspan="1">Leaf - Root</th>
<td class="text-center" rowspan="1" colspan="1">RAL to root</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">N/A</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">root to RAL</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">N/A</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">root to RUL</td>
<td class="text-center" rowspan="1" colspan="1">must</td>
<td class="text-center" rowspan="1" colspan="1">6LR</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">RUL to root</td>
<td class="text-center" rowspan="1" colspan="1">must</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<th class="text-center" rowspan="4" colspan="1">Leaf - Internet</th>
<td class="text-center" rowspan="1" colspan="1">RAL to Int</td>
<td class="text-center" rowspan="1" colspan="1">may</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">Int to RAL</td>
<td class="text-center" rowspan="1" colspan="1">must</td>
<td class="text-center" rowspan="1" colspan="1">RAL (tgt)</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">RUL to Int</td>
<td class="text-center" rowspan="1" colspan="1">must</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">Int to RUL</td>
<td class="text-center" rowspan="1" colspan="1">must</td>
<td class="text-center" rowspan="1" colspan="1">6LR</td>
</tr>
<tr>
<th class="text-center" rowspan="7" colspan="1">Leaf - Leaf</th>
<td class="text-center" rowspan="1" colspan="1">RAL to RAL</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">N/A</td>
</tr>
<tr>
<td class="text-center" rowspan="2" colspan="1">RAL to RUL</td>
<td class="text-center" rowspan="1" colspan="1">No(up)</td>
<td class="text-center" rowspan="1" colspan="1">N/A</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">must(down)</td>
<td class="text-center" rowspan="1" colspan="1">6LR</td>
</tr>
<tr>
<td class="text-center" rowspan="2" colspan="1">RUL to RAL</td>
<td class="text-center" rowspan="1" colspan="1">must(up)</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">must(down)</td>
<td class="text-center" rowspan="1" colspan="1">RAL</td>
</tr>
<tr>
<td class="text-center" rowspan="2" colspan="1">RUL to RUL</td>
<td class="text-center" rowspan="1" colspan="1">must(up)</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">must(down)</td>
<td class="text-center" rowspan="1" colspan="1">6LR</td>
</tr>
</tbody>
</table>
</div>
<section id="section-7.1">
<h3 id="name-storing-mode-interaction-be">
<a href="#section-7.1" class="section-number selfRef">7.1. </a><a href="#name-storing-mode-interaction-be" class="section-name selfRef">Storing Mode: Interaction between Leaf and Root</a>
</h3>
<p id="section-7.1-1">
This section describes the communication flow
in Storing mode (SM) between the following:<a href="#section-7.1-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-7.1-2.1">
RAL to root<a href="#section-7.1-2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-7.1-2.2">
root to RAL<a href="#section-7.1-2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-7.1-2.3">
RUL to root<a href="#section-7.1-2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-7.1-2.4">
root to RUL<a href="#section-7.1-2.4" class="pilcrow">¶</a>
</li>
</ul>
<section id="section-7.1.1">
<h4 id="name-sm-example-of-flow-from-ral">
<a href="#section-7.1.1" class="section-number selfRef">7.1.1. </a><a href="#name-sm-example-of-flow-from-ral" class="section-name selfRef">SM: Example of Flow from RAL to Root</a>
</h4>
<p id="section-7.1.1-1">
In Storing mode, RPI <span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span> is used
to send the RPLInstanceID and Rank
information.<a href="#section-7.1.1-1" class="pilcrow">¶</a></p>
<p id="section-7.1.1-2">
In this case, the flow comprises:<a href="#section-7.1.1-2" class="pilcrow">¶</a></p>
<p id="section-7.1.1-3">
RAL (6LN) --> 6LR_i --> root (6LBR)<a href="#section-7.1.1-3" class="pilcrow">¶</a></p>
<p id="section-7.1.1-4">
For example, a communication flow could be:
Node F (6LN) --> Node D (6LR_i) --> Node B (6LR_i) --> Node A root (6LBR)<a href="#section-7.1.1-4" class="pilcrow">¶</a></p>
<p id="section-7.1.1-5">
The RAL (Node F) inserts the RPI, and sends the
packet to the 6LR (Node D), which decrements the Rank in the RPI and
sends the packet up. When the packet arrives at
the 6LBR (Node A), the RPI is removed and the packet is
processed.<a href="#section-7.1.1-5" class="pilcrow">¶</a></p>
<p id="section-7.1.1-6">
No IPv6-in-IPv6 header is required.<a href="#section-7.1.1-6" class="pilcrow">¶</a></p>
<p id="section-7.1.1-7"> The RPI can be removed by the 6LBR
because the packet is addressed to the 6LBR. The
RAL must know that it is communicating with the 6LBR
to make use of this scenario.
The RAL can know the address of the 6LBR because it
knows the address of the root via the DODAGID in the
DIO messages.<a href="#section-7.1.1-7" class="pilcrow">¶</a></p>
<p id="section-7.1.1-8">
<a href="#Storing-summary-headers" class="xref">Table 5</a> summarizes which headers are needed for this use case.<a href="#section-7.1.1-8" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-he"></span><div id="Storing-summary-headers">
<table class="center" id="table-5">
<caption>
<a href="#table-5" class="selfRef">Table 5</a>:
<a href="#name-sm-summary-of-the-use-of-he" class="selfRef">SM: Summary of the Use of Headers from RAL to Root</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LBR dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
<div id="Storing-root2ral">
<section id="section-7.1.2">
<h4 id="name-sm-example-of-flow-from-roo">
<a href="#section-7.1.2" class="section-number selfRef">7.1.2. </a><a href="#name-sm-example-of-flow-from-roo" class="section-name selfRef">SM: Example of Flow from Root to RAL</a>
</h4>
<p id="section-7.1.2-1">
In this case, the flow comprises:<a href="#section-7.1.2-1" class="pilcrow">¶</a></p>
<p id="section-7.1.2-2">
root (6LBR) --> 6LR_i --> RAL (6LN)<a href="#section-7.1.2-2" class="pilcrow">¶</a></p>
<p id="section-7.1.2-3">
For example, a communication flow could be:
Node A root (6LBR) --> Node B (6LR_i) --> Node D (6LR_i) --> Node F (6LN)<a href="#section-7.1.2-3" class="pilcrow">¶</a></p>
<p id="section-7.1.2-4">
In this case, the 6LBR inserts RPI and
sends the packet down. The 6LR
increments the Rank in the RPI (it examines the
RPLInstanceID to identify the right forwarding
table).
The packet
is processed in the RAL, and the RPI is removed.<a href="#section-7.1.2-4" class="pilcrow">¶</a></p>
<p id="section-7.1.2-5">
No IPv6-in-IPv6 header is required.<a href="#section-7.1.2-5" class="pilcrow">¶</a></p>
<p id="section-7.1.2-6">
<a href="#Storing-root2leaf" class="xref">Table 6</a> summarizes which headers are needed for this use case.<a href="#section-7.1.2-6" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-hea"></span><div id="Storing-root2leaf">
<table class="center" id="table-6">
<caption>
<a href="#table-6" class="selfRef">Table 6</a>:
<a href="#name-sm-summary-of-the-use-of-hea" class="selfRef">SM: Summary of the Use of Headers from Root to RAL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">6LBR src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">RAL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<section id="section-7.1.3">
<h4 id="name-sm-example-of-flow-from-root">
<a href="#section-7.1.3" class="section-number selfRef">7.1.3. </a><a href="#name-sm-example-of-flow-from-root" class="section-name selfRef">SM: Example of Flow from Root to RUL</a>
</h4>
<p id="section-7.1.3-1">
In this case, the flow comprises:<a href="#section-7.1.3-1" class="pilcrow">¶</a></p>
<p id="section-7.1.3-2">
root (6LBR) --> 6LR_i --> RUL (IPv6 dst node)<a href="#section-7.1.3-2" class="pilcrow">¶</a></p>
<p id="section-7.1.3-3">
For example, a communication flow could be:
Node A (6LBR) --> Node B (6LR_i) --> Node E (6LR_n) --> Node G (RUL)<a href="#section-7.1.3-3" class="pilcrow">¶</a></p>
<p id="section-7.1.3-4">
6LR_i (Node B) represents the intermediate routers from the source (6LBR) to the destination (RUL),
and 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the 6LBR (Node A) to the RUL (Node G).<a href="#section-7.1.3-4" class="pilcrow">¶</a></p>
<p id="section-7.1.3-5">
The 6LBR will encapsulate the packet in an IPv6-in-IPv6 header and prepend an RPI. The IPv6-in-IPv6
header is addressed to the 6LR parent of the RUL (6LR_n).
The 6LR parent of the RUL removes the header and sends the packet to the RUL.<a href="#section-7.1.3-5" class="pilcrow">¶</a></p>
<p id="section-7.1.3-6">
<a href="#Storing-root2notrpl" class="xref">Table 7</a> summarizes which headers are needed for this use case.<a href="#section-7.1.3-6" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-head"></span><div id="Storing-root2notrpl">
<table class="center" id="table-7">
<caption>
<a href="#table-7" class="selfRef">Table 7</a>:
<a href="#name-sm-summary-of-the-use-of-head" class="selfRef">SM: Summary of the Use of Headers from Root to RUL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">6LBR src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LR_n</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
<p id="section-7.1.3-8">
IP-in-IP encapsulation may be avoided for root-to-RUL communication.
In SM, it can be replaced by a loose RH3 header that indicates the RUL.
In which case, the packet is routed to the 6LR as a normal SM operation,
then the 6LR forwards to the RUL based on the RH3, and the RUL ignores
both the consumed RH3 and the RPI, as in Non-Storing mode.<a href="#section-7.1.3-8" class="pilcrow">¶</a></p>
<p id="section-7.1.3-9">
<a href="#Storing-root2notrplnoIPIP" class="xref">Table 8</a> summarizes which headers are needed for this scenario.<a href="#section-7.1.3-9" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-heade"></span><div id="Storing-root2notrplnoIPIP">
<table class="center" id="table-8">
<caption>
<a href="#table-8" class="selfRef">Table 8</a>:
<a href="#name-sm-summary-of-the-use-of-heade" class="selfRef">SM: Summary of the Use of Headers from Root to RUL without Encapsulation</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">6LBR src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i<br>i=(1,..,n-1)</th>
<th class="text-center" rowspan="1" colspan="1">6LR_n</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3(consumed)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RH3</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3 (both ignored)</td>
</tr>
</tbody>
</table>
</div>
</section>
<div id="sm-nRal2root">
<section id="section-7.1.4">
<h4 id="name-sm-example-of-flow-from-rul">
<a href="#section-7.1.4" class="section-number selfRef">7.1.4. </a><a href="#name-sm-example-of-flow-from-rul" class="section-name selfRef">SM: Example of Flow from RUL to Root</a>
</h4>
<p id="section-7.1.4-1">
In this case, the flow comprises:<a href="#section-7.1.4-1" class="pilcrow">¶</a></p>
<p id="section-7.1.4-2">
RUL (IPv6 src node) --> 6LR_1 --> 6LR_i --> root (6LBR)<a href="#section-7.1.4-2" class="pilcrow">¶</a></p>
<p id="section-7.1.4-3">
For example, a communication flow could be:
Node G (RUL) --> Node E (6LR_1) --> Node B (6LR_i) --> Node A root (6LBR)<a href="#section-7.1.4-3" class="pilcrow">¶</a></p>
<p id="section-7.1.4-4">
6LR_i represents the intermediate routers from the source (RUL) to the destination (6LBR),
and 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the RUL to the 6LBR.<a href="#section-7.1.4-4" class="pilcrow">¶</a></p>
<p id="section-7.1.4-5">
When the packet arrives from the RUL (Node G) to
6LR_1 (Node E), the 6LR_1 will encapsulate the packet
in an IPv6-in-IPv6 header with an RPI. The IPv6-in-IPv6
header is addressed to the root (Node A). The root removes the header and processes
the packet.<a href="#section-7.1.4-5" class="pilcrow">¶</a></p>
<p id="section-7.1.4-6">
<a href="#Storing-notrpl2root" class="xref">Table 9</a> summarizes which headers are needed for this use case
where the IPv6-in-IPv6 header is addressed to the root (Node A).<a href="#section-7.1.4-6" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-header"></span><div id="Storing-notrpl2root">
<table class="center" id="table-9">
<caption>
<a href="#table-9" class="selfRef">Table 9</a>:
<a href="#name-sm-summary-of-the-use-of-header" class="selfRef">SM: Summary of the Use of Headers from RUL to Root</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RUL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_1</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LBR dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</section>
<section id="section-7.2">
<h3 id="name-sm-interaction-between-leaf">
<a href="#section-7.2" class="section-number selfRef">7.2. </a><a href="#name-sm-interaction-between-leaf" class="section-name selfRef">SM: Interaction between Leaf and Internet</a>
</h3>
<p id="section-7.2-1">
This section describes the communication flow
in Storing mode (SM) between the following:<a href="#section-7.2-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-7.2-2.1">
RAL to Internet<a href="#section-7.2-2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-7.2-2.2">
Internet to RAL<a href="#section-7.2-2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-7.2-2.3">
RUL to Internet<a href="#section-7.2-2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-7.2-2.4">
Internet to RUL<a href="#section-7.2-2.4" class="pilcrow">¶</a>
</li>
</ul>
<div id="sm-Ral2i">
<section id="section-7.2.1">
<h4 id="name-sm-example-of-flow-from-ral-">
<a href="#section-7.2.1" class="section-number selfRef">7.2.1. </a><a href="#name-sm-example-of-flow-from-ral-" class="section-name selfRef">SM: Example of Flow from RAL to Internet</a>
</h4>
<p id="section-7.2.1-1">
In this case, the flow comprises:<a href="#section-7.2.1-1" class="pilcrow">¶</a></p>
<p id="section-7.2.1-2">
RAL (6LN) --> 6LR_i --> root (6LBR) --> Internet<a href="#section-7.2.1-2" class="pilcrow">¶</a></p>
<p id="section-7.2.1-3">
For example, the communication flow could be:
Node F (RAL) --> Node D (6LR_i) --> Node B (6LR_i) --> Node A root (6LBR) --> Internet<a href="#section-7.2.1-3" class="pilcrow">¶</a></p>
<p id="section-7.2.1-4">
6LR_i represents the intermediate routers from the source (RAL) to the root (6LBR),
and 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the RAL to the 6LBR.<a href="#section-7.2.1-4" class="pilcrow">¶</a></p>
<p id="section-7.2.1-5">
RPL information from RFC 6553 may go out to
Internet as it will be ignored by nodes that have
not been configured to be RPL aware. No IPv6-in-IPv6 header is required.<a href="#section-7.2.1-5" class="pilcrow">¶</a></p>
<p id="section-7.2.1-6">
On the other hand, the RAL may insert the RPI encapsulated in an IPv6-in-IPv6 header to the root.
Thus, the root removes the RPI and sends the packet to the Internet.<a href="#section-7.2.1-6" class="pilcrow">¶</a></p>
<aside id="section-7.2.1-7">
<p id="section-7.2.1-7.1">
Note: In this use case, a leaf node is used, but this use case
can also be applicable to any RPL-aware node type (e.g., 6LR).<a href="#section-7.2.1-7.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-7.2.1-8">
<a href="#Storing-rpl2int" class="xref">Table 10</a> summarizes which headers are needed for this use case when there is no encapsulation.
Note that the RPI is modified by 6LBR to set the SenderRank to zero in the case that it is not already zero.
<a href="#Storing-rpl2intIPIP" class="xref">Table 11</a> summarizes which headers are needed when encapsulation to the root takes place.<a href="#section-7.2.1-8" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-headers"></span><div id="Storing-rpl2int">
<table class="center" id="table-10">
<caption>
<a href="#table-10" class="selfRef">Table 10</a>:
<a href="#name-sm-summary-of-the-use-of-headers" class="selfRef">SM: Summary of the Use of Headers from RAL to Internet with No Encapsulation</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">Internet dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI (Ignored)</td>
</tr>
</tbody>
</table>
</div>
<p id="section-7.2.1-10"></p>
<span id="name-sm-summary-of-the-use-of-headers-"></span><div id="Storing-rpl2intIPIP">
<table class="center" id="table-11">
<caption>
<a href="#table-11" class="selfRef">Table 11</a>:
<a href="#name-sm-summary-of-the-use-of-headers-" class="selfRef">SM: Summary of the Use of Headers from RAL to Internet with Encapsulation to the Root (6LBR)</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">Internet dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<section id="section-7.2.2">
<h4 id="name-sm-example-of-flow-from-int">
<a href="#section-7.2.2" class="section-number selfRef">7.2.2. </a><a href="#name-sm-example-of-flow-from-int" class="section-name selfRef">SM: Example of Flow from Internet to RAL</a>
</h4>
<p id="section-7.2.2-1">
In this case, the flow comprises:<a href="#section-7.2.2-1" class="pilcrow">¶</a></p>
<p id="section-7.2.2-2">
Internet --> root (6LBR) --> 6LR_i --> RAL (6LN)<a href="#section-7.2.2-2" class="pilcrow">¶</a></p>
<p id="section-7.2.2-3">
For example, a communication flow could be:
Internet --> Node A root (6LBR) --> Node B (6LR_1) --> Node D (6LR_n) --> Node F (RAL)<a href="#section-7.2.2-3" class="pilcrow">¶</a></p>
<p id="section-7.2.2-4">
When the packet arrives from Internet to 6LBR,
the RPI is added in a outer
IPv6-in-IPv6 header (with the IPv6-in-IPv6 destination address set to the RAL) and sent to the 6LR, which
modifies the Rank in the RPI. When the packet
arrives at the RAL, the packet is decapsulated, which removes the RPI before the
packet is processed.<a href="#section-7.2.2-4" class="pilcrow">¶</a></p>
<p id="section-7.2.2-5">
<a href="#Storing-int2rpl" class="xref">Table 12</a> summarizes which headers are needed for this use case.<a href="#section-7.2.2-5" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-headers-f"></span><div id="Storing-int2rpl">
<table class="center" id="table-12">
<caption>
<a href="#table-12" class="selfRef">Table 12</a>:
<a href="#name-sm-summary-of-the-use-of-headers-f" class="selfRef">SM: Summary of the Use of Headers from Internet to RAL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">Internet src</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1"> RAL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
<div id="sm-nRal2i">
<section id="section-7.2.3">
<h4 id="name-sm-example-of-flow-from-rul-">
<a href="#section-7.2.3" class="section-number selfRef">7.2.3. </a><a href="#name-sm-example-of-flow-from-rul-" class="section-name selfRef">SM: Example of Flow from RUL to Internet</a>
</h4>
<p id="section-7.2.3-1">
In this case, the flow comprises:<a href="#section-7.2.3-1" class="pilcrow">¶</a></p>
<p id="section-7.2.3-2">
RUL (IPv6 src node) --> 6LR_1 --> 6LR_i --> root (6LBR) --> Internet<a href="#section-7.2.3-2" class="pilcrow">¶</a></p>
<p id="section-7.2.3-3">
For example, a communication flow could be:
Node G (RUL) --> Node E (6LR_1) --> Node B (6lR_i) --> Node A root (6LBR) --> Internet<a href="#section-7.2.3-3" class="pilcrow">¶</a></p>
<p id="section-7.2.3-4">
The node 6LR_1 (i=1) will add an IPv6-in-IPv6 (RPI) header addressed to the root such that the root can remove
the RPI before passing upwards.
In the intermediate 6LR, the Rank in the RPI is modified.<a href="#section-7.2.3-4" class="pilcrow">¶</a></p>
<p id="section-7.2.3-5">
The originating node will ideally leave the IPv6 flow
label as zero so that the packet can be better compressed through
the LLN. The 6LBR will set the flow label of the packet to a
non-zero value when sending to the Internet. For details, check <span>[<a href="#RFC6437" class="xref">RFC6437</a>]</span>.<a href="#section-7.2.3-5" class="pilcrow">¶</a></p>
<p id="section-7.2.3-6">
<a href="#Storing-notrpl2int" class="xref">Table 13</a> summarizes which headers are needed for this use case.<a href="#section-7.2.3-6" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-headers-fr"></span><div id="Storing-notrpl2int">
<table class="center" id="table-13">
<caption>
<a href="#table-13" class="selfRef">Table 13</a>:
<a href="#name-sm-summary-of-the-use-of-headers-fr" class="selfRef">SM: Summary of the Use of Headers from RUL to Internet</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">IPv6 src (RUL)</th>
<th class="text-center" rowspan="1" colspan="1">6LR_1</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i i=(2,..,n)</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">Internet dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<section id="section-7.2.4">
<h4 id="name-sm-example-of-flow-from-inte">
<a href="#section-7.2.4" class="section-number selfRef">7.2.4. </a><a href="#name-sm-example-of-flow-from-inte" class="section-name selfRef">SM: Example of Flow from Internet to RUL</a>
</h4>
<p id="section-7.2.4-1">
In this case, the flow comprises:<a href="#section-7.2.4-1" class="pilcrow">¶</a></p>
<p id="section-7.2.4-2">
Internet --> root (6LBR) --> 6LR_i --> RUL (IPv6 dst node)<a href="#section-7.2.4-2" class="pilcrow">¶</a></p>
<p id="section-7.2.4-3">
For example, a communication flow could be:
Internet --> Node A root (6LBR) --> Node B (6LR_i) --> Node E (6LR_n) --> Node G (RUL)<a href="#section-7.2.4-3" class="pilcrow">¶</a></p>
<p id="section-7.2.4-4">
The 6LBR will have to add an RPI within an
IPv6-in-IPv6 header. The IPv6-in-IPv6 encapsulating header is addressed
to the 6LR parent of the RUL.<a href="#section-7.2.4-4" class="pilcrow">¶</a></p>
<p id="section-7.2.4-5">
Further details about this are mentioned in <span>[<a href="#RFC9010" class="xref">RFC9010</a>]</span>,
which specifies RPL routing for a 6LN acting as a plain host and being unaware of RPL.<a href="#section-7.2.4-5" class="pilcrow">¶</a></p>
<p id="section-7.2.4-6">
The 6LBR may set the flow label on the inner IPv6-in-IPv6
header to zero in order to aid in compression <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span> <span>[<a href="#RFC6437" class="xref">RFC6437</a>]</span>.<a href="#section-7.2.4-6" class="pilcrow">¶</a></p>
<p id="section-7.2.4-7">
<a href="#Storing-int2notrpl" class="xref">Table 14</a> summarizes which headers are needed for this use case.<a href="#section-7.2.4-7" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-headers-fr-2"></span><div id="Storing-int2notrpl">
<table class="center" id="table-14">
<caption>
<a href="#table-14" class="selfRef">Table 14</a>:
<a href="#name-sm-summary-of-the-use-of-headers-fr-2" class="selfRef">SM: Summary of the Use of Headers from Internet to RUL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">Internet src</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i i=(1,..,n-1)</th>
<th class="text-center" rowspan="1" colspan="1">6LR_n</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</section>
<section id="section-7.3">
<h3 id="name-sm-interaction-between-leaf-">
<a href="#section-7.3" class="section-number selfRef">7.3. </a><a href="#name-sm-interaction-between-leaf-" class="section-name selfRef">SM: Interaction between Leaf and Leaf</a>
</h3>
<p id="section-7.3-1">
This section describes the communication flow
in Storing mode (SM) between the following:<a href="#section-7.3-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-7.3-2.1">
RAL to RAL<a href="#section-7.3-2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-7.3-2.2">
RAL to RUL<a href="#section-7.3-2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-7.3-2.3">
RUL to RAL<a href="#section-7.3-2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-7.3-2.4">
RUL to RUL<a href="#section-7.3-2.4" class="pilcrow">¶</a>
</li>
</ul>
<div id="storingRALtoRAL">
<section id="section-7.3.1">
<h4 id="name-sm-example-of-flow-from-ral-t">
<a href="#section-7.3.1" class="section-number selfRef">7.3.1. </a><a href="#name-sm-example-of-flow-from-ral-t" class="section-name selfRef">SM: Example of Flow from RAL to RAL</a>
</h4>
<p id="section-7.3.1-1">
In <span>[<a href="#RFC6550" class="xref">RFC6550</a>]</span>, RPL allows a simple, one-hop
optimization for both Storing and Non-Storing
networks.
A node may send a packet destined to a one-hop
neighbor directly to that node. See <span><a href="https://www.rfc-editor.org/rfc/rfc6550#section-9" class="relref">Section 9</a> of [<a href="#RFC6550" class="xref">RFC6550</a>]</span>.<a href="#section-7.3.1-1" class="pilcrow">¶</a></p>
<p id="section-7.3.1-2">
When the nodes are not directly connected, then
the flow comprises the following in the Storing mode:<a href="#section-7.3.1-2" class="pilcrow">¶</a></p>
<p id="section-7.3.1-3">
RAL src (6LN) --> 6LR_ia --> common parent (6LR_x) --> 6LR_id --> RAL dst (6LN)<a href="#section-7.3.1-3" class="pilcrow">¶</a></p>
<p id="section-7.3.1-4">
For example, a communication flow could be:
Node F (RAL src) --> Node D (6LR_ia) --> Node B (6LR_x) --> Node E (6LR_id) --> Node H (RAL dst)<a href="#section-7.3.1-4" class="pilcrow">¶</a></p>
<p id="section-7.3.1-5">
6LR_ia (Node D) represents the intermediate routers from the source to the common parent 6LR_x (Node B),
and 1 <= ia <= n, where n is the total number of routers (6LR)
that the packet goes through, from the RAL (Node F) to the common parent 6LR_x (Node B).<a href="#section-7.3.1-5" class="pilcrow">¶</a></p>
<p id="section-7.3.1-6">
6LR_id (Node E) represents the intermediate routers from the common parent 6LR_x (Node B) to the destination RAL (Node H),
and 1 <= id <= m, where m is the total number of routers (6LR)
that the packet goes through, from the common parent (6LR_x) to the destination RAL (Node H).<a href="#section-7.3.1-6" class="pilcrow">¶</a></p>
<p id="section-7.3.1-7">
It is assumed that the two nodes are in the same RPL domain
(that they share the same DODAG root). At the
common parent (Node B), the direction flag ('O' flag) of the RPI is changed (from decreasing ranks to increasing ranks).<a href="#section-7.3.1-7" class="pilcrow">¶</a></p>
<p id="section-7.3.1-8">
While the 6LR nodes will update the RPI, no node needs to
add or remove the RPI, so no IPv6-in-IPv6 headers are
necessary.<a href="#section-7.3.1-8" class="pilcrow">¶</a></p>
<p id="section-7.3.1-9">
<a href="#Storing-rpl2rpl" class="xref">Table 15</a> summarizes which headers are needed for this use case.<a href="#section-7.3.1-9" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-headers-fr-3"></span><div id="Storing-rpl2rpl">
<table class="center" id="table-15">
<caption>
<a href="#table-15" class="selfRef">Table 15</a>:
<a href="#name-sm-summary-of-the-use-of-headers-fr-3" class="selfRef">SM: Summary of the Use of Headers from RAL to RAL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LR_x (common parent)</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">RAL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="storingRALtononRAL">
<section id="section-7.3.2">
<h4 id="name-sm-example-of-flow-from-ral-to">
<a href="#section-7.3.2" class="section-number selfRef">7.3.2. </a><a href="#name-sm-example-of-flow-from-ral-to" class="section-name selfRef">SM: Example of Flow from RAL to RUL</a>
</h4>
<p id="section-7.3.2-1">
In this case, the flow comprises:<a href="#section-7.3.2-1" class="pilcrow">¶</a></p>
<p id="section-7.3.2-2">
RAL src (6LN) --> 6LR_ia --> common parent (6LBR, the root) --> 6LR_id --> RUL (IPv6 dst node)<a href="#section-7.3.2-2" class="pilcrow">¶</a></p>
<p id="section-7.3.2-3">
For example, a communication flow could be:
Node F (RAL) --> Node D --> Node B --> Node A --> Node B --> Node E --> Node G (RUL)<a href="#section-7.3.2-3" class="pilcrow">¶</a></p>
<p id="section-7.3.2-4">
6LR_ia represents the intermediate routers from the source (RAL) to the
common parent (the root), and 1 <= ia <= n, where n is the total number of
routers (6LR) that the packet goes through, from the RAL to the root.<a href="#section-7.3.2-4" class="pilcrow">¶</a></p>
<p id="section-7.3.2-5">
6LR_id (Node E) represents the intermediate routers from the root
(Node B) to the destination RUL (Node G). In this case, 1 <= id <= m,
where m is the total number of routers (6LR) that the packet goes
through, from the root down to the destination RUL.<a href="#section-7.3.2-5" class="pilcrow">¶</a></p>
<p id="section-7.3.2-6">
In this case, the packet from the RAL goes to the 6LBR because the route to the RUL is not injected into the RPL SM.
Thus, the RAL inserts an RPI (RPI1) addressed to the root (6LBR). The root does not remove the RPI1
(the root cannot remove an RPI if there is no encapsulation). The root inserts an IPv6-in-IPv6 encapsulation with an RPI2
and sends it to the 6LR parent of the RUL, which removes the encapsulation and RPI2 before passing the packet to the RUL.<a href="#section-7.3.2-6" class="pilcrow">¶</a></p>
<p id="section-7.3.2-7">
<a href="#Storing-rpl2nrpl" class="xref">Table 16</a> summarizes which headers are needed for this use case.<a href="#section-7.3.2-7" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-headers-fr-4"></span><div id="Storing-rpl2nrpl">
<table class="center" id="table-16">
<caption>
<a href="#table-16" class="selfRef">Table 16</a>:
<a href="#name-sm-summary-of-the-use-of-headers-fr-4" class="selfRef">SM: Summary of the Use of Headers from RAL to RUL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">6LR_m</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI2</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">RPI1 (ignored)</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<div id="storingnotRALtoRAL">
<section id="section-7.3.3">
<h4 id="name-sm-example-of-flow-from-rul-t">
<a href="#section-7.3.3" class="section-number selfRef">7.3.3. </a><a href="#name-sm-example-of-flow-from-rul-t" class="section-name selfRef">SM: Example of Flow from RUL to RAL</a>
</h4>
<p id="section-7.3.3-1">
In this case, the flow comprises:<a href="#section-7.3.3-1" class="pilcrow">¶</a></p>
<p id="section-7.3.3-2">
RUL (IPv6 src node) --> 6LR_ia --> 6LBR --> 6LR_id --> RAL dst (6LN)<a href="#section-7.3.3-2" class="pilcrow">¶</a></p>
<p id="section-7.3.3-3">
For example, a communication flow could be:
Node G (RUL) --> Node E --> Node B --> Node A --> Node B --> Node D --> Node F (RAL)<a href="#section-7.3.3-3" class="pilcrow">¶</a></p>
<p id="section-7.3.3-4">
6LR_ia (Node E) represents the intermediate routers from the source (RUL) (Node G) to the root (Node A).
In this case, 1 <= ia <= n, where n is the total number of routers (6LR)
that the packet goes through, from the source to the root.<a href="#section-7.3.3-4" class="pilcrow">¶</a></p>
<p id="section-7.3.3-5">
6LR_id represents the intermediate routers from the root (Node A) to the destination RAL (Node F).
In this case, 1 <= id <= m, where m is the total number of routers (6LR)
that the packet goes through, from the root to the destination RAL.<a href="#section-7.3.3-5" class="pilcrow">¶</a></p>
<p id="section-7.3.3-6">
The 6LR_1 (Node E) receives the packet from the RUL (Node G) and
inserts the RPI (RPI1) encapsulated in an IPv6-in-IPv6 header to the root.
The root removes the outer header including the RPI (RPI1) and
inserts a new RPI (RPI2) addressed to the destination RAL (Node F).<a href="#section-7.3.3-6" class="pilcrow">¶</a></p>
<p id="section-7.3.3-7">
<a href="#Storing-notrpl2rpl" class="xref">Table 17</a> summarizes which headers are needed for this use case.<a href="#section-7.3.3-7" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-headers-fr-5"></span><div id="Storing-notrpl2rpl">
<table class="center" id="table-17">
<caption>
<a href="#table-17" class="selfRef">Table 17</a>:
<a href="#name-sm-summary-of-the-use-of-headers-fr-5" class="selfRef">SM: Summary of the Use of Headers from RUL to RAL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RUL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_1</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">RAL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI2</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI2)</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<section id="section-7.3.4">
<h4 id="name-sm-example-of-flow-from-rul-to">
<a href="#section-7.3.4" class="section-number selfRef">7.3.4. </a><a href="#name-sm-example-of-flow-from-rul-to" class="section-name selfRef">SM: Example of Flow from RUL to RUL</a>
</h4>
<p id="section-7.3.4-1">
In this case, the flow comprises:<a href="#section-7.3.4-1" class="pilcrow">¶</a></p>
<p id="section-7.3.4-2">
RUL (IPv6 src node) --> 6LR_1 --> 6LR_ia --> 6LBR --> 6LR_id --> RUL (IPv6 dst node)<a href="#section-7.3.4-2" class="pilcrow">¶</a></p>
<p id="section-7.3.4-3">
For example, a communication flow could be:
Node G (RUL src) --> Node E --> Node B --> Node A (root) --> Node C --> Node J (RUL dst)<a href="#section-7.3.4-3" class="pilcrow">¶</a></p>
<p id="section-7.3.4-4">
Internal nodes 6LR_ia (e.g., Node E or Node B) is the
intermediate router from the RUL source (Node G)
to the root (6LBR) (Node A).
In this case, 1 <= ia <= n, where n is the total number of routers (6LR)
that the packet goes through, from the RUL to the root. 6LR_1 applies when ia=1.<a href="#section-7.3.4-4" class="pilcrow">¶</a></p>
<p id="section-7.3.4-5">
6LR_id (Node C) represents the intermediate routers from the root
(Node A) to the destination RUL (Node J).
In this case, 1 <= id <= m, where m is the total number of routers (6LR)
that the packet goes through, from the root to the destination RUL.<a href="#section-7.3.4-5" class="pilcrow">¶</a></p>
<p id="section-7.3.4-6">
The 6LR_1 (Node E) receives the packet from the
RUL (Node G) and adds the RPI (RPI1)
in an IPv6-in-IPv6 encapsulation directed to the root.
The root removes the outer header including the RPI (RPI1) and
inserts a new RPI (RPI2) addressed to the 6LR parent of the RUL.<a href="#section-7.3.4-6" class="pilcrow">¶</a></p>
<p id="section-7.3.4-7">
<a href="#Storing-notrpl2notrpl" class="xref">Table 18</a> summarizes which headers are needed for this use case.<a href="#section-7.3.4-7" class="pilcrow">¶</a></p>
<span id="name-sm-summary-of-the-use-of-headers-fr-6"></span><div id="Storing-notrpl2notrpl">
<table class="center" id="table-18">
<caption>
<a href="#table-18" class="selfRef">Table 18</a>:
<a href="#name-sm-summary-of-the-use-of-headers-fr-6" class="selfRef">SM: Summary of the Use of Headers from RUL to RUL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RUL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_1</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">6LR_n</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI2</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</section>
</section>
</div>
<div id="sec_non-sm">
<section id="section-8">
<h2 id="name-non-storing-mode">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-non-storing-mode" class="section-name selfRef">Non-Storing Mode</a>
</h2>
<p id="section-8-1">
In Non-Storing mode (Non-SM) (fully source routed),
the 6LBR (DODAG root) has complete knowledge about the
connectivity of all DODAG nodes and all traffic flows
through the root node. Thus, there is no need for all nodes to
know about the existence of RPL-unaware nodes.
Only the 6LBR needs to act if compensation is necessary for
RPL-unaware receivers.<a href="#section-8-1" class="pilcrow">¶</a></p>
<p id="section-8-2">
<a href="#fig_table_non-storing" class="xref">Table 19</a> summarizes which headers are needed in the following
scenarios and indicates when the RPI, RH3, and IPv6-in-IPv6 header
are to be inserted. The last column depicts the
target destination of the IPv6-in-IPv6 header: 6LN (indicated by "RAL"), 6LR (parent of a RUL), or the root.
In cases where no IPv6-in-IPv6 header is needed, the column indicates "No".
There is no expectation on RPL that RPI can be omitted because it is needed for routing, quality of service, and compression.
This specification expects that an RPI is always present.
The term "may(up)" means that the IPv6-in-IPv6 header may be necessary in the Upward direction.
The term "must(up)" means that the IPv6-in-IPv6 header must be present in the Upward direction.
The term "must(down)" means that the IPv6-in-IPv6 header must be present in the Downward direction.<a href="#section-8-2" class="pilcrow">¶</a></p>
<p id="section-8-3">
The leaf can be a router 6LR or a host, both indicated as 6LN (<a href="#fig_CommonTopology" class="xref">Figure 3</a>). In <a href="#fig_table_non-storing" class="xref">Table 19</a>, the
(1) indicates a 6TiSCH case <span>[<a href="#RFC8180" class="xref">RFC8180</a>]</span>, where the RPI may still be needed
for the RPLInstanceID to be available for priority/channel selection at each hop.<a href="#section-8-3" class="pilcrow">¶</a></p>
<span id="name-headers-needed-in-non-stori"></span><div id="fig_table_non-storing">
<table class="center" id="table-19">
<caption>
<a href="#table-19" class="selfRef">Table 19</a>:
<a href="#name-headers-needed-in-non-stori" class="selfRef">Headers Needed in Non-Storing Mode: RPI, RH3, IPv6-in-IPv6 Encapsulation</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Interaction between</th>
<th class="text-center" rowspan="1" colspan="1">Use Case</th>
<th class="text-center" rowspan="1" colspan="1">RPI</th>
<th class="text-center" rowspan="1" colspan="1">RH3</th>
<th class="text-center" rowspan="1" colspan="1">IPv6-in-IPv6</th>
<th class="text-center" rowspan="1" colspan="1">IP-in-IP dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="4" colspan="1">Leaf - Root</th>
<td class="text-center" rowspan="1" colspan="1">RAL to root</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">root to RAL</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">root to RUL</td>
<td class="text-center" rowspan="1" colspan="1">Yes (1)</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">6LR</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">RUL to root</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">must</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<th class="text-center" rowspan="4" colspan="1">Leaf - Internet</th>
<td class="text-center" rowspan="1" colspan="1">RAL to Int</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">may(up)</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">Int to RAL</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">must</td>
<td class="text-center" rowspan="1" colspan="1">RAL</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">RUL to Int</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">No</td>
<td class="text-center" rowspan="1" colspan="1">must</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">Int to RUL</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">must</td>
<td class="text-center" rowspan="1" colspan="1">6LR</td>
</tr>
<tr>
<th class="text-center" rowspan="8" colspan="1">Leaf - Leaf</th>
<td class="text-center" rowspan="2" colspan="1">RAL to RAL</td>
<td class="text-center" rowspan="2" colspan="1">Yes</td>
<td class="text-center" rowspan="2" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">may(up)</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">must(down)</td>
<td class="text-center" rowspan="1" colspan="1">RAL</td>
</tr>
<tr>
<td class="text-center" rowspan="2" colspan="1">RAL to RUL</td>
<td class="text-center" rowspan="2" colspan="1">Yes</td>
<td class="text-center" rowspan="2" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">may(up)</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">must(down)</td>
<td class="text-center" rowspan="1" colspan="1">6LR</td>
</tr>
<tr>
<td class="text-center" rowspan="2" colspan="1">RUL to RAL</td>
<td class="text-center" rowspan="2" colspan="1">Yes</td>
<td class="text-center" rowspan="2" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">must(up)</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">must(down)</td>
<td class="text-center" rowspan="1" colspan="1">RAL</td>
</tr>
<tr>
<td class="text-center" rowspan="2" colspan="1">RUL to RUL</td>
<td class="text-center" rowspan="2" colspan="1">Yes</td>
<td class="text-center" rowspan="2" colspan="1">Yes</td>
<td class="text-center" rowspan="1" colspan="1">must(up)</td>
<td class="text-center" rowspan="1" colspan="1">root</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">must(down)</td>
<td class="text-center" rowspan="1" colspan="1">6LR</td>
</tr>
</tbody>
</table>
</div>
<section id="section-8.1">
<h3 id="name-non-storing-mode-interactio">
<a href="#section-8.1" class="section-number selfRef">8.1. </a><a href="#name-non-storing-mode-interactio" class="section-name selfRef">Non-Storing Mode: Interaction between Leaf and Root</a>
</h3>
<p id="section-8.1-1">
This section describes the communication flow
in Non-Storing mode (Non-SM) between the following:<a href="#section-8.1-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-8.1-2.1">
RAL to root<a href="#section-8.1-2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8.1-2.2">
root to RAL<a href="#section-8.1-2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8.1-2.3">
RUL to root<a href="#section-8.1-2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8.1-2.4">
root to RUL<a href="#section-8.1-2.4" class="pilcrow">¶</a>
</li>
</ul>
<section id="section-8.1.1">
<h4 id="name-non-sm-example-of-flow-from">
<a href="#section-8.1.1" class="section-number selfRef">8.1.1. </a><a href="#name-non-sm-example-of-flow-from" class="section-name selfRef">Non-SM: Example of Flow from RAL to Root</a>
</h4>
<p id="section-8.1.1-1">
In Non-Storing mode, the leaf node uses default
routing to send traffic to the root. The RPI must be included
since it contains the Rank information, which is used to
avoid and/or detect loops.<a href="#section-8.1.1-1" class="pilcrow">¶</a></p>
<p id="section-8.1.1-2">
RAL (6LN) --> 6LR_i --> root(6LBR)<a href="#section-8.1.1-2" class="pilcrow">¶</a></p>
<p id="section-8.1.1-3">
For example, a communication flow could be:
Node F --> Node D --> Node B --> Node A (root)<a href="#section-8.1.1-3" class="pilcrow">¶</a></p>
<p id="section-8.1.1-4">
6LR_i represents the intermediate routers from the source to the destination.
In this case, 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the source (RAL) to the destination (6LBR).<a href="#section-8.1.1-4" class="pilcrow">¶</a></p>
<p id="section-8.1.1-5">
This situation is the same case as Storing mode.<a href="#section-8.1.1-5" class="pilcrow">¶</a></p>
<p id="section-8.1.1-6">
<a href="#NonStoring-summary-headers" class="xref">Table 20</a> summarizes which headers are needed for this use case.<a href="#section-8.1.1-6" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-o"></span><div id="NonStoring-summary-headers">
<table class="center" id="table-20">
<caption>
<a href="#table-20" class="selfRef">Table 20</a>:
<a href="#name-non-sm-summary-of-the-use-o" class="selfRef">Non-SM: Summary of the Use of Headers from RAL to Root</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LBR dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
<div id="nsroottoRAL">
<section id="section-8.1.2">
<h4 id="name-non-sm-example-of-flow-from-">
<a href="#section-8.1.2" class="section-number selfRef">8.1.2. </a><a href="#name-non-sm-example-of-flow-from-" class="section-name selfRef">Non-SM: Example of Flow from Root to RAL</a>
</h4>
<p id="section-8.1.2-1">
In this case, the flow comprises:<a href="#section-8.1.2-1" class="pilcrow">¶</a></p>
<p id="section-8.1.2-2">
root (6LBR) --> 6LR_i --> RAL (6LN)<a href="#section-8.1.2-2" class="pilcrow">¶</a></p>
<p id="section-8.1.2-3">
For example, a communication flow could be:
Node A (root) --> Node B --> Node D --> Node F<a href="#section-8.1.2-3" class="pilcrow">¶</a></p>
<p id="section-8.1.2-4">
6LR_i represents the intermediate routers from the source to the destination.
In this case, 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the source (6LBR) to the destination (RAL).<a href="#section-8.1.2-4" class="pilcrow">¶</a></p>
<p id="section-8.1.2-5">
The 6LBR inserts an RH3 and an RPI.
No IPv6-in-IPv6 header is necessary as the traffic
originates with a RPL-aware node, the 6LBR.
The destination is known to be RPL aware because the root
knows the whole topology in Non-Storing mode.<a href="#section-8.1.2-5" class="pilcrow">¶</a></p>
<p id="section-8.1.2-6">
<a href="#NonStoring-root2rpl" class="xref">Table 21</a> summarizes which headers are needed for this use case.<a href="#section-8.1.2-6" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of"></span><div id="NonStoring-root2rpl">
<table class="center" id="table-21">
<caption>
<a href="#table-21" class="selfRef">Table 21</a>:
<a href="#name-non-sm-summary-of-the-use-of" class="selfRef">Non-SM: Summary of the Use of Headers from Root to RAL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">6LBR src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">RAL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<section id="section-8.1.3">
<h4 id="name-non-sm-example-of-flow-from-r">
<a href="#section-8.1.3" class="section-number selfRef">8.1.3. </a><a href="#name-non-sm-example-of-flow-from-r" class="section-name selfRef">Non-SM: Example of Flow from Root to RUL</a>
</h4>
<p id="section-8.1.3-1">
In this case, the flow comprises:<a href="#section-8.1.3-1" class="pilcrow">¶</a></p>
<p id="section-8.1.3-2">
root (6LBR) --> 6LR_i --> RUL (IPv6 dst node)<a href="#section-8.1.3-2" class="pilcrow">¶</a></p>
<p id="section-8.1.3-3">
For example, a communication flow could be:
Node A (root) --> Node B --> Node E --> Node G (RUL)<a href="#section-8.1.3-3" class="pilcrow">¶</a></p>
<p id="section-8.1.3-4">
6LR_i represents the intermediate routers from the source to the destination.
In this case, 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the source (6LBR) to the destination (RUL).<a href="#section-8.1.3-4" class="pilcrow">¶</a></p>
<p id="section-8.1.3-5">
In the 6LBR, the RH3 is added; it is then modified at each
intermediate 6LR (6LR_1 and so on), and it is fully consumed in the
last 6LR (6LR_n) but is left in place. When the RPI is added, the
RUL, which does not understand the RPI, will ignore it (per
<span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span>); thus, encapsulation is not necessary.<a href="#section-8.1.3-5" class="pilcrow">¶</a></p>
<p id="section-8.1.3-6">
<a href="#NonStoring-root2notrpl" class="xref">Table 22</a> summarizes which headers are needed for this use case.<a href="#section-8.1.3-6" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-"></span><div id="NonStoring-root2notrpl">
<table class="center" id="table-22">
<caption>
<a href="#table-22" class="selfRef">Table 22</a>:
<a href="#name-non-sm-summary-of-the-use-of-" class="selfRef">Non-SM: Summary of the Use of Headers from Root to RUL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">6LBR src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i i=(1,..,n-1)</th>
<th class="text-center" rowspan="1" colspan="1">6LR_n</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3</td>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3(consumed)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI, RH3 (both ignored)</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-8.1.4">
<h4 id="name-non-sm-example-of-flow-from-ru">
<a href="#section-8.1.4" class="section-number selfRef">8.1.4. </a><a href="#name-non-sm-example-of-flow-from-ru" class="section-name selfRef">Non-SM: Example of Flow from RUL to Root</a>
</h4>
<p id="section-8.1.4-1">
In this case, the flow comprises:<a href="#section-8.1.4-1" class="pilcrow">¶</a></p>
<p id="section-8.1.4-2">
RUL (IPv6 src node) --> 6LR_1 --> 6LR_i --> root (6LBR) dst<a href="#section-8.1.4-2" class="pilcrow">¶</a></p>
<p id="section-8.1.4-3">
For example, a communication flow could be:
Node G --> Node E --> Node B --> Node A (root)<a href="#section-8.1.4-3" class="pilcrow">¶</a></p>
<p id="section-8.1.4-4">
6LR_i represents the intermediate routers from the source to the destination.
In this case, 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the source (RUL) to the destination (6LBR).
For example, 6LR_1 (i=1) is the router that receives the packets from the
RUL.<a href="#section-8.1.4-4" class="pilcrow">¶</a></p>
<p id="section-8.1.4-5">
In this case, the RPI is added by the first 6LR (6LR_1) (Node E),
encapsulated in an IPv6-in-IPv6 header, and modified in the
subsequent 6LRs in the flow. The RPI and the
entire packet are consumed by the root.<a href="#section-8.1.4-5" class="pilcrow">¶</a></p>
<p id="section-8.1.4-6">
<a href="#NonStoring-notrpl2root" class="xref">Table 23</a> summarizes which headers are needed for this use case.<a href="#section-8.1.4-6" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-h"></span><div id="NonStoring-notrpl2root">
<table class="center" id="table-23">
<caption>
<a href="#table-23" class="selfRef">Table 23</a>:
<a href="#name-non-sm-summary-of-the-use-of-h" class="selfRef">Non-SM: Summary of the Use of Headers from RUL to Root</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RUL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_1</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LBR dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IPv6-in-IPv6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IPv6-in-IPv6 (RPI)</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</section>
<section id="section-8.2">
<h3 id="name-non-storing-mode-interaction">
<a href="#section-8.2" class="section-number selfRef">8.2. </a><a href="#name-non-storing-mode-interaction" class="section-name selfRef">Non-Storing Mode: Interaction between Leaf and Internet</a>
</h3>
<p id="section-8.2-1">
This section describes the communication flow in Non-Storing mode (Non-SM) between the following:<a href="#section-8.2-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-8.2-2.1">
RAL to Internet<a href="#section-8.2-2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8.2-2.2">
Internet to RAL<a href="#section-8.2-2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8.2-2.3">
RUL to Internet<a href="#section-8.2-2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8.2-2.4">
Internet to RUL<a href="#section-8.2-2.4" class="pilcrow">¶</a>
</li>
</ul>
<section id="section-8.2.1">
<h4 id="name-non-sm-example-of-flow-from-ra">
<a href="#section-8.2.1" class="section-number selfRef">8.2.1. </a><a href="#name-non-sm-example-of-flow-from-ra" class="section-name selfRef">Non-SM: Example of Flow from RAL to Internet</a>
</h4>
<p id="section-8.2.1-1">
In this case, the flow comprises:<a href="#section-8.2.1-1" class="pilcrow">¶</a></p>
<p id="section-8.2.1-2">
RAL (6LN) src --> 6LR_i --> root (6LBR) --> Internet dst<a href="#section-8.2.1-2" class="pilcrow">¶</a></p>
<p id="section-8.2.1-3">
For example, a communication flow could be:
Node F (RAL) --> Node D --> Node B --> Node A --> Internet.
Having the RAL information about the RPL domain, the packet may be encapsulated to the root when the destination is not in the RPL domain of the RAL.<a href="#section-8.2.1-3" class="pilcrow">¶</a></p>
<p id="section-8.2.1-4">
6LR_i represents the intermediate routers from the source to the destination,
and 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the source (RAL) to the 6LBR.<a href="#section-8.2.1-4" class="pilcrow">¶</a></p>
<p id="section-8.2.1-5">
In this case, the encapsulation from the RAL to the root is optional.
The simplest case is when the RPI gets to the Internet (as the <a href="#NonStoring-rpl2int" class="xref">Table 24</a> shows it), knowing that the Internet is
going to ignore it.<a href="#section-8.2.1-5" class="pilcrow">¶</a></p>
<p id="section-8.2.1-6">
The IPv6 flow label should be set to zero to aid
in compression <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>, and the 6LBR will set it to a
non-zero value when sending towards the Internet <span>[<a href="#RFC6437" class="xref">RFC6437</a>]</span>.<a href="#section-8.2.1-6" class="pilcrow">¶</a></p>
<p id="section-8.2.1-7">
<a href="#NonStoring-rpl2int" class="xref">Table 24</a> summarizes which headers are needed for this use case
when no encapsulation is used.
<a href="#NonStoring-rpl2intwithIPIP" class="xref">Table 25</a> summarizes which headers are needed
for this use case when encapsulation to the root is used.<a href="#section-8.2.1-7" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-he"></span><div id="NonStoring-rpl2int">
<table class="center" id="table-24">
<caption>
<a href="#table-24" class="selfRef">Table 24</a>:
<a href="#name-non-sm-summary-of-the-use-of-he" class="selfRef">Non-SM: Summary of the Use of Headers from RAL to Internet with No Encapsulation</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">Internet dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI (Ignored)</td>
</tr>
</tbody>
</table>
</div>
<span id="name-non-sm-summary-of-the-use-of-hea"></span><div id="NonStoring-rpl2intwithIPIP">
<table class="center" id="table-25">
<caption>
<a href="#table-25" class="selfRef">Table 25</a>:
<a href="#name-non-sm-summary-of-the-use-of-hea" class="selfRef">Non-SM: Summary of the Use of Headers from RAL to Internet with Encapsulation to the Root</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">Internet dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">IP6v6-in-IPv6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IPv6-in-IPv6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-8.2.2">
<h4 id="name-non-sm-example-of-flow-from-i">
<a href="#section-8.2.2" class="section-number selfRef">8.2.2. </a><a href="#name-non-sm-example-of-flow-from-i" class="section-name selfRef">Non-SM: Example of Flow from Internet to RAL</a>
</h4>
<p id="section-8.2.2-1">
In this case, the flow comprises:<a href="#section-8.2.2-1" class="pilcrow">¶</a></p>
<p id="section-8.2.2-2">
Internet --> root (6LBR) --> 6LR_i --> RAL dst (6LN)<a href="#section-8.2.2-2" class="pilcrow">¶</a></p>
<p id="section-8.2.2-3">
For example, a communication flow could be:
Internet --> Node A (root) --> Node B --> Node D --> Node F (RAL)<a href="#section-8.2.2-3" class="pilcrow">¶</a></p>
<p id="section-8.2.2-4">
6LR_i represents the intermediate routers from source to destination,
and 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the 6LBR to the destination (RAL).<a href="#section-8.2.2-4" class="pilcrow">¶</a></p>
<p id="section-8.2.2-5">
The 6LBR must add an RH3 header. As the 6LBR will
know the path and address of the target node, it can
address the IPv6-in-IPv6 header to that node.
The 6LBR will zero the flow label upon entry in
order to aid compression <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>.<a href="#section-8.2.2-5" class="pilcrow">¶</a></p>
<p id="section-8.2.2-6">
<a href="#NonStoring-int2rpl" class="xref">Table 26</a> summarizes which headers are needed for this use case.<a href="#section-8.2.2-6" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-head"></span><div id="NonStoring-int2rpl">
<table class="center" id="table-26">
<caption>
<a href="#table-26" class="selfRef">Table 26</a>:
<a href="#name-non-sm-summary-of-the-use-of-head" class="selfRef">Non-SM: Summary of the Use of Headers from Internet to RAL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">Internet src</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">RAL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IPv6-in-IPv6 (RH3, RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IPv6-in-IPv6 (RH3, RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IPv6-in-IPv6 (RH3, RPI)</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-8.2.3">
<h4 id="name-non-sm-example-of-flow-from-rul">
<a href="#section-8.2.3" class="section-number selfRef">8.2.3. </a><a href="#name-non-sm-example-of-flow-from-rul" class="section-name selfRef">Non-SM: Example of Flow from RUL to Internet</a>
</h4>
<p id="section-8.2.3-1">
In this case, the flow comprises:<a href="#section-8.2.3-1" class="pilcrow">¶</a></p>
<p id="section-8.2.3-2">
RUL (IPv6 src node) --> 6LR_1 --> 6LR_i --> root (6LBR) --> Internet dst<a href="#section-8.2.3-2" class="pilcrow">¶</a></p>
<p id="section-8.2.3-3">
For example, a communication flow could be:
Node G --> Node E --> Node B --> Node A --> Internet<a href="#section-8.2.3-3" class="pilcrow">¶</a></p>
<p id="section-8.2.3-4">
6LR_i represents the intermediate routers from the source to the destination,
and 1 <= i <= n, where n is the total number of routers (6LRs) that the
packet goes through, from the source (RUL) to the 6LBR, e.g., 6LR_1 (i=1).<a href="#section-8.2.3-4" class="pilcrow">¶</a></p>
<p id="section-8.2.3-5">
In this case, the flow label is recommended to
be zero in the RUL. As the RUL parent adds RPL headers in the RUL packet,
the first 6LR (6LR_1) will add an RPI inside a new IPv6-in-IPv6 header.
The IPv6-in-IPv6 header will be addressed to the
root. This case is identical to the
Storing mode case (see <a href="#sm-nRal2i" class="xref">Section 7.2.3</a>).<a href="#section-8.2.3-5" class="pilcrow">¶</a></p>
<p id="section-8.2.3-6">
<a href="#NonStoring-notrpl2int" class="xref">Table 27</a> summarizes which headers are needed for this use case.<a href="#section-8.2.3-6" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-heade"></span><div id="NonStoring-notrpl2int">
<table class="center" id="table-27">
<caption>
<a href="#table-27" class="selfRef">Table 27</a>:
<a href="#name-non-sm-summary-of-the-use-of-heade" class="selfRef">Non-SM: Summary of the Use of Headers from RUL to Internet</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RUL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_1</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i i=(2,..,n)</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">Internet dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-8.2.4">
<h4 id="name-non-sm-example-of-flow-from-in">
<a href="#section-8.2.4" class="section-number selfRef">8.2.4. </a><a href="#name-non-sm-example-of-flow-from-in" class="section-name selfRef">Non-SM: Example of Flow from Internet to RUL</a>
</h4>
<p id="section-8.2.4-1">
In this case, the flow comprises:<a href="#section-8.2.4-1" class="pilcrow">¶</a></p>
<p id="section-8.2.4-2">
Internet src --> root (6LBR) --> 6LR_i --> RUL (IPv6 dst node)<a href="#section-8.2.4-2" class="pilcrow">¶</a></p>
<p id="section-8.2.4-3">
For example, a communication flow could be:
Internet --> Node A (root) --> Node B --> Node E --> Node G<a href="#section-8.2.4-3" class="pilcrow">¶</a></p>
<p id="section-8.2.4-4">
6LR_i represents the intermediate routers from the source to the destination,
and 1 <= i <= n, where n is the total number of routers (6LR)
that the packet goes through, from the 6LBR to the RUL.<a href="#section-8.2.4-4" class="pilcrow">¶</a></p>
<p id="section-8.2.4-5">
The 6LBR must add an RH3 header inside an IPv6-in-IPv6
header.
The 6LBR will know the path and will recognize
that the final node is not a RPL-capable node as
it will have received the connectivity DAO from the
nearest 6LR. The 6LBR can therefore make the IPv6-in-IPv6
header destination be the last 6LR.
The 6LBR will set to zero the flow label upon entry in
order to aid compression <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>.<a href="#section-8.2.4-5" class="pilcrow">¶</a></p>
<p id="section-8.2.4-6">
<a href="#NonStoring-int2notrpl" class="xref">Table 28</a> summarizes which headers are needed for this use case.<a href="#section-8.2.4-6" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-header"></span><div id="NonStoring-int2notrpl">
<table class="center" id="table-28">
<caption>
<a href="#table-28" class="selfRef">Table 28</a>:
<a href="#name-non-sm-summary-of-the-use-of-header" class="selfRef">Non-SM: Summary of the Use of Headers from Internet to RUL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">Internet src</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_i</th>
<th class="text-center" rowspan="1" colspan="1">6LR_n</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</section>
<section id="section-8.3">
<h3 id="name-non-sm-interaction-between-">
<a href="#section-8.3" class="section-number selfRef">8.3. </a><a href="#name-non-sm-interaction-between-" class="section-name selfRef">Non-SM: Interaction between Leaves</a>
</h3>
<p id="section-8.3-1">
This section describes the communication flow
in Non-Storing mode (Non-SM) between the following:<a href="#section-8.3-1" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-8.3-2.1">
RAL to RAL<a href="#section-8.3-2.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8.3-2.2">
RAL to RUL<a href="#section-8.3-2.2" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8.3-2.3">
RUL to RAL<a href="#section-8.3-2.3" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8.3-2.4">
RUL to RUL<a href="#section-8.3-2.4" class="pilcrow">¶</a>
</li>
</ul>
<section id="section-8.3.1">
<h4 id="name-non-sm-example-of-flow-from-ral">
<a href="#section-8.3.1" class="section-number selfRef">8.3.1. </a><a href="#name-non-sm-example-of-flow-from-ral" class="section-name selfRef">Non-SM: Example of Flow from RAL to RAL</a>
</h4>
<p id="section-8.3.1-1">
In this case, the flow comprises:<a href="#section-8.3.1-1" class="pilcrow">¶</a></p>
<p id="section-8.3.1-2">
RAL src --> 6LR_ia --> root (6LBR) --> 6LR_id --> RAL dst<a href="#section-8.3.1-2" class="pilcrow">¶</a></p>
<p id="section-8.3.1-3">
For example, a communication flow could be:
Node F (RAL src) --> Node D --> Node B --> Node A (root) --> Node B --> Node E --> Node H (RAL dst)<a href="#section-8.3.1-3" class="pilcrow">¶</a></p>
<p id="section-8.3.1-4">
6LR_ia represents the intermediate routers from the source to the root,
and 1 <= ia <= n, where n is the total number of routers (6LR)
that the packet goes through, from the RAL to the root.<a href="#section-8.3.1-4" class="pilcrow">¶</a></p>
<p id="section-8.3.1-5">
6LR_id represents the intermediate routers from the root to the destination,
and 1 <= id <= m, where m is the total number of the
intermediate routers (6LR).<a href="#section-8.3.1-5" class="pilcrow">¶</a></p>
<p id="section-8.3.1-6">
This case involves only nodes in same RPL domain.
The originating node will add an RPI to the
original packet and send the packet Upward.<a href="#section-8.3.1-6" class="pilcrow">¶</a></p>
<p id="section-8.3.1-7">
The originating node may put the RPI (RPI1) into an IPv6-in-IPv6
header addressed to the root so that the 6LBR can remove that
header. If it does not, then the RPI1 is forwarded down from the
root in the inner header to no avail.<a href="#section-8.3.1-7" class="pilcrow">¶</a></p>
<p id="section-8.3.1-8">
The 6LBR will need to insert an RH3 header, which
requires that it add an IPv6-in-IPv6 header.
It removes the RPI (RPI1), as it was contained in an
IPv6-in-IPv6 header addressed to it. Otherwise, there may
be an RPI buried inside the inner IP header,
which should be ignored. The root inserts an RPI (RPI2) alongside the RH3.<a href="#section-8.3.1-8" class="pilcrow">¶</a></p>
<p id="section-8.3.1-9">
Networks that use the RPL point-to-point extension <span>[<a href="#RFC6997" class="xref">RFC6997</a>]</span>
are essentially Non-Storing DODAGs and fall into this
scenario or the scenario given in <a href="#nsroottoRAL" class="xref">Section 8.1.2</a>, with
the originating node acting as a 6LBR.<a href="#section-8.3.1-9" class="pilcrow">¶</a></p>
<p id="section-8.3.1-10">
<a href="#NonStoring-rpl2rpl" class="xref">Table 29</a> summarizes which headers
are needed for this use case when encapsulation to the root takes place.<a href="#section-8.3.1-10" class="pilcrow">¶</a></p>
<p id="section-8.3.1-11">
<a href="#NonStoring-rpl2rplnoIPIP" class="xref">Table 30</a> summarizes which headers
are needed for this use case when there is no encapsulation to the root.
Note that in the Modified headers row, going up in each 6LR_ia only the RPI1 is changed.
Going down, in each 6LR_id the IPv6 header is swapped with the RH3 so both are changed alongside with the RPI2.<a href="#section-8.3.1-11" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-header-2"></span><div id="NonStoring-rpl2rpl">
<table class="center" id="table-29">
<caption>
<a href="#table-29" class="selfRef">Table 29</a>:
<a href="#name-non-sm-summary-of-the-use-of-header-2" class="selfRef">Non-SM: Summary of the Use of Headers from RAL to RAL with Encapsulation to the Root</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">RAL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3 -> RAL, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
<span id="name-non-sm-summary-of-the-use-of-header-3"></span><div id="NonStoring-rpl2rplnoIPIP">
<table class="center" id="table-30">
<caption>
<a href="#table-30" class="selfRef">Table 30</a>:
<a href="#name-non-sm-summary-of-the-use-of-header-3" class="selfRef">Non-SM: Summary of the Use of Headers from RAL to RAL without Encapsulation to the Root</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">RAL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">RPI1 (Ignored)</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-8.3.2">
<h4 id="name-non-sm-example-of-flow-from-ral-">
<a href="#section-8.3.2" class="section-number selfRef">8.3.2. </a><a href="#name-non-sm-example-of-flow-from-ral-" class="section-name selfRef">Non-SM: Example of Flow from RAL to RUL</a>
</h4>
<p id="section-8.3.2-1">
In this case, the flow comprises:<a href="#section-8.3.2-1" class="pilcrow">¶</a></p>
<p id="section-8.3.2-2">
RAL --> 6LR_ia --> root (6LBR) --> 6LR_id --> RUL (IPv6 dst node)<a href="#section-8.3.2-2" class="pilcrow">¶</a></p>
<p id="section-8.3.2-3">
For example, a communication flow could be:
Node F (RAL) --> Node D --> Node B --> Node A (root) --> Node B --> Node E --> Node G (RUL)<a href="#section-8.3.2-3" class="pilcrow">¶</a></p>
<p id="section-8.3.2-4">
6LR_ia represents the intermediate routers from the source to the root,
and 1 <= ia <= n, where n is the total number of intermediate routers (6LR).<a href="#section-8.3.2-4" class="pilcrow">¶</a></p>
<p id="section-8.3.2-5">
6LR_id represents the intermediate routers from the root to the destination,
and 1 <= id <= m, where m is the total number of the
intermediate routers (6LRs).<a href="#section-8.3.2-5" class="pilcrow">¶</a></p>
<p id="section-8.3.2-6">
As in the previous case, the RAL (6LN) may insert an RPI (RPI1)
header, which must be in an IPv6-in-IPv6 header addressed to
the root so that the 6LBR can remove this RPI.
The 6LBR will then insert an RH3 inside a new IPv6-in-IPv6
header addressed to the last 6LR_id (6LR_id = m) alongside the insertion of RPI2.<a href="#section-8.3.2-6" class="pilcrow">¶</a></p>
<p id="section-8.3.2-7">
If the originating node does not put the RPI (RPI1) into an IPv6-in-IPv6
header addressed to the root, then the RPI1 is forwarded down from the
root in the inner header to no avail.<a href="#section-8.3.2-7" class="pilcrow">¶</a></p>
<p id="section-8.3.2-8">
<a href="#NonStoring-rpl2notrpl" class="xref">Table 31</a> summarizes which headers
are needed for this use case when encapsulation to the root takes place.
<a href="#NonStoring-rpl2notrplnoIPIP" class="xref">Table 32</a> summarizes which headers
are needed for this use case when no encapsulation to the root takes place.<a href="#section-8.3.2-8" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-header-4"></span><div id="NonStoring-rpl2notrpl">
<table class="center" id="table-31">
<caption>
<a href="#table-31" class="selfRef">Table 31</a>:
<a href="#name-non-sm-summary-of-the-use-of-header-4" class="selfRef">Non-SM: Summary of the Use of Headers from RAL to RUL with Encapsulation to the Root</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">6LR_m</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
<span id="name-non-sm-summary-of-the-use-of-header-5"></span><div id="NonStoring-rpl2notrplnoIPIP">
<table class="center" id="table-32">
<caption>
<a href="#table-32" class="selfRef">Table 32</a>:
<a href="#name-non-sm-summary-of-the-use-of-header-5" class="selfRef">Non-SM: Summary of the Use of Headers from RAL to RUL without Encapsulation to the Root</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RAL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">6LR_n</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">RPI1 (ignored)</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-8.3.3">
<h4 id="name-non-sm-example-of-flow-from-rul-">
<a href="#section-8.3.3" class="section-number selfRef">8.3.3. </a><a href="#name-non-sm-example-of-flow-from-rul-" class="section-name selfRef">Non-SM: Example of Flow from RUL to RAL</a>
</h4>
<p id="section-8.3.3-1">
In this case, the flow comprises:<a href="#section-8.3.3-1" class="pilcrow">¶</a></p>
<p id="section-8.3.3-2">
RUL (IPv6 src node) --> 6LR_1 --> 6LR_ia --> root (6LBR) --> 6LR_id --> RAL dst (6LN)<a href="#section-8.3.3-2" class="pilcrow">¶</a></p>
<p id="section-8.3.3-3">
For example, a communication flow could be:
Node G (RUL) --> Node E --> Node B --> Node A (root) --> Node B --> Node E --> Node H (RAL)<a href="#section-8.3.3-3" class="pilcrow">¶</a></p>
<p id="section-8.3.3-4">
6LR_ia represents the intermediate routers from source to the root,
and 1 <= ia <= n, where n is the total number of intermediate routers (6LR).<a href="#section-8.3.3-4" class="pilcrow">¶</a></p>
<p id="section-8.3.3-5">
6LR_id represents the intermediate routers from the root to the destination,
and 1 <= id <= m, where m is the total number of the
intermediate routers (6LR).<a href="#section-8.3.3-5" class="pilcrow">¶</a></p>
<p id="section-8.3.3-6">
In this scenario, the RPI (RPI1) is added by the first 6LR (6LR_1) inside an
IPv6-in-IPv6 header addressed to the root. The 6LBR will
remove this RPI and add its own IPv6-in-IPv6 header
containing an RH3 header and an RPI (RPI2).<a href="#section-8.3.3-6" class="pilcrow">¶</a></p>
<p id="section-8.3.3-7">
<a href="#NonStoring-notrpl2rpl" class="xref">Table 33</a> summarizes which headers are needed for this use case.<a href="#section-8.3.3-7" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-header-6"></span><div id="NonStoring-notrpl2rpl">
<table class="center" id="table-33">
<caption>
<a href="#table-33" class="selfRef">Table 33</a>:
<a href="#name-non-sm-summary-of-the-use-of-header-6" class="selfRef">Non-SM: Summary of the Use of Headers from RUL to RAL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RUL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_1</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">RAL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="section-8.3.4">
<h4 id="name-non-sm-example-of-flow-from-rul-t">
<a href="#section-8.3.4" class="section-number selfRef">8.3.4. </a><a href="#name-non-sm-example-of-flow-from-rul-t" class="section-name selfRef">Non-SM: Example of Flow from RUL to RUL</a>
</h4>
<p id="section-8.3.4-1">
In this case, the flow comprises:<a href="#section-8.3.4-1" class="pilcrow">¶</a></p>
<p id="section-8.3.4-2">
RUL (IPv6 src node) --> 6LR_1 --> 6LR_ia --> root (6LBR) --> 6LR_id --> RUL (IPv6 dst node)<a href="#section-8.3.4-2" class="pilcrow">¶</a></p>
<p id="section-8.3.4-3">
For example, a communication flow could be:
Node G --> Node E --> Node B --> Node A (root) --> Node C --> Node J<a href="#section-8.3.4-3" class="pilcrow">¶</a></p>
<p id="section-8.3.4-4">
6LR_ia represents the intermediate routers from the source to the root,
and 1 <= ia <= n, where n is the total number of intermediate routers (6LR).<a href="#section-8.3.4-4" class="pilcrow">¶</a></p>
<p id="section-8.3.4-5">
6LR_id represents the intermediate routers from the root to the destination,
and 1 <= id <= m, where m is the total number of the
intermediate routers (6LR).<a href="#section-8.3.4-5" class="pilcrow">¶</a></p>
<p id="section-8.3.4-6">
This scenario is the combination of the previous two cases.<a href="#section-8.3.4-6" class="pilcrow">¶</a></p>
<p id="section-8.3.4-7">
<a href="#NonStoring-notrpl2notrpl" class="xref">Table 34</a> summarizes which headers are needed for this use case.<a href="#section-8.3.4-7" class="pilcrow">¶</a></p>
<span id="name-non-sm-summary-of-the-use-of-header-7"></span><div id="NonStoring-notrpl2notrpl">
<table class="center" id="table-34">
<caption>
<a href="#table-34" class="selfRef">Table 34</a>:
<a href="#name-non-sm-summary-of-the-use-of-header-7" class="selfRef">Non-SM: Summary of the Use of Headers from RUL to RUL</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Header</th>
<th class="text-center" rowspan="1" colspan="1">RUL src</th>
<th class="text-center" rowspan="1" colspan="1">6LR_1</th>
<th class="text-center" rowspan="1" colspan="1">6LR_ia</th>
<th class="text-center" rowspan="1" colspan="1">6LBR</th>
<th class="text-center" rowspan="1" colspan="1">6LR_id</th>
<th class="text-center" rowspan="1" colspan="1">6LR_m</th>
<th class="text-center" rowspan="1" colspan="1">RUL dst</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-center" rowspan="1" colspan="1">Added headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Modified headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">RPI1</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Removed headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RPI1)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">IP6-IP6 (RH3, RPI2)</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Untouched headers</th>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
<td class="text-center" rowspan="1" colspan="1">--</td>
</tr>
</tbody>
</table>
</div>
</section>
</section>
</section>
</div>
<div id="notrplaware">
<section id="section-9">
<h2 id="name-operational-considerations-">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-operational-considerations-" class="section-name selfRef">Operational Considerations of Supporting RULs</a>
</h2>
<p id="section-9-1">
Roughly half of the situations described in this document
involve leaf ("host") nodes that do not speak RPL. These nodes
fall into two further categories: ones that drop a packet
that have RPI or RH3 headers, and ones that continue to
process a packet that has RPI and/or RH3 headers.<a href="#section-9-1" class="pilcrow">¶</a></p>
<p id="section-9-2">
<span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span> provides for new rules that suggest
that nodes that have not been configured (explicitly) to
examine Hop-by-Hop Options headers should ignore those headers and
continue processing the packet. Despite this, and despite the
switch from 0x63 to 0x23, there may be nodes that predate RFC 8200
or are simply intolerant. Those nodes will drop packets that
continue to have RPL artifacts in them. In general, such
nodes cannot be easily supported in RPL LLNs.<a href="#section-9-2" class="pilcrow">¶</a></p>
<p id="section-9-3">
There are some specific cases where it is possible to remove
the RPL artifacts prior to forwarding the packet to the leaf
host. The critical thing is that the artifacts have been
inserted by the RPL root inside an IPv6-in-IPv6 header, and
that the header has been addressed to the 6LR immediately prior
to the leaf node. In that case, in the process of removing the
IPv6-in-IPv6 header, the artifacts can also be removed.<a href="#section-9-3" class="pilcrow">¶</a></p>
<p id="section-9-4">
The above case occurs whenever traffic originates from the
outside the LLN (the "Internet" cases above), and Non-Storing
mode is used. In Non-Storing mode, the RPL root knows the exact topology
(as it must create the RH3 header) and therefore knows which 6LR is prior to the
leaf. For example, in <a href="#fig_CommonTopology" class="xref">Figure 3</a>, Node E is the 6LR prior to leaf
Node G, or Node C is the 6LR prior to leaf Node J.<a href="#section-9-4" class="pilcrow">¶</a></p>
<p id="section-9-5">
Traffic originating from the RPL root (such as when the data
collection system is co-located on the RPL root), does not
require an IPv6-in-IPv6 header (in Storing or Non-Storing mode), as the packet
is originating at the root, and the root can insert the RPI
and RH3 headers directly into the packet as it is formed.
Such a packet is slightly smaller, but can only be sent to
nodes (whether RPL aware or not) that will tolerate the
RPL artifacts.<a href="#section-9-5" class="pilcrow">¶</a></p>
<p id="section-9-6">
An operator that finds itself with a high amount of traffic from the
RPL root to RPL-unaware leaves will have to do IPv6-in-IPv6
encapsulation if the leaf is not tolerant of the RPL artifacts.
Such an operator could otherwise omit this unnecessary header
if it was certain of the properties of the leaf.<a href="#section-9-6" class="pilcrow">¶</a></p>
<p id="section-9-7">
As the Storing mode cannot know the final path of the traffic,
intolerant leaf nodes, which drop packets with RPL artifacts,
cannot be supported.<a href="#section-9-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_op_con_0x23">
<section id="section-10">
<h2 id="name-operational-considerations-o">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-operational-considerations-o" class="section-name selfRef">Operational Considerations of Introducing 0x23</a>
</h2>
<p id="section-10-1">
This section describes the operational considerations of introducing the new RPI Option Type of 0x23.<a href="#section-10-1" class="pilcrow">¶</a></p>
<p id="section-10-2">
During bootstrapping, the node receives the DIO with the information of RPI Option Type, indicating
the new RPI in the DODAG Configuration option flag.
The DODAG root is in charge of configuring the current network with the new value, through DIO
messages, and determining when all the nodes have been set with the new value. The DODAG should change to a new DODAG version.
In case of rebooting, the node does not remember the RPI Option Type.
Thus, the DIO is sent with a flag indicating the new RPI Option Type.<a href="#section-10-2" class="pilcrow">¶</a></p>
<p id="section-10-3">
The DODAG Configuration option is contained in a RPL DIO message, which contains a unique Destination Advertisement Trigger Sequence Number (DTSN) counter.
The leaf nodes respond to this message with DAO messages containing the same DTSN.
This is a normal part of RPL routing; the RPL root therefore knows when the updated
DODAG Configuration option has been seen by all nodes.<a href="#section-10-3" class="pilcrow">¶</a></p>
<p id="section-10-4">
Before the migration happens, all the RPL-aware nodes should support both values.
The migration procedure is triggered when the DIO is sent with the flag
indicating the new RPI Option Type.
Namely, it remains at 0x63 until it is sure that the network is capable of 0x23, then it abruptly changes to 0x23.
The 0x23 RPI Option allows the sending of packets to non-RPL nodes. The non-RPL nodes should ignore the option and continue processing the packets.<a href="#section-10-4" class="pilcrow">¶</a></p>
<p id="section-10-5">
As mentioned previously, indicating the new RPI in the DODAG Configuration option flag is a way to avoid the flag day
(abrupt changeover) in a network using 0x63 as the RPI Option Type value. It is suggested that RPL implementations
accept both 0x63 and 0x23 RPI Option Type values when processing the header to enable interoperability.<a href="#section-10-5" class="pilcrow">¶</a></p>
</section>
</div>
<div id="iana">
<section id="section-11">
<h2 id="name-iana-considerations">
<a href="#section-11" class="section-number selfRef">11. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<section id="section-11.1">
<h3 id="name-option-type-in-rpl-option-2">
<a href="#section-11.1" class="section-number selfRef">11.1. </a><a href="#name-option-type-in-rpl-option-2" class="section-name selfRef">Option Type in RPL Option</a>
</h3>
<p id="section-11.1-1">
This document updates the registration made in the
"Destination Options and Hop-by-Hop Options" subregistry <span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span> from 0x63 to 0x23
as shown in <a href="#fig_IanaRPIOption" class="xref">Table 35</a>.<a href="#section-11.1-1" class="pilcrow">¶</a></p>
<span id="name-option-type-in-rpl-option-3"></span><div id="fig_IanaRPIOption">
<table class="center" id="table-35">
<caption>
<a href="#table-35" class="selfRef">Table 35</a>:
<a href="#name-option-type-in-rpl-option-3" class="selfRef">Option Type in RPL Option</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="2" colspan="1">Hex Value</th>
<th class="text-center" rowspan="1" colspan="3">Binary Value</th>
<th class="text-center" rowspan="2" colspan="1">Description</th>
<th class="text-center" rowspan="2" colspan="1">Reference</th>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">act</th>
<th class="text-center" rowspan="1" colspan="1">chg</th>
<th class="text-center" rowspan="1" colspan="1">rest</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">0x23</td>
<td class="text-center" rowspan="1" colspan="1">00</td>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-center" rowspan="1" colspan="1">00011</td>
<td class="text-center" rowspan="1" colspan="1">RPL Option</td>
<td class="text-center" rowspan="1" colspan="1">This document</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">0x63</td>
<td class="text-center" rowspan="1" colspan="1">01</td>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-center" rowspan="1" colspan="1">00011</td>
<td class="text-center" rowspan="1" colspan="1">RPL Option (DEPRECATED)</td>
<td class="text-center" rowspan="1" colspan="1">
<span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span>, this document</td>
</tr>
</tbody>
</table>
</div>
<p id="section-11.1-3"> The "DODAG Configuration
Option Flags for MOP 0..6" subregistry is updated as follows (<a href="#fig_RPIflagdayConfOption" class="xref">Table 36</a>):<a href="#section-11.1-3" class="pilcrow">¶</a></p>
<span id="name-dodag-configuration-option-f"></span><div id="fig_RPIflagdayConfOption">
<table class="center" id="table-36">
<caption>
<a href="#table-36" class="selfRef">Table 36</a>:
<a href="#name-dodag-configuration-option-f" class="selfRef">DODAG Configuration Option Flag to Indicate the RPI Flag Day</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Bit Number</th>
<th class="text-center" rowspan="1" colspan="1">Capability Description</th>
<th class="text-center" rowspan="1" colspan="1">Reference</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-center" rowspan="1" colspan="1">RPI 0x23 enable</td>
<td class="text-center" rowspan="1" colspan="1">This document</td>
</tr>
</tbody>
</table>
</div>
</section>
<div id="sec_op_flags_reg">
<section id="section-11.2">
<h3 id="name-change-to-the-dodag-configu">
<a href="#section-11.2" class="section-number selfRef">11.2. </a><a href="#name-change-to-the-dodag-configu" class="section-name selfRef">Change to the "DODAG Configuration Option Flags" Subregistry</a>
</h3>
<p id="section-11.2-1">
IANA has changed the name of the "DODAG
Configuration Option Flags" subregistry to "DODAG Configuration Option Flags
for MOP 0..6".<a href="#section-11.2-1" class="pilcrow">¶</a></p>
<p id="section-11.2-2">The subregistry references this document for this change.<a href="#section-11.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_mop_val_change">
<section id="section-11.3">
<h3 id="name-change-mop-value-7-to-reser">
<a href="#section-11.3" class="section-number selfRef">11.3. </a><a href="#name-change-mop-value-7-to-reser" class="section-name selfRef">Change MOP Value 7 to Reserved</a>
</h3>
<p id="section-11.3-1">
IANA has changed the registration status of value 7 in
the "Mode of Operation" subregistry from Unassigned to Reserved. This change
is in support of future work.<a href="#section-11.3-1" class="pilcrow">¶</a></p>
<p id="section-11.3-2">
This document is listed as a reference for this entry in
the subregistry.<a href="#section-11.3-2" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="Security">
<section id="section-12">
<h2 id="name-security-considerations">
<a href="#section-12" class="section-number selfRef">12. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-12-1">
The security considerations covered in <span>[<a href="#RFC6553" class="xref">RFC6553</a>]</span> and
<span>[<a href="#RFC6554" class="xref">RFC6554</a>]</span> apply when the packets are in the RPL
Domain.<a href="#section-12-1" class="pilcrow">¶</a></p>
<p id="section-12-2">
The IPv6-in-IPv6 mechanism described in this document is much more
limited than the general mechanism described in <span>[<a href="#RFC2473" class="xref">RFC2473</a>]</span>. The willingness of each node in the LLN to
decapsulate packets and forward them could be exploited by nodes to
disguise the origin of an attack.<a href="#section-12-2" class="pilcrow">¶</a></p>
<p id="section-12-3">
While a typical LLN may be a very poor origin for attack traffic
(as the networks tend to be very slow,
and the nodes often have very low duty cycles), given enough
nodes, LLNs could still have a
significant impact, particularly if the attack is targeting another LLN.
Additionally, some uses of RPL involve large-backbone, ISP-scale
equipment <span>[<a href="#I-D.ietf-anima-autonomic-control-plane" class="xref">ACP</a>]</span>,
which may be equipped with multiple 100 Gb/s interfaces.<a href="#section-12-3" class="pilcrow">¶</a></p>
<p id="section-12-4">
Blocking or careful filtering of IPv6-in-IPv6 traffic entering the LLN as
described above will make sure that any attack that is mounted
must originate from compromised nodes within the LLN.
The use of network ingress filtering <span>[<a href="#BCP38" class="xref">BCP38</a>]</span> on egress traffic at
the RPL root will alert the operator to the existence of the attack
as well as drop the attack traffic. As the RPL network is typically
numbered from a single prefix, which is itself assigned by RPL,
network ingress filtering <span>[<a href="#BCP38" class="xref">BCP38</a>]</span> involves a single prefix comparison and should be
trivial to automatically configure.<a href="#section-12-4" class="pilcrow">¶</a></p>
<p id="section-12-5">
There are some scenarios where IPv6-in-IPv6 traffic should be allowed to
pass through the RPL root, such as the IPv6-in-IPv6 mediated
communications between a new pledge and the Join
Registrar/Coordinator (JRC) when
using <span>[<a href="#I-D.ietf-anima-bootstrapping-keyinfra" class="xref">BRSKI</a>]</span> and
<span>[<a href="#I-D.ietf-6tisch-dtsecurity-zerotouch-join" class="xref">ZEROTOUCH-JOIN</a>]</span>. This is
the case for the RPL root to do careful filtering: it occurs only
when the Join Coordinator is not co-located inside the RPL root.<a href="#section-12-5" class="pilcrow">¶</a></p>
<p id="section-12-6">
With the above precautions, an attack using IPv6-in-IPv6 tunnels can only be
by a node within the LLN on another node within the LLN. Such an
attack could, of course, be done directly. An attack of this
kind is meaningful only if the source addresses are either fake
or if the point is to amplify return traffic.
Such an attack could also be done without the use of IPv6-in-IPv6
headers, by using forged source addresses instead.
If the attack requires bidirectional communication, then IPv6-in-IPv6
provides no advantages.<a href="#section-12-6" class="pilcrow">¶</a></p>
<p id="section-12-7">
Whenever IPv6-in-IPv6 headers are being proposed, there is a concern
about creating security issues. In the Security Considerations
section of <span>[<a href="#RFC2473" class="xref">RFC2473</a>]</span> (Section <a href="https://www.rfc-editor.org/rfc/rfc2473#section-9" class="relref">9</a>), it was suggested that tunnel entry and exit
points can be secured by securing the IPv6 path between them. This
recommendation is not practical for RPL networks.
<span>[<a href="#RFC5406" class="xref">RFC5406</a>]</span> provides guidance on what
on what additional details are needed in order to "Use IPsec".
While the use of Encapsulating Security Payload (ESP) would prevent source address
forgeries, in order to use it with <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span>, compression would have to occur
before encryption, as the <span>[<a href="#RFC8138" class="xref">RFC8138</a>]</span> compression is lossy. Once encrypted,
there would be no further redundancy to compress. These are minor issues. The major issue is how to
establish trust enough such that Internet Key Exchange Protocol Version 2 (IKEv2) could be used. This would
require a system of certificates to be present in every single node,
including any Internet nodes that might need to communicate with the
LLN. Thus, using IPsec requires a global PKI in the general case.<a href="#section-12-7" class="pilcrow">¶</a></p>
<p id="section-12-8">
More significantly, the use of IPsec tunnels to protect the IPv6-in-IPv6
headers would, in the general case, scale with the square of the
number of nodes. This is a lot of resources for a constrained
nodes on a constrained network. In the end, the IPsec tunnels
would be providing only BCP38-like origin authentication!
That is, IPsec provides a transitive guarantee to the tunnel exit point
that the tunnel entry point did network ingress filtering <span>[<a href="#BCP38" class="xref">BCP38</a>]</span> on traffic going in.
Just doing origin filtering per BCP 38 at the entry and
exit of the LLN provides a similar level of security without all the
scaling and trust problems related to IPv6 tunnels as discussed in
<span>[<a href="#RFC2473" class="xref">RFC2473</a>]</span>. IPsec is not recommended.<a href="#section-12-8" class="pilcrow">¶</a></p>
<p id="section-12-9">
An LLN with hostile nodes within it would not be protected against
impersonation within the LLN by entry/exit filtering.<a href="#section-12-9" class="pilcrow">¶</a></p>
<p id="section-12-10">
The RH3 header usage described here can be abused in equivalent
ways. An external attacker may form a packet with an RH3 that is
not fully consumed and encapsulate it to hide the RH3 from
intermediate nodes and disguise the origin of
traffic. As such, the attacker's RH3 header will not be seen by
the network until it reaches the destination, which will decapsulate
it. As indicated in <span><a href="https://www.rfc-editor.org/rfc/rfc6554#section-4.2" class="relref">Section 4.2</a> of [<a href="#RFC6554" class="xref">RFC6554</a>]</span>, RPL
routers are responsible for ensuring that an SRH is only used
between RPL routers. As such, if there is an RH3 that is not fully
consumed in the encapsulated packet, the node that decapsulates it
<span class="bcp14">MUST</span> ensure that the outer packet was originated in the RPL domain
and drop the packet otherwise.<a href="#section-12-10" class="pilcrow">¶</a></p>
<p id="section-12-11">
Also, as indicated by
<span><a href="https://www.rfc-editor.org/rfc/rfc6554#section-2" class="relref">Section 2</a> of [<a href="#RFC6554" class="xref">RFC6554</a>]</span>, RPL Border Routers
"do not allow datagrams
carrying an SRH header to enter or exit a RPL routing domain."
This
sentence must be understood as concerning non-fully-consumed packets.
A consumed (inert)
RH3 header could be present in a packet that flows from one LLN,
crosses the Internet, and enters another LLN. Per the
discussion in this document, such headers do not need to be
removed. However, there is no case described in this document
where an RH3 is inserted in a Non-Storing network on traffic that
is leaving the LLN, but this document should not preclude such a
future innovation.<a href="#section-12-11" class="pilcrow">¶</a></p>
<p id="section-12-12">
In short, a packet that crosses the border of the RPL domain <span class="bcp14">MAY</span>
carry an RH3, and if so, that RH3 <span class="bcp14">MUST</span> be fully consumed.<a href="#section-12-12" class="pilcrow">¶</a></p>
<p id="section-12-13">
The RPI, if permitted to enter the LLN, could be used by
an attacker to change the priority of a packet by selecting a
different RPLInstanceID, perhaps one with a higher energy cost,
for instance. It could also be that not all nodes are reachable
in an LLN using the default RPLInstanceID, but a change of
RPLInstanceID would permit an attacker to bypass such filtering.
Like the RH3, an RPI is to be inserted by the RPL root on
traffic entering the LLN by first inserting an IPv6-in-IPv6 header. The
attacker's RPI therefore will not be seen by the network.
Upon reaching the destination node, the RPI has no further
meaning and is just skipped; the presence of a second RPI
will have no meaning to the end node as the packet has already
been identified as being at its final destination.<a href="#section-12-13" class="pilcrow">¶</a></p>
<p id="section-12-14">
For traffic leaving a RUL, if the RUL adds an uninitialized RPI (e.g., with a value of zero), then the 6LR as a RPL Border
Router <span class="bcp14">SHOULD</span> rewrite the RPI to indicate the selected Instance and set the flags.
This is done in order to avoid the following scenarios: 1) The leaf is an external router that
passes a packet that it did not generate and that carries an unrelated RPI,
and 2) The leaf is an attacker or presents misconfiguration and
tries to inject traffic in a protected Instance.
Also, this applies to the case where the leaf is aware of the RPL Instance and passes a correct RPI;
the 6LR needs a configuration that allows that leaf to inject in that instance.<a href="#section-12-14" class="pilcrow">¶</a></p>
<p id="section-12-15">
The RH3 and RPIs could be abused by an attacker inside of
the network to route packets in nonobvious ways, perhaps eluding
observation. This usage appears consistent with a normal operation of
<span>[<a href="#RFC6997" class="xref">RFC6997</a>]</span> and cannot be restricted at all. This
is a feature, not a bug.<a href="#section-12-15" class="pilcrow">¶</a></p>
<p id="section-12-16">
<span>[<a href="#RFC7416" class="xref">RFC7416</a>]</span> deals with many other threats to LLNs
not directly related to the use of IPv6-in-IPv6 headers, and this
document does not change that analysis.<a href="#section-12-16" class="pilcrow">¶</a></p>
<p id="section-12-17">
Nodes within the LLN can use the IPv6-in-IPv6 mechanism to mount an
attack on another part of the LLN, while disguising the origin of
the attack. The mechanism can even be abused to make it appear
that the attack is coming from outside the LLN, and unless
countered, this could be used to mount a DDOS
attack upon nodes elsewhere in the Internet. See <span>[<a href="#DDOS-KREBS" class="xref">DDOS-KREBS</a>]</span> for an example of such attacks already
seen in the real world.<a href="#section-12-17" class="pilcrow">¶</a></p>
<p id="section-12-18">
If an attack comes from inside of LLN, it can be alleviated with SAVI
(Source Address Validation Improvement) using <span>[<a href="#RFC8505" class="xref">RFC8505</a>]</span> with
<span>[<a href="#RFC8928" class="xref">RFC8928</a>]</span>. The attacker will not
be able to source traffic with an address that is not registered, and the registration process
checks for topological correctness. Notice that there is Layer 2 authentication
in most of the cases. If an attack comes from outside LLN, IPv6-in-IPv6
can be used to hide inner routing headers, but by construction, the RH3 can typically only address nodes within the
LLN. That is, an RH3 with a CmprI less than 8 should be considered an attack (see <span><a href="https://www.rfc-editor.org/rfc/rfc6554#section-3" class="relref">Section 3</a> of [<a href="#RFC6554" class="xref">RFC6554</a>]</span>).<a href="#section-12-18" class="pilcrow">¶</a></p>
<p id="section-12-19">
Nodes outside of the LLN will need to pass IPv6-in-IPv6 traffic
through the RPL root to perform this attack. To counter, the RPL
root <span class="bcp14">SHOULD</span> either restrict ingress of IPv6-in-IPv6 packets (the
simpler solution), or it <span class="bcp14">SHOULD</span> walk the IP header extension chain until it can inspect the
upper-layer payload as described in <span>[<a href="#RFC7045" class="xref">RFC7045</a>]</span>.
In particular, the RPL root <span class="bcp14">SHOULD</span> do network ingress filtering <span>[<a href="#BCP38" class="xref">BCP38</a>]</span> on the source addresses of all IP
headers that it examines in both directions.<a href="#section-12-19" class="pilcrow">¶</a></p>
<p id="section-12-20">
Note: there are some situations where a prefix will spread
across multiple LLNs via mechanisms such as the one described in
<span>[<a href="#RFC8929" class="xref">RFC8929</a>]</span>.
In this case, the network ingress filtering <span>[<a href="#BCP38" class="xref">BCP38</a>]</span> needs to take this into account,
either by exchanging detailed routing information on each LLN
or by moving the network ingress filtering <span>[<a href="#BCP38" class="xref">BCP38</a>]</span> further towards the Internet,
so that the details of the multiple LLNs do not matter.<a href="#section-12-20" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-13">
<h2 id="name-references">
<a href="#section-13" class="section-number selfRef">13. </a><a href="#name-references" class="section-name selfRef">References</a>
</h2>
<section id="section-13.1">
<h3 id="name-normative-references">
<a href="#section-13.1" class="section-number selfRef">13.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h3>
<dl class="references">
<dt id="BCP38">[BCP38]</dt>
<dd>
<div class="refInstance" id="RFC2827">
<span class="refAuthor">Ferguson, P.</span> and <span class="refAuthor">D. Senie</span>, <span class="refTitle">"Network Ingress Filtering: Defeating Denial of Service Attacks which employ IP Source Address Spoofing"</span>, <span class="seriesInfo">BCP 38</span>, <span class="seriesInfo">RFC 2827</span>, <time datetime="2000-05" class="refDate">May 2000</time>. </div>
<span><<a href="https://rfc-editor.org/info/bcp38">https://rfc-editor.org/info/bcp38</a>></span>
</dd>
<dd class="break"></dd>
<dt id="RFC2119">[RFC2119]</dt>
<dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03" class="refDate">March 1997</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6040">[RFC6040]</dt>
<dd>
<span class="refAuthor">Briscoe, B.</span>, <span class="refTitle">"Tunnelling of Explicit Congestion Notification"</span>, <span class="seriesInfo">RFC 6040</span>, <span class="seriesInfo">DOI 10.17487/RFC6040</span>, <time datetime="2010-11" class="refDate">November 2010</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6040">https://www.rfc-editor.org/info/rfc6040</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6282">[RFC6282]</dt>
<dd>
<span class="refAuthor">Hui, J., Ed.</span> and <span class="refAuthor">P. Thubert</span>, <span class="refTitle">"Compression Format for IPv6 Datagrams over IEEE 802.15.4-Based Networks"</span>, <span class="seriesInfo">RFC 6282</span>, <span class="seriesInfo">DOI 10.17487/RFC6282</span>, <time datetime="2011-09" class="refDate">September 2011</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6282">https://www.rfc-editor.org/info/rfc6282</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6550">[RFC6550]</dt>
<dd>
<span class="refAuthor">Winter, T., Ed.</span>, <span class="refAuthor">Thubert, P., Ed.</span>, <span class="refAuthor">Brandt, A.</span>, <span class="refAuthor">Hui, J.</span>, <span class="refAuthor">Kelsey, R.</span>, <span class="refAuthor">Levis, P.</span>, <span class="refAuthor">Pister, K.</span>, <span class="refAuthor">Struik, R.</span>, <span class="refAuthor">Vasseur, JP.</span>, and <span class="refAuthor">R. Alexander</span>, <span class="refTitle">"RPL: IPv6 Routing Protocol for Low-Power and Lossy Networks"</span>, <span class="seriesInfo">RFC 6550</span>, <span class="seriesInfo">DOI 10.17487/RFC6550</span>, <time datetime="2012-03" class="refDate">March 2012</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6550">https://www.rfc-editor.org/info/rfc6550</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6553">[RFC6553]</dt>
<dd>
<span class="refAuthor">Hui, J.</span> and <span class="refAuthor">JP. Vasseur</span>, <span class="refTitle">"The Routing Protocol for Low-Power and Lossy Networks (RPL) Option for Carrying RPL Information in Data-Plane Datagrams"</span>, <span class="seriesInfo">RFC 6553</span>, <span class="seriesInfo">DOI 10.17487/RFC6553</span>, <time datetime="2012-03" class="refDate">March 2012</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6553">https://www.rfc-editor.org/info/rfc6553</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6554">[RFC6554]</dt>
<dd>
<span class="refAuthor">Hui, J.</span>, <span class="refAuthor">Vasseur, JP.</span>, <span class="refAuthor">Culler, D.</span>, and <span class="refAuthor">V. Manral</span>, <span class="refTitle">"An IPv6 Routing Header for Source Routes with the Routing Protocol for Low-Power and Lossy Networks (RPL)"</span>, <span class="seriesInfo">RFC 6554</span>, <span class="seriesInfo">DOI 10.17487/RFC6554</span>, <time datetime="2012-03" class="refDate">March 2012</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6554">https://www.rfc-editor.org/info/rfc6554</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7045">[RFC7045]</dt>
<dd>
<span class="refAuthor">Carpenter, B.</span> and <span class="refAuthor">S. Jiang</span>, <span class="refTitle">"Transmission and Processing of IPv6 Extension Headers"</span>, <span class="seriesInfo">RFC 7045</span>, <span class="seriesInfo">DOI 10.17487/RFC7045</span>, <time datetime="2013-12" class="refDate">December 2013</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7045">https://www.rfc-editor.org/info/rfc7045</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8025">[RFC8025]</dt>
<dd>
<span class="refAuthor">Thubert, P., Ed.</span> and <span class="refAuthor">R. Cragie</span>, <span class="refTitle">"IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Paging Dispatch"</span>, <span class="seriesInfo">RFC 8025</span>, <span class="seriesInfo">DOI 10.17487/RFC8025</span>, <time datetime="2016-11" class="refDate">November 2016</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8025">https://www.rfc-editor.org/info/rfc8025</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8138">[RFC8138]</dt>
<dd>
<span class="refAuthor">Thubert, P., Ed.</span>, <span class="refAuthor">Bormann, C.</span>, <span class="refAuthor">Toutain, L.</span>, and <span class="refAuthor">R. Cragie</span>, <span class="refTitle">"IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Routing Header"</span>, <span class="seriesInfo">RFC 8138</span>, <span class="seriesInfo">DOI 10.17487/RFC8138</span>, <time datetime="2017-04" class="refDate">April 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8138">https://www.rfc-editor.org/info/rfc8138</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8174">[RFC8174]</dt>
<dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05" class="refDate">May 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8200">[RFC8200]</dt>
<dd>
<span class="refAuthor">Deering, S.</span> and <span class="refAuthor">R. Hinden</span>, <span class="refTitle">"Internet Protocol, Version 6 (IPv6) Specification"</span>, <span class="seriesInfo">STD 86</span>, <span class="seriesInfo">RFC 8200</span>, <span class="seriesInfo">DOI 10.17487/RFC8200</span>, <time datetime="2017-07" class="refDate">July 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8200">https://www.rfc-editor.org/info/rfc8200</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-13.2">
<h3 id="name-informative-references">
<a href="#section-13.2" class="section-number selfRef">13.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
</h3>
<dl class="references">
<dt id="I-D.ietf-anima-autonomic-control-plane">[ACP]</dt>
<dd>
<span class="refAuthor">Eckert, T.</span>, <span class="refAuthor">Behringer, M. H.</span>, and <span class="refAuthor">S. Bjarnason</span>, <span class="refTitle">"An Autonomic Control Plane (ACP)"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-anima-autonomic-control-plane-30</span>, <time datetime="2020-10-30" class="refDate">30 October 2020</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-anima-autonomic-control-plane-30">https://tools.ietf.org/html/draft-ietf-anima-autonomic-control-plane-30</a>></span>. </dd>
<dd class="break"></dd>
<dt id="I-D.ietf-anima-bootstrapping-keyinfra">[BRSKI]</dt>
<dd>
<span class="refAuthor">Pritikin, M.</span>, <span class="refAuthor">Richardson, M. C.</span>, <span class="refAuthor">Eckert, T.</span>, <span class="refAuthor">Behringer, M. H.</span>, and <span class="refAuthor">K. Watsen</span>, <span class="refTitle">"Bootstrapping Remote Secure Key Infrastructures (BRSKI)"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-anima-bootstrapping-keyinfra-45</span>, <time datetime="2020-11-11" class="refDate">11 November 2020</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-anima-bootstrapping-keyinfra-45">https://tools.ietf.org/html/draft-ietf-anima-bootstrapping-keyinfra-45</a>></span>. </dd>
<dd class="break"></dd>
<dt id="DDOS-KREBS">[DDOS-KREBS]</dt>
<dd>
<span class="refAuthor">Goodin, D.</span>, <span class="refTitle">"Record-breaking DDoS reportedly delivered by >145k hacked cameras"</span>, <time datetime="2016-09" class="refDate">September 2016</time>, <span><<a href="https://arstechnica.com/information-technology/2016/09/botnet-of-145k-cameras-reportedly-deliver-internets-biggest-ddos-ever/">https://arstechnica.com/information-technology/2016/09/botnet-of-145k-cameras-reportedly-deliver-internets-biggest-ddos-ever/</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC0801">[RFC0801]</dt>
<dd>
<span class="refAuthor">Postel, J.</span>, <span class="refTitle">"NCP/TCP transition plan"</span>, <span class="seriesInfo">RFC 801</span>, <span class="seriesInfo">DOI 10.17487/RFC0801</span>, <time datetime="1981-11" class="refDate">November 1981</time>, <span><<a href="https://www.rfc-editor.org/info/rfc801">https://www.rfc-editor.org/info/rfc801</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC2460">[RFC2460]</dt>
<dd>
<span class="refAuthor">Deering, S.</span> and <span class="refAuthor">R. Hinden</span>, <span class="refTitle">"Internet Protocol, Version 6 (IPv6) Specification"</span>, <span class="seriesInfo">RFC 2460</span>, <span class="seriesInfo">DOI 10.17487/RFC2460</span>, <time datetime="1998-12" class="refDate">December 1998</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2460">https://www.rfc-editor.org/info/rfc2460</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC2473">[RFC2473]</dt>
<dd>
<span class="refAuthor">Conta, A.</span> and <span class="refAuthor">S. Deering</span>, <span class="refTitle">"Generic Packet Tunneling in IPv6 Specification"</span>, <span class="seriesInfo">RFC 2473</span>, <span class="seriesInfo">DOI 10.17487/RFC2473</span>, <time datetime="1998-12" class="refDate">December 1998</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2473">https://www.rfc-editor.org/info/rfc2473</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4443">[RFC4443]</dt>
<dd>
<span class="refAuthor">Conta, A.</span>, <span class="refAuthor">Deering, S.</span>, and <span class="refAuthor">M. Gupta, Ed.</span>, <span class="refTitle">"Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification"</span>, <span class="seriesInfo">STD 89</span>, <span class="seriesInfo">RFC 4443</span>, <span class="seriesInfo">DOI 10.17487/RFC4443</span>, <time datetime="2006-03" class="refDate">March 2006</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4443">https://www.rfc-editor.org/info/rfc4443</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5406">[RFC5406]</dt>
<dd>
<span class="refAuthor">Bellovin, S.</span>, <span class="refTitle">"Guidelines for Specifying the Use of IPsec Version 2"</span>, <span class="seriesInfo">BCP 146</span>, <span class="seriesInfo">RFC 5406</span>, <span class="seriesInfo">DOI 10.17487/RFC5406</span>, <time datetime="2009-02" class="refDate">February 2009</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5406">https://www.rfc-editor.org/info/rfc5406</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6437">[RFC6437]</dt>
<dd>
<span class="refAuthor">Amante, S.</span>, <span class="refAuthor">Carpenter, B.</span>, <span class="refAuthor">Jiang, S.</span>, and <span class="refAuthor">J. Rajahalme</span>, <span class="refTitle">"IPv6 Flow Label Specification"</span>, <span class="seriesInfo">RFC 6437</span>, <span class="seriesInfo">DOI 10.17487/RFC6437</span>, <time datetime="2011-11" class="refDate">November 2011</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6437">https://www.rfc-editor.org/info/rfc6437</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6775">[RFC6775]</dt>
<dd>
<span class="refAuthor">Shelby, Z., Ed.</span>, <span class="refAuthor">Chakrabarti, S.</span>, <span class="refAuthor">Nordmark, E.</span>, and <span class="refAuthor">C. Bormann</span>, <span class="refTitle">"Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)"</span>, <span class="seriesInfo">RFC 6775</span>, <span class="seriesInfo">DOI 10.17487/RFC6775</span>, <time datetime="2012-11" class="refDate">November 2012</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6775">https://www.rfc-editor.org/info/rfc6775</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6997">[RFC6997]</dt>
<dd>
<span class="refAuthor">Goyal, M., Ed.</span>, <span class="refAuthor">Baccelli, E.</span>, <span class="refAuthor">Philipp, M.</span>, <span class="refAuthor">Brandt, A.</span>, and <span class="refAuthor">J. Martocci</span>, <span class="refTitle">"Reactive Discovery of Point-to-Point Routes in Low-Power and Lossy Networks"</span>, <span class="seriesInfo">RFC 6997</span>, <span class="seriesInfo">DOI 10.17487/RFC6997</span>, <time datetime="2013-08" class="refDate">August 2013</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6997">https://www.rfc-editor.org/info/rfc6997</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7102">[RFC7102]</dt>
<dd>
<span class="refAuthor">Vasseur, JP.</span>, <span class="refTitle">"Terms Used in Routing for Low-Power and Lossy Networks"</span>, <span class="seriesInfo">RFC 7102</span>, <span class="seriesInfo">DOI 10.17487/RFC7102</span>, <time datetime="2014-01" class="refDate">January 2014</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7102">https://www.rfc-editor.org/info/rfc7102</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7416">[RFC7416]</dt>
<dd>
<span class="refAuthor">Tsao, T.</span>, <span class="refAuthor">Alexander, R.</span>, <span class="refAuthor">Dohler, M.</span>, <span class="refAuthor">Daza, V.</span>, <span class="refAuthor">Lozano, A.</span>, and <span class="refAuthor">M. Richardson, Ed.</span>, <span class="refTitle">"A Security Threat Analysis for the Routing Protocol for Low-Power and Lossy Networks (RPLs)"</span>, <span class="seriesInfo">RFC 7416</span>, <span class="seriesInfo">DOI 10.17487/RFC7416</span>, <time datetime="2015-01" class="refDate">January 2015</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7416">https://www.rfc-editor.org/info/rfc7416</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8180">[RFC8180]</dt>
<dd>
<span class="refAuthor">Vilajosana, X., Ed.</span>, <span class="refAuthor">Pister, K.</span>, and <span class="refAuthor">T. Watteyne</span>, <span class="refTitle">"Minimal IPv6 over the TSCH Mode of IEEE 802.15.4e (6TiSCH) Configuration"</span>, <span class="seriesInfo">BCP 210</span>, <span class="seriesInfo">RFC 8180</span>, <span class="seriesInfo">DOI 10.17487/RFC8180</span>, <time datetime="2017-05" class="refDate">May 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8180">https://www.rfc-editor.org/info/rfc8180</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8504">[RFC8504]</dt>
<dd>
<span class="refAuthor">Chown, T.</span>, <span class="refAuthor">Loughney, J.</span>, and <span class="refAuthor">T. Winters</span>, <span class="refTitle">"IPv6 Node Requirements"</span>, <span class="seriesInfo">BCP 220</span>, <span class="seriesInfo">RFC 8504</span>, <span class="seriesInfo">DOI 10.17487/RFC8504</span>, <time datetime="2019-01" class="refDate">January 2019</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8504">https://www.rfc-editor.org/info/rfc8504</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8505">[RFC8505]</dt>
<dd>
<span class="refAuthor">Thubert, P., Ed.</span>, <span class="refAuthor">Nordmark, E.</span>, <span class="refAuthor">Chakrabarti, S.</span>, and <span class="refAuthor">C. Perkins</span>, <span class="refTitle">"Registration Extensions for IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Neighbor Discovery"</span>, <span class="seriesInfo">RFC 8505</span>, <span class="seriesInfo">DOI 10.17487/RFC8505</span>, <time datetime="2018-11" class="refDate">November 2018</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8505">https://www.rfc-editor.org/info/rfc8505</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8928">[RFC8928]</dt>
<dd>
<span class="refAuthor">Thubert, P., Ed.</span>, <span class="refAuthor">Sarikaya, B.</span>, <span class="refAuthor">Sethi, M.</span>, and <span class="refAuthor">R. Struik</span>, <span class="refTitle">"Address-Protected Neighbor Discovery for Low-Power and Lossy Networks"</span>, <span class="seriesInfo">RFC 8928</span>, <span class="seriesInfo">DOI 10.17487/RFC8928</span>, <time datetime="2020-11" class="refDate">November 2020</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8928">https://www.rfc-editor.org/info/rfc8928</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8929">[RFC8929]</dt>
<dd>
<span class="refAuthor">Thubert, P., Ed.</span>, <span class="refAuthor">Perkins, C.E.</span>, and <span class="refAuthor">E. Levy-Abegnoli</span>, <span class="refTitle">"IPv6 Backbone Router"</span>, <span class="seriesInfo">RFC 8929</span>, <span class="seriesInfo">DOI 10.17487/RFC8929</span>, <time datetime="2020-11" class="refDate">November 2020</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8929">https://www.rfc-editor.org/info/rfc8929</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC9010">[RFC9010]</dt>
<dd>
<span class="refAuthor">Thubert, P., Ed.</span> and <span class="refAuthor">M. Richardson</span>, <span class="refTitle">"Routing for RPL (Routing Protocol for Low-Power and Lossy Networks) Leaves"</span>, <span class="seriesInfo">RFC 9010</span>, <span class="seriesInfo">DOI 10.17487/RFC9010</span>, <time datetime="2021-04" class="refDate">April 2021</time>, <span><<a href="https://www.rfc-editor.org/rfc/rfc9010">https://www.rfc-editor.org/rfc/rfc9010</a>></span>. </dd>
<dd class="break"></dd>
<dt id="I-D.ietf-intarea-tunnels">[TUNNELS]</dt>
<dd>
<span class="refAuthor">Touch, J.</span> and <span class="refAuthor">M. Townsley</span>, <span class="refTitle">"IP Tunnels in the Internet Architecture"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-intarea-tunnels-10</span>, <time datetime="2019-09-12" class="refDate">12 September 2019</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-intarea-tunnels-10">https://tools.ietf.org/html/draft-ietf-intarea-tunnels-10</a>></span>. </dd>
<dd class="break"></dd>
<dt id="I-D.ietf-6tisch-dtsecurity-zerotouch-join">[ZEROTOUCH-JOIN]</dt>
<dd>
<span class="refAuthor">Richardson, M.</span>, <span class="refTitle">"6tisch Zero-Touch Secure Join protocol"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-6tisch-dtsecurity-zerotouch-join-04</span>, <time datetime="2019-07-08" class="refDate">8 July 2019</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-6tisch-dtsecurity-zerotouch-join-04">https://tools.ietf.org/html/draft-ietf-6tisch-dtsecurity-zerotouch-join-04</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</section>
<div id="Acknowledgments">
<section id="section-appendix.a">
<h2 id="name-acknowledgments">
<a href="#name-acknowledgments" class="section-name selfRef">Acknowledgments</a>
</h2>
<p id="section-appendix.a-1">
This work is done thanks to the grant given by the StandICT.eu project.<a href="#section-appendix.a-1" class="pilcrow">¶</a></p>
<p id="section-appendix.a-2">
A special BIG thanks to <span class="contact-name">C. M. Heard</span> for the help with <a href="#updateRFCs_section" class="xref">Section 4</a>.
Much of the editing in that section is based on his comments.<a href="#section-appendix.a-2" class="pilcrow">¶</a></p>
<p id="section-appendix.a-3">
Additionally, the authors would like to acknowledge the review, feedback, and
comments of the following (in alphabetical order): <span class="contact-name">Dominique Barthel</span>, <span class="contact-name">Robert Cragie</span>, <span class="contact-name">Ralph Droms</span>, <span class="contact-name">Simon Duquennoy</span>,
<span class="contact-name">Cenk Guendogan</span>, <span class="contact-name">Rahul Jadhav</span>, <span class="contact-name">Benjamin Kaduk</span>, <span class="contact-name">Matthias Kovatsch</span>, <span class="contact-name">Gustavo Mercado</span>, <span class="contact-name">Subramanian Moonesamy</span>,
<span class="contact-name">Marcela Orbiscay</span>, <span class="contact-name">Cristian Perez</span>, <span class="contact-name">Charlie Perkins</span>, <span class="contact-name">Alvaro Retana</span>, <span class="contact-name">Peter van der Stok</span>,
<span class="contact-name">Xavier Vilajosana</span>, <span class="contact-name">Éric Vyncke</span>, and <span class="contact-name">Thomas Watteyne</span>.<a href="#section-appendix.a-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="authors-addresses">
<section id="section-appendix.b">
<h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
</h2>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Maria Ines Robles</span></div>
<div dir="auto" class="left"><span class="org">Universidad Tecno. Nac.(UTN)-FRM, Argentina /Aalto University Finland</span></div>
<div dir="auto" class="left"><span class="street-address">Coronel Rodríguez 273</span></div>
<div dir="auto" class="left">
<span class="postal-code">M5500</span> <span class="locality">Mendoza</span>
</div>
<div dir="auto" class="left"><span class="region">Provincia de Mendoza</span></div>
<div dir="auto" class="left"><span class="country-name">Argentina</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:mariainesrobles@gmail.com" class="email">mariainesrobles@gmail.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Michael C. Richardson</span></div>
<div dir="auto" class="left"><span class="org">Sandelman Software Works</span></div>
<div dir="auto" class="left"><span class="street-address">470 Dawson Avenue</span></div>
<div dir="auto" class="left">
<span class="locality">Ottawa</span> <span class="region">ON</span> <span class="postal-code">K1Z 5V7</span>
</div>
<div dir="auto" class="left"><span class="country-name">Canada</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:mcr+ietf@sandelman.ca" class="email">mcr+ietf@sandelman.ca</a>
</div>
<div class="url">
<span>URI:</span>
<a href="http://www.sandelman.ca/mcr/" class="url">http://www.sandelman.ca/mcr/</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Pascal Thubert</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems, Inc</span></div>
<div dir="auto" class="left"><span class="extended-address">Building D</span></div>
<div dir="auto" class="left"><span class="street-address">45 Allee des Ormes - BP1200</span></div>
<div dir="auto" class="left">
<span class="postal-code">06254</span> <span class="locality">MOUGINS - Sophia Antipolis</span>
</div>
<div dir="auto" class="left"><span class="country-name">France</span></div>
<div class="tel">
<span>Phone:</span>
<a href="tel:+33%20497%2023%2026%2034" class="tel">+33 497 23 26 34</a>
</div>
<div class="email">
<span>Email:</span>
<a href="mailto:pthubert@cisco.com" class="email">pthubert@cisco.com</a>
</div>
</address>
</section>
</div>
<script>const toc = document.getElementById("toc");
toc.querySelector("h2").addEventListener("click", e => {
toc.classList.toggle("active");
});
toc.querySelector("nav").addEventListener("click", e => {
toc.classList.remove("active");
});
</script>
</body>
</html>
|