home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / id-kermit-url-00.txt < prev    next >
Text File  |  2020-01-01  |  5KB  |  146 lines

  1. Internet Engineering Task Force                           Frank da Cruz
  2. Internet Draft                                        Jeffrey E. Altman  
  3. draft-columbia-kermit-url-00.txt                    Columbia University
  4.                                                              April 2002
  5.                                                   Expires: October 2002
  6.  
  7.  
  8.                           THE KERMIT URL SCHEME
  9.  
  10. STATUS OF THIS MEMO
  11.  
  12.    This document is an Internet-Draft and is in full conformance with
  13.    all provisions of Section 10 of RFC2026.
  14.  
  15.    Internet-Drafts are working documents of the Internet Engineering
  16.    Task Force (IETF), its areas, and its working groups.  Note that
  17.    other groups may also distribute working documents as Internet-
  18.    Drafts.
  19.  
  20.    Internet-Drafts are draft documents valid for a maximum of six months
  21.    and may be updated, replaced, or obsoleted by other documents at any
  22.    time.  It is inappropriate to use Internet-Drafts as reference
  23.    material or to cite them other than as "work in progress".
  24.  
  25.    The list of current Internet-Drafts can be accessed at
  26.    http://www.ietf.org/ietf/1id-abstracts.txt
  27.  
  28.    To view the list Internet-Draft Shadow Directories, see
  29.    http://www.ietf.org/shadow.html.
  30.  
  31. ABSTRACT
  32.  
  33.    This document defines the Kermit URL according to the rules of
  34.    RFC 2717.
  35.  
  36. 1. URL SCHEME NAME
  37.  
  38.    The scheme name is "kermit".
  39.  
  40. 2. URL SCHEME SYNTAX
  41.  
  42.    The Kermit URL scheme is used to fetch files from Internet hosts
  43.    using the Kermit protocol [1].
  44.  
  45.    Kermit URLs follow the common Internet scheme syntax described in
  46.    Section 3.1 of RFC 1738 [2]. If ":<port>" is omitted, the port
  47.    defaults to 1649 (as registered by IANA).  A username and password
  48.    may be included.  If none is included, anonymous access as is used,
  49.    exactly as in FTP.   Examples:
  50.  
  51.    Anonymous retrieval of a file:
  52.      kermit://kermit.columbia.edu/READ.ME
  53.  
  54.    Authenticated retrieval of a file:
  55.      kermit://olga:secret@xyzcorp.com/somepath/oofa.txt
  56.  
  57.    Authenticated retrieval of multiple files:
  58.      kermit://olga:secret@xyzcorp.com/somepath/*.[ch]
  59.  
  60.    Secure authenticated retrieval of a file:
  61.      kermit://olga@xyzcorp.com/somepath/oofa.txt
  62.  
  63.    In the latter case, authentication is performed by whatever security
  64.    scheme the server and client negotiate [1].
  65.  
  66. 3. CHARACTER ENCODING CONSIDERATIONS
  67.  
  68.    File and pathnames may be US ASCII (ISO 646 International Reference
  69.    Version) or UTF-8.  UTF-8 names are converted into the native character
  70.    set of the server.  For text-mode transfers, file record format and
  71.    character set are converted according to normal Kermit rules and
  72.    procedures.
  73.  
  74. 4. INTENDED USAGE
  75.  
  76.    The specified file or files are retrieved from the host using Kermit
  77.    protocol.  Text files are sent in text mode, binary files in binary
  78.    mode, as determined automatically by the server.
  79.  
  80. 5. INTEROPERABILITY
  81.  
  82.    Any Telnet client that supports Kermit protocol and the Telnet KERMIT
  83.    Option [3] may use the Internet Kermit Service.  Any such Telnet client
  84.    that can accept URLs on the command line (such as C-Kermit and Kermit 95)
  85.    can serve as users of or helper applications for kermit URLs.
  86.  
  87. 6. SECURITY
  88.  
  89.    Refer to [1].  No new security issues are raised by the use of this URL.
  90.  
  91. 7. AUTHORS' ADDRESS
  92.  
  93.    Frank da Cruz
  94.    fdc@columbia.edu
  95.  
  96.    Jeffrey E. Altman
  97.    jaltman@columbia.edu
  98.  
  99.    The Kermit Project
  100.    Columbia University
  101.    612 West 115th Street
  102.    New York NY 10025-7799
  103.    USA
  104.    http://www.columbia.edu/kermit/
  105.  
  106. 8. BIBLIOGRAPHY
  107.  
  108.    [1] da Cruz, F, and J. Altman, "Internet Kermit Service", Request for
  109.    Comments 2839, Internet Engineering Task Force, May 2000.
  110.  
  111.    [2] T. Berners-Lee, L. Masinter, and M. McCahill, "Uniform resource
  112.    locators (URL)," Request for Comments 1738, Internet Engineering Task
  113.    Force, Dec.  1994.
  114.  
  115.    [3] Altman, J., and F. da Cruz, "Telnet Kermit Option",
  116.    Request for Comments 2840, Internet Engineering Task Force, May 2000.
  117.  
  118.    Full Copyright Statement
  119.  
  120.    Copyright (c) The Internet Society (2002). All Rights Reserved.
  121.  
  122.    This document and translations of it may be copied and furnished to
  123.    others, and derivative works that comment on or otherwise explain it
  124.    or assist in its implementation may be prepared, copied, published
  125.    and distributed, in whole or in part, without restriction of any
  126.    kind, provided that the above copyright notice and this paragraph are
  127.    included on all such copies and derivative works. However, this
  128.    document itself may not be modified in any way, such as by removing
  129.    the copyright notice or references to the Internet Society or other
  130.    Internet organizations, except as needed for the purpose of
  131.    developing Internet standards in which case the procedures for
  132.    copyrights defined in the Internet Standards process must be
  133.    followed, or as required to translate it into languages other than
  134.    English.
  135.  
  136.    The limited permissions granted above are perpetual and will not be
  137.    revoked by the Internet Society or its successors or assigns.
  138.  
  139.    This document and the information contained herein is provided on an
  140.    "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
  141.    TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
  142.    BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
  143.    HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
  144.    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  145.  
  146.