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
|
<pre>Network Working Group J. Elliott
Request for Comments: 2099 ISI
Category: Informational March 1997
<span class="h1">Request for Comments Summary</span>
RFC Numbers 2000-2099
Status of This Memo
This RFC is a slightly annotated list of the 100 RFCs from <a href="./rfc2000">RFC 2000</a>
through RFCs 2099. This is a status report on these RFCs. This memo
provides information for the Internet community. It does not specify
an Internet standard of any kind. Distribution of this memo is
unlimited.
Note
Many RFCs, but not all, are Proposed Standards, Draft Standards, or
Standards. Since the status of these RFCs may change during the
standards processing, we note here only that they are on the
standards track. Please see the latest edition of "Internet Official
Protocol Standards" for the current state and status of these RFCs.
In the following, RFCs on the standards track are marked [STANDARDS-
TRACK].
RFC Author Date Title
--- ------ ---- -----
<span class="h2"><a class="selflink" id="section-2099" href="#section-2099">2099</a> Elliott </span> Mar 97 Request for Comments Summary
This memo.
<span class="h2"><a class="selflink" id="section-2098" href="#section-2098">2098</a> Katsube </span> Feb 97 Toshiba's Router Architecture Extensions
for ATM : Overview
This memo describes a new internetworking architecture which makes
better use of the property of ATM. This memo provides information for
the Internet community. This memo does not specify an Internet standard
of any kind.
<span class="grey">Elliott Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2097" href="#section-2097">2097</a> Pall </span> Jan 97 The PPP NetBIOS Frames Control Protocol
(NBFCP)
This document defines the Network Control Protocol for establishing and
configuring the NBF protocol over PPP. The NBFCP protocol is only
applicable for an end system to connect to a peer system or the LAN that
peer system is connected to. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2096" href="#section-2096">2096</a> Baker </span> Jan 97 IP Forwarding Table MIB
This memo defines an update to <a href="./rfc1354">RFC 1354</a>. The significant difference
between this MIB and <a href="./rfc1354">RFC 1354</a> is the recognition (explicitly discussed
but by consensus left to future work) that CIDR routes may have the same
network number but different network masks. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2095" href="#section-2095">2095</a> Klensin </span> Jan 97 IMAP/POP AUTHorize Extension for Simple
Challenge/Response
This specification provides a simple challenge-response authentication
protocol that is suitable for use with IMAP4. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2094" href="#section-2094">2094</a> Harney </span> Mar 97 Group Key Management Protocol (GKMP)
Architecture
This specification proposes a protocol to create grouped symmetric keys
and distribute them amongst communicating peers. This memo defines an
Experimental Protocol for the Internet community.
<span class="h2"><a class="selflink" id="section-2093" href="#section-2093">2093</a> Harney </span> Mar 97 Group Key Management Protocol (GKMP)
Specification
This specification proposes a protocol to create grouped symmetric keys
and distribute them amongst communicating peers. This memo defines an
Experimental Protocol for the Internet community.
<span class="h2"><a class="selflink" id="section-2092" href="#section-2092">2092</a> Sherry </span> Jan 97 Protocol Analysis for Triggered RIP
As required by Routing Protocol Criteria [1], this report documents the
key features of Triggered Extensions to RIP to Support Demand Circuits
[2] and the current implementation experience. This memo provides
information for the Internet community. This memo does not specify an
Internet standard of any kind.
<span class="grey">Elliott Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2091" href="#section-2091">2091</a> Meyer </span> Jan 97 Triggered Extensions to RIP to Support
Demand Circuits
This document defines a modification which can be applied to Bellman-
Ford (distance vector) algorithm information broadcasting protocols.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2090" href="#section-2090">2090</a> Emberson </span> Feb 97 TFTP Multicast Option
This document describes a new TFTP option. This new option will allow
the multiple clients to receive the same file concurrently through the
use of Multicast packets. This memo defines an Experimental Protocol
for the Internet community.
<span class="h2"><a class="selflink" id="section-2089" href="#section-2089">2089</a> Wijnen </span> Jan 97 V2ToV1 Mapping SNMPv2 onto SNMPv1 within
a bi-lingual SNMP agent
The goal of this memo is to document a common way of mapping an SNMPv2
response into an SNMPv1 response within a bi-lingual SNMP agent (one
that supports both SNMPv1 and SNMPv2). This memo provides information
for the Internet community. This memo does not specify an Internet
standard of any kind.
<span class="h2"><a class="selflink" id="section-2088" href="#section-2088">2088</a> Myers </span> Jan 97 IMAP4 non-synchronizing literals
The Internet Message Access Protocol [IMAP4] contains the "literal"
syntactic construct for communicating strings. When sending a literal
from client to server, IMAP4 requires the client to wait for the server
to send a command continuation request between sending the octet count
and the string data. This document specifies an alternate form of
literal which does not require this network round trip. [STANDARDS-
TRACK]
<span class="h2"><a class="selflink" id="section-2087" href="#section-2087">2087</a> Myers </span> Jan 97 IMAP4 QUOTA extension
The QUOTA extension of the Internet Message Access Protocol [IMAP4]
permits administrative limits on resource usage (quotas) to be
manipulated through the IMAP protocol. [STANDARDS-TRACK]
<span class="grey">Elliott Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2086" href="#section-2086">2086</a> Myers </span> Jan 97 IMAP4 ACL extension
The ACL extension of the Internet Message Access Protocol [IMAP4]
permits access control lists to be manipulated through the IMAP
protocol. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2085" href="#section-2085">2085</a> Oehler </span> Feb 97 HMAC-MD5 IP Authentication with Replay
Prevention
This document describes a keyed-MD5 transform to be used in conjunction
with the IP Authentication Header [<a href="./rfc1826">RFC-1826</a>]. The particular transform
is based on [HMAC-MD5]. An option is also specified to guard against
replay attacks. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2084" href="#section-2084">2084</a> Bossert </span> Jan 97 Considerations for Web Transaction
Security
This document specifies the requirements for the provision of security
services to the HyperText Transport Protocol. These services include
confidentiality, integrity, user authentication, and authentication of
servers/services, including proxied or gatewayed services. This memo
provides information for the Internet community. This memo does not
specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2083" href="#section-2083">2083</a> Boutell </span> Jan 97 PNG (Portable Network Graphics)
Specification Version 1.0
This document describes PNG (Portable Network Graphics), an extensible
file format for the lossless, portable, well-compressed storage of
raster images. This memo provides information for the Internet
community. This memo does not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2082" href="#section-2082">2082</a> Baker </span> Jan 97 RIP-2 MD5 Authentication
Growth in the Internet has made us aware of the need for improved
authentication of routing information. RIP-2 provides for
unauthenticated service (as in classical RIP), or password
authentication. [STANDARDS-TRACK]
<span class="grey">Elliott Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2081" href="#section-2081">2081</a> Malkin </span> Jan 97 RIPng Protocol Applicability Statement
As required by Routing Protocol Criteria (<a href="./rfc1264">RFC 1264</a>), this report defines
the applicability of the RIPng protocol within the Internet. This memo
provides information for the Internet community. This memo does not
specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2080" href="#section-2080">2080</a> Malkin </span> Jan 97 RIPng for IPv6
This document specifies a routing protocol for an IPv6 internet. It is
based on protocols and algorithms currently in wide use in the IPv4
Internet [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2079" href="#section-2079">2079</a> Smith </span> Jan 97 Definition of an X.500 Attribute Type
and an Object Class to Hold Uniform
Resource Identifiers (URIs)
This document builds on the experimentation to date and defines a new
attribute type and an auxiliary object class to allow URIs, including
URLs, to be stored in directory entries in a standard way. [STANDARDS-
TRACK]
<span class="h2"><a class="selflink" id="section-2078" href="#section-2078">2078</a> Linn </span> Jan 97 Generic Security Service Application
Program Interface, Version 2
The Generic Security Service Application Program Interface (GSS-API), as
defined in <a href="./rfc1508">RFC-1508</a>, provides security services to callers in a generic
fashion, supportable with a range of underlying mechanisms and
technologies and hence allowing source-level portability of applications
to different environments. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2077" href="#section-2077">2077</a> Nelson </span> Jan 97 The Model Primary Content Type for
Multipurpose Internet Mail Extensions
The purpose of this memo is to propose an update to Internet <a href="./rfc2045">RFC 2045</a> to
include a new primary content-type to be known as "model". [STANDARDS-
TRACK]
<span class="grey">Elliott Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2076" href="#section-2076">2076</a> Palme </span> Feb 97 Common Internet Message Headers
This memo contains a table of commonly occurring headers in headings of
e-mail messages. This memo provides information for the Internet
community. This memo does not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2075" href="#section-2075">2075</a> Partridge </span> Jan 97 IP Echo Host Service
This memo describes how to implement an IP echo host. IP echo hosts
send back IP datagrams after exchanging the source and destination IP
addresses. This memo defines an Experimental Protocol for the Internet
community.
<span class="h2"><a class="selflink" id="section-2074" href="#section-2074">2074</a> Bierman </span> Jan 97 Remote Network Monitoring MIB Protocol
Identifiers
This memo defines an experimental portion of the Management Information
Base (MIB) for use with network management protocols in the Internet
community. In particular, it describes the algorithms required to
identify different protocol encapsulations managed with the Remote
Network Monitoring MIB Version 2 [RMON2]. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2073" href="#section-2073">2073</a> Rekhter </span> Jan 97 An IPv6 Provider-Based Unicast Address
Format
This document defines an IPv6 provider-based unicast address format for
use in the Internet. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2072" href="#section-2072">2072</a> Berkowitz </span> Jan 97 Router Renumbering Guide
Routers interact with numerous network infrastructure servers, including
DNS and SNMP. These interactions, not just the pure addressing and
routing structure, must be considered as part of router renumbering.
This memo provides information for the Internet community. This memo
does not specify an Internet standard of any kind.
<span class="grey">Elliott Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2071" href="#section-2071">2071</a> Ferguson </span> Jan 97 Network Renumbering Overview:
Why would I want it and what is it anyway?
This document attempts to clearly define the concept of network
renumbering and discuss some of the more pertinent reasons why an
organization would have a need to do so. This memo provides information
for the Internet community. This memo does not specify an Internet
standard of any kind.
<span class="h2"><a class="selflink" id="section-2070" href="#section-2070">2070</a> Yergeau </span> Jan 97 Internationalization of the Hypertext
Markup Language
This document is meant to address the issue of the internationalization
(i18n, i followed by 18 letters followed by n) of HTML by extending the
specification of HTML and giving additional recommendations for proper
internationalization support. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2069" href="#section-2069">2069</a> Franks </span> Jan 97 An Extension to HTTP : Digest Access
Authentication
The protocol referred to as "HTTP/1.0" includes the specification for a
Basic Access Authentication scheme. This scheme is not considered to be
a secure method of user authentication, as the user name and password
are passed over the network as clear text. A specification for a
different authentication scheme is needed to address this severe
limitation. This document provides specification for such a scheme,
referred to as "Digest Access Authentication". [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2068" href="#section-2068">2068</a> Fielding </span> Jan 97 Hypertext Transfer Protocol -- HTTP/1.1
The Hypertext Transfer Protocol (HTTP) is an application-level protocol
for distributed, collaborative, hypermedia information systems.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2067" href="#section-2067">2067</a> Renwick </span> Jan 97 IP over HIPPI
ANSI Standard X3.218-1993 (HIPPI-LE[3]) defines the encapsulation of
IEEE 802.2 LLC PDUs and, by implication, IP on HIPPI. This memo is a
revision of <a href="./rfc1374">RFC 1374</a>, "IP and ARP on HIPPI", and is intended to replace
it in the Standards Track. [STANDARDS-TRACK]
<span class="grey">Elliott Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2066" href="#section-2066">2066</a> Gellens </span> Jan 97 TELNET CHARSET Option
This document specifies a mechanism for passing character set and
translation information between a TELNET client and server. This memo
defines an Experimental Protocol for the Internet community.
<span class="h2"><a class="selflink" id="section-2065" href="#section-2065">2065</a> Eastlake </span> Jan 97 Domain Name System Security Extensions
The Domain Name System (DNS) has become a critical operational part of
the Internet infrastructure yet it has no strong security mechanisms to
assure data integrity or authentication. Extensions to the DNS are
described that provide these services to security aware resolvers or
applications through the use of cryptographic digital signatures.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2064" href="#section-2064">2064</a> Brownlee </span> Jan 97 Traffic Flow Measurement: Meter MIB
This memo defines a portion of the Management Information Base (MIB) for
use with network management protocols in TCP/IP-based internets. In
particular, this memo defines managed objects used for obtaining traffic
flow information from network traffic meters. This memo defines an
Experimental Protocol for the Internet community.
<span class="h2"><a class="selflink" id="section-2063" href="#section-2063">2063</a> Brownlee </span> Jan 97 Traffic Flow Measurement: Architecture
This document describes an architecture for the measurement and
reporting of network traffic flows, discusses how this relates to an
overall network traffic flow architecture, and describes how it can be
used within the Internet. This memo defines an Experimental Protocol
for the Internet community.
<span class="h2"><a class="selflink" id="section-2062" href="#section-2062">2062</a> Crispin </span> Dec 96 Internet Message Access Protocol -
Obsolete Syntax
This document describes obsolete syntax which may be encountered by
IMAP4 implementations which deal with older versions of the Internet
Mail Access Protocol. This memo provides information for the Internet
community. This memo does not specify an Internet standard of any kind.
<span class="grey">Elliott Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2061" href="#section-2061">2061</a> Crispin </span> Dec 96 IMAP4 COMPATIBILITY WITH IMAP2BIS
This document is intended to be read along with <a href="./rfc1176">RFC 1176</a> and the most
recent IMAP4 specification (<a href="./rfc2060">RFC 2060</a>) to assist implementors in creating
an IMAP4 implementation to interoperate with implementations that
conform to earlier specifications. This memo provides information for
the Internet community. This memo does not specify an Internet standard
of any kind.
<span class="h2"><a class="selflink" id="section-2060" href="#section-2060">2060</a> Crispin </span> Dec 96 INTERNET MESSAGE ACCESS PROTOCOL -
VERSION 4rev1
The Internet Message Access Protocol, Version 4rev1 (IMAP4rev1) allows a
client to access and manipulate electronic mail messages on a server.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2059" href="#section-2059">2059</a> Rigney </span> Jan 97 RADIUS Accounting
This document describes a protocol for carrying accounting information
between a Network Access Server and a shared Accounting Server. This
memo provides information for the Internet community. This memo does
not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2058" href="#section-2058">2058</a> Rigney </span> Jan 97 Remote Authentication Dial In User
Service (RADIUS)
This document describes a protocol for carrying authentication,
authorization, and configuration information between a Network Access
Server which desires to authenticate its links and a shared
Authentication Server. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2057" href="#section-2057">2057</a> Bradner </span> Nov 96 Source Directed Access Control on the
Internet
This memo was developed from a deposition that I submitted as part of a
challenge to the Communications Decency Act of 1996, part of the
Telecommunications Reform Act of 1996. This memo provides information
for the Internet community. This memo does not specify an Internet
standard of any kind.
<span class="grey">Elliott Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2056" href="#section-2056">2056</a> Denenberg </span> Nov 96 Uniform Resource Locators for Z39.50
Z39.50 is an information retrieval protocol that does not fit neatly
into a retrieval model designed primarily around the stateless fetch of
data. Instead, it models a general user inquiry as a session-oriented,
multi-step task, any step of which may be suspended temporarily while
the server requests additional parameters from the client before
continuing. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2055" href="#section-2055">2055</a> Callaghan </span> Oct 96 WebNFS Server Specification
This document describes the specifications for a server of WebNFS
clients. This memo provides information for the Internet community.
This memo does not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2054" href="#section-2054">2054</a> Callaghan </span> Oct 96 WebNFS Client Specification
This document describes a lightweight binding mechanism that allows NFS
clients to obtain service from WebNFS-enabled servers with a minimum of
protocol overhead. This memo provides information for the Internet
community. This memo does not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2053" href="#section-2053">2053</a> Der-Danieliantz </span>Oct 96 The AM (Armenia) Domain
The AM Domain is an official Internet top-level domain of Armenia. This
memo provides information for the Internet community. This memo does
not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2052" href="#section-2052">2052</a> Gulbrandsen </span>Oct 96 A DNS RR for specifying the location of
services (DNS SRV)
This document describes a DNS RR which specifies the location of the
server(s) for a specific protocol and domain (like a more general form
of MX). This memo defines an Experimental Protocol for the Internet
community.
<span class="grey">Elliott Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2051" href="#section-2051">2051</a> Allen </span> Oct 96 Definitions of Managed Objects for APPC
using SMIv2
This memo defines a portion of the Management Information Base (MIB) for
use with network management protocols in the Internet community. In
particular, it defines objects for managing the configuration,
monitoring and controlling of network devices with APPC (Advanced
Program-to-Program Communications) capabilities. This memo identifies
managed objects for the SNA LU6.2 protocols. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2050" href="#section-2050">2050</a> Hubbard </span> Nov 96 INTERNET REGISTRY IP ALLOCATION
GUIDELINES
This document describes the registry system for the distribution of
globally unique Internet address space and registry operations.
Particularly this document describes the rules and guidelines governing
the distribution of this address space. This document specifies an
Internet Best Current Practices for the Internet Community, and requests
discussion and suggestions for improvements.
<span class="h2"><a class="selflink" id="section-2049" href="#section-2049">2049</a> Freed </span> Nov 96 Multipurpose Internet Mail Extensions
(MIME) Part Five: Conformance Criteria
and Examples
This set of documents, collectively called the Multipurpose Internet
Mail Extensions, or MIME, redefines the format of messages. This fifth
and final document describes MIME conformance criteria as well as
providing some illustrative examples of MIME message formats,
acknowledgements, and the bibliography. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2048" href="#section-2048">2048</a> Freed </span> Nov 96 Multipurpose Internet Mail Extensions
(MIME) Part Four: Registration
Procedures
This set of documents, collectively called the Multipurpose Internet
Mail Extensions, or MIME, redefines the format of messages. This fourth
document, <a href="./rfc2048">RFC 2048</a>, specifies various IANA registration procedures for
some MIME facilities. This document specifies an Internet Best Current
Practices for the Internet Community, and requests discussion and
suggestions for improvements.
<span class="grey">Elliott Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2047" href="#section-2047">2047</a> Moore </span> Nov 96 MIME (Multipurpose Internet Mail
Extensions) Part Three: Message Header
Extensions for Non-ASCII Text
This particular document is the third document in the series. It
describes extensions to <a href="./rfc822">RFC 822</a> to allow non-US-ASCII text data in
Internet mail header fields. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2046" href="#section-2046">2046</a> Freed </span> Nov 96 Multipurpose Internet Mail Extensions
(MIME) Part Two: Media Types
This second document defines the general structure of the MIME media
typing system and defines an initial set of media types. [STANDARDS-
TRACK]
<span class="h2"><a class="selflink" id="section-2045" href="#section-2045">2045</a> Freed </span> Nov 96 Multipurpose Internet Mail Extensions
(MIME) Part One: Format of Internet
Message Bodies
This initial document specifies the various headers used to describe the
structure of MIME messages. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2044" href="#section-2044">2044</a> Yergeau </span> Oct 96 UTF-8, a transformation format of
Unicode and ISO 10646
The Unicode Standard, version 1.1, and ISO/IEC 10646-1:1993 jointly
define a 16 bit character set which encompasses most of the world's
writing systems. UTF-8, the object of this memo, has the characteristic
of preserving the full US-ASCII range. This memo provides information
for the Internet community. This memo does not specify an Internet
standard of any kind.
<span class="h2"><a class="selflink" id="section-2043" href="#section-2043">2043</a> Fuqua </span> Oct 96 The PPP SNA Control Protocol (SNACP)
This document defines the Network Control Protocols for establishing and
configuring Systems Network Architecture (SNA) over PPP and SNA over LLC
<span class="h3"><a class="selflink" id="section-802.2" href="#section-802.2">802.2</a> over PPP. </span>[STANDARDS-TRACK]
<span class="grey">Elliott Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2042" href="#section-2042">2042</a> Manning </span> Jan 97 Registering New BGP Attribute Types
This document describes the process for creating new BGP attribute type
codes. Basic attribute type codes are described in <a href="./rfc1771">RFC 1771</a>, pages 12
through 15. These, and new attribute type codes that are used in the
Internet are registered with the IANA. This memo provides information
for the Internet community. This memo does not specify an Internet
standard of any kind.
<span class="h2"><a class="selflink" id="section-2041" href="#section-2041">2041</a> Noble </span> Oct 96 Mobile Network Tracing
This RFC argues that mobile network tracing provides both tools to
improve our understanding of wireless channels, as well as to build
realistic, repeatable testbeds for mobile software and systems. This
memo provides information for the Internet community. This memo does
not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2040" href="#section-2040">2040</a> Baldwin </span> Oct 96 The RC5, RC5-CBC, RC5-CBC-Pad, and
RC5-CTS Algorithms
This document defines four ciphers with enough detail to ensure
interoperability between different implementations. This memo provides
information for the Internet community. This memo does not specify an
Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2039" href="#section-2039">2039</a> Kalbfleisch </span>Nov 96 Applicablity of Standards Track MIBs to
Management of World Wide Web Servers
This document was produced at the request of the Network Management Area
Director following the HTTP-MIB BOF at the 35th IETF meeting to report
on the applicability of the existing standards track MIBs to management
of WWW servers. This memo provides information for the Internet
community. This memo does not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2038" href="#section-2038">2038</a> Hoffman </span> Oct 96 RTP Payload Format for MPEG1/MPEG2 Video
This memo describes a packetization scheme for MPEG video and audio
streams. The scheme proposed can be used to transport such a video or
audio flow over the transport protocols supported by RTP. [STANDARDS-
TRACK]
<span class="grey">Elliott Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2037" href="#section-2037">2037</a> McCloghrie </span> Oct 96 Entity MIB using SMIv2
This memo defines a portion of the Management Information Base (MIB) for
use with network management protocols in the Internet community. In
particular, it describes managed objects used for managing multiple
logical and physical entities managed by a single SNMP agent.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2036" href="#section-2036">2036</a> Huston </span> Oct 96 Observations on the use of Components of
the Class A Address Space within the
Internet
This document is a commentary on the recommendation that IANA commence
allocation of the presently unallocated components of the Class A
address space to registries, for deployment within the Internet as
class-less address blocks. This memo provides information for the
Internet community. This memo does not specify an Internet standard of
any kind.
<span class="h2"><a class="selflink" id="section-2035" href="#section-2035">2035</a> Berc </span> Oct 96 RTP Payload Format for JPEG-compressed
Video
This memo describes the RTP payload format for JPEG video streams. The
packet format is optimized for real-time video streams where codec
parameters change rarely from frame to frame. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2034" href="#section-2034">2034</a> Freed </span> Oct 96 SMTP Service Extension for
Returning Enhanced Error Codes
This memo defines an extension to the SMTP service [RFC-821, <a href="./rfc1869">RFC-1869</a>]
whereby an SMTP server augments its responses with the enhanced mail
system status codes defined in <a href="./rfc1893">RFC 1893</a>. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2033" href="#section-2033">2033</a> Myers </span> Oct 96 Local Mail Transfer Protocol
SMTP [SMTP] [HOST-REQ] and its service extensions [ESMTP] provide a
mechanism for transferring mail reliably and efficiently. The design of
the SMTP protocol effectively requires the server to manage a mail
delivery queue. This memo provides information for the Internet
community. This memo does not specify an Internet standard of any kind.
<span class="grey">Elliott Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2032" href="#section-2032">2032</a> Turletti </span> Oct 96 RTP Payload Format for H.261 Video
Streams
This memo describes a scheme to packetize an H.261 video stream for
transport using the Real-time Transport Protocol, RTP, with any of the
underlying protocols that carry RTP. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2031" href="#section-2031">2031</a> Huizer </span> Oct 96 IETF-ISOC relationship
This memo summarises the issues on IETF - ISOC relationships as the have
been discussed by the Poised Working Group. The purpose of the document
is to gauge consensus on these issues. And to allow further discussions
where necessary. This memo provides information for the Internet
community. This memo does not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2030" href="#section-2030">2030</a> Mills </span> Oct 96 Simple Network Time Protocol (SNTP)
Version 4 for IPv4, IPv6 and OSI
This memorandum describes the Simple Network Time Protocol (SNTP)
Version 4, which is an adaptation of the Network Time Protocol (NTP)
used to synchronize computer clocks in the Internet. This memo provides
information for the Internet community. This memo does not specify an
Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2029" href="#section-2029">2029</a> Speer </span> Oct 96 RTP Payload Format of Sun's CellB Video
Encoding
This memo describes a packetization scheme for the CellB video encoding.
The scheme proposed allows applications to transport CellB video flows
over protocols used by RTP. This document is meant for implementors of
video applications that want to use RTP and CellB. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2028" href="#section-2028">2028</a> Hovey </span> Oct 96 The Organizations Involved in the IETF
Standards Process
This document describes the individuals and organizations involved in
the IETF. This includes descriptions of the IESG, the IETF Working
Groups and the relationship between the IETF and the Internet Society.
This document specifies an Internet Best Current Practices for the
Internet Community, and requests discussion and suggestions for
improvements.
<span class="grey">Elliott Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2027" href="#section-2027">2027</a> Galvin </span> Oct 96 IAB and IESG Selection, Confirmation, and
Recall Process: Operation of the
Nominating and Recall Committees
The process by which the members of the IAB and IESG are selected,
confirmed, and recalled has been exercised four times since its formal
creation. The evolution of the process has relied principally on oral
tradition as a means by which the lessons learned could be passed on to
successive committees. This document is a self-consistent, organized
compilation of the process as it is known today. This document
specifies an Internet Best Current Practices for the Internet Community,
and requests discussion and suggestions for improvements.
<span class="h2"><a class="selflink" id="section-2026" href="#section-2026">2026</a> Bradner </span> Oct 96 The Internet Standards Process --
Revision 3
This memo documents the process used by the Internet community for the
standardization of protocols and procedures. It defines the stages in
the standardization process, the requirements for moving a document
between stages and the types of documents used during this process.
This document specifies an Internet Best Current Practices for the
Internet Community, and requests discussion and suggestions for
improvements.
<span class="h2"><a class="selflink" id="section-2025" href="#section-2025">2025</a> Adams </span> Oct 96 The Simple Public-Key GSS-API Mechanism
(SPKM)
This specification defines protocols, procedures, and conventions to be
employed by peers implementing the Generic Security Service Application
Program Interface (as specified in RFCs 1508 and 1509) when using the
Simple Public-Key Mechanism. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2024" href="#section-2024">2024</a> Chen </span> Oct 96 Definitions of Managed Objects for Data
Link Switching using SMIv2
This specification defines an extension to the Management Information
Base (MIB) for use with SNMP-based network management. In particular,
it defines objects for configuring, monitoring, and controlling Data
Link Switches (DLSw). [STANDARDS-TRACK]
<span class="grey">Elliott Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2023" href="#section-2023">2023</a> Haskin </span> Oct 96 IP Version 6 over PPP
This document defines the method for transmission of IP Version 6 [2]
packets over PPP links as well as the Network Control Protocol (NCP) for
establishing and configuring the IPv6 over PPP. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2022" href="#section-2022">2022</a> Armitage </span> Nov 96 Support for Multicast over UNI 3.0/3.1
based ATM Networks.
This memo describes a mechanism to support the multicast needs of Layer
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a> protocols in general, and describes its application to IP multicasting</span>
in particular. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2021" href="#section-2021">2021</a> Waldbusser </span> Jan 97 Remote Network Monitoring Management
Information Base Version 2 using SMIv2
This memo defines a portion of the Management Information Base (MIB) for
use with network management protocols in TCP/IP-based internets. In
particular, it defines objects for managing remote network monitoring
devices. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2020" href="#section-2020">2020</a> Flick </span> Oct 96 Definitions of Managed Objects for IEEE
802.12 Interfaces
This memo defines a portion of the Management Information Base (MIB) for
use with network management protocols in TCP/IP-based internets. In
particular, it defines objects for managing network interfaces based on
IEEE 802.12. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2019" href="#section-2019">2019</a> Crawford </span> Oct 96 A Method for the Transmission of IPv6
Packets over FDDI Networks
This memo specifies the MTU and frame format for transmission of IPv6
[IPV6] packets on FDDI networks, including a method for MTU
determination in the presence of 802.1d bridges to other media.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2018" href="#section-2018">2018</a> Mathis </span> Oct 96 TCP Selective Acknowledgment Options
This memo proposes an implementation of SACK and discusses its
performance and related issues. [STANDARDS-TRACK]
<span class="grey">Elliott Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2017" href="#section-2017">2017</a> Freed </span> Oct 96 Definition of the URL
MIME External-Body Access-Type
This memo defines a new access-type for message/external-body MIME parts
for Uniform Resource Locators (URLs). [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2016" href="#section-2016">2016</a> Daigle </span> Oct 96 Uniform Resource Agents (URAs)
This paper presents an experimental architecture for an agent system
that provides sophisticated Internet information access and management.
This memo defines an Experimental Protocol for the Internet community.
<span class="h2"><a class="selflink" id="section-2015" href="#section-2015">2015</a> Elkins </span> Oct 96 MIME Security with Pretty Good Privacy
(PGP)
This document describes how Pretty Good Privacy (PGP) can be used to
provide privacy and authentication using the Multipurpose Internet Mail
Extensions (MIME) security content types described in <a href="./rfc1847">RFC1847</a>.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2014" href="#section-2014">2014</a> Weinrib </span> Oct 96 IRTF Research Group Guidelines and
Procedures
This document describes the guidelines and procedures for formation and
operation of IRTF Research Groups. It describes the relationship
between IRTF participants, Research Groups, the Internet Research
Steering Group (IRSG) and the Internet Architecture Board (IAB). This
document specifies an Internet Best Current Practices for the Internet
Community, and requests discussion and suggestions for improvements.
<span class="h2"><a class="selflink" id="section-2013" href="#section-2013">2013</a> McCloghrie </span> Nov 96 SNMPv2 Management Information Base for
the User Datagram Protocol using SMIv2
This document is the MIB module which defines managed objects for
managing implementations of the User Datagram Protocol (UDP).
[STANDARDS-TRACK]
<span class="grey">Elliott Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2012" href="#section-2012">2012</a> McCloghrie </span> Nov 96 SNMPv2 Management Information Base for
the Transmission Control Protocol using
SMIv2
This document is the MIB module which defines managed objects for
managing implementations of the Transmission Control Protocol (TCP).
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2011" href="#section-2011">2011</a> McCloghrie </span> Nov 96 SNMPv2 Management Information Base
for the Internet Protocol using SMIv2
This document is the MIB module which defines managed objects for
managing implementations of the Internet Protocol (IP) and its
associated Internet Control Message Protocol (ICMP). [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2010" href="#section-2010">2010</a> Manning </span> Oct 96 Operational Criteria for Root Name
Servers
This document specifies the operational requirements of root name
servers, including host hardware capacities, name server software
revisions, network connectivity, and physical environment. This memo
provides information for the Internet community. This memo does not
specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2009" href="#section-2009">2009</a> Imielinski </span> Nov 96 GPS-Based Addressing and Routing
This document describes a possible experiment with geographic addresses.
It uses several specific IP addresses and domain names in the discussion
as concrete examples to aid in understanding the concepts. This memo
defines an Experimental Protocol for the Internet community.
<span class="h2"><a class="selflink" id="section-2008" href="#section-2008">2008</a> Rekhter </span> Oct 96 Implications of Various Address
Allocation Policies for Internet Routing
The purpose of this document is to articulate certain relevant
fundamental technical issues that must be considered in formulating
unicast address allocation and management policies for the Public
Internet, and to provide recommendations with respect to these policies.
This document specifies an Internet Best Current Practices for the
Internet Community, and requests discussion and suggestions for
improvements.
<span class="grey">Elliott Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2007" href="#section-2007">2007</a> Foster </span> Oct 96 Catalogue of Network Training Materials
The purpose of this document is to provide a catalogue of quality
Network Training Materials for use by Internet trainers in training
their users. This memo provides information for the Internet community.
This memo does not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-2006" href="#section-2006">2006</a> Cong </span> Oct 96 The Definitions of Managed Objects for
IP Mobility Support using SMIv2
This memo defines the Management Information Base (MIB) for use with
network management protocols in TCP/IP-based internets. In particular,
it describes managed objects used for managing the Mobile Node, Foreign
Agent and Home Agent of the Mobile IP Protocol. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2005" href="#section-2005">2005</a> Solomon </span> Oct 96 Applicability Statement for IP Mobility
Support
As required by [<a href="./rfc1264">RFC 1264</a>], this report discusses the applicability of
Mobile IP to provide host mobility in the Internet. In particular, this
document describes the key features of Mobile IP and shows how the
requirements for advancement to Proposed Standard RFC have been
satisfied. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2004" href="#section-2004">2004</a> Perkins </span> Oct 96 Minimal Encapsulation within IP
This document specifies a method by which an IP datagram may be
encapsulated (carried as payload) within an IP datagram, with less
overhead than "conventional" IP encapsulation that adds a second IP
header to each encapsulated datagram. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-2003" href="#section-2003">2003</a> Perkins </span> Oct 96 IP Encapsulation within IP
This document specifies a method by which an IP datagram may be
encapsulated (carried as payload) within an IP datagram. [STANDARDS-
TRACK]
<span class="grey">Elliott Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc2099">RFC 2099</a> Summary of 2000-2099 March 1997</span>
<span class="h2"><a class="selflink" id="section-2002" href="#section-2002">2002</a> Perkins </span> Oct 96 IP Mobility Support
This document specifies protocol enhancements that allow transparent
routing of IP datagrams to mobile nodes in the Internet. [STANDARDS-
TRACK]
<span class="h2"><a class="selflink" id="section-2001" href="#section-2001">2001</a> Stevens </span> Jan 97 TCP Slow Start, Congestion Avoidance,
Fast Retransmit, and Fast Recovery
Algorithms
Modern implementations of TCP contain four intertwined algorithms that
have never been fully documented as Internet standards: slow start,
congestion avoidance, fast retransmit, and fast recovery. [STANDARDS-
TRACK]
<span class="h2"><a class="selflink" id="section-2000" href="#section-2000">2000</a> I.A.B. </span> Feb 97 INTERNET OFFICIAL PROTOCOL STANDARDS
This memo describes the state of standardization of protocols used in
the Internet as determined by the Internet Architecture Board (IAB).
This memo is an Internet Standard.
Security Considerations
Security issues are not discussed in this memo.
Author's Address
Josh Elliott
University of Southern California
Information Sciences Institute
4676 Admiralty Way
Marina del Rey, CA 90292
Phone: (310) 822-1511
EMail: elliott@isi.edu
Elliott Informational [Page 21]
</pre>
|