1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
|
Network Working Group C. Mickles, Ed.
Request for Comments: 3790
Category: Informational P. Nesser, II
Nesser & Nesser Consulting
June 2004
Survey of IPv4 Addresses in Currently Deployed
IETF Internet Area Standards Track and Experimental Documents
Status of this Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2004).
Abstract
This document seeks to document all usage of IPv4 addresses in
currently deployed IETF Internet Area documented standards. In order
to successfully transition from an all IPv4 Internet to an all IPv6
Internet, many interim steps will be taken. One of these steps is
the evolution of current protocols that have IPv4 dependencies. It
is hoped that these protocols (and their implementations) will be
redesigned to be network address independent, but failing that will
at least dually support IPv4 and IPv6. To this end, all Standards
(Full, Draft, and Proposed) as well as Experimental RFCs will be
surveyed and any dependencies will be documented.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 9
2. Document Organization. . . . . . . . . . . . . . . . . . . . 9
3. Full Standards . . . . . . . . . . . . . . . . . . . . . . . 9
3.1. RFC 791 Internet Protocol . . . . . . . . . . . . . . 9
3.2. RFC 792 Internet Control Message Protocol . . . . . . 9
3.3. RFC 826 Ethernet Address Resolution Protocol. . . . . 9
3.4. RFC 891 DCN Local-Network Protocols . . . . . . . . . 10
3.5. RFC 894 Standard for the transmission of IP datagrams
over Ethernet networks. . . . . . . . . . . . . . . . 10
3.6. RFC 895 Standard for the transmission of IP datagrams
over experimental Ethernet networks . . . . . . . . . 10
3.7. RFC 903 Reverse Address Resolution Protocol . . . . . 10
3.8. RFC 919 Broadcasting Internet Datagrams . . . . . . . 10
Mickles & Nesser II Informational [Page 1]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
3.9. RFC 922 Broadcasting Internet datagrams in the
presence of subnets . . . . . . . . . . . . . . . . . 10
3.10. RFC 950 Internet Standard Subnetting Procedure. . . . 10
3.11. RFC 1034 Domain Names: Concepts and Facilities. . . . 10
3.12. RFC 1035 Domain Names: Implementation and
Specification . . . . . . . . . . . . . . . . . . . . 11
3.13. RFC 1042 Standard for the transmission of IP datagrams
over IEEE 802 networks . . . . . . . . . . . . . . . 13
3.14. RFC 1044 Internet Protocol on Network System's
HYPERchannel: Protocol Specification . . . . . . . . 13
3.15. RFC 1055 Nonstandard for transmission of IP datagrams
over serial lines: SLIP . . . . . . . . . . . . . . . 13
3.16. RFC 1088 Standard for the transmission of IP
datagrams over NetBIOS networks . . . . . . . . . . . 13
3.17. RFC 1112 Host Extensions for IP Multicasting. . . . . 13
3.18. RFC 1132 Standard for the transmission of 802.2
packets over IPX networks . . . . . . . . . . . . . . 13
3.19. RFC 1201 Transmitting IP traffic over ARCNET
networks. . . . . . . . . . . . . . . . . . . . . . . 13
3.20. RFC 1209 The Transmission of IP Datagrams over the
SMDS Service. . . . . . . . . . . . . . . . . . . . . 14
3.21. RFC 1390 Transmission of IP and ARP over FDDI
Networks. . . . . . . . . . . . . . . . . . . . . . . 14
3.22. RFC 1661 The Point-to-Point Protocol (PPP). . . . . . 14
3.23. RFC 1662 PPP in HDLC-like Framing . . . . . . . . . . 14
3.24. RFC 2427 Multiprotocol Interconnect over Frame Relay. 14
4. Draft Standards . . . . . . . . . . . . . . . . . . . . . . 14
4.1. RFC 951 Bootstrap Protocol (BOOTP). . . . . . . . . . 14
4.2. RFC 1188 Proposed Standard for the Transmission of IP
Datagrams over FDDI Networks. . . . . . . . . . . . . 15
4.3. RFC 1191 Path MTU discovery . . . . . . . . . . . . . 15
4.4. RFC 1356 Multiprotocol Interconnect on X.25 and ISDN. 15
4.5. RFC 1534 Interoperation Between DHCP and BOOTP. . . . 16
4.6. RFC 1542 Clarifications and Extensions for the
Bootstrap Protocol. . . . . . . . . . . . . . . . . . 16
4.7. RFC 1629 Guidelines for OSI NSAP Allocation in the
Internet. . . . . . . . . . . . . . . . . . . . . . . 16
4.8. RFC 1762 The PPP DECnet Phase IV Control Protocol
(DNCP). . . . . . . . . . . . . . . . . . . . . . . . 16
4.9. RFC 1989 PPP Link Quality Monitoring. . . . . . . . . 16
4.10. RFC 1990 The PPP Multilink Protocol (MP). . . . . . . 16
4.11. RFC 1994 PPP Challenge Handshake Authentication
Protocol (CHAP) . . . . . . . . . . . . . . . . . . . 17
4.12. RFC 2067 IP over HIPPI. . . . . . . . . . . . . . . . 17
4.13. RFC 2131 Dynamic Host Configuration Protocol. . . . . 17
4.14. RFC 2132 DHCP Options and BOOTP Vendor Extensions . . 17
4.15. RFC 2390 Inverse Address Resolution Protocol. . . . . 17
Mickles & Nesser II Informational [Page 2]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
4.16. RFC 2460 Internet Protocol, Version 6 (IPv6)
Specification . . . . . . . . . . . . . . . . . . . . 17
4.17. RFC 2461 Neighbor Discovery for IP Version 6 (IPv6) . 18
4.18. RFC 2462 IPv6 Stateless Address Autoconfiguration . . 18
4.19. RFC 2463 Internet Control Message Protocol (ICMPv6)
for the Internet Protocol Version 6 (IPv6)
Specification. . . . . . . . . . . . . . . . . . . . 18
4.20. RFC 3596 DNS Extensions to support IP version 6 . . . 18
5. Proposed Standards . . . . . . . . . . . . . . . . . . . . . 18
5.1. RFC 1234 Tunneling IPX traffic through IP networks. . 18
5.2. RFC 1256 ICMP Router Discovery Messages . . . . . . . 19
5.3. RFC 1277 Encoding Network Addresses to Support
Operation over Non-OSI Lower Layers . . . . . . . . . 19
5.4. RFC 1332 The PPP Internet Protocol Control Protocol
(IPCP). . . . . . . . . . . . . . . . . . . . . . . . 19
5.5. RFC 1377 The PPP OSI Network Layer Control Protocol
(OSINLCP) . . . . . . . . . . . . . . . . . . . . . . 20
5.6. RFC 1378 The PPP AppleTalk Control Protocol (ATCP). . 20
5.7. RFC 1469 IP Multicast over Token-Ring Local Area
Networks. . . . . . . . . . . . . . . . . . . . . . . 20
5.8. RFC 1552 The PPP Internetworking Packet Exchange
Control Protocol (IPXCP). . . . . . . . . . . . . . . 20
5.9. RFC 1570 PPP LCP Extensions . . . . . . . . . . . . . 20
5.10. RFC 1598 PPP in X.25 PPP-X25. . . . . . . . . . . . . 20
5.11. RFC 1618 PPP over ISDN. . . . . . . . . . . . . . . . 20
5.12. RFC 1663 PPP Reliable Transmission. . . . . . . . . . 20
5.13. RFC 1752 The Recommendation for the IP Next
Generation Protocol . . . . . . . . . . . . . . . . . 20
5.14. RFC 1755 ATM Signaling Support for IP over ATM. . . . 20
5.15. RFC 1763 The PPP Banyan Vines Control Protocol (BVCP) 21
5.16. RFC 1764 The PPP XNS IDP Control Protocol (XNSCP) . . 21
5.17. RFC 1973 PPP in Frame Relay . . . . . . . . . . . . . 21
5.18. RFC 1981 Path MTU Discovery for IP version 6. . . . . 21
5.19. RFC 1982 Serial Number Arithmetic . . . . . . . . . . 21
5.20. 5.21 RFC 1995 Incremental Zone Transfer in DNS. . . . 21
5.21. RFC 1996 A Mechanism for Prompt Notification of Zone
Changes (DNS NOTIFY). . . . . . . . . . . . . . . . . 21
5.22. RFC 2003 IP Encapsulation within IP . . . . . . . . . 21
5.23. RFC 2004 Minimal Encapsulation within IP. . . . . . . 21
5.24. RFC 2005 Applicability Statement for IP Mobility
Support . . . . . . . . . . . . . . . . . . . . . . . 21
5.25. RFC 2022 Support for Multicast over UNI 3.0/3.1 based
ATM Networks. . . . . . . . . . . . . . . . . . . . . 22
5.26. RFC 2043 The PPP SNA Control Protocol (SNACP) . . . . 22
5.27. RFC 2097 The PPP NetBIOS Frames Control Protocol
(NBFCP) . . . . . . . . . . . . . . . . . . . . . . . 22
5.28. RFC 2113 IP Router Alert Option . . . . . . . . . . . 22
Mickles & Nesser II Informational [Page 3]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.29. RFC 2125 The PPP Bandwidth Allocation Protocol (BAP)
/ The PPP Bandwidth Allocation Control Protocol
(BACP) . . . . . . . . . . . . . . . . . . . . . . . . 22
5.30. RFC 2136 Dynamic Updates in the Domain Name System
(DNS UPDATE). . . . . . . . . . . . . . . . . . . . . 22
5.31. RFC 2181 Clarifications to the DNS Specification. . . 22
5.32. RFC 2225 Classical IP and ARP over ATM. . . . . . . . 22
5.33. RFC 2226 IP Broadcast over ATM Networks . . . . . . . 23
5.34. RFC 2241 DHCP Options for Novell Directory Services . 23
5.35. RFC 2242 NetWare/IP Domain Name and Information . . . 23
5.36. RFC 2290 Mobile-IPv4 Configuration Option for PPP
IPCP. . . . . . . . . . . . . . . . . . . . . . . . . 24
5.37. RFC 2308 Negative Caching of DNS Queries (DNS NCACHE) 24
5.38. RFC 2331 ATM Signaling Support for IP over ATM - UNI
Signaling 4.0 Update. . . . . . . . . . . . . . . . . 24
5.39. RFC 2332 NBMA Next Hop Resolution Protocol (NHRP) . . 24
5.40. RFC 2333 NHRP Protocol Applicability. . . . . . . . . 24
5.41. RFC 2335 A Distributed NHRP Service Using SCSP. . . . 24
5.42. RFC 2363 PPP Over FUNI. . . . . . . . . . . . . . . . 24
5.43. RFC 2364 PPP Over AAL5. . . . . . . . . . . . . . . . 24
5.44. RFC 2371 Transaction Internet Protocol Version 3.0
(TIPV3) . . . . . . . . . . . . . . . . . . . . . . . 25
5.45. RFC 2464 Transmission of IPv6 Packets over Ethernet
Networks. . . . . . . . . . . . . . . . . . . . . . . 26
5.46. RFC 2467 Transmission of IPv6 Packets over FDDI
Networks. . . . . . . . . . . . . . . . . . . . . . . 26
5.47. RFC 2470 Transmission of IPv6 Packets over Token Ring
Networks. . . . . . . . . . . . . . . . . . . . . . . 26
5.48. RFC 2472 IP Version 6 over PPP. . . . . . . . . . . . 26
5.49. RFC 2473 Generic Packet Tunneling in IPv6
Specification . . . . . . . . . . . . . . . . . . . . 26
5.50. RFC 2484 PPP LCP Internationalization Configuration
Option. . . . . . . . . . . . . . . . . . . . . . . . 26
5.51. RFC 2485 DHCP Option for The Open Group's User
Authentication Protocol . . . . . . . . . . . . . . . 27
5.52. RFC 2486 The Network Access Identifier. . . . . . . . 27
5.53. RFC 2491 IPv6 over Non-Broadcast Multiple Access
(NBMA) Networks . . . . . . . . . . . . . . . . . . . 27
5.54. RFC 2492 IPv6 over ATM Networks . . . . . . . . . . . 27
5.55. RFC 2497 Transmission of IPv6 Packets over ARCnet
Networks. . . . . . . . . . . . . . . . . . . . . . . 27
5.56. RFC 2507 IP Header Compression. . . . . . . . . . . . 27
5.57. RFC 2526 Reserved IPv6 Subnet Anycast Addresses . . . 27
5.58. RFC 2529 Transmission of IPv6 over IPv4 Domains
without Explicit Tunnels. . . . . . . . . . . . . . . 27
5.59. RFC 2563 DHCP Option to Disable Stateless
Auto-Configuration in IPv4 Clients. . . . . . . . . . 27
Mickles & Nesser II Informational [Page 4]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.60. RFC 2590 Transmission of IPv6 Packets over Frame
Relay Networks Specification. . . . . . . . . . . . . 28
5.61. RFC 2601 ILMI-Based Server Discovery for ATMARP . . . 28
5.62. RFC 2602 ILMI-Based Server Discovery for MARS . . . . 28
5.63. RFC 2603 ILMI-Based Server Discovery for NHRP . . . . 28
5.64. RFC 2610 DHCP Options for Service Location Protocol . 28
5.65. RFC 2615 PPP over SONET/SDH . . . . . . . . . . . . . 28
5.66. RFC 2625 IP and ARP over Fibre Channel. . . . . . . . 28
5.67. RFC 2661 Layer Two Tunneling Protocol (L2TP). . . . . 28
5.68. RFC 2671 Extension Mechanisms for DNS (EDNS0) . . . . 28
5.69. RFC 2672 Non-Terminal DNS Name Redirection. . . . . . 29
5.70. RFC 2673 Binary Labels in the Domain Name System. . . 29
5.71. RFC 2675 IPv6 Jumbograms. . . . . . . . . . . . . . . 29
5.72. RFC 2684 Multiprotocol Encapsulation over ATM
Adaptation Layer 5. . . . . . . . . . . . . . . . . . 29
5.73. RFC 2685 Virtual Private Networks Identifier. . . . . 29
5.74. RFC 2686 The Multi-Class Extension to Multi-Link PPP. 29
5.75. RFC 2687 PPP in a Real-time Oriented HDLC-like
Framing . . . . . . . . . . . . . . . . . . . . . . . 29
5.76. RFC 2688 Integrated Services Mappings for Low Speed
Networks. . . . . . . . . . . . . . . . . . . . . . . 29
5.77. RFC 2710 Multicast Listener Discovery (MLD) for IPv6. 29
5.78. RFC 2711 IPv6 Router Alert Option . . . . . . . . . . 29
5.79. RFC 2728 The Transmission of IP Over the Vertical
Blanking Interval of a Television Signal. . . . . . . 30
5.80. RFC 2734 IPv4 over IEEE 1394. . . . . . . . . . . . . 30
5.81. RFC 2735 NHRP Support for Virtual Private Networks. . 30
5.82. RFC 2765 Stateless IP/ICMP Translation Algorithm
(SIIT). . . . . . . . . . . . . . . . . . . . . . . . 30
5.83. RFC 2766 Network Address Translation - Protocol
Translation (NAT-PT). . . . . . . . . . . . . . . . . 30
5.84. RFC 2776 Multicast-Scope Zone Announcement Protocol
(MZAP). . . . . . . . . . . . . . . . . . . . . . . . 31
5.85. RFC 2782 A DNS RR for specifying the location of
services. . . . . . . . . . . . . . . . . . . . . . . 31
5.86. RFC 2794 Mobile IP Network Access Identifier
Extension for IPv4. . . . . . . . . . . . . . . . . . 31
5.87. RFC 2834 ARP and IP Broadcast over HIPPI-800. . . . . 31
5.88. RFC 2835 IP and ARP over HIPPI-6400 . . . . . . . . . 33
5.89. RFC 2855 DHCP for IEEE 1394 . . . . . . . . . . . . . 33
5.90. RFC 2874 DNS Extensions to Support IPv6 Address
Aggregation and Renumbering . . . . . . . . . . . . . 33
5.91. RFC 2893 Transition Mechanisms for IPv6 Hosts and
Routers . . . . . . . . . . . . . . . . . . . . . . . 33
5.92. RFC 2916 E.164 number and DNS . . . . . . . . . . . . 33
5.93. RFC 2937 The Name Service Search Option for DHCP. . . 33
5.94. RFC 3004 The User Class Option for DHCP . . . . . . . 33
5.95. RFC 3011 The IPv4 Subnet Selection Option for DHCP. . 33
Mickles & Nesser II Informational [Page 5]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.96. RFC 3021 Using 31-Bit Prefixes for IPv4 P2P Links . . 33
5.97. RFC 3024 Reverse Tunneling for Mobile IP, revised . . 34
5.98. RFC 3046 DHCP Relay Agent Information Option. . . . . 34
5.99. RFC 3056 Connection of IPv6 Domains via IPv4 Clouds . 34
5.100. RFC 3068 An Anycast Prefix for 6to4 Relay Routers . . 34
5.101. RFC 3070 Layer Two Tunneling Protocol (L2TP) over
Frame Relay . . . . . . . . . . . . . . . . . . . . . 34
5.102. RFC 3074 DHC Load Balancing Algorithm . . . . . . . . 34
5.103. RFC 3077 A Link-Layer Tunneling Mechanism for
Unidirectional Links. . . . . . . . . . . . . . . . . 34
5.104. RFC 3115 Mobile IP Vendor/Organization-Specific
Extensions. . . . . . . . . . . . . . . . . . . . . . 34
5.105. RFC 3145 L2TP Disconnect Cause Information. . . . . . 34
5.106. RFC 3344 IP Mobility Support for IPv4 . . . . . . . . 34
5.107. RFC 3376 Internet Group Management Protocol,
Version 3 . . . . . . . . . . . . . . . . . . . . . . 35
5.108. RFC 3402 Dynamic Delegation Discovery System (DDDS)
Part Two: The Algorithm . . . . . . . . . . . . . . . 35
5.109. RFC 3403 Dynamic Delegation Discovery System (DDDS)
Part Three: The Domain Name System (DNS) Database. . 35
5.110. RFC 3513 IP Version 6 Addressing Architecture . . . . 35
5.111. RFC 3518 Point-to-Point Protocol (PPP) Bridging
Control Protocol (BCP). . . . . . . . . . . . . . . . 35
6. Experimental RFCs. . . . . . . . . . . . . . . . . . . . . . 35
6.1. RFC 1149 Standard for the transmission of IP
datagrams on avian carriers . . . . . . . . . . . . . 35
6.2. RFC 1183 New DNS RR Definitions . . . . . . . . . . . 35
6.3. RFC 1226 Internet protocol encapsulation of AX.25
frames. . . . . . . . . . . . . . . . . . . . . . . . 36
6.4. RFC 1241 Scheme for an internet encapsulation
protocol: Version 1 . . . . . . . . . . . . . . . . . 36
6.5. RFC 1307 Dynamically Switched Link Control Protocol . 36
6.6. RFC 1393 Traceroute Using an IP Option. . . . . . . . 36
6.7. RFC 1433 Directed ARP . . . . . . . . . . . . . . . . 36
6.8. RFC 1464 Using the Domain Name System To Store
Arbitrary String Attributes . . . . . . . . . . . . . 37
6.9. RFC 1475 TP/IX: The Next Internet . . . . . . . . . . 37
6.10. RFC 1561 Use of ISO CLNP in TUBA Environments . . . . 37
6.11. RFC 1712 DNS Encoding of Geographical Location. . . . 37
6.12. RFC 1735 NBMA Address Resolution Protocol (NARP). . . 37
6.13. RFC 1768 Host Group Extensions for CLNP Multicasting. 38
6.14. RFC 1788 ICMP Domain Name Messages. . . . . . . . . . 38
6.15. RFC 1797 Class A Subnet Experiment. . . . . . . . . . 38
6.16. RFC 1819 Internet Stream Protocol Version 2 (ST2)
Protocol Specification - Version ST2+ . . . . . . . . 39
6.17. RFC 1868 ARP Extension - UNARP. . . . . . . . . . . . 39
6.18. RFC 1876 A Means for Expressing Location Information
in the Domain Name System . . . . . . . . . . . . . . 39
Mickles & Nesser II Informational [Page 6]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
6.19. RFC 1888 OSI NSAPs and IPv6 . . . . . . . . . . . . . 39
6.20. RFC 2009 GPS-Based Addressin and Routing. . . . . . . 39
6.21. RFC 2143 Encapsulating IP with the SCSI . . . . . . . 39
6.22. RFC 2345 Domain Names and Company Name Retrieval. . . 40
6.23. RFC 2443 A Distributed MARS Service Using SCSP. . . . 40
6.24. RFC 2471 IPv6 Testing Address Allocation. . . . . . . 40
6.25. RFC 2520 NHRP with Mobile NHCs. . . . . . . . . . . . 40
6.26. RFC 2521 ICMP Security Failures Messages. . . . . . . 40
6.27. RFC 2540 Detached Domain Name System (DNS)
Information . . . . . . . . . . . . . . . . . . . . . 40
6.28. RFC 2823 PPP over Simple Data Link (SDL) using
SONET/SDH with ATM-like framing . . . . . . . . . . . 40
6.29. RFC 3123 A DNS RR Type for Lists of Address Prefixes. 40
6.30. RFC 3168 The Addition of Explicit Congestion
Notification (ECN) to IP . . . . . . . . . . . . . . 40
6.31. RFC 3180 GLOP Addressing in 233/8 . . . . . . . . . . 40
7. Summary of the Results . . . . . . . . . . . . . . . . . . . 41
7.1. Standards . . . . . . . . . . . . . . . . . . . . . . 41
7.1.1. RFC 791 Internet Protocol . . . . . . . . . . 41
7.1.2. RFC 792 Internet Control Message Protocol . . 41
7.1.3. RFC 891 DCN Networks. . . . . . . . . . . . . 41
7.1.4. RFC 894 IP over Ethernet. . . . . . . . . . . 41
7.1.5. RFC 895 IP over experimental Ethernets. . . . 41
7.1.6. RFC 922 Broadcasting Internet Datagrams in
the Presence of Subnets . . . . . . . . . . . 41
7.1.7. RFC 950 Internet Standard Subnetting
Procedure. . . . . . . . . . . . . . . . . . 42
7.1.8. RFC 1034 Domain Names: Concepts and
Facilities. . . . . . . . . . . . . . . . . . 42
7.1.9. RFC 1035 Domain Names: Implementation and
Specification . . . . . . . . . . . . . . . . 42
7.1.10. RFC 1042 IP over IEEE 802 . . . . . . . . . . 42
7.1.11. RFC 1044 IP over HyperChannel . . . . . . . . 42
7.1.12. RFC 1088 IP over NetBIOS. . . . . . . . . . . 42
7.1.13. RFC 1112 Host Extensions for IP Multicast . . 42
7.1.14. RFC 1122 Requirements for Internet Hosts. . . 42
7.1.15. RFC 1201 IP over ARCNET . . . . . . . . . . . 42
7.1.16. RFC 1209 IP over SMDS . . . . . . . . . . . . 43
7.1.17. RFC 1390 Transmission of IP and ARP over FDDI
Networks. . . . . . . . . . . . . . . . . . . 43
7.2. Draft Standards . . . . . . . . . . . . . . . . . . . 43
7.2.1. RFC 951 Bootstrap Protocol (BOOTP). . . . . . 43
7.2.2. RFC 1191 Path MTU Discovery . . . . . . . . . 43
7.2.3. RFC 1356 Multiprotocol Interconnect on X.25
and ISDN. . . . . . . . . . . . . . . . . . . 43
7.2.4. RFC 1990 The PPP Multilink Protocol (MP). . . 43
7.2.5. RFC 2067 IP over HIPPI. . . . . . . . . . . . 43
7.2.6. RFC 2131 DHCP . . . . . . . . . . . . . . . . 43
Mickles & Nesser II Informational [Page 7]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
7.3. Proposed Standards. . . . . . . . . . . . . . . . . . 44
7.3.1. RFC 1234 Tunneling IPX over IP. . . . . . . . 44
7.3.2. RFC 1256 ICMP Router Discovery. . . . . . . . 44
7.3.3. RFC 1277 Encoding Net Addresses to Support
Operation Over Non OSI Lower Layers . . . . . 44
7.3.4. RFC 1332 PPP Internet Protocol Control
Protocol (IPCP) . . . . . . . . . . . . . . . 44
7.3.5. RFC 1469 IP Multicast over Token Ring . . . . 44
7.3.6. RFC 2003 IP Encapsulation within IP . . . . . 44
7.3.7. RFC 2004 Minimal Encapsulation within IP. . . 44
7.3.8. RFC 2022 Support for Multicast over UNI
3.0/3.1 based ATM Networks. . . . . . . . . . 44
7.3.9. RFC 2113 IP Router Alert Option . . . . . . . 45
7.3.10. RFC 2165 SLP. . . . . . . . . . . . . . . . . 45
7.3.11. RFC 2225 Classical IP & ARP over ATM. . . . . 45
7.3.12. RFC 2226 IP Broadcast over ATM. . . . . . . . 45
7.3.13. RFC 2371 Transaction IPv3 . . . . . . . . . . 45
7.3.14. RFC 2625 IP and ARP over Fibre Channel. . . . 45
7.3.15. RFC 2672 Non-Terminal DNS Redirection . . . . 45
7.3.16. RFC 2673 Binary Labels in DNS . . . . . . . . 45
7.3.17. IP over Vertical Blanking Interval of a TV
Signal (RFC 2728) . . . . . . . . . . . . . . 45
7.3.18. RFC 2734 IPv4 over IEEE 1394. . . . . . . . . 45
7.3.19. RFC 2834 ARP & IP Broadcasts Over HIPPI 800 . 46
7.3.20. RFC 2835 ARP & IP Broadcasts Over HIPPI 6400. 46
7.3.21. RFC 3344 Mobility Support for IPv4. . . . . . 46
7.3.22. RFC 3376 Internet Group Management Protocol,
Version 3 . . . . . . . . . . . . . . . . . . 46
7.4. Experimental RFCs . . . . . . . . . . . . . . . . . . 46
7.4.1. RFC 1307 Dynamically Switched Link Control
Protocol. . . . . . . . . . . . . . . . . . . 46
7.4.2. RFC 1393 Traceroute using an IP Option. . . . 46
7.4.3. RFC 1735 NBMA Address Resolution Protocol
(NARP). . . . . . . . . . . . . . . . . . . . 46
7.4.4. RFC 1788 ICMP Domain Name Messages. . . . . . 46
7.4.5. RFC 1868 ARP Extension - UNARP. . . . . . . . 47
7.4.6. RFC 2143 IP Over SCSI . . . . . . . . . . . . 47
7.4.7. RFC 3180 GLOP Addressing in 233/8 . . . . . . 47
8. Security Considerations . . . . . . . . . . . . . . . . . . 47
9. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 47
10. References . . . . . . . . . . . . . . . . . . . . . . . . . 47
10.1. Normative References. . . . . . . . . . . . . . . . . 47
10.2. Informative References . . . . . . . . . . . . . . . 48
11. Authors' Addresses . . . . . . . . . . . . . . . . . . . . . 48
12. Full Copyright Statement . . . . . . . . . . . . . . . . . . 49
Mickles & Nesser II Informational [Page 8]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
1. Introduction
This document is part of a document set aiming to document all usage
of IPv4 addresses in IETF standards. In an effort to have the
information in a manageable form, it has been broken into 7 documents
conforming to the current IETF areas (Application, Internet,
Management & Operations, Routing, Security, Sub-IP and Transport).
This specific document focuses on usage of IPv4 addresses within the
Internet area.
For a full introduction, please see the introduction [1] document.
2. Document Organization
The following sections 3, 4, 5, and 6 each describe the raw analysis
of Full, Draft, and Proposed Standards, and Experimental RFCs. Each
RFC is discussed in turn starting with RFC 1 and ending in (about)
RFC 3100. The comments for each RFC are "raw" in nature. That is,
each RFC is discussed in a vacuum and problems or issues discussed do
not "look ahead" to see if any of the issues raised have already been
fixed.
Section 7 is an analysis of the data presented in Sections 3, 4, 5,
and 6. It is here that all of the results are considered as a whole
and the problems that have been resolved in later RFCs are
correlated.
3. Full Standards
Full Internet Standards (most commonly simply referred to as
"Standards") are fully mature protocol specification that are widely
implemented and used throughout the Internet.
3.1. RFC 791 Internet Protocol
This specification defines IPv4; IPv6 has been specified in separate
documents.
3.2. RFC 792 Internet Control Message Protocol
This specification defines ICMP, and is inherently IPv4 dependent.
3.3. RFC 826 Ethernet Address Resolution Protocol
There are no IPv4 dependencies in this specification.
Mickles & Nesser II Informational [Page 9]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
3.4. RFC 891 DCN Local-Network Protocols
There are many implicit assumptions about the use of IPv4 addresses
in this document.
3.5. RFC 894 Standard for the transmission of IP datagrams over
Ethernet networks
This specification specifically deals with the transmission of IPv4
packets over Ethernet.
3.6. RFC 895 Standard for the transmission of IP datagrams over
experimental Ethernet networks
This specification specifically deals with the transmission of IPv4
packets over experimental Ethernet.
3.7. RFC 903 Reverse Address Resolution Protocol
There are no IPv4 dependencies in this specification.
3.8. RFC 919 Broadcasting Internet Datagrams
This specification defines broadcasting for IPv4; IPv6 uses multicast
so this is not applicable.
3.9. RFC 922 Broadcasting Internet datagrams in the presence of subnets
This specification defines how broadcasts should be treated in the
presence of subnets. IPv6 uses multicast so this is not applicable.
3.10. RFC 950 Internet Standard Subnetting Procedure
This specification defines IPv4 subnetting; similar functionality is
part of IPv6 addressing architecture to begin with.
3.11. RFC 1034 Domain Names: Concepts and Facilities
In Section 3.6, "Resource Records", the definition of A record is:
RDATA which is the type and sometimes class dependent
data which describes the resource:
A For the IN class, a 32 bit IP address
Mickles & Nesser II Informational [Page 10]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
And Section 5.2.1, "Typical functions" defines:
1. Host name to host address translation.
This function is often defined to mimic a previous HOSTS.TXT based
function. Given a character string, the caller wants one or more
32 bit IP addresses. Under the DNS, it translates into a request
for type A RRs. Since the DNS does not preserve the order of RRs,
this function may choose to sort the returned addresses or select
the "best" address if the service returns only one choice to the
client. Note that a multiple address return is recommended, but a
single address may be the only way to emulate prior HOSTS.TXT
services.
2. Host address to host name translation
This function will often follow the form of previous functions.
Given a 32 bit IP address, the caller wants a character string.
The octets of the IP address are reversed, used as name
components, and suffixed with "IN-ADDR.ARPA". A type PTR query is
used to get the RR with the primary name of the host. For
example, a request for the host name corresponding to IP address
1.2.3.4 looks for PTR RRs for domain name "4.3.2.1.IN-ADDR.ARPA".
There are, of course, numerous examples of IPv4 addresses scattered
throughout the document.
3.12. RFC 1035 Domain Names: Implementation and Specification
Section 3.4.1, "A RDATA format", defines the format for A records:
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
| ADDRESS |
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
where:
ADDRESS A 32 bit Internet address.
Hosts that have multiple Internet addresses will have multiple A
records.
A records cause no additional section processing. The RDATA section
of an A line in a master file is an Internet address expressed as
four decimal numbers separated by dots without any embedded spaces
(e.g.,"10.2.0.52" or "192.0.5.6").
Mickles & Nesser II Informational [Page 11]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
And Section 3.4.2, "WKS RDATA", format is:
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
| ADDRESS |
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
| PROTOCOL | |
+--+--+--+--+--+--+--+--+ |
| |
/ <BIT MAP> /
/ /
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
where:
ADDRESS An 32 bit Internet address
PROTOCOL An 8 bit IP protocol number
<BIT MAP> A variable length bit map. The bit map
must be a multiple of 8 bits long.
The WKS record is used to describe the well known services supported
by a particular protocol on a particular internet address. The
PROTOCOL field specifies an IP protocol number, and the bit map has
one bit per port of the specified protocol. The first bit
corresponds to port 0, the second to port 1, etc. If the bit map
does not include a bit for a protocol of interest, that bit is
assumed zero. The appropriate values and mnemonics for ports and
protocols are specified in RFC1010.
For example, if PROTOCOL=TCP (6), the 26th bit corresponds to TCP
port 25 (SMTP). If this bit is set, a SMTP server should be
listening on TCP port 25; if zero, SMTP service is not supported on
the specified address.
The purpose of WKS RRs is to provide availability information for
servers for TCP and UDP. If a server supports both TCP and UDP, or
has multiple Internet addresses, then multiple WKS RRs are used.
WKS RRs cause no additional section processing.
Section 3.5, "IN-ADDR.ARPA domain", describes reverse DNS lookups and
is clearly IPv4 dependent.
There are, of course, numerous examples of IPv4 addresses scattered
throughout the document.
Mickles & Nesser II Informational [Page 12]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
3.13. RFC 1042 Standard for the transmission of IP datagrams over IEEE
802 networks
This specification specifically deals with the transmission of IPv4
packets over IEEE 802 networks.
3.14. RFC 1044 Internet Protocol on Network System's HYPERchannel:
Protocol Specification
There are a variety of methods used in this standard to map IPv4
addresses to 32 bits fields in the HYPERchannel headers. This
specification does not support IPv6.
3.15. RFC 1055 Nonstandard for transmission of IP datagrams over serial
lines: SLIP
This specification is more of an analysis of the shortcomings of SLIP
which is unsurprising. The introduction of PPP as a general
replacement of SLIP has made this specification essentially unused.
No update need be considered.
3.16. RFC 1088 Standard for the transmission of IP datagrams over
NetBIOS networks
This specification documents a technique to encapsulate IP packets
inside NetBIOS packets.
The technique presented of using NetBIOS names of the form
IP.XX.XX.XX.XX will not work for IPv6 addresses since the length of
IPv6 addresses will not fit within the NetBIOS 15 octet name
limitation.
3.17. RFC 1112 Host Extensions for IP Multicasting
This specification defines IP multicast. Parts of the document are
IPv4 dependent.
3.18. RFC 1132 Standard for the transmission of 802.2 packets over IPX
networks
There are no IPv4 dependencies in this specification.
3.19. RFC 1201 Transmitting IP traffic over ARCNET networks
The major concerns of this specification with respect to IPv4
addresses occur in the resolution of ARCnet 8bit addresses to IPv4
addresses in an "ARPlike" method. This is incompatible with IPv6.
Mickles & Nesser II Informational [Page 13]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
3.20. RFC 1209 The Transmission of IP Datagrams over the SMDS Service
This specification defines running IPv4 and ARP over SMDS. The
methods described could easily be extended to support IPv6 packets.
3.21. RFC 1390 Transmission of IP and ARP over FDDI Networks
This specification defines the use of IPv4 address on FDDI networks.
There are numerous IPv4 dependencies in the specification.
In particular the value of the Protocol Type Code (2048 for IPv4) and
a corresponding Protocol Address length (4 bytes for IPv4) needs to
be created. A discussion of broadcast and multicast addressing
techniques is also included, and similarly must be updated for IPv6
networks. The defined MTU limitation of 4096 octets of data (with
256 octets reserved header space) should remain sufficient for IPv6.
3.22. RFC 1661 The Point-to-Point Protocol (PPP)
There are no IPv4 dependencies in this specification.
3.23. RFC 1662 PPP in HDLC-like Framing
There are no IPv4 dependencies in this specification.
3.24. RFC 2427 Multiprotocol Interconnect over Frame Relay
There are no IPv4 dependencies in this specification.
4. Draft Standards
Draft Standards represent the penultimate standard level in the IETF.
A protocol can only achieve draft standard when there are multiple,
independent, interoperable implementations. Draft Standards are
usually quite mature and widely used.
4.1. RFC 951 Bootstrap Protocol (BOOTP)
This protocol is designed specifically for use with IPv4, for
example:
Section 3. Packet Format
All numbers shown are decimal, unless indicated otherwise. The
BOOTP packet is enclosed in a standard IP UDP datagram. For
simplicity it is assumed that the BOOTP packet is never fragmented.
Any numeric fields shown are packed in 'standard network byte
order', i.e., high order bits are sent first.
Mickles & Nesser II Informational [Page 14]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
In the IP header of a bootrequest, the client fills in its own IP
source address if known, otherwise zero. When the server address is
unknown, the IP destination address will be the 'broadcast address'
255.255.255.255. This address means 'broadcast on the local cable,
(I don't know my net number)'.
FIELD BYTES DESCRIPTION
----- ----- ---
[...]
ciaddr 4 client IP address;
filled in by client in bootrequest if known.
yiaddr 4 'your' (client) IP address;
filled by server if client doesn't
know its own address (ciaddr was 0).
siaddr 4 server IP address;
returned in bootreply by server.
giaddr 4 gateway IP address,
used in optional cross-gateway booting.
Since the packet format is a fixed 300 bytes in length, an updated
version of the specification could easily accommodate an additional
48 bytes (4 IPv6 fields of 16 bytes to replace the existing 4 IPv4
fields of 4 bytes).
4.2. RFC 1188 Proposed Standard for the Transmission of IP Datagrams
over FDDI Networks
This document is clearly informally superseded by RFC 1390,
"Transmission of IP and ARP over FDDI Networks", even though no
formal deprecation has been done. Therefore, this specification is
not considered further in this memo.
4.3. RFC 1191 Path MTU discovery
The entire process of PMTU discovery is predicated on the use of the
DF bit in the IPv4 header, an ICMP message (also IPv4 dependent) and
TCP MSS option. This is not compatible with IPv6.
4.4. RFC 1356 Multiprotocol Interconnect on X.25 and ISDN
Section 3.2 defines an NLPID for IP as follows:
The value hex CC (binary 11001100, decimal 204) is IP.
Conformance with this specification requires that IP be supported.
Mickles & Nesser II Informational [Page 15]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
See section 5.1 for a diagram of the packet formats.
Clearly a new NLPID would need to be defined for IPv6 packets.
4.5. RFC 1534 Interoperation Between DHCP and BOOTP
There are no IPv4 dependencies in this specification.
4.6. RFC 1542 Clarifications and Extensions for the Bootstrap Protocol
There are no new issues other than those presented in Section 4.1.
4.7. RFC 1629 Guidelines for OSI NSAP Allocation in the Internet
There are no IPv4 dependencies in this specification.
4.8. RFC 1762 The PPP DECnet Phase IV Control Protocol (DNCP)
There are no IPv4 dependencies in this specification.
4.9. RFC 1989 PPP Link Quality Monitoring
There are no IPv4 dependencies in this specification.
4.10. RFC 1990 The PPP Multilink Protocol (MP)
Section 5.1.3, "Endpoint Discriminator Option", defines a Class
header field:
Class
The Class field is one octet and indicates the identifier address
space. The most up-to-date values of the LCP Endpoint
Discriminator Class field are specified in the most recent
"Assigned Numbers" RFC. Current values are assigned as follows:
0 Null Class
1 Locally Assigned Address
2 Internet Protocol (IP) Address
3 IEEE 802.1 Globally Assigned MAC Address
4 PPP Magic-Number Block
5 Public Switched Network Directory Number
A new class field needs to be defined by the IANA for IPv6 addresses.
Mickles & Nesser II Informational [Page 16]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
4.11. RFC 1994 PPP Challenge Handshake Authentication Protocol (CHAP)
There are no IPv4 dependencies in this specification.
4.12. RFC 2067 IP over HIPPI
Section 5.1, "Packet Formats", contains the following excerpt:
EtherType (16 bits) SHALL be set as defined in Assigned Numbers: IP
= 2048 ('0800'h), ARP = 2054 ('0806'h), RARP = 32,821 ('8035'h).
Section 5.5, "MTU", has the following definition:
The MTU for HIPPI-SC LANs is 65280 bytes.
This value was selected because it allows the IP packet to fit in
one 64K byte buffer with up to 256 bytes of overhead. The
overhead is 40 bytes at the present time; there are 216 bytes of
room for expansion.
HIPPI-FP Header 8 bytes
HIPPI-LE Header 24 bytes
IEEE 802.2 LLC/SNAP Headers 8 bytes
Maximum IP packet size (MTU) 65280 bytes
------------
Total 65320 bytes (64K - 216)
This definition is not applicable for IPv6 packets since packets can
be larger than the IPv4 limitation of 65280 bytes.
4.13. RFC 2131 Dynamic Host Configuration Protocol
This version of DHCP is highly predicated of IPv4. It is not
compatible with IPv6.
4.14. RFC 2132 DHCP Options and BOOTP Vendor Extensions
This is an extension to an IPv4-only specification.
4.15. RFC 2390 Inverse Address Resolution Protocol
There are no IPv4 dependencies in this specification.
4.16. RFC 2460 Internet Protocol, Version 6 (IPv6) Specification
This document defines IPv6 and has no IPv4 issues.
Mickles & Nesser II Informational [Page 17]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
4.17. RFC 2461 Neighbor Discovery for IP Version 6 (IPv6)
This document defines an IPv6 related specification and has no IPv4
issues.
4.18. RFC 2462 IPv6 Stateless Address Autoconfiguration
This document defines an IPv6 related specification and has no IPv4
issues.
4.19. RFC 2463 Internet Control Message Protocol (ICMPv6) for the
Internet Protocol Version 6 (IPv6) Specification
This document defines an IPv6 related specification and has no IPv4
issues.
4.20. RFC 3596 DNS Extensions to support IP version 6
This specification defines the AAAA record for IPv6 as well as PTR
records using the ip6.arpa domain, and as such has no IPv6 issues.
5. Proposed Standards
Proposed Standards are introductory level documents. There are no
requirements for even a single implementation. In many cases,
Proposed are never implemented or advanced in the IETF standards
process. They, therefore, are often just proposed ideas that are
presented to the Internet community. Sometimes flaws are exposed or
they are one of many competing solutions to problems. In these later
cases, no discussion is presented as it would not serve the purpose
of this discussion.
5.1. RFC 1234 Tunneling IPX traffic through IP networks
The section "Unicast Address Mappings" has the following text:
For implementations of this memo, the first two octets of the host
number will always be zero and the last four octets will be the
node's four octet IP address. This makes address mapping trivial
for unicast transmissions: the first two octets of the host number
are discarded, leaving the normal four octet IP address. The
encapsulation code should use this IP address as the destination
address of the UDP/IP tunnel packet.
This mapping will not be able to work with IPv6 addresses.
Mickles & Nesser II Informational [Page 18]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
There are also numerous discussions on systems keeping a "peer list"
to map between IP and IPX addresses. The specifics are not discussed
in the document and are left to the individual implementation.
The section "Maximum Transmission Unit" also has some implications on
IP addressing:
Although larger IPX packets are possible, the standard maximum
transmission unit for IPX is 576 octets. Consequently, 576 octets
is the recommended default maximum transmission unit for IPX packets
being sent with this encapsulation technique. With the eight octet
UDP header and the 20 octet IP header, the resulting IP packets will
be 604 octets long. Note that this is larger than the 576 octet
maximum size IP implementations are required to accept. Any IP
implementation supporting this encapsulation technique must be
capable of receiving 604 octet IP packets.
As improvements in protocols and hardware allow for larger,
unfragmented IP transmission units, the 576 octet maximum IPX packet
size may become a liability. For this reason, it is recommended
that the IPX maximum transmission unit size be configurable in
implementations of this memo.
5.2. RFC 1256 ICMP Router Discovery Messages
This specification defines a mechanism very specific to IPv4.
5.3. RFC 1277 Encoding Network Addresses to Support Operation over
Non-OSI Lower Layers
Section 4.5, "TCP/IP (RFC 1006) Network Specific Format" describes a
structure that reserves 12 digits for the textual representation of
an IP address.
This 12 octet field for decimal versions of IP addresses is
insufficient for a decimal version of IPv6 addresses. It is possible
to define a new encoding using the 20 digit long IP Address + Port +
Transport Set fields in order to accommodate a binary version of an
IPv6 address, port number and Transport Set. There are several
schemes that could be envisioned.
5.4. RFC 1332 The PPP Internet Protocol Control Protocol (IPCP)
This specification defines a mechanism for devices to assign IPv4
addresses to PPP clients once PPP negotiation is completed. Section
3, "IPCP Configuration Options", defines IPCP option types which
embed the IP address in 4-byte long fields. This is clearly not
enough for IPv6.
Mickles & Nesser II Informational [Page 19]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
However, the specification is clearly designed to allow new Option
Types to be added and Should offer no problems for use with IPv6 once
appropriate options have been defined.
5.5. RFC 1377 The PPP OSI Network Layer Control Protocol (OSINLCP)
There are no IPv4 dependencies in this specification.
5.6. RFC 1378 The PPP AppleTalk Control Protocol (ATCP)
There are no IPv4 dependencies in this specification.
5.7. RFC 1469 IP Multicast over Token-Ring Local Area Networks
This document defines the usage of IPv4 multicast over IEEE 802.5
Token Ring networks. This is not compatible with IPv6.
5.8. RFC 1552 The PPP Internetworking Packet Exchange Control Protocol
(IPXCP)
There are no IPv4 dependencies in this specification.
5.9. RFC 1570 PPP LCP Extensions
There are no IPv4 dependencies in this specification.
5.10. RFC 1598 PPP in X.25 PPP-X25
There are no IPv4 dependencies in this specification.
5.11. RFC 1618 PPP over ISDN
There are no IPv4 dependencies in this specification.
5.12. RFC 1663 PPP Reliable Transmission
There are no IPv4 dependencies in this specification.
5.13. RFC 1752 The Recommendation for the IP Next Generation Protocol
This document defines a road map for IPv6 development and is not
relevant to this discussion.
5.14. RFC 1755 ATM Signaling Support for IP over ATM
There are no IPv4 dependencies in this specification.
Mickles & Nesser II Informational [Page 20]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.15. RFC 1763 The PPP Banyan Vines Control Protocol (BVCP)
There are no IPv4 dependencies in this specification.
5.16. RFC 1764 The PPP XNS IDP Control Protocol (XNSCP)
There are no IPv4 dependencies in this specification.
5.17. RFC 1973 PPP in Frame Relay
There are no IPv4 dependencies in this specification.
5.18. RFC 1981 Path MTU Discovery for IP version 6
This specification describes an IPv6 related specification and is not
discussed in this document.
5.19. RFC 1982 Serial Number Arithmetic
There are no IPv4 dependencies in this specification.
5.20. RFC 1995 Incremental Zone Transfer in DNS
Although the examples used in this document use IPv4 addresses,
(i.e., A records) there is nothing in the specification to preclude
full and proper functionality using IPv6.
5.21. RFC 1996 A Mechanism for Prompt Notification of Zone Changes (DNS
NOTIFY)
There are no IPv4 dependencies in this specification.
5.22. RFC 2003 IP Encapsulation within IP
This document is designed for use in IPv4 networks. There are many
references to a specified IP version number of 4 and 32-bit
addresses. This is incompatible with IPv6.
5.23. RFC 2004 Minimal Encapsulation within IP
This document is designed for use in IPv4 networks. There are many
references to a specified IP version number of 4 and 32-bit
addresses. This is incompatible with IPv6.
5.24. RFC 2005 Applicability Statement for IP Mobility Support
This specification documents the interoperation of IPv4 Mobility
Support; this is not relevant to this discussion.
Mickles & Nesser II Informational [Page 21]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.25. RFC 2022 Support for Multicast over UNI 3.0/3.1 based ATM
Networks
This specification specifically maps IPv4 multicast in UNI based ATM
networks. This is incompatible with IPv6.
5.26. RFC 2043 The PPP SNA Control Protocol (SNACP)
There are no IPv4 dependencies in this specification.
5.27. RFC 2097 The PPP NetBIOS Frames Control Protocol (NBFCP)
There are no IPv4 dependencies in this specification.
5.28. RFC 2113 IP Router Alert Option
This document provides a new mechanism for IPv4. This is
incompatible with IPv6.
5.29. RFC 2125 The PPP Bandwidth Allocation Protocol (BAP) / The PPP
Bandwidth Allocation Control Protocol (BACP)
There are no IPv4 dependencies in this specification.
5.30. RFC 2136 Dynamic Updates in the Domain Name System (DNS UPDATE)
There are no IPv4 dependencies in this specification.
5.31. RFC 2181 Clarifications to the DNS Specification
There are no IPv4 dependencies in this specification. The only
reference to IP addresses discuss the use of an anycast address, so
but one can assume that these techniques are IPv6 operable.
5.32. RFC 2225 Classical IP and ARP over ATM
From the many references in this document, it is clear that this
document is designed for IPv4 only. It is only later in the document
that it is implicitly stated, as in:
ar$spln - length in octets of the source protocol address. Value
range is 0 or 4 (decimal). For IPv4 ar$spln is 4.
ar$tpln - length in octets of the target protocol address. Value
range is 0 or 4 (decimal). For IPv4 ar$tpln is 4.
and:
Mickles & Nesser II Informational [Page 22]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
For backward compatibility with previous implementations, a null
IPv4 protocol address may be received with length = 4 and an
allocated address in storage set to the value 0.0.0.0. Receiving
stations must be liberal in accepting this format of a null IPv4
address. However, on transmitting an ATMARP or InATMARP packet, a
null IPv4 address must only be indicated by the length set to zero
and must have no storage allocated.
5.33. RFC 2226 IP Broadcast over ATM Networks
This document is limited to IPv4 multicasting. This is incompatible
with IPv6.
5.34. RFC 2241 DHCP Options for Novell Directory Services
This is an extension to an IPv4-only specification.
5.35. RFC 2242 NetWare/IP Domain Name and Information
This is an extension to an IPv4-only specification, for example:
PREFERRED_DSS (code 6)
Length is (n * 4) and the value is an array of n IP addresses,
each four bytes in length. The maximum number of addresses is
5 and therefore the maximum length value is 20. The list
contains the addresses of n NetWare Domain SAP/RIP Server
(DSS).
NEAREST_NWIP_SERVER (code 7)
Length is (n * 4) and the value is an array of n IP addresses,
each four bytes in length. The maximum number of addresses is
5 and therefore the maximum length value is 20. The list
contains the addresses of n Nearest NetWare/IP servers.
PRIMARY_DSS (code 11)
Length of 4, and the value is a single IP address. This field
identifies the Primary Domain SAP/RIP Service server (DSS) for
this NetWare/IP domain. NetWare/IP administration utility uses
this value as Primary DSS server when configuring a secondary
DSS server.
Mickles & Nesser II Informational [Page 23]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.36. RFC 2290 Mobile-IPv4 Configuration Option for PPP IPCP
This document is designed for use with Mobile IPv4. There are
numerous referrals to other IP "support" mechanisms (i.e., ICMP
Router Discover Messages) that specifically refer to the IPv4 of
ICMP.
5.37. RFC 2308 Negative Caching of DNS Queries (DNS NCACHE)
Although there are numerous examples in this document that use IPv4
"A" records, there is nothing in the specification that limits its
effectiveness to IPv4.
5.38. RFC 2331 ATM Signaling Support for IP over ATM - UNI Signaling
4.0 Update
There are no IPv4 dependencies in this specification.
5.39. RFC 2332 NBMA Next Hop Resolution Protocol (NHRP)
This document is very generic in its design and seems to be able to
support numerous layer 3 addressing schemes and should include both
IPv4 and IPv6.
5.40. RFC 2333 NHRP Protocol Applicability
This document is very generic in its design and seems to be able to
support numerous layer 3 addressing schemes and should include both
IPv4 and IPv6.
5.41. RFC 2335 A Distributed NHRP Service Using SCSP
There are no IPv4 dependencies in this specification.
5.42. RFC 2363 PPP Over FUNI
There are no IPv4 dependencies in this specification.
5.43. RFC 2364 PPP Over AAL5
There are no IPv4 dependencies in this specification.
Mickles & Nesser II Informational [Page 24]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.44. RFC 2371 Transaction Internet Protocol Version 3.0 (TIPV3)
This document states:
TIP transaction manager addresses take the form:
<hostport><path>
The <hostport> component comprises:
<host>[:<port>]
where <host> is either a <dns name> or an <ip address>; and <port>
is a decimal number specifying the port at which the transaction
manager (or proxy) is listening for requests to establish TIP
connections. If the port number is omitted, the standard TIP port
number (3372) is used.
A <dns name> is a standard name, acceptable to the domain name
service. It must be sufficiently qualified to be useful to the
receiver of the command.
An <ip address> is an IP address, in the usual form: four decimal
numbers separated by period characters.
And further along it states:
A TIP URL takes the form:
tip://<transaction manager address>?<transaction string>
where <transaction manager address> identifies the TIP transaction
manager (as defined in Section 7 above); and <transaction string>
specifies a transaction identifier, which may take one of two
forms (standard or non-standard):
i. "urn:" <NID> ":" <NSS>
A standard transaction identifier, conforming to the proposed
Internet Standard for Uniform Resource Names (URNs), as specified
by RFC2141; where <NID> is the Namespace Identifier, and <NSS> is
the Namespace Specific String. The Namespace ID determines the
syntactic interpretation of the Namespace Specific String. The
Namespace Specific String is a sequence of characters representing
a transaction identifier (as defined by <NID>). The rules for
the contents of these fields are specified by RFC2141 (valid
characters, encoding, etc.).
Mickles & Nesser II Informational [Page 25]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
This format of <transaction string> may be used to express global
transaction identifiers in terms of standard representations.
Examples for <NID> might be <iso> or <xopen>, e.g.,
tip://123.123.123.123/?urn:xopen:xid
Note that Namespace Ids require registration.
ii. <transaction identifier>
A sequence of printable ASCII characters (octets with values in
the range 32 through 126 inclusive (excluding ":") representing a
transaction identifier. In this non-standard case, it is the
combination of <transaction manager address> and <transaction
identifier> which ensures global uniqueness, e.g.,
tip://123.123.123.123/?transid1
These are incompatible with IPv6.
5.45. RFC 2464 Transmission of IPv6 Packets over Ethernet Networks
This specification documents a method for transmitting IPv6 packets
over Ethernet and is not considered in this discussion.
5.46. RFC 2467 Transmission of IPv6 Packets over FDDI Networks
This specification documents a method for transmitting IPv6 packets
over FDDI and is not considered in this discussion.
5.47. RFC 2470 Transmission of IPv6 Packets over Token Ring Networks
This specification documents a method for transmitting IPv6 packets
over Token Ring and is not considered in this discussion.
5.48. RFC 2472 IP Version 6 over PPP
This specification documents a method for transmitting IPv6 packets
over PPP and is not considered in this discussion.
5.49. RFC 2473 Generic Packet Tunneling in IPv6 Specification
This specification documents an IPv6 aware specification and is not
considered in this discussion.
5.50. RFC 2484 PPP LCP Internationalization Configuration Option
There are no IPv4 dependencies in this specification.
Mickles & Nesser II Informational [Page 26]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.51. RFC 2485 DHCP Option for The Open Group's User Authentication
Protocol
This is an extension to an IPv4-only specification.
5.52. RFC 2486 The Network Access Identifier
There are no IPv4 dependencies in this specification.
5.53. RFC 2491 IPv6 over Non-Broadcast Multiple Access (NBMA) Networks
This specification documents a method for transmitting IPv6 packets
over NBMA networks and is not considered in this discussion.
5.54. RFC 2492 IPv6 over ATM Networks
This specification documents a method for transmitting IPv6 packets
over ATM networks and is not considered in this discussion.
5.55. RFC 2497 Transmission of IPv6 Packets over ARCnet Networks
This specification documents a method for transmitting IPv6 packets
over ARCnet networks and is not considered in this discussion.
5.56. RFC 2507 IP Header Compression
This specification is both IPv4 and IPv6 aware.
5.57. RFC 2526 Reserved IPv6 Subnet Anycast Addresses
This specification documents IPv6 addressing and is not discussed in
this document.
5.58. RFC 2529 Transmission of IPv6 over IPv4 Domains without Explicit
Tunnels
This specification documents IPv6 transmission methods and is not
discussed in this document.
5.59. RFC 2563 DHCP Option to Disable Stateless Auto-Configuration in
IPv4 Clients
This is an extension to an IPv4-only specification.
Mickles & Nesser II Informational [Page 27]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.60. RFC 2590 Transmission of IPv6 Packets over Frame Relay Networks
Specification
This specification documents IPv6 transmission method over Frame
Relay and is not discussed in this document.
5.61. RFC 2601 ILMI-Based Server Discovery for ATMARP
This specification is both IPv4 and IPv6 aware.
5.62. RFC 2602 ILMI-Based Server Discovery for MARS
This specification is both IPv4 and IPv6 aware.
5.63. RFC 2603 ILMI-Based Server Discovery for NHRP
This specification is both IPv4 and IPv6 aware.
5.64. RFC 2610 DHCP Options for Service Location Protocol
This is an extension to an IPv4-only specification.
5.65. RFC 2615 PPP over SONET/SDH
There are no IPv4 dependencies in this specification.
5.66. RFC 2625 IP and ARP over Fibre Channel
This document states:
Objective and Scope:
The major objective of this specification is to promote
interoperable implementations of IPv4 over FC. This
specification describes a method for encapsulating IPv4 and
Address Resolution Protocol (ARP) packets over FC.
This is incompatible with IPv6.
5.67. RFC 2661 Layer Two Tunneling Protocol (L2TP)
There are no IPv4 dependencies in this specification.
5.68. RFC 2671 Extension Mechanisms for DNS (EDNS0)
There are no IPv4 dependencies in this specification.
Mickles & Nesser II Informational [Page 28]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.69. RFC 2672 Non-Terminal DNS Name Redirection
This document is only defined for IPv4 addresses. An IPv6
specification may be needed.
5.70. RFC 2673 Binary Labels in the Domain Name System
This document is only defined for IPv4 addresses. An IPv6
specification may be needed.
5.71. RFC 2675 IPv6 Jumbograms
This document defines a IPv6 packet format and is therefore not
discussed in this document.
5.72. RFC 2684 Multiprotocol Encapsulation over ATM Adaptation Layer 5
There are no IPv4 dependencies in this specification.
5.73. RFC 2685 Virtual Private Networks Identifier
There are no IPv4 dependencies in this specification.
5.74. RFC 2686 The Multi-Class Extension to Multi-Link PPP
There are no IPv4 dependencies in this specification.
5.75. RFC 2687 PPP in a Real-time Oriented HDLC-like Framing
There are no IPv4 dependencies in this specification.
5.76. RFC 2688 Integrated Services Mappings for Low Speed Networks
There are no IPv4 dependencies in this specification.
5.77. RFC 2710 Multicast Listener Discovery (MLD) for IPv6
This document defines an IPv6 specific specification and is not
discussed in this document.
5.78. RFC 2711 IPv6 Router Alert Option
This document defines an IPv6 specific specification and is not
discussed in this document.
Mickles & Nesser II Informational [Page 29]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.79. RFC 2728 The Transmission of IP Over the Vertical Blanking
Interval of a Television Signal
The following data format is defined:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0| group | uncompressed IP header (20 bytes) |
+-+-+-+-+-+-+-+-+ +
| |
: .... :
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | uncompressed UDP header (8 bytes) |
+-+-+-+-+-+-+-+-+ +
| |
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | payload (<1472 bytes) |
+-+-+-+-+-+-+-+-+ +
| |
: .... :
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| CRC |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
This is incompatible with IPv6.
5.80. RFC 2734 IPv4 over IEEE 1394
This specification is IPv4 only.
5.81. RFC 2735 NHRP Support for Virtual Private Networks
This specification implies only IPv4 operations, but does not seem to
present any reason that it would not function for IPv6.
5.82. RFC 2765 Stateless IP/ICMP Translation Algorithm (SIIT)
This specification defines a method for IPv6 transition and is not
discussed in this document.
5.83. RFC 2766 Network Address Translation - Protocol Translation
(NAT-PT)
This specification defines a method for IPv6 transition and is not
discussed in this document.
Mickles & Nesser II Informational [Page 30]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.84. RFC 2776 Multicast-Scope Zone Announcement Protocol (MZAP)
This specification is both IPv4 and IPv6 aware and needs no changes.
5.85. RFC 2782 A DNS RR for specifying the location of services
There are no IPv4 dependencies in this specification.
5.86. RFC 2794 Mobile IP Network Access Identifier Extension for IPv4
This is an extension to an IPv4-only specification.
5.87. RFC 2834 ARP and IP Broadcast over HIPPI-800
This document uses the generic term "IP Address" in the text but it
also contains the text:
The HARP message has several fields that have the following format
and values:
Data sizes and field meaning:
ar$hrd 16 bits Hardware type
ar$pro 16 bits Protocol type of the protocol fields below
ar$op 16 bits Operation code (request, reply, or NAK)
ar$pln 8 bits byte length of each protocol address
ar$rhl 8 bits requester's HIPPI hardware address length (q)
ar$thl 8 bits target's HIPPI hardware address length (x)
ar$rpa 32 bits requester's protocol address
ar$tpa 32 bits target's protocol address
ar$rha qbytes requester's HIPPI Hardware address
ar$tha xbytes target's HIPPI Hardware address
Where:
ar$hrd - SHALL contain 28. (HIPARP)
ar$pro - SHALL contain the IP protocol code 2048 (decimal).
ar$op - SHALL contain the operational value (decimal):
1 for HARP_REQUESTs
2 for HARP_REPLYs
8 for InHARP_REQUESTs
9 for InHARP_REPLYs
10 for HARP_NAK
ar$pln - SHALL contain 4.
Mickles & Nesser II Informational [Page 31]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
And later:
31 28 23 21 15 10 7 2 0
+-----+---------+-+-+-----------+---------+-----+---------+-----+
0 | 04 |1|0| 000 | 03 | 0 |
+---------------+-+-+---------------------+---------------+-----+
1 | 45 |
+-----+-+-------+-----------------------+-----------------------+
2 |[LA] |W|MsgT= 0| 000 | Dest. Switch Addr |
+-----+-+-------+-----------------------+-----------------------+
3 | 2 | 2 | 000 | Source Switch Addr |
+---------------+---------------+-------+-----------------------+
4 | 00 00 | |
+-------------------------------+ |
5 | Destination ULA |
+-------------------------------+-------------------------------+
6 | [LA] | |
+-------------------------------+ |
7 | Source ULA |
+===============+===============+===============+===============+
8 | AA | AA | 03 | 00 |
+---------------+---------------+---------------+---------------+
9 | 00 | 00 | Ethertype (2054) |
+---------------+---------------+-------------------------------+
10 | hrd (28) | pro (2048) |
+---------------+---------------+---------------+---------------+
11 | op (ar$op) | pln (6) | rhl (q) |
+---------------+---------------+---------------+---------------+
12 | thl = (x) | Requester IP Address upper (24 bits) |
+---------------------------------------------------------------+
13 | Req. IP lower | Target IP Address upper (24 bits) |
+---------------+-----------------------------------------------+
14 | Tgt. IP lower | Requester HIPPI Hardware Address bytes 0 - 2 |
+---------------+-----------------------------------------------+
15 | Requester HIPPI Hardware Address bytes 3 - 6 |
+-----------------------------------------------+---------------+
16 | Requester HW Address bytes 7 - q | Tgt HW byte 0 |
+---------------+---------------+---------------+---------------+
17 | Target HIPPI Hardware Address bytes 1 - 4 |
+---------------------------------------------------------------+
18 | Target HIPPI Hardware Address bytes 5 - 8 |
+---------------+---------------+---------------+---------------+
19 |Tgt HW byte 9-x| FILL | FILL | FILL |
+---------------+---------------+---------------+---------------+
HARP - InHARP Message
This is incompatible with IPv6.
Mickles & Nesser II Informational [Page 32]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.88. RFC 2835 IP and ARP over HIPPI-6400
This document states:
The Ethertype value SHALL be set as defined in Assigned Numbers:
IP 0x0800 2048 (16 bits)
This is limited to IPv4, and similar to the previous section,
incompatible with IPv6. There are numerous other points in the
documents that confirm this assumption.
5.89. RFC 2855 DHCP for IEEE 1394
This is an extension to an IPv4-only specification.
5.90. RFC 2874 DNS Extensions to Support IPv6 Address Aggregation and
Renumbering
This document defines a specification to interact with IPv6 and is
not considered in this document.
5.91. RFC 2893 Transition Mechanisms for IPv6 Hosts and Routers
This document defines a transition mechanism for IPv6 and is not
considered in this document.
5.92. RFC 2916 E.164 number and DNS
There are no IPv4 dependencies in this specification.
5.93. RFC 2937 The Name Service Search Option for DHCP
This is an extension to an IPv4-only specification.
5.94. RFC 3004 The User Class Option for DHCP
This is an extension to an IPv4-only specification.
5.95. RFC 3011 The IPv4 Subnet Selection Option for DHCP
This is an extension to an IPv4-only specification.
5.96. RFC 3021 Using 31-Bit Prefixes for IPv4 P2P Links
This specification is specific to IPv4 address architecture, where a
modification is needed to use both addresses of a 31-bit prefix.
This is possible by IPv6 address architecture, but in most cases not
Mickles & Nesser II Informational [Page 33]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
recommended; see RFC 3627, Use of /127 Prefix Length Between Routers
Considered Harmful.
5.97. RFC 3024 Reverse Tunneling for Mobile IP, revised
This is an extension to an IPv4-only specification.
5.98. RFC 3046 DHCP Relay Agent Information Option
This is an extension to an IPv4-only specification.
5.99. RFC 3056 Connection of IPv6 Domains via IPv4 Clouds
This is an IPv6 related document and is not discussed in this
document.
5.100. RFC 3068 An Anycast Prefix for 6to4 Relay Routers
This is an IPv6 related document and is not discussed in this
document.
5.101. RFC 3070 Layer Two Tunneling Protocol (L2TP) over Frame Relay
There are no IPv4 dependencies in this specification.
5.102. RFC 3074 DHC Load Balancing Algorithm
There are no IPv4 dependencies in this specification.
5.103. RFC 3077 A Link-Layer Tunneling Mechanism for Unidirectional
Links
This specification is both IPv4 and IPv6 aware and needs no changes.
5.104. RFC 3115 Mobile IP Vendor/Organization-Specific Extensions
This is an extension to an IPv4-only specification.
5.105. RFC 3145 L2TP Disconnect Cause Information
There are no IPv4 dependencies in this specification.
5.106. RFC 3344 IP Mobility Support for IPv4
There are IPv4 dependencies in this specification.
Mickles & Nesser II Informational [Page 34]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
5.107. RFC 3376 Internet Group Management Protocol, Version 3
This document describes of version of IGMP used for IPv4 multicast.
This is not compatible with IPv6.
5.108. RFC 3402 Dynamic Delegation Discovery System (DDDS) Part Two:
The Algorithm
There are no IPv4 dependencies in this specification.
5.109. RFC 3403 Dynamic Delegation Discovery System (DDDS) Part Three:
The Domain Name System (DNS) Database
There are no IPv4 dependencies in this specification.
5.110. RFC 3513 IP Version 6 Addressing Architecture
This specification documents IPv6 addressing and is not discussed in
this document.
5.111. RFC 3518 Point-to-Point Protocol (PPP) Bridging Control
Protocol (BCP)
There are no IPv4 dependencies in this specification.
6. Experimental RFCs
Experimental RFCs typically define protocols that do not have wide
scale implementation or usage on the Internet. They are often
propriety in nature or used in limited arenas. They are documented
to the Internet community in order to allow potential
interoperability or some other potential useful scenario. In a few
cases they are presented as alternatives to the mainstream solution
to an acknowledged problem.
6.1. RFC 1149 Standard for the transmission of IP datagrams on avian
carriers
There are no IPv4 dependencies in this specification. In fact the
flexibility of this specification is such that all versions of IP
should function within its boundaries, presuming that the packets
remain small enough to be transmitted with the 256 milligrams weight
limitations.
6.2. RFC 1183 New DNS RR Definitions
There are no IPv4 dependencies in this specification.
Mickles & Nesser II Informational [Page 35]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
6.3. RFC 1226 Internet protocol encapsulation of AX.25 frames
There are no IPv4 dependencies in this specification.
6.4. RFC 1241 Scheme for an internet encapsulation protocol: Version 1
This specification defines a specification that assumes IPv4 but does
not actually have any limitations which would limit its operation in
an IPv6 environment.
6.5. RFC 1307 Dynamically Switched Link Control Protocol
This specification is IPv4 dependent, for example:
3.1 Control Message Format
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Identifier | Total length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Function | Event Status |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Endpoint 1 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Endpoint 2 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Message |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Body |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Endpoint addresses: 32 bits each
The internet addresses of the two communicating parties for which the
link is being prepared.
6.6. RFC 1393 Traceroute Using an IP Option
This document uses an IPv4 option. It is therefore limited to IPv4
networks, and is incompatible with IPv6.
6.7. RFC 1433 Directed ARP
There are no IPv4 dependencies in this specification.
Mickles & Nesser II Informational [Page 36]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
6.8. RFC 1464 Using the Domain Name System To Store Arbitrary String
Attributes
There are no IPv4 dependencies in this specification.
6.9. RFC 1475 TP/IX: The Next Internet
This document defines IPv7 and has been abandoned by the IETF as a
feasible design. It is not considered in this document.
6.10. RFC 1561 Use of ISO CLNP in TUBA Environments
This document defines the use of NSAP addressing and does not use any
version of IP, so there are no IPv4 dependencies in this
specification.
6.11. RFC 1712 DNS Encoding of Geographical Location
There are no IPv4 dependencies in this specification.
6.12. RFC 1735 NBMA Address Resolution Protocol (NARP)
This document defines a specification that is IPv4 specific, for
example:
4. Packet Formats
NARP requests and replies are carried in IP packets as protocol type
54. This section describes the packet formats of NARP requests and
replies:
NARP Request
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Version | Hop Count | Checksum |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Code | Unused |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Destination IP address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Source IP address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| NBMA length | NBMA address |
+-+-+-+-+-+-+-+-+ |
| (variable length) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Mickles & Nesser II Informational [Page 37]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
Source and Destination IP Addresses
Respectively, these are the IP addresses of the NARP requester
and the target terminal for which the NBMA address is desired.
And:
NARP Reply
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Version | Hop Count | Checksum |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Code | Unused |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Destination IP address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Source IP address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| NBMA length | NBMA address |
+-+-+-+-+-+-+-+-+ |
| (variable length) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Source and Destination IP Address
Respectively, these are the IP addresses of the NARP requester
and the target terminal for which the NBMA address is desired.
This is incompatible with IPv6.
6.13. RFC 1768 Host Group Extensions for CLNP Multicasting
This specification defines multicasting for CLNP, which is not an IP
protocol, and therefore has no IPv4 dependencies.
6.14. RFC 1788 ICMP Domain Name Messages
This specification is used for updates to the in-addr.arpa reverse
DNS maps, and is limited to IPv4.
6.15. RFC 1797 Class A Subnet Experiment
This document is specific to IPv4 address architecture, and as such,
has no IPv6 dependencies.
Mickles & Nesser II Informational [Page 38]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
6.16. RFC 1819 Internet Stream Protocol Version 2 (ST2) Protocol
Specification - Version ST2+
This specification is IPv4 limited. In fact it is the definition of
IPv5. It has been abandoned by the IETF as feasible design, and is
not considered in this discussion.
6.17. RFC 1868 ARP Extension - UNARP
This specification defines an extension to IPv4 ARP to delete entries
from ARP caches on a link.
6.18. RFC 1876 A Means for Expressing Location Information in the
Domain Name System
This document defines a methodology for applying this technology
which is IPv4 dependent. The specification itself has no IPv4
dependencies.
6.19. RFC 1888 OSI NSAPs and IPv6
This is an IPv6 related document and is not discussed in this
document.
6.20. RFC 2009 GPS-Based Addressing and Routing
The document states:
The future version of IP (IP v6) will certainly have a
sufficient number of bits in its addressing space to provide an
address for even smaller GPS addressable units. In this
proposal, however, we assume the current version of IP (IP v4)
and we make sure that we manage the addressing space more
economically than that. We will call the smallest GPS
addressable unit a GPS-square.
This specification does not seem to have real IPv4 dependencies.
6.21. RFC 2143 Encapsulating IP with the SCSI
This specification will only operate using IPv4. As stated in the
document:
It was decided that the ten byte header offers the greatest
flexibility for encapsulating version 4 IP datagrams for the
following reasons: [...]
This is incompatible with IPv6.
Mickles & Nesser II Informational [Page 39]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
6.22. RFC 2345 Domain Names and Company Name Retrieval
There are no IPv4 dependencies in this specification.
6.23. RFC 2443 A Distributed MARS Service Using SCSP
This document gives default values for use on IPv4 networks, but is
designed to be extensible so it will work with IPv6 with appropriate
IANA definitions.
6.24. RFC 2471 IPv6 Testing Address Allocation
This is an IPv6 related document and is not discussed in this
document.
6.25. RFC 2520 NHRP with Mobile NHCs
This specification is both IPv4 and IPv6 aware and needs no changes.
6.26. RFC 2521 ICMP Security Failures Messages
There are no IPv4 dependencies in this specification.
6.27. RFC 2540 Detached Domain Name System (DNS) Information
There are no IPv4 dependencies in this specification.
6.28. RFC 2823 PPP over Simple Data Link (SDL) using SONET/SDH with
ATM-like framing
There are no IPv4 dependencies in this specification.
6.29. RFC 3123 A DNS RR Type for Lists of Address Prefixes
This specification is both IPv4 and IPv6 aware and needs no changes.
6.30. RFC 3168 The Addition of Explicit Congestion Notification (ECN)
to IP
This specification is both IPv4 and IPv6 aware and needs no changes.
6.31. RFC 3180 GLOP Addressing in 233/8
This document is specific to IPv4 multicast addressing.
Mickles & Nesser II Informational [Page 40]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
7. Summary of the Results
In the initial survey of RFCs 52 positives were identified out of a
total of 186, broken down as follows:
Standards: 17 out of 24 or 70.83%
Draft Standards: 6 out of 20 or 30.00%
Proposed Standards: 22 out of 111 or 19.91%
Experimental RFCs: 7 out of 31 or 22.58%
Of those identified many require no action because they document
outdated and unused protocols, while others are document protocols
that are actively being updated by the appropriate working groups.
Additionally there are many instances of standards that should be
updated but do not cause any operational impact if they are not
updated.
7.1. Standards
7.1.1. RFC 791 Internet Protocol
RFC 791 has been updated in the definition of IPv6 in RFC 2460.
7.1.2. RFC 792 Internet Control Message Protocol
RFC 792 has been updated in the definition of ICMPv6 in RFC 2463.
7.1.3. RFC 891 DCN Networks
DCN has long since been ceased to be used, so this specification is
no longer relevant.
7.1.4. RFC 894 IP over Ethernet
This problem has been fixed by RFC 2464, A Method for the
Transmission of IPv6 Packets over Ethernet Networks.
7.1.5. RFC 895 IP over experimental Ethernets
It is believed that experimental Ethernet networks are not being used
anymore, so the specification is no longer relevant.
7.1.6. RFC 922 Broadcasting Internet Datagrams in the Presence of
Subnets
Broadcasting is not used in IPv6, but similar functionality has been
included in RFC 3513, IPv6 Addressing Architecture.
Mickles & Nesser II Informational [Page 41]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
7.1.7. RFC 950 Internet Standard Subnetting Procedure
Broadcasting is not used in IPv6, but similar functionality has been
included in RFC 3513, IPv6 Addressing Architecture.
7.1.8. RFC 1034 Domain Names: Concepts and Facilities
The problems have been fixed by defining new resource records for
IPv6 addresses.
7.1.9. RFC 1035 Domain Names: Implementation and Specification
The problems have been fixed by defining new resource records for
IPv6 addresses.
7.1.10. RFC 1042 IP over IEEE 802
This problem has been fixed by RFC 2470, Transmission of IPv6 Packets
over Token Ring Networks.
7.1.11. RFC 1044 IP over HyperChannel
No updated document exists for this specification. It is unclear
whether one is needed.
7.1.12. RFC 1088 IP over NetBIOS
No updated document exists for this specification. It is unclear
whether one is needed.
7.1.13. RFC 1112 Host Extensions for IP Multicast
The IPv4-specific parts of RFC 1112 have been updated in RFC 2710,
Multicast Listener Discovery for IPv6.
7.1.14. RFC 1122 Requirements for Internet Hosts
RFC 1122 is essentially a requirements document for IPv4 hosts.
Similar work is in progress [2].
7.1.15. RFC 1201 IP over ARCNET
This problem has been fixed by RFC 2497, A Method for the
Transmission of IPv6 Packets over ARCnet Networks.
Mickles & Nesser II Informational [Page 42]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
7.1.16. RFC 1209 IP over SMDS
No updated document exists for this specification. It is unclear
whether one is needed.
7.1.17. RFC 1390 Transmission of IP and ARP over FDDI Networks
This problem has been fixed by RFC 2467, Transmission of IPv6 Packets
over FDDI Networks.
7.2. Draft Standards
7.2.1. RFC 951 Bootstrap Protocol (BOOTP)
This problem has been fixed by RFC 2462, IPv6 Stateless Address
Autoconfiguration, and RFC 3315, Dynamic Host Configuration Protocol
for IPv6 (DHCPv6).
7.2.2. RFC 1191 Path MTU Discovery
This problem has been fixed in RFC 1981, Path MTU Discovery for IP
version 6.
7.2.3. RFC 1356 Multiprotocol Interconnect on X.25 and ISDN
This problem can be fixed by defining a new NLPID for IPv6. Note
that an NLPID has already been defined in RFC 2427, Multiprotocol
Interconnect over Frame Relay.
7.2.4. RFC 1990 The PPP Multilink Protocol (MP)
A new class identifier ("6") for IPv6 packets has been registered
with the IANA by the original author, fixing this problem.
7.2.5. RFC 2067 IP over HIPPI
No updated document exists for this specification. It is unclear
whether one is needed.
7.2.6. RFC 2131 DHCP
This problem has been fixed in RFC 3315, Dynamic Host Configuration
Protocol for IPv6 (DHCPv6).
Further, the consensus of the DHC WG has been that the options
defined for DHCPv4 will not be automatically "carried forward" to
DHCPv6. Therefore, any further analysis of additionally specified
DHCPv4 Options has been omitted from this memo.
Mickles & Nesser II Informational [Page 43]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
7.3. Proposed Standards
7.3.1. RFC 1234 Tunneling IPX over IP
No updated document exists for this specification. In practice, the
similar effect can be achieved by the use of a layer 2 tunneling
protocol. It is unclear whether an updated document is needed.
7.3.2. RFC 1256 ICMP Router Discovery
This problem has been resolved in RFC 2461, Neighbor Discovery for IP
Version 6 (IPv6).
7.3.3. RFC 1277 Encoding Net Addresses to Support Operation Over Non
OSI Lower Layers
No updated document exists for this specification; the problem might
be resolved by the creation of a new encoding scheme if necessary.
It is unclear whether an update is needed.
7.3.4. RFC 1332 PPP Internet Protocol Control Protocol (IPCP)
This problem has been resolved in RFC 2472, IP Version 6 over PPP.
7.3.5. RFC 1469 IP Multicast over Token Ring
The functionality of this specification has been essentially covered
in RFC 2470, Transmission of IPv6 Packets over Token Ring Networks.
7.3.6. RFC 2003 IP Encapsulation within IP
This problem has been fixed by defining different IP-in-IP
encapsulation, for example, RFC 2473, Generic Packet Tunneling in
IPv6 Specification.
7.3.7. RFC 2004 Minimal Encapsulation within IP
No updated document exists for this specification. It is unclear
whether one is needed.
7.3.8. RFC 2022 Support for Multicast over UNI 3.0/3.1 based ATM
Networks
No updated document exists for this specification. It is unclear
whether one is needed.
Mickles & Nesser II Informational [Page 44]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
7.3.9. RFC 2113 IP Router Alert Option
This problem has been fixed in RFC 2711, IPv6 Router Alert Option.
7.3.10. RFC 2165 SLP
The problems have been addressed in RFC 3111, Service Location
Protocol Modifications for IPv6.
7.3.11. RFC 2225 Classical IP & ARP over ATM
The problems have been resolved in RFC 2492, IPv6 over ATM Networks.
7.3.12. RFC 2226 IP Broadcast over ATM
The problems have been resolved in RFC 2492, IPv6 over ATM Networks.
7.3.13. RFC 2371 Transaction IPv3
No updated document exists for this specification. It is unclear
whether one is needed.
7.3.14. RFC 2625 IP and ARP over Fibre Channel
There is work in progress to fix these problems
7.3.15. RFC 2672 Non-Terminal DNS Redirection
No updated document exists for this specification. It is unclear
whether one is needed.
7.3.16. RFC 2673 Binary Labels in DNS
No updated document exists for this specification. It is unclear
whether one is needed.
7.3.17. IP over Vertical Blanking Interval of a TV Signal (RFC 2728)
No updated document exists for this specification. It is unclear
whether one is needed.
7.3.18. RFC 2734 IPv4 over IEEE 1394
This problem has been fixed by RFC 3146, Transmission of IPv6 Packets
Over IEEE 1394 Networks.
Mickles & Nesser II Informational [Page 45]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
7.3.19. RFC 2834 ARP & IP Broadcasts Over HIPPI 800
No updated document exists for this specification. It is unclear
whether one is needed.
7.3.20. RFC 2835 ARP & IP Broadcasts Over HIPPI 6400
No updated document exists for this specification. It is unclear
whether one is needed.
7.3.21. RFC 3344 Mobility Support for IPv4
The problems have been resolved by RFC 3775 and RFC 3776 [3, 4].
Since the first Mobile IPv4 specification in RFC 2002, a number of
extensions to it have been specified. As all of these depend on
MIPv4, they have been omitted from further analysis in this memo.
7.3.22. RFC 3376 Internet Group Management Protocol, Version 3
This problem is being fixed by MLDv2 specification [5].
7.4. Experimental RFCs
7.4.1. RFC 1307 Dynamically Switched Link Control Protocol
No updated document exists for this specification. It is unclear
whether one is needed.
7.4.2. RFC 1393 Traceroute using an IP Option
This specification relies on the use of an IPv4 option. No
replacement document exists, and it is unclear whether one is needed.
7.4.3. RFC 1735 NBMA Address Resolution Protocol (NARP)
This functionality has been defined in RFC 2491, IPv6 over Non-
Broadcast Multiple Access (NBMA) networks and RFC 2332, NBMA Next Hop
Resolution Protocol (NHRP).
7.4.4. RFC 1788 ICMP Domain Name Messages
No updated document exists for this specification. However, DNS
Dynamic Updates should provide similar functionality, so an update
does not seem necessary.
Mickles & Nesser II Informational [Page 46]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
7.4.5. RFC 1868 ARP Extension - UNARP
This mechanism defined a mechanism to purge ARP caches on a link.
That functionality already exists in RFC 2461, Neighbor Discovery for
IPv6.
7.4.6. RFC 2143 IP Over SCSI
No updated document exists for this specification. It is unclear
whether one is needed.
7.4.7. RFC 3180 GLOP Addressing in 233/8
Similar functionality is provided by RFC 3306, Unicast-Prefix-based
IPv6 Multicast Addresses, and no action is necessary.
8. Security Considerations
This memo examines the IPv6-readiness of specifications; this does
not have security considerations in itself.
9. Acknowledgements
The author would like to acknowledge the support of the Internet
Society in the research and production of this document.
Additionally the author would like to thanks his partner in all ways,
Wendy M. Nesser.
The editor, Cleveland Mickles, would like to thank Steve Bellovin and
Russ Housley for their comments and Pekka Savola for his comments and
guidance during the editing of this document. Additionally, he would
like to thank his wife, Lesia, for her patient support.
Pekka Savola helped in editing the latest versions of the document.
10. References
10.1. Normative References
[1] Nesser II, P. and A. Bergstrom, Editor, "Introduction to the
Survey of IPv4 Addresses in Currently Deployed IETF Standards",
RFC 3789, June 2004.
Mickles & Nesser II Informational [Page 47]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
10.2 Informative References
[2] Loughney, J., Ed., "IPv6 Node Requirements", Work in Progress,
January 2004.
[3] Johnson, D., Perkins, C. and J. Arkko, "Mobility Support in
IPv6", RFC 3775, June 2004.
[4] Arkko, J., Devarapalli, V. and F. Dupont, "Using IPsec to
Protect Mobile IPv6 Signaling Between Mobile Nodes and Home
Agents", RFC 3776, June 2004.
[5] Vida, R. and L. Costa, Eds., "Multicast Listener Discovery
Version 2 (MLDv2) for IPv6", RFC 3810, June 2004.
11. Authors' Addresses
Cleveland Mickles, Editor
Reston, VA 20191
USA
EMail: cmickles.ee88@gtalumni.org
Philip J. Nesser II
Nesser & Nesser Consulting
13501 100th Ave NE, #5202
Kirkland, WA 98034
USA
EMail: phil@nesser.com
Mickles & Nesser II Informational [Page 48]
^L
RFC 3790 IPv4 Addresses in the IETF Internet Area June 2004
12. Full Copyright Statement
Copyright (C) The Internet Society (2004). This document is subject
to the rights, licenses and restrictions contained in BCP 78, and
except as set forth therein, the authors retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE
REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE
INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed
to pertain to the implementation or use of the technology
described in this document or the extent to which any license
under such rights might or might not be available; nor does it
represent that it has made any independent effort to identify any
such rights. Information on the procedures with respect to
rights in RFC documents can be found in BCP 78 and BCP 79.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use
of such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository
at http://www.ietf.org/ipr.
The IETF invites any interested party to bring to its attention
any copyrights, patents or patent applications, or other
proprietary rights that may cover technology that may be required
to implement this standard. Please address the information to the
IETF at ietf-ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Mickles & Nesser II Informational [Page 49]
^L
|