⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rfc1700.txt

📁 著名的RFC文档,其中有一些文档是已经翻译成中文的的.
💻 TXT
📖 第 1 页 / 共 5 页
字号:
Network Working Group                                        J. ReynoldsRequest for Comments: 1700                                     J. PostelSTD: 2                                                               ISIObsoletes RFCs: 1340, 1060, 1010, 990, 960,                 October 1994943, 923, 900, 870, 820, 790, 776, 770,762, 758,755, 750, 739, 604, 503, 433, 349Obsoletes IENs: 127, 117, 93Category: Standards Track                            ASSIGNED NUMBERSStatus of this Memo   This memo is a status report on the parameters (i.e., numbers and   keywords) used in protocols in the Internet community.  Distribution   of this memo is unlimited.OVERVIEWThis RFC is a snapshot of the ongoing process of the assignment ofprotocol parameters for the Internet protocol suite.  To make thecurrent information readily available the assignments are kept up-to-date in a set of online text files.  This RFC has been assembled bycatinating these files together with a minimum of formatting "glue".The authors appologize for the somewhat rougher formatting and stylethan is typical of most RFCs.We expect that various readers will notice specific items that should becorrected.  Please send any specific corrections via email to<iana@isi.edu>.Reynolds & Postel                                               [Page 1]RFC 1700                    Assigned Numbers                October 1994INTRODUCTIONThe files in this directory document the currently assigned values forseveral series of numbers used in network protocol implementations.        ftp://ftp.isi.edu/in-notes/iana/assignmentsThe Internet Assigned Numbers Authority (IANA) is the centralcoordinator for the assignment of unique parameter values for Internetprotocols.  The IANA is chartered by the Internet Society (ISOC) andthe Federal Network Council (FNC) to act as the clearinghouse toassign and coordinate the use of numerous Internet protocolparameters.The Internet protocol suite, as defined by the Internet EngineeringTask Force (IETF) and its steering group (the IESG), contains numerousparameters, such as internet addresses, domain names, autonomoussystem numbers (used in some routing protocols), protocol numbers,port numbers, management information base object identifiers,including private enterprise numbers, and many others.The common use of the Internet protocols by the Internet communityrequires that the particular values used in these parameter fields beassigned uniquely.  It is the task of the IANA to make those uniqueassignments as requested and to maintain a registry of the currentlyassigned values.Requests for parameter assignments (protocols, ports, etc.) should besent to <iana@isi.edu>.Requests for SNMP network management private enterprise numberassignments should be sent to <iana-mib@isi.edu>.The IANA is located at and operated by the Information SciencesInstitute (ISI) of the University of Southern California (USC).If you are developing a protocol or application that will require theuse of a link, socket, port, protocol, etc., please contact the IANAto receive a number assignment.        Joyce K. Reynolds        Internet Assigned Numbers Authority        USC - Information Sciences Institute        4676 Admiralty Way        Marina del Rey, California  90292-6695        Electronic mail: IANA@ISI.EDU        Phone: +1 310-822-1511Reynolds & Postel                                               [Page 2]RFC 1700                    Assigned Numbers                October 1994Most of the protocols are documented in the RFC series of notes.  Someof the items listed are undocumented.  Further information onprotocols can be found in the memo, "Internet Official ProtocolStandards" (STD 1).Data NotationsThe convention in the documentation of Internet Protocols is toexpress numbers in decimal and to picture data in "big-endian" order[COHEN].  That is, fields are described left to right, with the mostsignificant octet on the left and the least significant octet on theright.The order of transmission of the header and data described in thisdocument is resolved to the octet level.  Whenever a diagram shows agroup of octets, the order of transmission of those octets is thenormal order in which they are read in English.  For example, in thefollowing diagram the octets are transmitted in the order they arenumbered.    0                   1                   2                   3    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+   |       1       |       2       |       3       |       4       |   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+   |       5       |       6       |       7       |       8       |   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+   |       9       |      10       |      11       |      12       |   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+                       Transmission Order of BytesWhenever an octet represents a numeric quantity the left most bit in thediagram is the high order or most significant bit.  That is, the bitlabeled 0 is the most significant bit.  For example, the followingdiagram represents the value 170 (decimal).                          0 1 2 3 4 5 6 7                         +-+-+-+-+-+-+-+-+                         |1 0 1 0 1 0 1 0|                         +-+-+-+-+-+-+-+-+                        Significance of BitsSimilarly, whenever a multi-octet field represents a numeric quantitythe left most bit of the whole field is the most significant bit.  WhenReynolds & Postel                                               [Page 3]RFC 1700                    Assigned Numbers                October 1994a multi-octet quantity is transmitted the most significant octet istransmitted first.Special AddressesThere are five classes of IP addresses: Class A through Class E.  Ofthese, Classes A, B, and C are used for unicast addresses, Class D isused for multicast addresses, and Class E addresses are reserved forfuture use.With the advent of classless addressing [CIDR1, CIDR2], thenetwork-number part of an address may be of any length, and the wholenotion of address classes becomes less important.There are certain special cases for IP addresses.  These special casescan be concisely summarized using the earlier notation for an IPaddress:      IP-address ::=  { <Network-number>, <Host-number> }         or      IP-address ::=  { <Network-number>, <Subnet-number>,                                                      <Host-number> }if we also use the notation "-1" to mean the field contains all 1bits.  Some common special cases are as follows:      (a)   {0, 0}         This host on this network.  Can only be used as a source         address (see note later).      (b)   {0, <Host-number>}         Specified host on this network.  Can only be used as a         source address.      (c)   { -1, -1}         Limited broadcast.  Can only be used as a destination         address, and a datagram with this address must never be         forwarded outside the (sub-)net of the source.      (d)   {<Network-number>, -1}         Directed broadcast to specified network.  Can only be used         as a destination address.Reynolds & Postel                                               [Page 4]RFC 1700                    Assigned Numbers                October 1994      (e)   {<Network-number>, <Subnet-number>, -1}         Directed broadcast to specified subnet.  Can only be used as         a destination address.      (f)   {<Network-number>, -1, -1}         Directed broadcast to all subnets of specified subnetted         network.  Can only be used as a destination address.      (g)   {127, <any>}         Internal host loopback address.  Should never appear outside         a host.REFERENCES[COHEN]   Cohen, D., "On Holy Wars and a Plea for Peace", IEEE Computer          Magazine, October 1981.[CIDR1]   Fuller, V., T. Li, J. Yu, and K. Varadhan, "Classless          Inter-Domain Routing (CIDR): an Address Assignment and          Aggregation Strategy", RFC 1519, September 1993.[CIDR2]   Rekhter, Y., and T. Li, "An Architecture for IP Address          Allocation with CIDR", RFC 1518, September 1993.[]URL = ftp://ftp.isi.edu/in-notes/iana/assignments/introductionReynolds & Postel                                               [Page 5]RFC 1700                    Assigned Numbers                October 1994VERSION NUMBERSIn the Internet Protocol (IP) [RFC791] there is a field to identifythe version of the internetwork general protocol.  This field is 4bits in size.Assigned Internet Version NumbersDecimal   Keyword    Version                            References-------   -------    -------                            ----------    0                Reserved                                [JBP]  1-3                Unassigned                              [JBP]    4       IP       Internet Protocol                [RFC791,JBP]    5       ST       ST Datagram Mode                [RFC1190,JWF]    6       SIP      Simple Internet Protocol                [RH6]    7       TP/IX    TP/IX: The Next Internet                [RXU]    8       PIP      The P Internet Protocol                 [PXF]    9       TUBA     TUBA                                    [RXC]10-14                Unassigned                              [JBP]   15                Reserved                                [JBP]REFERENCES[RFC791] Postel, J., ed., "Internet Protocol - DARPA Internet Program         Protocol Specification", STD 5, RFC 791, USC/Information         Sciences Institute, September 1981.[RFC1190] Topolcic, C., Editor, "Experimental Internet Stream          Protocol, Version 2 (ST-II)", RFC 1190, CIP Working Group,          October 1990.PEOPLE[JPB] Jon Postel <postel@isi.edu>[JWF] Jim Forgie <FORGIE@XN.LL.MIT.ED>[RH6] Robert Hinden <Hinden@ENG.SUN.COM>[RXU] Robert Ullmann <ariel@world.std.com>[PXF] Paul Francis <francis@cactus.ntt.jp>[RXC] Ross Callon <callon@wellfleet.com>[]Reynolds & Postel                                               [Page 6]RFC 1700                    Assigned Numbers                October 1994URL = ftp://ftp.isi.edu/in-notes/iana/assignments/version-numbers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -