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
|
<pre>Internet Engineering Task Force (IETF) R. Despres
Request for Comments: 7600 RD-IPtech
Category: Experimental S. Jiang, Ed.
ISSN: 2070-1721 Huawei Technologies Co., Ltd
R. Penno
Cisco Systems, Inc.
Y. Lee
Comcast
G. Chen
China Mobile
M. Chen
BBIX, Inc.
July 2015
<span class="h1">IPv4 Residual Deployment via IPv6 - A Stateless Solution (4rd)</span>
Abstract
This document specifies a stateless solution for service providers to
progressively deploy IPv6-only network domains while still offering
IPv4 service to customers. The solution's distinctive properties are
that TCP/UDP IPv4 packets are valid TCP/UDP IPv6 packets during
domain traversal and that IPv4 fragmentation rules are fully
preserved end to end. Each customer can be assigned one public IPv4
address, several public IPv4 addresses, or a shared address with a
restricted port set.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for examination, experimental implementation, and
evaluation.
This document defines an Experimental Protocol for the Internet
community. This document is a product of the Internet Engineering
Task Force (IETF). It represents the consensus of the IETF
community. It has received public review and has been approved for
publication by the Internet Engineering Steering Group (IESG). Not
all documents approved by the IESG are a candidate for any level of
Internet Standard; see <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7600">http://www.rfc-editor.org/info/rfc7600</a>.
<span class="grey">Despres, et al. Experimental [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Despres, et al. Experimental [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-2">2</a>. Terminology .....................................................<a href="#page-5">5</a>
<a href="#section-3">3</a>. The 4rd Model ...................................................<a href="#page-7">7</a>
<a href="#section-4">4</a>. Protocol Specifications .........................................<a href="#page-9">9</a>
<a href="#section-4.1">4.1</a>. NAT44 on CE ................................................<a href="#page-9">9</a>
<a href="#section-4.2">4.2</a>. Mapping Rules and Other Domain Parameters .................<a href="#page-10">10</a>
4.3. Reversible Packet Translations at Domain Entries
and Exits .................................................<a href="#page-11">11</a>
4.4. Address Mapping from CE IPv6 Prefixes to 4rd IPv4
Prefixes ..................................................<a href="#page-17">17</a>
4.5. Address Mapping from 4rd IPv4 Addresses to 4rd
IPv6 Addresses ............................................<a href="#page-19">19</a>
<a href="#section-4.6">4.6</a>. Fragmentation Processing ..................................<a href="#page-23">23</a>
<a href="#section-4.6.1">4.6.1</a>. Fragmentation at Domain Entry ......................<a href="#page-23">23</a>
4.6.2. Ports of Fragments Addressed to
Shared-Address CEs .................................<a href="#page-24">24</a>
<a href="#section-4.6.3">4.6.3</a>. Packet Identifications from Shared-Address CEs .....<a href="#page-26">26</a>
<a href="#section-4.7">4.7</a>. TOS and Traffic Class Processing ..........................<a href="#page-26">26</a>
<a href="#section-4.8">4.8</a>. Tunnel-Generated ICMPv6 Error Messages ....................<a href="#page-27">27</a>
<a href="#section-4.9">4.9</a>. Provisioning 4rd Parameters to CEs ........................<a href="#page-27">27</a>
<a href="#section-5">5</a>. Security Considerations ........................................<a href="#page-30">30</a>
<a href="#section-6">6</a>. IANA Considerations ............................................<a href="#page-31">31</a>
<a href="#section-7">7</a>. Relationship with Previous Works ...............................<a href="#page-31">31</a>
<a href="#section-8">8</a>. References .....................................................<a href="#page-33">33</a>
<a href="#section-8.1">8.1</a>. Normative References ......................................<a href="#page-33">33</a>
<a href="#section-8.2">8.2</a>. Informative References ....................................<a href="#page-34">34</a>
<a href="#appendix-A">Appendix A</a>. Textual Representation of Mapping Rules ...............<a href="#page-37">37</a>
<a href="#appendix-B">Appendix B</a>. Configuring Multiple Mapping Rules ....................<a href="#page-37">37</a>
<a href="#appendix-C">Appendix C</a>. Adding Shared IPv4 Addresses to an IPv6 Network .......<a href="#page-39">39</a>
<a href="#appendix-C.1">C.1</a>. With CEs within CPEs .......................................<a href="#page-39">39</a>
<a href="#appendix-C.2">C.2</a>. With Some CEs behind Third-Party Router CPEs ..............<a href="#page-41">41</a>
<a href="#appendix-D">Appendix D</a>. Replacing Dual-Stack Routing with IPv6-Only Routing ...<a href="#page-42">42</a>
<a href="#appendix-E">Appendix E</a>. Adding IPv6 and 4rd Service to a Net-10 Network .......<a href="#page-43">43</a>
Acknowledgements ..................................................<a href="#page-44">44</a>
Authors' Addresses ................................................<a href="#page-44">44</a>
<span class="grey">Despres, et al. Experimental [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
For service providers to progressively deploy IPv6-only network
domains while still offering IPv4 service to customers, the need for
a stateless solution, i.e., one where no per-customer state is needed
in IPv4-IPv6 gateway nodes of the provider, has been discussed in
[<a href="#ref-Solutions-4v6">Solutions-4v6</a>]. This document specifies one such solution, named
"4rd" for IPv4 Residual Deployment. Its distinctive properties are
that TCP/UDP IPv4 packets are valid TCP/UDP IPv6 packets during
domain traversal and that IPv4 fragmentation rules are fully
preserved end to end.
Using this solution, IPv4 packets are transparently tunneled across
IPv6 networks (the reverse of IPv6 Rapid Deployment on IPv4
Infrastructures (6rd) [<a href="./rfc5969" title=""IPv6 Rapid Deployment on IPv4 Infrastructures (6rd) -- Protocol Specification"">RFC5969</a>], in which IPv6 packets are
statelessly tunneled across IPv4 networks).
While IPv6 headers are too long to be mapped into IPv4 headers (which
is why 6rd requires encapsulation of full IPv6 packets in IPv4
packets), IPv4 headers can be reversibly translated into IPv6 headers
in such a way that, during IPv6 domain traversal, UDP packets having
checksums and TCP packets are valid IPv6 packets. IPv6-only
middleboxes that perform deep packet inspection can operate on them,
in particular for port inspection and web caches.
In order to deal with the IPv4 address shortage, customers can be
assigned shared public IPv4 addresses with statically assigned
restricted port sets. As such, it is a particular application of the
Address plus Port (A+P) approach [<a href="./rfc6346" title=""The Address plus Port (A+P) Approach to the IPv4 Address Shortage"">RFC6346</a>].
Deploying 4rd in networks that have enough public IPv4 addresses,
customer sites can also be assigned full public IPv4 addresses. 4rd
also supports scenarios where a set of public IPv4 addresses are
assigned to customer sites.
The design of 4rd builds on a number of previous proposals made for
IPv4-via-IPv6 transition technologies (<a href="#section-7">Section 7</a>).
In some use cases, IPv4-only applications of 4rd-capable customer
nodes can also work with stateful NAT64s [<a href="./rfc6146" title=""Stateful NAT64: Network Address and Protocol Translation from IPv6 Clients to IPv4 Servers"">RFC6146</a>], provided these
are upgraded to support 4rd tunnels in addition to their IP/ICMP
translation [<a href="./rfc6145" title=""IP/ICMP Translation Algorithm"">RFC6145</a>]. The advantage is then a more complete IPv4
transparency than with double translation.
How the 4rd model fits in the Internet architecture is summarized in
<a href="#section-3">Section 3</a>. The protocol specifications are detailed in <a href="#section-4">Section 4</a>.
Sections <a href="#section-5">5</a> and <a href="#section-6">6</a> deal with security considerations and IANA
considerations, respectively. Previous proposals that influenced
<span class="grey">Despres, et al. Experimental [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
this specification are listed in <a href="#section-7">Section 7</a>. A few typical 4rd use
cases are presented in Appendices A, B, C, D, and E.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
ISP: Internet Service Provider. In this document, the service it
offers can be DSL, fiber-optics, cable, or mobile. The ISP can
also be a private-network operator.
4rd (IPv4 Residual Deployment): An extension of the IPv4 service
where public IPv4 addresses can be statically shared among
several customer sites, each one being assigned an exclusive
port set. This service is supported across IPv6-routing
domains.
4rd domain (or Domain): An ISP-operated IPv6 network across which
4rd is supported according to the present specification.
Tunnel packet: An IPv6 packet that transparently conveys an IPv4
packet across a 4rd domain. Its header has enough information
to reconstitute the IPv4 header at Domain exit. Its payload is
the original IPv4 payload.
CE (Customer Edge): A customer-side tunnel endpoint. It can be in a
node that is a host, a router, or both.
BR (Border Relay): An ISP-side tunnel endpoint. Because its
operation is stateless (neither per CE nor per session state),
it can be replicated in as many nodes as needed for scalability.
4rd IPv6 address: IPv6 address used as the destination of a Tunnel
packet sent to a CE or a BR.
NAT64+: An ISP NAT64 [<a href="./rfc6146" title=""Stateful NAT64: Network Address and Protocol Translation from IPv6 Clients to IPv4 Servers"">RFC6146</a>] that is upgraded to support 4rd
tunneling when IPv6 addresses it deals with are 4rd IPv6
addresses.
4rd IPv4 address: A public IPv4 address or, in the case of a shared
public IPv4 address, a public transport address (public IPv4
address plus port number).
PSID (Port-Set Identifier): A flexible-length field that
algorithmically identifies a port set.
<span class="grey">Despres, et al. Experimental [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
4rd IPv4 prefix: A flexible-length prefix that may be a public IPv4
prefix, a public IPv4 address, or a public IPv4 address followed
by a PSID.
Mapping rule: A set of parameters that are used by BRs and CEs to
derive 4rd IPv6 addresses from 4rd IPv4 addresses. Mapping
rules are also used by each CE to derive a 4rd IPv4 prefix from
an IPv6 prefix that has been delegated to it.
EA bits (Embedded Address bits): Bits that are the same in a 4rd
IPv4 address and in the 4rd IPv6 address derived from it.
BR Mapping rule: The Mapping rule that is applicable to off-domain
IPv4 addresses (addresses reachable via BRs). It can also apply
to some or all CE-assigned IPv4 addresses.
CE Mapping rule: A Mapping rule that is applicable only to
CE-assigned IPv4 addresses (shared or not).
NAT64+ Mapping rule: The Mapping rule that is applicable to IPv4
addresses reachable via a NAT64+.
CNP (Checksum Neutrality Preserver): A field of 4rd IPv6 addresses
that ensures that TCP-like checksums do not change when IPv4
addresses are replaced with 4rd IPv6 addresses.
4rd Tag: A 16-bit tag whose value allows 4rd CEs, BRs, and NAT64+s
to distinguish 4rd IPv6 addresses from other IPv6 addresses.
<span class="grey">Despres, et al. Experimental [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. The 4rd Model</span>
4rd Domain
+-----------------------------+
| IPv6 routing |
| Enforced ingress filtering | +----------
... | | |
| +------+
Customer site | |BR(s) | IPv4
+------------+ | BR IPv6 prefix --> |and/or| Internet
| dual-stack | | |N4T64+|
| +--+ | +------+
| |CE+-+ <-- a CE IPv6 prefix | |
| +--+ | | +----------
| | | |
+------------+ | <--IPv4 tunnels--> +------------
=> Derived | (Mesh or hub-and-spoke |
4rd IPv4 prefix| topologies) | IPv6
| | Internet
... | |
| +------------
+-----------------------------+
<== one or several Mapping rules
(e.g., announced to CEs in stateless DHCPv6)
Figure 1: The 4rd Model in the Internet Architecture
How the 4rd model fits in the Internet architecture is represented in
Figure 1.
A 4rd domain is an IPv6 network that includes one or several 4rd BRs
or NAT64+s at its border with the public IPv4 Internet and that can
advertise its IPv4-IPv6 Mapping rule(s) to CEs according to
<a href="#section-4.9">Section 4.9</a>.
BRs of a 4rd Domain are all identical as far as 4rd is concerned. In
a 4rd CE, the IPv4 packets that need to reach a BR will be
transformed (as detailed in <a href="#section-4.3">Section 4.3</a>) into IPv6 packets that have
the same anycast IPv6 prefix, which is the 80-bit BR prefix, in their
destination addresses. They are then routed to any of the BRs. The
80-bit BR IPv6 prefix is an arbitrarily chosen /64 prefix from the
IPv6 address space of the network operator and appended with 0x0300
(16-bit 4rd Tag; see R-9 in <a href="#section-4.5">Section 4.5</a>).
<span class="grey">Despres, et al. Experimental [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
Using the Mapping rule that applies, each CE derives its 4rd IPv4
prefix from its delegated IPv6 prefix, or one of them if it has
several; see <a href="#section-4.4">Section 4.4</a> for details. If the obtained IPv4 prefix
has more than 32 bits, the assigned IPv4 address is shared among
several CEs. Bits beyond the first 32 specify a set of ports whose
use is reserved for the CE.
IPv4 traffic is automatically tunneled across the Domain, in either
mesh topology or hub-and-spoke topology [<a href="./rfc4925" title=""Softwire Problem Statement"">RFC4925</a>]. By default, IPv4
traffic between two CEs follows a direct IPv6 route between them
(mesh topology). If the ISP configures the hub-and-spoke option,
each IPv4 packet from one CE to another is routed via a BR.
During Domain traversal, each tunneled TCP/UDP IPv4 packet looks like
a valid TCP/UDP IPv6 packet. Thus, TCP/UDP access control lists that
apply to IPv6, and possibly some other functions using deep packet
inspection, also apply to IPv4.
In order for IPv4 anti-spoofing protection in CEs and BRs to remain
effective when combined with 4rd tunneling, ingress filtering
[<a href="./rfc3704" title=""Ingress Filtering for Multihomed Networks"">RFC3704</a>] has to be in effect in IPv6 (see R-12 and <a href="#section-5">Section 5</a>).
If an ISP wishes to support dynamic IPv4 address sharing in addition
to or in place of 4rd stateless address sharing, it can do so by
means of a stateful NAT64. By upgrading this NAT to add support for
4rd tunnels, which makes it a NAT64+, CEs that are assigned no static
IPv4 space can benefit from complete IPv4 transparency between the CE
and the NAT64. (Without this NAT64 upgrade, IPv4 traffic is
translated to IPv6 and back to IPv4, during which time the DF =
MF = 1 combination for IPv4, as recommended for host fragmentation in
<a href="./rfc4821#section-8">Section 8 of [RFC4821]</a>, is lost.)
IPv4 packets are kept unchanged by Domain traversal, except that:
o The IPv4 Time To Live (TTL), unless it is 1 or 255 at Domain
entry, decreases during Domain traversal by the number of
traversed routers. This is acceptable because it is undetectable
end to end and also because TTL values that can be used with some
protocols to test the adjacency of communicating routers are
preserved [<a href="./rfc4271" title=""A Border Gateway Protocol 4 (BGP-4)"">RFC4271</a>] [<a href="./rfc5082" title=""The Generalized TTL Security Mechanism (GTSM)"">RFC5082</a>]. The effect on the traceroute
utility, which uses TTL expiry to discover routers of end-to-end
paths, is noted in <a href="#section-4.3">Section 4.3</a>.
<span class="grey">Despres, et al. Experimental [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
o IPv4 packets whose lengths are <= 68 octets always have their
"Don't Fragment" (DF) flags set to 1 at Domain exit even if they
had DF = 0 at Domain entry. This is acceptable because these
packets are too short to be fragmented [<a href="./rfc791" title=""Internet Protocol"">RFC791</a>] and so their DF
bits have no meaning. Besides, both [<a href="./rfc1191" title=""Path MTU discovery"">RFC1191</a>] and [<a href="./rfc4821" title=""Packetization Layer Path MTU Discovery"">RFC4821</a>]
recommend that sources always set DF to 1.
o Unless the Tunnel Traffic Class option applies to a Domain
(<a href="#section-4.2">Section 4.2</a>), IPv4 packets may have their Type of Service (TOS)
fields modified after Domain traversal (<a href="#section-4.7">Section 4.7</a>).
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Protocol Specifications</span>
This section describes detailed 4rd protocol specifications. They
are mainly organized by functions. As a brief summary:
o A 4rd CE MUST follow R-1, R-2, R-3, R-4, R-6, R-7, R-8, R-9, R-10,
R-11, R-12, R-13, R-14, R-16, R-17, R-18, R-19, R-20, R-21, R-22,
R-23, R-24, R-25, R-26, and R-27.
o A 4rd BR MUST follow R-2, R-3, R-4, R-5, R-6, R-9, R-12, R-13,
R-14, R-15, R-19, R-20, R-21, R-22, and R-24.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. NAT44 on CE</span>
R-1: A CE node that is assigned a shared public IPv4 address MUST
include a NAT44 [<a href="./rfc3022" title=""Traditional IP Network Address Translator (Traditional NAT)"">RFC3022</a>]. This NAT44 MUST only use external
ports that are in the CE-assigned port set.
NOTE: This specification only concerns IPv4 communication between
IPv4-capable endpoints. For communication between IPv4-only
endpoints and IPv6-only remote endpoints, the "Bump-in-the-Host"
(BIH) specification [<a href="./rfc6535" title=""Dual-Stack Hosts Using "">RFC6535</a>] can be used. It can coexist in a node
with the CE function, including scenarios where the IPv4-only
function is a NAT44 [<a href="./rfc3022" title=""Traditional IP Network Address Translator (Traditional NAT)"">RFC3022</a>].
<span class="grey">Despres, et al. Experimental [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Mapping Rules and Other Domain Parameters</span>
R-2: CEs and BRs MUST be configured with the following Domain
parameters:
A. One or several Mapping rules, each one comprising the
following:
1. Rule IPv4 prefix
2. EA-bits length
3. Rule IPv6 prefix
4. Well-Known Ports (WKPs) authorized (OPTIONAL)
B. Domain Path MTU (PMTU)
C. Hub-and-spoke topology (Yes or No)
D. Tunnel Traffic Class (OPTIONAL)
"Rule IPv4 prefix" is used to find, by a longest match, which Mapping
rule applies to a 4rd IPv4 address (<a href="#section-4.5">Section 4.5</a>). A Mapping rule
whose Rule IPv4 prefix is longer than /0 is a CE Mapping rule. BR
and NAT64+ Mapping rules, which must apply to all off-domain IPv4
addresses, have /0 as their Rule IPv4 prefixes.
"EA-bits length" is the number of bits that are common to 4rd IPv4
addresses and 4rd IPv6 addresses derived from them. In a CE Mapping
rule, it is also the number of bits that are common to a CE-delegated
IPv6 prefix and the 4rd IPv4 prefix derived from it. BR and NAT64+
Mapping rules have EA-bits lengths equal to 32.
"Rule IPv6 prefix" is the prefix that is used as a substitute for the
Rule IPv4 prefix when a 4rd IPv6 address is derived from a 4rd IPv4
address (<a href="#section-4.5">Section 4.5</a>). In a BR Mapping rule or a NAT64+ Mapping
rule, it MUST be a /80 prefix whose bits 64-79 are the 4rd Tag.
"WKPs authorized" may be set for Mapping rules that assign shared
IPv4 addresses to CEs. (These rules are those whose length of the
Rule IPv4 prefix plus the EA-bits length exceeds 32.) If set,
well-known ports may be assigned to some CEs having particular IPv6
prefixes. If not set, fairness is privileged: all IPv6 prefixes
concerned with the Mapping rule have port sets having identical
values (no port set includes any of the well-known ports).
<span class="grey">Despres, et al. Experimental [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
"Domain PMTU" is the IPv6 Path MTU that the ISP can guarantee for all
of its IPv6 paths between CEs and between BRs and CEs. It MUST be at
least 1280 octets [<a href="./rfc2460" title=""Internet Protocol, Version 6 (IPv6) Specification"">RFC2460</a>].
"Hub-and-spoke topology", if set to Yes, requires CEs to tunnel all
IPv4 packets via BRs. If set to No, CE-to-CE packets take the same
routes as native IPv6 packets between the same CEs (mesh topology).
"Tunnel Traffic Class", if provided, is the IPv6 traffic class that
BRs and CEs MUST set in Tunnel packets. In this case, evolutions of
the IPv6 traffic class that may occur during Domain traversal are not
reflected in TOS fields of IPv4 packets at Domain exit (<a href="#section-4.7">Section 4.7</a>).
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Reversible Packet Translations at Domain Entries and Exits</span>
R-3: Domain-entry nodes that receive IPv4 packets with IPv4 options
MUST discard these packets and return ICMPv4 error messages to
signal IPv4-option incompatibility (Type = 12, Code = 0,
Pointer = 20) [<a href="./rfc792" title=""Internet Control Message Protocol"">RFC792</a>]. This limitation is acceptable because
there are a lot of firewalls in the current IPv4 Internet that
also filter IPv4 packets with IPv4 options.
R-4: Domain-entry nodes that receive IPv4 packets without IPv4
options MUST convert them to Tunnel packets, with or without
IPv6 fragment headers, depending on what is needed to ensure
IPv4 transparency (Figure 2). Domain-exit nodes MUST convert
them back to IPv4 packets.
An IPv6 fragmentation header MUST be included at tunnel entry
(Figure 2) if and only if one or several of the following
conditions hold:
* The Tunnel Traffic Class option applies to the Domain.
* TTL = 1 OR TTL = 255.
* The IPv4 packet is already fragmented, or may be fragmented
later on, i.e., if MF = 1 OR offset > 0 OR (total length >
68 AND DF = 0).
In order to optimize cases where fragmentation headers are
unnecessary, the NAT44 of a CE that has one SHOULD send packets
with TTL = 254.
<span class="grey">Despres, et al. Experimental [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
R-5: In Domains whose chosen topology is hub-and-spoke, BRs that
receive 4rd IPv6 packets whose embedded destination IPv4
addresses match a CE Mapping rule MUST do the equivalent of
reversibly translating their headers to IPv4 and then
reversibly translate them back to IPv6 as though packets would
be entering the Domain.
(A) Without IPv6 fragment header
IPv4 packet Tunnel packet
+--------------------+ : : +--------------------+
20| IPv4 Header | : <==> : | IPv6 Header | 40
+--------------------+ : : +--------------------+
| IP Payload | <==> | IP Payload |
| | Layer 4 | |
+--------------------+ unchanged +--------------------+
(B) With IPv6 fragment header
Tunnel packet
: +--------------------+
IPv4 packet : | IPv6 Header | 40
+--------------------+ : : +--------------------+
20| IPv4 Header | : <==> : |IPv6 Fragment Header| 8
+--------------------+ : : +--------------------+
| IP Payload | <==> | IP Payload |
| | Layer 4 | |
+--------------------+ unchanged +--------------------+
Figure 2: Reversible Packet Translation
<span class="grey">Despres, et al. Experimental [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
R-6: Values to be set in IPv6 header fields at Domain entry are
detailed in Table 1 (no fragment header) and Table 2 (with
fragment header). Those to be set in IPv4 header fields at
Domain exit are detailed in Table 3 (no fragment header) and
Table 4 (with fragment header).
To convey IPv4 header information that has no equivalent in
IPv6, some ad hoc fields are placed in IPv6 flow labels and in
Identification fields of IPv6 fragment headers, as detailed in
Figure 3.
|0 |4 19|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 0 | Addr_Prot_Cksm |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
IPv6 Flow Label
0 1 2 |8 |16 31|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|.|.|.| 0 | IPv4_TOS | IPv4_ID |
/-+-\-\-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/ \ TTL_255 IPv6 Identification Field
IPv4_DF TTL_1 (in fragment header if needed)
Figure 3: 4rd Identification Fields of IPv6 Fragment Headers
+---------------------+----------------------------------------+
| IPv6 Field | Value (fields from IPv4 header) |
+---------------------+----------------------------------------+
| Version | 6 |
| Traffic Class | TOS |
| Addr_Prot_Cksm | Sum of addresses and Protocol (Note 1) |
| Payload length | Total length - 20 |
| Next header | Protocol |
| Hop limit | Time to Live |
| Source address | See <a href="#section-4.5">Section 4.5</a> |
| Destination address | See <a href="#section-4.5">Section 4.5</a> |
+---------------------+----------------------------------------+
Table 1: IPv4-to-IPv6 Reversible Header Translation
(without Fragment Header)
<span class="grey">Despres, et al. Experimental [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
+-----------------+----------------------------------------------+
| IPv6 Field | Value (fields from IPv4 header) |
+-----------------+----------------------------------------------+
| Version | 6 |
| Traffic Class | TOS OR Tunnel Traffic Class (<a href="#section-4.7">Section 4.7</a>) |
| Addr_Prot_Cksm | Sum of addresses and Protocol (Note 1) |
| Payload length | Total length - 12 |
| Next header | 44 (fragment header) |
| Hop limit | IF Time to Live = 1 or 255 THEN 254 |
| | ELSE Time to Live (Note 2) |
| Source address | See <a href="#section-4.5">Section 4.5</a> |
| Dest. address | See <a href="#section-4.5">Section 4.5</a> |
| 2nd next header | Protocol |
| Fragment offset | IPv4 fragment offset |
| M | More Fragments flag (MF) |
| IPv4_DF | Don't Fragment flag (DF) |
| TTL_1 | IF Time to Live = 1 THEN 1 ELSE 0 (Note 2) |
| TTL_255 | IF Time to Live = 255 THEN 1 ELSE 0 (Note 2) |
| IPv4_TOS | Type of Service (TOS) |
| IPv4_ID | Identification |
+-----------------+----------------------------------------------+
Table 2: IPv4-to-IPv6 Reversible Header Translation
(with Fragment Header)
+-----------------+------------------------------------+
| IPv4 Field | Value (fields from IPv6 header) |
+-----------------+------------------------------------+
| Version | 4 |
| Header length | 5 |
| TOS | Traffic Class |
| Total length | Payload length + 20 |
| Identification | 0 |
| DF | 1 |
| MF | 0 |
| Fragment offset | 0 |
| Time to Live | Hop count |
| Protocol | Next header |
| Header checksum | Computed as per [<a href="./rfc791" title=""Internet Protocol"">RFC791</a>] (Note 3) |
| Source address | Bits 80-111 of source address |
| Dest. address | Bits 80-111 of destination address |
+-----------------+------------------------------------+
Table 3: IPv6-to-IPv4 Reversible Header Translation
(without Fragment Header)
<span class="grey">Despres, et al. Experimental [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
+-----------------------+-----------------------------------------+
| IPv4 Field | Value (fields from IPv6 header) |
+-----------------------+-----------------------------------------+
| Version | 4 |
| Header length | 5 |
| TOS | Traffic Class OR IPv4_TOS (<a href="#section-4.7">Section 4.7</a>) |
| Total length | Payload length + 12 |
| Identification | IPv4_ID |
| DF | IPv4_DF |
| MF | M |
| Fragment offset | Fragment offset |
| Time to Live (Note 2) | IF TTL_255 = 1 THEN 255 |
| | ELSEIF TTL_1 = 1 THEN 1 |
| | ELSE hop count |
| Protocol | 2nd next header |
| Header checksum | Computed as per [<a href="./rfc791" title=""Internet Protocol"">RFC791</a>] (Note 3) |
| Source address | Bits 80-111 of source address |
| Destination address | Bits 80-111 of destination address |
+-----------------------+-----------------------------------------+
Table 4: IPv6-to-IPv4 Reversible Header Translation
(with Fragment Header)
NOTE 1: The need to save in the IPv6 header a checksum of both IPv4
addresses and the IPv4 protocol field results from the following
facts: (1) header checksums, present in IPv4 but not in IPv6, protect
addresses or protocol integrity; (2) in IPv4, ICMP messages and
null-checksum UDP datagrams depend on this protection because, unlike
other datagrams, they have no other address-and-protocol integrity
protection. The sum MUST be performed in ordinary two's complement
arithmetic.
IP-layer Packet length is another field covered by the IPv4 header
checksum. It is not included in the saved checksum because (1) doing
so would have conflicted with [<a href="./rfc6437" title=""IPv6 Flow Label Specification"">RFC6437</a>] (flow labels must be the same
in all packets of each flow); (2) ICMPv4 messages have good enough
protection with their own checksums; (3) the UDP length field
provides to null-checksum UDP datagrams the same level of protection
after Domain traversal as without Domain traversal (consistency
between IP-layer and UDP-layer lengths can be checked).
<span class="grey">Despres, et al. Experimental [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
NOTE 2: TTL treatment has been chosen to permit adjacency tests
between two IPv4 nodes situated at both ends of a 4rd tunnel. TTL
values to be preserved for this are TTL = 255 and TTL = 1. For other
values, TTL decreases between two IPv4 nodes as though the traversed
IPv6 routers were IPv4 routers.
The effect of this TTL treatment on IPv4 traceroute is specific:
(1) the number of routers of the end-to-end path includes traversed
IPv6 routers; (2) IPv6 routers of a Domain are listed after IPv4
routers of Domain entry and exit; (3) the IPv4 address shown for an
IPv6 router is the IPv6-only dummy IPv4 address (<a href="#section-4.8">Section 4.8</a>);
(4) the response time indicated for an IPv6 router is that of the
next router.
NOTE 3: Provided the sum of obtained IPv4 addresses and protocol
matches Addr_Prot_Cksm. If not, the packet MUST be silently
discarded.
<span class="grey">Despres, et al. Experimental [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Address Mapping from CE IPv6 Prefixes to 4rd IPv4 Prefixes</span>
+--------------------------------------+
| CE IPv6 prefix |
+--------------------------+-----------+
: Longest match : :
: with a Rule IPv6 prefix : :
: || : EA-bits :
: \/ : length :
+--------------------------+ | :
| Rule IPv6 prefix |<----'---->:
+--------------------------+ :
|| : :
\/ : :
+-----------------+-----------+
|Rule IPv4 prefix | EA bits |
+-----------------+-----------+
: :
+-----------------------------+
| CE 4rd IPv4 prefix |
+-----------------------------+
________/ \_________ :
/ \ :
: ____:________________/ \__
: / : \
: <= 32 : : > 32 :
+----------------+ +-----------------+----+
|IPv4 prfx or add| OR | IPv4 address |PSID|
+----------------+ +-----------------+----+
: 32 : || :
\/
(by default) (If WKPs authorized)
: : : :
+---+----+---------+ +----+-------------+
Ports in |> 0|PSID|any value| OR |PSID| any value |
the CE port set +---+----+---------+ +----+-------------+
: 4 : 12 : : 16 :
Figure 4: From CE IPv6 Prefix to 4rd IPv4 Address and Port Set
R-7: A CE whose delegated IPv6 prefix matches the Rule IPv6 prefix
of one or several Mapping rules MUST select the CE Mapping rule
for which the match is the longest. It then derives its 4rd
IPv4 prefix as shown in Figure 4: (1) The CE replaces the Rule
IPv6 prefix with the Rule IPv4 prefix. The result is the CE
4rd IPv4 prefix. (2) If this CE 4rd IPv4 prefix has less than
32 bits, the CE takes it as its assigned IPv4 prefix. If it
has exactly 32 bits, the CE takes it as its IPv4 address. If
<span class="grey">Despres, et al. Experimental [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
it has more than 32 bits, the CE MUST take the first 32 bits as
its shared public IPv4 address and bits beyond the first 32 as
its Port-Set identifier (PSID). Ports of its restricted port
set are by default those that have any non-zero value in their
first 4 bits (the PSID offset), followed by the PSID, and
followed by any values in remaining bits. If the WKP
authorized option applies to the Mapping rule, there is no
4-bit offset before the PSID so that all ports can be assigned.
NOTE: The choice of the default PSID position in port fields
has been guided by the following objectives: (1) for fairness,
avoid having any of the well-known ports 0-1023 in the port set
specified by any PSID value; (2) for compatibility with RTP/
RTCP [<a href="./rfc4961" title=""Symmetric RTP / RTP Control Protocol (RTCP)"">RFC4961</a>], include in each port set pairs of consecutive
ports; (3) in order to facilitate operation and training, have
the PSID at a fixed position in port fields; (4) in order to
facilitate documentation in hexadecimal notation, and to
facilitate maintenance, have this position nibble-aligned.
Ports that are excluded from assignment to CEs are 0-4095,
instead of just 0-1023, in a trade-off to favor nibble
alignment of PSIDs and overall simplicity.
R-8: A CE whose delegated IPv6 prefix has its longest match with the
Rule IPv6 prefix of the BR Mapping rule MUST take as its IPv4
address the 32 bits that, in the delegated IPv6 prefix, follow
this Rule IPv6 prefix. If this is the case while the hub-and-
spoke option applies to the Domain, or if the Rule IPv6 prefix
is not a /80, there is a configuration error in the Domain. An
implementation-dependent administrative action MAY be taken.
A CE whose delegated IPv6 prefix does not match the Rule IPv6
prefix of either any CE Mapping rule or the BR Mapping rule,
and is in a Domain that has a NAT64+ Mapping rule, MUST be
noted as having the unspecified IPv4 address.
<span class="grey">Despres, et al. Experimental [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h3"><a class="selflink" id="section-4.5" href="#section-4.5">4.5</a>. Address Mapping from 4rd IPv4 Addresses to 4rd IPv6 Addresses</span>
: 32 : : 16 : \
+----------------------------+ +---------------+ |
| IPv4 address | |Port_or_ICMP_ID| | Shared-address
+----------------------------+ +---+------+----+ | case
: Longest match : : 4 : PSID : | (PSID length
: with a Rule IPv4 prefix : :length: | of the rule > 0)
: || : : : | with WKPs
: \/ : : : | not authorized
+----------------+-----------+ +------+ | (PSID offset = 4)
|Rule IPv4 prefix|IPv4 suffix| | PSID | |
+----------------+-----------+ +------+ |
: || \_______ \____ | | |
: \/ \ \| / |
+--------------------------+--------+-----+ /
| Rule IPv6 prefix | EA bits |
+--------------------------+--------------+
: :
+-----------------------------------------+
| IPv6 prefix |
+-----------------------------------------+
:\_______________________________ / \
: ___________________\______/ \_______________
: / \ \
: / (CE Mapping rule) \ (BR Mapping rule) \
: <= 64 : : 112 :
+----------+---+---+------+---+ +--------------+---+------+---+
|CE v6 prfx| 0 |tag|v4 add|CNP| |BR IPv6 prefix|tag|v4 add|CNP|
+----------+-|-+---+------+---+ +--------------+---+------+---+
: <= 64 : | :16 : 32 :16 : : 64 :16 : 32 :16 :
|
Padding to /64
Figure 5: From 4rd IPv4 Address to 4rd IPv6 Address
<span class="grey">Despres, et al. Experimental [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
R-9: BRs, and CEs that are assigned public IPv4 addresses, shared or
not, MUST derive 4rd IPv6 addresses from 4rd IPv4 addresses via
the steps below or their functional equivalent (Figure 5
details the shared public IPv4 address case):
NOTE: The rules for forming 4rd-specific Interface Identifiers
(IIDs) are to obey [<a href="./rfc7136" title=""Significance of IPv6 Interface Identifiers"">RFC7136</a>]:
"Specifications of other forms of 64-bit IIDs MUST specify how
all 64 bits are set."
and
"the whole IID value MUST be viewed as an opaque bit string by
third parties, except possibly in the local context."
(1) If hub-and-spoke topology does not apply to the Domain, or
if it applies but the IPv6 address to be derived is a
source address from a CE or a destination address from a
BR, find the CE Mapping rule whose Rule IPv4 prefix has
the longest match with the IPv4 address.
If no Mapping rule is thus obtained, take the BR Mapping
rule.
If the obtained Mapping rule assigns IPv4 prefixes to CEs,
i.e., if the length of the Rule IPv4 prefix plus EA-bits
length is 32 - k, with k >= 0, delete the last k bits of
the IPv4 address.
Otherwise, if the length of the Rule IPv4 prefix plus the
EA-bits length is 32 + k, with k > 0, take k as the PSID
length and append to the IPv4 address the PSID copied from
bits p to p+3 of the Port_or_ICMP_ID field where (1) p,
the PSID offset, is 4 by default and 0 if the WKPs
authorized option applies to the rule; (2) the
Port_or_ICMP_ID field is in bits of the IP payload that
depend on whether the address is source or destination, on
whether the packet is ICMP or not, and, if it is ICMP,
whether it is an error message or an Echo message. This
field is:
a. If the packet Protocol is not ICMP, the port field
associated with the address (bits 0-15 for a source
address and bits 16-31 for a destination address).
b. If the packet is an ICMPv4 Echo or Echo reply message,
the ICMPv4 Identification field (bits 32-47).
<span class="grey">Despres, et al. Experimental [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
c. If the packet is an ICMPv4 error message, the port
field associated with the address in the returned
packet header (bits 240-255 for a source address and
bits 224-239 for a destination address).
NOTE 1: Using Identification fields of ICMP messages as
port fields permits the exchange of Echo requests and Echo
replies between shared-address CEs and IPv4 hosts having
exclusive IPv4 addresses. Echo exchanges between two
shared-address CEs remain impossible, but this is a
limitation inherent in address sharing (one reason among
many to use IPv6).
NOTE 2: When the PSID is taken in the port fields of the
IPv4 payload, implementation is kept independent from any
particular Layer 4 protocol having such port fields by not
checking that the protocol is indeed one that has such
port fields. A packet may consequently go, in the case of
a source mistake, from a BR to a shared-address CE with a
protocol that is not supported by this CE. In this case,
the CE NAT44 returns an ICMPv4 "protocol unreachable"
error message. The IPv4 source is thus appropriately
informed of its mistake.
(2) In the result, replace the Rule IPv4 prefix with the Rule
IPv6 prefix.
(3) If the result is shorter than a /64, append to the result
a null padding up to 64 bits, followed by the 4rd Tag
(0x0300), and followed by the IPv4 address.
NOTE: The 4rd Tag is a 4rd-specific mark. Its function is
to ensure that 4rd IPv6 addresses are recognizable by CEs
without any interference with the choice of subnet
prefixes in CE sites. (These choices may have been done
before 4rd is enabled.)
For this, the 4rd Tag has its "u" and "g" bits [<a href="./rfc4291" title=""IP Version 6 Addressing Architecture"">RFC4291</a>]
both set to 1, so that they maximally differ from these
existing IPv6 address schemas. So far, u = g = 1 has not
been used in any IPv6 addressing architecture.
With the 4rd Tag, IPv6 packets can be routed to the 4rd
function within a CE node based on a /80 prefix that no
native IPv6 address can contain.
<span class="grey">Despres, et al. Experimental [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
(4) Add to the result a Checksum Neutrality Preserver (CNP).
Its value, in one's complement arithmetic, is the opposite
of the sum of 16-bit fields of the IPv6 address other than
the IPv4 address and the CNP themselves (i.e., five
consecutive fields in address bits 0-79).
NOTE: The CNP guarantees that Tunnel packets are valid
IPv6 packets for all Layer 4 protocols that use the same
checksum algorithm as TCP. This guarantee does not depend
on where the checksum fields of these protocols are placed
in IP payloads. (Today, such protocols are UDP [<a href="./rfc768" title=""User Datagram Protocol"">RFC768</a>],
TCP [<a href="./rfc793" title=""Transmission Control Protocol"">RFC793</a>], UDP-Lite [<a href="./rfc3828" title=""The Lightweight User Datagram Protocol (UDP-Lite)"">RFC3828</a>], and the Datagram
Congestion Control Protocol (DCCP) [<a href="./rfc5595" title=""The Datagram Congestion Control Protocol (DCCP) Service Codes"">RFC5595</a>]. Should new
ones be specified, BRs will support them without needing
an update.)
R-10: A 4rd-capable CE SHOULD, and a 4rd-enabled CE MUST, always
prohibit all addresses that use its advertised prefix and have
an IID starting with 0x0300 (4rd Tag), by using Duplicate
Address Detection [<a href="./rfc4862" title=""IPv6 Stateless Address Autoconfiguration"">RFC4862</a>].
R-11: A CE that is assigned the unspecified IPv4 address (see
<a href="#section-4.4">Section 4.4</a>) MUST use, for packets tunneled between itself and
the Domain NAT64+, addresses as detailed in Figure 6: part (a)
for its IPv6 source, and part (b) as IPv6 destinations that
depend on IPv4 destinations. A NAT64+, being NAT64 conforming
[<a href="./rfc6146" title=""Stateful NAT64: Network Address and Protocol Translation from IPv6 Clients to IPv4 Servers"">RFC6146</a>], MUST accept IPv6 packets whose destination conforms
to Figure 6(b) (4rd Tag instead of "u" and 0x00 octets). In
its Binding Information Base, it MUST remember whether a
mapping was created with a "u" or 4rd-tag destination. In the
IPv4-to-IPv6 direction, it MUST use 4rd tunneling, with source
address conforming to Figure 6(b), when using a mapping that
was created with a 4rd-tag destination.
+---------------------+---------+-------+-------------+------+
(a) | CE IPv6 prefix | 0 |4rd Tag| 0 | CNP |
+---------------------+---------+-------+-------------+------+
: <= 64 : >= 0 : 16 : 32 : 16 :
4rd IPv6 address of a CE having no public IPv4 address
<----------- Rule IPv6 prefix --------->:
+-------------------------------+-------+-------------+------+
(b) | NAT64+ IPv6 prefix |4rd Tag|IPv4 address | CNP |
+-------------------------------+-------+-------------+------+
: 64 : 16 : 32 : 16 :
4rd IPv6 address of a host reachable via a NAT64+
Figure 6: Rules for CE and NAT64+
<span class="grey">Despres, et al. Experimental [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
R-12: For anti-spoofing protection, CEs and BRs MUST check that the
IPv6 source address of each received Tunnel packet is that
which, according to R-9, is derived from the source 4rd IPv4
address. For this, the IPv4 address used to obtain the source
4rd IPv4 address is that embedded in the IPv6 source address
(in its bits 80-111). (This verification is needed because
IPv6 ingress filtering [<a href="./rfc3704" title=""Ingress Filtering for Multihomed Networks"">RFC3704</a>] applies only to IPv6 prefixes,
without any guarantee that Tunnel packets are built as
specified in R-9.)
R-13: For additional protection against packet corruption at a link
layer that might be undetected at this layer during Domain
traversal, CEs and BRs SHOULD verify that source and
destination IPv6 addresses have not been modified. This can be
done by checking that they remain checksum neutral (see the
Note above regarding the CNP).
<span class="h3"><a class="selflink" id="section-4.6" href="#section-4.6">4.6</a>. Fragmentation Processing</span>
<span class="h4"><a class="selflink" id="section-4.6.1" href="#section-4.6.1">4.6.1</a>. Fragmentation at Domain Entry</span>
R-14: If an IPv4 packet enters a CE or BR with a size such that the
derived Tunnel packet would be longer than the Domain PMTU, the
packet has to be either discarded or fragmented. The
Domain-entry node MUST discard it if the packet has DF = 1,
with an ICMP error message returned to the source. It MUST
fragment it otherwise, with the payload of each fragment not
exceeding PMTU - 48. The first fragment has its offset equal
to the received offset. Subsequent fragments have offsets
increased by the lengths of the payloads of previous fragments.
Functionally, fragmentation is supposed to be done in IPv4
before applying reversible header translation to each fragment;
see <a href="#section-4.3">Section 4.3</a>.
<span class="grey">Despres, et al. Experimental [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h4"><a class="selflink" id="section-4.6.2" href="#section-4.6.2">4.6.2</a>. Ports of Fragments Addressed to Shared-Address CEs</span>
Because ports are available only in the first fragments of IPv4
fragmented packets, a BR needs a mechanism to send to the right
shared-address CEs all fragments of fragmented packets.
For this, a BR MAY systematically reassemble fragmented IPv4 packets
before tunneling them. But this consumes large memory space, creates
opportunities for denial-of-service-attacks, and can significantly
increase forwarding delays. This is the reason for the following
requirement:
R-15: BRs SHOULD support an algorithm whereby received IPv4 packets
can be forwarded on the fly. The following is an example of
such an algorithm:
(1) At BR initialization, if at least one CE Mapping rule
deals with one or more shared public IPv4 addresses (i.e.,
length of Rule IPv4 prefix + EA-bits length > 32), the BR
initializes an empty "IPv4 packet table" whose entries
have the following items:
- IPv4 source
- IPv4 destination
- IPv4 identification
- Destination port
(2) When the BR receives an IPv4 packet whose matching Mapping
rule deals with one or more shared public IPv4 addresses
(i.e., length of Rule IPv4 prefix + EA-bits length > 32),
the BR searches the table for an entry whose IPv4 source,
IPv4 destination, and IPv4 identification are those of the
received packet. The BR then performs actions as detailed
in Table 5, depending on which conditions hold.
<span class="grey">Despres, et al. Experimental [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
+-----------------------------+---+---+---+---+---+---+---+---+
| - CONDITIONS - | | | | | | | | |
| First Fragment (offset = 0) | Y | Y | Y | Y | N | N | N | N |
| Last fragment (MF = 0) | Y | Y | N | N | Y | Y | N | N |
| An entry has been found | Y | N | Y | N | Y | N | Y | N |
| ------------------------- | | | | | | | | |
| - RESULTING ACTIONS - | | | | | | | | |
| Create a new entry | - | - | - | X | - | - | - | - |
| Use port of the entry | - | - | - | - | X | - | X | - |
| Update port of the entry | - | - | X | - | - | - | - | - |
| Delete the entry | X | - | - | - | X | - | - | - |
| Forward the packet | X | X | X | X | X | - | X | - |
+-----------------------------+---+---+---+---+---+---+---+---+
Table 5: BR Actions
(3) The BR performs garbage collection for table entries that
remain unchanged for longer than some limit. This limit,
which is normally longer than the maximum time normally
needed to reassemble a packet, is not critical. It should
not, however, be longer than 15 seconds [<a href="./rfc791" title=""Internet Protocol"">RFC791</a>].
R-16: For the above algorithm to be effective, CEs that are assigned
shared public IPv4 addresses MUST NOT interleave fragments of
several fragmented packets.
R-17: CEs that are assigned IPv4 prefixes and are in nodes that route
public IPv4 addresses rather than only using NAT44s MUST have
the same behavior as that described just above for BRs.
<span class="grey">Despres, et al. Experimental [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h4"><a class="selflink" id="section-4.6.3" href="#section-4.6.3">4.6.3</a>. Packet Identifications from Shared-Address CEs</span>
When packets go from CEs that share the same IPv4 address to a common
destination, a precaution is needed to guarantee that packet
identifications set by sources are different. Otherwise, packet
reassembly at the destination could be confused because it is based
only on source IPv4 address and Identification. The probability of
such confusing situations may in theory be very low, but a safe
solution is needed in order to avoid creating new attack
opportunities.
R-18: A CE that is assigned a shared public IPv4 address MUST only
use packet identifications that have the CE PSID in their
bits 0 to PSID length - 1.
R-19: A BR or a CE that receives a packet from a shared-address CE
MUST check that bits 0 to PSID length - 1 of their packet
identifications are equal to the PSID found in the source 4rd
IPv4 address.
<span class="h3"><a class="selflink" id="section-4.7" href="#section-4.7">4.7</a>. TOS and Traffic Class Processing</span>
IPv4 TOS and IPv6 traffic class have the same semantic, that of the
differentiated services field, or DS field, specified in [<a href="./rfc2474" title=""Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers"">RFC2474</a>]
and [<a href="./rfc6040" title=""Tunnelling of Explicit Congestion Notification"">RFC6040</a>]. Their first 6 bits contain a differentiated services
codepoint (DSCP), and their last 2 bits can convey explicit
congestion notifications (ECNs), which both may evolve during Domain
traversal. [<a href="./rfc2983" title=""Differentiated Services and Tunnels"">RFC2983</a>] discusses how the DSCP can be handled by tunnel
endpoints. The Tunnel Traffic Class option provides permission to
ignore DS-field evolutions occurring during Domain traversal, if the
desired behavior is that of generic tunnels conforming to [<a href="./rfc2473" title=""Generic Packet Tunneling in IPv6 Specification"">RFC2473</a>].
R-20: Unless the Tunnel Traffic Class option is configured for the
Domain, BRs and CEs MUST copy the IPv4 TOS into the IPv6
traffic class at Domain entry and copy back the IPv6 traffic
class into the IPv4 TOS at Domain exit.
R-21: If the Tunnel Traffic Class option is configured for a Domain,
BRs and CEs MUST at Domain entry take the configured Tunnel
Traffic Class as the IPv6 traffic class and copy the received
IPv4 TOS into the IPv4_TOS of the fragment header (Figure 3).
At Domain exit, they MUST copy back the IPv4_TOS of the
fragment header into the IPv4 TOS.
<span class="grey">Despres, et al. Experimental [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h3"><a class="selflink" id="section-4.8" href="#section-4.8">4.8</a>. Tunnel-Generated ICMPv6 Error Messages</span>
If a Tunnel packet is discarded on its way across a 4rd domain
because of an unreachable destination, an ICMPv6 error message is
returned to the IPv6 source. For the IPv4 source of the discarded
packet to be informed of packet loss, the ICMPv6 message has to be
converted into an ICMPv4 message.
R-22: If a CE or BR receives an ICMPv6 error message [<a href="./rfc4443" title=""Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification"">RFC4443</a>], it
MUST synthesize an ICMPv4 error packet [<a href="./rfc792" title=""Internet Control Message Protocol"">RFC792</a>]. This packet
MUST contain the first 8 octets of the discarded packet's IP
payload. The reserved IPv4 dummy address (192.0.0.8/32; see
<a href="#section-6">Section 6</a>) MUST be used as its source address.
As described in [<a href="./rfc6145" title=""IP/ICMP Translation Algorithm"">RFC6145</a>], ICMPv6 Type = 1 and Code = 0
(Destination Unreachable, No route to destination) MUST be
translated into ICMPv4 Type = 3 and Code = 0 (Destination
Unreachable, Net unreachable), and ICMPv6 Type = 3 and Code = 0
(Time Exceeded, Hop limit exceeded in transit) MUST be
translated into ICMPv4 Type = 11 and Code = 0 (Time Exceeded,
time to live exceeded in transit).
<span class="h3"><a class="selflink" id="section-4.9" href="#section-4.9">4.9</a>. Provisioning 4rd Parameters to CEs</span>
Domain parameters listed in <a href="#section-4.2">Section 4.2</a> are subject to the following
constraints:
R-23: Each Domain MUST have a BR Mapping rule and/or a NAT64+ Mapping
rule. The BR Mapping rule is only used by CEs that are
assigned public IPv4 addresses, shared or not. The NAT64+
Mapping rule is only used by CEs that are assigned the
unspecified IPv4 address (<a href="#section-4.4">Section 4.4</a>) and therefore need an
ISP NAT64 to reach IPv4 destinations.
R-24: Each CE and each BR MUST support up to 32 Mapping rules.
Support for up to 32 Mapping rules ensures that independently
acquired CEs and BR nodes can always interwork.
ISPs that need Mapping rules for more IPv4 prefixes than this
number SHOULD split their networks into multiple Domains.
Communication between these domains can be done in IPv4 or by
some other implementation-dependent, but equivalent, means.
<span class="grey">Despres, et al. Experimental [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
R-25: For mesh topologies, where CE-CE paths don't go via BRs, all
Mapping rules of the Domain MUST be sent to all CEs. For
hub-and-spoke topologies, where all CE-CE paths go via BRs,
each CE MAY be sent only the BR Mapping rule of the Domain
plus, if different, the CE Mapping rule that applies to its CE
IPv6 prefix.
R-26: In a Domain where the chosen topology is hub-and-spoke, all CEs
MUST have IPv6 prefixes that match a CE Mapping rule.
(Otherwise, packets sent to CEs whose IPv6 prefixes would match
only the BR Mapping rule would, with longest-match selected
routes, be routed directly to these CEs. This would be
contrary to the hub-and-spoke requirement.)
R-27: CEs MUST be able to acquire parameters of 4rd domains
(<a href="#section-4.2">Section 4.2</a>) in DHCPv6 [<a href="./rfc3315" title=""Dynamic Host Configuration Protocol for IPv6 (DHCPv6)"">RFC3315</a>]. Formats of DHCPv6 options
to be used are detailed in Figures 7, 8, and 9, with field
values specified after each figure.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| option = OPTION_4RD | option-length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| encapsulated 4rd rule options |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 7: DHCPv6 Option for 4rd
o option code: 97, OPTION_4RD (see <a href="#section-6">Section 6</a>)
o option-length: the length of encapsulated options, in octets
<span class="grey">Despres, et al. Experimental [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
o encapsulated 4rd rule options: The OPTION_4RD DHCPv6 option
contains at least one encapsulated OPTION_4RD_MAP_RULE option and
a maximum of one encapsulated OPTION_4RD_NON_MAP_RULE option.
Since DHCP servers normally send whatever options the operator
configures, operators are advised to configure these options
appropriately. DHCP servers MAY check to see that the
configuration follows these rules and notify the operator in an
implementation-dependent manner if the settings for these options
aren't valid. The length of encapsulated options is in octets.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| option = OPTION_4RD_MAP_RULE | option-length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| prefix4-len | prefix6-len | ea-len |W| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| rule-ipv4-prefix |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
+ +
| rule-ipv6-prefix |
+ +
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 8: Encapsulated Option for Mapping-Rule Parameters
o option code: 98, encapsulated OPTION_4RD_MAP_RULE option (see
<a href="#section-6">Section 6</a>)
o option-length: 20
o prefix4-len: number of bits of the Rule IPv4 prefix
o prefix6-len: number of bits of the Rule IPv6 prefix
o ea-len: EA-bits length
o W: WKP authorized, = 1 if set
o rule-ipv4-prefix: Rule IPv4 prefix, left-aligned
o rule-ipv6-prefix: Rule IPv6 prefix, left-aligned
<span class="grey">Despres, et al. Experimental [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|option =OPTION_4RD_NON_MAP_RULE| option-length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|H| 0 |T| traffic-class | domain-pmtu |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 9: Encapsulated Option for Non-Mapping-Rule Parameters
of 4rd Domains
o option code: 99, encapsulated OPTION_4RD_NON_MAP_RULE option (see
<a href="#section-6">Section 6</a>)
o option-length: 4
o H: Hub-and-spoke topology (= 1 if Yes)
o T: Traffic Class flag (= 1 if a Tunnel Traffic Class is provided)
o traffic-class: Tunnel Traffic Class
o domain-pmtu: Domain PMTU (at least 1280 octets)
Means other than DHCPv6 that may prove useful to provide 4rd
parameters to CEs are off-scope for this document. The same or
similar parameter formats would, however, be recommended to
facilitate training and operation.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Security Considerations</span>
Spoofing attacks
With IPv6 ingress filtering in effect in the Domain [<a href="./rfc3704" title=""Ingress Filtering for Multihomed Networks"">RFC3704</a>], as
required in <a href="#section-3">Section 3</a> (Figure 1 in particular), and with
consistency checks between 4rd IPv4 and IPv6 addresses
(<a href="#section-4.5">Section 4.5</a>), no spoofing opportunity in IPv4 is introduced by
4rd: being able to use as source IPv6 address only one that has
been allocated to him, a customer can only provide as source 4rd
IPv4 address that which derives this IPv6 address according to
<a href="#section-4.5">Section 4.5</a>, i.e., one that his ISP has allocated to him.
Routing loop attacks
Routing loop attacks that may exist in some "automatic tunneling"
scenarios are documented in [<a href="./rfc6324" title=""Routing Loop Attack Using IPv6 Automatic Tunnels: Problem Statement and Proposed Mitigations"">RFC6324</a>]. No opportunities for
routing loop attacks have been identified with 4rd.
<span class="grey">Despres, et al. Experimental [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
Fragmentation-related attacks
As discussed in <a href="#section-4.6">Section 4.6</a>, each BR of a Domain that assigns
shared public IPv4 addresses should maintain a dynamic table of
fragmented packets that go to these shared-address CEs.
This leaves BRs vulnerable to denial-of-service attacks from hosts
that would send very large numbers of first fragments and would
never send last fragments having the same packet identifications.
This vulnerability is inherent in IPv4 address sharing, be it
static or dynamic. Compared to what it is with algorithms that
reassemble IPv4 packets in BRs, it is, however, significantly
mitigated by the algorithm provided in <a href="#section-4.6.2">Section 4.6.2</a>, as that
algorithm uses much less memory space.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
IANA has allocated the following:
o Encapsulated options OPTION_4RD (97), OPTION_4RD_MAP_RULE (98),
and OPTION_4RD_NON_MAP_RULE (99). These options have been
recorded in the option code space of the "Dynamic Host
Configuration Protocol for IPv6 (DHCPv6)" registry. See
<a href="#section-4.9">Section 4.9</a> of this document and <a href="./rfc3315#section-24.3">Section 24.3 of [RFC3315]</a>).
Value | Description | Reference
-----------+-------------------------+---------------
97 | OPTION_4RD | this document
98 | OPTION_4RD_MAP_RULE | this document
99 | OPTION_4RD_NON_MAP_RULE | this document
o Reserved IPv4 address 192.0.0.8/32 to be used as the "IPv4 dummy
address" (<a href="#section-4.8">Section 4.8</a>).
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Relationship with Previous Works</span>
The present specification has been influenced by many previous IETF
drafts, in particular those accessible at
<<a href="http://tools.ietf.org/html/draft-xxxx">http://tools.ietf.org/html/draft-xxxx</a>>, where "xxxx" refers to the
following (listed in order, by date of their first versions):
o bagnulo-behave-nat64 (2008-06-10)
o xli-behave-ivi (2008-07-06)
o despres-sam-scenarios (2008-09-28)
o boucadair-port-range (2008-10-23)
<span class="grey">Despres, et al. Experimental [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
o ymbk-aplusp (2008-10-27)
o xli-behave-divi (2009-10-19)
o thaler-port-restricted-ip-issues (2010-02-28)
o cui-softwire-host-4over6 (2010-07-06)
o dec-stateless-4v6 (2011-03-05)
o matsushima-v6ops-transition-experience (2011-03-07)
o despres-intarea-4rd (2011-03-07)
o deng-aplusp-experiment-results (2011-03-07)
o operators-softwire-stateless-4v6-motivation (2011-05-05)
o xli-behave-divi-pd (2011-07-04)
o murakami-softwire-4rd (2011-07-04)
o murakami-softwire-4v6-translation (2011-07-04)
o despres-softwire-4rd-addmapping (2011-08-19)
o boucadair-softwire-stateless-requirements (2011-09-08)
o chen-softwire-4v6-add-format (2011-10-12)
o mawatari-softwire-464xlat (2011-10-16)
o mdt-softwire-map-dhcp-option (2011-10-24)
o mdt-softwire-mapping-address-and-port (2011-10-24)
o mdt-softwire-map-translation (2012-01-10)
o mdt-softwire-map-encapsulation (2012-01-27)
<span class="grey">Despres, et al. Experimental [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. References</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Normative References</span>
[<a id="ref-RFC791">RFC791</a>] Postel, J., "Internet Protocol", STD 5, <a href="./rfc791">RFC 791</a>,
DOI 10.17487/RFC0791, September 1981,
<<a href="http://www.rfc-editor.org/info/rfc791">http://www.rfc-editor.org/info/rfc791</a>>.
[<a id="ref-RFC792">RFC792</a>] Postel, J., "Internet Control Message Protocol", STD 5,
<a href="./rfc792">RFC 792</a>, DOI 10.17487/RFC0792, September 1981,
<<a href="http://www.rfc-editor.org/info/rfc792">http://www.rfc-editor.org/info/rfc792</a>>.
[<a id="ref-RFC793">RFC793</a>] Postel, J., "Transmission Control Protocol", STD 7,
<a href="./rfc793">RFC 793</a>, DOI 10.17487/RFC0793, September 1981,
<<a href="http://www.rfc-editor.org/info/rfc793">http://www.rfc-editor.org/info/rfc793</a>>.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, DOI 10.17487/
<a href="./rfc2119">RFC2119</a>, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC2460">RFC2460</a>] Deering, S. and R. Hinden, "Internet Protocol, Version 6
(IPv6) Specification", <a href="./rfc2460">RFC 2460</a>, DOI 10.17487/RFC2460,
December 1998,
<<a href="http://www.rfc-editor.org/info/rfc2460">http://www.rfc-editor.org/info/rfc2460</a>>.
[<a id="ref-RFC2474">RFC2474</a>] Nichols, K., Blake, S., Baker, F., and D. Black,
"Definition of the Differentiated Services Field (DS
Field) in the IPv4 and IPv6 Headers", <a href="./rfc2474">RFC 2474</a>,
DOI 10.17487/RFC2474, December 1998,
<<a href="http://www.rfc-editor.org/info/rfc2474">http://www.rfc-editor.org/info/rfc2474</a>>.
[<a id="ref-RFC2983">RFC2983</a>] Black, D., "Differentiated Services and Tunnels",
<a href="./rfc2983">RFC 2983</a>, DOI 10.17487/RFC2983, October 2000,
<<a href="http://www.rfc-editor.org/info/rfc2983">http://www.rfc-editor.org/info/rfc2983</a>>.
[<a id="ref-RFC3315">RFC3315</a>] Droms, R., Ed., Bound, J., Volz, B., Lemon, T., Perkins,
C., and M. Carney, "Dynamic Host Configuration Protocol
for IPv6 (DHCPv6)", <a href="./rfc3315">RFC 3315</a>, DOI 10.17487/RFC3315,
July 2003,
<<a href="http://www.rfc-editor.org/info/rfc3315">http://www.rfc-editor.org/info/rfc3315</a>>.
[<a id="ref-RFC4291">RFC4291</a>] Hinden, R. and S. Deering, "IP Version 6 Addressing
Architecture", <a href="./rfc4291">RFC 4291</a>, DOI 10.17487/RFC4291,
February 2006,
<<a href="http://www.rfc-editor.org/info/rfc4291">http://www.rfc-editor.org/info/rfc4291</a>>.
<span class="grey">Despres, et al. Experimental [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
[<a id="ref-RFC4443">RFC4443</a>] Conta, A., Deering, S., and M. Gupta, Ed., "Internet
Control Message Protocol (ICMPv6) for the Internet
Protocol Version 6 (IPv6) Specification", <a href="./rfc4443">RFC 4443</a>,
DOI 10.17487/RFC4443, March 2006,
<<a href="http://www.rfc-editor.org/info/rfc4443">http://www.rfc-editor.org/info/rfc4443</a>>.
[<a id="ref-RFC4862">RFC4862</a>] Thomson, S., Narten, T., and T. Jinmei, "IPv6 Stateless
Address Autoconfiguration", <a href="./rfc4862">RFC 4862</a>,
DOI 10.17487/RFC4862, September 2007,
<<a href="http://www.rfc-editor.org/info/rfc4862">http://www.rfc-editor.org/info/rfc4862</a>>.
[<a id="ref-RFC4925">RFC4925</a>] Li, X., Ed., Dawkins, S., Ed., Ward, D., Ed., and A.
Durand, Ed., "Softwire Problem Statement", <a href="./rfc4925">RFC 4925</a>,
DOI 10.17487/RFC4925, July 2007,
<<a href="http://www.rfc-editor.org/info/rfc4925">http://www.rfc-editor.org/info/rfc4925</a>>.
[<a id="ref-RFC5082">RFC5082</a>] Gill, V., Heasley, J., Meyer, D., Savola, P., Ed., and C.
Pignataro, "The Generalized TTL Security Mechanism
(GTSM)", <a href="./rfc5082">RFC 5082</a>, DOI 10.17487/RFC5082, October 2007,
<<a href="http://www.rfc-editor.org/info/rfc5082">http://www.rfc-editor.org/info/rfc5082</a>>.
[<a id="ref-RFC6040">RFC6040</a>] Briscoe, B., "Tunnelling of Explicit Congestion
Notification", <a href="./rfc6040">RFC 6040</a>, DOI 10.17487/RFC6040,
November 2010,
<<a href="http://www.rfc-editor.org/info/rfc6040">http://www.rfc-editor.org/info/rfc6040</a>>.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Informative References</span>
[<a id="ref-NAT444">NAT444</a>] Yamagata, I., Shirasaki, Y., Nakagawa, A., Yamaguchi, J.,
and H. Ashida, "NAT444", Work in Progress,
<a href="./draft-shirasaki-nat444-06">draft-shirasaki-nat444-06</a>, July 2012.
[<a id="ref-RFC768">RFC768</a>] Postel, J., "User Datagram Protocol", STD 6, <a href="./rfc768">RFC 768</a>,
DOI 10.17487/RFC0768, August 1980,
<<a href="http://www.rfc-editor.org/info/rfc768">http://www.rfc-editor.org/info/rfc768</a>>.
[<a id="ref-RFC1191">RFC1191</a>] Mogul, J. and S. Deering, "Path MTU discovery", <a href="./rfc1191">RFC 1191</a>,
DOI 10.17487/RFC1191, November 1990,
<<a href="http://www.rfc-editor.org/info/rfc1191">http://www.rfc-editor.org/info/rfc1191</a>>.
[<a id="ref-RFC1918">RFC1918</a>] Rekhter, Y., Moskowitz, B., Karrenberg, D., de Groot, G.,
and E. Lear, "Address Allocation for Private Internets",
<a href="https://www.rfc-editor.org/bcp/bcp5">BCP 5</a>, <a href="./rfc1918">RFC 1918</a>, DOI 10.17487/RFC1918, February 1996,
<<a href="http://www.rfc-editor.org/info/rfc1918">http://www.rfc-editor.org/info/rfc1918</a>>.
<span class="grey">Despres, et al. Experimental [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
[<a id="ref-RFC2473">RFC2473</a>] Conta, A. and S. Deering, "Generic Packet Tunneling in
IPv6 Specification", <a href="./rfc2473">RFC 2473</a>, DOI 10.17487/RFC2473,
December 1998,
<<a href="http://www.rfc-editor.org/info/rfc2473">http://www.rfc-editor.org/info/rfc2473</a>>.
[<a id="ref-RFC3022">RFC3022</a>] Srisuresh, P. and K. Egevang, "Traditional IP Network
Address Translator (Traditional NAT)", <a href="./rfc3022">RFC 3022</a>,
DOI 10.17487/RFC3022, January 2001,
<<a href="http://www.rfc-editor.org/info/rfc3022">http://www.rfc-editor.org/info/rfc3022</a>>.
[<a id="ref-RFC3704">RFC3704</a>] Baker, F. and P. Savola, "Ingress Filtering for Multihomed
Networks", <a href="https://www.rfc-editor.org/bcp/bcp84">BCP 84</a>, <a href="./rfc3704">RFC 3704</a>, DOI 10.17487/RFC3704,
March 2004,
<<a href="http://www.rfc-editor.org/info/rfc3704">http://www.rfc-editor.org/info/rfc3704</a>>.
[<a id="ref-RFC3828">RFC3828</a>] Larzon, L-A., Degermark, M., Pink, S., Jonsson, L-E., Ed.,
and G. Fairhurst, Ed., "The Lightweight User Datagram
Protocol (UDP-Lite)", <a href="./rfc3828">RFC 3828</a>, DOI 10.17487/RFC3828,
July 2004,
<<a href="http://www.rfc-editor.org/info/rfc3828">http://www.rfc-editor.org/info/rfc3828</a>>.
[<a id="ref-RFC4271">RFC4271</a>] Rekhter, Y., Ed., Li, T., Ed., and S. Hares, Ed.,
"A Border Gateway Protocol 4 (BGP-4)", <a href="./rfc4271">RFC 4271</a>,
DOI 10.17487/RFC4271, January 2006,
<<a href="http://www.rfc-editor.org/info/rfc4271">http://www.rfc-editor.org/info/rfc4271</a>>.
[<a id="ref-RFC4821">RFC4821</a>] Mathis, M. and J. Heffner, "Packetization Layer Path MTU
Discovery", <a href="./rfc4821">RFC 4821</a>, DOI 10.17487/RFC4821, March 2007,
<<a href="http://www.rfc-editor.org/info/rfc4821">http://www.rfc-editor.org/info/rfc4821</a>>.
[<a id="ref-RFC4961">RFC4961</a>] Wing, D., "Symmetric RTP / RTP Control Protocol (RTCP)",
<a href="https://www.rfc-editor.org/bcp/bcp131">BCP 131</a>, <a href="./rfc4961">RFC 4961</a>, DOI 10.17487/RFC4961, July 2007,
<<a href="http://www.rfc-editor.org/info/rfc4961">http://www.rfc-editor.org/info/rfc4961</a>>.
[<a id="ref-RFC5595">RFC5595</a>] Fairhurst, G., "The Datagram Congestion Control Protocol
(DCCP) Service Codes", <a href="./rfc5595">RFC 5595</a>, DOI 10.17487/RFC5595,
September 2009,
<<a href="http://www.rfc-editor.org/info/rfc5595">http://www.rfc-editor.org/info/rfc5595</a>>.
[<a id="ref-RFC5969">RFC5969</a>] Townsley, W. and O. Troan, "IPv6 Rapid Deployment on IPv4
Infrastructures (6rd) -- Protocol Specification", <a href="./rfc5969">RFC</a>
<a href="./rfc5969">5969</a>, DOI 10.17487/RFC5969, August 2010,
<<a href="http://www.rfc-editor.org/info/rfc5969">http://www.rfc-editor.org/info/rfc5969</a>>.
[<a id="ref-RFC6145">RFC6145</a>] Li, X., Bao, C., and F. Baker, "IP/ICMP Translation
Algorithm", <a href="./rfc6145">RFC 6145</a>, DOI 10.17487/RFC6145, April 2011,
<<a href="http://www.rfc-editor.org/info/rfc6145">http://www.rfc-editor.org/info/rfc6145</a>>.
<span class="grey">Despres, et al. Experimental [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
[<a id="ref-RFC6146">RFC6146</a>] Bagnulo, M., Matthews, P., and I. van Beijnum, "Stateful
NAT64: Network Address and Protocol Translation from IPv6
Clients to IPv4 Servers", <a href="./rfc6146">RFC 6146</a>, DOI 10.17487/RFC6146,
April 2011,
<<a href="http://www.rfc-editor.org/info/rfc6146">http://www.rfc-editor.org/info/rfc6146</a>>.
[<a id="ref-RFC6324">RFC6324</a>] Nakibly, G. and F. Templin, "Routing Loop Attack Using
IPv6 Automatic Tunnels: Problem Statement and Proposed
Mitigations", <a href="./rfc6324">RFC 6324</a>, DOI 10.17487/RFC6324, August 2011,
<<a href="http://www.rfc-editor.org/info/rfc6324">http://www.rfc-editor.org/info/rfc6324</a>>.
[<a id="ref-RFC6346">RFC6346</a>] Bush, R., Ed., "The Address plus Port (A+P) Approach to
the IPv4 Address Shortage", <a href="./rfc6346">RFC 6346</a>, DOI 10.17487/
<a href="./rfc6346">RFC6346</a>, August 2011,
<<a href="http://www.rfc-editor.org/info/rfc6346">http://www.rfc-editor.org/info/rfc6346</a>>.
[<a id="ref-RFC6437">RFC6437</a>] Amante, S., Carpenter, B., Jiang, S., and J. Rajahalme,
"IPv6 Flow Label Specification", <a href="./rfc6437">RFC 6437</a>,
DOI 10.17487/RFC6437, November 2011,
<<a href="http://www.rfc-editor.org/info/rfc6437">http://www.rfc-editor.org/info/rfc6437</a>>.
[<a id="ref-RFC6535">RFC6535</a>] Huang, B., Deng, H., and T. Savolainen, "Dual-Stack Hosts
Using "Bump-in-the-Host" (BIH)", <a href="./rfc6535">RFC 6535</a>,
DOI 10.17487/RFC6535, February 2012,
<<a href="http://www.rfc-editor.org/info/rfc6535">http://www.rfc-editor.org/info/rfc6535</a>>.
[<a id="ref-RFC6887">RFC6887</a>] Wing, D., Ed., Cheshire, S., Boucadair, M., Penno, R., and
P. Selkirk, "Port Control Protocol (PCP)", <a href="./rfc6887">RFC 6887</a>,
DOI 10.17487/RFC6887, April 2013,
<<a href="http://www.rfc-editor.org/info/rfc6887">http://www.rfc-editor.org/info/rfc6887</a>>.
[<a id="ref-RFC7136">RFC7136</a>] Carpenter, B. and S. Jiang, "Significance of IPv6
Interface Identifiers", <a href="./rfc7136">RFC 7136</a>, DOI 10.17487/RFC7136,
February 2014,
<<a href="http://www.rfc-editor.org/info/rfc7136">http://www.rfc-editor.org/info/rfc7136</a>>.
[<a id="ref-Solutions-4v6">Solutions-4v6</a>]
Boucadair, M., Ed., Matsushima, S., Lee, Y., Bonness, O.,
Borges, I., and G. Chen, "Motivations for Carrier-side
Stateless IPv4 over IPv6 Migration Solutions", Work in
Progress, <a href="./draft-ietf-softwire-stateless-4v6-motivation-05">draft-ietf-softwire-stateless-4v6-motivation-05</a>,
November 2012.
<span class="grey">Despres, et al. Experimental [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Textual Representation of Mapping Rules</span>
In the sections that follow, each Mapping rule will be represented as
follows, using 0bXXX to represent binary number XXX; square brackets
("[ ]") indicate optional items:
{Rule IPv4 prefix, EA-bits length, Rule IPv6 prefix
[, WKPs authorized]}
EXAMPLES:
{0.0.0.0/0, 32, 2001:db8:0:1:300::/80}
a BR Mapping rule
{198.16.0.0/14, 22, 2001:db8:4000::/34}
a CE Mapping rule
{0.0.0.0/0, 32, 2001:db8:0:1::/80}
a NAT64+ Mapping rule
{198.16.0.0/14, 22, 2001:db8:4000::/34, Yes}
a CE Mapping rule
and hub-and-spoke topology
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Configuring Multiple Mapping Rules</span>
As far as Mapping rules are concerned, the simplest deployment model
is that in which the Domain has only one rule (the BR Mapping rule).
To assign an IPv4 address to a CE in this model, an IPv6 /112 is
assigned to it, comprising the BR /64 prefix, the 4rd Tag, and the
IPv4 address. However, this model has the following limitations: (1)
shared IPv4 addresses are not supported; (2) IPv6 prefixes used for
4rd are too long to also be used for native IPv6 addresses; (3) if
the IPv4 address space of the ISP is split with many disjoint IPv4
prefixes, the IPv6 routing plan must be as complex as an IPv4 routing
plan based on these prefixes.
With more Mapping rules, CE prefixes used for 4rd can be those used
for native IPv6. How to choose CE Mapping rules for a particular
deployment does not need to be standardized.
The following is only a particular pragmatic approach that can be
used for various deployment scenarios. It is applied in some of the
use cases that follow.
(1) Select a "Common_IPv6_prefix" that will appear at the beginning
of all 4rd CE IPv6 prefixes.
(2) Choose all IPv4 prefixes to be used, and assign one of them to
each CE Mapping rule i.
<span class="grey">Despres, et al. Experimental [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
(3) For each CE Mapping rule i, do the following:
A. Choose the length of its Rule IPv6 prefix (possibly the same
for all CE Mapping rules).
B. Determine its PSID_length(i). A CE Mapping rule that
assigns shared addresses with a sharing ratio of 2^Ki has
PSID_length = Ki. A CE Mapping rule that assigns IPv4
prefixes of length L < 32 is considered to have a negative
PSID_length (PSID_length = L - 32).
C. Derive EA-bits length(i) = 32 - L(Rule IPv4 prefix(i)) +
PSID_length(i).
D. Derive the length of Rule_code(i), the prefix to be appended
to the common prefix to get the Rule IPv6 prefix of rule i:
L(Rule_code(i)) = L(CE IPv6 prefix(i))
- L(Common_IPv6_prefix)
- (32 - L(Rule IPv4 prefix(i)))
- PSID_length(i)
E. Derive Rule_code(i) with the following constraints: (1) its
length is L(Rule_code(i)); (2) it does not overlap with any
of the previously obtained Rule_codes (for instance, 010 and
01011 do overlap, while 00, 011, and 010 do not); (3) it has
the lowest possible value as a fractional binary number (for
instance, 0100 < 10 < 11011 < 111). Thus, rules whose
Rule_code lengths are 4, 3, 5, and 2 give Rule_codes 0000,
001, 00010, and 01.
<span class="grey">Despres, et al. Experimental [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
F. Take Rule IPv6 prefix(i) = the Common_IPv6_prefix followed
by Rule_code(i).
:<--------------------- L(CE IPv6 prefix(i)) --------------------->:
: :
: 32 - L(Rule IPv4 prefix(i)) PSID_length(i):
: \ | :
: :<---------'--------><--'-->:
: : || :
: : \/ :
: :<------->:<--- EA-bits length(i) --->:
: L(Rule_code(i))
: : :
+----------------------------+---------+
| Common_IPv6_prefix |Rule_code|
| | (i) |
+----------------------------+---------+
:<------ L(Rule IPv6 prefix(i)) ------>:
Figure 10: Diagram of One Pragmatic Approach
<span class="h2"><a class="selflink" id="appendix-C" href="#appendix-C">Appendix C</a>. Adding Shared IPv4 Addresses to an IPv6 Network</span>
<span class="h3"><a class="selflink" id="appendix-C.1" href="#appendix-C.1">C.1</a>. With CEs within CPEs</span>
Here, we consider an ISP that offers IPv6-only service to up to 2^20
customers. Each customer is delegated a /56, starting with common
prefix 2001:db8:0::/36. The ISP wants to add public IPv4 service for
customers that are 4rd capable. It prefers to do so with stateless
operation in its nodes but has significantly fewer IPv4 addresses
than IPv6 addresses, so a sharing ratio is necessary.
The only IPv4 prefixes it can use are 192.8.0.0/15, 192.4.0.0/16,
192.2.0.0/16, and 192.1.0.0/16 (neither overlapping nor
aggregatable). This gives 2^(32 - 15) + 3 * 2^(32 - 16) IPv4
addresses, i.e., 2^18 + 2^16. For the 2^20 customers to have the
same sharing ratio, the number of IPv4 addresses to be shared has to
be a power of 2. The ISP can therefore give up using one of its
/16s, say the last one. (Whether or not it could be motivated to
return it to its Internet Registry is off-scope for this document.)
The sharing ratio to apply is then 2^20 / 2^18 = 2^2 = 4, giving a
PSID length of 2.
<span class="grey">Despres, et al. Experimental [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
Applying the principles of <a href="#appendix-B">Appendix B</a> with L(Common_IPv6_prefix) =
36, L(PSID) = 2 for all rules, and L(CE IPv6 prefix(i)) = 56 for all
rules, Rule_codes and Rule IPv6 prefixes are as follows:
+--------------+--------+-----------+-----------+-------------------+
| CE Rule IPv4 | EA | Rule-Code | Code | CE Rule IPv6 |
| prefix | bits | length | (binary) | prefix |
| | length | | | |
+--------------+--------+-----------+-----------+-------------------+
| 192.8.0.0/15 | 19 | 1 | 0 | 2001:db8:0::/37 |
| 192.4.0.0/16 | 18 | 2 | 10 | 2001:db8:800::/38 |
| 192.2.0.0/16 | 18 | 2 | 11 | 2001:db8:c00::/38 |
+--------------+--------+-----------+-----------+-------------------+
Mapping rules are then the following:
{192.8.0.0/15, 19, 2001:0db8:0000::/37}
{192.4.0.0/16, 18, 2001:0db8:0800::/38}
{192.2.0.0/16, 18, 2001:0db8:0c00::/38}
{0.0.0.0/0, 32, 2001:0db8:0000:0001:300::/80}
The CE whose IPv6 prefix is, for example, 2001:db8:0bbb:bb00::/56
derives its IPv4 address and its port set as follows (<a href="#section-4.4">Section 4.4</a>):
CE IPv6 prefix : 2001:0db8:0bbb:bb00::/56
Rule IPv6 prefix(i): 2001:0db8:0800::/38 (longest match)
EA-bits length(i) : 18
EA bits : 0b11 1011 1011 1011 1011
Rule IPv4 prefix(i): 0b1100 0000 0000 0100 (192.4.0.0/16)
IPv4 address : 0b1100 0000 0000 0100 1110 1110 1110 1110
: 192.4.238.238
PSID : 0b11
Ports : 0bYYYY 11XX XXXX XXXX
with YYYY > 0, and X...X any value
<span class="grey">Despres, et al. Experimental [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
An IPv4 packet sent to address 192.4.238.238 and port 7777 is
tunneled to the IPv6 address obtained as follows (<a href="#section-4.5">Section 4.5</a>):
IPv4 address : 192.4.238.238 (0xc004 eeee)
: 0b1100 0000 0000 0100 1110 1110 1110 1110
Rule IPv4 prefix(i): 192.4.0.0/16 (longest match)
: 0b1100 0000 0000 0100
IPv4 suffix(i) : 0b1110 1110 1110 1110
EA-bits length(i) : 18
PSID length(i) : 2 (= 16 + 18 - 32)
Port field : 0b 0001 1110 0110 0001 (7777)
PSID : 0b11
Rule IPv6 prefix(i): 2001:0db8:0800::/38
CE IPv6 prefix : 2001:0db8:0bbb:bb00::/56
IPv6 address : 2001:0db8:0bbb:bb00:300:c004:eeee:YYYY
with YYYY = the computed CNP
<span class="h3"><a class="selflink" id="appendix-C.2" href="#appendix-C.2">C.2</a>. With Some CEs behind Third-Party Router CPEs</span>
We now consider an ISP that has the same need as the ISP described in
the previous section, except that (1) instead of using only its own
IPv6 infrastructure, it uses that of a third-party provider and (2)
some of its customers use this provider's Customer Premises Equipment
(CPEs) so that they can use specific services offered by the
provider. In these CPEs, a non-zero index is used to route IPv6
packets to the physical port to which CEs are attached, say 0x2.
Each such CPE delegates to the CE nodes the customer-site IPv6 prefix
followed by this index.
The ISP is supposed to have the same IPv4 prefixes as those in the
previous use case -- 192.8.0.0/15, 192.4.0.0/16, and 192.2.0.0/16 --
and to use the same Common_IPv6_prefix, 2001:db8:0::/36.
We also assume that only a minority of customers use third-party
CPEs, so that it is sufficient to use only one of the two /16s for
them.
Mapping rules are then (see <a href="#appendix-C.1">Appendix C.1</a>):
{192.8.0.0/15, 19, 2001:0db8:0000::/37}
{192.4.0.0/16, 18, 2001:0db8:0800::/38}
{192.2.0.0/16, 18, 2001:0db8:0c00::/38}
{0.0.0.0/0, 32, 2001:0db8:0000:0001:300::/80}
CEs that are behind third-party CPEs derive their own IPv4 addresses
and port sets as described in <a href="#appendix-C.1">Appendix C.1</a>.
<span class="grey">Despres, et al. Experimental [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
In a BR, and also in a CE if the topology is mesh, the IPv6 address
that is derived from IPv4 address 192.4.238.238 and port 7777 is
obtained as described in the previous section, except for the last
two steps, which are modified as follows:
IPv4 address : 192.4.238.238 (0xc004 eeee)
: 0b1100 0000 0000 0100 1110 1110 1110 1110
Rule IPv4 prefix(i): 192.4.0.0/16 (longest match)
: 0b1100 0000 0000 0100
IPv4 suffix(i) : 0b1110 1110 1110 1110
EA-bits length(i) : 18
PSID length(i) : 2 (= 16 + 18 - 32)
Port field : 0b 0001 1110 0110 0001 (7777)
PSID : 0b11
Rule IPv6 prefix(i): 2001:0db8:0800::/38
CE IPv6 prefix : 2001:0db8:0bbb:bb00::/60
IPv6 address : 2001:0db8:0bbb:bb00:300:192.4.238.238:YYYY
with YYYY = the computed CNP
<span class="h2"><a class="selflink" id="appendix-D" href="#appendix-D">Appendix D</a>. Replacing Dual-Stack Routing with IPv6-Only Routing</span>
In this use case, we consider an ISP that offers IPv4 service with
public addresses individually assigned to its customers. It also
offers IPv6 service, as it has deployed dual-stack routing. Because
it provides its own CPEs to customers, it can upgrade all of its CPEs
to support 4rd. It wishes to take advantage of this capability to
replace dual-stack routing with IPv6-only routing, without changing
any IPv4 address or IPv6 prefix.
For this, the ISP can use the single-rule model described at the
beginning of <a href="#appendix-B">Appendix B</a>. If the prefix routed to BRs is chosen to
start with 2001:db8:0:1::/64, this rule is:
{0.0.0.0/0, 32, 2001:db8:0:1:300::/80}
All that is needed in the network before disabling IPv4 routing is
the following:
o In all routers, where there is an IPv4 route toward x.x.x.x/n, add
a parallel route toward 2001:db8:0:1:300:x.x.x.x::/(80+n).
o Where IPv4 address x.x.x.x was assigned to a CPE, now delegate
IPv6 prefix 2001:db8:0:1:300:x.x.x.x::/112.
<span class="grey">Despres, et al. Experimental [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
NOTE: In parallel with this deployment, or after it, shared IPv4
addresses can be assigned to IPv6 customers. It is sufficient that
IPv4 prefixes used for this be different from those used for
exclusive-address assignments. Under this constraint, Mapping rules
can be set up according to the same principles as those described in
<a href="#appendix-C">Appendix C</a>.
<span class="h2"><a class="selflink" id="appendix-E" href="#appendix-E">Appendix E</a>. Adding IPv6 and 4rd Service to a Net-10 Network</span>
In this use case, we consider an ISP that has only deployed IPv4,
possibly because some of its network devices are not yet IPv6
capable. Because it did not have enough IPv4 addresses, it has
assigned private IPv4 addresses [<a href="./rfc1918" title=""Address Allocation for Private Internets"">RFC1918</a>] to customers, say 10.x.x.x.
It thus supports up to 2^24 customers (a "Net-10" network, using the
NAT444 model [<a href="#ref-NAT444" title=""NAT444"">NAT444</a>]).
Now, it wishes to offer IPv6 service without further delay, using 6rd
[<a href="./rfc5969" title=""IPv6 Rapid Deployment on IPv4 Infrastructures (6rd) -- Protocol Specification"">RFC5969</a>]. It also wishes to offer incoming IPv4 connectivity to its
customers with a simpler solution than that provided by the Port
Control Protocol (PCP) [<a href="./rfc6887" title=""Port Control Protocol (PCP)"">RFC6887</a>].
This appendix describes an example that adds IPv6 (using 6rd) and 4rd
services to the "Net-10" private IPv4 network.
The IPv6 prefix to be used for 6rd is supposed to be 2001:db8::/32,
and the public IPv4 prefix to be used for shared addresses is
supposed to be 198.16.0.0/16 (0xc610). The resulting sharing ratio
is 2^24 / 2^(32 - 16) = 256, giving a PSID length of 8.
The ISP installs one or several BRs at its border to the public IPv4
Internet. They support 6rd, and 4rd above it. The BR prefix /64 is
supposed to be that which is derived from IPv4 address 10.0.0.1
(i.e., 2001:db8:0:100:/64).
In accordance with [<a href="./rfc5969" title=""IPv6 Rapid Deployment on IPv4 Infrastructures (6rd) -- Protocol Specification"">RFC5969</a>], 6rd BRs are configured with the
following parameters: IPv4MaskLen = 8; 6rdPrefix = 2001:db8::/32;
6rdBRIPv4Address = 192.168.0.1 (0xc0a80001).
4rd Mapping rules are then the following:
{198.16.0.0/16, 24, 2001:db8:0:0:300::/80}
{0.0.0.0/0, 32, 2001:db8:0:100:300:/80,}
Any customer device that supports 4rd in addition to 6rd can then use
its assigned shared IPv4 address with 240 assigned ports.
<span class="grey">Despres, et al. Experimental [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
If its NAT44 supports port forwarding to provide incoming IPv4
connectivity (statically, or dynamically with Universal Plug and Play
(UPnP) and/or the NAT Port Mapping Protocol (NAT-PMP)), it can use it
with ports of the assigned port set (a possibility that does not
exist in Net-10 networks without 4rd/6rd).
Acknowledgements
This specification has benefited over several years from independent
proposals, questions, comments, constructive suggestions, and useful
criticisms from numerous IETF contributors. The authors would like
to express recognition of all of these contributors, and especially
the following, in alphabetical order by their first names: Behcet
Sarikaya, Bing Liu, Brian Carpenter, Cameron Byrne, Congxiao Bao, Dan
Wing, Derek Atkins, Erik Kline, Francis Dupont, Gabor Bajko, Hui
Deng, Jacni Quin (who was an active coauthor of some earlier versions
of this specification), James Huang, Jan Zorz, Jari Arkko, Kathleen
Moriarty, Laurent Toutain, Leaf Yeh, Lorenzo Colitti, Marcello
Bagnulo, Mark Townsley, Mohamed Boucadair, Nejc Skoberne, Olaf
Maennel, Ole Troan, Olivier Vautrin, Peng Wu, Qiong Sun, Rajiv Asati,
Ralph Droms, Randy Bush, Satoru Matsushima, Simon Perreault, Stuart
Cheshire, Suresh Krishnan, Ted Lemon, Teemu Savolainen, Tetsuya
Murakami, Tina Tsou, Tomek Mrugalski, Washam Fan, Wojciech Dec,
Xiaohong Deng, Xing Li, and Yu Fu.
Authors' Addresses
Remi Despres
RD-IPtech
3 rue du President Wilson
Levallois
France
Email: despres.remi@laposte.net
Sheng Jiang (editor)
Huawei Technologies Co., Ltd
Q14, Huawei Campus, No. 156 BeiQing Road
Hai-Dian District, Beijing 100095
China
Email: jiangsheng@huawei.com
<span class="grey">Despres, et al. Experimental [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc7600">RFC 7600</a> Stateless IPv4 Residual Deployment (4rd) July 2015</span>
Reinaldo Penno
Cisco Systems, Inc.
170 West Tasman Drive
San Jose, CA 95134
United States
Email: repenno@cisco.com
Yiu Lee
Comcast
One Comcast Center
Philadelphia, PA 19103
United States
Email: yiu_lee@cable.comcast.com
Gang Chen
China Mobile
29, Jinrong Avenue
Xicheng District, Beijing 100033
China
Email: phdgang@gmail.com, chengang@chinamobile.com
Maoke Chen (a.k.a. Noriyuki Arai)
BBIX, Inc.
Tokyo Shiodome Building, Higashi-Shimbashi 1-9-1
Minato-ku, Tokyo 105-7310
Japan
Email: maoke@bbix.net
Despres, et al. Experimental [Page 45]
</pre>
|