1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
|
Internet Engineering Task Force (IETF) S. Frankel
Request for Comments: 6071 NIST
Obsoletes: 2411 S. Krishnan
Category: Informational Ericsson
ISSN: 2070-1721 February 2011
IP Security (IPsec) and Internet Key Exchange (IKE) Document Roadmap
Abstract
Over the past few years, the number of RFCs that define and use IPsec
and Internet Key Exchange (IKE) has greatly proliferated. This is
complicated by the fact that these RFCs originate from numerous IETF
working groups: the original IPsec WG, its various spin-offs, and
other WGs that use IPsec and/or IKE to protect their protocols'
traffic.
This document is a snapshot of IPsec- and IKE-related RFCs. It
includes a brief description of each RFC, along with background
information explaining the motivation and context of IPsec's
outgrowths and extensions. It obsoletes RFC 2411, the previous "IP
Security Document Roadmap."
The obsoleted IPsec roadmap (RFC 2411) briefly described the
interrelationship of the various classes of base IPsec documents.
The major focus of RFC 2411 was to specify the recommended contents
of documents specifying additional encryption and authentication
algorithms.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Not all documents
approved by the IESG are a candidate for any level of Internet
Standard; see Section 2 of RFC 5741.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
http://www.rfc-editor.org/info/rfc6071.
Frankel & Krishnan Informational [Page 1]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
Copyright Notice
Copyright (c) 2011 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
Table of Contents
1. Introduction ....................................................4
2. IPsec/IKE Background Information ................................5
2.1. Interrelationship of IPsec/IKE Documents ...................5
2.2. Versions of IPsec ..........................................6
2.2.1. Differences between "Old" IPsec (IPsec-v2) and
"New" IPsec (IPsec-v3) ..............................6
2.3. Versions of IKE ............................................7
2.3.1. Differences between IKEv1 and IKEv2 .................8
2.4. IPsec and IKE IANA Registries ..............................9
3. IPsec Documents .................................................9
3.1. Base Documents .............................................9
3.1.1. "Old" IPsec (IPsec-v2) ..............................9
3.1.2. "New" IPsec (IPsec-v3) .............................11
3.2. Additions to IPsec ........................................11
3.3. General Considerations ....................................14
4. IKE Documents ..................................................15
4.1. Base Documents ............................................15
4.1.1. IKEv1 ..............................................15
4.1.2. IKEv2 ..............................................16
Frankel & Krishnan Informational [Page 2]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
4.2. Additions and Extensions ..................................17
4.2.1. Peer Authentication Methods ........................17
4.2.2. Certificate Contents and Management (PKI4IPsec) ....18
4.2.3. Dead Peer Detection ................................19
4.2.4. Remote Access ......................................19
5. Cryptographic Algorithms and Suites ............................21
5.1. Algorithm Requirements ....................................22
5.2. Encryption Algorithms .....................................23
5.3. Integrity-Protection (Authentication) Algorithms ..........27
5.4. Combined Mode Algorithms ..................................30
5.5. Pseudo-Random Functions (PRFs) ............................33
5.6. Cryptographic Suites ......................................34
5.7. Diffie-Hellman Algorithms .................................35
6. IPsec/IKE for Multicast ........................................36
7. Outgrowths of IPsec/IKE ........................................38
7.1. IPsec Policy ..............................................38
7.2. IPsec MIBs ................................................39
7.3. IPComp (Compression) ......................................39
7.4. Better-Than-Nothing Security (BTNS) .......................39
7.5. Kerberized Internet Negotiation of Keys (KINK) ............40
7.6. IPsec Secure Remote Access (IPSRA) ........................41
7.7. IPsec Keying Information Resource Record (IPSECKEY) .......42
8. Other Protocols That Use IPsec/IKE .............................42
8.1. Mobile IP (MIPv4 and MIPv6) ...............................42
8.2. Open Shortest Path First (OSPF) ...........................44
8.3. Host Identity Protocol (HIP) ..............................45
8.4. Stream Control Transmission Protocol (SCTP) ...............46
8.5. Robust Header Compression (ROHC) ..........................46
8.6. Border Gateway Protocol (BGP) .............................47
8.7. IPsec Benchmarking ........................................47
8.8. Network Address Translators (NAT) .........................48
8.9. Session Initiation Protocol (SIP) .........................48
8.10. Explicit Packet Sensitivity Labels .......................49
9. Other Protocols That Adapt IKE for Non-IPsec Functionality .....49
9.1. Extensible Authentication Protocol (EAP) ..................49
9.2. Fibre Channel .............................................49
9.3. Wireless Security .........................................50
10. Acknowledgements ..............................................50
11. Security Considerations .......................................50
12. References ....................................................50
12.1. Informative References ...................................50
Appendix A. Summary of Algorithm Requirement Levels ..............61
Frankel & Krishnan Informational [Page 3]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
1. Introduction
IPsec (Internet Protocol Security) is a suite of protocols that
provides security to Internet communications at the IP layer. The
most common current use of IPsec is to provide a Virtual Private
Network (VPN), either between two locations (gateway-to-gateway) or
between a remote user and an enterprise network (host-to-gateway); it
can also provide end-to-end, or host-to-host, security. IPsec is
also used by other Internet protocols (e.g., Mobile IP version 6
(MIPv6)) to protect some or all of their traffic. IKE (Internet Key
Exchange) is the key negotiation and management protocol that is most
commonly used to provide dynamically negotiated and updated keying
material for IPsec. IPsec and IKE can be used in conjunction with
both IPv4 and IPv6.
In addition to the base documents for IPsec and IKE, there are
numerous RFCs that reference, extend, and in some cases alter the
core specifications. This document obsoletes [RFC2411]. It attempts
to list and briefly describe those RFCs, providing context and
rationale where indicated. The title of each RFC is followed by a
letter that indicates its category in the RFC series [RFC2026], as
follows:
o S: Standards Track (Proposed Standard, Draft Standard, or
Standard)
o E: Experimental
o B: Best Current Practice
o I: Informational
For each RFC, the publication date is also given.
This document also categorizes the requirements level of each
cryptographic algorithm for use with IKEv1, IKEv2, IPsec-v2, and
IPsec-v3. These requirements are summarized in Appendix A. These
levels are current as of February 2011; subsequent RFCs may result in
altered requirement levels.
This document does not define requirement levels; it simply restates
those found in the IKE and IPsec RFCs. If there is a conflict
between this document and any other RFC, then the other RFC takes
precedence.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [RFC2119].
Frankel & Krishnan Informational [Page 4]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
2. IPsec/IKE Background Information
2.1. Interrelationship of IPsec/IKE Documents
The main documents describing the set of IPsec protocols are divided
into seven groups. This is illustrated in Figure 1. There is a main
Architecture document that broadly covers the general concepts,
security requirements, definitions, and mechanisms defining IPsec
technology.
There are an Encapsulating Security Payload (ESP) Protocol document
and an Authentication Header (AH) Protocol document that cover the
packet format and general issues regarding the respective protocols.
The "Encryption Algorithm" document set, shown on the left, is the
set of documents describing how various encryption algorithms are
used for ESP. The "Combined Algorithm" document set, shown in the
middle, is the set of documents describing how various combined mode
algorithms are used to provide both encryption and integrity
protection for ESP. The "Integ-Protection Algorithm" document set,
shown on the right, is the set of documents describing how various
integrity-protection algorithms are used for both ESP and AH.
The "IKE" documents, shown at the bottom, are the documents
describing the IETF Standards-Track key management schemes.
Frankel & Krishnan Informational [Page 5]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
+--------------+
| Architecture |
+--------------+
v v
+<-<-<-<-<-<-<-<-+ +->->->->->->->->+
v v
+----------+ +----------+
| ESP | | AH |
| Protocol | | Protocol |
+----------+ +----------+
v v v v
v +->->->->->->->->+->->->->->->->->+ v v
v v v v v v
v v v v v v
v +------------+ +-----------+ +----------------+ v
v | +------------+ | +------------+ | +----------------+ v
v | | Encryption | | | Combined | | |Integ-Protection| v
v +-| Algorithm | +-| Algorithm | +-| Algorithm | v
v +------------+ +------------+ +----------------+ v
v v v v v
v v v v v
+>->->->-+->->->->->->->->->--<-<-<-<-<-<-<-<-<-+-<-<-<-<-+
^
^
+------------+
| IKE |
| Protocol |
+------------+
Figure 1. IPsec/IKE Document Interrelationships
2.2. Versions of IPsec
Two versions of IPsec can currently be found in implementations. The
"new" IPsec (referred to as IPsec-v3 in this document; see Section
3.1.1 for the RFC descriptions) obsoleted the "old" IPsec (referred
to as IPsec-v2 in this document; see Section 3.1.2 for the RFC
descriptions); however, IPsec-v2 is still commonly found in
operational use. In this document, when the unqualified term IPsec
is used, it pertains to both versions of IPsec. An earlier version
of IPsec (defined in RFCs 1825-1829), obsoleted by IPsec-v2, is not
covered in this document.
2.2.1. Differences between "Old" IPsec (IPsec-v2) and "New" IPsec
(IPsec-v3)
IPsec-v3 incorporates "lessons learned" from implementation and
operational experience with IPsec-v2 and its predecessor, IPsec-v1.
Frankel & Krishnan Informational [Page 6]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
Knowledge was gained about the barriers to IPsec deployment, the
scenarios in which IPsec is most effective, and the requirements that
needed to be added to IPsec to facilitate its use with other
protocols. In addition, the documentation for IPsec-v3 clarifies and
expands details that were underspecified or ambiguous in IPsec-v2.
Changes to the architecture document [RFC4301] include:
o More detailed descriptions of IPsec processing, both unicast and
multicast, and the interactions among the various IPsec
databases
o In IPsec-v2, an SA (Security Association) is uniquely identified
by a combination of the SPI (Security Parameters Index),
protocol (ESP or AH) and the destination address. In IPsec-v3,
a unicast SA is uniquely identified by the SPI and, optionally,
by the protocol; a multicast SA is identified by a combination
of the SPI and the destination address and, optionally, the
source address.
o More flexible SPD (Security Policy Database) selectors,
including ranges of values and ICMP message types as selectors
o Decorrelated (order-independent) SAD (Security Association
Database) replaced the former ordered SAD
o Extended sequence numbers (ESNs) were added
o Mandatory algorithms defined in standalone document
o AH [RFC4302] is mandatory to implement (MUST) in IPsec-v2,
optional (MAY) in IPsec-v3
Changes to ESP [RFC4303] include:
o Combined mode algorithms were added, necessitating changes to
packet format and processing
o NULL authentication, mandatory (MUST) in ESP-v2, is optional
(MAY) in ESP-v3
2.3. Versions of IKE
Two versions of IKE can currently be found in implementations. The
"new" IKE (generally referred to as IKEv2) obsoleted the "old" IKE
(generally referred to as IKEv1); however, IKEv1 is still commonly
found in operational use. In this document, when the unqualified
term IKE is used, it pertains to both versions of IKE.
Frankel & Krishnan Informational [Page 7]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
2.3.1. Differences between IKEv1 and IKEv2
As with IPsec-v3, IKEv2 incorporates "lessons learned" from
implementation and operational experience with IKEv1. Knowledge was
gained about the barriers to IKE deployment, the scenarios in which
IKE is most effective, and the requirements that needed to be added
to IKE to facilitate its use with other protocols as well as in
general-purpose use. The documentation for IKEv2 replaces multiple,
at times contradictory, documents with a single document; it also
clarifies and expands details that were underspecified or ambiguous
in IKEv1.
Once an IKE negotiation is successfully completed, the peers have
established two pairs of one-way (inbound and outbound) SAs. Since
IKE always negotiates pairs of SAs, the term "SA" is generally used
to refer to a pair of SAs (e.g., an "IKE SA" or an "IPsec SA" is in
reality a pair of one-way SAs). The first SA, the IKE SA, is used to
protect IKE traffic. The second SA provides IPsec protection to data
traffic between the peers and/or other devices for which the peers
are authorized to negotiate. It is called the IPsec SA in IKEv1 and,
in the IKEv2 RFCs, it is referred to variously as a CHILD_SA, a child
SA, and an IPsec SA. This document uses the term "IPsec SA". To
further complicate the terminology, since IKEv1 consists of two
sequential negotiations, called phases, the IKE SA is also referred
to as a Phase 1 SA and the IPsec SA is referred to as a Phase 2 SA.
Changes to IKE include:
o Replaced multiple alternate exchange types with a single,
shorter exchange
o Streamlined negotiation format to avoid combinatorial bloat for
multiple proposals
o Protect responder from committing significant resources to the
exchange until the initiator's existence and identity are
confirmed
o Reliable exchanges: every request expects a response
o Protection of IKE messages based on ESP, rather than a method
unique to IKE
o Add traffic selectors: distinct from peer IDs and more flexible
o Support of EAP-based authentication methods and asymmetric
authentication (i.e., initiator and responder can use different
authentication methods)
Frankel & Krishnan Informational [Page 8]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
2.4. IPsec and IKE IANA Registries
Numerous IANA registries contain values that are used in IPsec, IKE,
and related protocols. They include:
o IKE Attributes
(http://www.iana.org/assignments/ipsec-registry): values used
during IKEv1 Phase 1 exchanges, defined in [RFC2409].
o "Magic Numbers" for Internet Security Association and Key
Management Protocol (ISAKMP)
(http://www.iana.org/assignments/isakmp-registry): values used
during IKEv1 Phase 2 exchanges, defined in [RFC2407],
[RFC2408], and numerous other cryptographic algorithm RFCs.
o IKEv2 Parameters
(http://www.iana.org/assignments/ikev2-parameters): values used
in IKEv2 exchanges, defined in [RFC5996] and numerous other
cryptographic algorithm RFCs.
o Cryptographic Suites for IKEv1, IKEv2, and IPsec
(http://www.iana.org/assignments/crypto-suites): names of
cryptographic suites in [RFC4308] and [RFC4869].
3. IPsec Documents
3.1. Base Documents
IPsec protections are provided by two special headers: the
Encapsulating Security Payload (ESP) Header and the Authentication
Header (AH). In IPv4, these headers take the form of protocol
headers; in IPv6, they are classified as extension headers. There
are three base IPsec documents: one that describes the IP security
architecture, and one for each of the IPsec headers.
3.1.1. "Old" IPsec (IPsec-v2)
3.1.1.1. RFC 2401, Security Architecture for the Internet Protocol
(S, November 1998)
[RFC2401] specifies the mechanisms, procedures, and components
required to provide security services at the IP layer. It also
describes their interrelationship and the general processing required
to inject IPsec protections into the network architecture.
Frankel & Krishnan Informational [Page 9]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
The components include:
- SA (Security Association): a one-way (inbound or outbound)
agreement between two communicating peers that specifies the
IPsec protections to be provided to their communications. This
includes the specific security protections, cryptographic
algorithms, and secret keys to be applied, as well as the
specific types of traffic to be protected.
- SPI (Security Parameters Index): a value that, together with the
destination address and security protocol (AH or ESP), uniquely
identifies a single SA.
- SAD (Security Association Database): each peer's SA repository.
The RFC describes how this database functions (SA lookup, etc.)
and the types of information it must contain to facilitate SA
processing; it does not dictate the format or layout of the
database. SAs can be established in either transport mode or
tunnel mode (see below).
- SPD (Security Policy Database): an ordered database that
expresses the security protections to be afforded to different
types and classes of traffic. The three general classes of
traffic are traffic to be discarded, traffic that is allowed
without IPsec protection, and traffic that requires IPsec
protection.
RFC 2401 describes general inbound and outbound IPsec processing; it
also includes details on several special cases: packet fragments,
ICMP messages, and multicast traffic.
3.1.1.2. RFC 2402, IP Authentication Header (S, November 1998)
[RFC2402] defines the Authentication Header (AH), which provides
integrity protection; it also provides data-origin authentication,
access control, and, optionally, replay protection. A transport mode
AH SA, used to protect peer-to-peer communications, protects upper-
layer data, as well as those portions of the IP header that do not
vary unpredictably during packet delivery. A tunnel mode AH SA can
be used to protect gateway-to-gateway or host-to-gateway traffic; it
can optionally be used for host-to-host traffic. This class of AH SA
protects the inner (original) header and upper-layer data, as well as
those portions of the outer (tunnel) header that do not vary
unpredictably during packet delivery. Because portions of the IP
header are not included in the AH calculations, AH processing is more
complex than ESP processing. AH also does not work in the presence
of Network Address Translation (NAT). Unlike IPsec-v3, IPsec-v2
classifies AH as mandatory to implement.
Frankel & Krishnan Informational [Page 10]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
3.1.1.3. RFC 2406, IP Encapsulating Security Payload (ESP)
(S, November 1998)
[RFC2406] defines the IP Encapsulating Security Payload (ESP), which
provides confidentiality (encryption) and/or integrity protection; it
also provides data-origin authentication, access control, and,
optionally, replay and/or traffic analysis protection. A transport
mode ESP SA protects the upper-layer data, but not the IP header. A
tunnel mode ESP SA protects the upper-layer data and the inner
header, but not the outer header.
3.1.2. "New" IPsec (IPsec-v3)
3.1.2.1. RFC 4301, Security Architecture for the Internet Protocol
(S, December 2005)
[RFC4301] obsoletes [RFC2401], and it includes a more complete and
detailed processing model. The most notable changes are detailed
above in Section 2.2.1. IPsec-v3 processing incorporates an
additional database:
- PAD (Peer Authorization Database): contains information
necessary to conduct peer authentication, providing a link
between IPsec and the key management protocol (e.g., IKE)
3.1.2.2. RFC 4302, IP Authentication Header (S, December 2005)
[RFC4302] obsoletes [RFC2402]. Unlike IPsec-v2, IPsec-v3 classifies
AH as optional.
3.1.2.3. RFC 4303, IP Encapsulating Security Payload (ESP)
(S, December 2005)
[RFC4303] obsoletes [RFC2406]. The most notable changes are detailed
above in Section 2.2.1.
3.2. Additions to IPsec
Once the IKEv1 and IPsec-v2 RFCs were finalized, several additions
were defined in separate documents: negotiation of NAT traversal,
extended sequence numbers, UDP encapsulation of ESP packets,
opportunistic encryption, and IPsec-related ICMP messages.
Additional uses of IPsec transport mode were also described:
protection of manually configured IPv6-in-IPv4 tunnels and protection
of IP-in-IP tunnels. These documents describe atypical uses of IPsec
transport mode, but do not define any new IPsec features.
Frankel & Krishnan Informational [Page 11]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
Once the original IPsec Working Group concluded, additional IPsec-
related issues were handled by the IPsecME (IPsec Maintenance and
Extensions) Working Group. One such problem is the capability of
middleboxes to distinguish unencrypted ESP packets (ESP-NULL) from
encrypted ones in a fast and accurate manner. Two solutions are
described: a new protocol that requires changes to IKEv2 and IPsec-v3
and a heuristic method that imposes no new requirements. Another
issue that was addressed is the problem of using IKE and IPsec in a
high-availability environment.
3.2.1. RFC 3947, Negotiation of NAT-Traversal in the IKE
(S, January 2005)
[RFC3947] defines an optional extension to IKEv1. It enables IKEv1
to detect whether there are any NATs between the negotiating peers
and whether both peers support NAT traversal. It also describes how
IKEv1 can be used to negotiate the use of UDP encapsulation of ESP
packets for the IPsec SA. For IKEv2, this capability is described in
[RFC5996].
3.2.2. RFC 3948, UDP Encapsulation of IPsec ESP Packets
(S, January 2005)
[RFC3948] is an optional extension for IPsec-v2 and IPsec-v3. It
defines how to encapsulate ESP packets in UDP packets to enable the
traversal of NATs that discard packets with protocols other than UDP
or TCP. This makes it possible for ESP packets to pass through the
NAT device without requiring any change to the NAT device itself.
The use of this solution is negotiated by IKE, as described in
[RFC3947] for IKEv1 and [RFC5996] for IKEv2.
3.2.3. RFC 4304, Extended Sequence Number (ESN) Addendum to IPsec
Domain of Interpretation (DOI) for Internet Security Association
and Key Management Protocol (ISAKMP) (S, December 2005)
The use of ESNs allows IPsec to use 64-bit sequence numbers for
replay protection, but to send only 32 bits of the sequence number in
the packet, enabling shorter packets and avoiding a redesign of the
packet format. The larger sequence numbers allow an existing IPsec
SA to be used for larger volumes of data. [RFC4304] describes an
optional extension to IKEv1 that enables IKEv1 to negotiate the use
of ESNs for IPsec SAs. For IKEv2, this capability is described in
[RFC5996].
Frankel & Krishnan Informational [Page 12]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
3.2.4. RFC 4322, Opportunistic Encryption using the Internet Key
Exchange (IKE) (I, December 2005)
Opportunistic encryption allows a pair of end systems to use
encryption without any specific pre-arrangements. [RFC4322]
specifies a mechanism that uses DNS to distribute the public keys of
each system involved and uses DNS Security (DNSSEC) to secure the
mechanism against active attackers. It specifies the changes that
are needed in existing IPsec and IKE implementations. The majority
of the changes are needed in the IKE implementation and these changes
relate to the handling of key acquisition requests, the lookup of
public keys and TXT records, and the interactions with firewalls and
other security facilities that may be co-resident on the same
gateway.
3.2.5. RFC 4891, Using IPsec to Secure IPv6-in-IPv4 Tunnels
(I, May 2007)
[RFC4891] describes how to use IKE and transport-mode IPsec to
provide security protection to manually configured IPv6-in-IPv4
tunnels. This document uses standard IKE and IPsec, without any new
extensions. It does not apply to tunnels that are initiated in an
automated manner (e.g., 6to4 tunnels [RFC3056]).
3.2.6. RFC 3884, Use of IPsec Transport Mode for Dynamic Routing
(I, September 2004)
[RFC3884] describes the use of transport-mode IPsec to secure IP-in-
IP tunnels, which constitute the links of a multi-hop, distributed
virtual network (VN). This allows the traffic to be dynamically
routed via the VN's trusted routers, rather than routing all traffic
through a statically routed IPsec tunnel. This RFC has not been
widely adopted.
3.2.7. RFC 5840, Wrapped Encapsulating Security Payload (ESP) for
Traffic Visibility (S, April 2010)
ESP, as defined in [RFC4303], does not allow a network device to
easily determine whether protected traffic that is passing through
the device is encrypted or only integrity protected (referred to as
ESP-NULL packets). [RFC5840] extends ESPv3 to provide explicit
notification of integrity-protected packets, and extends IKEv2 to
negotiate this capability between the IPsec peers.
Frankel & Krishnan Informational [Page 13]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
3.2.8. RFC 5879, Heuristics for Detecting ESP-NULL packets
(I, May 2010)
[RFC5879] offers an alternative approach to differentiating between
ESP-encrypted and ESP-NULL packets through packet inspection. This
method does not require any change to IKE or ESP; it can be used with
ESP-v2 or ESP-v3.
3.3. General Considerations
3.3.1. RFC 3715, IPsec-Network Address Translation (NAT) Compatibility
Requirements (I, March 2004)
[RFC3715] "describes known incompatibilities between NAT and IPsec,
and describes the requirements for addressing them". This is a
critical issue, since IPsec is frequently used to provide VPN access
to the corporate network for telecommuters, and NATs are widely
deployed in home gateways, hotels, and other access networks
typically used for remote access.
3.3.2. RFC 5406, Guidelines for Specifying the Use of IPsec Version 2
(B, February 2009)
[RFC5406] offers guidance to protocol designers on how to ascertain
whether IPsec is the appropriate security mechanism to provide an
interoperable security solution for the protocol. If this is not the
case, it advises against attempting to define a new security
protocol; rather, it suggests using another standards-based security
protocol. The details in this document apply only to IPsec-v2.
3.3.3. RFC 2521, ICMP Security Failures Messages (E, March 1999)
[RFC2521] specifies an ICMP message for indicating failures related
to the use of IPsec protocols (AH and ESP). The specified ICMP
message defines several codes for handling common failure modes for
IPsec. The failures that are signaled by this message include
invalid or expired SPIs, failure of authenticity or integrity checks
on datagrams, decryption and decompression errors, etc. These
messages can be used to trigger automated session-key management or
to signal to an operator the need to manually reconfigure the SAs.
This RFC has not been widely adopted. Furthermore, [RFC4301]
discusses the pros and cons of relying on unprotected ICMP messages.
3.3.4. RFC 6027, IPsec Cluster Problem Statement (I, October 2010)
[RFC6027] describes the problems of using IKE and IPsec in a high
availability environment, in which one or both of the peers are
clusters of gateways. It details the numerous types of stateful
Frankel & Krishnan Informational [Page 14]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
information shared by IKE and IPsec peers that would have to be
available to other members of the cluster in order to provide high-
availability, load sharing, and/or failover capabilities.
4. IKE Documents
4.1. Base Documents
4.1.1. IKEv1
IKE is the preferred key management protocol for IPsec. It is used
for peer authentication; to negotiate, modify, and delete SAs; and to
negotiate authenticated keying material for use within those SAs.
The standard peer authentication methods used by IKEv1 (pre-shared
secret keys and digital certificates) had several shortcomings
related to use of IKEv1 to enable remote user authentication to a
corporate VPN: it could not leverage the use of legacy authentication
systems (e.g. RADIUS databases) to authenticate a remote user to a
security gateway; and it could not be used to configure remote users
with network addresses or other information needed in order to access
the internal network. Automatic key distribution is required for
IPsec-v2, but alternatives to IKE may be used to satisfy that
requirement.
Several Internet Drafts were written to address these problems: two
such documents include "Extended Authentication within IKE (XAUTH)"
[IKE-XAUTH] (and its predecessor, "Extended Authentication within
ISAKMP/Oakley (XAUTH)" [ISAKMP-XAUTH]) and "The ISAKMP Configuration
Method" [IKE-MODE-CFG] (and its predecessor [ISAKMP-MODE-CFG]).
These Internet Drafts did not progress to RFC status due to security
flaws and other problems related to these solutions. However, many
current IKEv1 implementations incorporate aspects of these solutions
to facilitate remote user access to corporate VPNs. These solutions
were not standardized, and different implementations implemented
different versions. Thus, there is no assurance that the
implementations adhere fully to the suggested solutions or that one
implementation can interoperate with others that claim to incorporate
the same features. Furthermore, these solutions have known security
issues. All of those problems and security issues have been solved
in IKEv2; thus, use of these non-standardized IKEv1 solutions is not
recommended.
4.1.1.1. RFC 2409, The Internet Key Exchange (IKE) (S, November 1998)
This document defines a key exchange protocol that can be used to
negotiate authenticated keying material for SAs. This document
implements a subset of the Oakley protocol in conjunction with ISAKMP
to obtain authenticated keying material for use with ISAKMP, and for
Frankel & Krishnan Informational [Page 15]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
other security associations such as AH and ESP for the IETF IPsec
DOI. While, historically, IKEv1 was created by combining two
security protocols, ISAKMP and Oakley, in practice, the combination
(along with the IPsec DOI) has commonly been viewed as one protocol,
IKEv1. The protocol's origins can be seen in the organization of the
documents that define it.
4.1.1.2. RFC 2408, Internet Security Association and Key Management
Protocol (ISAKMP) (S, November 1998)
This document defines procedures and packet formats to establish,
negotiate, modify, and delete Security Associations (SAs). It is
intended to support the negotiation of SAs for security protocols at
all layers of the network stack. ISAKMP can work with many different
key exchange protocols, each with different security properties.
4.1.1.3. RFC 2407, The Internet IP Security Domain of Interpretation
for ISAKMP (S, November 1998)
Within ISAKMP, a Domain of Interpretation is used to group related
protocols using ISAKMP to negotiate security associations. Security
protocols sharing a DOI choose security protocol and cryptographic
transforms from a common namespace and share key exchange protocol
identifiers. This document defines the Internet IP Security DOI
(IPSEC DOI), which instantiates ISAKMP for use with IP when IP uses
ISAKMP to negotiate security associations.
4.1.1.4. RFC 2412, The OAKLEY Key Determination Protocol
(I, November 1998)
[RFC2412] describes a key establishment protocol that two
authenticated parties can use to agree on secure and secret keying
material. The Oakley protocol describes a series of key exchanges --
called "modes" -- and details the services provided by each (e.g.,
perfect forward secrecy for keys, identity protection, and
authentication). This document provides additional theory and
background to explain some of the design decisions and security
features of IKE and ISAKMP; it does not include details necessary for
the implementation of IKEv1.
4.1.2. IKEv2
4.1.2.1. RFC 4306, Internet Key Exchange (IKEv2) Protocol
(S, December 2005)
This document contains the original description of version 2 of the
Internet Key Exchange (IKE) protocol. It covers what was previously
covered by separate documents: ISAKMP, IKE, and DOI. It also
Frankel & Krishnan Informational [Page 16]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
addresses NAT traversal, legacy authentication, and remote address
acquisition. IKEv2 is not interoperable with IKEv1. Automatic key
distribution is required for IPsec-v3, but alternatives to IKE may be
used to satisfy that requirement. This document has been superseded
by [RFC5996].
4.1.2.2. RFC 4718, IKEv2 Clarifications and Implementation Guidelines
(I, October 2006)
[RFC4718] clarifies many areas of the original IKEv2 specification
[RFC4306] that were seen as potentially difficult to understand for
developers who were not intimately familiar with the specification
and its history. It does not introduce any changes to the protocol,
but rather provides descriptions that are less prone to ambiguous
interpretations. The goal of this document was to encourage the
development of interoperable implementations. The clarifications in
this document have been included in the new version of the IKEv2
specification [RFC5996].
4.1.2.3. RFC 5996, Internet Key Exchange Protocol Version 2 (IKEv2)
(S, September 2010)
[RFC5996] combines the original IKEv2 RFC [RFC4306] with the
Clarifications RFC [RFC4718], and resolves many implementation issues
discovered by the community since the publication of these two
documents. This document was developed by the IPsecME (IPsec
Maintenance and Extensions) Working Group, after the conclusion of
the original IPsec Working Group. Automatic key distribution is
required for IPsec-v3, but alternatives to IKE may be used to satisfy
that requirement.
4.2. Additions and Extensions
4.2.1. Peer Authentication Methods
4.2.1.1. RFC 4478, Repeated Authentication in Internet Key Exchange
(IKEv2) Protocol (E, April 2006)
[RFC4478] addresses a problem unique to remote access scenarios. How
can the gateway (the IKE responder) force the remote user (the IKE
initiator) to periodically reauthenticate, limiting the damage in the
case where an unauthorized user gains physical access to the remote
host? This document defines a new status notification, that a
responder can send to an initiator, which notifies the initiator that
the IPsec SA will be revoked unless the initiator reauthenticates
within a specified period of time. This optional extension applies
only to IKEv2, not to IKEv1.
Frankel & Krishnan Informational [Page 17]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
4.2.1.2. RFC 4739, Multiple Authentication Exchanges in the Internet
Key Exchange (IKEv2) Protocol (E, November 2006)
IKEv2 supports several mechanisms for authenticating the parties but
each endpoint uses only one of these mechanisms to authenticate
itself. [RFC4739] specifies an extension to IKEv2 that allows the
use of multiple authentication exchanges, using either different
mechanisms or the same mechanism. This extension allows, for
instance, performing certificate-based authentication of the client
host followed by an EAP authentication of the user. This also allows
for authentication by multiple administrative domains, if needed.
This optional extension applies only to IKEv2, not to IKEv1.
4.2.1.3. RFC 4754, IKE and IKEv2 Authentication Using the Elliptic
Curve Digital Signature Algorithm (ECDSA) (S, January 2007)
[RFC4754] describes how the Elliptic Curve Digital Signature
Algorithm (ECDSA) may be used as the authentication method within the
IKEv1 and IKEv2 protocols. ECDSA provides many benefits including
computational efficiency, small signature sizes, and minimal
bandwidth compared to other available digital signature methods like
RSA and DSA. This optional extension applies to both IKEv1 and
IKEv2.
4.2.1.4. RFC 5998, An Extension for EAP-Only Authentication in IKEv2
(S, September 2010)
IKEv2 allows an initiator to use EAP for peer authentication, but
requires the responder to authenticate through the use of a digital
signature. [RFC5998] extends IKEv2 so that EAP methods that provide
mutual authentication and key agreement can also be used to provide
peer authentication for the responder. This optional extension
applies only to IKEv2, not to IKEv1.
4.2.2. Certificate Contents and Management (PKI4IPsec)
The format, contents, and interpretation of Public Key Certificates
(PKCs) proved to be a source of interoperability problems within IKE
and IPsec. PKI4IPsec was an attempt to set in place some common
procedures and interpretations to mitigate those problems.
4.2.2.1. RFC 4809, Requirements for an IPsec Certificate Management
Profile (I, February 2007)
[RFC4809] enumerates requirements for Public Key Certificate (PKC)
lifecycle transactions between different VPN System and PKI System
products in order to better enable large scale, PKI-enabled IPsec
Frankel & Krishnan Informational [Page 18]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
deployments with a common set of transactions. This document
discusses requirements for both the IPsec and the PKI products.
These optional requirements apply to both IKEv1 and IKEv2.
4.2.2.2. RFC 4945, The Internet IP Security PKI Profile of
IKEv1/ISAKMP, IKEv2, and PKIX (S, August 2007)
[RFC4945] defines a profile of the IKE and Public Key Infrastructure
using X.509 (PKIX) frameworks in order to provide an agreed-upon
standard for using PKI technology in the context of IPsec. It also
documents the contents of the relevant IKE payloads and further
specifies their semantics. In addition, it summarizes the current
state of implementations and deployment and provides advice to avoid
common interoperability issues. This optional extension applies to
both IKEv1 and IKEv2.
4.2.2.3. RFC 4806, Online Certificate Status Protocol (OCSP) Extensions
to IKEv2 (S, February 2007)
When certificates are used with IKEv2, the communicating peers need a
mechanism to determine the revocation status of the peer's
certificate. OCSP is one such mechanism. [RFC4806] defines the
"OCSP Content" extension to IKEv2. This document is applicable when
OCSP is desired and security policy (e.g., firewall policy) prevents
one of the IKEv2 peers from accessing the relevant OCSP responder
directly. This optional extension applies only to IKEv2, not to
IKEv1.
4.2.3. Dead Peer Detection
4.2.3.1. RFC 3706, A Traffic-Based Method of Detecting Dead Internet
Key Exchange (IKE) Peers (I, February 2004)
When two peers communicate using IKE and IPsec, it is possible for
the connectivity between the two peers to drop unexpectedly. But the
SAs can still remain until their lifetimes expire, resulting in the
packets getting tunneled into a "black hole". [RFC3706] describes an
approach to detect peer liveliness without needing to send messages
at regular intervals. This RFC defines an optional extension to
IKEv1; dead peer detection (DPD) is an integral part of IKEv2, which
refers to this feature as a "liveness check" or "liveness test".
4.2.4. Remote Access
The IKEv2 Mobility and Multihoming (MOBIKE) protocol enables two
additional capabilities for IPsec VPN users: 1) moving from one
address to another without re-establishing existing SAs and 2) using
Frankel & Krishnan Informational [Page 19]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
multiple interfaces simultaneously. These solutions are limited to
IPsec VPNs; they are not intended to provide more general mobility or
multihoming capabilities.
The IPsecME Working Group identified some missing components needed
for more extensive IKEv2 and IPsec-v3 support for remote access
clients. These include efficient client resumption of a previously
established session with a VPN gateway, efficient client redirection
to an alternate VPN gateway, and support for IPv6 client
configuration using IPsec configuration payloads.
4.2.4.1. RFC 4555, IKEv2 Mobility and Multihoming Protocol (MOBIKE)
(S, June 2006)
IKEv2 assumes that an IKE SA is created implicitly between the IP
address pair that is used during the protocol execution when
establishing the IKEv2 SA. IPsec-related documents had no provision
to change this pair after an IKE SA was created. [RFC4555] defines
extensions to IKEv2 that enable an efficient management of IKE and
IPsec Security Associations when a host possesses multiple IP
addresses and/or where IP addresses of an IPsec host change over
time.
4.2.4.2. RFC 4621, Design of the IKEv2 Mobility and Multihoming
(MOBIKE) Protocol (I, August 2006)
[RFC4621] discusses the involved network entities and the
relationship between IKEv2 signaling and information provided by
other protocols. It also records design decisions for the MOBIKE
protocol, background information, and records discussions within the
working group.
4.2.4.3. RFC 5266, Secure Connectivity and Mobility Using Mobile IPv4
and IKEv2 Mobility and Multihoming (MOBIKE) (B, June 2008)
[RFC5266] describes a solution using Mobile IPv4 (MIPv4) and mobility
extensions to IKEv2 (MOBIKE) to provide secure connectivity and
mobility to enterprise users when they roam into untrusted networks.
4.2.4.4. RFC 5723, Internet Key Exchange Protocol Version 2 (IKEv2)
Session Resumption (S, January 2010)
[RFC5723] enables a remote client that has been disconnected from a
gateway to re-establish SAs with the gateway in an expedited manner,
without repeating the complete IKEv2 negotiation. This capability
requires changes to IKEv2. This optional extension applies only to
IKEv2, not to IKEv1.
Frankel & Krishnan Informational [Page 20]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
4.2.4.5. RFC 5685, Re-direct Mechanism for the Internet Key Exchange
Protocol Version 2 (IKEv2) (S, November 2009)
[RFC5685] enables a gateway to securely redirect VPN clients to
another VPN gateway, either during or after the IKEv2 negotiation.
Possible reasons include, but are not limited to, an overloaded
gateway or a gateway that needs to shut down. This requires changes
to IKEv2. This optional extension applies only to IKEv2, not to
IKEv1.
4.2.4.6. RFC 5739, IPv6 Configuration in Internet Key Exchange Protocol
Version 2 (IKEv2) (E, February 2010)
In IKEv2, a VPN gateway can assign an internal network address to a
remote VPN client. This is accomplished through the use of
configuration payloads. For an IPv6 client, the assignment of a
single address is not sufficient to enable full-fledged IPv6
communications. [RFC5739] proposes several solutions that might
remove this limitation. This optional extension applies only to
IKEv2, not to IKEv1.
5. Cryptographic Algorithms and Suites
Two basic requirements must be met for an algorithm to be used within
IKE and/or IPsec: assignment of one or more IANA values and an RFC
that describes how to use the algorithm within the relevant protocol,
packet formats, special considerations, etc. For each RFC that
describes a cryptographic algorithm, this roadmap will classify its
requirement level for each protocol, as either MUST, SHOULD, or MAY
[RFC2119]; SHOULD+, SHOULD-, or MUST- [RFC4835]; optional; undefined;
or N/A (not applicable). A designation of "optional" means that the
algorithm meets the two basic requirements, but its use is not
specifically recommended for that protocol. "Undefined" means that
one of the basic requirements is not met: either there is no relevant
IANA number for the algorithm or there is no RFC specifying how it
should be used within that specific protocol. "N/A" means that use
of the algorithm is inappropriate in the context (e.g., NULL
encryption for IKE, which always requires encryption; or combined
mode algorithms, a new feature in IPsec-v3, for use with IPsec-v2).
This document categorizes the requirement level of each algorithm for
IKEv1, IKEv2, IPsec-v2, and IPsec-v3. If an algorithm is recommended
for use within IKEv1 or IKEv2, it is used either to protect the IKE
SA's traffic (encryption and integrity-protection algorithms) or to
generate keying material (Diffie-Hellman or DH groups, Pseudorandom
Functions or PRFs). If an algorithm is recommended for use within
IPsec, it is used to protect the IPsec/child SA's traffic, and IKE is
capable of negotiating its use for that purpose. These requirements
Frankel & Krishnan Informational [Page 21]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
are summarized in Table 1 (Appendix A). These levels are current as
of February 2011; subsequent RFCs may result in altered requirement
levels. For algorithms, this could mean the introduction of new
algorithms or upgrading or downgrading the requirement levels of
current algorithms.
The IANA registries for IKEv1 and IKEv2 include IANA values for
various cryptographic algorithms. IKE uses these values to negotiate
IPsec SAs that will provide protection using those algorithms. If a
specific algorithm lacks a value for IKEv1 and/or IKEv2, that
algorithm's use is classified as "undefined" (no IANA #) within
IPsec-v2 and/or IPsec-v3.
5.1. Algorithm Requirements
Specifying a core set of mandatory algorithms for each protocol
facilitates interoperability. Defining those algorithms in an RFC
separate from the base protocol RFC enhances algorithm agility.
IPsec-v3 and IKEv2 each have an RFC that specifies their mandatory-
to-implement (MUST), recommended (SHOULD), optional (MAY), and
deprecated (SHOULD NOT) algorithms. For IPsec-v2, this is included
in the base protocol RFC. That was originally the case for IKEv1,
but IKEv1's algorithm requirements were updated in [RFC4109].
5.1.1. RFC 4835, Cryptographic Algorithm Implementation Requirements
for Encapsulating Security Payload (ESP) and Authentication
Header (AH) (S, April 2007)
[RFC4835] specifies the encryption and integrity-protection
algorithms for IPsec (both versions). Algorithms for IPsec-v2 were
originally defined in [RFC2402] and [RFC2406]. [RFC4305] obsoleted
those requirements, and was in turn obsoleted by [RFC4835].
Therefore, [RFC4835] applies to IPsec-v2 as well as IPsec-v3.
Combined mode algorithms are mentioned, but not assigned a
requirement level.
5.1.2. RFC 4307, Cryptographic Algorithms for Use in the Internet Key
Exchange Version 2 (IKEv2) (S, December 2005)
[RFC4307] specifies the encryption and integrity-protection
algorithms used by IKEv2 to protect its own traffic, the Diffie-
Hellman (DH) groups used within IKEv2, and the pseudorandom functions
used by IKEv2 to generate keys, nonces, and other random values.
[RFC4307] contains conflicting requirements for IKEv2 encryption and
integrity-protection algorithms. Where there are contradictory
requirements, this document takes its requirement levels from Section
Frankel & Krishnan Informational [Page 22]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
3.1.1, "Encrypted Payload Algorithms", rather than from Section
3.1.3, "IKEv2 Transform Type 1 Algorithms", or Section 3.1.4, "IKEv2
Transform Type 2 Algorithms".
5.1.3. RFC 4109, Algorithms for Internet Key Exchange version 1 (IKEv1)
(S, May 2005)
[RFC4109] updates IKEv1's algorithm specifications, which were
originally defined in [RFC2409]. It specifies the encryption and
integrity-protection algorithms used by IKEv1 to protect its own
traffic; the Diffie-Hellman (DH) groups used within IKEv1; the hash
and pseudorandom functions used by IKEv1 to generate keys, nonces and
other random values; and the authentication methods and algorithms
used by IKEv1 for peer authentication.
5.2. Encryption Algorithms
The encryption-algorithm RFCs describe how to use these algorithms to
encrypt IKE and/or ESP traffic, providing confidentiality protection
to the traffic. They describe any special constraints, requirements,
or changes to packet format appropriate for the specific algorithm.
In general, they do not describe the detailed algorithmic
computations; the reference section of each RFC includes pointers to
documents that define the inner workings of the algorithm. Some of
the RFCs include sample test data, to enable implementors to compare
their results with standardized output.
When any encryption algorithm is used to provide confidentiality, the
use of integrity protection is strongly recommended. If the
encryption algorithm is a stream cipher, omitting integrity
protection seriously compromises the security properties of the
algorithm.
DES, as described in [RFC2405], was originally a required algorithm
for IKEv1 and ESP-v2. Since the use of DES is now deprecated, this
roadmap does not include [RFC2405].
5.2.1. RFC 2410, The NULL Encryption Algorithm and Its Use With IPsec
(S, November 1998)
[RFC2410] is a tongue-in-cheek description of the no-op encryption
algorithm (i.e., using ESP without encryption). In order for IKE to
negotiate the selection of the NULL encryption algorithm for use in
an ESP SA, an identifying IANA number is needed. This number (the
value 11 for ESP_NULL) is found on the IANA registries for both IKEv1
and IKEv2, but it is not mentioned in [RFC2410].
Frankel & Krishnan Informational [Page 23]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
Requirement levels for ESP-NULL:
IKEv1 - N/A
IKEv2 - N/A
ESP-v2 - MUST [RFC4835]
ESP-v3 - MUST [RFC4835]
NOTE: RFC 4307 erroneously classifies ESP-NULL as MAY for IKEv2; this
has been corrected in an errata submission for RFC 4307.
5.2.2. RFC 2451, The ESP CBC-Mode Cipher Algorithms (S, November 1998)
[RFC2451] describes how to use encryption algorithms in cipher-block-
chaining (CBC) mode to encrypt IKE and ESP traffic. It specifically
mentions Blowfish, CAST-128, Triple DES (3DES), International Data
Encryption Algorithm (IDEA), and RC5, but it is applicable to any
block-cipher algorithm used in CBC mode. The algorithms mentioned in
the RFC all have a 64-bit blocksize and a 64-bit random
Initialization Vector (IV) that is sent in the packet along with the
encrypted data.
Requirement levels for 3DES-CBC:
IKEv1 - MUST [RFC4109]
IKEv2 - MUST- [RFC4307]
ESP-v2 - MUST [RFC4835]
ESP-v3 - MUST- [RFC4835]
Requirement levels for other CBC algorithms (Blowfish, CAST, IDEA,
RC5):
IKEv1 - optional
IKEv2 - optional
ESP-v2 - optional
ESP-v3 - optional
5.2.3. RFC 3602, The AES-CBC Cipher Algorithm and Its Use with IPsec
(S, September. 2003)
[RFC3602] describes how to use AES in cipher block chaining (CBC)
mode to encrypt IKE and ESP traffic. AES is the successor to DES.
AES-CBC is a block-mode cipher with a 128-bit blocksize, a random IV
that is sent in the packet along with the encrypted data, and
keysizes of 128, 192 and 256 bits. If AES-CBC is implemented,
128-bit keys are MUST; the other sizes are MAY. [RFC3602] includes
IANA values for use in IKEv1 and ESP-v2. A single IANA value is
defined for AES-CBC, so IKE negotiations need to specify the keysize.
Frankel & Krishnan Informational [Page 24]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
Requirement levels for AES-CBC with 128-bit keys:
IKEv1 - SHOULD [RFC4109]
IKEv2 - SHOULD+ [RFC4307]
ESP-v2 - MUST [RFC4835]
ESP-v3 - MUST [RFC4835]
Requirement levels for AES-CBC with 192- or 256-bit keys:
IKEv1 - optional
IKEv2 - optional
ESP-v2 - optional
ESP-v3 - optional
5.2.4. RFC 3686, Using Advanced Encryption Standard (AES) Counter Mode
With IPsec Encapsulating Security Payload (ESP)
(S, January 2004)
[RFC3686] describes how to use AES in counter (CTR) mode to encrypt
ESP traffic. AES-CTR is a stream cipher with a 32-bit random nonce
(1/SA) and a 64-bit IV. If AES-CTR is implemented, 128-bit keys are
MUST; 192- and 256-byte keys are MAY. Reuse of the IV with the same
key and nonce compromises the data's security; thus, AES-CTR should
not be used with manual keying. AES-CTR can be pipelined and
parallelized; it uses only the AES encryption operations for both
encryption and decryption.
Requirement levels for AES-CTR:
IKEv1 - undefined (no IANA #)
IKEv2 - optional [RFC5930]
ESP-v2 - SHOULD [RFC4835]
ESP-v3 - SHOULD [RFC4835]
5.2.5. RFC 5930, Using Advanced Encryption Standard Counter Mode (AES-
CTR) with the Internet Key Exchange version 02 (IKEv2) Protocol
(I, July 210).
[RFC5930] extends [RFC3686] to enable the use of AES-CTR to provide
encryption and integrity protection for IKEv2 messages.
5.2.6. RFC 4312, The Camellia Cipher Algorithm and Its Use with IPsec
(S, December 2005)
[RFC4312] describes how to use Camellia in cipher block chaining
(CBC) mode to encrypt IKE and ESP traffic. Camellia-CBC is a block-
mode cipher with a 128-bit blocksize, a random IV that is sent in the
packet along with the encrypted data, and keysizes of 128, 192, and
Frankel & Krishnan Informational [Page 25]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
256 bits. If Camellia-CBC is implemented, 128-bit keys are MUST; the
other sizes are MAY. [RFC4312] includes IANA values for use in IKEv1
and IPsec-v2. A single IANA value is defined for Camellia-CBC, so
IKEv1 negotiations need to specify the keysize.
5.2.7. RFC 5529, Modes of Operation for Camellia for Use with IPsec
(S, April 2009)
[RFC5529] describes the use of the Camellia block-cipher algorithm in
conjunction with several different modes of operation. It describes
the use of Camellia in cipher block chaining (CBC) mode and counter
(CTR) mode as an encryption algorithm within ESP. It also describes
the use of Camellia in Counter with CBC-MAC (CCM) mode as a combined
mode algorithm in ESP. This document defines how to use IKEv2 to
generate keying material for a Camellia ESP SA; it does not define
how to use Camellia within IKEv2 to protect an IKEv2 SA's traffic.
However, this RFC, in conjunction with IKEv2's generalized
description of block-mode encryption, provide enough detail to allow
the use of Camellia-CBC algorithms within IKEv2. All three modes can
use keys of length 128 bits, 192 bits, or 256 bits. [RFC5529]
includes IANA values for use in IKEv2 and IPsec-v3. A single IANA
value is defined for each Camellia mode, so IKEv2 negotiations need
to specify the keysize.
Requirement levels for Camellia-CBC:
IKEv1 - optional
IKEv2 - optional
ESP-v2 - optional
ESP-v3 - optional
Requirement levels for Camellia-CTR:
IKEv1 - undefined (no IANA #)
IKEv2 - undefined (no RFC)
ESP-v2 - optional (but no IANA #, so cannot be negotiated by IKE)
ESP-v3 - optional
Requirement levels for Camellia-CCM:
IKEv1 - N/A
IKEv2 - undefined (no RFC)
ESP-v2 - N/A
ESP-v3 - optional
Frankel & Krishnan Informational [Page 26]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
5.2.8. RFC 4196, The SEED Cipher Algorithm and Its Use with IPsec
(S, October 2005)
[RFC4196] describes how to use SEED in cipher block chaining (CBC)
mode to encrypt ESP traffic. It describes how to use IKEv1 to
negotiate a SEED-ESP SA, but does not define the use of SEED to
protect IKEv1 traffic. SEED-CBC is a block-mode cipher with a
128-bit blocksize, a random IV that is sent in the packet along with
the encrypted data, and a keysize of 128 bits. [RFC4196] includes
IANA values for use in IKEv1 and IPsec-v2. [RFC4196] includes test
data.
Requirement levels for SEED-CBC:
IKEv1 - undefined (no IANA #)
IKEv2 - undefined (no IANA #)
ESP-v2 - optional
ESP-v3 - optional (but no IANA #, so cannot be negotiated by IKE)
5.3. Integrity-Protection (Authentication) Algorithms
The integrity-protection algorithm RFCs describe how to use these
algorithms to authenticate IKE and/or IPsec traffic, providing
integrity protection to the traffic. This protection is provided by
computing an Integrity Check Value (ICV), which is sent in the
packet. The RFCs describe any special constraints, requirements, or
changes to packet format appropriate for the specific algorithm. In
general, they do not describe the detailed algorithmic computations;
the reference section of each RFC includes pointers to documents that
define the inner workings of the algorithm. Some of the RFCs include
sample test data, to enable implementors to compare their results
with standardized output.
Some of these algorithms generate a fixed-length ICV, which is
truncated when it is included in an IPsec-protected packet. For
example, standard HMAC-SHA-1 (Hashed Message Authentication Code)
generates a 160-bit ICV, which is truncated to 96 bits when it is
used to provide integrity protection to an ESP or AH packet. The
individual RFC descriptions mention those algorithms that are
truncated. When these algorithms are used to protect IKEv2 SAs, they
are also truncated. For IKEv1, HMAC-SHA-1 and HMAC-MD5 are
negotiated by requesting the hash algorithms SHA-1 and MD5,
respectively; these algorithms are not truncated when used to protect
an IKEv1 SA. For HMAC-SHA-1 and HMAC-MD5, the IKEv2 IANA registry
contains values for both the truncated version and the standard non-
truncated version; thus, IKEv2 has the capability to negotiate either
version of the algorithm. However, only the truncated version is
used for IKEv2 SAs and for IPsec SAs. The non-truncated version is
Frankel & Krishnan Informational [Page 27]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
reserved for use by the Fibre Channel protocol [RFC4595]. For the
other algorithms (AES-XCBC, HMAC-SHA-256/384/512, AES-CMAC, and HMAC-
RIPEMD), only the truncated version can be used for both IKEv2 and
IPsec-v3 SAs.
One other algorithm, AES-GMAC [RFC4543], can also provide integrity
protection. It has two versions: an integrity-protection algorithm
for use within AH-v3, and a combined mode algorithm with null
encryption for use within ESP-v3. [RFC4543] is described in Section
5.4, "Combined Mode Algorithms".
5.3.1. RFC 2404, The Use of HMAC-SHA-1-96 within ESP and AH
(S, November 1998)
[RFC2404] describes HMAC-SHA-1, an integrity-protection algorithm
with a 512-bit blocksize, and a 160-bit key and Integrity Check Value
(ICV). For use within IPsec, the ICV is truncated to 96 bits. This
is currently the most commonly used integrity-protection algorithm.
Requirement levels for HMAC-SHA-1:
IKEv1 - MUST [RFC4109]
IKEv2 - MUST [RFC4307]
IPsec-v2 - MUST [RFC4835]
IPsec-v3 - MUST [RFC4835]
5.3.2. RFC 3566, The AES-XCBC-MAC-96 Algorithm and Its Use With IPsec
(S, September 2003)
[RFC3566] describes AES-XCBC-MAC, a variant of CBC-MAC, which is
secure for messages of varying lengths (unlike classic CBC-MAC). It
is an integrity-protection algorithm with a 128-bit blocksize and a
128-bit key and ICV. For use within IPsec, the ICV is truncated to
96 bits. [RFC3566] includes test data.
Requirement levels for AES-XCBC-MAC:
IKEv1 - undefined (no RFC)
IKEv2 - optional
IPsec-v2 - SHOULD+ [RFC4835]
IPsec-v3 - SHOULD+ [RFC4835]
5.3.3. RFC 4868, Using HMAC-SHA-256, HMAC-SHA-384, and HMAC-SHA-512
with IPsec (S, May 2007)
[RFC4868] describes a family of algorithms, successors to HMAC-SHA-1.
HMAC-SHA-256 has a 512-bit blocksize and a 256-bit key and ICV.
HMAC-SHA-384 has a 1024-bit blocksize and a 384-bit key and ICV.
Frankel & Krishnan Informational [Page 28]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
HMAC-SHA-512 has a 1024-bit blocksize and a 512-bit key and ICV. For
use within IKE and IPsec, the ICV is truncated to half its original
size (128 bits, 192 bits, or 256 bits). Each of the three algorithms
has its own IANA value, so IKE does not have to negotiate the
keysize.
Requirement levels for HMAC-SHA-256, HMAC-SHA-384, HMAC-SHA-512:
IKEv1 - optional
IKEv2 - optional
IPsec-v2 - optional
IPsec-v3 - optional
5.3.4. RFC 2403, The Use of HMAC-MD5-96 within ESP and AH
(S, November 1998)
[RFC2403] describes HMAC-MD5, an integrity-protection algorithm with
a 512-bit blocksize and a 128-bit key and Integrity Check Value
(ICV). For use within IPsec, the ICV is truncated to 96 bits. It
was a required algorithm for IKEv1 and IPsec-v2. The use of plain
MD5 is now deprecated, but [RFC4835] states: "Weaknesses have become
apparent in MD5; however, these should not affect the use of MD5 with
HMAC".
Requirement levels for HMAC-MD5:
IKEv1 - MAY [RFC4109]
IKEv2 - optional [RFC4307]
IPsec-v2 - MAY [RFC4835]
IPsec-v3 - MAY [RFC4835]
5.3.5. RFC 4494, The AES-CMAC-96 Algorithm and Its Use with IPsec
(S, June 2006)
[RFC4494] describes AES-CMAC, another variant of CBC-MAC, which is
secure for messages of varying lengths. It is an integrity-
protection algorithm with a 128-bit blocksize and 128-bit key and
ICV. For use within IPsec, the ICV is truncated to 96 bits.
[RFC4494] includes test data.
Requirement levels for AES-CMAC:
IKEv1 - undefined (no IANA #)
IKEv2 - optional
IPsec-v2 - optional (but no IANA #, so cannot be negotiated by IKE)
IPsec-v3 - optional
Frankel & Krishnan Informational [Page 29]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
5.3.6. RFC 2857, The Use of HMAC-RIPEMD-160-96 within ESP and AH
(S, June 2000)
[RFC2857] describes HMAC-RIPEMD, an integrity-protection algorithm
with a 512-bit blocksize and a 160-bit key and ICV. For use within
IPsec, the ICV is truncated to 96 bits.
Requirement levels for HMAC-RIPEMD:
IKEv1 - undefined (no IANA #)
IKEv2 - undefined (no IANA #)
IPsec-v2 - optional
IPsec-v3 - optional (but no IANA #, so cannot be negotiated by IKE)
5.3.7. RFC 4894, Use of Hash Algorithms in Internet Key Exchange (IKE)
and IPsec (I, May 2007)
In light of recent attacks on MD5 and SHA-1, [RFC4894] examines
whether it is necessary to replace the hash functions currently used
by IKE and IPsec for key generation, integrity protection, digital
signatures, or PKIX certificates. It concludes that the algorithms
recommended for IKEv2 [RFC4307] and IPsec-v3 [RFC4305] are not
currently susceptible to any known attacks. Nonetheless, it suggests
that implementors add support for AES-XCBC-MAC-96 [RFC3566], AES-
XCBC-PRF-128 [RFC4434], and HMAC-SHA-256, -384, and -512 [RFC4868]
for future use. It also suggests that IKEv2 implementors add support
for PKIX certificates signed with SHA-256, -384, and -512.
5.4. Combined Mode Algorithms
IKEv1 and ESP-v2 use separate algorithms to provide encryption and
integrity protection, and IKEv1 can negotiate different combinations
of algorithms for different SAs. In ESP-v3, a new class of
algorithms was introduced, in which a single algorithm can provide
both encryption and integrity protection. [RFC5996] describes how
IKEv2 can negotiate combined mode algorithms to be used in ESP-v3
SAs. [RFC5282] adds that capability to IKEv2, enabling IKEv2 to
negotiate and use combined mode algorithms for its own traffic. When
properly designed, these algorithms can provide increased efficiency
in both implementation and execution.
Although ESP-v2 did not originally include combined mode algorithms,
some IKEv1 implementations have added the capability to negotiate
combined mode algorithms for use in IPsec SAs; these implementations
do not include the capability to use combined mode algorithms to
protect IKE SAs. IANA numbers for combined mode algorithms have been
added to the IKEv1 registry.
Frankel & Krishnan Informational [Page 30]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
5.4.1. RFC 4309, Using Advanced Encryption Standard (AES) CCM Mode with
IPsec Encapsulating Security Payload (ESP) (S, December 2005)
[RFC4309] describes how to use AES in counter with CBC-MAC (CCM)
mode, a combined algorithm, to encrypt and integrity protect ESP
traffic. AES-CCM is a block-mode cipher with a 128-bit blocksize; a
random IV that is sent in the packet along with the encrypted data; a
24-bit salt value (1/SA); keysizes of 128, 192, and 256 bits and ICV
sizes of 64, 96 and 128 bits. If AES-CCM is implemented, 128-bit
keys are MUST; the other sizes are MAY. ICV sizes of 64 and 128 bits
are MUST; 96 bits is MAY. The salt value is generated by IKE during
the key-generation process. Reuse of the IV with the same key
compromises the data's security; thus, AES-CCM should not be used
with manual keying. [RFC4309] includes IANA values that IKE can use
to negotiate ESP-v3 SAs. Each of the three ICV lengths has its own
IANA value, but IKE negotiations need to specify the keysize.
[RFC4309] includes test data. [RFC4309] describes how IKE can
negotiate the use of AES-CCM to use in an ESP SA. [RFC5282] extends
this to the use of AES-CCM to protect an IKEv2 SA.
Requirement levels for AES-CCM:
IKEv1 - N/A
IKEv2 - optional
ESP-v2 - N/A
ESP-v3 - optional [RFC4835]
NOTE: The IPsec-v2 IANA registry includes values for AES-CCM, but
combined mode algorithms are not a feature of IPsec-v2. Although
some IKEv1/IPsec-v2 implementations include this capability (see
Section 5.4), it is not part of the protocol.
5.4.2. RFC 4106, The Use of Galois/Counter Mode (GCM) in IPsec
Encapsulating Security Payload (ESP) (S, June 2005)
[RFC4106] describes how to use AES in Galois/Counter (GCM) mode, a
combined algorithm, to encrypt and integrity protect ESP traffic.
AES-GCM is a block-mode cipher with a 128-bit blocksize; a random IV
that is sent in the packet along with the encrypted data; a 32-bit
salt value (1/SA); keysizes of 128, 192, and 256 bits; and ICV sizes
of 64, 96, and 128 bits. If AES-GCM is implemented, 128-bit keys are
MUST; the other sizes are MAY. An ICV size of 128 bits is a MUST; 64
and 96 bits are MAY. The salt value is generated by IKE during the
key-generation process. Reuse of the IV with the same key
compromises the data's security; thus, AES-GCM should not be used
with manual keying. [RFC4106] includes IANA values that IKE can use
to negotiate ESP-v3 SAs. Each of the three ICV lengths has its own
IANA value, but IKE negotiations need to specify the keysize.
Frankel & Krishnan Informational [Page 31]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC4106] includes test data. [RFC4106] describes how IKE can
negotiate the use of AES-GCM to use in an ESP SA. [RFC5282] extends
this to the use of AES-GCM to protect an IKEv2 SA.
Requirement levels for AES-GCM:
IKEv1 - N/A
IKEv2 - optional
ESP-v2 - N/A
ESP-v3 - optional [RFC4835]
NOTE: The IPsec-v2 IANA registry includes values for AES-GCM, but
combined mode algorithms are not a feature of IPsec-v2. Although
some IKEv1/IPsec-v2 implementations include this capability (see
Section 5.4), it is not part of the protocol.
5.4.3. RFC 4543, The Use of Galois Message Authentication Code (GMAC)
in IPsec ESP and AH (S, May 2006)
[RFC4543] is the variant of AES-GCM [RFC4106] that provides integrity
protection without encryption. It has two versions: an integrity-
protection algorithm for use within AH, and a combined mode algorithm
with null encryption for use within ESP. It can use a key of 128-,
192-, or 256-bits; the ICV is always 128 bits, and is not truncated.
AES-GMAC uses a nonce, consisting of a 64-bit IV and a 32-bit salt
(1/SA). The salt value is generated by IKE during the key generation
process. Reuse of the salt value with the same key compromises the
data's security; thus, AES-GMAC should not be used with manual
keying. For use within AH, each keysize has its own IANA value, so
IKE does not have to negotiate the keysize. For use within ESP,
there is only one IANA value, so IKE negotiations must specify the
keysize. AES-GMAC cannot be used by IKE to protect its own SAs,
since IKE traffic requires encryption.
Requirement levels for AES-GMAC:
IKEv1 - N/A
IKEv2 - N/A
IPsec-v2 - N/A
IPsec-v3 - optional
NOTE: The IPsec-v2 IANA registry includes values for AES-GMAC, but
combined mode algorithms are not a feature of IPsec-v2. Although
some IKEv1/IPsec-v2 implementations include this capability (see
Section 5.4), it is not part of the protocol.
Frankel & Krishnan Informational [Page 32]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
5.4.4. RFC 5282, Using Authenticated Encryption Algorithms with the
Encrypted Payload of the Internet Key Exchange version 2 (IKEv2)
Protocol (S, August 2008)
[RFC5282] extends [RFC4309] and [RFC4106] to enable the use of AES-
CCM and AES-GCM to provide encryption and integrity protection for
IKEv2 messages.
5.5. Pseudo-Random Functions (PRFs)
IKE uses pseudorandom functions (PRFs) to generate the secret keys
that are used in IKE SAs and IPsec SAs. These PRFs are generally the
same algorithms used for integrity protection, but their output is
not truncated, since all of the generated bits are generally needed
for the keys. If the PRF's output is not long enough to supply the
required number of bits of keying material, the PRF is applied
iteratively until the requisite amount of keying material is
generated.
For each IKEv2 SA, the peers negotiate both a PRF algorithm and an
integrity-protection algorithm; the former is used to generate keying
material and other values, and the latter is used to provide
protection to the IKE SA's traffic.
IKEv1's approach is more complicated. IKEv1 [RFC2409] does not
specify any PRF algorithms. For each IKEv1 SA, the peers agree on an
unkeyed hash function (e.g., SHA-1). IKEv1 uses the HMAC version of
this function to generate keying material and to provide integrity
protection for the IKE SA. Therefore, PRFs that are not HMACs cannot
currently be used in IKEv1.
Requirement levels for PRF-HMAC-SHA1:
IKEv1 - MUST [RFC4109]
IKEv2 - MUST [RFC4307]
Requirement levels for PRF-HMAC-SHA-256, PRF-HMAC-SHA-384, and PRF-
HMAC-SHA-512:
IKEv1 - optional [RFC4868]
IKEv2 - optional [RFC4868]
5.5.1. RFC 4434, The AES-XCBC-PRF-128 Algorithm for the Internet Key
Exchange Protocol (IKE) (S, February 2006)
[RFC3566] defines AES-XCBC-MAC-96, which is used for integrity
protection within IKE and IPsec. [RFC4434] enables the use of AES-
XCBC-MAC as a PRF within IKE. The PRF differs from the integrity-
Frankel & Krishnan Informational [Page 33]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
protection algorithm in two ways: its 128-bit output is not truncated
to 96 bits, and it accepts a variable-length key, which is modified
(lengthened via padding or shortened through application of AES-XCBC)
to a 128-bit key. [RFC4434] includes test data.
Requirement levels for AES-XCBC-PRF:
IKEv1 - undefined (no RFC)
IKEv2 - SHOULD+ [RFC4307]
NOTE: RFC 4109 erroneously classifies AES-XCBC-PRF as SHOULD for
IKEv1; this has been corrected in an errata submission for RFC 4109.
5.5.2. RFC 4615, The Advanced Encryption Standard-Cipher-based Message
Authentication Code-Pseudorandom Function-128 (AES-CMAC-PRF-128)
Algorithm for the Internet Key Exchange Protocol (IKE)
(S, August 2006)
[RFC4615] extends [RFC4494] to enable the use of AES-CMAC as a PRF
within IKEv2, in a manner analogous to that used by [RFC4434] for
AES-XCBC.
Requirement levels for AES-CMAC-PRF:
IKEv1 - undefined (no IANA #)
IKEv2 - optional
5.6. Cryptographic Suites
5.6.1. RFC 4308, Cryptographic Suites for IPsec (S, December 2005)
An IKE negotiation consists of multiple cryptographic attributes,
both for the IKE SA and for the IPsec SA. The number of possible
combinations can pose a challenge to peers trying to find a common
policy. To enhance interoperability, [RFC4308] defines two pre-
defined suites, consisting of combinations of algorithms that
comprise typical security policies. IKE/ESP suite "VPN-A" includes
use of 3DES, HMAC-SHA-1, and 1024-bit modular exponentiation group
(MODP) Diffie-Hellman (DH); IKE/ESP suite "VPN-B" includes AES-CBC,
AES-XCBC-MAC, and 2048-bit MODP DH. These suites are intended to be
named "single-button" choices in the administrative interface, but do
not prevent the use of alternative combinations.
5.6.2. RFC 4869, Suite B Cryptographic Suites for IPsec (I, May 2007)
[RFC4869] adds four pre-defined suites, based upon the United States
National Security Agency's "Suite B" specifications, to those
specified in [RFC4308]. IKE/ESP suites "Suite-B-GCM-128" and "Suite-
Frankel & Krishnan Informational [Page 34]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
B-GCM-256" include use of AES-CBC, AES-GCM, HMAC-SHA-256, or HMAC-
SHA-384, and 256-bit or 384-bit elliptic-curve (EC) DH groups.
IKE/AH suites "Suite-B-GMAC-128" and "Suite-B-GMAC-256" include use
of AES-CBC, AES-GMAC, HMAC-SHA-256, or HMAC-SHA-384, and 256-bit or
384-bit EC DH groups. While [RFC4308] does not specify a peer-
authentication method, [RFC4869] mandates pre-shared key
authentication for IKEv1; public key authentication using ECDSA is
recommended for IKEv1 and required for IKEv2.
5.7. Diffie-Hellman Algorithms
IKE negotiations include a Diffie-Hellman exchange, which establishes
a shared secret to which both parties contributed. This value is
used to generate keying material to protect both the IKE SA and the
IPsec SA.
IKEv1 [RFC2409] contains definitions of two DH MODP groups and two
elliptic curve (EC) groups; IKEv2 [RFC5996] only references the MODP
groups. The requirements levels of these groups are:
Requirement levels for DH MODP group 1:
IKEv1 - MAY [RFC4109]
IKEv2 - optional
Requirement levels for DH MODP group 2:
IKEv1 - MUST [RFC4109]
IKEv2 - MUST- [RFC4307]
Requirement levels for EC groups 3-4:
IKEv1 - MAY [RFC4109]
IKEv2 - undefined (no IANA #)
5.7.1. RFC 3526, More Modular Exponential (MODP) Diffie-Hellman groups
for Internet Key Exchange (IKE) (S, May 2003)
[RFC2409] and [RFC5996] define two MODP DH groups (groups 1 and 2)
for use within IKE. [RFC3526] adds six more groups (groups 5 and
14-18). Group 14 is a 2048-bit group that is strongly recommended
for use in IKE.
Requirement levels for DH MODP group 14:
IKEv1 - SHOULD [RFC4109]
IKEv2 - SHOULD+ [RFC4307]
Frankel & Krishnan Informational [Page 35]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
Requirement levels for DH MODP groups 5, 15-18:
IKEv1 - optional [RFC4109]
IKEv2 - optional
5.7.2. RFC 4753, ECP Groups For IKE and IKEv2 (I, January 2007)
[RFC4753] defines three EC DH groups (groups 19-21) for use within
IKE.
The document includes test data.
Requirement levels for DH EC groups 19-21:
IKEv1 - optional [RFC4109]
IKEv2 - optional
5.7.3. RFC 5903, Elliptic Curve Groups modulo a Prime (ECP Groups) for
IKE and IKEv2 (I, June 2010)
[RFC5903] obsoletes [RFC4753], fixing an inconsistency in the DH
shared secret value.
5.7.4. RFC 5114, Additional Diffie-Hellman Groups for Use with IETF
Standards (I, January 2008)
[RFC5114] defines five additional DH groups (MODP groups 22-24 and EC
groups 25-26) for use in IKE. It also includes three EC DH groups
(groups 19-21) that were originally defined in [RFC4753]; however,
the current specification for these groups is [RFC5903]. The IANA
group numbers are specific to IKE, but the DH groups are intended for
use in multiple IETF protocols, including Transport Layer
Security/Secure Socket Layer (TLS/SSL), Secure/Multipurpose Internet
Mail Extensions (S/MIME), and X.509 Certificates.
Requirement levels for DH MODP groups 22-24, EC groups 25-26:
IKEv1 - optional
IKEv2 - optional
6. IPsec/IKE for Multicast
[RFC4301] describes IPsec processing for unicast and multicast
traffic. However, classical IPsec SAs provide point-to-point
protection; the security afforded by IPsec's cryptographic algorithms
is not applicable when the SA is one-to-many or many-to-many, the
case for multicast. The Multicast Security (msec) Working Group has
defined alternatives to IKE and extensions to IPsec for use with
Frankel & Krishnan Informational [Page 36]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
multicast traffic. Different multicast groups have differing
characteristics and requirements: number of senders (one-to-many or
many-to-many), number of members (few, moderate, very large),
volatility of membership, real-time delivery, etc. Their security
requirements vary as well. Each solution defined by msec applies to
a subset of the large variety of possible multicast groups.
6.1. RFC 3740, The Multicast Group Security Architecture
(I, March 2004)
[RFC3740] defines the multicast security architecture, which is used
to provide security for packets exchanged by large multicast groups.
It defines the components of the architectural framework; discusses
Group Security Associations (GSAs), key management, data handling,
and security policies. Several existing protocols, including Group
DOI (GDOI) [RFC3547], Group Secure Association Key Management
Protocol (GSAKMP) [RFC4535], and Multimedia Internet KEYing (MIKEY)
[RFC3830], satisfy the group key management requirements defined in
this document. Both the architecture and the components for
Multicast Group Security differ from IPsec.
6.2. RFC 5374, Multicast Extensions to the Security Architecture for
the Internet Protocol (S, November 2008)
[RFC5374] extends the security architecture defined in [RFC4301] to
apply to multicast traffic. It defines a new class of SAs (GSAs -
Group Security Associations) and additional databases used to apply
IPsec protection to multicast traffic. It also describes revisions
and additions to the processing algorithms in [RFC4301].
6.3. RFC 3547, The Group Domain of Interpretation (S, July 2003)
GDOI [RFC3547] extends IKEv1 so that it can be used to establish SAs
to protect multicast traffic. This document defines additional
exchanges and payloads to be used for that purpose.
6.4. RFC 4046, Multicast Security (MSEC) Group Key Management
Architecture (I, April 2005)
[RFC4046] sets out the general requirements and design principles for
protocols that are used for multicast key management. It does not go
into the specifics of an individual protocol that can be used for
that purpose.
Frankel & Krishnan Informational [Page 37]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
6.5. RFC 4359, The Use of RSA/SHA-1 Signatures within Encapsulating
Security Payload (ESP) and Authentication Header (AH)
(S, January 2006)
[RFC4359] describes the use of the RSA digital signature algorithm to
provide integrity protection for multicast traffic within ESP and AH.
The algorithms used for integrity protection for unicast traffic
(e.g., HMAC) are not suitable for this purpose when used with
multicast traffic.
7. Outgrowths of IPsec/IKE
Operational experience with IPsec revealed additional capabilities
that could make IPsec more useful in real-world scenarios. These
include support for IPsec policy mechanisms, IPsec MIBs, payload
compression (IPComp), extensions to facilitate additional peer
authentication methods (Better-Than-Nothing Security (BTNS),
Kerberized Internet Negotiation of Keys (KINK), and IPSECKEY), and
additional capabilities for VPN clients (IPSRA).
7.1. IPsec Policy
The IPsec Policy (ipsp) Working Group originally planned an RFC that
would allow entities with no common Trust Anchor and no prior
knowledge of each other's security policies to establish an IPsec-
protected connection. The solutions that were proposed for gateway
discovery and security policy negotiation proved to be overly complex
and fragile, in the absence of prior knowledge or compatible
configuration policies.
7.1.1. RFC 3586, IP Security Policy (IPSP) Requirements
(S, August 2003)
[RFC3586] describes the functional requirements of a generalized
IPsec policy framework, that could be used to discover, negotiate,
and manage IPsec policies.
7.1.2. RFC 3585, IPsec Configuration Policy Information Model
(S, August 2003)
As stated in [RFC3585]:
This document presents an object-oriented information model of IP
Security (IPsec) policy designed to facilitate agreement about the
content and semantics of IPsec policy, and enable derivations of
task-specific representations of IPsec policy such as storage
schema, distribution representations, and policy specification
languages used to configure IPsec-enabled endpoints.
Frankel & Krishnan Informational [Page 38]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
This RFC has not been widely adopted.
7.2. IPsec MIBs
Over the years, several MIB-related Internet Drafts were proposed for
IPsec and IKE, but only one progressed to RFC status.
7.2.1. RFC 4807, IPsec Security Policy Database Configuration MIB
(S, March 2007)
[RFC4807] defines a MIB module that can be used to configure the SPD
of an IPsec device. This RFC has not been widely adopted.
7.3. IPComp (Compression)
The IP Payload Compression Protocol (IPComp) is a protocol that
provides lossless compression for IP datagrams. Although IKE can be
used to negotiate the use of IPComp in conjunction with IPsec, IPComp
can also be used when IPsec is not applied.
The IPComp protocol allows the compression of IP datagrams by
supporting different compression algorithms. Three of these
algorithms are: DEFLATE [RFC2394], LZS [RFC2395], and the ITU-T V.44
Packet Method [RFC3051], which is based on the LZJH algorithm.
7.3.1. RFC 3173, IP Payload Compression Protocol (IPComp)
(S, September 2001)
IP payload compression is especially useful when IPsec-based
encryption is applied to IP datagrams. Encrypting the IP datagram
causes the data to be random in nature, rendering compression at
lower protocol layers ineffective. If IKE is used to negotiate
compression in conjunction with IPsec, compression can be performed
prior to encryption. [RFC3173] defines the payload compression
protocol, the IPComp packet structure, the IPComp Association (IPCA),
and several methods to negotiate the IPCA.
7.4. Better-Than-Nothing Security (BTNS)
One of the major obstacles to widespread implementation of IPsec is
the lack of pre-existing credentials that can be used for peer
authentication. Better-Than-Nothing Security (BTNS) is an attempt to
sidestep this problem by allowing IKE to negotiate unauthenticated
(anonymous) IPsec SAs, using credentials such as self-signed
certificates or "bare" public keys (public keys that are not
connected to a public key certificate) for peer authentication. This
ensures that subsequent traffic protected by the SA is conducted with
Frankel & Krishnan Informational [Page 39]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
the same peer, and protects the communications from passive attack.
These SAs can then be cryptographically bound to a higher-level
application protocol, which performs its own peer authentication.
7.4.1. RFC 5660, IPsec Channels: Connection Latching (S, October 2009)
[RFC5660] specifies, abstractly, how to interface applications and
transport protocols with IPsec so as to create channels by latching
connections (packet flows) to certain IPsec Security Association (SA)
parameters for the lifetime of the connections. Connection latching
is layered on top of IPsec and does not modify the underlying IPsec
architecture.
7.4.2. RFC 5386, Better-Than-Nothing-Security: An Unauthenticated Mode
of IPsec (S, November 2008)
[RFC5386] specifies how to use IKEv2 to set up unauthenticated
security associations (SAs) for use with the IPsec Encapsulating
Security Payload (ESP) and the IPsec Authentication Header (AH).
This document does not require any changes to the bits on the wire,
but specifies extensions to the Peer Authorization Database (PAD) and
Security Policy Database (SPD).
7.4.3. RFC 5387, Problem and Applicability Statement for Better-Than-
Nothing Security (BTNS) (I, November 2008)
[RFC5387] considers that the need to deploy authentication
information and its associated identities is a significant obstacle
to the use of IPsec. This document explains the rationale for
extending the Internet network security protocol suite to enable use
of IPsec security services without authentication.
7.5. Kerberized Internet Negotiation of Keys (KINK)
Kerberized Internet Negotiation of Keys (KINK) is an attempt to
provide an alternative to IKE for IPsec peer authentication. It uses
Kerberos, instead of IKE, to establish IPsec SAs. For enterprises
that already deploy the Kerberos centralized key management system,
IPsec can then be implemented without the need for additional peer
credentials. Some vendors have implemented proprietary extensions
for using Kerberos in IKEv1, as an alternative to the use of KINK.
These extensions, as well as the KINK protocol, apply only to IKEv1,
and not to IKEv2.
Frankel & Krishnan Informational [Page 40]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
7.5.1. RFC 3129, Requirements for Kerberized Internet Negotiation of
Keys (I, June 2001)
[RFC3129] considers that peer-to-peer authentication and keying
mechanisms have inherent drawbacks such as computational complexity
and difficulty in enforcing security policies. This document
specifies the requirements for using basic features of Kerberos and
uses them to its advantage to create a protocol that can establish
and maintain IPsec security associations ([RFC2401]).
7.5.2. RFC 4430, Kerberized Internet Negotiation of Keys (KINK)
(S, March 2006)
[RFC4430] defines a low-latency, computationally inexpensive, easily
managed, and cryptographically sound protocol to establish and
maintain security associations using the Kerberos authentication
system. This document reuses the Quick Mode payloads of IKEv1 in
order to foster substantial reuse of IKEv1 implementations. This RFC
has not been widely adopted.
7.6. IPsec Secure Remote Access (IPSRA)
IPsec Secure Remote Access (IPSRA) was an attempt to extend IPsec
protection to "road warriors", allowing IKE to authenticate not only
the user's device but also the user, without changing IKEv1. The
working group defined generic requirements of different IPsec remote
access scenarios. An attempt was made to define an IKE-like protocol
that would use legacy authentication mechanisms to create a temporary
or short-lived user credential that could be used for peer
authentication within IKE. This protocol proved to be more
cumbersome than standard Public Key protocols, and was abandoned.
This led to the development of IKEv2, which incorporates the use of
EAP for user authentication.
7.6.1. RFC 3457, Requirements for IPsec Remote Access Scenarios
(I, January 2003)
[RFC3457] explores and enumerates the requirements of various IPsec
remote access scenarios, without suggesting particular solutions for
them.
7.6.2. RFC 3456, Dynamic Host Configuration Protocol (DHCPv4)
Configuration of IPsec Tunnel Mode (S, January 2003)
[RFC3456] explores the requirements for host configuration in IPsec
tunnel mode, and describes how the Dynamic Host Configuration
Protocol (DHCPv4) may be used for providing such configuration
information. This RFC has not been widely adopted.
Frankel & Krishnan Informational [Page 41]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
7.7. IPsec Keying Information Resource Record (IPSECKEY)
The IPsec Keying Information Resource Record (IPSECKEY) enables the
storage of public keys and other information that can be used to
facilitate opportunistic IPsec in a new type of DNS resource record.
7.7.1. RFC 4025, A method for storing IPsec keying material in DNS
(S, February 2005)
[RFC4025] describes a method of storing IPsec keying material in the
DNS using a new type of resource record. This document describes how
to store the public key of the target node in this resource record.
This RFC has not been widely adopted.
8. Other Protocols That Use IPsec/IKE
IPsec and IKE were designed to provide IP-layer security protection
to other Internet protocols' traffic as well as generic
communications. Since IPsec is a general-purpose protocol, in some
cases, its features do not provide the granularity or distinctive
features required by another protocol; in some cases, its overhead or
prerequisites do not match another protocol's requirements. However,
a number of other protocols do use IKE and/or IPsec to protect some
or all of their communications.
8.1. Mobile IP (MIPv4 and MIPv6)
8.1.1. RFC 4093, Problem Statement: Mobile IPv4 Traversal of Virtual
Private Network (VPN) Gateways (I, August 2005)
[RFC4093] describes the issues with deploying Mobile IPv4 across
virtual private networks (VPNs). IPsec is one of the VPN
technologies covered by this document. It identifies and describes
practical deployment scenarios for Mobile IPv4 running alongside
IPsec in enterprise and operator environments. It also specifies a
set of framework guidelines to evaluate proposed solutions for
supporting multi-vendor seamless IPv4 mobility across IPsec-based VPN
gateways.
8.1.2. RFC 5265, Mobile IPv4 Traversal across IPsec-Based VPN Gateways
(S, June 2008)
[RFC5265] describes a basic solution that uses Mobile IPv4 and IPsec
to provide session mobility between enterprise intranets and external
networks. The proposed solution minimizes changes to existing
firewall/VPN/DMZ deployments and does not require any changes to
IPsec or key exchange protocols. It also proposes a mechanism to
minimize IPsec renegotiation when the mobile node moves.
Frankel & Krishnan Informational [Page 42]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
8.1.3. RFC 3776, Using IPsec to Protect Mobile IPv6 Signaling Between
Mobile Nodes and Home Agents (S, June 2004)
This document specifies the use of IPsec in securing Mobile IPv6
traffic between mobile nodes and home agents. It specifies the
required wire formats for the protected packets and illustrates
examples of Security Policy Database and Security Association
Database entries that can be used to protect Mobile IPv6 signaling
messages. It also describes how to configure either manually keyed
IPsec security associations or IKEv1 to establish the SAs
automatically. Mobile IPv6 requires considering the home address
destination option and Routing Header in IPsec processing. Also,
IPsec and IKE security association addresses can be updated by Mobile
IPv6 signaling messages.
8.1.4. RFC 4877, Mobile IPv6 Operation with IKEv2 and the Revised IPsec
Architecture (S, April 2007)
This document updates [RFC3776] in order to work with the revised
IPsec architecture [RFC4301]. Since the revised IPsec architecture
expands the list of selectors to include the Mobility Header message
type, it becomes much easier to differentiate between different
mobility header messages. Since the ICMP message type and code are
also newly added as selectors, this document uses them to protect
Mobile Prefix Discovery messages. This document also specifies the
use of IKEv2 configuration payloads for dynamic home address
configuration. Finally, this document describes the use of IKEv2 in
order to set up the SAs for Mobile IPv6.
8.1.5. RFC 5026, Mobile IPv6 Bootstrapping in Split Scenario
(S, October 2007)
[RFC5026] extends [RFC4877] to support dynamic discovery of home
agents and the home network prefix; for the latter purpose, it
specifies a new IKEv2 configuration attribute and notification. It
describes how a Mobile IPv6 node can obtain the address of its home
agent, its home address, and create IPsec security associations with
its home agent using DNS lookups and security credentials
preconfigured on the Mobile Node. It defines how a mobile node (MN)
can request its home address and home prefixes through the
Configuration Payload in the IKE_AUTH exchange and what attributes
need to be present in the CFG_REQUEST messages in order to do this.
It also specifies how the home agent can authorize the credentials
used for IKEv2 exchange.
Frankel & Krishnan Informational [Page 43]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
8.1.6. RFC 5213, Proxy Mobile IPv6 (S, August 2008)
[RFC5213] describes a network-based mobility management protocol that
is used to provide mobility services to hosts without requiring their
participation in any mobility-related signaling. It uses IPsec to
protect the mobility signaling messages between the two network
entities called the mobile access gateway (MAG) and the local
mobility anchor (LMA). It also uses IKEv2 in order to set up the
security associations between the MAG and the LMA.
8.1.7. RFC 5568, Mobile IPv6 Fast Handovers (S, July 2009)
When Mobile IPv6 is used for a handover, there is a period during
which the Mobile Node is unable to send or receive packets because of
link switching delay and IP protocol operations. [RFC5568] specifies
a protocol between the Previous Access Router (PAR) and the New
Access Router (NAR) to improve handover latency due to Mobile IPv6
procedures. It uses IPsec ESP in transport mode with integrity
protection for protecting the signaling messages between the PAR and
the NAR. It also describes the SPD entries and the PAD entries when
IKEv2 is used for setting up the required SAs.
8.1.8. RFC 5380, Hierarchical Mobile IPv6 (HMIPv6) Mobility Management
(S, October 2008)
[RFC5380] describes extensions to Mobile IPv6 and IPv6 Neighbor
Discovery to allow for local mobility handling in order to reduce the
amount of signaling between the mobile node, its correspondent nodes,
and its home agent. It also improves handover speed of Mobile IPv6.
It uses IPsec for protecting the signaling between the mobile node
and a local mobility management entity called the Mobility Anchor
Point (MAP). The MAP also uses IPsec Peer Authorization Database
(PAD) entries and configuration payloads described in [RFC4877] in
order to allocate a Regional Care-of Address (RCoA) for mobile nodes.
8.2. Open Shortest Path First (OSPF)
8.2.1. RFC 4552, Authentication/Confidentiality for OSPFv3
(S, June 2006)
OSPF is a link-state routing protocol that is designed to be run
inside a single Autonomous System. OSPFv2 provided its own
authentication mechanisms using the AuType and Authentication
protocol header fields but OSPFv3 removed these fields and uses IPsec
instead. [RFC4552] describes how to use IPsec ESP and AH in order to
protect OSPFv3 signaling between two routers. It also enumerates the
IPsec capabilities the routers require in order to support this
specification. Finally, it also describes the operation of OSPFv3
Frankel & Krishnan Informational [Page 44]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
with IPsec over virtual links where the other endpoint is not known
at configuration time. Since OSPFv3 exchanges multicast packets as
well as unicast ones, the use of IKE within OSPFv3 is not
appropriate. Therefore, this document mandates the use of manual
keys.
8.3. Host Identity Protocol (HIP)
8.3.1. RFC 5201, Host Identity Protocol (E, April 2008)
IP addresses perform two distinct functions: host identifier and
locator. This document specifies a protocol that allows consenting
hosts to securely establish and maintain shared IP-layer state,
allowing separation of the identifier and locator roles of IP
addresses. This enables continuity of communications across IP
address (locator) changes. It uses public key identifiers from a new
Host Identity (HI) namespace for peer authentication. It uses the
HMAC-SHA-1-96 and the AES-CBC algorithms with IPsec ESP and AH for
protecting its signaling messages.
8.3.2. RFC 5202, Using the Encapsulating Security Payload (ESP)
Transport Format with the Host Identity Protocol (HIP)
(E, April 2008)
The HIP base exchange specification [RFC5201] does not describe any
transport formats or methods for describing how ESP is used to
protect user data to be used during the actual communication.
[RFC5202] specifies a set of HIP extensions for creating a pair of
ESP Security Associations (SAs) between the hosts during the base
exchange. After the HIP association and required ESP SAs have been
established between the hosts, the user data communication is
protected using ESP. In addition, this document specifies how the
ESP Security Parameter Index (SPI) is used to indicate the right host
context (host identity) and methods to update an existing ESP
Security Association.
8.3.3. RFC 5206, End-Host Mobility and Multihoming with the Host
Identity (E, April 2008)
When a host uses HIP, the overlying protocol sublayers (e.g.,
transport layer sockets) and Encapsulating Security Payload (ESP)
Security Associations (SAs) are bound to representations of these
host identities, and the IP addresses are only used for packet
forwarding. [RFC5206] defines a generalized LOCATOR parameter for
use in HIP messages that allows a HIP host to notify a peer about
alternate addresses at which it is reachable. It also specifies how
a host can change its IP address and continue to send packets to its
peers without necessarily rekeying.
Frankel & Krishnan Informational [Page 45]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
8.3.4. RFC 5207, NAT and Firewall Traversal Issues of Host Identity
Protocol (HIP) (I, April 2008)
[RFC5207] discusses the problems associated with HIP communication
across network paths that include network address translators and
firewalls. It analyzes the impact of NATs and firewalls on the HIP
base exchange and the ESP data exchange. It discusses possible
changes to HIP that attempt to improve NAT and firewall traversal and
proposes a rendezvous point for letting HIP nodes behind a NAT be
reachable. It also suggests mechanisms for NATs to be more aware of
the HIP messages.
8.4. Stream Control Transmission Protocol (SCTP)
8.4.1. RFC 3554, On the Use of Stream Control Transmission Protocol
(SCTP) with IPsec (S, July 2003)
The Stream Control Transmission Protocol (SCTP) is a reliable
transport protocol operating on top of a connection-less packet
network such as IP. [RFC3554] describes functional requirements for
IPsec and IKE to be used in securing SCTP traffic. It adds support
for SCTP in the form of a new ID type in IKE [RFC2409] and
implementation choices in the IPsec processing to account for the
multiple source and destination addresses associated with a single
SCTP association. This document applies only to IKEv1 and IPsec-v2;
it does not apply to IKEv2 AND IPsec-v3.
8.5. Robust Header Compression (ROHC)
8.5.1. RFC 3095, RObust Header Compression (ROHC): Framework and four
profiles: RTP, UDP, ESP, and uncompressed (S, July 2001)
ROHC is a framework for header compression, intended to be used in
resource-constrained environments. [RFC3095] applies this framework
to four protocols, including ESP.
8.5.2. RFC 5225, RObust Header Compression Version 2 (ROHCv2): Profiles
for RTP, UDP, IP, ESP, and UDP-Lite (S, April 2008)
[RFC5225] defines an updated ESP/IP profile for use with ROHC version
2. It analyzes the ESP header and classifies the fields into several
classes like static, well-known, irregular, etc., in order to
efficiently compress the headers.
Frankel & Krishnan Informational [Page 46]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
8.5.3. RFC 5856, Integration of Robust Header Compression over IPsec
Security Associations (I, May 2010)
[RFC5856] describes a mechanism to compress inner IP headers at the
ingress point of IPsec tunnels and to decompress them at the egress
point. Since the Robust Header Compression (ROHC) specifications
only describe operations on a per-hop basis, this document also
specifies extensions to enable ROHC over multiple hops. This
document applies only to tunnel mode SAs and does not support
transport mode SAs.
8.5.4. RFC 5857, IKEv2 Extensions to Support Robust Header Compression
over IPsec (S, May 2010)
ROHC requires initial configuration at the compressor and
decompressor ends. Since ROHC usually operates on a per-hop basis,
this configuration information is carried over link-layer protocols
such as PPP. Since [RFC5856] operates over multiple hops, a
different signaling mechanism is required. [RFC5857] describes how
to use IKEv2 in order to dynamically communicate the configuration
parameters between the compressor and decompressor.
8.5.5. RFC 5858, IPsec Extensions to Support Robust Header Compression
over IPsec (S, May 2010)
[RFC5856] describes how to use ROHC with IPsec. This is not possible
without extensions to IPsec. [RFC5858] describes the extensions
needed to IPsec in order to support ROHC. Specifically, it describes
extensions needed to the IPsec SPD, SAD, and IPsec processing
including ICV computation and integrity verification.
8.6. Border Gateway Protocol (BGP)
8.6.1. RFC 5566, BGP IPsec Tunnel Encapsulation Attribute
(S, June 2009)
[RFC5566] adds an additional BGP Encapsulation Subsequent Address
Family Identifier (SAFI), allowing the use of IPsec and, optionally,
IKE to protect BGP tunnels. It defines the use of AH and ESP in
tunnel mode and the use of AH and ESP in transport mode to protect IP
in IP and MPLS-in-IP tunnels. It also defines how public key
fingerprints (hashes) are distributed via BGP and used later to
authenticate IKEv2 exchange between the tunnel endpoints.
8.7. IPsec Benchmarking
The Benchmarking Methodology WG in the IETF is working on documents
that relate to benchmarking IPsec [BMWG-1] [BMWG-2].
Frankel & Krishnan Informational [Page 47]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
8.7.1. Methodology for Benchmarking IPsec Devices (Work in Progress)
[BMWG-1] defines a set of tests that can be used to measure and
report the performance characteristics of IPsec devices. It extends
the methodology defined for benchmarking network interconnecting
devices to include IPsec gateways and adds further tests that can be
used to measure IPsec performance of end-hosts. The document focuses
on establishing a performance testing methodology for IPsec devices
that support manual keying and IKEv1, but does not cover IKEv2.
8.7.2. Terminology for Benchmarking IPsec Devices (Work in Progress)
[BMWG-2] defines the standardized performance testing terminology for
IPsec devices that support manual keying and IKEv1. It also
describes the benchmark tests that would be used to test the
performance of the IPsec devices.
8.8. Network Address Translators (NAT)
8.8.1. RFC 2709, Security Model with Tunnel-mode IPsec for NAT domains
(I, October 1999)
NAT devices provide transparent routing to end-hosts trying to
communicate from disparate address realms, by modifying IP and
transport headers en route. This makes it difficult for applications
to pursue end-to-end application-level security. [RFC2709] describes
a security model by which tunnel mode IPsec security can be
architected on NAT devices. It defines how NATs administer security
policies and SA attributes based on private realm addressing. It
also specifies how to operate IKE in such scenarios by specifying an
IKE-ALG (Application Level Gateway) that translates policies from
private realm addressing into public addressing. Although the model
presented here uses terminology from IKEv1, it can be deployed within
IKEv1, IKEv2, IPsec-v2, and IPsec-v3. This security model has not
been widely adopted
8.9. Session Initiation Protocol (SIP)
8.9.1. RFC 3329, Security Mechanism Agreement for the Session
Initiation Protocol (SIP) (S, January 2003)
[RFC3329] describes how a SIP client can select one of the various
available SIP security mechanisms. In particular, the method allows
secure negotiation to prevent bidding down attacks. It also
describes a security mechanism called ipsec-3gpp and its associated
parameters (algorithms, protocols, mode, SPIs and ports) as they are
used in the 3GPP IP Multimedia Subsystem.
Frankel & Krishnan Informational [Page 48]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
8.10. Explicit Packet Sensitivity Labels
8.10.1. RFC 5570, Common Architecture Label IPv6 Security Option
(CALIPSO) (I, July 2009)
[RFC5570] describes a mechanism used to encode explicit packet
Sensitivity Labels on IPv6 packets in Multi-Level Secure (MLS)
networks. The method is implemented using an IPv6 hop-by-hop option.
This document uses the IPsec Authentication Header (AH) in order to
detect any malicious modification of the Sensitivity Label in a
packet.
9. Other Protocols That Adapt IKE for Non-IPsec Functionality
Some protocols protect their traffic through mechanisms other than
IPsec, but use IKEv2 as a basis for their key negotiation and key
management functionality.
9.1. Extensible Authentication Protocol (EAP)
9.1.1. RFC 5106, The Extensible Authentication Protocol-Internet Key
Exchange Protocol version 2 (EAP-IKEv2) Method
(E, February 2008)
[RFC5106] specifies an Extensible Authentication Protocol (EAP)
method that is based on the Internet Key Exchange version 2 (IKEv2)
protocol. EAP-IKEv2 provides mutual authentication and session-key
establishment between an EAP peer and an EAP server. It describes
the full EAP-IKEv2 message exchange and the composition of the
protocol messages.
9.2. Fibre Channel
9.2.1. RFC 4595, Use of IKEv2 in the Fibre Channel Security Association
Management Protocol (I, July 2006)
Fibre Channel (FC) is a gigabit-speed network technology used for
Storage Area Networking. The Fibre Channel Security Protocols (FC-
SP) standard has adapted the IKEv2 protocol [RFC4306] to provide
authentication of Fibre Channel entities and setup of security
associations. Since IP is transported over Fibre Channel and Fibre
Channel is transported over IP, there is the potential for confusion
when IKEv2 is used for both IP and FC traffic. [RFC4595] specifies
identifiers for IKEv2 over FC in a fashion that ensures that any
mistaken usage of IKEv2/FC over IP or IKEv2/IP over FC will result in
a negotiation failure due to the absence of an acceptable proposal.
Frankel & Krishnan Informational [Page 49]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
9.3. Wireless Security
9.3.1. RFC 4705, GigaBeam High-Speed Radio Link Encryption
(I, October 2006)
[RFC4705] describes the encryption and key management used by
GigaBeam as part of the WiFiber(tm) family of radio-link products and
is intended to serve as a guideline for similar wireless product
development efforts to include comparable capabilities. It specifies
the algorithms that are used to provide confidentiality and integrity
protection of both subscriber and management traffic. It also
specifies a custom security protocol that runs between two Gigabeam
Radio Control Modules (RCMs).
10. Acknowledgements
The authors would like to thank Yaron Sheffer, Paul Hoffman, Yoav
Nir, Rajeshwar Singh Jenwar, Alfred Hoenes, Al Morton, Gabriel
Montenegro, Sean Turner, Julien Laganier, Grey Daley, Scott Moonen,
Richard Graveman, Tero Kivinen, Pasi Eronen, Ran Atkinson, David
Black, and Tim Polk for reviewing this document and suggesting
changes.
11. Security Considerations
This RFC serves as a review of other documents and introduces no new
security considerations itself; however, please see each of the
individual documents described herein for security considerations
related to each protocol.
12. References
12.1. Informative References
[BMWG-1] Kaeo, M. and T. Van Herck, "Methodology for Benchmarking
IPsec Devices", Work in Progress, July 2009.
[BMWG-2] Kaeo, M., Van Herck T., and M. Bustos, "Terminology for
Benchmarking IPsec Devices", Work in Progress, July 2009.
[IKE-MODE-CFG]
Dukes, D. and R. Pereira, "The ISAKMP Configuration
Method", Work in Progress, September 2001.
[IKE-XAUTH]
Beaulieu, S. and R. Pereira, "Extended Authentication
within IKE (XAUTH)", Work in Progress, October 2001.
Frankel & Krishnan Informational [Page 50]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[ISAKMP-MODE-CFG]
Pereira, R., Anand, S., and B. Patel, "The ISAKKMP
Configuration Method", Work in Progress, August 1999.
[ISAKMP-XAUTH]
Pereira, R. and S. Beaulieu, "Extended Authentication
within ISAKMP/Oakley (XAUTH)", Work in Progress, December
1999.
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
[RFC2026] Bradner, S., "The Internet Standards Process -- Revision
3", BCP 9, RFC 2026, October 1996.
[RFC2394] Pereira, R., "IP Payload Compression Using DEFLATE", RFC
2394, December 1998.
[RFC2395] Friend, R. and R. Monsour, "IP Payload Compression Using
LZS", RFC 2395, December 1998.
[RFC2401] Kent, S. and R. Atkinson, "Security Architecture for the
Internet Protocol", RFC 2401, November 1998.
[RFC2402] Kent, S. and R. Atkinson, "IP Authentication Header", RFC
2402, November 1998.
[RFC2403] Madson, C. and R. Glenn, "The Use of HMAC-MD5-96 within
ESP and AH", RFC 2403, November 1998.
[RFC2404] Madson, C. and R. Glenn, "The Use of HMAC-SHA-1-96 within
ESP and AH", RFC 2404, November 1998.
[RFC2405] Madson, C. and N. Doraswamy, "The ESP DES-CBC Cipher
Algorithm With Explicit IV", RFC 2405, November 1998.
[RFC2406] Kent, S. and R. Atkinson, "IP Encapsulating Security
Payload (ESP)", RFC 2406, November 1998.
[RFC2407] Piper, D., "The Internet IP Security Domain of
Interpretation for ISAKMP", RFC 2407, November 1998.
[RFC2408] Maughan, D., Schertler, M., Schneider, M., and J. Turner,
"Internet Security Association and Key Management Protocol
(ISAKMP)", RFC 2408, November 1998.
[RFC2409] Harkins, D. and D. Carrel, "The Internet Key Exchange
(IKE)", RFC 2409, November 1998.
Frankel & Krishnan Informational [Page 51]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC2410] Glenn, R. and S. Kent, "The NULL Encryption Algorithm and
Its Use With IPsec", RFC 2410, November 1998.
[RFC2411] Thayer, R., Doraswamy, N., and R. Glenn, "IP Security
Document Roadmap", RFC 2411, November 1998.
[RFC2412] Orman, H., "The OAKLEY Key Determination Protocol", RFC
2412, November 1998.
[RFC2451] Pereira, R. and R. Adams, "The ESP CBC-Mode Cipher
Algorithms", RFC 2451, November 1998.
[RFC2521] Karn, P. and W. Simpson, "ICMP Security Failures
Messages", RFC 2521, March 1999.
[RFC2709] Srisuresh, P., "Security Model with Tunnel-mode IPsec for
NAT Domains", RFC 2709, October 1999.
[RFC2857] Keromytis, A. and N. Provos, "The Use of HMAC-
RIPEMD-160-96 within ESP and AH", RFC 2857, June 2000.
[RFC3051] Heath, J. and J. Border, "IP Payload Compression Using
ITU-T V.44 Packet Method", RFC 3051, January 2001.
[RFC3056] Carpenter, B. and K. Moore, "Connection of IPv6 Domains
via IPv4 Clouds", RFC 3056, February 2001.
[RFC3095] Bormann, C., Burmeister, C., Degermark, M., Fukushima, H.,
Hannu, H., Jonsson, L-E., Hakenberg, R., Koren, T., Le,
K., Liu, Z., Martensson, A., Miyazaki, A., Svanbro, K.,
Wiebke, T., Yoshimura, T., and H. Zheng, "RObust Header
Compression (ROHC): Framework and four profiles: RTP, UDP,
ESP, and uncompressed", RFC 3095, July 2001.
[RFC3129] Thomas, M., "Requirements for Kerberized Internet
Negotiation of Keys", RFC 3129, June 2001.
[RFC3173] Shacham, A., Monsour, B., Pereira, R., and M. Thomas, "IP
Payload Compression Protocol (IPComp)", RFC 3173,
September 2001.
[RFC3329] Arkko, J., Torvinen, V., Camarillo, G., Niemi, A., and T.
Haukka, "Security Mechanism Agreement for the Session
Initiation Protocol (SIP)", RFC 3329, January 2003.
[RFC3456] Patel, B., Aboba, B., Kelly, S., and V. Gupta, "Dynamic
Host Configuration Protocol (DHCPv4) Configuration of
IPsec Tunnel Mode", RFC 3456, January 2003.
Frankel & Krishnan Informational [Page 52]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC3457] Kelly, S. and S. Ramamoorthi, "Requirements for IPsec
Remote Access Scenarios", RFC 3457, January 2003.
[RFC3526] Kivinen, T. and M. Kojo, "More Modular Exponential (MODP)
Diffie-Hellman groups for Internet Key Exchange (IKE)",
RFC 3526, May 2003.
[RFC3547] Baugher, M., Weis, B., Hardjono, T., and H. Harney, "The
Group Domain of Interpretation", RFC 3547, July 2003.
[RFC3554] Bellovin, S., Ioannidis, J., Keromytis, A., and R.
Stewart, "On the Use of Stream Control Transmission
Protocol (SCTP) with IPsec", RFC 3554, July 2003.
[RFC3566] Frankel, S. and H. Herbert, "The AES-XCBC-MAC-96 Algorithm
and Its Use With IPsec", RFC 3566, September 2003.
[RFC3585] Jason, J., Rafalow, L., and E. Vyncke, "IPsec
Configuration Policy Information Model", RFC 3585, August
2003.
[RFC3586] Blaze, M., Keromytis, A., Richardson, M., and L. Sanchez,
"IP Security Policy (IPSP) Requirements", RFC 3586, August
2003.
[RFC3602] Frankel, S., Glenn, R., and S. Kelly, "The AES-CBC Cipher
Algorithm and Its Use with IPsec", RFC 3602, September
2003.
[RFC3686] Housley, R., "Using Advanced Encryption Standard (AES)
Counter Mode With IPsec Encapsulating Security Payload
(ESP)", RFC 3686, January 2004.
[RFC3706] Huang, G., Beaulieu, S., and D. Rochefort, "A Traffic-
Based Method of Detecting Dead Internet Key Exchange (IKE)
Peers", RFC 3706, February 2004.
[RFC3715] Aboba, B. and W. Dixon, "IPsec-Network Address Translation
(NAT) Compatibility Requirements", RFC 3715, March 2004.
[RFC3740] Hardjono, T. and B. Weis, "The Multicast Group Security
Architecture", RFC 3740, March 2004.
[RFC3776] Arkko, J., Devarapalli, V., and F. Dupont, "Using IPsec to
Protect Mobile IPv6 Signaling Between Mobile Nodes and
Home Agents", RFC 3776, June 2004.
Frankel & Krishnan Informational [Page 53]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC3830] Arkko, J., Carrara, E., Lindholm, F., Naslund, M., and K.
Norrman, "MIKEY: Multimedia Internet KEYing", RFC 3830,
August 2004.
[RFC3884] Touch, J., Eggert, L., and Y. Wang, "Use of IPsec
Transport Mode for Dynamic Routing", RFC 3884, September
2004.
[RFC3947] Kivinen, T., Swander, B., Huttunen, A., and V. Volpe,
"Negotiation of NAT-Traversal in the IKE", RFC 3947,
January 2005.
[RFC3948] Huttunen, A., Swander, B., Volpe, V., DiBurro, L., and M.
Stenberg, "UDP Encapsulation of IPsec ESP Packets", RFC
3948, January 2005.
[RFC4025] Richardson, M., "A Method for Storing IPsec Keying
Material in DNS", RFC 4025, March 2005.
[RFC4046] Baugher, M., Canetti, R., Dondeti, L., and F. Lindholm,
"Multicast Security (MSEC) Group Key Management
Architecture", RFC 4046, April 2005.
[RFC4093] Adrangi, F., Ed., and H. Levkowetz, Ed., "Problem
Statement: Mobile IPv4 Traversal of Virtual Private
Network (VPN) Gateways", RFC 4093, August 2005.
[RFC4106] Viega, J. and D. McGrew, "The Use of Galois/Counter Mode
(GCM) in IPsec Encapsulating Security Payload (ESP)", RFC
4106, June 2005.
[RFC4109] Hoffman, P., "Algorithms for Internet Key Exchange version
1 (IKEv1)", RFC 4109, May 2005.
[RFC4196] Lee, H., Yoon, J., Lee, S., and J. Lee, "The SEED Cipher
Algorithm and Its Use with IPsec", RFC 4196, October 2005.
[RFC4301] Kent, S. and K. Seo, "Security Architecture for the
Internet Protocol", RFC 4301, December 2005.
[RFC4302] Kent, S., "IP Authentication Header", RFC 4302, December
2005.
[RFC4303] Kent, S., "IP Encapsulating Security Payload (ESP)", RFC
4303, December 2005.
Frankel & Krishnan Informational [Page 54]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC4304] Kent, S., "Extended Sequence Number (ESN) Addendum to
IPsec Domain of Interpretation (DOI) for Internet Security
Association and Key Management Protocol (ISAKMP)", RFC
4304, December 2005.
[RFC4305] Eastlake 3rd, D., "Cryptographic Algorithm Implementation
Requirements for Encapsulating Security Payload (ESP) and
Authentication Header (AH)", RFC 4305, December 2005.
[RFC4306] Kaufman, C., Ed., "Internet Key Exchange (IKEv2)
Protocol", RFC 4306, December 2005.
[RFC4307] Schiller, J., "Cryptographic Algorithms for Use in the
Internet Key Exchange Version 2 (IKEv2)", RFC 4307,
December 2005.
[RFC4308] Hoffman, P., "Cryptographic Suites for IPsec", RFC 4308,
December 2005.
[RFC4309] Housley, R., "Using Advanced Encryption Standard (AES) CCM
Mode with IPsec Encapsulating Security Payload (ESP)", RFC
4309, December 2005.
[RFC4312] Kato, A., Moriai, S., and M. Kanda, "The Camellia Cipher
Algorithm and Its Use With IPsec", RFC 4312, December
2005.
[RFC4322] Richardson, M. and D. Redelmeier, "Opportunistic
Encryption using the Internet Key Exchange (IKE)", RFC
4322, December 2005.
[RFC4359] Weis, B., "The Use of RSA/SHA-1 Signatures within
Encapsulating Security Payload (ESP) and Authentication
Header (AH)", RFC 4359, January 2006.
[RFC4430] Sakane, S., Kamada, K., Thomas, M., and J. Vilhuber,
"Kerberized Internet Negotiation of Keys (KINK)", RFC
4430, March 2006.
[RFC4434] Hoffman, P., "The AES-XCBC-PRF-128 Algorithm for the
Internet Key Exchange Protocol (IKE)", RFC 4434, February
2006.
[RFC4478] Nir, Y., "Repeated Authentication in Internet Key Exchange
(IKEv2) Protocol", RFC 4478, April 2006.
[RFC4494] Song, JH., Poovendran, R., and J. Lee, "The AES-CMAC-96
Algorithm and Its Use with IPsec", RFC 4494, June 2006.
Frankel & Krishnan Informational [Page 55]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC4535] Harney, H., Meth, U., Colegrove, A., and G. Gross,
"GSAKMP: Group Secure Association Key Management
Protocol", RFC 4535, June 2006.
[RFC4543] McGrew, D. and J. Viega, "The Use of Galois Message
Authentication Code (GMAC) in IPsec ESP and AH", RFC 4543,
May 2006.
[RFC4552] Gupta, M. and N. Melam, "Authentication/Confidentiality
for OSPFv3", RFC 4552, June 2006.
[RFC4555] Eronen, P., "IKEv2 Mobility and Multihoming Protocol
(MOBIKE)", RFC 4555, June 2006.
[RFC4595] Maino, F. and D. Black, "Use of IKEv2 in the Fibre Channel
Security Association Management Protocol", RFC 4595, July
2006.
[RFC4615] Song, J., Poovendran, R., Lee, J., and T. Iwata, "The
Advanced Encryption Standard-Cipher-based Message
Authentication Code-Pseudo-Random Function-128 (AES-CMAC-
PRF-128) Algorithm for the Internet Key Exchange Protocol
(IKE)", RFC 4615, August 2006.
[RFC4621] Kivinen, T. and H. Tschofenig, "Design of the IKEv2
Mobility and Multihoming (MOBIKE) Protocol", RFC 4621,
August 2006.
[RFC4705] Housley, R. and A. Corry, "GigaBeam High-Speed Radio Link
Encryption", RFC 4705, October 2006.
[RFC4718] Eronen, P. and P. Hoffman, "IKEv2 Clarifications and
Implementation Guidelines", RFC 4718, October 2006.
[RFC4739] Eronen, P. and J. Korhonen, "Multiple Authentication
Exchanges in the Internet Key Exchange (IKEv2) Protocol",
RFC 4739, November 2006.
[RFC4753] Fu, D. and J. Solinas, "ECP Groups For IKE and IKEv2", RFC
4753, January 2007.
[RFC4754] Fu, D. and J. Solinas, "IKE and IKEv2 Authentication Using
the Elliptic Curve Digital Signature Algorithm (ECDSA)",
RFC 4754, January 2007.
[RFC4806] Myers, M. and H. Tschofenig, "Online Certificate Status
Protocol (OCSP) Extensions to IKEv2", RFC 4806, February
2007.
Frankel & Krishnan Informational [Page 56]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC4807] Baer, M., Charlet, R., Hardaker, W., Story, R., and C.
Wang, "IPsec Security Policy Database Configuration MIB",
RFC 4807, March 2007.
[RFC4809] Bonatti, C., Ed., Turner, S., Ed., and G. Lebovitz, Ed.,
"Requirements for an IPsec Certificate Management
Profile", RFC 4809, February 2007.
[RFC4835] Manral, V., "Cryptographic Algorithm Implementation
Requirements for Encapsulating Security Payload (ESP) and
Authentication Header (AH)", RFC 4835, April 2007.
[RFC4868] Kelly, S. and S. Frankel, "Using HMAC-SHA-256, HMAC-
SHA-384, and HMAC-SHA-512 with IPsec", RFC 4868, May 2007.
[RFC4869] Law, L. and J. Solinas, "Suite B Cryptographic Suites for
IPsec", RFC 4869, May 2007.
[RFC4877] Devarapalli, V. and F. Dupont, "Mobile IPv6 Operation with
IKEv2 and the Revised IPsec Architecture", RFC 4877, April
2007.
[RFC4891] Graveman, R., Parthasarathy, M., Savola, P., and H.
Tschofenig, "Using IPsec to Secure IPv6-in-IPv4 Tunnels",
RFC 4891, May 2007.
[RFC4894] Hoffman, P., "Use of Hash Algorithms in Internet Key
Exchange (IKE) and IPsec", RFC 4894, May 2007.
[RFC4945] Korver, B., "The Internet IP Security PKI Profile of
IKEv1/ISAKMP, IKEv2, and PKIX", RFC 4945, August 2007.
[RFC5026] Giaretta, G., Ed., Kempf, J., and V. Devarapalli, Ed.,
"Mobile IPv6 Bootstrapping in Split Scenario", RFC 5026,
October 2007.
[RFC5106] Tschofenig, H., Kroeselberg, D., Pashalidis, A., Ohba, Y.,
and F. Bersani, "The Extensible Authentication Protocol-
Internet Key Exchange Protocol version 2 (EAP-IKEv2)
Method", RFC 5106, February 2008.
[RFC5114] Lepinski, M. and S. Kent, "Additional Diffie-Hellman
Groups for Use with IETF Standards", RFC 5114, January
2008.
[RFC5201] Moskowitz, R., Nikander, P., Jokela, P., Ed., and T.
Henderson, "Host Identity Protocol", RFC 5201, April 2008.
Frankel & Krishnan Informational [Page 57]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC5202] Jokela, P., Moskowitz, R., and P. Nikander, "Using the
Encapsulating Security Payload (ESP) Transport Format with
the Host Identity Protocol (HIP)", RFC 5202, April 2008.
[RFC5206] Nikander, P., Henderson, T., Ed., Vogt, C., and J. Arkko,
"End-Host Mobility and Multihoming with the Host Identity
Protocol", RFC 5206, April 2008.
[RFC5207] Stiemerling, M., Quittek, J., and L. Eggert, "NAT and
Firewall Traversal Issues of Host Identity Protocol (HIP)
Communication", RFC 5207, April 2008.
[RFC5213] Gundavelli, S., Ed., Leung, K., Devarapalli, V.,
Chowdhury, K., and B. Patil, "Proxy Mobile IPv6", RFC
5213, August 2008.
[RFC5225] Pelletier, G. and K. Sandlund, "RObust Header Compression
Version 2 (ROHCv2): Profiles for RTP, UDP, IP, ESP and
UDP-Lite", RFC 5225, April 2008.
[RFC5265] Vaarala, S. and E. Klovning, "Mobile IPv4 Traversal across
IPsec-Based VPN Gateways", RFC 5265, June 2008.
[RFC5266] Devarapalli, V. and P. Eronen, "Secure Connectivity and
Mobility Using Mobile IPv4 and IKEv2 Mobility and
Multihoming (MOBIKE)", BCP 136, RFC 5266, June 2008.
[RFC5282] Black, D. and D. McGrew, "Using Authenticated Encryption
Algorithms with the Encrypted Payload of the Internet Key
Exchange version 2 (IKEv2) Protocol", RFC 5282, August
2008.
[RFC5380] Soliman, H., Castelluccia, C., ElMalki, K., and L.
Bellier, "Hierarchical Mobile IPv6 (HMIPv6) Mobility
Management", RFC 5380, October 2008.
[RFC5386] Williams, N. and M. Richardson, "Better-Than-Nothing
Security: An Unauthenticated Mode of IPsec", RFC 5386,
November 2008.
[RFC5374] Weis, B., Gross, G., and D. Ignjatic, "Multicast
Extensions to the Security Architecture for the Internet
Protocol", RFC 5374, November 2008.
[RFC5387] Touch, J., Black, D., and Y. Wang, "Problem and
Applicability Statement for Better-Than-Nothing Security
(BTNS)", RFC 5387, November 2008.
Frankel & Krishnan Informational [Page 58]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC5406] Bellovin, S., "Guidelines for Specifying the Use of IPsec
Version 2", BCP 146, RFC 5406, February 2009.
[RFC5529] Kato, A., Kanda, M., and S. Kanno, "Modes of Operation for
Camellia for Use with IPsec", RFC 5529, April 2009.
[RFC5566] Berger, L., White, R., and E. Rosen, "BGP IPsec Tunnel
Encapsulation Attribute", RFC 5566, June 2009.
[RFC5568] Koodli, R., Ed., "Mobile IPv6 Fast Handovers", RFC 5568,
July 2009.
[RFC5570] StJohns, M., Atkinson, R., and G. Thomas, "Common
Architecture Label IPv6 Security Option (CALIPSO)", RFC
5570, July 2009.
[RFC5660] Williams, N., "IPsec Channels: Connection Latching", RFC
5660, October 2009.
[RFC5685] Devarapalli, V. and K. Weniger, "Redirect Mechanism for
the Internet Key Exchange Protocol Version 2 (IKEv2)", RFC
5685, November 2009.
[RFC5723] Sheffer, Y. and H. Tschofenig, "Internet Key Exchange
Protocol Version 2 (IKEv2) Session Resumption", RFC 5723,
January 2010.
[RFC5739] Eronen, P., Laganier, J., and C. Madson, "IPv6
Configuration in Internet Key Exchange Protocol Version 2
(IKEv2)", RFC 5739, February 2010.
[RFC5840] Grewal, K., Montenegro, G., and M. Bhatia, "Wrapped
Encapsulating Security Payload (ESP) for Traffic
Visibility", RFC 5840, April 2010.
[RFC5856] Ertekin, E., Jasani, R., Christou, C., and C. Bormann,
"Integration of Robust Header Compression over IPsec
Security Associations", RFC 5856, May 2010.
[RFC5857] Ertekin, E., Christou, C., Jasani, R., Kivinen, T., and C.
Bormann, "IKEv2 Extensions to Support Robust Header
Compression over IPsec", RFC 5857, May 2010.
[RFC5858] Ertekin, E., Christou, C., and C. Bormann, "IPsec
Extensions to Support Robust Header Compression over
IPsec", RFC 5858, May 2010.
Frankel & Krishnan Informational [Page 59]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
[RFC5879] Kivinen, T. and D. McDonald, "Heuristics for Detecting
ESP-NULL Packets", RFC 5879, May 2010.
[RFC5903] Fu, D. and J. Solinas, "Elliptic Curve Groups modulo a
Prime (ECP Groups) for IKE and IKEv2", RFC 5903, June
2010.
[RFC5930] Shen, S., Mao, Y., and NSS. Murthy, "Using Advanced
Encryption Standard Counter Mode (AES-CTR) with the
Internet Key Exchange version 02 (IKEv2) Protocol", RFC
5930, July 2010.
[RFC5996] Kaufman, C., Hoffman, P., Nir, Y., and P. Eronen,
"Internet Key Exchange Protocol Version 2 (IKEv2)", RFC
5996, September 2010.
[RFC5998] Eronen, P., Tschofenig, H., and Y. Sheffer, "An Extension
for EAP-Only Authentication in IKEv2", RFC 5998, September
2010.
[RFC6027] Nir, Y., "IPsec Cluster Problem Statement", RFC 6027,
October 2010.
Frankel & Krishnan Informational [Page 60]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
Appendix A. Summary of Algorithm Requirement Levels
Table 1: Algorithm Requirement Levels
+--------------------------+----------------------------------------+
| ALGORITHM | REQUIREMENT LEVEL |
| | IKEv1 IKEv2 IPsec-v2 IPsec-v3 |
+--------------------------+----------------------------------------+
|Encryption Algorithms: |
|--------------------- |
| ESP-NULL | N/A N/A MUST MUST |
| | |
| 3DES-CBC | MUST MUST- MUST MUST- |
| | |
| Blowfish/CAST/IDEA/RC5 | optional optional optional optional |
| | |
| AES-CBC 128-bit key | SHOULD SHOULD+ MUST MUST |
| | |
| AES-CBC 192/256-bit key | optional optional optional optional |
| | |
| AES-CTR | undefined optional SHOULD SHOULD |
| | |
| Camellia-CBC | optional optional optional optional |
| | |
| Camellia-CTR | undefined undefined undefined optional |
| | |
| SEED-CBC | undefined undefined optional undefined|
| | |
|Integrity-Protection Algorithms: |
|------------------------------ |
| HMAC-SHA-1 | MUST MUST MUST MUST |
| | |
| AES-XCBC-MAC | undefined optional SHOULD+ SHOULD+ |
| | |
| HMAC-SHA-256/384/512 | optional optional optional optional |
| | |
| AES-GMAC | N/A N/A undefined optional |
| | |
| HMAC-MD5 | MAY optional MAY MAY |
| | |
| AES-CMAC | undefined optional undefined optional |
| | |
| HMAC-RIPEMD | undefined undefined optional undefined|
+--------------------------+----------------------------------------+
Frankel & Krishnan Informational [Page 61]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
Table 1: Algorithm Requirement Levels (continued)
+--------------------------+----------------------------------------+
| ALGORITHM | REQUIREMENT LEVEL |
| | IKEv1 IKEv2 IPsec-v2 IPsec-v3 |
+--------------------------+----------------------------------------+
|Combined Mode Algorithms: |
|------------------------ |
| AES-CCM | N/A optional N/A optional |
| | |
| AES-GCM | N/A optional N/A optional |
| | |
| AES-GMAC | N/A N/A undefined optional |
| | |
| Camellia-CCM | N/A undefined N/A optional |
| | |
|Pseudorandom Functions: |
|----------------------- |
| PRF-HMAC-SHA1 | MUST MUST |
| | |
| PRF-HMAC-SHA-256/384/512 | optional optional |
| | |
| AES-XCBC-PRF | undefined SHOULD+ |
| | |
| AES-CMAC-PRF | undefined optional |
| | |
|Diffie-Hellman Algorithms: |
|------------------------- |
| DH MODP grp 1 | MAY optional |
| | |
| DH MODP grp 2 | MUST MUST- |
| | |
| DH MODP grp 5 | optional optional |
| | |
| DH MODP grp 14 | SHOULD SHOULD+ |
| | |
| DH MODP grp 15-18 | optional optional |
| | |
| DH MODP grp 22-24 | optional optional |
| | |
| DH EC grp 3-4 | MAY undefined |
| | |
| DH EC grp 19-21 | optional optional |
| | |
| DH EC grp 25-26 | optional optional |
+--------------------------+----------------------------------------+
Frankel & Krishnan Informational [Page 62]
^L
RFC 6071 IPsec/IKE Roadmap February 2011
Authors' Addresses
Sheila Frankel
NIST
Bldg. 223 Rm. B366
Gaithersburg, MD 20899
Phone: 1-301-975-3297
EMail: sheila.frankel@nist.gov
Suresh Krishnan
Ericsson
8400 Decarie Blvd.
Town of Mount Royal, QC
Canada
Phone: 1-514-345-7900 x42871
EMail: suresh.krishnan@ericsson.com
Frankel & Krishnan Informational [Page 63]
^L
|