telnet.txt
上传用户:dufan58
上传日期:2007-01-05
资源大小:3407k
文件大小:41k
源码类别:

通讯/手机编程

开发平台:

Windows_Unix

  1. TELNET FUNCTIONALITY FOR C-KERMIT 7.0 AND KERMIT 95 1.1.19
  2.   Jeffrey Altman
  3.   The Kermit Project
  4.   Columbia University
  5. Most recent update: Tue Jan  30, 2000
  6. CONTENTS
  7.   1. INTRODUCTION
  8.   2. SUPPORTED TELNET OPTIONS
  9.   3. TELNET OPTION MANAGEMENT
  10.   4. TELNET COMMAND SUMMARY
  11.   5. DIAGNOSING AND FIXING PROBLEMS CONNECTING TO TELNET SERVERS
  12. 1. INTRODUCTION
  13. The Telnet protocol is one of the original protocols developed for the 
  14. ARPAnet, the precursor to today's Internet.  Telnet has evolved since 
  15. the early 1970s due to the extensibility provided by its "option" model.
  16. To quote RFC854:
  17.    "The purpose of the TELNET Protocol is to provide a fairly general,
  18.    bi-directional, eight-bit byte oriented communications facility.  Its
  19.    primary goal is to allow a standard method of interfacing terminal
  20.    devices and terminal-oriented processes to each other.  It is
  21.    envisioned that the protocol may also be used for terminal-terminal
  22.    communication ("linking") and process-process communication
  23.    (distributed computation)."
  24. Not so long ago the requirements for a Telnet client were fairly minimal:
  25. support echo management, window size notification, terminal type negotiation,
  26. and perhaps the transmission of environment variables from the client to the
  27. server.  Option negotiations were not time sensitive nor were they
  28. interdependent.  Everyone was happy as long as each option specification was
  29. followed and infinite negotiation loops were avoided.
  30. This simplicity began to change with the introduction of telnet options 
  31. that provide for mutual authentication, data encryption, transport layer 
  32. security, and synchronization of remote processes.  The new options have order
  33. and timing dependencies that require increased sophistication from both client
  34. and server even though the original Telnet protocol specification did not 
  35. change.
  36. Prior to C-Kermit 7.0 and K95 1.1.18, Kermit implemented Telnet protocol by
  37. opening a connection to the host and then transmitting the options that it
  38. supported.  What happened next was determined by how the connection was being
  39. used.  If the user told Kermit to:
  40.   TELNET <host>
  41. then, immediately after the telnet options were transmitted, the terminal
  42. emulator started and began reading the incoming data.  The rest of the Telnet
  43. protocol implementation was purely reactive (with minor exceptions such as
  44. window-size changes): when a Telnet option was received it would be processed
  45. and a response sent if necessary.
  46. However, if the user said:
  47.   SET HOST <host>
  48. then, after the telnet options were transmitted, Kermit would wait for the
  49. next command from the user.  If a CONNECT command was next the behavior would
  50. be the same as for TELNET <host>.  However, if Kermit was executing a script
  51. containing a series of INPUT and OUTPUT commands, the incoming telnet option
  52. negotiations would be processed while waiting for INPUT.
  53. This was adequate when there were no ordering or timing requirements for the
  54. Telnet negotiations.  But with the introduction of authentication,
  55. encryption, transport-layer security, and the Kermit option for managing the
  56. states of the Kermit server on both the workstation and host (see iksd.txt),
  57. it is necessary for Telnet negotiations to take place before the TELNET
  58. command enters the terminal emulator or the SET HOST command completes and
  59. allows any subsequent INPUT and OUTPUT commands to execute.
  60. The timing requirements for the telnet options supported by Kermit are as
  61. follows:
  62.  . START_TLS (Transport Layer Security) must be negotiated or refused before
  63.    any other option.
  64.  . AUTH (Authentication) must be negotiated or refused before ENCRYPT.  AUTH
  65.    must also be negotiated before the login process is initiated.
  66.  . ENCRYPT (Encryption) must be negotiated/refused in both directions before
  67.    it is safe to transmit any data that might be considered private, including
  68.    Telnet options such as terminal type, location, xdisplay, or environment
  69.    variables.  ENCRYPT may not be negotiated if START_TLS has been negotiated
  70.    or if AUTH has not been.
  71.  . KERMIT (Internet Kermit Service) must wait for a response to any request
  72.    for the peer to either turn on or off the Kermit Server capabilities in
  73.    order to facilitate automatic uploading or downloading of files or
  74.    processing of remote commands.
  75.  . NEW_ENV (Transmission of Environment Variables to the Host) must be 
  76.    negotiated before the login process is initiated if the USER variable
  77.    is to be requested from the client.
  78. The result is that Kermit must, to the best of its ability, attempt to
  79. process all of the above options before TELNET enters CONNECT mode or SET
  80. HOST completes to process the next command.  Therefore it might take Kermit
  81. longer to make a connection to a host than before.
  82. The reality is actually far different.  Even if the CONNECT mode or first
  83. INPUT command was executed sooner no user data could be received until the
  84. Telnet negotiations were complete.  In addition, the timing of the initial
  85. INPUT command used to require that the length of time it takes to process the
  86. Telnet negotiations be factored in.  This is no longer necessary and was
  87. inappropriate in the first place.  A login script should not have to be
  88. modified for different connection types; the telnet negotiations should be
  89. transparent to the script.  In C-Kermit 7.0 and Kermit 95 1.1.18 they are.
  90. 2. SUPPORTED TELNET OPTIONS
  91. BINARY (Binary Transmission Mode)                  [RFC  856]
  92. When a telnet session is initiated, the connection is in Network Virtual
  93. Terminal (NVT) mode.  NVT mode provides for special treatment of the carriage
  94. return (CR) control character to provide for deterministic parsing of the
  95. input stream.  Every CR that is transmitted must be followed by a line feed
  96. (LF) control character or a NUL control character.  This enables an NVT to
  97. distiguish between the Carriage Return function and the End of Line indicator.
  98. This works fine for textual data.  But in transmission of random binary data
  99. there is the possibility that the sequence CR NUL might be misinterpreted.
  100. Binary mode removes the ambiguity by removing the requirement that 
  101. CR be followed by either LF or NUL.  It is negotiatied separately
  102. in each direction of data transmission.  Binary transmission mode is
  103. not required for transferring files with Kermit protocol but it might be
  104. required when transfering files with Xmodem, Ymodem, or Zmodem.
  105. Binary mode is one of the most frequently misimplemented telnet options.
  106. Many implementation will negotiate Binary mode in only one direction
  107. but apply it in both.  Kermit provides workarounds for
  108. these problems with its SET TELNET BUG BINARY-ME-MEANS-U-TOO and 
  109. SET TELNET BUG BINARY-U-MEANS-ME-TOO commands.
  110. Kermit also provides the SET TELNET BINARY-TRANSFER-MODE command to
  111. automatically enter binary mode at the start of a file transfer
  112. and return to NVT mode when the transfer is completed.
  113. ECHO (Echo Mode)                                   [RFC  857] 
  114. When a telnet session is initiated, data is not echoed by the receiver.
  115. This means that a telnet client must echo each character locally as
  116. it is being sent to the host.  While this reduces network traffic it 
  117. can cause problems with terminal emulation and echoing of sensitive data.
  118. The echo option allows the each side to specify that it intends to 
  119. echo the data that it receives.  Normally this would be used to negotiate
  120. that the server should echo the data it receives from the client.  While it
  121. is possible for the client to state that it will echo the data received
  122. from the server this makes no sense and if negotiatied could result in
  123. an infinite loop of a single character being echoed back and forth.
  124. As a piece of telnet trivia, the BSD 4.2 telnet client would echo 
  125. incoming data sent by the server if the host requested it.  Kermit
  126. will always respond WONT ECHO to a DO ECHO request when it is the client.
  127. SUPPRESS GO AHEAD (Suppress Go Ahead commands)     [RFC  858]
  128. When a telnet session is initiated, all data transmitted by the sender is to
  129. be followed by a Go Ahead (GA) command sequence.  This is to enable telnet to
  130. be used over half-duplex (two-way alternate) connections, and it gives the
  131. telnet partner permission to transmit.  But to our knowledge, all telnet
  132. sessions used over the Internet are full duplex connections.  The Suppress Go
  133. Ahead (SGA) option is negotiated in both directions to suppress the
  134. transmission of the GA commands and treat the connection as full duplex
  135. (two-way simultaneous).
  136. LOGOUT (Logout user from host)                     [RFC  727]
  137. Some operating systems such as VMS support the notion of a login session
  138. that can continue across separate telnet connections.  If a telnet 
  139. connection is prematurely interrupted by a network failure, the user
  140. may reconnect to a pre-existing session on their next login attempt.
  141. The Telnet Logout option is sent by the telnet client just before the
  142. tcp/ip socket is closed to indicate to the host that the connection is
  143. being intentionally terminated by the user and is not being closed
  144. due to a network error.
  145. SEND LOCATION (Send Terminal Location)             [RFC  779]
  146. The Send Location option provides the host with a method for requesting
  147. the location of the telnet client.  When a location string has been
  148. specified with the SET TELNET LOCATION command, Kermit transmits
  149. this string to the host upon request.
  150. TERMINAL TYPE (Negotiate Terminal Type)            [RFC 1091]
  151. The Terminal Type option allows the client and server to 
  152. agree to a common terminal type that they both support.  C-Kermit
  153. reports the value of the local TERM environment variable.  Since Kermit 95
  154. supports more than 30 terminal types, it continues to offer additional
  155. terminal tyeps to the host until the host accepts one.
  156. NAWS (Negotiate About Window Size)                 [RFC 1073]
  157. The Negotiate About Windows Size (NAWS) lets the client report its current
  158. Window size to the host.  Every time the client's window size changes, the new
  159. size is reported to the host automatically.  It is not possible for the host
  160. to report a window size to the client.
  161. XDISPLOC (Report X Window Display location)        [RFC 1096]
  162. The X Windows display option is used to report to the host the address
  163. of the local X Windows Server.  Kermit sends the contents of the
  164. local DISPLAY environment variable or the string specified by the
  165. SET TELNET ENVIRONMENT DISPLAY command.  
  166. AUTHENTICATION (Authenticate end user to host)     [Internet-Draft]
  167. The AUTHENTICATION option is used to determine which if any authentication
  168. method such as Kerberos 4, Kerberos 5, Secure Remote Password, etc, should
  169. be used to authenticate the user to the host.
  170. ENCRYPTION (Encrypt session)                       [Internet-Draft]
  171. The ENCRYPTION option is used in conjunction with the AUTHENTICATE option
  172. to encrypt all the data transmitted during the session.  The ENCRYPTION
  173. option must be negotiated separately in each direction.
  174. NEW ENVIRONMENT (Report Environment to host)       [RFC 1572]
  175. The NEW ENVIRONMENT option is used by the client to reply to requests 
  176. from the server for either all or specified environment variables such
  177. as DISPLAY, USERNAME, ACCOUNT, JOB, PRINTER, and SYSTEMTYPE.  When the
  178. NEW ENVIRONMENT option is used to transmit the username, many telnet 
  179. servers skip their login or username prompt and go directly to the 
  180. password prompt.
  181. START TLS (Transmit Telnet over TLS)               [Internet-Draft]
  182. The START TLS option is used by the client and server to determine whether the
  183. telnet session should be restarted after first establishing a TLSv1 session.
  184. TLS provides strong encryption and optionally authenticates the client and the
  185. server using X.509 certificates.  START_TLS can be used with the AUTHENTICATE
  186. option.  When negotiatied START_TLS replaces the ENCRYPTION option.
  187. KERMIT (Synchronize Kermit File Transfers)         [Internet-Draft]
  188. The Kermit option (invented by the Kermit Project) is designed to 
  189. allow a Kermit file-transfer client and a Kermit server to synchronize
  190. their operations.  This allows a change in "mode" of the server to
  191. automatically switch the client into the complementary mode, and vice
  192. versa.
  193. FORWARD X (Transmit X Windows data over Telnet)    [Internet-Draft]
  194. The FORWARD X option (invented by the Kermit Project) allows the
  195. telnet server to redirect all output from X Windows clients and 
  196. transmit it across to telnet connection.  The telnet client then
  197. forwards the data to the local X Windows server.  When the telnet
  198. connection is encrypted, both the telnet data and X Windows session data
  199. are protected.
  200. 3. TELNET OPTION MANAGEMENT
  201. One of the benefits of processing all the Telnet options during the SET HOST
  202. and TELNET commands is that it is now possible to configure policy 
  203. requirements for a valid connection.  This capability is necessary when the
  204. connection must be secure (authenticated and encrypted) or else fail.  
  205. Policies are specified with the new command:
  206.   SET TELOPT [ <switch> ] <option> <local-mode>
  207.   SET TELOPT [ <switch> ] <option> <remote-mode>
  208.   SET TELOPT [ <switch> ] <option> <local-mode> <remote-mode>
  209. Which of the SET TELOPT command forms is used is dependent on the telnet 
  210. option.  Some options, such as authentication, terminal type and window size, 
  211. are negotiated in one direction and others, such as binary, encryption and 
  212. kermit are negotiated separately in each direction.  For each option, the
  213. mode can be:
  214. ACCEPTED
  215.   Kermit does not offer the option but if the peer requests it
  216.   Kermit agrees to use it.
  217. REFUSED
  218.   Kermit does not offer the option and if the peer requests it
  219.   Kermit refuses to use it.
  220. REQUESTED
  221.   Kermit requests the option but agrees not to use it if the peer
  222.   refuses it.
  223. REQUIRED
  224.   Kermit requests the option and terminates the connection if
  225.   the peer refuses it.
  226. The optional <switch> can be:
  227. /CLIENT
  228.   Specifies that the command is being used to set the configuration for when 
  229.   Kermit is the Telnet client.  This is the default when Kermit is not acting
  230.   as an Internet Kermit Service.
  231. /SERVER
  232.   Specifies that the command is being used to set the configuration
  233.   for when Kermit is the Telnet server.  Kermit is a telnet server when it
  234.   is accepting incoming connections with SET HOST * or when it is acting as
  235.   an Internet Kermit Service.  This is the default when Kermit is acting as 
  236.   an Internet Kermit Service.
  237. The options that can be configured and their default settings, as viewed by
  238. SHOW TELOPT, are:
  239.        Telnet Option  Me (client)   U (client)  Me (server)   U (server)
  240.               BINARY     ACCEPTED     ACCEPTED     ACCEPTED     ACCEPTED
  241.                              WONT         WONT
  242.                 ECHO      REFUSED     ACCEPTED    REQUESTED      REFUSED
  243.                              WONT         WONT
  244.    SUPPRESS-GO-AHEAD     ACCEPTED     ACCEPTED    REQUESTED    REQUESTED
  245.                              WONT         WONT
  246.        SEND-LOCATION    REQUESTED      REFUSED      REFUSED      REFUSED
  247.                              WONT         WONT
  248.        TERMINAL-TYPE    REQUESTED      REFUSED      REFUSED    REQUESTED
  249.                              WONT         WONT
  250.                 NAWS    REQUESTED      REFUSED      REFUSED    REQUESTED
  251.                              WONT         WONT
  252.             XDISPLOC      REFUSED      REFUSED      REFUSED      REFUSED
  253.                              WONT         WONT
  254.       AUTHENTICATION    REQUESTED      REFUSED      REFUSED    REQUESTED
  255.                              WONT         WONT
  256.           ENCRYPTION    REQUESTED    REQUESTED    REQUESTED    REQUESTED
  257.                              WONT         WONT
  258.      NEW-ENVIRONMENT    REQUESTED      REFUSED      REFUSED    REQUESTED
  259.                              WONT         WONT
  260.            start-tls     ACCEPTED      REFUSED      REFUSED    REQUESTED
  261.                              WONT         WONT
  262.               kermit    REQUESTED    REQUESTED    REQUESTED    REQUESTED
  263.                              WONT         WONT
  264.            forward-X      REFUSED     ACCEPTED      REFUSED      REFUSED
  265.                              WONT         WONT
  266. The second line listed for each option shows the currently negotiated state
  267. of the option for the current connection.
  268. The SET TELOPT command should be used instead of the older commands:
  269.   SET TELNET AUTHENTICATION { ACCEPTED, REFUSED, REQUESTED, REQUIRED }
  270.   SET TELNET BINARY-MODE    { ACCEPTED, REFUSED, REQUESTED, REQUIRED }
  271.   SET TELNET ENCRYPTION     { ACCEPTED, REFUSED, REQUESTED, REQUIRED }
  272.   SET TELNET ENVIRONMENT    { ON, OFF }
  273.   SET TELNET NAWS           { ACCEPTED, REFUSED, REQUESTED, REQUIRED }
  274.   SET TELNET XDISPLAY-LOC   { ACCEPTED, REFUSED, REQUESTED, REQUIRED }
  275. which are now considered obsolete (but still supported).
  276. 4. TELNET COMMAND SUMMARY
  277. TELNET /AUTH:<type> /ENCRYPT:<type> /USERID:<name> /PASSWORD:<string>
  278.        <host> <port>
  279.   The TELNET command is a shortcut for making interactive connections.
  280.   It is the equivalent of specifying:
  281.     SET TELOPT AUTH ...
  282.     SET TELNET AUTH TYPE ...
  283.     SET TELOPT ENCRYPT ...
  284.     SET TELNET ENCRYPT TYPE ...
  285.     SET LOGIN USERID ...
  286.     SET LOGIN PASSWORD ...
  287.     SET HOST /CONNECT <host> <port> /TELNET
  288.   /AUTH:<type> is equivalent to SET TELNET AUTH TYPE <type> and
  289.   SET TELOPT AUTH REQUIRED with the following exceptions.  If the type
  290.   is AUTO, then SET TELOPT AUTH REQUESTED is executed and if the type
  291.   is NONE, then SET TELOPT AUTH REFUSED is executed.
  292.   /ENCRYPT:<type> is equivalent to SET TELNET ENCRYPT TYPE <type>
  293.   and SET TELOPT ENCRYPT REQUIRED REQUIRED with the following exceptions.
  294.   If the type is AUTO then SET TELOPT AUTH REQUESTED REQUESTED is executed
  295.   and if the type is NONE then SET TELOPT ENCRYPT REFUSED REFUSED is
  296.   executed.
  297.   /USERID:[<name>]
  298.   This switch is equivalent to SET LOGIN USERID <name> or SET TELNET
  299.   ENVIRONMENT USER <name>.  If a string is given, it sent to host during
  300.   Telnet negotiations; if this switch is given but the string is omitted, no
  301.   user ID is sent to the host.  If this switch is not given, your current
  302.   USERID value, v(userid), is sent.  When a userid is sent to the host
  303.   it is a request to login as the specified user.
  304.   /PASSWORD:[<string>]
  305.   This switch is equivalent to SET LOGIN PASSWORD.  If a string is given,
  306.   it is treated as the password to be used (if required) by any Telnet
  307.   Authentication protocol (Kerberos Ticket retrieval, Secure Remote
  308.   Password, or X.509 certificate private key decryption.)  If no password
  309.   switch is specified a prompt is issued to request the password if one
  310.   is required for the negotiated authentication method.
  311. For TCP/IP TELNET connections, which are in NVT (ASCII) mode by default:
  312. SET LOGIN USERID <name>
  313.   If a <name> is given, it sent to host during Telnet negotiations; if this
  314.   switch is given but the string is omitted, no user ID is sent to the host.
  315.   If this command is not given, your current USERID value, v(userid), is
  316.   sent.  When a userid is sent to the host it is a request to login as the
  317.   specified user.
  318. SET LOGIN PASSWORD <password>
  319.   If a <password> is given, it is treated as the password to be used (if
  320.   required) by any Telnet Authentication protocol (Kerberos Ticket retrieval,
  321.   Secure Remote Password (SRP), or X.509 certificate private key decryption.)
  322.   If no password is specified a prompt is issued to request the password if
  323.   one is required for the negotiated authentication method.
  324. SET TELNET AUTHENTICATION TYPE { AUTOMATIC, KERBEROS_IV, KERBEROS_V,
  325.   NTLM, SSL, SRP, NONE } [ { ... } ... ]
  326.   AUTOMATIC allows the host to choose the preferred type of authentication.
  327.   Other values allow a specific authentication method to be used.  AUTOMATIC
  328.   is the default.  Available options can vary depending on configuration;
  329.   type SET TELNET AUTHENTICATION TYPE ? for a list.
  330.   When the type is AUTOMATIC and Kermit is accepting incoming connections
  331.   the supported authentication methods will be offered in the following
  332.   order:
  333.     NTLM (windows only)
  334.     Kerberos 5
  335.     Kerberos 4
  336.     Secure Remote Password
  337.     SSL
  338.   This is the equivalent of the command:
  339.     SET TELNET AUTH TYPE NTLM KRB5 KRB4 SRP SSL
  340. SET TELNET AUTHENTICATION FORWARDING { ON, OFF }
  341.   Set this to ON to forward Kerberos V ticket-granting-tickets to the host
  342.   after authentication is complete.  OFF by default.
  343. SET TELNET AUTHENTICATION ENCRYPT-FLAG { ANY, NONE, TELOPT }
  344.   Use this command to specify which AUTH telopt encryption flags may be
  345.   accepted in client mode or offered in server mode.  The default is ANY.
  346. SET TELNET AUTHENTICATION HOW-FLAG { ANY, ONE-WAY, MUTUAL }
  347.   Use this command to specify which AUTH telopt how flags may be
  348.   accepted in client mode or offered in server mode.  The default is ANY.
  349. SET TELNET BINARY-TRANSFER-MODE { ON, OFF }
  350.   Set this command to ON if you want to force Kermit to negotiate 
  351.   Telnet Binary in both directions when performing file transfers.  
  352.   Default is OFF.  Alias SET TELNET BINARY-XFER-MODE.
  353. SET TELNET BUG BINARY-ME-MEANS-U-TOO { ON, OFF }
  354.   Set this to ON to try to overcome TELNET binary-mode misnegotiations by
  355.   C-Kermit's TELNET partner.
  356. SET TELNET BUG BINARY-U-MEANS-ME-TOO { ON, OFF }
  357.   Set this to ON to try to overcome TELNET binary-mode misnegotiations by
  358.   C-Kermit's TELNET partner.
  359. SET TELNET BUG INFINITE-LOOP-CHECK { ON, OFF }
  360.   Set this to ON to prevent Kermit from responding to a telnet negotiation
  361.   sequence that enters an infinite loop.  The default is OFF because this
  362.   should never occur.
  363. SET TELNET BUG SB-IMPLIES-WILL-DO { ON, OFF }
  364.   Set this to ON to allow Kermit to respond to telnet sub-negotiations if
  365.   the peer forgets to respond to WILL with DO or to DO with WILL before
  366.   sending a SB (subnegotiation).
  367. SET TELNET DEBUG ON
  368.   Displays all TELNET negotiations in full detail.
  369. SET TELNET DELAY-SB { ON, OFF }
  370.   When ON, telnet subnegotiation responses are delayed until after all
  371.   authentication and encryption options are either successfully negotiated
  372.   or refused.  This ensures that private data is protected.  When OFF, telnet
  373.   subnegotiation responses are sent immediately.  The default is ON.
  374. SET TELNET ECHO { LOCAL, REMOTE }
  375.   C-Kermit's initial echoing state for TELNET connections, LOCAL by default.
  376.   After the connection is made, TELNET negotiations determine the echoing.
  377. SET TELNET ENCRYPTION TYPE { AUTOMATIC, CAST128_CFB64, CAST128_OFB64,
  378.   CAST5_40_CFB64, CAST5_40_OFB64, DES_CFB64, DES_OFB64,
  379.   DES3_CFB64, DES3_OFB64, NONE }
  380.   AUTOMATIC allows the host to choose the preferred type of encryption.
  381.   Other values allow a specific encryption method to be specified.
  382.   AUTOMATIC is the default.  The list of options will vary depending
  383.   on the encryption types selected at compilation time.
  384.   When the type is AUTOMATIC and Kermit is accepting incoming connections
  385.   the supported encryption methods will be offered in the following order:
  386.     DES3_CFB64
  387.     CAST128_CFB64
  388.     DES_CFB64
  389.     CAST5_40_CFB64
  390.     DES3_OFB64
  391.     CAST128_OFB64
  392.     DES_OFB64
  393.     CAST5_40_OFB64
  394. SET TELNET ENVIRONMENT { variable-name [ value ] }
  395.   This feature lets Kermit send the values of certain environment variables
  396.   to the other computer if it asks for them.  The variable-name can be any
  397.   of the "well-known" variables "USER", "JOB", "ACCT", "PRINTER",
  398.   "SYSTEMTYPE", or "DISPLAY".  The default values are taken from your
  399.   environment; use this command to change or remove them.
  400.   The most commonly used variables and their default values are:
  401.   USER:
  402.     Telnet servers that request this value will use it as the name of the
  403.     account to be accessed and will therefore not prompt you for a username.
  404.     If a password is required to access the specified user's account only
  405.     the password prompt will be issued.  The default value is the name of
  406.     the user on the local machine.  This value may also be set with the
  407.     command SET LOGIN USER <name>.
  408.   DISPLAY:
  409.     This variable is used to specify the location of the X Windows Server
  410.     to be used by X Windows client applications executed on the remote host.
  411.     This value is used by three telnet options: ENVIRONMENT, XDISPLOC, and
  412.     FORWARD-X.  The default value is retrieved from the value of the DISPLAY
  413.     environment variable in the local environment.
  414.   PRINTER:
  415.     This variable is used to specify the location of the LPR printer to be
  416.     used for printing files on the host.  This variable is not set by
  417.     default.
  418.   SYSTEM:
  419.     This variable is used to specify the operating system type of the local
  420.     machine.  The default value is determined by Kermit.  Typical values
  421.     are "UNIX", "VMS", "WIN32", and "OS2".
  422.   See RFC1572 for further details.
  423. SET TELNET LOCATION [ text ]
  424.   Location string to send to the Telnet server if it asks.  By default this
  425.   is picked up from the LOCATION environment variable.  Give this command
  426.   with no text to disable this feature.
  427. SET TELNET NEWLINE-MODE { NVT, BINARY-MODE } { OFF, ON, RAW }
  428.   Determines how carriage returns are handled on TELNET connections.
  429.   There are separate settings for NVT (ASCII) mode and binary mode.
  430.   ON (default for NVT mode) means CRLF represents CR.
  431.   OFF means CR followed by NUL represents CR.
  432.   RAW (default for BINARY mode) means CR stands for itself.
  433. SET TELNET PROMPT-FOR-USERID <prompt>
  434.   Specifies a custom prompt to be used when prompting for a userid.
  435.   Kermit will prompt for a userid if
  436.     SET LOGIN USERID {}
  437.   has been issued prior to a telnet authentication negotiation for
  438.   an authentication type that requires the transmission of a name.
  439.   (e.g. Secure Remote Password).
  440. SET TELNET REMOTE-ECHO { ON, OFF }
  441.   Applies only to incoming connections created with:
  442.     SET HOST * <port> /TELNET
  443.   This command determines whether Kermit will actually echo characters
  444.   received from the remote when it has negotiated to do so.  The default
  445.   is ON.  Remote echoing may be turned off when it is necessary to read
  446.   a password with the INPUT command.
  447. SET TELNET TERMINAL-TYPE name
  448.   The terminal type to send to the remote TELNET host.  If none is given,
  449.   your current SET TERMINAL TYPE value is sent, e.g. VT220.
  450. SET TELNET TRANSFER-MODE { ON, OFF }
  451.   When ON (OFF by default) and BINARY negotiations are not REFUSED Kermit
  452.   will attempt to negotiate BINARY mode in each direction before the start
  453.   of each file transfer.  After the transfer is complete BINARY mode will
  454.   be restored to the pre-transfer state.
  455. SET TELNET WAIT-FOR-NEGOTIATIONS { ON, OFF }
  456.   Each Telnet option must be fully negotiated either On or Off before the
  457.   session can continue.  This is especially true with options that require
  458.   subnegotiations such as Authentication, Encryption, and Kermit; for
  459.   proper support of these options Kermit must wait for the negotiations to
  460.   complete.  Of course, Kermit has no way of knowing whether a reply is
  461.   delayed or not coming at all, and so will wait forever before continuing
  462.   the session.  If you know that Kermit's Telnet partner will not be sending
  463.   the required replies, you should instruct Kermit to REFUSE specific
  464.   options with the SET TELOPT command.  If you do not know which command
  465.   the host is not responding to set this option of OFF.
  466. 5. DIAGNOSING AND FIXING PROBLEMS CONNECTING TO TELNET SERVERS
  467. After we replaced the Telnet engine and added support for the new
  468. functionality we found many Telnet servers that do not adhere to the Telnet
  469. protocol as described in the IETF RFCs.  Here are some of the most common
  470. bugs and the workarounds that Kermit provides the user to avoid them.
  471. BUG: Telnet Server does not respond to telnet options.
  472. Description:
  473.   The telnet protocol requires that all initial requests for action (WILL or
  474.   DO) must be responded to either in the affirmative (DO or WILL) or in the
  475.   negative (DONT or WONT).  A negative response is required for all
  476.   unrecognized options.  A failure to respond to a Telnet option may result
  477.   in the peer waiting forever.
  478.   This behavior is known to exist in the following telnet servers:
  479.   AOS/VS II Release 2.20.00.39
  480.   IBM OS/2 Warp 4.0 (all versions not configured with authentication modules)
  481. Symptom:
  482.   Kermit connects to the host, waits two minutes, and then reports a telnet
  483.   protocol error followed by the list of outstanding negotiations.  Kermit
  484.   has sent a Telnet option such as WILL AUTH and is waiting for the required
  485.   response which never comes.  In C-Kermit you will see "Negotiations...."
  486.   with many dots.  In K95 you will see the "spinner" twirl.
  487.   Example:
  488.   DNS Lookup...  Trying xxx.xxx.xxx.xxx...  Reverse DNS Lookup... (OK)
  489.   Negotiations... ?Telnet Protocol Timeout
  490.   ?Telnet waiting for response to WILL TERMINAL-TYPE
  491.   ?Telnet waiting for response to WILL NAWS
  492.   ?Telnet waiting for response to WILL AUTHENTICATION
  493.   ?Telnet waiting for response to WILL NEW-ENVIRONMENT
  494.   **** AOS/VS II  Release 2.20.00.39 / Press NEW-LINE to begin logging on ****
  495.   Too slow - input timed out
  496. Workaround:
  497.   For each of the telnet options listed as missing a response issue a
  498.     SET TELOPT <option> REFUSED [REFUSED]
  499.   command.  For instance:
  500.     SET TELOPT TERMINAL-TYPE REFUSED
  501.     SET TELOPT NAWS REFUSED
  502.     SET TELOPT AUTHENTICATION REFUSED
  503.     SET TELOPT NEW-ENVIRONMENT REFUSED
  504. BUG: Server sends a subnegotiation without negotiating the option
  505. Description:
  506.   The telnet protocol requires that subnegotiations not be sent until the
  507.   peers have agreed to WILL or DO the specified option.  All subnegotiations
  508.   received in a WONT or DONT state are to be ignored.
  509. Symptom:
  510.   There are two possibilities.  In the first, the host sends a subnegotiation
  511.   such as
  512.      IAC SB TERM_TYPE SEND IAC SE
  513.   without Kermit attempting to use the telnet option.
  514.      IAC WILL TERM_TYPE
  515.      IAC DO TERM_TYPE
  516.   In this case the subnegotiation request will be ignored and the
  517.   subnegotiation response
  518.      IAC SB TERM_TYPE IS <type> IAC SE
  519.   will not be sent.  How this affects the sender of the illegal subnegotation
  520.   is unknown.
  521.   In the second scenario, Kermit sends
  522.      IAC WILL TERM_TYPE
  523.   but the host sends the subnegotiation without responding to the request with
  524.      IAC DO TERM_TYPE
  525.   This scenario degenerates into the previous bug.  (See "Telnet Server does
  526.   not respond to telnet options it does not recognize.")
  527. Workaround:
  528.   For the first scenario, there is nothing that can be done.  Kermit is
  529.   already ignoring the subnegotiations and there is nothing that Kermit
  530.   can do to force the host to adhere to the protocol.  If you have a
  531.   support contract with the maker of the Telnet Server, file a report.
  532.   For the second scenario, Kermit implements a workaround which is on by
  533.   default:
  534.     SET TELNET BUG SB-IMPLIES-WILL-DO ON
  535.   This causes Kermit to treat
  536.      IAC SB TERM_TYPE SEND IAC SE
  537.   as if it were
  538.      IAC WILL TERM_TYPE
  539.      IAC SB TERM_TYPE SEND IAC SE
  540. BUG: Server sends DO TERM_TYPE but then never asks for the terminal type.
  541. Description:
  542.   Although it is not required by the Telnet Terminal-Type RFC, it makes
  543.   sense that if a server asks the client to negotiate the terminal
  544.   type, that it will actually go through with the negotiation.
  545. Symptom:
  546.   Kermit reports that Terminal Type negotiation is in use but the terminal
  547.   type is not configured properly on the host.
  548. Workaround:
  549.   There isn't much that can be done other than to instruct Kermit to:
  550.      SET TELOPT TERMINAL-TYPE REFUSE
  551.   so that it doesn't appear to the user that the terminal type has
  552.   indeed been negotiated.
  553. BUG: Server negotiates BINARY mode in one direction but uses it in both.
  554. Description:
  555.   When either the client or the server says it WILL BINARY and the peer
  556.   accepts, it is an indication that CR is to be sent without a following
  557.   NUL or LF by the sender of WILL BINARY.  A misunderstanding about the
  558.   meaning of this negotiation can prevent files from being transfered as
  559.   the packet lengths and checksums will not match.
  560. Symptom:
  561.   File transfers fail, reporting checksum or packet length errors.
  562. Workaround:
  563.   Use SET TERMINAL DEBUG ON to determine which direction the host is
  564.   negotiating BINARY mode in.
  565.   Then use either:
  566.     SET TELNET BUG BINARY-ME-MEANS-U-TOO ON
  567.   or:
  568.     SET TELNET BUG BINARY-U-MEANS-ME-TOO ON
  569.   to instruct Kermit to follow the broken behavior.
  570. PROBLEM: A connection is made to the Telnet Server but then it takes 30 to 60
  571.   seconds for a login prompt, or disconnects without displaying a prompt.
  572. Description:
  573.   The host is trying to resolve a host name for the IP Address assigned to
  574.   your computer and is unable to.  Check with your network administrator
  575.   or ISP to make sure that the IP address you are using has a valid DNS
  576.   entry for reverse lookups (IP address to name).
  577. PROBLEM: The Telnet Server does not display a "login:" or "Username:" prompt
  578.   and instead immediately displays the "Password:" prompt.
  579. Description:
  580.   The server you are connecting to supports the Telnet environment option
  581.   and has been given your username on the workstation during the telnet
  582.   option negotiations.
  583. Workaround:
  584.   If your username on the workstation is not the same as the username
  585.   on the host, or if you are using a script that requires a username
  586.   or login prompt, use the command:
  587.     SET TELNET ENVIRONMENT USER {<username>}
  588.   or:
  589.     SET LOGIN USERID {<username>}
  590.   to specify your name on the host; or disable this option with:
  591.     SET TELOPT NEW-ENVIRONMENT REFUSED
  592. BUG: The host echos input but never negotiates WILL ECHO.
  593. Description:
  594.   The Telnet protocol requires that all Telnet options be in a state of I
  595.   DONT and you WONT until otherwise negotiated.  That means that unless a
  596.   host says WILL ECHO it should not echo data; the client should echo it
  597.   locally.
  598. Symptom:
  599.   Failure to follow the protocol definition can result in no echoing or
  600.   double echoing.  This kind of confusion has been seen with two
  601.   well-known sites:
  602.     The USA Library of Congress
  603.     Dow Jones News Retrieval
  604. Workaround:
  605.   SET TELNET ECHO REMOTE
  606.   SET TELOPT ECHO REFUSE
  607. BUG: BSDI BSD/OS 3.1 Telnetd improperly implements WILL BINARY mode.
  608. Description:
  609.   The BSDI telnetd when it negotiaties WILL BINARY (host to client) binary
  610.   mode refuses to transmit CR control characters.  The man page for telnetd
  611.   states, "Binary mode has no common interpretation except between similar
  612.   operating systems (Unix in this case)."  The implementors clearly have
  613.   misread RFC-856 (TELNET BINARY TRANSMISSION) which clearly states that
  614.   the only affect that BINARY mode has on the channel is to disable NVT
  615.   (network virtual terminal) handling of CR (CR no longer must be followed
  616.   by NUL if it is not followed by LF) and that the 8th data bit must not
  617.   be stripped.
  618. Symptom:
  619.   By refusing to transmit CR control characters and translate them to LF
  620.   the BSDI telnetd causes end of lines to be misinterpreted by the
  621.   terminal and for file transfers to become corrupted if the host is
  622.   allowed to negotiate WILL BINARY.
  623. Workaround:
  624.   SET TELOPT BINARY ACCEPT REFUSE
  625. PROBLEM:  The host supports Telnet AUTH but you wish to login manually
  626. Description:
  627.   You are using Kermit to connect to a host that supports Telnet
  628.   Authentication except you need to login manually for one of the
  629.   following reasons:
  630.   . You do not have credentials that match the supported Telnet AUTH
  631.     type.  For example, the host supports Kerberos 5 but you do not
  632.     have a principal defined in the Kerberos realm even though you
  633.     have a valid account on the host.
  634.   . You wish to login to an Internet Kermit Service anonymously.
  635. Workaround:
  636.     SET TELOPT AUTH REFUSE
  637. PROBLEM:  Applications on the host are unable to open the DISPLAY
  638. Description:
  639.   Some applications such as the editor 'emacs' are dual mode.  They execute
  640.   either in terminal mode or as an X Windows client.  If the application
  641.   terminates with an error that it is unable to open the DISPLAY it could
  642.   be for one of the following reasons:
  643.   . a DISPLAY environment variable is defined in the shell's script that is
  644.     executed at login and it points to an invalid value;
  645.   . there is a DISPLAY environment variable defined on the local machine
  646.     which has been forwarded to the host by Kermit and the specified
  647.     DISPLAY is unreachable.
  648.   . a SET TELNET ENVIRONMENT DISPLAY command was issued prior to connecting
  649.     to the host and the specified DISPLAY value is invalid.
  650. Workaround:
  651.   If you wish to use the application as an X Windows client you must
  652.   have a working X Windows Server running on your local machine and specify
  653.   a valid DISPLAY string for your server.  This can either be specified on
  654.   the host via
  655.      export DISPLAY=<host>:<display>[.<screen>]
  656.   or by specifying the display in Kermit with the command
  657.      SET TELNET ENVIRONMENT DISPLAY [<host>:]<display>[.<screen>]
  658.   If your telnet server supports any of the following telnet options:
  659.      . X-Display Location
  660.      . Environment Variables
  661.      . X-Windows Forwarding
  662.   then Kermit will transmit the DISPLAY value to the host during the initial
  663.   telnet negotiations.
  664.   If you wish to use the application in terminal mode you can prevent Kermit
  665.   from transmitting the local DISPLAY value to the host by issuing the
  666.   following commands:
  667.      SET TELOPT XDISPLOC REFUSE
  668.      SET TELOPT FORWARD-X REFUSE
  669.      SET TELNET ENVIRONMENT DISPLAY
  670. PROBLEM: The Telnet Server is the Microsoft Windows 2000 Telnet Service
  671. Description:
  672.   The Microsoft Windows 2000 (and NT Services for Unix) Telnet Service is a 
  673.   bit of a challenge to work with due to limitations that are imposed by the
  674.   Windows platform and the choices made by the developers.  The Telnet Service
  675.   supports three terminal emulations (ANSI, VT100, and VTNT) and two types of
  676.   end user login (Telnet AUTH NTLM and plaintext domainusername/password.)
  677.   Depending on the choices that are made will determine the levels of 
  678.   functionality that can be obtained for the service.
  679.   Terminal types:
  680.   ANSI and VT100 are considered to be the same terminal type by Microsoft
  681.   even though they have some very significant differences.  The Microsoft
  682.   ANSI is closest to the Kermit 95 "ANSI-BBS" which should be used in 
  683.   preference to VT100 when communicating with this service.  The VTNT
  684.   terminal type is Microsoft specific (and undocumented.)  Kermit 95 
  685.   implements a reverse engineered implementation.  VTNT uses raw Win32
  686.   data structures to implement transmission of screen snapshots from the
  687.   service to the client; and keystroke events from the client to the service.
  688.   VTNT is the preferred terminal type to use with the Microsoft Telnet service
  689.   provided that you do not need access to Kermit 95 keyboard verbs or any 
  690.   form of scripting.  If Keyboard verbs or scripting are required ANSI or 
  691.   VT100 must be used.  
  692.   When using ANSI or VT100 the Backspace key must send BS and not DEL.
  693.   ANSI and VT100 do not support color whereas VTNT does.
  694.   VTNT supports Unicode characters.  ANSI and VT100 only support the local
  695.   ANSI code page.  You must configure the Kermit local and remote character
  696.   sets to properly convert between ANSI code pages.
  697.   End user login:
  698.   The Microsoft provides two forms of end user login.  The first is via the
  699.   use of "login:" and "password:" prompts.  The username is either the name
  700.   of a user with a local account; or a domainname which specifies a user 
  701.   with an account in the provided domain.  Since the login is performed over
  702.   an unencrypted channel the password is easily stolen by monitoring the local 
  703.   network traffic.
  704.   The second method is a proprietary (and undocumented) Telnet authentication
  705.   method based upon the NT Lan Manager (NTLM) protocol.  This protocol has 
  706.   also been reverse engineered and implemented in Kermit 95.  NTLM only works
  707.   if the client machine shares the same domain (or security authority) as the
  708.   machine the service is running on.  NTLM does not produce a shared secret
  709.   that can be used for encrypting the connection.  NTLM can only be 
  710.   implemented on Windows 9x, NT, or Windows 2000 so connections from other
  711.   operating systems must use plaintext logins.
  712.   If NTLM is used, the user can only log into the service with the identity
  713.   they are logged into the local workstation.  If another username is desired
  714.   NTLM must be disabled on the client (SET TELOPT AUTH REFUSE).
  715.   
  716.   Other quirks:
  717.   The Microsoft Telnet Service implements Telnet NAWS (Negotiate About Window 
  718.   Size) but only listens to it when the connection is initially established.
  719.   This has two side effects when used with Kermit.  First, the Telnet Service
  720.   may completely ignore the screen size reported by Kermit if it is not sent
  721.   immediately after the Telnet Service agrees to use NAWS.  Second, the Telnet
  722.   Service will not recognize changes to the screen size after the connection
  723.   is established.
  724.   The Microsoft Telnet Service does not create a proper environment for the
  725.   end user.  The user's profile, home directory and environment variables are 
  726.   not loaded onto the system.  Applications that require this information may
  727.   fail to execute or otherwise run incorrectly.
  728.    
  729.   The Microsoft Telnet Service only allows a single telnet session to be
  730.   running at any one time.
  731.   
  732.   The Microsoft Telnet Service provides no mechansim for performing file 
  733.   transfers.
  734.   The Microsoft Telnet Service performs its job by taking snapshots of the
  735.   console's active virtual window.  This means that it is possible for data
  736.   to be lost due to scrolling or other screen updates between snapshots.
  737.   This can play havoc with scripts and prevents Kermit from being able to
  738.   store data into its scrollback buffers.
  739.   Recommendations:
  740.   If using Kermit 95 and scripts are not required:
  741.      SET TERMINAL TYPE VTNT
  742.      SET TELNET DELAY-SB OFF
  743.      SET KEY 264 8
  744.   
  745.   If scripts are required:
  746.      SET TERMINAL TYPE ANSI
  747.      SET TELNET DELAY-SB OFF
  748.      SET KEY 264 8
  749.   If you are using Kermit 95 on a Windows platform and wish to login as
  750.   a user other than yourself:
  751.      SET TELOPT AUTH REFUSE
  752.   or
  753.      TELNET /AUTH:none <host>
  754.   If you are using C-Kermit:
  755.       SET TELNET TERMINAL ANSI
  756.       SET TELNET DELAY-SB OFF
  757. (End of TELNET.TXT)