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
|
<pre>Network Working Group P. Congdon
Request for Comments: 3580 Hewlett Packard Company
Category: Informational B. Aboba
Microsoft
A. Smith
Trapeze Networks
G. Zorn
Cisco Systems
J. Roese
Enterasys
September 2003
<span class="h1">IEEE 802.1X Remote Authentication Dial In User Service (RADIUS)</span>
<span class="h1">Usage Guidelines</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 (2003). All Rights Reserved.
Abstract
This document provides suggestions on Remote Authentication Dial In
User Service (RADIUS) usage by IEEE 802.1X Authenticators. The
material in this document is also included within a non-normative
Appendix within the IEEE 802.1X specification, and is being presented
as an IETF RFC for informational purposes.
<span class="grey">Congdon, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Terminology. . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-1.2">1.2</a>. Requirements Language. . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2">2</a>. RADIUS Accounting Attributes . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-2.1">2.1</a>. Acct-Terminate-Cause . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-2.2">2.2</a>. Acct-Multi-Session-Id. . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-2.3">2.3</a>. Acct-Link-Count. . . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-3">3</a>. RADIUS Authentication. . . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-3.1">3.1</a>. User-Name. . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-3.2">3.2</a>. User-Password, CHAP-Password, CHAP-Challenge . . . . . . <a href="#page-8">8</a>
<a href="#section-3.3">3.3</a>. NAS-IP-Address, NAS-IPv6-Address . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-3.4">3.4</a>. NAS-Port . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-3.5">3.5</a>. Service-Type . . . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-3.6">3.6</a>. Framed-Protocol. . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3.7">3.7</a>. Framed-IP-Address, Framed-IP-Netmask . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3.8">3.8</a>. Framed-Routing . . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3.9">3.9</a>. Filter-ID. . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3.10">3.10</a>. Framed-MTU . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3.11">3.11</a>. Framed-Compression . . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-3.12">3.12</a>. Displayable Messages . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-3.13">3.13</a>. Callback-Number, Callback-ID . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-3.14">3.14</a>. Framed-Route, Framed-IPv6-Route. . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-3.15">3.15</a>. State, Class, Proxy-State. . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-3.16">3.16</a>. Vendor-Specific. . . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-3.17">3.17</a>. Session-Timeout. . . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-3.18">3.18</a>. Idle-Timeout . . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.19">3.19</a>. Termination-Action . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.20">3.20</a>. Called-Station-Id. . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.21">3.21</a>. Calling-Station-Id . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.22">3.22</a>. NAS-Identifier . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.23">3.23</a>. NAS-Port-Type. . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.24">3.24</a>. Port-Limit . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-3.25">3.25</a>. Password-Retry . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-3.26">3.26</a>. Connect-Info . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-3.27">3.27</a>. EAP-Message. . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-3.28">3.28</a>. Message-Authenticator. . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-3.29">3.29</a>. NAS-Port-Id. . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-3.30">3.30</a>. Framed-Pool, Framed-IPv6-Pool. . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-3.31">3.31</a>. Tunnel Attributes. . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-4">4</a>. RC4 EAPOL-Key Descriptor . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-5">5</a>. Security Considerations. . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-5.1">5.1</a>. Packet Modification or Forgery . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-5.2">5.2</a>. Dictionary Attacks . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-5.3">5.3</a>. Known Plaintext Attacks. . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-5.4">5.4</a>. Replay . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-5.5">5.5</a>. Outcome Mismatches . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<span class="grey">Congdon, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<a href="#section-5.6">5.6</a>. 802.11 Integration . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-5.7">5.7</a>. Key Management Issues. . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-6">6</a>. IANA Considerations. . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-7">7</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-7.1">7.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-7.2">7.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-8">8</a>. Table of Attributes. . . . . . . . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#section-9">9</a>. Intellectual Property Statement . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-10">10</a>. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-11">11</a>. Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-12">12</a>. Full Copyright Statement . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
IEEE 802.1X enables authenticated access to IEEE 802 media, including
Ethernet, Token Ring, and 802.11 wireless LANs. Although Remote
Authentication Dial In User Service (RADIUS) support is optional
within IEEE 802.1X, it is expected that many IEEE 802.1X
Authenticators will function as RADIUS clients.
IEEE 802.1X [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>] provides "network port authentication" for
IEEE 802 [<a href="#ref-IEEE802" title="ANSI/IEEE Std 802">IEEE802</a>] media, including Ethernet [<a href="#ref-IEEE8023" title="(also ANSI/IEEE Std 802.3- 1996)">IEEE8023</a>], Token Ring
and 802.11 [<a href="#ref-IEEE80211" title="IEEE Std. 802.11-1999">IEEE80211</a>] wireless LANS.
IEEE 802.1X does not require use of a backend Authentication Server,
and thus can be deployed with stand-alone bridges or Access Points,
as well as in centrally managed scenarios.
In situations where it is desirable to centrally manage
authentication, authorization and accounting (AAA) for IEEE 802
networks, deployment of a backend authentication and accounting
server is desirable. In such situations, it is expected that IEEE
802.1X Authenticators will function as AAA clients.
This document provides suggestions on RADIUS usage by IEEE 802.1X
Authenticators. Support for any AAA protocol is optional for IEEE
802.1X Authenticators, and therefore this specification has been
incorporated into a non-normative Appendix within the IEEE 802.1X
specification.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Terminology</span>
This document uses the following terms:
Access Point (AP)
A Station that provides access to the distribution services via
the wireless medium for associated Stations.
<span class="grey">Congdon, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
Association
The service used to establish Access Point/Station mapping and
enable Station invocation of the distribution system services.
Authenticator
An Authenticator is an entity that requires authentication from
the Supplicant. The Authenticator may be connected to the
Supplicant at the other end of a point-to-point LAN segment or
802.11 wireless link.
Authentication Server
An Authentication Server is an entity that provides an
Authentication Service to an Authenticator. This service
verifies, from the credentials provided by the Supplicant, the
claim of identity made by the Supplicant.
Port Access Entity (PAE)
The protocol entity associated with a physical or virtual
(802.11) Port. A given PAE may support the protocol
functionality associated with the Authenticator, Supplicant or
both.
Station (STA)
Any device that contains an IEEE 802.11 conformant medium
access control (MAC) and physical layer (PHY) interface to the
wireless medium (WM).
Supplicant
A Supplicant is an entity that is being authenticated by an
Authenticator. The Supplicant may be connected to the
Authenticator at one end of a point-to-point LAN segment or
802.11 wireless link.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Requirements Language</span>
In this document, several words are used to signify the requirements
of the specification. These words are often capitalized. The key
words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document
are to be interpreted as described in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="grey">Congdon, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. RADIUS Accounting Attributes</span>
With a few exceptions, the RADIUS accounting attributes defined in
[<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>], [<a href="./rfc2867" title=""RADIUS Accounting Modifications for Tunnel Protocol Support"">RFC2867</a>], and [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>] have the same meaning within IEEE
802.1X sessions as they do in dialup sessions and therefore no
additional commentary is needed.
Attributes requiring more discussion include:
Acct-Terminate-Cause
Acct-Multi-Session-Id
Acct-Link-Count
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Acct-Terminate-Cause</span>
This attribute indicates how the session was terminated, as described
in [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]. [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>] defines the following termination cause
values, which are shown with their RADIUS equivalents in the table on
the next page.
IEEE 802.1X RADIUS
dot1xAuthSessionTerminateCause Acct-Terminate-Cause
Value Value
------------- --------------------
SupplicantLogoff(1) User Request (1)
portFailure(2) Lost Carrier (2)
SupplicantRestart(3) Supplicant Restart (19)
reauthFailed(4) Reauthentication Failure (20)
authControlForceUnauth(5) Admin Reset (6)
portReInit(6) Port Reinitialized (21)
portAdminDisabled(7) Port Administratively Disabled (22)
notTerminatedYet(999) N/A
When using this attribute, the User Request (1) termination cause
corresponds to the situation in which the session terminated due to
an EAPOL-Logoff received from the Supplicant. When a session is
moved due to roaming, the EAPOL state machines will treat this as a
Supplicant Logoff.
A Lost Carrier (2) termination cause indicates session termination
due to loss of physical connectivity for reasons other than roaming
between Access Points. For example, if the Supplicant disconnects a
point-to-point LAN connection, or moves out of range of an Access
Point, this termination cause is used. Lost Carrier (2) therefore
equates to a Port Disabled condition in the EAPOL state machines.
A Supplicant Restart (19) termination cause indicates
re-initialization of the Supplicant state machines.
<span class="grey">Congdon, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
A Reauthentication Failure (20) termination cause indicates that a
previously authenticated Supplicant has failed to re-authenticate
successfully following expiry of the re-authentication timer or
explicit re-authentication request by management action.
Within [<a href="#ref-IEEE80211" title="IEEE Std. 802.11-1999">IEEE80211</a>], periodic re-authentication may be useful in
preventing reuse of an initialization vector with a given key. Since
successful re-authentication does not result in termination of the
session, accounting packets are not sent as a result of
re-authentication unless the status of the session changes. For
example:
a. The session is terminated due to re-authentication failure. In
this case the Reauthentication Failure (20) termination cause is
used.
b. The authorizations are changed as a result of a successful
re-authentication. In this case, the Service Unavailable (15)
termination cause is used. For accounting purposes, the portion
of the session after the authorization change is treated as a
separate session.
Where IEEE 802.1X authentication occurs prior to association,
accounting packets are not sent until an association occurs.
An Admin Reset (6) termination cause indicates that the Port has been
administratively forced into the unauthorized state.
A Port Reinitialized (21) termination cause indicates that the Port's
MAC has been reinitialized.
A Port Administratively Disabled (22) termination cause indicates
that the Port has been administratively disabled.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Acct-Multi-Session-Id</span>
The purpose of this attribute is to make it possible to link together
multiple related sessions. While [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>] does not act on
aggregated ports, it is possible for a Supplicant roaming between
Access Points to cause multiple RADIUS accounting packets to be sent
by different Access Points.
Where supported by the Access Points, the Acct-Multi-Session-Id
attribute can be used to link together the multiple related sessions
of a roaming Supplicant. In such a situation, if the session context
is transferred between Access Points, accounting packets MAY be sent
without a corresponding authentication and authorization exchange,
<span class="grey">Congdon, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
provided that Association has occurred. However, in such a situation
it is assumed that the Acct-Multi-Session-Id is transferred between
the Access Points as part of the Inter-Access Point Protocol (IAPP).
If the Acct-Multi-Session-Id were not unique between Access Points,
then it is possible that the chosen Acct-Multi-Session-Id will
overlap with an existing value allocated on that Access Point, and
the Accounting Server would therefore be unable to distinguish a
roaming session from a multi-link session.
As a result, the Acct-Multi-Session-Id attribute is unique among all
the bridges or Access Points, Supplicants and sessions. In order to
provide this uniqueness, it is suggested that the Acct-Multi-
Session-Id be of the form:
Original AP MAC Address | Supplicant MAC Address | NTP Timestamp
Here "|" represents concatenation, the original AP MAC Address is the
MAC address of the bridge or Access Point at which the session
started, and the 64-bit NTP timestamp indicates the beginning of the
original session. In order to provide for consistency of the Acct-
Multi-Session-Id between roaming sessions, the Acct-Multi-Session-Id
may be moved between Access Points as part of IAPP or another handoff
scheme.
The use of an Acct-Multi-Session-Id of this form guarantees
uniqueness among all Access Points, Supplicants and sessions. Since
the NTP timestamp does not wrap on reboot, there is no possibility
that a rebooted Access Point could choose an Acct-Multi-Session-Id
that could be confused with that of a previous session.
Since the Acct-Multi-Session-Id is of type String as defined in
[<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>], for use with IEEE 802.1X, it is encoded as an ASCII string
of Hex digits. Example: "00-10-A4-23-19-C0-00-12-B2-
14-23-DE-AF-23-83-C0-76-B8-44-E8"
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Acct-Link-Count</span>
The Acct-Link-Count attribute may be used to account for the number
of ports that have been aggregated.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. RADIUS Authentication</span>
This section describes how attributes defined in [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>],
[<a href="./rfc2867" title=""RADIUS Accounting Modifications for Tunnel Protocol Support"">RFC2867</a>], [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>], [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>], [<a href="./rfc3162" title=""RADIUS and IPv6"">RFC3162</a>] and [<a href="./rfc3579" title=""RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)"">RFC3579</a>] are used in
IEEE 802.1X authentication.
<span class="grey">Congdon, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. User-Name</span>
In IEEE 802.1X, the Supplicant typically provides its identity via an
EAP-Response/Identity message. Where available, the Supplicant
identity is included in the User-Name attribute, and included in the
RADIUS Access-Request and Access-Reply messages as specified in
[<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>] and [<a href="./rfc3579" title=""RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)"">RFC3579</a>].
Alternatively, as discussed in <a href="./rfc3579#section-2.1">[RFC3579] Section 2.1</a>., the User-Name
attribute may contain the Calling-Station-ID value, which is set to
the Supplicant MAC address.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. User-Password, CHAP-Password, CHAP-Challenge</span>
Since IEEE 802.1X does not support PAP or CHAP authentication, the
User-Password, CHAP-Password or CHAP-Challenge attributes are not
used by IEEE 802.1X Authenticators acting as RADIUS clients.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. NAS-IP-Address, NAS-IPv6-Address</span>
For use with IEEE 802.1X, the NAS-IP-Address contains the IPv4
address of the bridge or Access Point acting as an Authenticator, and
the NAS-IPv6-Address contains the IPv6 address. If the IEEE 802.1X
Authenticator has more than one interface, it may be desirable to use
a loopback address for this purpose so that the Authenticator will
still be reachable even if one of the interfaces were to fail.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. NAS-Port</span>
For use with IEEE 802.1X the NAS-Port will contain the port number of
the bridge, if this is available. While an Access Point does not
have physical ports, a unique "association ID" is assigned to every
mobile Station upon a successful association exchange. As a result,
for an Access Point, if the association exchange has been completed
prior to authentication, the NAS-Port attribute will contain the
association ID, which is a 16-bit unsigned integer. Where IEEE
802.1X authentication occurs prior to association, a unique NAS-Port
value may not be available.
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. Service-Type</span>
For use with IEEE 802.1X, the Framed (2), Authenticate Only (8), and
Call Check (10) values are most commonly used.
A Service-Type of Framed indicates that appropriate 802 framing
should be used for the connection. A Service-Type of Authenticate
Only (8) indicates that no authorization information needs to be
returned in the Access-Accept. As described in [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>], a
<span class="grey">Congdon, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
Service-Type of Call Check is included in an Access-Request packet to
request that the RADIUS server accept or reject the connection
attempt, typically based on the Called-Station-ID (set to the bridge
or Access Point MAC address) or Calling-Station-ID attributes (set to
the Supplicant MAC address). As noted in [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>], it is
recommended that in this case, the User-Name attribute be given the
value of Calling-Station-Id.
<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a>. Framed-Protocol</span>
Since there is no value for IEEE 802 media, the Framed-Protocol
attribute is not used by IEEE 802.1X Authenticators.
<span class="h3"><a class="selflink" id="section-3.7" href="#section-3.7">3.7</a>. Framed-IP-Address, Framed-IP-Netmask</span>
IEEE 802.1X does not provide a mechanism for IP address assignment.
Therefore the Framed-IP-Address and Framed-IP-Netmask attributes can
only be used by IEEE 802.1X Authenticators that support IP address
assignment mechanisms. Typically this capability is supported by
layer 3 devices.
<span class="h3"><a class="selflink" id="section-3.8" href="#section-3.8">3.8</a>. Framed-Routing</span>
The Framed-Routing attribute indicates the routing method for the
Supplicant. It is therefore only relevant for IEEE 802.1X
Authenticators that act as layer 3 devices, and cannot be used by a
bridge or Access Point.
<span class="h3"><a class="selflink" id="section-3.9" href="#section-3.9">3.9</a>. Filter-ID</span>
This attribute indicates the name of the filter list to be applied to
the Supplicant's session. For use with an IEEE 802.1X Authenticator,
it may be used to indicate either layer 2 or layer 3 filters. Layer
3 filters are typically only supported on IEEE 802.1X Authenticators
that act as layer 3 devices.
<span class="h3"><a class="selflink" id="section-3.10" href="#section-3.10">3.10</a>. Framed-MTU</span>
This attribute indicates the maximum size of an IP packet that may be
transmitted over the wire between the Supplicant and the
Authenticator. IEEE 802.1X Authenticators set this to the value
corresponding to the relevant 802 medium, and include it in the
RADIUS Access-Request. The RADIUS server may send an EAP packet as
large as Framed-MTU minus four (4) octets, taking into account the
additional overhead for the IEEE 802.1X Version (1), Type (1) and
Body Length (2) fields. For EAP over IEEE 802 media, the Framed-MTU
values (which do not include LLC/SNAP overhead) and maximum frame
length values (not including the preamble) are as follows:
<span class="grey">Congdon, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
Maximum Frame
Media Framed-MTU Length
========= =============== ==============
Ethernet 1500 1522
802.3 1500 1522
802.4 8174 8193
802.5 (4 Mbps) 4528 4550
802.5 (16 Mbps) 18173 18200
802.5 (100 Mb/s) 18173 18200
802.6 9191 9240
802.9a 1500 1518
802.11 2304 2346
802.12 (Ethernet) 1500 1518
802.12 (Token Ring) 4502 4528
FDDI 4479 4500
NOTE - the Framed-MTU size for IEEE 802.11 media may change as a
result of ongoing work being undertaken in the IEEE 802.11 Working
Group. Since some 802.11 stations cannot handle an MTU larger than
1500 octets, it is recommended that RADIUS servers encountering a
NAS-Port-Type value of 802.11 send EAP packets no larger than 1496
octets.
<span class="h3"><a class="selflink" id="section-3.11" href="#section-3.11">3.11</a>. Framed-Compression</span>
[<a id="ref-IEEE8021X">IEEE8021X</a>] does not include compression support. Therefore this
attribute is not understood by [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>] Authenticators.
<span class="h3"><a class="selflink" id="section-3.12" href="#section-3.12">3.12</a>. Displayable Messages</span>
The Reply-Message attribute, defined in <a href="./rfc2865#section-5.18">section 5.18 of [RFC2865]</a>,
indicates text which may be displayed to the user. This is similar
in concept to the EAP Notification Type, defined in [<a href="./rfc2284" title=""PPP Extensible Authentication Protocol (EAP)"">RFC2284</a>]. As
noted in <a href="./rfc3579#section-2.6.5">[RFC3579], Section 2.6.5</a>, when sending a displayable message
to an [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>] Authenticator, displayable messages are best sent
within EAP-Message/EAP-Request/Notification attribute(s), and not
within Reply-Message attribute(s).
<span class="h3"><a class="selflink" id="section-3.13" href="#section-3.13">3.13</a>. Callback-Number, Callback-ID</span>
These attributes are not understood by IEEE 802.1X Authenticators.
<span class="grey">Congdon, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h3"><a class="selflink" id="section-3.14" href="#section-3.14">3.14</a>. Framed-Route, Framed-IPv6-Route</span>
The Framed-Route and Framed-IPv6-Route attributes provide routes that
are to be configured for the Supplicant. These attributes are
therefore only relevant for IEEE 802.1X Authenticators that act as
layer 3 devices, and cannot be understood by a bridge or Access
Point.
<span class="h3"><a class="selflink" id="section-3.15" href="#section-3.15">3.15</a>. State, Class, Proxy-State</span>
These attributes are used for the same purposes as described in
[<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>].
<span class="h3"><a class="selflink" id="section-3.16" href="#section-3.16">3.16</a>. Vendor-Specific</span>
Vendor-specific attributes are used for the same purposes as
described in [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]. The MS-MPPE-Send-Key and MS-MPPE-Recv-Key
attributes, described in <a href="./rfc2548#section-2.4">section 2.4 of [RFC2548]</a>, MAY be used to
encrypt and authenticate the RC4 EAPOL-Key descriptor [IEEE8021X,
<a href="#section-7.6">Section 7.6</a>]. Examples of the derivation of the MS-MPPE-Send-Key and
MS-MPPE-Recv-Key attributes from the master key negotiated by an EAP
method are given in [<a href="./rfc2716" title=""PPP EAP TLS Authentication Protocol"">RFC2716</a>]. Details of the EAPOL-Key descriptor
are provided in <a href="#section-4">Section 4</a>.
<span class="h3"><a class="selflink" id="section-3.17" href="#section-3.17">3.17</a>. Session-Timeout</span>
When sent along in an Access-Accept without a Termination-Action
attribute or with a Termination-Action attribute set to Default, the
Session-Timeout attribute specifies the maximum number of seconds of
service provided prior to session termination.
When sent in an Access-Accept along with a Termination-Action value
of RADIUS-Request, the Session-Timeout attribute specifies the
maximum number of seconds of service provided prior to re-
authentication. In this case, the Session-Timeout attribute is used
to load the reAuthPeriod constant within the Reauthentication Timer
state machine of 802.1X. When sent with a Termination-Action value
of RADIUS-Request, a Session-Timeout value of zero indicates the
desire to perform another authentication (possibly of a different
type) immediately after the first authentication has successfully
completed.
When sent in an Access-Challenge, this attribute represents the
maximum number of seconds that an IEEE 802.1X Authenticator should
wait for an EAP-Response before retransmitting. In this case, the
Session-Timeout attribute is used to load the suppTimeout constant
within the backend state machine of IEEE 802.1X.
<span class="grey">Congdon, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h3"><a class="selflink" id="section-3.18" href="#section-3.18">3.18</a>. Idle-Timeout</span>
The Idle-Timeout attribute is described in [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]. For IEEE 802
media other than 802.11 the media are always on. As a result the
Idle-Timeout attribute is typically only used with wireless media
such as IEEE 802.11. It is possible for a wireless device to wander
out of range of all Access Points. In this case, the Idle-Timeout
attribute indicates the maximum time that a wireless device may
remain idle.
<span class="h3"><a class="selflink" id="section-3.19" href="#section-3.19">3.19</a>. Termination-Action</span>
This attribute indicates what action should be taken when the service
is completed. The value RADIUS-Request (1) indicates that re-
authentication should occur on expiration of the Session-Time. The
value Default (0) indicates that the session should terminate.
<span class="h3"><a class="selflink" id="section-3.20" href="#section-3.20">3.20</a>. Called-Station-Id</span>
For IEEE 802.1X Authenticators, this attribute is used to store the
bridge or Access Point MAC address in ASCII format (upper case only),
with octet values separated by a "-". Example: "00-10-A4-23-19-C0".
In IEEE 802.11, where the SSID is known, it SHOULD be appended to the
Access Point MAC address, separated from the MAC address with a ":".
Example "00-10-A4-23-19-C0:AP1".
<span class="h3"><a class="selflink" id="section-3.21" href="#section-3.21">3.21</a>. Calling-Station-Id</span>
For IEEE 802.1X Authenticators, this attribute is used to store the
Supplicant MAC address in ASCII format (upper case only), with octet
values separated by a "-". Example: "00-10-A4-23-19-C0".
<span class="h3"><a class="selflink" id="section-3.22" href="#section-3.22">3.22</a>. NAS-Identifier</span>
This attribute contains a string identifying the IEEE 802.1X
Authenticator originating the Access-Request.
<span class="h3"><a class="selflink" id="section-3.23" href="#section-3.23">3.23</a>. NAS-Port-Type</span>
For use with IEEE 802.1X, NAS-Port-Type values of Ethernet (15)
Wireless - IEEE 802.11 (19), Token Ring (20) and FDDI (21) may be
used.
<span class="grey">Congdon, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h3"><a class="selflink" id="section-3.24" href="#section-3.24">3.24</a>. Port-Limit</span>
This attribute has no meaning when sent to an [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>]
Authenticator.
<span class="h3"><a class="selflink" id="section-3.25" href="#section-3.25">3.25</a>. Password-Retry</span>
In IEEE 802.1X, the Authenticator always transitions to the HELD
state after an authentication failure. Thus this attribute does not
make sense for IEEE 802.1X.
<span class="h3"><a class="selflink" id="section-3.26" href="#section-3.26">3.26</a>. Connect-Info</span>
This attribute is sent by a bridge or Access Point to indicate the
nature of the Supplicant's connection. When sent in the Access-
Request it is recommended that this attribute contain information on
the speed of the Supplicant's connection. For 802.11, the following
format is recommended: "CONNECT 11Mbps 802.11b". If sent in the
Accounting STOP, this attribute may be used to summarize statistics
relating to session quality. For example, in IEEE 802.11, the
Connect-Info attribute may contain information on the number of link
layer retransmissions. The exact format of this attribute is
implementation specific.
<span class="h3"><a class="selflink" id="section-3.27" href="#section-3.27">3.27</a>. EAP-Message</span>
Since IEEE 802.1X provides for encapsulation of EAP as described in
[<a href="./rfc2284" title=""PPP Extensible Authentication Protocol (EAP)"">RFC2284</a>] and [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>], the EAP-Message attribute defined in
[<a href="./rfc3579" title=""RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)"">RFC3579</a>] is used to encapsulate EAP packets for transmission from
the IEEE 802.1X Authenticator to the Authentication Server. <a href="./rfc3579#section-2.2">[RFC3579]
Section 2.2</a>. describes how the Authentication Server handles invalid
EAP packets passed to it by the Authenticator.
<span class="h3"><a class="selflink" id="section-3.28" href="#section-3.28">3.28</a>. Message-Authenticator</span>
As noted in <a href="./rfc3579#section-3.1">[RFC3579] Section 3.1</a>., the Message-Authenticator
attribute MUST be used to protect packets within a RADIUS/EAP
conversation.
<span class="h3"><a class="selflink" id="section-3.29" href="#section-3.29">3.29</a>. NAS-Port-Id</span>
This attribute is used to identify the IEEE 802.1X Authenticator port
which authenticates the Supplicant. The NAS-Port-Id differs from the
NAS-Port in that it is a string of variable length whereas the NAS-
Port is a 4 octet value.
<span class="grey">Congdon, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h3"><a class="selflink" id="section-3.30" href="#section-3.30">3.30</a>. Framed-Pool, Framed-IPv6-Pool</span>
IEEE 802.1X does not provide a mechanism for IP address assignment.
Therefore the Framed-Pool and Framed-IPv6-Pool attributes can only be
used by IEEE 802.1X Authenticators that support IP address assignment
mechanisms. Typically this capability is supported by layer 3
devices.
<span class="h3"><a class="selflink" id="section-3.31" href="#section-3.31">3.31</a>. Tunnel Attributes</span>
Reference [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>] defines RADIUS tunnel attributes used for
authentication and authorization, and [<a href="./rfc2867" title=""RADIUS Accounting Modifications for Tunnel Protocol Support"">RFC2867</a>] defines tunnel
attributes used for accounting. Where the IEEE 802.1X Authenticator
supports tunneling, a compulsory tunnel may be set up for the
Supplicant as a result of the authentication.
In particular, it may be desirable to allow a port to be placed into
a particular Virtual LAN (VLAN), defined in [<a href="#ref-IEEE8021Q" title="P802.1Q">IEEE8021Q</a>], based on the
result of the authentication. This can be used, for example, to
allow a wireless host to remain on the same VLAN as it moves within a
campus network.
The RADIUS server typically indicates the desired VLAN by including
tunnel attributes within the Access-Accept. However, the IEEE 802.1X
Authenticator may also provide a hint as to the VLAN to be assigned
to the Supplicant by including Tunnel attributes within the Access-
Request.
For use in VLAN assignment, the following tunnel attributes are used:
Tunnel-Type=VLAN (13)
Tunnel-Medium-Type=802
Tunnel-Private-Group-ID=VLANID
Note that the VLANID is 12-bits, taking a value between 1 and 4094,
inclusive. Since the Tunnel-Private-Group-ID is of type String as
defined in [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>], for use with IEEE 802.1X, the VLANID integer
value is encoded as a string.
When Tunnel attributes are sent, it is necessary to fill in the Tag
field. As noted in <a href="./rfc2868#section-3.1">[RFC2868], section 3.1</a>:
The Tag field is one octet in length and is intended to provide a
means of grouping attributes in the same packet which refer to the
same tunnel. Valid values for this field are 0x01 through 0x1F,
inclusive. If the Tag field is unused, it MUST be zero (0x00).
<span class="grey">Congdon, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
For use with Tunnel-Client-Endpoint, Tunnel-Server-Endpoint, Tunnel-
Private-Group-ID, Tunnel-Assignment-ID, Tunnel-Client-Auth-ID or
Tunnel-Server-Auth-ID attributes (but not Tunnel-Type, Tunnel-
Medium-Type, Tunnel-Password, or Tunnel-Preference), a tag field of
greater than 0x1F is interpreted as the first octet of the following
field.
Unless alternative tunnel types are provided, (e.g. for IEEE 802.1X
Authenticators that may support tunneling but not VLANs), it is only
necessary for tunnel attributes to specify a single tunnel. As a
result, where it is only desired to specify the VLANID, the tag field
SHOULD be set to zero (0x00) in all tunnel attributes. Where
alternative tunnel types are to be provided, tag values between 0x01
and 0x1F SHOULD be chosen.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. RC4 EAPOL-Key Frame</span>
The RC4 EAPOL-Key frame is created and transmitted by the
Authenticator in order to provide media specific key information.
For example, within 802.11 the RC4 EAPOL-Key frame can be used to
distribute multicast/broadcast ("default") keys, or unicast ("key
mapping") keys. The "default" key is the same for all Stations
within a broadcast domain.
The RC4 EAPOL-Key frame is not acknowledged and therefore the
Authenticator does not know whether the Supplicant has received it.
If it is lost, then the Supplicant and Authenticator will not have
the same keying material, and communication will fail. If this
occurs, the problem is typically addressed by re-running the
authentication.
The RC4 EAPOL-Key frame is sent from the Authenticator to the
Supplicant in order to provision the "default" key, and subsequently
in order to refresh the "default" key. It may also be used to
refresh the key-mapping key. Rekey is typically only required with
weak ciphersuites such as WEP, defined in [<a href="#ref-IEEE80211" title="IEEE Std. 802.11-1999">IEEE80211</a>].
Where keys are required, an EAP method that derives keys is typically
selected. Therefore the initial "key mapping" keys can be derived
from EAP keying material, without requiring the Authenticator to send
an RC4 EAPOL-Key frame to the Supplicant. An example of how EAP
keying material can be derived and used is presented in [<a href="./rfc2716" title=""PPP EAP TLS Authentication Protocol"">RFC2716</a>].
<span class="grey">Congdon, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
While the RC4 EAPOL-Key frame is defined in [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>], a more
complete description is provided on the next page.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Version | Packet Type | Packet Body Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Key Length |Replay Counter...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Replay Counter...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Replay Counter | Key IV...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key IV...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key IV...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key IV...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key IV... |F| Key Index |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key Signature...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key Signature...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key Signature...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key Signature...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Key...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Version
The Version field is one octet. For IEEE 802.1X, it contains the
value 0x01.
Packet Type
The Packet Type field is one octet, and determines the type of
packet being transmitted. For an EAPOL-Key Descriptor, the Packet
Type field contains 0x03.
Packet Body Length
The Packet Body Length is two octets, and contains the length of
the EAPOL-Key descriptor in octets, not including the Version,
Packet Type and Packet Body Length fields.
<span class="grey">Congdon, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
Type
The Type field is a single octet. The Key descriptor is defined
differently for each Type; this specification documents only the
RC4 Key Descriptor (Type = 0x01).
Key Length
The Key Length field is two octets. If Packet Body Length = 44 +
Key Length, then the Key Field contains the key in encrypted form,
of length Key Length. This is 5 octets (40 bits) for WEP, and 13
octets (104 bits) for WEP-128. If Packet Body Length = 44, then
the Key field is absent, and Key Length represents the number of
least significant octets from the MS-MPPE-Send-Key attribute
[<a href="./rfc2548" title=""Microsoft Vendor-specific RADIUS Attributes"">RFC2548</a>] to be used as the keying material. Note that the MS-
MPPE-Send-Key and MS-MPPE-Recv-Key attributes are defined from the
point of view of the Authenticator. From the Supplicant point of
reference, the terms are reversed. Thus the MS-MPPE-Recv-Key on
the Supplicant corresponds to the MS-MPPE-Send-Key on the
Authenticator, and the MS-MPPE-Send-Key on the Supplicant
corresponds to the MS-MPPE-Recv-Key on the Authenticator.
Replay Counter
The Replay Counter field is 8 octets. It does not repeat within
the life of the keying material used to encrypt the Key field and
compute the Key Signature field. A 64-bit NTP timestamp MAY be
used as the Replay Counter.
Key IV
The Key IV field is 16 octets and includes a 128-bit
cryptographically random number.
F
The Key flag (F) is a single bit, describing the type of key that
is included in the Key field. Values are:
0 = for broadcast (default key)
1 = for unicast (key mapping key)
Key Index
The Key Index is 7 bits.
Key Signature
The Key Signature field is 16 octets. It contains an HMAC-MD5
message integrity check computed over the EAPOL-Key descriptor,
starting from the Version field, with the Key field filled in if
present, but with the Key Signature field set to zero. For the
computation, the 32 octet (256 bit) MS-MPPE-Send-Key [<a href="./rfc2548" title=""Microsoft Vendor-specific RADIUS Attributes"">RFC2548</a>] is
used as the HMAC-MD5 key.
<span class="grey">Congdon, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
Key
If Packet Body Length = 44 + Key Length, then the Key Field
contains the key in encrypted form, of length Key Length. If
Packet Body Length = 44, then the Key field is absent, and the
least significant Key Length octets from the MS-MPPE-Send-Key
attribute is used as the keying material. Where the Key field is
encrypted using RC4, the RC4 encryption key used to encrypt this
field is formed by concatenating the 16 octet (128 bit) Key-IV
field with the 32 octet MS-MPPE-Recv-Key attribute. This yields a
48 octet RC4 key (384 bits).
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Security Considerations</span>
Since this document describes the use of RADIUS for purposes of
authentication, authorization, and accounting in IEEE 802.1X-enabled
networks, it is vulnerable to all of the threats that are present in
other RADIUS applications. For a discussion of these threats, see
[<a href="./rfc2607" title=""Proxy Chaining and Policy Implementation in Roaming"">RFC2607</a>], [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>], [<a href="./rfc3162" title=""RADIUS and IPv6"">RFC3162</a>], [<a href="./rfc3579" title=""RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)"">RFC3579</a>], and [<a href="./rfc3576" title=""Dynamic Authorization Extensions to Remote Authentication Dial In User Service (RADIUS)"">RFC3576</a>].
Vulnerabilities include:
Packet modification or forgery
Dictionary attacks
Known plaintext attacks
Replay
Outcome mismatches
802.11 integration
Key management issues
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Packet Modification or Forgery</span>
RADIUS, defined in [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>], does not require all Access-Requests to
be authenticated or integrity protected. However, IEEE 802.1X is
based on EAP. As described in [3579], <a href="#section-3.1">Section 3.1</a>.:
The Message-Authenticator attribute MUST be used to protect all
Access-Request, Access-Challenge, Access-Accept, and Access-Reject
packets containing an EAP-Message attribute.
As a result, when used with IEEE 802.1X, all RADIUS packets MUST be
authenticated and integrity protected. In addition, as described in
[3579], <a href="#section-4.2">Section 4.2</a>.:
To address the security vulnerabilities of RADIUS/EAP,
implementations of this specification SHOULD support IPsec
[<a href="./rfc2401">RFC2401</a>] along with IKE [<a href="./rfc2409">RFC2409</a>] for key management. IPsec ESP
[<a href="./rfc2406">RFC2406</a>] with non-null transform SHOULD be supported, and IPsec
ESP with a non-null encryption transform and authentication
<span class="grey">Congdon, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
support SHOULD be used to provide per-packet confidentiality,
authentication, integrity and replay protection. IKE SHOULD be
used for key management.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Dictionary Attacks</span>
As discussed in <a href="./rfc3579#section-4.3.3">[RFC3579] Section 4.3.3</a>., the RADIUS shared secret is
vulnerable to offline dictionary attack, based on capture of the
Response Authenticator or Message-Authenticator attribute. In order
to decrease the level of vulnerability, <a href="./rfc2865#section-3">[RFC2865], Section 3</a>
recommends:
The secret (password shared between the client and the RADIUS
server) SHOULD be at least as large and unguessable as a well-
chosen password. It is preferred that the secret be at least 16
octets.
In addition, the risk of an offline dictionary attack can be further
mitigated by employing IPsec ESP with a non-null transform in order
to encrypt the RADIUS conversation, as described in <a href="./rfc3579#section-4.2">[RFC3579],
Section 4.2</a>.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Known Plaintext Attacks</span>
Since IEEE 802.1X is based on EAP, which does not support PAP, the
RADIUS User-Password attribute is not used to carry hidden user
passwords. The hiding mechanism utilizes MD5, defined in [<a href="./rfc1321" title=""The MD5 Message-Digest Algorithm"">RFC1321</a>],
in order to generate a key stream based on the RADIUS shared secret
and the Request Authenticator. Where PAP is in use, it is possible
to collect key streams corresponding to a given Request Authenticator
value, by capturing RADIUS conversations corresponding to a PAP
authentication attempt using a known password. Since the User-
Password is known, the key stream corresponding to a given Request
Authenticator can be determined and stored.
The vulnerability is described in detail in <a href="./rfc3579#section-4.3.4">[RFC3579], Section 4.3.4</a>.
Even though IEEE 802.1X Authenticators do not support PAP
authentication, a security vulnerability can still exist where the
same RADIUS shared secret is used for hiding User-Password as well as
other attributes. This can occur, for example, if the same RADIUS
proxy handles authentication requests for both IEEE 802.1X (which may
hide the Tunnel-Password, MS-MPPE-Send-Key and MS-MPPE-Recv-Key
attributes) and GPRS (which may hide the User-Password attribute).
The threat can be mitigated by protecting RADIUS with IPsec ESP with
a non-null transform, as described in <a href="./rfc3579#section-4.2">[RFC3579], Section 4.2</a>. In
addition, the same RADIUS shared secret MUST NOT be used for both
IEEE 802.1X authentication and PAP authentication.
<span class="grey">Congdon, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Replay</span>
As noted in <a href="./rfc3579#section-4.3.5">[RFC3579] Section 4.3.5</a>., the RADIUS protocol provides
only limited support for replay protection. Replay protection for
RADIUS authentication and accounting can be provided by enabling
IPsec replay protection with RADIUS, as described in <a href="./rfc3579#section-4.2">[RFC3579],
Section 4.2</a>.
As with the Request Authenticator, for use with IEEE 802.1X
Authenticators, the Acct-Session-Id SHOULD be globally and temporally
unique.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. Outcome Mismatches</span>
[<a id="ref-RFC3579">RFC3579</a>] <a href="#section-2.6.3">Section 2.6.3</a>. discusses the issues that arise when the EAP
packet encapsulated in an EAP-Message attribute does not agree with
the RADIUS Packet Type. For example, an EAP Success packet might be
encapsulated within an Access-Reject; an EAP Failure might be sent
within an Access-Accept; or an EAP Success or Failure might be sent
within an Access-Challenge.
As described in <a href="./rfc3579#section-2.6.3">[RFC3579] Section 2.6.3</a>., these conflicting messages
are likely to cause confusion. To ensure that access decisions made
by IEEE 802.1X Authenticators conform to the wishes of the RADIUS
server, it is necessary for the Authenticator to make the decision
solely based on the authentication result (Access-Accept/Reject) and
not based on the contents of EAP-Message attributes, if present.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. 802.11 Integration</span>
[<a id="ref-IEEE8021X">IEEE8021X</a>] was developed for use on wired IEEE 802 networks such as
Ethernet, and therefore does not describe how to securely adapt IEEE
802.1X for use with 802.11. This is left to an enhanced security
specification under development within IEEE 802.11.
For example, [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>] does not specify whether authentication
occurs prior to, or after association, nor how the derived keys are
used within various ciphersuites. It also does not specify
ciphersuites addressing the vulnerabilities discovered in WEP,
described in [<a href="#ref-Berkeley" title=""Intercepting Mobile Communications: The Insecurity of 802.11"">Berkeley</a>], [<a href="#ref-Arbaugh" title=""Your 802.11 Wireless Network has No Clothes"">Arbaugh</a>], [<a href="#ref-Fluhrer" title=""Weaknesses in the Key Scheduling Algorithm of RC4"">Fluhrer</a>], and [<a href="#ref-Stubbl" title=""Using the Fluhrer, Mantin and Shamir Attack to Break WEP"">Stubbl</a>].
[<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>] only defines an authentication framework, leaving the
definition of the authentication methods to other documents, such as
[<a href="./rfc2716" title=""PPP EAP TLS Authentication Protocol"">RFC2716</a>].
Since [<a href="#ref-IEEE8021X" title="IEEE Std 802.1X-2001">IEEE8021X</a>] does not address 802.11 integration issues,
implementors are strongly advised to consult additional IEEE 802.11
security specifications for guidance on how to adapt IEEE 802.1X for
use with 802.11. For example, it is likely that the IEEE 802.11
<span class="grey">Congdon, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
enhanced security specification will define its own IEEE 802.11 key
hierarchy as well as new EAPOL-Key descriptors.
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. Key Management Issues</span>
The EAPOL-Key descriptor described in <a href="#section-4">Section 4</a>. is likely to be
deprecated in the future, when the IEEE 802.11 enhanced security
group completes its work. Known security issues include:
[<a id="ref-1">1</a>] Default key-only support. IEEE 802.1X enables the derivation of
per-Station unicast keys, known in [<a href="#ref-IEEE80211" title="IEEE Std. 802.11-1999">IEEE80211</a>] as "key mapping
keys." Keys used to encrypt multicast/broadcast traffic are
known as "default keys". However, in some 802.11
implementations, the unicast keys, derived as part of the EAP
authentication process, are used solely in order to encrypt,
authenticate and integrity protect the EAPOL-Key descriptor, as
described in <a href="#section-4">Section 4</a>. These implementations only support use
of default keys (ordinarily only used with multicast/broadcast
traffic) to secure all traffic, unicast or multicast/broadcast,
resulting in inherent security weaknesses.
Where per-Station key-mapping keys (e.g. unicast keys) are
unsupported, any Station possessing the default key can decrypt
traffic from other Stations or impersonate them. When used
along with a weak cipher (e.g. WEP), implementations supporting
only default keys provide more material for attacks such as
those described in [<a href="#ref-Fluhrer" title=""Weaknesses in the Key Scheduling Algorithm of RC4"">Fluhrer</a>] and [<a href="#ref-Stubbl" title=""Using the Fluhrer, Mantin and Shamir Attack to Break WEP"">Stubbl</a>]. If in addition, the
default key is not refreshed periodically, IEEE 802.1X dynamic
key derivation provides little or no security benefit. For an
understanding of the issues with WEP, see [<a href="#ref-Berkeley" title=""Intercepting Mobile Communications: The Insecurity of 802.11"">Berkeley</a>], [<a href="#ref-Arbaugh" title=""Your 802.11 Wireless Network has No Clothes"">Arbaugh</a>],
[<a href="#ref-Fluhrer" title=""Weaknesses in the Key Scheduling Algorithm of RC4"">Fluhrer</a>], and [<a href="#ref-Stubbl" title=""Using the Fluhrer, Mantin and Shamir Attack to Break WEP"">Stubbl</a>].
[<a id="ref-2">2</a>] Reuse of keying material. The EAPOL-Key descriptor specified in
<a href="#section-4">section 4</a> uses the same keying material (MS-MPPE-Recv-Key) both
to encrypt the Key field within the EAPOL-Key descriptor, and to
encrypt data passed between the Station and Access Point.
Multi-purpose keying material is frowned upon, since multiple
uses can leak information helpful to an attacker.
[<a id="ref-3">3</a>] Weak algorithms. The algorithm used to encrypt the Key field
within the EAPOL-Key descriptor is similar to the algorithm used
in WEP, and as a result, shares some of the same weaknesses. As
with WEP, the RC4 stream cipher is used to encrypt the key. As
input to the RC4 engine, the IV and key are concatenated rather
than being combined within a mixing function. As with WEP, the
IV is not a counter, and therefore there is little protection
against reuse.
<span class="grey">Congdon, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
As a result of these vulnerabilities, implementors intending to use
the EAPOL-Key descriptor described in this document are urged to
consult the 802.11 enhanced security specification for a more secure
alternative. It is also advisable to consult the evolving literature
on WEP vulnerabilities, in order to better understand the risks, as
well as to obtain guidance on setting an appropriate re-keying
interval.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
This specification does not create any RADIUS attributes nor any new
number spaces for IANA administration. However, it does require
assignment of new values to existing RADIUS attributes. These
include:
Attribute Values Required
========= ===============
NAS-Port-Type Token-Ring (20), FDDI (21)
Tunnel-Type VLAN (13)
Acct-Terminate-Cause Supplicant Restart (19)
Reauthentication Failure (20)
Port Reinitialized (21)
Port Administratively Disabled (22)
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. References</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Normative References</span>
[<a id="ref-RFC1321">RFC1321</a>] Rivest, R., "The MD5 Message-Digest Algorithm", <a href="./rfc1321">RFC</a>
<a href="./rfc1321">1321</a>, April 1992.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC2284">RFC2284</a>] Blunk, L. and J. Vollbrecht, "PPP Extensible
Authentication Protocol (EAP)", <a href="./rfc2284">RFC 2284</a>, March 1998.
[<a id="ref-RFC2865">RFC2865</a>] Rigney, C., Willens, S., Rubens, A. and W. Simpson,
"Remote Authentication Dial In User Service (RADIUS)",
<a href="./rfc2865">RFC 2865</a>, June 2000.
[<a id="ref-RFC2866">RFC2866</a>] Rigney, C., "RADIUS Accounting", <a href="./rfc2866">RFC 2866</a>, June 2000.
[<a id="ref-RFC2867">RFC2867</a>] Zorn, G., Aboba, B. and D. Mitton, "RADIUS Accounting
Modifications for Tunnel Protocol Support", <a href="./rfc2867">RFC 2867</a>,
June 2000.
<span class="grey">Congdon, et al. Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
[<a id="ref-RFC2868">RFC2868</a>] Zorn, G., Leifer, D., Rubens, A., Shriver, J.,
Holdrege, M. and I. Goyret, "RADIUS Attributes for
Tunnel Protocol Support", <a href="./rfc2868">RFC 2868</a>, June 2000.
[<a id="ref-RFC2869">RFC2869</a>] Rigney, C., Willats, W. and P. Calhoun, "RADIUS
Extensions", <a href="./rfc2869">RFC 2869</a>, June 2000.
[<a id="ref-RFC3162">RFC3162</a>] Aboba, B., Zorn, G. and D. Mitton, "RADIUS and IPv6",
<a href="./rfc3162">RFC 3162</a>, August 2001.
[<a id="ref-RFC3280">RFC3280</a>] Housley, R., Polk, W., Ford, W. and D. Solo, "Internet
X.509 Public Key Infrastructure Certificate and
Certificate Revocation List (CRL) Profile", <a href="./rfc3280">RFC 3280</a>,
April 2002.
[<a id="ref-RFC3576">RFC3576</a>] Chiba, M., Dommety, G., Eklund, M., Mitton, D. and B.
Aboba, "Dynamic Authorization Extensions to Remote
Authentication Dial In User Service (RADIUS)", <a href="./rfc3576">RFC</a>
<a href="./rfc3576">3576</a>, July 2003.
[<a id="ref-RFC3579">RFC3579</a>] Aboba, B. and P. Calhoun, "RADIUS (Remote
Authentication Dial In User Service) Support For
Extensible Authentication Protocol (EAP)", <a href="./rfc3579">RFC 3579</a>,
September 2003.
[<a id="ref-IEEE8021X">IEEE8021X</a>] IEEE Standards for Local and Metropolitan Area
Networks: Port based Network Access Control, IEEE Std
802.1X-2001, June 2001.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Informative References</span>
[<a id="ref-RFC2104">RFC2104</a>] Krawczyk, H., Bellare, M. and R. Canetti, "HMAC:
Keyed-Hashing for Message Authentication", <a href="./rfc2104">RFC 2104</a>,
February 1997.
[<a id="ref-RFC2434">RFC2434</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing
an IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc2434">RFC</a>
<a href="./rfc2434">2434</a>, October 1998.
[<a id="ref-RFC2548">RFC2548</a>] Zorn, G., "Microsoft Vendor-specific RADIUS
Attributes", <a href="./rfc2548">RFC 2548</a>, March 1999.
[<a id="ref-RFC2607">RFC2607</a>] Aboba, B. and J. Vollbrecht, "Proxy Chaining and
Policy Implementation in Roaming", <a href="./rfc2607">RFC 2607</a>, June
1999.
[<a id="ref-RFC2716">RFC2716</a>] Aboba, B. and D. Simon, "PPP EAP TLS Authentication
Protocol", <a href="./rfc2716">RFC 2716</a>, October 1999.
<span class="grey">Congdon, et al. Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
[<a id="ref-MD5Attack">MD5Attack</a>] Dobbertin, H., "The Status of MD5 After a Recent
Attack." CryptoBytes Vol.2 No.2, Summer 1996.
[<a id="ref-IEEE802">IEEE802</a>] IEEE Standards for Local and Metropolitan Area
Networks: Overview and Architecture, ANSI/IEEE Std
802, 1990.
[<a id="ref-IEEE8021Q">IEEE8021Q</a>] IEEE Standards for Local and Metropolitan Area
Networks: Draft Standard for Virtual Bridged Local
Area Networks, P802.1Q, January 1998.
[<a id="ref-IEEE8023">IEEE8023</a>] ISO/IEC 8802-3 Information technology -
Telecommunications and information exchange between
systems - Local and metropolitan area networks -
Common specifications - Part 3: Carrier Sense
Multiple Access with Collision Detection (CSMA/CD)
Access Method and Physical Layer Specifications, (also
ANSI/IEEE Std 802.3- 1996), 1996.
[<a id="ref-IEEE80211">IEEE80211</a>] Information technology - Telecommunications and
information exchange between systems - Local and
metropolitan area networks - Specific Requirements
Part 11: Wireless LAN Medium Access Control (MAC) and
Physical Layer (PHY) Specifications, IEEE Std.
802.11-1999, 1999.
[<a id="ref-Berkeley">Berkeley</a>] Borisov, N., Goldberg, I. and D. Wagner, "Intercepting
Mobile Communications: The Insecurity of 802.11", ACM
SIGMOBILE, Seventh Annual International Conference on
Mobile Computing and Networking, July 2001, Rome,
Italy.
[<a id="ref-Arbaugh">Arbaugh</a>] Arbaugh, W., Shankar, N. and J.Y.C. Wan, "Your 802.11
Wireless Network has No Clothes", Department of
Computer Science, University of Maryland, College
Park, March 2001.
[<a id="ref-Fluhrer">Fluhrer</a>] Fluhrer, S., Mantin, I. and A. Shamir, "Weaknesses in
the Key Scheduling Algorithm of RC4", Eighth Annual
Workshop on Selected Areas in Cryptography, Toronto,
Canada, August 2001.
[<a id="ref-Stubbl">Stubbl</a>] Stubblefield, A., Ioannidis, J. and A. Rubin, "Using
the Fluhrer, Mantin and Shamir Attack to Break WEP",
2002 NDSS Conference.
<span class="grey">Congdon, et al. Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Table of Attributes</span>
The following table provides a guide to which attributes MAY be sent
and received as part of IEEE 802.1X authentication. L3 denotes
attributes that require layer 3 capabilities, and thus may not be
supported by all Authenticators. For each attribute, the reference
provides the definitive information on usage.
802.1X # Attribute
X 1 User-Name [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
2 User-Password [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
3 CHAP-Password [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 4 NAS-IP-Address [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 5 NAS-Port [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 6 Service-Type [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
7 Framed-Protocol [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 8 Framed-IP-Address [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 9 Framed-IP-Netmask [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 10 Framed-Routing [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 11 Filter-Id [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 12 Framed-MTU [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
13 Framed-Compression [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 14 Login-IP-Host [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 15 Login-Service [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 16 Login-TCP-Port [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
18 Reply-Message [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
19 Callback-Number [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
20 Callback-Id [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 22 Framed-Route [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 23 Framed-IPX-Network [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 24 State [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 25 Class [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 26 Vendor-Specific [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 27 Session-Timeout [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 28 Idle-Timeout [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 29 Termination-Action [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 30 Called-Station-Id [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 31 Calling-Station-Id [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 32 NAS-Identifier [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 33 Proxy-State [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
34 Login-LAT-Service [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
35 Login-LAT-Node [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
36 Login-LAT-Group [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
802.1X # Attribute
<span class="grey">Congdon, et al. Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
802.1X # Attribute
L3 37 Framed-AppleTalk-Link [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 38 Framed-AppleTalk-Network [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
L3 39 Framed-AppleTalk-Zone [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 40 Acct-Status-Type [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 41 Acct-Delay-Time [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 42 Acct-Input-Octets [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 43 Acct-Output-Octets [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 44 Acct-Session-Id [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 45 Acct-Authentic [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 46 Acct-Session-Time [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 47 Acct-Input-Packets [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 48 Acct-Output-Packets [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 49 Acct-Terminate-Cause [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 50 Acct-Multi-Session-Id [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 51 Acct-Link-Count [<a href="./rfc2866" title=""RADIUS Accounting"">RFC2866</a>]
X 52 Acct-Input-Gigawords [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
X 53 Acct-Output-Gigawords [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
X 55 Event-Timestamp [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
60 CHAP-Challenge [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 61 NAS-Port-Type [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
62 Port-Limit [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
63 Login-LAT-Port [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>]
X 64 Tunnel-Type [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
X 65 Tunnel-Medium-Type [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
L3 66 Tunnel-Client-Endpoint [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
L3 67 Tunnel-Server-Endpoint [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
L3 68 Acct-Tunnel-Connection [<a href="./rfc2867" title=""RADIUS Accounting Modifications for Tunnel Protocol Support"">RFC2867</a>]
L3 69 Tunnel-Password [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
70 ARAP-Password [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
71 ARAP-Features [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
72 ARAP-Zone-Access [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
73 ARAP-Security [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
74 ARAP-Security-Data [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
75 Password-Retry [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
76 Prompt [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
X 77 Connect-Info [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
X 78 Configuration-Token [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
X 79 EAP-Message [<a href="./rfc3579" title=""RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)"">RFC3579</a>]
X 80 Message-Authenticator [<a href="./rfc3579" title=""RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)"">RFC3579</a>]
X 81 Tunnel-Private-Group-ID [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
L3 82 Tunnel-Assignment-ID [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
X 83 Tunnel-Preference [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
84 ARAP-Challenge-Response [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
802.1X # Attribute
<span class="grey">Congdon, et al. Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
802.1X # Attribute
X 85 Acct-Interim-Interval [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
X 86 Acct-Tunnel-Packets-Lost [<a href="./rfc2867" title=""RADIUS Accounting Modifications for Tunnel Protocol Support"">RFC2867</a>]
X 87 NAS-Port-Id [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
L3 88 Framed-Pool [<a href="./rfc2869" title=""RADIUS Extensions"">RFC2869</a>]
L3 90 Tunnel-Client-Auth-ID [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
L3 91 Tunnel-Server-Auth-ID [<a href="./rfc2868" title=""RADIUS Attributes for Tunnel Protocol Support"">RFC2868</a>]
X 95 NAS-IPv6-Address [<a href="./rfc3162" title=""RADIUS and IPv6"">RFC3162</a>]
96 Framed-Interface-Id [<a href="./rfc3162" title=""RADIUS and IPv6"">RFC3162</a>]
L3 97 Framed-IPv6-Prefix [<a href="./rfc3162" title=""RADIUS and IPv6"">RFC3162</a>]
L3 98 Login-IPv6-Host [<a href="./rfc3162" title=""RADIUS and IPv6"">RFC3162</a>]
L3 99 Framed-IPv6-Route [<a href="./rfc3162" title=""RADIUS and IPv6"">RFC3162</a>]
L3 100 Framed-IPv6-Pool [<a href="./rfc3162" title=""RADIUS and IPv6"">RFC3162</a>]
X 101 Error-Cause [<a href="./rfc3576" title=""Dynamic Authorization Extensions to Remote Authentication Dial In User Service (RADIUS)"">RFC3576</a>]
802.1X # Attribute
Key
===
X = May be used with IEEE 802.1X authentication
L3 = Implemented only by Authenticators with Layer 3
capabilities
<span class="grey">Congdon, et al. Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Intellectual Property Statement</span>
The IETF takes no position regarding the validity or scope of any
intellectual property 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; neither does it represent that it
has made any effort to identify any such rights. Information on the
IETF's procedures with respect to rights in standards-track and
standards- related documentation can be found in <a href="https://www.rfc-editor.org/bcp/bcp11">BCP-11</a>. Copies of
claims of rights made available for publication 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 implementors or users of this specification can
be obtained from the IETF Secretariat.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights which may cover technology that may be required to practice
this standard. Please address the information to the IETF Executive
Director.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Acknowledgments</span>
The authors would like to acknowledge Bob O'Hara of Airespace, David
Halasz of Cisco, Tim Moore, Sachin Seth and Ashwin Palekar of
Microsoft, Andrea Li, Albert Young and Dave Bagby of 3Com for
contributions to this document.
<span class="grey">Congdon, et al. Informational [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Authors' Addresses</span>
Paul Congdon
Hewlett Packard Company
HP ProCurve Networking
8000 Foothills Blvd, M/S 5662
Roseville, CA 95747
Phone: +1 916 785 5753
Fax: +1 916 785 8478
EMail: paul_congdon@hp.com
Bernard Aboba
Microsoft Corporation
One Microsoft Way
Redmond, WA 98052
Phone: +1 425 706 6605
Fax: +1 425 936 7329
EMail: bernarda@microsoft.com
Andrew Smith
Trapeze Networks
5753 W. Las Positas Blvd.
Pleasanton, CA 94588-4084
Fax: +1 415 345 1827
EMail: ah_smith@acm.org
John Roese
Enterasys
Phone: +1 603 337 1506
EMail: jjr@enterasys.com
Glen Zorn
Cisco Systems, Inc.
500 108th Avenue N.E., Suite 500
Bellevue, WA 98004
Phone: +1 425 438 8218
Fax: +1 425 438 1848
EMail: gwz@cisco.com
<span class="grey">Congdon, et al. Informational [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc3580">RFC 3580</a> IEEE 802.1X RADIUS September 2003</span>
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Full Copyright Statement</span>
Copyright (C) The Internet Society (2003). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assignees.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS 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.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Congdon, et al. Informational [Page 30]
</pre>
|