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: 1699 ISI
Category: Informational January 1997
<span class="h1">Request for Comments Summary</span>
RFC Numbers 1600-1699
Status of This Memo
This RFC is a slightly annotated list of the 100 RFCs from <a href="./rfc1600">RFC 1600</a>
through RFCs 1699. 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-1699" href="#section-1699">1699</a> Elliott </span> Jan 97 Requests For Comments Summary
This memo.
<span class="h2"><a class="selflink" id="section-1698" href="#section-1698">1698</a> Furniss </span> Oct 94 Octet Sequences for Upper-Layer OSI
to Support Basic Communications
Applications
This document states particular octet sequences that comprise the OSI
upper-layer protocols (Session, Presentation and ACSE) when used to
support applications with "basic communications requirements". 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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1697" href="#section-1697">1697</a> Brower </span> Aug 94 Relational Database Management System
(RDBMS) Management Information Base
(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 relational
database (RDBMS) implementations. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1696" href="#section-1696">1696</a> Barnes </span> Aug 94 Modem Management Information Base (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 dial-up
modems and similar dial-up devices. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1695" href="#section-1695">1695</a> Ahmed </span> Aug 94 Definitions of Managed Objects
for ATM Management Version 8.0
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 objects used for managing ATM-based interfaces,
devices, networks and services. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1694" href="#section-1694">1694</a> Brown </span> Aug 94 Definitions of Managed Objects
for SMDS Interfaces 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 objects for SMDS access
interfaces. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1693" href="#section-1693">1693</a> Connolly </span> Nov 94 An Extension to TCP : Partial Order
Service
This RFC introduces a new transport mechanism for TCP based upon partial
ordering. The aim is to present the concepts of partial ordering and
promote discussions on its usefulness in network communications. This
memo defines an Experimental Protocol for the Internet community.
<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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1692" href="#section-1692">1692</a> Cameron </span> Aug 94 Transport Multiplexing Protocol (TMux)
This RFC documents the extended TACACS protocol use by the Cisco Systems
terminal servers. This same protocol is used by the University of
Minnesota's distributed authentication system. This memo provides
information for the Internet community. It does not specify an Internet
standard.
<span class="h2"><a class="selflink" id="section-1691" href="#section-1691">1691</a> Turner </span> Aug 94 The Document Architecture for the
Cornell Digital Library
This memo defines an architecture for the storage and retrieval of the
digital representations for books, journals, photographic images, etc.,
which are collected in a large organized digital library. 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-1690" href="#section-1690">1690</a> Huston </span> Aug 94 Introducing the Internet Engineering
and Planning Group (IEPG)
This memo introduces the IEPG to the Internet Community. 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-1689" href="#section-1689">1689</a> Foster </span> Aug 94 A Status Report on Networked Information
Retrieval: Tools and Groups
The purpose of this report is to increase the awareness of Networked
Information Retrieval by bringing together in one place information
about the various networked information retrieval tools, their
developers, interested organisations, and other activities that relate
to the production, dissemination, and support of NIR tools. 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-1688" href="#section-1688">1688</a> Simpson </span> Aug 94 IPng Mobility Considerations
This RFC specifies criteria related to mobility for consideration in
design and selection of the Next Generation of IP. 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 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1687" href="#section-1687">1687</a> Fleischman </span> Aug 94 A Large Corporate User's View of IPng
The goal of this paper is to examine the implications of IPng from the
point of view of Fortune 100 corporations which have heavily invested in
TCP/IP technology in order to achieve their (non-computer related)
business goals.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-1686" href="#section-1686">1686</a> Vecchi </span> Aug 94 IPng Requirements: A Cable Television
Industry Viewpoint
This paper provides comments on topics related to the IPng requirements
and selection criteria from a cable television industry viewpoint. 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-1685" href="#section-1685">1685</a> Alvestrand </span> Aug 94 Writing X.400 O/R Names
There is a need for human beings who use X.400 systems to be able to
write down O/R names in a uniform way. This memo is a discussion of
this topic. This memo provides information for the Internet Community.
It does not specify an Internet Standard of any kind.
<span class="h2"><a class="selflink" id="section-1684" href="#section-1684">1684</a> Jurg </span> Aug 94 Introduction to White Pages Services
based on X.500
The document provides an introduction to the international ITU-T
(formerly CCITT) X.500 and ISO 9594 standard, which is particularly
suited for providing an integrated local and global electronic White
Pages Service. 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-1683" href="#section-1683">1683</a> Clark </span> Aug 94 Multiprotocol Interoperability In IPng
In this document, we identify several features that affect a protocol's
ability to operate in a multiprotocol environment and propose the
incorporation of these features into IPng. 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 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1682" href="#section-1682">1682</a> Bound </span> Aug 94 IPng BSD Host Implementation Analysis
This IPng white paper, IPng BSD Host Implementation Analysis, was
submitted to the IPng Directorate to provide a BSD host point of
reference to assist with the engineering considerations during the IETF
process to select an IPng proposal. 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-1681" href="#section-1681">1681</a> Bellovin </span> Aug 94 On Many Addresses per Host
This document was submitted to the IETF IPng area in response to RFC
1550.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-1680" href="#section-1680">1680</a> Bradziunas </span> Aug 94 IPng Support for ATM Services
This white paper describes engineering considerations for IPng as
solicited by <a href="./rfc1550">RFC 1550</a> [1]. 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-1679" href="#section-1679">1679</a> Green </span> Aug 94 HPN Working Group Input to the IPng
Requirements Solicitation
The purpose of this document is to provide what the HPN working group
perceives as requirements for an IPng protocol set. 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-1678" href="#section-1678">1678</a> Britton </span> Aug 94 IPng Requirements of Large Corporate
Networks
This draft summarizes some of the requirements of large corporate
networks for the next generation of the Internet protcol suite. 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 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1677" href="#section-1677">1677</a> Adamson </span> Aug 94 Tactical Radio Frequency Communication
Requirments for IPng
This paper describes requirements for Internet Protocol next generation
(IPng) candidates with respect to their application to military tactical
radio frequency (RF) communication networks. 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-1676" href="#section-1676">1676</a> Ghiselli </span> Aug 94 INFN Requirements for an IPng
With this paper we would like to emphasize the key points that we would
to consider if charged with IPng plan. 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-1675" href="#section-1675">1675</a> Bellovin </span> Aug 94 Security Concerns for IPng
A number of the candidates for IPng have some features that are somewhat
worrisome from a security perspective. While it is not necessary that
IPng be an improvement over IPv4, it is mandatory that it not make
things worse. 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-1674" href="#section-1674">1674</a> Taylor </span> Aug 94 A Cellular Industry View of IPng
This is a draft of the requirements for IPng as envisioned by
representatives of the Cellular Digital Packet Data (CDPD) consortium of
service providers. 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-1673" href="#section-1673">1673</a> Skelton </span> Aug 94 Electric Power Research Institute
Comments on IPng
This document was submitted to the IETF IPng area in response to RFC
<span class="h2"><a class="selflink" id="section-1550" href="#section-1550">1550</a>. This memo provides information for the Internet community. </span>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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1672" href="#section-1672">1672</a> Brownless </span> Aug 94 Accounting Requirements for IPng
This white paper discusses accounting requirements for IPng. It
recommends that all IPng packets carry accounting tags, which would vary
in size. 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-1671" href="#section-1671">1671</a> Carpenter </span> Aug 94 IPng White Paper on Transition and Other
Considerations
This white paper outlines some general requirements for IPng in selected
areas. 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-1670" href="#section-1670">1670</a> Heagerty </span> Aug 94 Input to IPng Engineering Considerations
This white paper expresses some personal opinions on IPng engineering
considerations, based on experience with DECnet Phase V transition. It
suggests breaking down the IPng decisions and transition tasks into
smaller parts so they can be tackled early by the relevant experts.
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-1669" href="#section-1669">1669</a> Curran </span> Aug 94 Market Viability as a IPng Criteria
"Viability in the Marketplace" is an important requirement for any IPng
candidate and this paper is an attempt to summarize some important
factors in determing market viability of IPng proposals. 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-1668" href="#section-1668">1668</a> Estrin </span> Aug 94 Unified Routing Requirements for IPng
The document provides requirements on the IPng from the perspective of
the Unified Routing Architecture, as described in <a href="./rfc1322">RFC 1322</a>. 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 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1667" href="#section-1667">1667</a> Symington </span> Aug 94 Modeling and Simulation Requirements for
IPng
This white paper summarizes the Distributed Interactive Simulation
environment that is under development, with regard to its real-time
nature, scope and magnitude of networking requirements. 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-1666" href="#section-1666">1666</a> Kielczewski </span>Aug 94 Definitions of Managed Objects
for SNA NAUs 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 control of Physical Units (PUs) and Logical Units (LUs)
in an SNA environment. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1665" href="#section-1665">1665</a> Kielczewski </span>Jul 94 Definitions of Managed Objects
for SNA NAUs 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 control of Physical Units (PUs) and Logical Units (LUs)
in an SNA environment. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1664" href="#section-1664">1664</a> Allocchio </span> Aug 94 Using the Internet DNS to Distribute
<a href="./rfc1327">RFC1327</a> Mail Address Mapping Tables
This memo defines how to store in the Internet Domain Name System the
mapping information needed by e-mail gateways and other tools to map
<a href="./rfc822">RFC822</a> domain names into X.400 O/R names and vice versa. This memo
defines an Experimental Protocol for the Internet community.
<span class="h2"><a class="selflink" id="section-1663" href="#section-1663">1663</a> Rand </span> Jul 94 PPP Reliable Transmission
This document defines a method for negotiating and using Numbered-Mode,
as defined by ISO 7776 [2], to provide a reliable serial link.
[STANDARDS-TRACK]
<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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1662" href="#section-1662">1662</a> Simpson </span> Jul 94 PPP in HDLC-Like Framing
This document describes the use of HDLC-like framing for PPP
encapsulated packets. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1661" href="#section-1661">1661</a> Simpson </span> Jul 94 The Ponit-to-Point Protocol (PPP)
This document defines the PPP organization and methodology, and the PPP
encapsulation, together with an extensible option negotiation mechanism
which is able to negotiate a rich assortment of configuration parameters
and provides additional management functions. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1660" href="#section-1660">1660</a> Stewart </span> Jul 94 Definitions of Managed Objects for
Parallel-printer-like Hardware Devices
using SMIv2
This memo defines an extension to the Management Information Base (MIB)
for use with network management protocols in the Internet community. In
particular, it defines objects for the management of Parallel-printer-
like devices. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1659" href="#section-1659">1659</a> Stewart </span> Jul 94 Definitions of Managed Objects for
RS-232-like Hardware Devices using SMIv2
This memo defines an extension to the Management Information Base (MIB)
for use with network management protocols in the Internet community. In
particular, it defines objects for the management of RS-232-like
devices. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1658" href="#section-1658">1658</a> Stewart </span> Jul 94 Definitions of Managed Objects for
Character Stream Devices using SMIv2
This memo defines an extension to the Management Information Base (MIB)
for use with network management protocols in the Internet community. In
particular, it defines objects for the management of character stream
devices. [STANDARDS-TRACK]
<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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1657" href="#section-1657">1657</a> Willis </span> Jul 94 Definitions of Managed Objects for the
Fourth Version of the Border Gateway
Protocol (BGP-4) 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 the Border
Gateway Protocol Version 4 or lower [1, 2]. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1656" href="#section-1656">1656</a> Traina </span> Jul 94 BGP-4 Protocol Document Roadmap and
Implementation Experience
Border Gateway Protocol v4 (BGP-4) [1] is an inter-Autonomous System
routing protocol. It is built on experience gained with BGP as defined
in <a href="./rfc1267">RFC-1267</a> [2] and BGP usage in the connected Internet as described in
<a href="./rfc1268">RFC-1268</a> [3]. 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-1655" href="#section-1655">1655</a> Rekhter </span> Jul 94 Application of the Border Gateway
Protocol in the Internet
This document, together with its companion document, "A Border Gateway
Protocol 4 (BGP-4)", define an inter-autonomous system routing protocol
for the Internet. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1654" href="#section-1654">1654</a> Rekhter </span> Jul 94 A Border Gateway Protocol 4 (BGP-4)
This document defines an inter-autonomous system routing protocol for
the Internet. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1653" href="#section-1653">1653</a> Klensin </span> Jul 94 SMTP Service Extension for Message Size
Declaration
This memo defines an extension to the SMTP service whereby an SMTP
client and server may interact to give the server an opportunity to
decline to accept a message (perhaps temporarily) based on the client's
estimate of the message size. [STANDARDS-TRACK]
<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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1652" href="#section-1652">1652</a> Klensin </span> Jul 94 SMTP Service Extension for
8bit-MIMEtransport
This memo defines an extension to the SMTP service whereby an SMTP
content body consisting of text containing octets outside of the US-
ASCII octet range (hex 00-7F) may be relayed using SMTP. [STANDARDS-
TRACK]
<span class="h2"><a class="selflink" id="section-1651" href="#section-1651">1651</a> Klensin </span> Jul 94 SMTP Service Extensions
This memo defines a framework for extending the SMTP service by defining
a means whereby a server SMTP can inform a client SMTP as to the service
extensions it supports. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1650" href="#section-1650">1650</a> Kastenholz </span> Aug 94 Definitions of Managed Objects for the
Ethernet-like Interface Types 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 ethernet-like objects.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1649" href="#section-1649">1649</a> Hagens </span> Jul 94 Operational Requirements for X.400
Management Domains in the GO-MHS
Community
The goal of this document is to unite regionally operated X.400 services
on the various continents into one GO-MHS Community (as seen from an
end-user's point of view). 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-1648" href="#section-1648">1648</a> Cargille </span> Jul 94 Postmaster Convention for X.400
Operations
This paper extends this concept to X.400 mail domains which have
registered <a href="./rfc1327">RFC 1327</a> mapping rules, and which therefore appear to have
normal <a href="./rfc822">RFC822</a>-style addresses. [STANDARDS-TRACK]
<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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1647" href="#section-1647">1647</a> Kelly </span> Jul 94 TN3270 Enhancements
This document describes a protocol that more fully supports 3270 devices
than do the existing tn3270 practices. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1646" href="#section-1646">1646</a> Graves </span> Jul 94 TN3270 Extensions for LUname and
Printer Selection
This document describes protocol extensions to TN3270. 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-1645" href="#section-1645">1645</a> Gwinn </span> Jul 94 Simple Network Paging Protocol -
Version 2
This RFC suggests a simple way for delivering both alphanumeric and
numeric pages (one-way) to radio paging terminals. 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-1644" href="#section-1644">1644</a> Braden </span> Jul 94 T/TCP -- TCP Extensions for Transactions
Functional Specification
This memo specifies T/TCP, an experimental TCP extension for efficient
transaction-oriented (request/response) service. This memo describes an
Experimental Protocol for the Internet community.
<span class="h2"><a class="selflink" id="section-1643" href="#section-1643">1643</a> Kastenholz </span> Jul 94 Definitions of Managed Objects for the
Ethernet-like Interface Types
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 ethernet-like objects.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1642" href="#section-1642">1642</a> Goldsmith </span> Jul 94 A Mail-Safe Transformation Format of
Unicode
This document describes a new transformation format of Unicode that
contains only 7-bit ASCII characters and is intended to be readable by
humans in the limiting case that the document consists of characters
from the US-ASCII repertoire. This memo defines an Experimental
Protocol for the Internet community.
<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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1641" href="#section-1641">1641</a> Goldsmith </span> Jul 94 Using Unicode with MIME
This document specifies the usage of Unicode within MIME. This memo
defines an Experimental Protocol for the Internet community.
<span class="h2"><a class="selflink" id="section-1640" href="#section-1640">1640</a> Crocker </span> Jun 94 The Process for Organization of Internet
Standards Working Group (POISED)
This report, originally prepared in January 1993 provides a summary of
the POISED WG, starting from the events leading to the formation of the
WG to the end of 1992. 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-1639" href="#section-1639">1639</a> Piscitello </span> Jun 94 FTP Operation Over Big Address Records
(FOOBAR)
This RFC specifies a method for assigning addresses other than 32-bit
IPv4 addresses to data ports through the specification of a "long Port
(LPRT)" command and "Long Passive (LPSV)" reply, each having as its
argument a <long-host-port>, which allows for additional address
families, variable length network addresses and variable length port
numbers. This memo defines an Experimental Protocol for the Internet
community.
<span class="h2"><a class="selflink" id="section-1638" href="#section-1638">1638</a> Baker </span> Jun 94 PPP Bridging Control Protocol (BCP)
This document defines the Network Control Protocol for establishing and
configuring Remote Bridging for PPP links. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1637" href="#section-1637">1637</a> Manning </span> Jun 94 DNS NSAP Resource Records
This document defines the format of one new Resource Record (RR) for the
DNS for domain name-to-NSAP mapping. This memo defines an Experimental
Protocol for the Internet community.
<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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1636" href="#section-1636">1636</a> Braden </span> Jun 94 Report of IAB Workshop on Security in
the Internet Architecture
This document is a report on an Internet architecture workshop,
initiated by the IAB and held at USC Information Sciences Institute on
February 8-10, 1994. This workshop generally focused on security issues
in the Internet architecture. 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-1635" href="#section-1635">1635</a> Deutsch </span> May 94 How to Use Anonymous FTP
This document provides information for the novice Internet user about
using the File Transfer Protocol (FTP). It explains what FTP is, what
anonymous FTP is, and what an anonymous FTP archive site is. 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-1634" href="#section-1634">1634</a> Allen </span> May 94 Novell IPX Over Various WAN Media
(IPXWAN)
This document describes how Novell IPX operates over various WAN media.
Specifically, it describes the common "IPX WAN" protocol Novell uses to
exchange necessary router to router information prior to exchanging
standard IPX routing information and traffic over WAN datalinks. 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-1633" href="#section-1633">1633</a> Braden </span> Jun 94 Integrated Services in the Internet
Architecture: an Overview
This memo discusses a proposed extension to the Internet architecture
and protocols to provide integrated services, i.e., to support real-time
as well as the current non-real-time service of IP. 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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1632" href="#section-1632">1632</a> Getchell </span> May 94 A Revised Catalog of Available X.500
Implementations
This document is the result of a survey that gathered new or updated
descriptions of currently available implementations of X.500, including
commercial products and openly available offerings. This document is a
revision of <a href="./rfc1292">RFC 1292</a>. 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-1631" href="#section-1631">1631</a> Egevang </span> May 94 The IP Network Address Translator (NAT)
This memo proposes another short-term solution, address reuse, that
complements CIDR or even makes it unnecessary. The address reuse
solution is to place Network Address Translators (NAT) at the borders of
stub domains. 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-1630" href="#section-1630">1630</a> Berners-Lee </span>Jun 94 Universal Resource Identifiers in WWW
This document defines the syntax used by the World-Wide Web initiative
to encode the names and addresses of objects on 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-1629" href="#section-1629">1629</a> Colella </span> May 94 Guidelines for OSI NSAP Allocation in
the Internet
This paper provides guidelines for allocating NSAP addresses in the
Internet. The guidelines provided in this paper have been the basis for
initial deployment of CLNP in the Internet, and have proven very
valuable both as an aid to scaling of CLNP routing, and for address
administration. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1628" href="#section-1628">1628</a> Case </span> May 94 UPS Management Information Base
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 uninterruptible power supply
(UPS) systems. [STANDARDS-TRACK]
<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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1627" href="#section-1627">1627</a> Lear </span> Jul 94 Network 10 Considered Harmful
(Some Practices Shouldn't be Codified)
This document restates the arguments for maintaining a unique address
space. Concerns for Internet architecture and operations, as well as
IETF procedure, are explored. 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-1626" href="#section-1626">1626</a> Atkinson </span> May 94 Default IP MTU for use over ATM AAL5
There are a number of good reasons to have a reasonably large default
MTU value for IP over ATM AAL5. This paper presents the default IP MIU
for use over ATM AAL5. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1625" href="#section-1625">1625</a> St. Pierre </span> Jun 94 WAIS over Z39.50-1988
The purpose of this memo is to initiate a discussion for a migration
path of the WAIS technology from Z39.50-1988 Information Retrieval
Service Definitions and Protocol Specification for Library Applications
[1] to Z39.50-1992 [2] and then to Z39.50-1994 [3]. 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-1624" href="#section-1624">1624</a> Rijsinghani </span>May 94 Computation of the Internet Checksum
via Incremental Update
This memo describes an updated technique for incremental computation of
the standard Internet checksum. It updates the method described in RFC
<span class="h2"><a class="selflink" id="section-1141" href="#section-1141">1141</a>. This memo provides information for the Internet community. </span>This
memo does not specify an Internet standard of any kind.
<span class="h2"><a class="selflink" id="section-1623" href="#section-1623">1623</a> Kastenholz </span> May 94 Definitions of Managed Objects for the
Ethernet-like Interface Types
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 ethernet-like objects.
[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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1622" href="#section-1622">1622</a> Francis </span> May 94 Pip Header Processing
The purpose of this RFC and the companion RFC "Pip Near-term
Architecture" are to record the ideas (good and bad) of Pip. 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-1621" href="#section-1621">1621</a> Francis </span> May 94 Pip Near-term Architecture
The purpose of this RFC and the companion RFC "Pip Header Processing"
are to record the ideas (good and bad) of Pip. 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-1620" href="#section-1620">1620</a> Braden </span> May 94 Internet Architecture Extensions for
Shared Media
This memo discusses alternative approaches to extending the Internet
architecture to eliminate some or all unnecessary hops. 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-1619" href="#section-1619">1619</a> Simpson </span> May 94 PPP over SONET/SDH
This document describes the use of PPP over Synchronous Optical Network
(SONET) and Synchronous Digital Heirarchy (SDH) circuits. [STANDARDS-
TRACK]
<span class="h2"><a class="selflink" id="section-1618" href="#section-1618">1618</a> Simpson </span> May 94 PPP over ISDN
This document describes the use of PPP over Integrated Services Digital
Network (ISDN) switched circuits. [STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1617" href="#section-1617">1617</a> Barker </span> May 94 Naming and Structuring Guidelines for
X.500 Directory Pilots
This document defines a number of naming and structuring guidelines
focused on White Pages usage. Alignment to these guidelines is
recommended for directory pilots. 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 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1616" href="#section-1616">1616</a> RARE WG-MSG </span>May 94 A report by the RARE Task Force on
X.400(1988) of the RARE Working Group on
Mail & Messaging
The report documents the results of a task force on X.400(1988)
deployment of the RARE Mails and Messaging Work Group during the period
from November 1992 until October 1993. 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-1615" href="#section-1615">1615</a> Houttuin </span> May 94 Migrating from X.400(84) to X.400(88)
This document compares X.400(88) to X.400(84) and describes what
problems can be anticipated in the migration, especially considering the
migration from the existing X.400(84) infrastructure created by the
COSINE MHS project to an X.400(88) infrastructure. 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-1614" href="#section-1614">1614</a> Adie </span> May 94 Network Access to Multimedia Information
This report summarises the requirements of research and academic network
users for network access to multimedia information. 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-1613" href="#section-1613">1613</a> Foster </span> May 94 cisco Systems X.25 over TCP (XOT)
This memo documents a method of sending X.25 packets over IP internets
by encapsulating the X.25 Packet Level in TCP packets. 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-1612" href="#section-1612">1612</a> Austein </span> May 94 DNS Resolver MIB Extensions
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 a set of extensions which instrument DNS
resolver functions. This memo was produced by the DNS working group.
[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="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1611" href="#section-1611">1611</a> Austein </span> May 94 DNS Server MIB Extensions
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 a set of extensions which instrument DNS name
server functions. This memo was produced by the DNS working group.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1610" href="#section-1610">1610</a> I.A.B </span> Jul 94 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).
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1609" href="#section-1609">1609</a> Mansfield </span> Mar 94 Charting Networks in the X.500 Directory
This document presents a model in which a communication network with all
its related details and descriptions can be represented in the X.500
Directory. This memo defines an Experimental Protocol for the Internet
community.
<span class="h2"><a class="selflink" id="section-1608" href="#section-1608">1608</a> Johannsen </span> Mar 94 Representing IP Information in the X.500
Directory
This document describes the objects necessary to include information
about IP networks and IP numbers in the X.500 Directory. It extends the
work "Charting networks in the X.500 Directory" [1] where a general
framework is presented for representing networks in the Directory by
applying it to IP networks. This memo defines an Experimental Protocol
for the Internet community.
<span class="h2"><a class="selflink" id="section-1607" href="#section-1607">1607</a> Cerf </span> Apr 94 A VIEW FROM THE 21ST CENTURY
This document is a composition of letters discussing a possible future.
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 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1606" href="#section-1606">1606</a> Onion </span> Apr 94 A Historical Perspective On The Usage Of
IP Version 9
This paper reviews the usages of the old IP version protocol. It
considers some of its successes and its failures. 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-1605" href="#section-1605">1605</a> Shakespeare </span>Apr 94 SONET to Sonnet Translation
Because Synchronous Optical Network (SONET) transmits data in frames of
bytes, it is fairly easy to envision ways to compress SONET frames to
yield higher bandwidth over a given fiber optic link. This memo
describes a particular method, SONET Over Novel English Translation
(SONNET). 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-1604" href="#section-1604">1604</a> Brown </span> Mar 94 Definitions of Managed Objects
for Frame Relay Service
This memo defines an extension to the Management Information Base (MIB)
for use with network management protocols in TCP/IP-based internets. In
particular, it defines objects for managing the Frame Relay Service.
[STANDARDS-TRACK]
<span class="h2"><a class="selflink" id="section-1603" href="#section-1603">1603</a> Huizer </span> Mar 94 IETF Working Group
Guidelines and Procedures
This document describes the guidelines and procedures for formation and
operation of IETF working groups. It describes the formal relationship
between IETF participants WG and the Internet Engineering Steering Group
(IESG). 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-1602" href="#section-1602">1602</a> I.A.B. </span> Mar 94 The Internet Standards Process --
Revision 2
This document is a revision of <a href="./rfc1310">RFC 1310</a>, which defined the official
procedures for creating and documenting Internet Standards. 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 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc1699">RFC 1699</a> Summary of 1600-1699 January 1997</span>
<span class="h2"><a class="selflink" id="section-1601" href="#section-1601">1601</a> Huitema </span> Mar 94 Charter of the Internet Architecture
Board (IAB)
This memo documents the composition, selection, roles, and organization
of the Internet Architecture Board and its subsidiary organizations.
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-1600" href="#section-1600">1600</a> I.A.B. </span> Mar 94 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).
[STANDARDS-TRACK]
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>
|