The information in this article applies to:
SUMMARYTelnet offers users the capability of running programs remotely and facilitates remote administration. Telnet is available for practically all operating systems and eases integration in heterogeneous networking environments. MORE INFORMATION
Telnet is best understood in the context of a user with a simple terminal using the local Telnet program (known as the client program) to run a logon session on a remote computer where the user's communications needs are handled by a Telnet server program. The Network Virtual TerminalCommunication is established using TCP/IP and is based on a Network Virtual Terminal (NVT). On the client, the Telnet program is responsible for translating incoming NVT codes to codes understood by the client's display device as well as for translating client-generated keyboard codes into outgoing NVT codes.The NVT uses 7-bit codes for characters. The display device, referred to as a printer in the RFC, is only required to display the standard printing ASCII characters represented by 7-bit codes and to recognize and process certain control codes. The 7-bit characters are transmitted as 8-bit bytes with the most significant bit set to zero. An end-of-line is transmitted as a carriage return (CR) followed by a line feed (LF). If you want to transmit an actual carriage return, this is transmitted as a carriage return followed by a NUL (all bits zero) character. NVT ASCII is used by many other Internet protocols like SMTP and FTP. The following control codes are required to be understood by the NVT.
The following further control codes are optional but should have the indicated defined effect on the display.
The NVT keyboard is specified as being capable of generating all 128 ASCII codes by using keys, key combinations, or key sequences. CommandsThe Telnet protocol uses various commands to control the client-server connection. These commands are transmitted within the data stream. The commands are distinguished from the data by setting the most significant bit to 1. (Remember that data is transmitted as 7-bits with the eigth bit set to 0) Commands are always introduced by the Interpret as command (IAC) character.Here is the complete set of commands:
Telnet OptionsOptions give the client and server a common view of the connection. They can be negotiated at any time during the connection by the use of commands. They are described in separate RFCs. The following are examples of common options:
Either end of a Telnet conversation can locally or remotely enable or disable an option. The initiator sends a 3-byte command of the form:
The response is of the same form. Operation is one of:
Associated with each of the these commands are various possible responses:
For example, if the sender wants the other end to suppress go-ahead, it would send the byte sequence:
The final byte of the 3-byte sequence identifies the required action. Some option's values need to be communicated after support of the option has been agreed. This is done using sub-option negotiation. Values are negotiated using value query commands and responses in the following form:
and
For example, if the client wishes to identify the terminal type to the server, the following exchange might take place:
The first exchange establishes that terminal type (option number 24) is handled, the server then enquires of the client what value it wishes to associate with the terminal type. The sequence SB,24,1 implies sub-option negotiation for option type 24, value required (1). The IAC,SE sequence indicates the end of this request. The response IAC,SB,24,0,'V'... implies sub-option negotiation for option type 24, value supplied (0), the IAC,SE sequence indicates the end of the response (and the supplied value). The encoding of the value is specific to the option but a sequence of characters, as shown above, is common. Descriptions of Telnet OptionsMany of those listed are self-evident, but some call for more information.Suppress Go AheadThe original Telnet implementation defaulted to half duplex operation. This means that data traffic could only go in one direction at a time and specific action is required to indicate the end of traffic in one direction and that traffic may now start in the other direction. [This similar to the use of "roger" and "over" by amateur and CB radio operators.] The specific action is the inclusion of a GA character in the data stream.Modern links normally allow bi-directional operation and the "suppress go ahead" option is enabled. EchoThe echo option is enabled, usually by the server, to indicate that the server echos every character it receives. A combination of "suppress go ahead" and "echo" is called character-at-a-time mode meaning that each character is separately transmitted and echoed.There is an understanding known as kludge-line mode, which means that if either "suppress go ahead" or "echo" is enabled but not both, then Telnet operates in line-at-a-time mode meaning that complete lines are assembled at each end and transmitted in one "go". LinemodeThis option replaces and supersedes the line mode kludge.Remote Flow ControlThis option controls where the special flow control effects of Ctrl+S or Ctrl+Q are implemented.Telnet Control FunctionsThe Telnet protocol includes a number of control functions. These are initiated in response to conditions detected by the client (usually certain special keys or key combinations) or server. The detected condition causes a special character to be incorporated in the data stream.Interrupt ProcessThis is used by the client to cause the suspension or termination of the server process. Typically, the user types Ctrl+C on the keyboard. An IP (244) character is included in the data stream.Abort OutputThis is used to suppress the transmission of remote process output. An AO (238) character is included in the data stream.Are You ThereThis is used to trigger a visible response from the other end of the connection to confirm the operation of the link and the remote process. An AYT (246) character is incorporated in the data stream.Erase characterThis is sent to the display to tell it to delete the immediately preceding character from the display. An EC (247) character is incorporated in the data stream.Erase lineThis option causes the deletion of the current line of input. An EL (248) character is incorporated in the data stream.Data MarkSome control functions such as AO and IP require immediate action and this may cause difficulties if data is held in buffers awaiting input requests from a (possibly misbehaving) remote process. To work around this problem, a DM (242) character is sent in a TCP Urgent segment, this tells the receiver to examine the data stream for "interesting" characters such as IP, AO, and AYT. This is known as the Telnet synchronization mechanism.A DM not in a TCP Urgent segment has no effect. The Telnet CommandOn Windows NT and most UNIX systems, a Telnet session can be initiated using the Telnet command. Most users simply type:telnet remote_hostHowever, if the user just types telnet, then various options and subcommands are available. The following is an example of a Telnet session from sfuclnt to sfusrvr. C:\>telnet REFERENCESFor more information about Telnet, please see RFC 854. RFCs may be obtained via the Internet as follows: Paper copies of all RFCs are available from the NIC, either individually or on a subscription basis (for more information, contact NIC@NIC.DDN.MIL). Online copies are available via FTP or Kermit from NIC.DDN.MIL as rfc/rfc854.txt or rfc/rfc854.PS (854 is the RFC number without leading zeros). Additionally, RFCs may be requested through electronic mail from the automated NIC mail server by sending a message to SERVICE@NIC.DDN.MIL with a subject line of "rfc 854" for text versions, or a subject line of "rfc 854.PS" for PostScript versions. To obtain the RFC index, the subject line of your message should read "rfc index". Additional query words:
Keywords : kbfaq |
Last Reviewed: January 20, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |