The TELNET Protocol
This article was previously published under Q231866 On This PageSUMMARY Telnet 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. It should be emphasized that the Telnet server can pass on the data it has received from the client to many other types of processes including a remote logon server. This is described in RFC854 and was first published in 1983. 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.
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 eighth 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:
For example, if the client wants 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_host However, 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 Microsoft (R) Windows NT (TM) Version 4.00 (Build 1381) Welcome to Microsoft Telnet Client Telnet Client Build 5.00.99034.1 Escape Character is 'CTRL+]' Microsoft Telnet> open sfusrvr **** The screen will clear and the following information is displayed: Microsoft (R) Windows NT (TM) Version 4.00 (Build 1381) Welcome to Microsoft Telnet Service Telnet Server Build 5.00.99034.1 login: sfu password: ******** **** The screen will clear again and the following information is displayed: *=============================================================== Welcome to Microsoft Telnet Server. *=============================================================== C:\> APPLIES TO
| Article Translations
|