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
|
<pre>Network Working Group D. Thaler
Request for Comments: 5218 B. Aboba
Category: Informational IAB
July 2008
<span class="h1">What Makes for a Successful Protocol?</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.
Abstract
The Internet community has specified a large number of protocols to
date, and these protocols have achieved varying degrees of success.
Based on case studies, this document attempts to ascertain factors
that contribute to or hinder a protocol's success. It is hoped that
these observations can serve as guidance for future protocol work.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. What is Success? . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-1.2">1.2</a>. Success Dimensions . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-1.2.1">1.2.1</a>. Examples . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-1.3">1.3</a>. Effects of Wild Success . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-1.4">1.4</a>. Failure . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-2">2</a>. Initial Success Factors . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-2.1">2.1</a>. Basic Success Factors . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-2.1.1">2.1.1</a>. Positive Net Value (Meet a Real Need) . . . . . . . . <a href="#page-7">7</a>
<a href="#section-2.1.2">2.1.2</a>. Incremental Deployability . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-2.1.3">2.1.3</a>. Open Code Availability . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-2.1.4">2.1.4</a>. Freedom from Usage Restrictions . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-2.1.5">2.1.5</a>. Open Specification Availability . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-2.1.6">2.1.6</a>. Open Maintenance Processes . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-2.1.7">2.1.7</a>. Good Technical Design . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-2.2">2.2</a>. Wild Success Factors . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-2.2.1">2.2.1</a>. Extensible . . . . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-2.2.2">2.2.2</a>. No Hard Scalability Bound . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-2.2.3">2.2.3</a>. Threats Sufficiently Mitigated . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-3">3</a>. Conclusions . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-4">4</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5">5</a>. Informative References . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<span class="grey">Thaler & Aboba Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<a href="#appendix-A">Appendix A</a>. Case Studies . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#appendix-A.1">A.1</a>. HTML/HTTP vs. Gopher and FTP . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#appendix-A.1.1">A.1.1</a>. Initial Success Factors . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#appendix-A.1.2">A.1.2</a>. Wild Success Factors . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#appendix-A.1.3">A.1.3</a>. Discussion . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#appendix-A.2">A.2</a>. IPv4 vs. IPX . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#appendix-A.2.1">A.2.1</a>. Initial Success Factors . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#appendix-A.2.2">A.2.2</a>. Wild Success Factors . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#appendix-A.2.3">A.2.3</a>. Discussion . . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#appendix-A.3">A.3</a>. SSH . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#appendix-A.3.1">A.3.1</a>. Initial Success Factors . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#appendix-A.3.2">A.3.2</a>. Wild Success Factors . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#appendix-A.3.3">A.3.3</a>. Discussion . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#appendix-A.4">A.4</a>. Inter-Domain IP Multicast vs. Application Overlays . . . <a href="#page-20">20</a>
<a href="#appendix-A.4.1">A.4.1</a>. Initial Success Factors . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#appendix-A.4.2">A.4.2</a>. Wild Success Factors . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#appendix-A.4.3">A.4.3</a>. Discussion . . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#appendix-A.5">A.5</a>. Wireless Application Protocol (WAP) . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#appendix-A.5.1">A.5.1</a>. Initial Success Factors . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#appendix-A.5.2">A.5.2</a>. Wild Success Factors . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#appendix-A.5.3">A.5.3</a>. Discussion . . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#appendix-A.6">A.6</a>. Wired Equivalent Privacy (WEP) . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#appendix-A.6.1">A.6.1</a>. Initial Success Factors . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#appendix-A.6.2">A.6.2</a>. Wild Success Factors . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#appendix-A.6.3">A.6.3</a>. Discussion . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#appendix-A.7">A.7</a>. RADIUS vs. TACACS+ . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#appendix-A.7.1">A.7.1</a>. Initial Success Factors . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#appendix-A.7.2">A.7.2</a>. Wild Success Factors . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#appendix-A.7.3">A.7.3</a>. Discussion . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#appendix-A.8">A.8</a>. Network Address Translators (NATs) . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#appendix-A.8.1">A.8.1</a>. Initial Success Factors . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#appendix-A.8.2">A.8.2</a>. Wild Success Factors . . . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#appendix-A.8.3">A.8.3</a>. Discussion . . . . . . . . . . . . . . . . . . . . . . <a href="#page-26">26</a>
<a href="#appendix-B">Appendix B</a>. IAB Members at the Time of This Writing . . . . . . . <a href="#page-26">26</a>
<span class="grey">Thaler & Aboba Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
One of the goals of the Internet Engineering Task Force (IETF) is to
define protocols that successfully meet their implementation and
deployment goals. Based on case studies, this document identifies
some of the factors influencing success and failure of protocol
designs. It is hoped that this document will be of use to the
following audiences:
o IESG members deciding whether to charter a Working Group to do
work on a specific protocol;
o Working Group participants selecting among protocol proposals;
o Document authors developing a new protocol specification;
o Anyone evaluating the success of a protocol experiment.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. What is Success?</span>
In discussing the factors that help or hinder the success of a
protocol, we need to first define what we mean by "success". A
protocol can be successful and still not be widely deployed, if it
meets its original goals. However, in this document, we consider a
successful protocol to be one that both meets its original goals and
is widely deployed. Note that "widely deployed" does not mean
"inter-domain"; successful protocols (e.g., DHCP [<a href="./rfc2131" title=""Dynamic Host Configuration Protocol"">RFC2131</a>]) may be
widely deployed solely for intra-domain use.
The following are examples of successful protocols:
Inter-domain: IPv4 [<a href="./rfc0791" title=""Internet Protocol"">RFC0791</a>], TCP [<a href="./rfc0793" title=""Transmission Control Protocol"">RFC0793</a>], HTTP [<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>], DNS
[<a href="./rfc1035" title=""Domain names - implementation and specification"">RFC1035</a>], BGP [<a href="./rfc4271" title=""A Border Gateway Protocol 4 (BGP-4)"">RFC4271</a>], UDP [<a href="./rfc0768" title=""User Datagram Protocol"">RFC0768</a>], SMTP [<a href="./rfc2821" title=""Simple Mail Transfer Protocol"">RFC2821</a>], SIP
[<a href="./rfc3261" title=""SIP: Session Initiation Protocol"">RFC3261</a>].
Intra-domain: ARP [<a href="./rfc0826" title=""Ethernet Address Resolution Protocol: Or converting network protocol addresses to 48.bit Ethernet address for transmission on Ethernet hardware"">RFC0826</a>], PPP [<a href="./rfc1661" title=""The Point-to-Point Protocol (PPP)"">RFC1661</a>], DHCP [<a href="./rfc2131" title=""Dynamic Host Configuration Protocol"">RFC2131</a>], RIP
[<a href="./rfc1058" title=""Routing Information Protocol"">RFC1058</a>], OSPF [<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>], Kerberos [<a href="./rfc4120" title=""The Kerberos Network Authentication Service (V5)"">RFC4120</a>], NAT [<a href="./rfc3022" title=""Traditional IP Network Address Translator (Traditional NAT)"">RFC3022</a>].
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Success Dimensions</span>
Two major dimensions on which a protocol can be evaluated are scale
and purpose. When designed, a protocol is intended for some range of
purposes and was designed for use on a particular scale.
Figure 1 graphically depicts these concepts.
<span class="grey">Thaler & Aboba Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
Scale ^
|
| +------------+
| | |
| | Original |
| | Protocol |
| | Design |
| | Space |
| | |
<-----------------------------------------------> Purpose
Figure 1
According to these metrics, a "successful" protocol is one that is
used for its original purpose and at the originally intended scale.
A "wildly successful" protocol far exceeds its original goals, in
terms of purpose (being used in scenarios far beyond the initial
design), in terms of scale (being deployed on a scale much greater
than originally envisaged), or both. That is, it has overgrown its
bounds and has ventured out "into the wild".
<span class="h4"><a class="selflink" id="section-1.2.1" href="#section-1.2.1">1.2.1</a>. Examples</span>
HTTP is an example of a "wildly successful" protocol that exceeded
its design in both purpose and scale:
Scale ^ +---------------------------------------+
| | Actual Deployment |
| | |
| | |
| | +------------+ |
| | | Original | |
| | (Web | Design | (Firewall |
| | Services) | Space | Traversal) |
| | | (Web) | |
<-----------------------------------------------> Purpose
Another example of a wildly successful protocol is IPv4. Although it
was designed for all purposes ("Everything over IP and IP over
Everything"), it has been deployed on a far greater scale than that
for which it was originally designed; the limited address space only
became an issue after it had already vastly surpassed its original
design.
Another example of a successful protocol is ARP. Originally intended
for a more general purpose (namely, resolving network layer addresses
to link layer addresses, regardless of the media type or network
layer protocol), ARP was widely deployed for a narrower scope of uses
<span class="grey">Thaler & Aboba Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
(resolution of IPv4 addresses to Ethernet MAC addresses), but then
was adopted for other uses such as detecting network attachment
(Detecting Network Attachment in IPv4 (DNAv4) [<a href="./rfc4436" title=""Detecting Network Attachment in IPv4 (DNAv4)"">RFC4436</a>]). Also, like
IPv4, ARP is deployed on a much greater scale (in terms of number of
machines, but not number on the same subnet) than originally
expected.
Scale ^ +-------------------+
| | Actual Deployment |
| | |
| | | Original Design Space
| | +-------------+--------------+
| | |(IP/Ethernet)|(Non-IP) |
| |(DNA)| | |
| | | |(Non-Ethernet)|
| | | | |
<-----------------------------------------------> Purpose
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Effects of Wild Success</span>
Wild success can be both good and bad. A wildly successful protocol
is so useful that it can solve more problems or address more
scenarios or devices. This may indicate that it is time to revise
the protocol to better accommodate the new design space.
However, if a protocol is used for a purpose other than what it was
designed for:
o There may be undesirable side effects because of design decisions
that are appropriate for the originally intended purpose, but
inappropriate for the new purpose.
o There may be performance problems if the protocol was not designed
to scale to the extent to which it was deployed.
o Implementers may attempt to add or change functionality to work
around the design limitations without complete understanding of
their effect on the overall protocol behavior and invariants.
o Wildly successful protocols become high value targets for
attackers because of their popularity and the potential for
exploitation of uses or extensions that are less well understood
and tested than the original protocol.
A wildly successful protocol is therefore vulnerable to "death by
success", collapsing as a result of attacks or scaling limitations.
<span class="grey">Thaler & Aboba Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a>. Failure</span>
Failure, or the lack of success, cannot be determined before allowing
sufficient time to pass (e.g., 5-10 years for an average protocol).
Failure criteria include:
o No mainstream implementations. There is little or no support in
hosts, routers, or other classes of relevant devices.
o No deployment. Devices that support the protocol are not
deployed, or if they are, then the protocol is not enabled.
o No use. While the protocol may be deployed, there are no
applications or scenarios that actually use the protocol.
At the time a protocol is first designed, the three above conditions
hold, which is why it is important to allow sufficient time to pass
before evaluating the success or failure of a protocol.
The lack of a value chain can make it difficult for a new protocol to
progress from implementation to deployment to use. While the term
"chicken-and-egg" problem is sometimes used to describe the lack of a
value chain, the lack of implementation, deployment, or use is not
the cause of failure, it is merely a symptom.
There are many strategies that have been used in the past for
overcoming the initial lack of implementations, deployment, and use,
although none of these guarantee success. For example:
o Address a critical and imminent problem. If the need is severe
enough, the industry is incented to adopt it as soon as
implementations exist, and well-known need is sufficient to
motivate implementations. For example, NAT provided an immediate
address sharing capability to the individual deploying it
(Appendix A.8). Thus, when creating a protocol, consider whether
it can be easily tailored or expanded to directly target a
critical problem; if it only solves part of the problem, consider
what would be needed in addition.
o Provide a "killer app" with low deployment costs. This strategy
can be used to generate demand where none existed before. See the
HTTP case study in <a href="#appendix-A.1">Appendix A.1</a> for an example.
o Provide value for existing unmodified applications. This solves
the chicken-and-egg problem by ensuring that use exists as soon as
the protocol is deployed, and therefore, the benefit can be
realized immediately. See the Wired Equivalent Privacy (WEP) case
study in <a href="#appendix-A.6">Appendix A.6</a> for an example.
<span class="grey">Thaler & Aboba Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
o Reduce complexity and cost by narrowing the intended purpose
and/or scope to an area where it is easiest to succeed. This may
allow removing complexity that is not required for the narrow
purpose. Removing complexity reduces the cost of implementation
and deployment to where the resulting cost may be very low
compared to the benefit. For example, link-scoped multicast is
far more successful than, say, inter-domain multicast (see
<a href="#appendix-A.4">Appendix A.4</a>).
o A government or other entity may provide incentives or
disincentives that motivate implementation and deployment. For
example, specific cryptographic algorithms may be mandated. As
another example, Japan started an economic incentive program to
generate IPv6 [<a href="./rfc2460" title=""Internet Protocol, Version 6 (IPv6) Specification"">RFC2460</a>] implementations and deployment.
As we will see, such strategies are often successful because they
directly target the top success factors.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Initial Success Factors</span>
In this section, we identify factors that contribute to success and
"wild" success.
Note that a successful protocol will not necessarily include all the
success factors, and some success factors may be present even in
failed designs. Nevertheless, experience appears to indicate that
the presence of success factors seems to improve the probability of
success.
The success factors, and their relative importance, were suggested by
a series of case studies (Appendix A).
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Basic Success Factors</span>
<span class="h4"><a class="selflink" id="section-2.1.1" href="#section-2.1.1">2.1.1</a>. Positive Net Value (Meet a Real Need)</span>
It is critical to the success of a protocol that the benefits of
deploying the protocol (monetary or otherwise) outweigh the costs,
which include:
o Hardware cost: Protocols that don't require hardware changes are
easier to deploy than those that do. Overlay networks are one way
to avoid requiring hardware changes. However, often hardware
updates are required even for protocols whose functionality could
be provided solely in software. Vendors often implement new
<span class="grey">Thaler & Aboba Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
functionality only within later branches of the code tree, which
may only run on new hardware. As a result, the safest way to
avoid hardware upgrade cost is to design for backward
compatibility with both existing hardware and software.
o Operational interference: Protocols that don't require changes to
other operational processes and tools are easier to deploy than
ones that do. For example, IPsec [<a href="./rfc4301" title=""Security Architecture for the Internet Protocol"">RFC4301</a>] interferes with
NetFlow [<a href="./rfc3954" title=""Cisco Systems NetFlow Services Export Version 9"">RFC3954</a>] deep packet inspection, which can be important
to operators.
o Retraining: Protocols that have no configuration, or are very easy
to configure/manage, are cheaper to deploy.
o Business dependencies: Protocols that don't require changes to a
business model (whether for implementers or deployers) are easier
to deploy than ones that do. There are costs associated with
changing billing and accounting systems and retraining of
associated personnel, and in addition, the assumptions on which
the previous business model was based may change. For example,
some time ago many service providers had business models built
around dial-up with an assumption that machines were not connected
all the time; protocols that desired always-on connectivity
required the business model to change since the networks were not
optimized for always-on. Similarly, some service providers have
business models that assume that upstream bandwidth is
underutilized; peer-to-peer protocols may require this business
model to change. Finally, many service providers have business
models based on charging for the amount of bandwidth consumed on
the link to a customer; multicast protocols interfere with this
business model since they provide a way for a customer to consume
less bandwidth on the source link by sending multicast traffic, as
opposed to paying more to source many unicast streams, without
having some other mechanism to cover the cost of replication in
the network (e.g., router CPU, downstream link bandwidth, extra
management). Multicast protocols also complicate business models
based on charging the source of traffic based on the amount of
multicast replication, since the source may not be able to predict
the cost until a bill is received.
Similarly, there are many types of benefits, including:
o Relieving pain: Protocols that drastically lower costs (monetary
or otherwise) that exist prior to deploying the protocol are
easier to show direct benefit from, since they address a burning
need.
<span class="grey">Thaler & Aboba Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
o Enabling new scenarios: Protocols that enable new capabilities,
scenarios, or user experiences can provide significant value,
although the benefit may be harder to realize, as there may be
more risk involved.
o Incremental improvements: Protocols that provide incremental
improvements (e.g., better video quality) generate a small
benefit, and hence can be successful as long as the cost is small.
There are at least two example cases of cost/benefits tradeoffs. In
the first case, even upon initial deployment, the benefit outweighs
the cost. In the second case, there is an upfront cost that
outweighs the initial benefit, but the benefit grows over time (e.g.,
as more nodes or applications support it). The former model is much
easier to get initial deployment, but over time both can be
successful. The second model has a danger for the initial
deployments, that if others don't deploy the protocol then the
initial deployers have lost value, and so they must take on some risk
in deploying the protocol.
Success most easily comes when the natural incentive structure is
aligned with the deployment requirements. That is, those who are
required to deploy, manage, or configure something are the same as
those who gain the most benefit. In summary, it is best if there is
significant positive net value at each organization where a change is
required.
<span class="h4"><a class="selflink" id="section-2.1.2" href="#section-2.1.2">2.1.2</a>. Incremental Deployability</span>
A protocol is incrementally deployable if early adopters gain some
benefit even though the rest of the Internet does not support the
protocol. There are several aspects to this.
Protocols that can be deployed by a single group or team (e.g.,
intra-domain) have a greater chance of success than those that
require cooperation across organizations (or, in the worst case
require a "flag day" where everyone has to change simultaneously).
For example, protocols that don't require changes to infrastructure
(e.g., router changes, service provider support, etc.) have a greater
chance of success than ones that do, since less coordination is
needed, NAT being a canonical example. Similarly, protocols that
provide benefit when only one end changes have a greater chance of
success than ones that require both ends of communication to support
the protocol.
Finally, protocol updates that are backward compatible with older
implementations have a greater chance of success than ones that
aren't.
<span class="grey">Thaler & Aboba Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h4"><a class="selflink" id="section-2.1.3" href="#section-2.1.3">2.1.3</a>. Open Code Availability</span>
Protocols with freely available implementation code have a greater
chance of success than protocols without. Often, this is more
important than any technical consideration. For example, it can be
argued that when deciding between IPv4 and Internetwork Packet
Exchange (IPX) [<a href="#ref-IPX" title=""IPX Router Specification"">IPX</a>], this was the determining factor, even though,
in many ways, IPX was technically superior to IPv4. Similar
arguments have been made for the success of RADIUS [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>] over
TACACS+ [TACACS+]. See <a href="#appendix-A">Appendix A</a> for further discussion.
<span class="h4"><a class="selflink" id="section-2.1.4" href="#section-2.1.4">2.1.4</a>. Freedom from Usage Restrictions</span>
Freedom from usage restrictions means that anyone who wishes to
implement or deploy can do so without legal or financial hindrance.
Within the IETF, this point often comes up when evaluating between
technologies, one of which has known Intellectual Property associated
with it. Often the industry chooses the one with no known
Intellectual Property, even if it is technically inferior.
<span class="h4"><a class="selflink" id="section-2.1.5" href="#section-2.1.5">2.1.5</a>. Open Specification Availability</span>
Open specification availability means the protocol specification is
made available to anyone who wishes to use it. This is true for all
Internet Drafts and RFCs, and it has contributed to the success of
protocol specifications developed within or contributed to the IETF.
The various aspects of this factor include:
o World-wide distribution: Is the specification accessible from
anywhere in the world?
o Unrestricted distribution: Are there no legal restrictions on
getting the specification?
o Permanence: Does the specification remain even after the creator
is gone?
o Stability: Is there a stable version of the specification that
does not change?
<span class="h4"><a class="selflink" id="section-2.1.6" href="#section-2.1.6">2.1.6</a>. Open Maintenance Processes</span>
This factor means that the protocol is maintained by open processes,
mechanisms exist for public comment on the protocol, and the protocol
maintenance process allows the participation of all constituencies
that are affected by the protocol.
<span class="grey">Thaler & Aboba Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h4"><a class="selflink" id="section-2.1.7" href="#section-2.1.7">2.1.7</a>. Good Technical Design</span>
This factor means that the protocol follows good design principles
that lead to ease of implementation and interoperability, such as
those described in "Architectural Principles of the Internet"
[<a href="./rfc1958" title=""Architectural Principles of the Internet"">RFC1958</a>]. For example, simplicity, modularity, and robustness to
failures are all key design factors. Similarly, clarity in
specifications is another aspect of good technical design that
facilitates interoperability and ease of implementation. However,
experience shows that good technical design has minimal impact on
initial success compared with other factors.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Wild Success Factors</span>
The following factors do not seem to significantly affect initial
success, but can affect whether a protocol becomes wildly successful.
<span class="h4"><a class="selflink" id="section-2.2.1" href="#section-2.2.1">2.2.1</a>. Extensible</span>
Protocols that are extensible are more likely to be wildly successful
in terms of being used for purposes outside their original design.
An extensible protocol may carry general purpose payloads/options, or
may be easy to add a new payload/option type. Such extensibility is
desirable for protocols that intend to apply to all purposes (like
IP). However, for protocols designed for a specialized purpose,
extensibility should be carefully considered before including it.
<span class="h4"><a class="selflink" id="section-2.2.2" href="#section-2.2.2">2.2.2</a>. No Hard Scalability Bound</span>
Protocols that have no inherent limit near the edge of the originally
envisioned scale are more likely to be wildly successful in terms of
scale. For example, IPv4 had no inherent limit near its originally
envisioned scale; the address space limit was not hit until it was
already wildly successful in terms of scale. Another type of
inherent limit would be a performance "knee" that causes a meltdown
(e.g., a broadcast storm) once a scaling limit is passed.
<span class="h4"><a class="selflink" id="section-2.2.3" href="#section-2.2.3">2.2.3</a>. Threats Sufficiently Mitigated</span>
The more successful a protocol becomes, the more attractive a target
it will be. Protocols with security flaws may still become wildly
successful provided that they are extensible enough to allow the
flaws to be addressed in subsequent revisions. Examples include
Secure SHell version 1 (SSHv1) and IEEE 802.11 with WEP. However,
the combination of security flaws and limited extensibility tends to
be deadly. For example, some early server-based multiplayer games
ultimately failed due to insufficient protections against cheating,
even though they were initially successful.
<span class="grey">Thaler & Aboba Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Conclusions</span>
The case studies described in <a href="#appendix-A">Appendix A</a> indicate that the most
important initial success factors are filling a real need and being
incrementally deployable. When there are competing proposals of
comparable benefit and deployability, open specifications and code
become significant success factors. Open source availability is
initially more important than open specification maintenance.
In most cases, technical quality was not a primary factor in initial
success. Indeed, many successful protocols would not pass IESG
review today. Technically inferior proposals can win if they are
openly available. Factors that do not seem to be significant in
determining initial success (but may affect wild success) include
good design, security, and having an open specification maintenance
process.
Many of the case studies concern protocols originally developed
outside the IETF, which the IETF played a role in improving only
after initial success was certain. While the IETF focuses on design
quality, which is not a factor in determining initial protocol
success, once a protocol succeeds, a good technical design may be key
to it staying successful, or in dealing with wild success. Allowing
extensibility in an initial design enables initial shortcomings to be
addressed.
Security vulnerabilities do not seem to limit initial success, since
vulnerabilities often become interesting to attackers only after the
protocol becomes widely deployed enough to become a useful target.
Finally, open specification maintenance is not important to initial
success since many successful protocols were initially developed
outside the IETF or other standards bodies, and were only
standardized later.
In light of our conclusions, we recommend that the following
questions be asked when evaluating protocol designs:
o Does the protocol exhibit one or more of the critical initial
success factors?
o Are there implementers who are ready to implement the technology
in ways that are likely to be deployed?
o Are there customers (especially high-profile customers) who are
ready to deploy the technology?
o Are there potential niches where the technology is compelling?
<span class="grey">Thaler & Aboba Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
o If so, can complexity be removed to reduce cost?
o Is there a potential killer app? Or can the technology work
underneath existing unmodified applications?
o Is the protocol sufficiently extensible to allow potential
deficiencies to be addressed in the future?
o If it is not known whether the protocol will be successful, should
the market decide first? Or should the IETF work on multiple
alternatives and let the market decide among them? Are there
factors listed in this document that may predict which is more
likely to succeed?
In the early stages (e.g., BOFs, design of new protocols), evaluating
the initial success factors is important in facilitating success.
Similarly, efforts to revise unsuccessful protocols should evaluate
whether the initial success factors (or enough of them) were present,
rather than focusing on wild success, which is not yet a problem.
For a revision of a successful protocol, on the other hand, focusing
on the wild success factors is more appropriate.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Security Considerations</span>
This document discusses attributes that affect the success of
protocols. It has no specific security implications.
Recommendations on security in protocol design can be found in
[<a href="./rfc3552" title=""Guidelines for Writing RFC Text on Security Considerations"">RFC3552</a>].
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Informative References</span>
[<a id="ref-IEEE-802.11">IEEE-802.11</a>] IEEE, "Wireless LAN Medium Access Control (MAC) and
Physical Layer (PHY) Specifications", ANSI/IEEE
Std 802.11, 2007.
[<a id="ref-IMODE">IMODE</a>] NTT DoCoMo, "i-mode",
<<a href="http://www.nttdocomo.com/services/imode/index.html">http://www.nttdocomo.com/services/imode/index.html</a>>.
[<a id="ref-IPX">IPX</a>] Novell, "IPX Router Specification", Novell Part
Number 107-000029-001, 1992.
[<a id="ref-ISO-8879">ISO-8879</a>] ISO, "Information processing -- Text and office
systems -- Standard Generalized Markup Language
(SGML)", ISO 8879, 1986.
[<a id="ref-RFC0768">RFC0768</a>] Postel, J., "User Datagram Protocol", STD 6, <a href="./rfc768">RFC 768</a>,
August 1980.
<span class="grey">Thaler & Aboba Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
[<a id="ref-RFC0791">RFC0791</a>] Postel, J., "Internet Protocol", STD 5, <a href="./rfc791">RFC 791</a>,
September 1981.
[<a id="ref-RFC0793">RFC0793</a>] Postel, J., "Transmission Control Protocol", STD 7,
<a href="./rfc793">RFC 793</a>, September 1981.
[<a id="ref-RFC0826">RFC0826</a>] Plummer, D., "Ethernet Address Resolution Protocol: Or
converting network protocol addresses to 48.bit
Ethernet address for transmission on Ethernet
hardware", STD 37, <a href="./rfc826">RFC 826</a>, November 1982.
[<a id="ref-RFC0959">RFC0959</a>] Postel, J. and J. Reynolds, "File Transfer Protocol",
STD 9, <a href="./rfc959">RFC 959</a>, October 1985.
[<a id="ref-RFC1035">RFC1035</a>] Mockapetris, P., "Domain names - implementation and
specification", STD 13, <a href="./rfc1035">RFC 1035</a>, November 1987.
[<a id="ref-RFC1058">RFC1058</a>] Hedrick, C., "Routing Information Protocol", <a href="./rfc1058">RFC 1058</a>,
June 1988.
[<a id="ref-RFC1436">RFC1436</a>] Anklesaria, F., McCahill, M., Lindner, P., Johnson,
D., Torrey, D., and B. Alberti, "The Internet Gopher
Protocol (a distributed document search and retrieval
protocol)", <a href="./rfc1436">RFC 1436</a>, March 1993.
[<a id="ref-RFC1661">RFC1661</a>] Simpson, W., "The Point-to-Point Protocol (PPP)",
STD 51, <a href="./rfc1661">RFC 1661</a>, July 1994.
[<a id="ref-RFC1866">RFC1866</a>] Berners-Lee, T. and D. Connolly, "Hypertext Markup
Language - 2.0", <a href="./rfc1866">RFC 1866</a>, November 1995.
[<a id="ref-RFC1958">RFC1958</a>] Carpenter, B., "Architectural Principles of the
Internet", <a href="./rfc1958">RFC 1958</a>, June 1996.
[<a id="ref-RFC2131">RFC2131</a>] Droms, R., "Dynamic Host Configuration Protocol",
<a href="./rfc2131">RFC 2131</a>, March 1997.
[<a id="ref-RFC2328">RFC2328</a>] Moy, J., "OSPF Version 2", STD 54, <a href="./rfc2328">RFC 2328</a>,
April 1998.
[<a id="ref-RFC2460">RFC2460</a>] Deering, S. and R. Hinden, "Internet Protocol, Version
6 (IPv6) Specification", <a href="./rfc2460">RFC 2460</a>, December 1998.
[<a id="ref-RFC2616">RFC2616</a>] Fielding, R., Gettys, J., Mogul, J., Frystyk, H.,
Masinter, L., Leach, P., and T. Berners-Lee,
"Hypertext Transfer Protocol -- HTTP/1.1", <a href="./rfc2616">RFC 2616</a>,
June 1999.
<span class="grey">Thaler & Aboba Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
[<a id="ref-RFC2821">RFC2821</a>] Klensin, J., "Simple Mail Transfer Protocol",
<a href="./rfc2821">RFC 2821</a>, April 2001.
[<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-RFC3022">RFC3022</a>] Srisuresh, P. and K. Egevang, "Traditional IP Network
Address Translator (Traditional NAT)", <a href="./rfc3022">RFC 3022</a>,
January 2001.
[<a id="ref-RFC3261">RFC3261</a>] Rosenberg, J., Schulzrinne, H., Camarillo, G.,
Johnston, A., Peterson, J., Sparks, R., Handley, M.,
and E. Schooler, "SIP: Session Initiation Protocol",
<a href="./rfc3261">RFC 3261</a>, June 2002.
[<a id="ref-RFC3552">RFC3552</a>] Rescorla, E. and B. Korver, "Guidelines for Writing
RFC Text on Security Considerations", <a href="https://www.rfc-editor.org/bcp/bcp72">BCP 72</a>,
<a href="./rfc3552">RFC 3552</a>, July 2003.
[<a id="ref-RFC3954">RFC3954</a>] Claise, B., "Cisco Systems NetFlow Services Export
Version 9", <a href="./rfc3954">RFC 3954</a>, October 2004.
[<a id="ref-RFC4120">RFC4120</a>] Neuman, C., Yu, T., Hartman, S., and K. Raeburn, "The
Kerberos Network Authentication Service (V5)",
<a href="./rfc4120">RFC 4120</a>, July 2005.
[<a id="ref-RFC4251">RFC4251</a>] Ylonen, T. and C. Lonvick, "The Secure Shell (SSH)
Protocol Architecture", <a href="./rfc4251">RFC 4251</a>, January 2006.
[<a id="ref-RFC4271">RFC4271</a>] Rekhter, Y., Li, T., and S. Hares, "A Border Gateway
Protocol 4 (BGP-4)", <a href="./rfc4271">RFC 4271</a>, January 2006.
[<a id="ref-RFC4301">RFC4301</a>] Kent, S. and K. Seo, "Security Architecture for the
Internet Protocol", <a href="./rfc4301">RFC 4301</a>, December 2005.
[<a id="ref-RFC4436">RFC4436</a>] Aboba, B., Carlson, J., and S. Cheshire, "Detecting
Network Attachment in IPv4 (DNAv4)", <a href="./rfc4436">RFC 4436</a>,
March 2006.
[<a id="ref-RFC4864">RFC4864</a>] Van de Velde, G., Hain, T., Droms, R., Carpenter, B.,
and E. Klein, "Local Network Protection for IPv6",
<a href="./rfc4864">RFC 4864</a>, May 2007.
[TACACS+] Carrel, D. and L. Grant, "The TACACS+ Protocol,
Version 1.78", Work in Progress, January 1997.
<span class="grey">Thaler & Aboba Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
[<a id="ref-WAP">WAP</a>] Open Mobile Alliance, "Wireless Application Protocol
Architecture Specification", <http://
www.openmobilealliance.org/tech/affiliates/
LicenseAgreement.asp?DocName=/wap/
wap-210-waparch-20010712-a.pdf>.
<span class="grey">Thaler & Aboba Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Case Studies</span>
In this Appendix, we include several case studies to illustrate the
importance of potential success factors. Many other equally good
case studies could have been included, but, in the interests of
brevity, only a sampling is included here that is sufficient to
justify the conclusions in the body of this document.
<span class="h3"><a class="selflink" id="appendix-A.1" href="#appendix-A.1">A.1</a>. HTML/HTTP vs. Gopher and FTP</span>
<span class="h4"><a class="selflink" id="appendix-A.1.1" href="#appendix-A.1.1">A.1.1</a>. Initial Success Factors</span>
Positive net value: HTTP [<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>] with HTML [<a href="./rfc1866" title=""Hypertext Markup Language - 2.0"">RFC1866</a>] provided
substantially more value than Gopher [<a href="./rfc1436" title=""The Internet Gopher Protocol (a distributed document search and retrieval protocol)"">RFC1436</a>] and FTP [<a href="./rfc0959" title=""File Transfer Protocol"">RFC0959</a>].
Among other things, HTML/HTTP provided support for forms, which
opened the door for commercial uses of the technology. In this
sense, it enabled new scenarios. Furthermore, it only required
changes by entities that received benefits; hence, the cost and
benefits were aligned.
Incremental deployability: Browsers and servers were incrementally
deployable, but initial browsers were also backward compatible with
existing protocols such as FTP and Gopher.
Open code availability: Server code was open. Client source code was
initially open to academic use only.
Restriction-free: Academic use licenses were freely available. HTML
encumbrance only surfaced later.
Open specification availability: Yes.
Open maintenance process: Not at first, but eventually. This
illustrates that it is not necessary to have an open maintenance
process at first to achieve success. The maintenance process becomes
important after initial success.
Good technical design: Fair. Initially, there was no support for
graphics, HTML was missing many SGML [<a href="#ref-ISO-8879" title=""Information processing -- Text and office systems -- Standard Generalized Markup Language (SGML)"">ISO-8879</a>] features, and HTTP
1.0 had issues with congestion control and proxy support. These
sorts of issues would typically prevent IESG approval today.
However, they did not prevent the protocol from becoming successful.
<span class="grey">Thaler & Aboba Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h4"><a class="selflink" id="appendix-A.1.2" href="#appendix-A.1.2">A.1.2</a>. Wild Success Factors</span>
Extensible: Extensibility was excellent along multiple dimensions,
including HTTP, HTML, graphics, forms, Java, JavaScript, etc.
No hard scalability bound: Excellent. There was no registration
process, as there was with Gopher, which allowed it to scale much
better.
Threats sufficiently mitigated: No. There was initially no support
for confidentiality (e.g., protection of credit card numbers), and
HTTP 1.0 had cleartext passwords in Basic auth.
<span class="h4"><a class="selflink" id="appendix-A.1.3" href="#appendix-A.1.3">A.1.3</a>. Discussion</span>
HTML/HTTP addressed scenarios that no other protocol addressed.
Since deployment was easy, the protocol quickly took off. Only after
HTML/HTTP became successful did security become an issue. HTML/
HTTP's initial success occurred outside the IETF, although HTTP was
later standardized and refined, addressing some of the limitations.
<span class="h3"><a class="selflink" id="appendix-A.2" href="#appendix-A.2">A.2</a>. IPv4 vs. IPX</span>
<span class="h4"><a class="selflink" id="appendix-A.2.1" href="#appendix-A.2.1">A.2.1</a>. Initial Success Factors</span>
Positive net value: There were initially many competitors, including
IPX, AppleTalk, NetBEUI, OSI, and DECNet. All of them had positive
net value. However, NetBEUI and DECNet were not designed for
internetworking, which limited scalability and eventually stunted
their growth.
Incremental deployability: None of the competitors (including IPv4)
had incremental deployability, although there were few enough nodes
that a flag day was manageable at the time.
Open code availability: IPv4 had open code from BSD, whereas IPX did
not. Many argue that this was the primary reason for IPv4's success.
Restriction-free: Yes for IPv4; No for IPX.
Open specification availability: Yes for IPv4; No for IPX.
Open maintenance process: Yes for IPv4; No for IPX.
Good technical design: The initial design of IPv4 was fair, but
arguably IPX was initially better. Improvements to IPv4 such as DHCP
came much later.
<span class="grey">Thaler & Aboba Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h4"><a class="selflink" id="appendix-A.2.2" href="#appendix-A.2.2">A.2.2</a>. Wild Success Factors</span>
Extensible: Both IPv4 and IPX were extensible to new transports, new
link types, and new applications.
No hard scalability bound: Neither had a hard scalability bound close
to the design goals. IPX arguably scaled higher before hitting any
bound.
Threats sufficiently mitigated: Neither IPv4 nor IPX had threats
sufficiently mitigated.
<span class="h4"><a class="selflink" id="appendix-A.2.3" href="#appendix-A.2.3">A.2.3</a>. Discussion</span>
Initially, it wasn't clear that IPv4 would win. There were also
other competitors, such as OSI. However, the Advanced Research
Projects Agency (ARPA) funded IPv4 implementation on BSD and this
open source initiative led to many others picking up IPv4, which
ultimately made a difference in IPv4 succeeding rather than its
competitors. Even though IPX initially had a technically superior
design, IPv4 succeeded because of its openness.
<span class="h3"><a class="selflink" id="appendix-A.3" href="#appendix-A.3">A.3</a>. SSH</span>
<span class="h4"><a class="selflink" id="appendix-A.3.1" href="#appendix-A.3.1">A.3.1</a>. Initial Success Factors</span>
Positive net value: SSH [<a href="./rfc4251" title=""The Secure Shell (SSH) Protocol Architecture"">RFC4251</a>] provided greater value than
competitors. Kerberized telnet required deployment of a Kerberos
server. IPsec required a public key infrastructure (PKI) or pre-
shared key authentication. While the benefits were comparable, the
overall costs of the alternatives were much higher, and they
potentially required deployment by entities that did not directly
receive benefit. Hence, unlike the alternatives, the cost and
benefits of SSH were aligned.
Incremental deployability: Yes, SSH required SSH clients and servers,
but did not require a key distribution center (KDC) or credential
pre-configuration.
Open code availability: Yes
Restriction-free: It is unclear whether SSH was truly restriction-
free or not.
Open specification availability: Not at first, but eventually.
Open maintenance process: Not at first, but eventually.
<span class="grey">Thaler & Aboba Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
Good technical design: SSHv1 was fair. It had a number of technical
issues that were addressed in SSHv2.
<span class="h4"><a class="selflink" id="appendix-A.3.2" href="#appendix-A.3.2">A.3.2</a>. Wild Success Factors</span>
Extensibility: Good. SSH allowed adding new authentication
mechanisms.
No hard scalability bound: SSH had excellent scalability properties.
Threats sufficiently mitigated: No. SSHv1 was vulnerable to man-in-
the-middle attacks.
<span class="h4"><a class="selflink" id="appendix-A.3.3" href="#appendix-A.3.3">A.3.3</a>. Discussion</span>
The "leap of faith" trust model (accept an untrusted certificate the
first time you connect) was initially criticized by "experts", but
was popular with users. It provided vastly more functionality and
didn't require a KDC and so was easy to deploy. These factors made
SSH a clear winner.
<span class="h3"><a class="selflink" id="appendix-A.4" href="#appendix-A.4">A.4</a>. Inter-Domain IP Multicast vs. Application Overlays</span>
We now look at a protocol that has not been successful (i.e., has not
met its original design goals) after a long period of time has
passed. Note that this discussion applies only to inter-domain
multicast, not intra-domain or intra-subnet multicast.
<span class="h4"><a class="selflink" id="appendix-A.4.1" href="#appendix-A.4.1">A.4.1</a>. Initial Success Factors</span>
Positive net value: Unclear. When many receivers of the same stream
exist, the benefit relieves pain near the sender, and in some cases
enables new scenarios. However, when few receivers exist, the
benefits are only incremental improvements when compared with
multiple streams. While there was positive value in bandwidth
savings, this was offset by the lack of viable business models, and
lack of tools. Hence, the costs generally outweighed the benefits.
Furthermore, the costs are not necessarily aligned with the benefits.
Inter-domain Multicast requires changes by (at least) applications,
hosts, and routers. However, it is the applications that get the
primary benefit. For application layer overlaps, on the other hand,
only the applications need to change, and hence the cost is lower
(and so are the benefits), and cost and benefits are aligned.
Incremental deployability: Poor for inter-domain multicast, since it
required every router in the end-to-end path between a source and any
receiver to support multicast. This severely limited the
<span class="grey">Thaler & Aboba Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
deployability of native multicast. Initially, the strategy was to
use an overlay network (the Multicast Backbone (MBone)) to work
around this. However, the overlay network eventually suffered from
performance problems at high fan-out points, and so adding another
node required more coordination with other organizations to find
someone that was not overloaded and agreed to forward traffic on
behalf of the new node.
Incremental deployability was good for application-layer overlays,
since only the applications need to change. However, benefit only
exists when the sender(s) and receivers both support the overlay
mechanism.
Open code availability: Yes.
Restriction-free: Yes.
Open specification availability: Yes for inter-domain multicast.
Application-layer overlays are not standardized, but left to each
application.
Open maintenance process: Yes for inter-domain multicast.
Application-layer overlays are not standardized, but left to each
application.
Good technical design: This is debatable for inter-domain multicast.
In many respects, the technical design is very efficient. In other
respects, it results in per-connection state in all intermediate
routers, which is questionable at best. Application-layer overlays
do not have the disadvantage, but receive a smaller benefit.
<span class="h4"><a class="selflink" id="appendix-A.4.2" href="#appendix-A.4.2">A.4.2</a>. Wild Success Factors</span>
Extensible: Yes.
No hard scalability bound: Inter-domain multicast had scalability
issues in terms of number of groups, and in terms of number of
sources. It scaled extremely well in terms of number of receivers.
Application-layer overlays scale well in all dimensions, except that
they do not scale as well as inter-domain multicast in terms of
bandwidth since they still result in multiple streams over the same
link.
Threats sufficiently mitigated: No for inter-domain-multicast, since
untrusted hosts can create state in intermediate routers along an
entire path. Better for application-layer multicast.
<span class="grey">Thaler & Aboba Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h4"><a class="selflink" id="appendix-A.4.3" href="#appendix-A.4.3">A.4.3</a>. Discussion</span>
Because the benefits weren't enough to outweigh the costs for
entities (service providers and application developers) to use it,
instead the industry has tended to choose application overlays with
replicated unicast.
<span class="h3"><a class="selflink" id="appendix-A.5" href="#appendix-A.5">A.5</a>. Wireless Application Protocol (WAP)</span>
The Wireless Application Protocol (WAP) [<a href="#ref-WAP" title=""Wireless Application Protocol Architecture Specification"">WAP</a>] is another protocol
that has not been successful, but is worth comparing against other
protocols.
<span class="h4"><a class="selflink" id="appendix-A.5.1" href="#appendix-A.5.1">A.5.1</a>. Initial Success Factors</span>
Positive net value: Compared to competitors such as HTTP/TCP/IP, and
NTT DoCoMo's i-mode [<a href="#ref-IMODE" title=""i-mode"">IMODE</a>], the relative value of WAP is unclear.
It suffered from a poor experience, and a lack of tools.
Incremental deployability: Poor. WAP required a WAP-to-HTTP proxy in
the service provider and WAP support in phones; adding a new site
often required participation by the service provider.
Open code availability: No.
Restriction-free: No. WAP has two patents with royalties required.
Open specification availability: No.
Open maintenance process: No, there was a US$27000 entrance fee.
Good technical design: No, a common complaint was that WAP was
underspecified and hence interoperability was difficult.
<span class="h4"><a class="selflink" id="appendix-A.5.2" href="#appendix-A.5.2">A.5.2</a>. Wild Success Factors</span>
Extensible: Unknown.
No hard scalability bound: Excellent.
Threats sufficiently mitigated: Unknown.
<span class="h4"><a class="selflink" id="appendix-A.5.3" href="#appendix-A.5.3">A.5.3</a>. Discussion</span>
There were a number of close competitors to WAP. Incremental
deployability was easier with the competitors, and the restrictions
on code and specification access were significant factors that
hindered its ability to succeed.
<span class="grey">Thaler & Aboba Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h3"><a class="selflink" id="appendix-A.6" href="#appendix-A.6">A.6</a>. Wired Equivalent Privacy (WEP)</span>
WEP is a part of the IEEE 802.11 standard [<a href="#ref-IEEE-802.11" title=""Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications"">IEEE-802.11</a>], which
succeeded in being widely deployed in spite of its faults.
<span class="h4"><a class="selflink" id="appendix-A.6.1" href="#appendix-A.6.1">A.6.1</a>. Initial Success Factors</span>
Positive net value: Yes. WEP provided security when there was no
alternative, and it only required changes by entities that got
benefit.
Incremental deployability: Yes. Although one needed to configure
both the access point and stations, each wireless network could
independently deploy WEP.
Open code availability: Essentially no, because of Rivest Cipher 4
(RC4).
Restriction-free: No for RC4, but otherwise yes.
Open specification availability: No for RC4, but otherwise yes.
Open maintenance process: Yes.
Good technical design: No, WEP had an inappropriate use of RC4.
<span class="h4"><a class="selflink" id="appendix-A.6.2" href="#appendix-A.6.2">A.6.2</a>. Wild Success Factors</span>
Extensible: IEEE 802.11 was extensible enough to enable development
of replacements for WEP. However, WEP itself was not extensible.
No hard scalability bound: No.
Threats sufficiently mitigated: No.
<span class="h4"><a class="selflink" id="appendix-A.6.3" href="#appendix-A.6.3">A.6.3</a>. Discussion</span>
Even though WEP was not completely open and restriction free, and did
not have a good technical design, it still became successful because
it was incrementally deployable and it provided significant value
when there was no alternative. This again shows that value and
deployability are more significant success factors than technical
design or openness, particularly when no alternatives exist.
<span class="grey">Thaler & Aboba Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h3"><a class="selflink" id="appendix-A.7" href="#appendix-A.7">A.7</a>. RADIUS vs. TACACS+</span>
<span class="h4"><a class="selflink" id="appendix-A.7.1" href="#appendix-A.7.1">A.7.1</a>. Initial Success Factors</span>
Positive net value: Yes for both, and it only required changes by
entities that got benefit.
Incremental deployability: Yes for both (just change clients and
servers).
Open code availability: Yes for RADIUS; initially no for TACACS+, but
eventually yes.
Restriction-free: Yes for RADIUS; unclear for TACACS+.
Open specification availability: Yes for RADIUS; initially no for
TACACS+, but eventually yes.
Open maintenance process: Initially no for RADIUS, but eventually
yes. No for TACACS+.
Good technical design: Fair for RADIUS (there was no confidentiality
support, and no authentication of Access Requests; it had home grown
ciphersuites based on MD5). Good for TACACS+.
<span class="h4"><a class="selflink" id="appendix-A.7.2" href="#appendix-A.7.2">A.7.2</a>. Wild Success Factors</span>
Extensible: Yes for both.
No hard scalability bound: Excellent for RADIUS (UDP-based); good for
TACACS+ (TCP-based).
Threats sufficiently mitigated: No for RADIUS (no support for
confidentiality, existing implementations are vulnerable to
dictionary attacks, use of MD5 now vulnerable to collisions).
TACACS+ was better since it supported encryption.
<span class="h4"><a class="selflink" id="appendix-A.7.3" href="#appendix-A.7.3">A.7.3</a>. Discussion</span>
Since both provided positive net value and were incrementally
deployable, those factors were not significant. Even though TACACS+
had a better technical design in most respects, and eventually
provided openly available specifications and source code, the fact
that RADIUS had an open maintenance process as well as openly
available specifications and source code early on was the determining
factor. This again shows that having a better technical design is
less important in determining success than other factors.
<span class="grey">Thaler & Aboba Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h3"><a class="selflink" id="appendix-A.8" href="#appendix-A.8">A.8</a>. Network Address Translators (NATs)</span>
Although NAT is not, strictly speaking, a "protocol" per se, but
rather a "mechanism" or "algorithm", we include a case study since
there are many mechanisms that only require a single entity to change
to reap the benefit (TCP congestion control algorithms are another
example in this class), and it is important to include this class of
mechanisms in the discussion since it exemplifies a key point in the
discussion of incremental deployability.
<span class="h4"><a class="selflink" id="appendix-A.8.1" href="#appendix-A.8.1">A.8.1</a>. Initial Success Factors</span>
Positive net value: Yes. NATs provided the ability to connect
multiple devices when only a limited number of addresses were
available, and also provided a (limited) security boundary as a side
effect. Hence, it both relieved pain involved with acquiring
multiple addresses, as well as enabled new scenarios. Finally, it
only required deployment by the entity that got the benefit.
Incremental deployability: Yes. One could deploy a NAT without
coordinating with anyone else, including a service provider.
Open code availability: Yes.
Restriction-free: Yes at first (patents subsequently surfaced).
Open specification availability: Yes.
Open maintenance process: Yes.
Good technical design: Fair. NAT functionality was underspecified,
leading to unpredictable behavior in general. In addition, NATs
caused problems for certain classes of applications.
<span class="h4"><a class="selflink" id="appendix-A.8.2" href="#appendix-A.8.2">A.8.2</a>. Wild Success Factors</span>
Extensible: Fair. NATs supported some but not all UDP and TCP
applications. Adding application layer gateway functionality was
difficult.
No hard scalability bound: Good. There is a scalability bound
(number of ports available), but none near the original design goals.
Threats sufficiently mitigated: Yes.
<span class="grey">Thaler & Aboba Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
<span class="h4"><a class="selflink" id="appendix-A.8.3" href="#appendix-A.8.3">A.8.3</a>. Discussion</span>
The absence of an unambiguous specification was not a hindrance to
initial success since the test cases weren't well defined; therefore,
each implementation could decide for itself what scenarios it would
handle correctly.
Even with its technical problems, NAT succeeded because of the value
it provided. Again, this shows that the industry is willing to
accept technically problematic solutions when there is no alternative
and the technology is easy to deploy.
Indeed, NAT became wildly successful by being used for additional
purposes [<a href="./rfc4864" title=""Local Network Protection for IPv6"">RFC4864</a>], and to a large scale including multiple levels of
NATs in places.
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. IAB Members at the Time of This Writing</span>
Loa Andersson
Leslie Daigle
Elwyn Davies
Kevin Fall
Russ Housley
Olaf Kolkman
Barry Leiba
Kurtis Lindqvist
Danny McPherson
David Oran
Eric Rescorla
Dave Thaler
Lixia Zhang
<span class="grey">Thaler & Aboba Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
Authors' Addresses
Dave Thaler
IAB
One Microsoft Way
Redmond, WA 98052
USA
Phone: +1 425 703 8835
EMail: dthaler@microsoft.com
Bernard Aboba
IAB
One Microsoft Way
Redmond, WA 98052
USA
Phone: +1 425 706 6605
EMail: bernarda@microsoft.com
<span class="grey">Thaler & Aboba Informational [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc5218">RFC 5218</a> Protocol Success July 2008</span>
Full Copyright Statement
Copyright (C) The IETF Trust (2008).
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, THE IETF TRUST 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.
Thaler & Aboba Informational [Page 28]
</pre>
|