home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc0953.txt < prev    next >
Text File  |  1996-05-07  |  9KB  |  191 lines

  1. Network Working Group                               K. Harrenstien (SRI) Request for Comments: 953                                 M. Stahl (SRI) Obsoletes:  RFC 811                                     E. Feinler (SRI)                                                             October 1985 
  2.  
  3.                             HOSTNAME SERVER 
  4.  
  5.  STATUS OF THIS MEMO 
  6.  
  7.    This RFC is the official specification of the Hostname Server    Protocol.  This edition of the specification includes minor revisions    to RFC 811 which brings it up to date.  Distribution of this memo is    unlimited. 
  8.  
  9. INTRODUCTION 
  10.  
  11.    The NIC Internet Hostname Server is a TCP-based host information    program and protocol running on the SRI-NIC machine.  It is one of a    series of internet name services maintained by the DDN Network    Information Center (NIC) at SRI International on behalf of the    Defense Communications Agency (DCA).  The function of this particular    server is to deliver machine-readable name/address information    describing networks, gateways, hosts, and eventually domains, within    the internet environment.  As currently implemented, the server    provides the information outlined in the DoD Internet Host Table    Specification [See RFC-952].  For a discussion of future developments    see also RFC-921 concerning the Domain Name System. 
  12.  
  13. PROTOCOL 
  14.  
  15.    To access this server from a program, establish a TCP connection to    port 101 (decimal) at the service host, SRI-NIC.ARPA (26.0.0.73 or    10.0.0.51).  Send the information request (a single line), and read    the resulting response.  The connection is closed by the server upon    completion of the response, so only one request can be made for each    connection. 
  16.  
  17. QUERY/RESPONSE FORMAT 
  18.  
  19.    The name server accepts simple text query requests of the form 
  20.  
  21.       <command key> <argument(s)> [<options>] 
  22.  
  23.    where square brackets ("[]") indicate an optional field.  The command    key is a keyword indicating the nature of the request.  The defined    keys are explained below. 
  24.  
  25.    The response, on the other hand, is of the form 
  26.  
  27.       <response key> : <rest of response> 
  28.  
  29.  Harrenstien & Stahl & Feinler                                   [Page 1] 
  30.  
  31.  
  32.  RFC 953                                                     October 1985 Hostname Server 
  33.  
  34.     where <response key> is a keyword indicating the nature of the    response, and the rest of the response is interpreted in the context    of the key. 
  35.  
  36.    NOTE:  Care should be taken to interpret the nature of the reply    (e.g, single record or multiple record), so that no confusion about    the state of the reply results.  An "ALL" request will likely return    several hundred or more records of all types, whereas "HNAME" or    "HADDR" will usually return one HOST record. 
  37.  
  38. COMMAND/RESPONSE KEYS 
  39.  
  40.    The currently defined command keywords are listed below.  NOTE:    Because the server and the features available will evolve with time,    the HELP command should be used to obtain the most recent summary of    implemented features, changes, or new commands. 
  41.  
  42.       Keyword   Response 
  43.  
  44.       HELP      This information. 
  45.  
  46.       VERSION   "VERSION: <string>" where <string> will be different for                 each version of the host table. 
  47.  
  48.       HNAME <hostname>                 One or more matching host table entries. 
  49.  
  50.       HADDR <hostaddr>                 One or more matching host table entries. 
  51.  
  52.       ALL       The entire host table. 
  53.  
  54.       ALL-OLD   The entire host table without domain style names. 
  55.  
  56.       DOMAINS   The entire top-level domain table (domains only). 
  57.  
  58.       ALL-DOM   Both the entire domain table and the host table. 
  59.  
  60.       ALL-INGWAY                 All known gateways in TENEX/TOPS-20 INTERNET.GATEWAYS                 format. 
  61.  
  62.    Remember that the server accepts only a single command line and    returns only a single response before closing the connection.  HNAME    and HADDR are useful for looking up a specific host by name or    address; VERSION can be used by automated processes to see whether a    "new" version of the host table exists without having to transfer the 
  63.  
  64.  Harrenstien & Stahl & Feinler                                   [Page 2] 
  65.  
  66.  
  67.  RFC 953                                                     October 1985 Hostname Server 
  68.  
  69.     whole table.  Note, however, that the returned version string is only    guaranteed to be unique to each version, and nothing should currently    be assumed about its format. 
  70.  
  71.    Response Keys: 
  72.  
  73.       ERR       entry not found, nature of error follows       NET       entry found, rest of entry follows       GATEWAY   entry found, rest of entry follows       HOST      entry found, rest of entry follows       DOMAIN    entry found, rest of entry follows       BEGIN     followed by multiple entries       END       done with BEGIN block of entries 
  74.  
  75.    More keywords will be added as new needs are recognized.  A more    detailed description of the allowed requests/responses follows. 
  76.  
  77. QUERY/RESPONSE EXAMPLES 
  78.  
  79.    1. HNAME Query - Given a name, find the entry or entries that match    the name.  For example: 
  80.  
  81.       HNAME SRI-NIC.ARPA <CRLF> 
  82.  
  83.          where <CRLF> is a carriage return/ linefeed, and 'SRI-NIC.ARPA'          is a host name 
  84.  
  85.       The likely response is: 
  86.  
  87.       HOST : 26.0.0.73, 10.0.0.51 : SRI-NIC.ARPA,SRI-NIC,NIC :              DEC-2060 : TOPS20 : TCP/TELNET,TCP/SMTP,TCP/TIME,TCP/FTP,              TCP/ECHO,ICMP : 
  88.  
  89.       A response may stretch across more than one line.  Continuation       lines always begin with at least one space. 
  90.  
  91.    2. HADDR Query - Given an internet address (as specified in RFC 796)    find the entry or entries that match that address. For example: 
  92.  
  93.       HADDR 26.0.0.73 <CRLF> 
  94.  
  95.          where <CRLF> is a carriage return/ linefeed, and '26.0.0.73' is          a host address. 
  96.  
  97.       The likely response is the same as for the previous HNAME request. 
  98.  
  99.  
  100.  
  101.  Harrenstien & Stahl & Feinler                                   [Page 3] 
  102.  
  103.  
  104.  RFC 953                                                     October 1985 Hostname Server 
  105.  
  106.     3. ALL Query - Deliver the entire internet host table in a    machine-readable form.  For example: 
  107.  
  108.       ALL <CRLF>   ;where <CRLF> is a carriage return/linefeed 
  109.  
  110.       The likely response is the keyword 'BEGIN' followed by a colon       ':', followed by the entire internet host table in the format       specified in RFC-952, followed by 'END:'. 
  111.  
  112. ERROR HANDLING 
  113.  
  114.    ERR Reply - may occur on any query, and should be permitted in any    access program using the name server.  Errors are of the form 
  115.  
  116.       ERR : <code> : <string> :         as in       ERR : NAMNFD : Name not found : 
  117.  
  118.    The error code is a unique descriptor, limited to 8 characters in    length for any given error.  It may be used by the access program to    identify the error and, in some cases, to handle it automatically.    The string is an accompanying message for a given error for that case    where the access program simply logs the error message.  Current    codes and their associated interpretations are 
  119.  
  120.       NAMNFD    Name not found; name not in table       ADRNFD    Address not found; address not in table       ILLCOM    Illegal command; command key not recognized       TMPSYS    Temporary system failure, try again later 
  121.  
  122. REFERENCES 
  123.  
  124.    1. Harrenstien, K., Stahl, M., and Feinler, E., "Official DoD       Internet Host Table Specification," RFC-952, DDN Network       Information Center, SRI International, October 1985. 
  125.  
  126.    2. Pickens, J., Feinler, E., and Mathis, J., "The NIC Name Server," A       Datagram-based Information Utility, RFC-756, Network Information       Center, SRI International, July 1979. 
  127.  
  128.    3. Postel, J., "Address Mappings," RFC-796, Information Sciences       Institute, University of Southern California, Marina del Rey,       September 1981. 
  129.  
  130.    4. Postel, J., "Domain Name System Implementation Schedule", RFC-921,       Information Sciences Institute, University of Southern California,       Marina del Rey, October 1984. 
  131.  
  132.  Harrenstien & Stahl & Feinler                                   [Page 4] 
  133.  
  134.  
  135.  RFC 953                                                     October 1985 Hostname Server 
  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. Harrenstien & Stahl & Feinler                                   [Page 5] 
  188.  
  189.  
  190.  
  191.