Telnet Specifications
About
This document provides links to telnet specifications, and describes the implementation status of this library.
Telnet Protocol Specifications
- RFC 854
- Telnet Protocol Specification
- RFC 855
- Telnet Option Specifications
- RFC 857
- Telnet Echo Option
- RFC 858
- Telnet Supress Go Ahead Option
- RFC 727
- Telnet Logout Option
- RFC 1073
- Telnet Window Size Option
- RFC 1091
- Telnet Terminal-Type Option
- RFC 1184
- Telnet Linemode Option
- RFC 1143
- Telnet Environment Option
- RFC 1572
- The Q Method of Implementing Option Negotiation
Implementation Comments
General
telnetd has been implemented based on the standard specifications, as well as the Q Method of Implementing Option Negotiation (RFC 1143).
Although it does some and could do more sophisticated option/suboption negiotiation, the idea is to keep it down to the minimum required to work properly for the application you want to expose via telnet. At the moment the largest part of the negotiation is mainly limited to the beginning of the connection, this is specifically the case for ECHO and for LINEMODE, which means you will have to extend the code in case you require dynamic switching at throughout the connection.
Not always it is the telnetd implementation that has to be blamed. A good way to figure out
what is going wrong is to enable debug in a standard UNIX telnet implementation (e.g. BSD telnet).
The following snippet shows how this can be achieved and what the output looks like:
[Fangorn:~] wimpi$ telnet telnet> set options Will show option processing. telnet> open localhost 6666 Trying ::1... Connected to localhost. Escape character is '^]'. RCVD WILL ECHO SENT DO ECHO RCVD DONT ECHO RCVD DO NAWS SENT WILL NAWS SENT IAC SB NAWS 0 130 (130) 0 24 (24) RCVD WILL SUPPRESS GO AHEAD SENT DO SUPPRESS GO AHEAD RCVD DO SUPPRESS GO AHEAD SENT WILL SUPPRESS GO AHEAD RCVD DO TERMINAL TYPE SENT WILL TERMINAL TYPE RCVD IAC SB TERMINAL-TYPE SEND SENT IAC SB TERMINAL-TYPE IS "VT100"
Specific
- NVT
- The implementation has support for AYT and BRK. The first will be answered by writing directly to the terminal (which might cause troubles if you are using screens), the latter will trigger a connection event that can be handled by your application.
- Options always negotiated
- The implementation will always try to negotiate "SUPRESS GO AHEAD", "WINDOW SIZE", as well as "TERMINAL TYPE".
- Character Mode
- The implementation will negotiate server side only echo at the beginning of the connection. For the specification, IAC DONT ECHO would not be necessary, but for some clients that have a broken ECHO otpion implementation.
- Line Mode
- The implementation will negotiate "LINEMODE" at the beginning of the
connection. If the client does support and acknowledge linemode, subnegotiations about the mode mask and
the special characters will take place.
telnetd will subnegotiate the standard mode mask EDIT|TRAPSIG, as well as the special character set (sending or acknowledging defaults (as there is no actual support). If you need anything more sophisticated you will have to modify the existing implementation to add support for SLC as well as for the more complex subnegotiation to be expected.
by Dieter Wimberger