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
|
<pre>Network Working Group P. Nesser, II
Request for Comments: 3792 Nesser & Nesser Consulting
Category: Informational A. Bergstrom, Ed.
Ostfold University College
June 2004
<span class="h1">Survey of IPv4 Addresses in Currently Deployed</span>
<span class="h1">IETF Security Area Standards Track and Experimental Documents</span>
Status of this Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2004).
Abstract
This document seeks to document all usage of IPv4 addresses in
currently deployed IETF Security Area documented standards. In order
to successfully transition from an all IPv4 Internet to an all IPv6
Internet, many interim steps will be taken. One of these steps is
the evolution of current protocols that have IPv4 dependencies. It
is hoped that these protocols (and their implementations) will be
redesigned to be network address independent, but failing that will
at least dually support IPv4 and IPv6. To this end, all Standards
(Full, Draft, and Proposed) as well as Experimental RFCs will be
surveyed and any dependencies will be documented.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-2">2</a>
<a href="#section-2">2</a>. Document Organisation. . . . . . . . . . . . . . . . . . . . . <a href="#page-2">2</a>
<a href="#section-3">3</a>. Full Standards . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-2">2</a>
<a href="#section-4">4</a>. Draft Standards. . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-2">2</a>
<a href="#section-5">5</a>. Proposed Standards . . . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-6">6</a>. Experimental RFCs. . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-7">7</a>. Summary of Results . . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-7.1">7.1</a>. Standards. . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-7.2">7.2</a>. Draft Standards. . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-7.3">7.3</a>. Proposed Standards . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-7.4">7.4</a>. Experimental RFCs. . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-8">8</a>. Security Considerations. . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-9">9</a>. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<span class="grey">Nesser II & Bergstrom Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
<a href="#section-10">10</a>. Normative Reference. . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-11">11</a>. Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-12">12</a>. Full Copyright Statement . . . . . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<span class="h3"><a class="selflink" id="section-1.0" href="#section-1.0">1.0</a>. Introduction</span>
This document is part of a document set aiming to document all usage
of IPv4 addresses in IETF standards. In an effort to have the
information in a manageable form, it has been broken into 7 documents
conforming to the current IETF areas (Application, Internet,
Operations and Management, Routing, Security, Sub-IP, and Transport).
For a full introduction, please see the introduction [<a href="#ref-1" title=""Introduction to the Survey of IPv4 Addresses in Currently Deployed IETF Standards"">1</a>].
<span class="h3"><a class="selflink" id="section-2.0" href="#section-2.0">2.0</a>. Document Organization</span>
Sections <a href="#section-3">3</a>, <a href="#section-4">4</a>, <a href="#section-5">5</a>, and <a href="#section-6">6</a> each describe the raw analysis of Full,
Draft, and Proposed Standards, and Experimental RFCs. Each RFC is
discussed in its turn starting with <a href="./rfc1">RFC 1</a> and ending with (around)
<a href="./rfc3100">RFC 3100</a>. The comments for each RFC are "raw" in nature. That is,
each RFC is discussed in a vacuum and problems or issues discussed do
not "look ahead" to see if the problems have already been fixed.
<a href="#section-7">Section 7</a> is an analysis of the data presented in Sections <a href="#section-3">3</a>, <a href="#section-4">4</a>, <a href="#section-5">5</a>,
and 6. It is here that all of the results are considered as a whole
and the problems that have been resolved in later RFCs are
correlated.
<span class="h3"><a class="selflink" id="section-3.0" href="#section-3.0">3.0</a>. Full Standards</span>
Full Internet Standards (most commonly simply referred to as
"Standards") are fully mature protocol specification that are widely
implemented and used throughout the Internet.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. <a href="./rfc2289">RFC 2289</a> A One-Time Password System</span>
There are no IPv4 dependencies in this specification.
<span class="h3"><a class="selflink" id="section-4.0" href="#section-4.0">4.0</a>. Draft Standards</span>
Draft Standards represent the penultimate standard level in the IETF.
A protocol can only achieve draft standard when there are multiple,
independent, interoperable implementations. Draft Standards are
usually quite mature and widely used.
<span class="grey">Nesser II & Bergstrom Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. <a href="./rfc1864">RFC 1864</a> The Content-MD5 Header Field</span>
There are no IPv4 dependencies in this specification.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. <a href="./rfc2617">RFC 2617</a> HTTP Authentication: Basic and Digest Access</span>
<span class="h3"> Authentication</span>
<a href="#section-3.2.1">Section 3.2.1</a> The WWW-Authenticate Response Header include he
following text:
(Note: including the IP address of the client in the nonce
would appear to offer the server the ability to limit the reuse
of the nonce to the same client that originally got it.
However, that would break proxy farms, where requests from a
single user often go through different proxies in the farm.
Also, IP address spoofing is not that hard.)
<a href="#section-4.5">Section 4.5</a> Replay Attacks contains the text:
Thus, for some purposes, it is necessary to protect against
replay attacks. A good Digest implementation can do this in
various ways. The server created "nonce" value is
implementation dependent, but if it contains a digest of the
client IP, a time-stamp, the resource ETag, and a private
server key (as recommended above) then a replay attack is not
simple. An attacker must convince the server that the request
is coming from a false IP address and must cause the server to
deliver the document to an IP address different from the
address to which it believes it is sending the document. An
attack can only succeed in the period before the time-stamp
expires. Digesting the client IP and time-stamp in the nonce
permits an implementation which does not maintain state between
transactions.
Both of these statements are IP version independent and must rely on
the implementers discretion.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. <a href="./rfc2865">RFC 2865</a> Remote Authentication Dial In User Service (RADIUS)</span>
<a href="#section-3">Section 3</a>. Packet Format has the following notes:
Identifier
The Identifier field is one octet, and aids in matching
requests and replies. The RADIUS server can detect a duplicate
request if it has the same client source IP address and source
UDP port and Identifier within a short span of time.
<span class="grey">Nesser II & Bergstrom Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
and
A RADIUS server MUST use the source IP address of the RADIUS
UDP packet to decide which shared secret to use, so that RADIUS
requests can be proxied.
This text is version neutral but implementers should allow for the
use of both IPv4 and IPv6 addresses.
<a href="#section-5">Section 5</a>. Attributes defines a number of IP specific attributes:
4 NAS-IP-Address
8 Framed-IP-Address
9 Framed-IP-Netmask
10 Framed-Routing
14 Login-IP-Host
22 Framed-Route
and definitions for the "value" field of the following type:
address 32 bit value, most significant octet first.
The attributes are further defined as follows:
5.4. NAS-IP-Address
Description
This Attribute indicates the identifying IP Address of the
NAS which is requesting authentication of the user, and
SHOULD be unique to the NAS within the scope of the RADIUS
server. NAS-IP-Address is only used in Access-Request
packets. Either NAS-IP-Address or NAS-Identifier MUST be
present in an Access-Request packet.
Note that NAS-IP-Address MUST NOT be used to select the
shared secret used to authenticate the request. The source
IP address of the Access-Request packet MUST be used to
select the shared secret.
A summary of the NAS-IP-Address Attribute format is shown
below. The fields are transmitted from left to right.
<span class="grey">Nesser II & Bergstrom Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Address (cont) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type
4 for NAS-IP-Address.
Length
6
Address
The Address field is four octets.
5.8. Framed-IP-Address
Description
This Attribute indicates the address to be configured for the
user. It MAY be used in Access-Accept packets. It MAY be used
in an Access-Request packet as a hint by the NAS to the server
that it would prefer that address, but the server is not
required to honor the hint.
A summary of the Framed-IP-Address Attribute format is shown below.
The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Address (cont) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type
8 for Framed-IP-Address.
Length
6
<span class="grey">Nesser II & Bergstrom Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
Address
The Address field is four octets. The value 0xFFFFFFFF indicates
that the NAS Should allow the user to select an address (e.g.,
Negotiated). The value 0xFFFFFFFE indicates that the NAS should
select an address for the user (e.g., Assigned from a pool of
addresses kept by the NAS). Other valid values indicate that the
NAS should use that value as the user's IP address.
5.9. Framed-IP-Netmask
Description
This Attribute indicates the IP netmask to be configured for
the user when the user is a router to a network. It MAY be
used in Access-Accept packets. It MAY be used in an Access-
Request packet as a hint by the NAS to the server that it would
prefer that netmask, but the server is not required to honor
the hint.
A summary of the Framed-IP-Netmask Attribute format is shown below.
The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Address (cont) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type
9 for Framed-IP-Netmask.
Length
6
Address
The Address field is four octets specifying the IP netmask of the
user.
<span class="grey">Nesser II & Bergstrom Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.14. Login-IP-Host
Description
"This Attribute indicates the system with which to connect the
user, when the Login-Service Attribute is included. It MAY be
used in Access-Accept packets. It MAY be used in an Access-
Request packet as a hint to the server that the NAS would
prefer to use that host, but the server is not required to
honor the hint."
A summary of the Login-IP-Host Attribute format is shown below. The
fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Address
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Address (cont) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type
14 for Login-IP-Host.
Length
6
Address
The Address field is four octets. The value 0xFFFFFFFF indicates
that the NAS SHOULD allow the user to select an address. The
value 0 indicates that the NAS SHOULD select a host to connect the
user to. Other values indicate the address the NAS SHOULD connect
the user to.
5.22. Framed-Route
Description
This Attribute provides routing information to be configured
for the user on the NAS. It is used in the Access-Accept
packet and can appear multiple times.
A summary of the Framed-Route Attribute format is shown below. The
fields are transmitted from left to right.
<span class="grey">Nesser II & Bergstrom Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
0 1 2
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
| Type | Length | Text ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
Type
22 for Framed-Route.
Length
>= 3
Text
The Text field is one or more octets, and its contents are
implementation dependent. It is intended to be human readable and
MUST NOT affect operation of the protocol. It is recommended that
the message contain UTF-8 encoded 10646 [7] characters.
For IP routes, it SHOULD contain a destination prefix in dotted
quad form optionally followed by a slash and a decimal length
specifier stating how many high order bits of the prefix to use.
That is followed by a space, a gateway address in dotted quad
form, a space, and one or more metrics separated by spaces. For
example, "192.168.1.0/24 192.168.1.1 1 2 -1 3 400". The length
specifier may be omitted, in which case it defaults to 8 bits for
class A prefixes, 16 bits for class B prefixes, and 24 bits for
class C prefixes. For example, "192.168.1.0 192.168.1.1 1".
Whenever the gateway address is specified as "0.0.0.0" the IP
address of the user SHOULD be used as the gateway address.
There are also several example authentication sequences that use the
attributes discussed above and hence have IPv4 addresses.
Although the definitions in this RFC are limited to IPv4 addresses,
the specification is easily extensible for new attribute types. It
is therefore relatively simple to create new IPv6 specific
attributes.
<span class="h3"><a class="selflink" id="section-5.0" href="#section-5.0">5.0</a>. Proposed Standards</span>
Proposed Standards are introductory level documents. There are no
requirements for even a single implementation. In many cases
Proposed are never implemented or advanced in the IETF standards
process. They therefore are often just proposed ideas that are
<span class="grey">Nesser II & Bergstrom Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
presented to the Internet community. Sometimes flaws are exposed or
they are one of many competing solutions to problems. In these later
cases, no discussion is presented as it would not serve the purpose
of this discussion.
5.001. <a href="./rfc1413">RFC 1413</a> Identification Protocol
There are no IPv4 dependencies in this specification.
5.002. <a href="./rfc1421">RFC 1421</a> Privacy Enhancement for Internet Electronic Mail:
Part I
There are no IPv4 dependencies in this specification.
5.003. <a href="./rfc1422">RFC 1422</a> Privacy Enhancement for Internet Electronic Mail:
Part II
There are no IPv4 dependencies in this specification.
5.004. <a href="./rfc1423">RFC 1423</a> Privacy Enhancement for Internet Electronic Mail:
Part III
There are no IPv4 dependencies in this specification.
5.005. <a href="./rfc1424">RFC 1424</a> Privacy Enhancement for Internet Electronic Mail:
Part IV
There are no IPv4 dependencies in this specification.
5.006. <a href="./rfc1510">RFC 1510</a> The Kerberos Network Authentication Service (V5)
Although this specification specifies optional use of host
addresses, there are no specific requirements that the addresses
be IPv4. The specification has no IPv4 dependencies, but
implementations might have issues.
5.007. <a href="./rfc1731">RFC 1731</a> IMAP4 Authentication Mechanisms
There are no IPv4 dependencies in this specification.
5.008. <a href="./rfc1734">RFC 1734</a> POP3 AUTHentication command
There are no IPv4 dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.009. <a href="./rfc1828">RFC 1828</a> IP Authentication using Keyed MD5
There are no IPv4 dependencies in this specification. The
operations described operate on the entire IP packet without
specifying that the IP packet be IPv4 or IPv6.
5.010. <a href="./rfc1829">RFC 1829</a> The ESP DES-CBC Transform
There are no IPv4 dependencies in this specification. The
operations described operate on the entire IP packet without
specifying that the IP packet be IPv4 or IPv6.
5.011. <a href="./rfc1847">RFC 1847</a> Security Multiparts for MIME: Multipart/Signed and
Multipart/Encrypted
There are no IPv4 dependencies in this specification.
5.012. <a href="./rfc1848">RFC 1848</a> MIME Object Security Services
There are no IPv4 dependencies in this specification.
5.013. <a href="./rfc1928">RFC 1928</a> SOCKS Protocol Version
This specification is IPv6 aware and will function normally on
either IPv4 and IPv6.
5.014. <a href="./rfc1929">RFC 1929</a> Username/Password Authentication for SOCKS V5
There are no IPv4 dependencies in this specification.
5.015. <a href="./rfc1961">RFC 1961</a> GSS-API Authentication Method for SOCKS Version 5
There are no IPv4 dependencies in this specification.
5.016. <a href="./rfc1964">RFC 1964</a> The Kerberos Version 5 GSS-API Mechanism
There are no IPv4 dependencies in this specification.
5.017. <a href="./rfc1968">RFC 1968</a> The PPP Encryption Control Protocol (ECP)
There are no IPv4 dependencies in this specification.
5.018. <a href="./rfc2015">RFC 2015</a> MIME Security with Pretty Good Privacy (PGP)
There are no IPv4 dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.019. <a href="./rfc2025">RFC 2025</a> The Simple Public-Key GSS-API Mechanism (SPKM)
There are no IPv4 dependencies in this specification.
5.020. <a href="./rfc2082">RFC 2082</a> RIP-2 MD5 Authentication
This RFC documents a security mechanism for an IPv4 only routing
specification. It is expected that a similar (or better)
mechanism will be developed for RIPng.
5.021. <a href="./rfc2085">RFC 2085</a> HMAC-MD5 IP Authentication with Replay Prevention
This document defines an IP version independent specification and
has no IPv4 dependencies.
5.022. <a href="./rfc2195">RFC 2195</a> IMAP/POP AUTHorize Extension for Simple Challenge/
Response
There are no IPv4 dependencies in this specification.
5.023. <a href="./rfc2203">RFC 2203</a> RPCSEC_GSS Protocol Specification
There are no IPv4 dependencies in this specification.
5.024. <a href="./rfc2222">RFC 2222</a> Simple Authentication and Security Layer (SASL)
There are no IPv4 dependencies in this specification.
5.025. <a href="./rfc2228">RFC 2228</a> FTP Security Extensions
There are no IPv4 dependencies in this specification.
5.026. <a href="./rfc2243">RFC 2243</a> OTP Extended Responses
There are no IPv4 dependencies in this specification.
5.027. <a href="./rfc2245">RFC 2245</a> Anonymous SASL Mechanism
There are no IPv4 dependencies in this specification.
5.028. <a href="./rfc2246">RFC 2246</a> The TLS Protocol Version 1.0
There are no IPv4 dependencies in this specification.
5.029. <a href="./rfc2284">RFC 2284</a> PPP Extensible Authentication Protocol (EAP)
There are no IPv4 dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.030. <a href="./rfc2385">RFC 2385</a> Protection of BGP Sessions via the TCP MD5
Signature Option
Although the specification enhancements have no IPv4 dependencies,
it is an update to an IPv4 only routing specification.
5.031. <a href="./rfc2401">RFC 2401</a> Security Architecture for the Internet Protocol
This specification is both IPv4 and IPv6 aware.
5.032. <a href="./rfc2402">RFC 2402</a> IP Authentication Header
This specification is both IPv4 and IPv6 aware.
5.033. <a href="./rfc2403">RFC 2403</a> The Use of HMAC-MD5-96 within ESP and AH
There are no IPv4 dependencies in this specification.
5.034. <a href="./rfc2404">RFC 2404</a> The Use of HMAC-SHA-1-96 within ESP and AH
There are no IPv4 dependencies in this specification.
5.035. <a href="./rfc2405">RFC 2405</a> The ESP DES-CBC Cipher Algorithm With Explicit IV
There are no IPv4 dependencies in this specification.
5.036. <a href="./rfc2406">RFC 2406</a> IP Encapsulating Security Payload (ESP)
This specification is both IPv4 and IPv6 aware.
5.037. <a href="./rfc2407">RFC 2407</a> The Internet IP Security Domain of Interpretation
for ISAKMP
This specification is both IPv4 and IPv6 aware.
5.038. <a href="./rfc2408">RFC 2408</a> Internet Security Association and Key Management
Protocol (ISAKMP)
This specification is both IPv4 and IPv6 aware.
5.039. <a href="./rfc2409">RFC 2409</a> The Internet Key Exchange (IKE)
There are no IPv4 dependencies in this specification.
5.040. <a href="./rfc2410">RFC 2410</a> The NULL Encryption Algorithm and Its Use With
IPsec
There are no IPv4 dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.041. <a href="./rfc2419">RFC 2419</a> The PPP DES Encryption Protocol, Version 2
(DESE-bis)
There are no IPv4 dependencies in this specification.
5.042. <a href="./rfc2420">RFC 2420</a> The PPP Triple-DES Encryption Protocol (3DESE)
There are no IPv4 dependencies in this specification.
5.043. <a href="./rfc2440">RFC 2440</a> OpenPGP Message Format
There are no IPv4 dependencies in this specification.
5.044. <a href="./rfc2444">RFC 2444</a> The One-Time-Password SASL Mechanism
There are no IPv4 dependencies in this specification.
5.045. <a href="./rfc2451">RFC 2451</a> The ESP CBC-Mode Cipher Algorithms
There are no IPv4 dependencies in this specification.
5.046. <a href="./rfc2478">RFC 2478</a> The Simple and Protected GSS-API Negotiation
Mechanism
There are no IPv4 dependencies in this specification.
5.047. <a href="./rfc2510">RFC 2510</a> Internet X.509 Public Key Infrastructure
Certificate Management Protocols
There are no IPv4 dependencies in this specification.
5.048. <a href="./rfc2511">RFC 2511</a> Internet X.509 Certificate Request Message
Format
There are no IPv4 dependencies in this specification.
5.049. <a href="./rfc2535">RFC 2535</a> Domain Name System Security Extensions
There are no IPv4 dependencies in this specification. There are
discussions of A and AAAA records in the document, but have no
real implications on IPv4 dependency or on any IP related address
records.
5.050. <a href="./rfc2536">RFC 2536</a> DSA KEYs and SIGs in the Domain Name System (DNS)
There are no IPv4 dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.051. <a href="./rfc2538">RFC 2538</a> Storing Certificates in the Domain Name System
(DNS)
<a href="#section-3.1">Section 3.1</a> X.509 CERT RR Names
Some X.509 versions permit multiple names to be associated with
subjects and issuers under "Subject Alternate Name" and "Issuer
Alternate Name". For example, x.509v3 has such Alternate Names
with an ASN.1 specification as follows:
GeneralName ::= CHOICE {
otherName [0] INSTANCE OF OTHER-NAME,
rfc822Name [<a href="#ref-1" title=""Introduction to the Survey of IPv4 Addresses in Currently Deployed IETF Standards"">1</a>] IA5String,
dNSName [2] IA5String,
x400Address [3] EXPLICIT OR-ADDRESS.&Type,
directoryName [4] EXPLICIT Name,
ediPartyName [5] EDIPartyName,
uniformResourceIdentifier [6] IA5String,
iPAddress [7] OCTET STRING,
registeredID [8] OBJECT IDENTIFIER
}
uses a potential IPv4 only address. It goes on with the following
example:
Example 2: Assume that an X.509v3 certificate is issued to
/CN=James Hacker/L=Basingstoke/O=Widget Inc/C=GB/ with Subject
Alternate names of (a) domain name widget.foo.example,
(b) IPv4 address 10.251.13.201, and (c) string "James Hacker
<hacker@mail.widget.foo.example>". Then the storage locations
recommended, in priority order, would be
(1) widget.foo.example,
(2) 201.13.251.10.in-addr.arpa, and
(3) hacker.mail.widget.foo.example.
Since the definition of X.509v3 certificates is not discussed in this
document it is unclear if IPv6 addresses are also supported in the
above mentioned field. The document does however refer to <a href="./rfc2459">RFC 2459</a>
for the definition of a certificate, and <a href="./rfc2459">RFC 2459</a> is IPv6 and IPv4
aware -- so it seems this specification is IPv4 and IPv6 aware.
5.052. <a href="./rfc2539">RFC 2539</a> Storage of Diffie-Hellman Keys in the Domain
Name System (DNS)
There are no IPv4 dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.053. <a href="./rfc2560">RFC 2560</a> X.509 Internet Public Key Infrastructure Online
Certificate Status Specification - OCSP
There are no IPv4 dependencies in this specification.
5.054. <a href="./rfc2585">RFC 2585</a> Internet X.509 Public Key Infrastructure Operational
Protocols: FTP and HTTP
There are no IPv4 dependencies in this specification.
5.055. <a href="./rfc2587">RFC 2587</a> Internet X.509 Public Key Infrastructure
LDAPv2 Schema
There are no IPv4 dependencies in this specification.
5.056. <a href="./rfc2623">RFC 2623</a> NFS Version 2 and Version 3 Security Issues and the
NFS Protocol's Use of RPCSEC_GSS and Kerberos V5
There are no IPv4 dependencies in this specification.
5.057. <a href="./rfc2631">RFC 2631</a> Diffie-Hellman Key Agreement Method
There are no IPv4 dependencies in this specification.
5.058. <a href="./rfc2632">RFC 2632</a> S/MIME Version 3 Certificate Handling
There are no IPv4 dependencies in this specification.
5.059. <a href="./rfc2633">RFC 2633</a> S/MIME Version 3 Message Specification
There are no IPv4 dependencies in this specification.
5.060. <a href="./rfc2634">RFC 2634</a> Enhanced Security Services for S/MIME
There are no IPv4 dependencies in this specification.
5.061. <a href="./rfc2712">RFC 2712</a> Addition of Kerberos Cipher Suites to Transport
Layer Security (TLS)
There are no IPv4 dependencies in this specification.
5.062. <a href="./rfc2743">RFC 2743</a> Generic Security Service Application Program
Interface Version 2 Update 1
There are no IPv4 dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.063. <a href="./rfc2744">RFC 2744</a> Generic Security Service API Version 2:
C-bindings
There are no IPv4 dependencies in this specification.
5.064. <a href="./rfc2747">RFC 2747</a> RSVP Cryptographic Authentication
This specification is both IPv4 and IPv6 aware and needs no
changes.
5.065. <a href="./rfc2797">RFC 2797</a> Certificate Management Messages over CMS
There are no IPv4 dependencies in this specification.
5.066. <a href="./rfc2817">RFC 2817</a> Upgrading to TLS Within HTTP/1.1
There are no IPv4 dependencies in this specification.
5.067. <a href="./rfc2829">RFC 2829</a> Authentication Methods for LDAP
There are no IPv4 dependencies in this specification.
5.068. <a href="./rfc2830">RFC 2830</a> Lightweight Directory Access Protocol (v3):
Extension for Transport Layer Security (LDAP)
There are no IPv4 dependencies in this specification.
5.069. <a href="./rfc2831">RFC 2831</a> Using Digest Authentication as a SASL Mechanism
There are no IPv4 dependencies in this specification.
5.070. <a href="./rfc2845">RFC 2845</a> Secret Key Transaction Authentication for DNS (TSIG)
There are no IPv4 dependencies in this specification.
5.071. <a href="./rfc2847">RFC 2847</a> LIPKEY - A Low Infrastructure Public Key
Mechanism Using SPKM
There are no IPv4 dependencies in this specification.
5.072. <a href="./rfc2853">RFC 2853</a> Generic Security Service API Version 2 :
Java Bindings
The document uses the InetAddress variable which does not
necessarily limit it to IPv4 addresses so there are no IPv4
dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.073. <a href="./rfc2857">RFC 2857</a> The Use of HMAC-RIPEMD-160-96 within ESP and AH
There are no IPv4 dependencies in this specification.
5.074. <a href="./rfc2875">RFC 2875</a> Diffie-Hellman Proof-of-Possession Algorithms
There are no IPv4 dependencies in this specification.
5.075. <a href="./rfc2930">RFC 2930</a> Secret Key Establishment for DNS (TKEY RR)
There are no IPv4 dependencies in this specification.
5.076. <a href="./rfc2931">RFC 2931</a> DNS Request and Transaction
Signatures (SIG(0)s)
There are no IPv4 dependencies in this specification.
5.077. <a href="./rfc2935">RFC 2935</a> Internet Open Trading Protocol (IOTP)
HTTP Supplement
There are no IPv4 dependencies in this specification.
5.078. <a href="./rfc2941">RFC 2941</a> Telnet Authentication Option
There are no IPv4 dependencies in this specification.
5.079. <a href="./rfc2942">RFC 2942</a> Telnet Authentication: Kerberos Version 5
There are no IPv4 dependencies in this specification.
5.080. <a href="./rfc2943">RFC 2943</a> TELNET Authentication Using DSA
There are no IPv4 dependencies in this specification.
5.081. <a href="./rfc2944">RFC 2944</a> Telnet Authentication: SRP
There are no IPv4 dependencies in this specification.
5.082. <a href="./rfc2945">RFC 2945</a> The SRP Authentication and Key
Exchange System
There are no IPv4 dependencies in this specification.
5.083. <a href="./rfc2946">RFC 2946</a> Telnet Data Encryption Option
There are no IPv4 dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.084. <a href="./rfc2947">RFC 2947</a> Telnet Encryption: DES3 64 bit Cipher
Feedback
There are no IPv4 dependencies in this specification.
5.085. <a href="./rfc2948">RFC 2948</a> Telnet Encryption: DES3 64 bit Output
Feedback
There are no IPv4 dependencies in this specification.
5.086. <a href="./rfc2949">RFC 2949</a> Telnet Encryption: CAST-128 64 bit Output
Feedback
There are no IPv4 dependencies in this specification.
5.087. <a href="./rfc2950">RFC 2950</a> Telnet Encryption: CAST-128 64 bit Cipher
Feedback
There are no IPv4 dependencies in this specification.
5.088. <a href="./rfc2984">RFC 2984</a> Use of the CAST-128 Encryption Algorithm in CMS
There are no IPv4 dependencies in this specification.
5.089. <a href="./rfc3007">RFC 3007</a> Secure Domain Name System (DNS) Dynamic Update
There are no IPv4 dependencies in this specification.
5.090. <a href="./rfc3008">RFC 3008</a> Domain Name System Security (DNSSEC) Signing
Authority
There are no IPv4 dependencies in this specification.
5.091. <a href="./rfc3012">RFC 3012</a> Mobile IPv4 Challenge/Response Extensions
This document is specifically designed for IPv4.
5.092. <a href="./rfc3039">RFC 3039</a> Internet X.509 Public Key Infrastructure
Qualified Certificates Profile
There are no IPv4 dependencies in this specification.
5.093. <a href="./rfc3041">RFC 3041</a> Privacy Extensions for Stateless Address
Autoconfiguration in IPv6
This is an IPv6 related document and is not discussed in this
document.
<span class="grey">Nesser II & Bergstrom Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
5.094. <a href="./rfc3062">RFC 3062</a> LDAP Password Modify Extended Operation
There are no IPv4 dependencies in this specification.
5.095. <a href="./rfc3090">RFC 3090</a> DNS Security Extension Clarification on Zone
Status
There are no IPv4 dependencies in this specification.
5.096. <a href="./rfc3097">RFC 3097</a> RSVP Cryptographic Authentication --
Updated Message Type Value
There are no IPv4 dependencies in this specification.
5.097. <a href="./rfc3110">RFC 3110</a> RSA/SHA-1 SIGs and RSA KEYs in the Domain
Name System (DNS)
There are no IPv4 dependencies in this specification.
5.098. <a href="./rfc3118">RFC 3118</a> Authentication for DHCP Messages
This document is only designated for IPv4. It is expected that
similar functionality is available in DHCPv6.
5.099. <a href="./rfc3207">RFC 3207</a> SMTP Service Extension for Secure SMTP over
Transport Layer Security
There are no IPv4 dependencies in this specification.
5.100. <a href="./rfc3275">RFC 3275</a> (Extensible Markup Language) XML-Signature
Syntax and Processing
There are no IPv4 dependencies in this specification.
5.101. <a href="./rfc3280">RFC 3280</a> Internet X.509 Public Key Infrastructure
Certificate and Certificate Revocation List (CRL) Profile
This specification is IPv4 and IPv6 aware.
5.102. <a href="./rfc3369">RFC 3369</a> Cryptographic Message Syntax (CMS)
There are no IPv4 dependencies in this specification.
<span class="grey">Nesser II & Bergstrom Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
<span class="h3"><a class="selflink" id="section-6.0" href="#section-6.0">6.0</a>. Experimental RFCs</span>
Experimental RFCs typically define protocols that do not have
widescale implementation or usage on the Internet. They are often
propriety in nature or used in limited arenas. They are documented
to the Internet community in order to allow potential
interoperability or some other potential useful scenario. In a few
cases they are presented as alternatives to the mainstream solution
to an acknowledged problem.
6.01. <a href="./rfc1004">RFC 1004</a> Distributed-protocol authentication scheme
There are no IPv4 dependencies in this specification.
6.02. <a href="./rfc1411">RFC 1411</a> Telnet Authentication: Kerberos Version 4
There are no IPv4 dependencies in this specification.
6.03. <a href="./rfc1412">RFC 1412</a> Telnet Authentication: SPX
There are no IPv4 dependencies in this specification.
6.04. <a href="./rfc1507">RFC 1507</a> DASS - Distributed Authentication Security Service
There are no IPv4 dependencies in this specification.
6.05. <a href="./rfc1851">RFC 1851</a> The ESP Triple DES Transform
There are no IPv4 dependencies in this specification.
6.06. <a href="./rfc1949">RFC 1949</a> Scalable Multicast Key Distribution (SMKD)
This specification assumes the use of IGMP and is therefore
limited to IPv4 multicast. It is assumed that a similar mechanism
may be defined for IPv6 multicasting.
6.07. <a href="./rfc2093">RFC 2093</a> Group Key Management Protocol (GKMP) Specification
There are no IPv4 dependencies in this specification.
6.08. <a href="./rfc2094">RFC 2094</a> Group Key Management Protocol (GKMP) Architecture
There are no IPv4 dependencies in this specification.
6.09. <a href="./rfc2154">RFC 2154</a> OSPF with Digital Signatures
This OSPF option is IPv4 limited. See the following packet
format:
<span class="grey">Nesser II & Bergstrom Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
7.2. Router Public Key Certificate
A router public key certificate is a package of data signed by
a Trusted Entity. This certificate is included in the router
PKLSA and in the router configuration information. To change
any of the values in the certificate, a new certificate must be
obtained from a TE.
1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
| Router Id |
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
| TE Id | TE Key Id | Rtr Key Id | Sig Alg |
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
| Create Time |
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
| Key Field Length | Router Role | #Net Ranges |
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
| IP Address |
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
| Address Mask |
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
| IP Address/Address Mask for each Net Range ... /
| ... /
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
| Router Public Key |
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
| Certification /
+-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-*-+-+-+-+-+-+-+-+
#NET RANGES The number of network ranges that follow. A
network range is defined to be an IP Address
and an Address Mask. This list of ranges
defines the addresses that the Router is
permitted to advertise in its Router Links LSA.
Valid values are 0-255. If there are 0 ranges
the router cannot advertise anything. This is
not generally useful. One range with address=0
and mask=0 will allow a router to advertise any
address.
IP ADDRESS & ADDRESS MASK Define a range of addresses that this
router may advertise. Each is a 32 bit value.
One range with address=0 and mask=0 will allow
a router to advertise any address.
<span class="grey">Nesser II & Bergstrom Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
6.10. <a href="./rfc2522">RFC 2522</a> Photuris: Session-Key Management Protocol
There are no IPv4 dependencies in this specification.
6.11. <a href="./rfc2523">RFC 2523</a> Photuris: Extended Schemes and Attributes
There are no IPv4 dependencies in this specification.
6.12. <a href="./rfc2659">RFC 2659</a> Security Extensions For HTML
There are no IPv4 dependencies in this specification.
6.13. <a href="./rfc2660">RFC 2660</a> The Secure HyperText Transfer Protocol
There are no IPv4 dependencies in this specification.
6.14. <a href="./rfc2692">RFC 2692</a> SPKI Requirements
There are no IPv4 dependencies in this specification.
6.15. <a href="./rfc2693">RFC 2693</a> SPKI Certificate Theory
There are no IPv4 dependencies in this specification.
6.16. <a href="./rfc2716">RFC 2716</a> PPP EAP TLS Authentication Protocol
There are no IPv4 dependencies in this specification.
6.17. <a href="./rfc2773">RFC 2773</a> Encryption using KEA and SKIPJACK
This specification is both IPv4 and IPv6 aware and needs no
changes.
6.18. <a href="./rfc3029">RFC 3029</a> Internet X.509 Public Key Infrastructure Data
Validation and Certification Server Protocols
There are no IPv4 dependencies in this specification.
<span class="h3"><a class="selflink" id="section-7.0" href="#section-7.0">7.0</a>. Summary of Results</span>
In the initial survey of RFCs 4 positives were identified out of a
total of 124, broken down as follows:
Standards: 0 out of 1 or 0.00%
Draft Standards: 1 out of 3 or 33.33%
Proposed Standards: 1 out of 102 or 0.98%
Experimental RFCs: 2 out of 18 or 11.11%
<span class="grey">Nesser II & Bergstrom Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
Of those identified many require no action because they document
outdated and unused protocols, while others are document protocols
that are actively being updated by the appropriate working groups.
Additionally there are many instances of standards that should be
updated but do not cause any operational impact if they are not
updated. The remaining instances are documented below.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Standards</span>
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Draft Standards</span>
7.2.1. RADIUS (<a href="./rfc2865">RFC 2865</a>)
The problems have been resolved in <a href="./rfc3162">RFC 3162</a>, RADIUS and IPv6.
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. Proposed Standards</span>
7.3.1. RIPv2 MD5 Authentication (<a href="./rfc2082">RFC 2082</a>)
This functionality has been assumed by the use of the IPsec AH
header as defined in <a href="./rfc2402">RFC 2402</a>, IP Authentication Header.
7.3.2. Mobile IPv4 Challenge Response Extension (<a href="./rfc3012">RFC 3012</a>)
The problems are not being addressed and similar functions may be
needed in Mobile IPv6.
7.3.3. Authentication for DHCP Messages (<a href="./rfc3118">RFC 3118</a>)
This problem has been fixed in <a href="./rfc3315">RFC 3315</a>, Dynamic Host
Configuration Protocol for IPv6 (DHCPv6).
<span class="h3"><a class="selflink" id="section-7.4" href="#section-7.4">7.4</a>. Experimental RFCs</span>
7.4.1. Scalable Multicast Key Distribution (<a href="./rfc1949">RFC 1949</a>)
This specification relies on IPv4 IGMP Multicast and a new
specification may be produced; however, the SMKD is not believed
to be in use.
7.4.2. OPSF with Digital Signatures (<a href="./rfc2154">RFC 2154</a>)
This specification is IPv4-only, and relies on an IPv4-only
routing protocol, OSPFv2. Due to increased focus on routing
security, this specification may need to be revisited, and in that
case it should support both OSPFv2 and OPSFv3.
<span class="grey">Nesser II & Bergstrom Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
<span class="h3"><a class="selflink" id="section-8.0" href="#section-8.0">8.0</a>. Security Considerations</span>
This memo examines the IPv6-readiness of specifications; this does
not have security considerations in itself.
<span class="h3"><a class="selflink" id="section-9.0" href="#section-9.0">9.0</a>. Acknowledgements</span>
The authors would like to acknowledge the support of the Internet
Society in the research and production of this document.
Additionally the author, Philip J. Nesser II, would like to thanks
his partner in all ways, Wendy M. Nesser.
The editor, Andreas Bergstrom, would like to thank Pekka Savola for
guidance and collection of comments for the editing of this document.
<span class="h3"><a class="selflink" id="section-10.0" href="#section-10.0">10.0</a>. Normative Reference</span>
[<a id="ref-1">1</a>] Nesser, II, P. and A. Bergstrom, Editor, "Introduction to the
Survey of IPv4 Addresses in Currently Deployed IETF Standards",
<a href="./rfc3789">RFC 3789</a>, June 2004.
<span class="h3"><a class="selflink" id="section-11.0" href="#section-11.0">11.0</a>. Authors' Addresses</span>
Please contact the author with any questions, comments or suggestions
at:
Philip J. Nesser II
Principal
Nesser & Nesser Consulting
13501 100th Ave NE, #5202
Kirkland, WA 98034
Phone: +1 425 481 4303
Fax: +1 425 48
EMail: phil@nesser.com
Andreas Bergstrom (Editor)
Ostfold University College
Rute 503 Buer
N-1766 Halden
Norway
EMail: andreas.bergstrom@hiof.no
<span class="grey">Nesser II & Bergstrom Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc3792">RFC 3792</a> IPv4 Addresses in the IETF Security Area June 2004</span>
<span class="h3"><a class="selflink" id="section-12.0" href="#section-12.0">12.0</a>. Full Copyright Statement</span>
Copyright (C) The Internet Society (2004). This document is subject
to the rights, licenses and restrictions contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and
except as set forth therein, the authors retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at ietf-
ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Nesser II & Bergstrom Informational [Page 25]
</pre>
|