| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \section{\module{telnetlib} --- | 
					
						
							|  |  |  |          Telnet client} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \declaremodule{standard}{telnetlib} | 
					
						
							|  |  |  | \modulesynopsis{Telnet client class.} | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | \sectionauthor{Skip Montanaro}{skip@mojam.com} | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-06 20:23:02 +00:00
										 |  |  | \index{protocol!Telnet} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | The \module{telnetlib} module provides a \class{Telnet} class that | 
					
						
							|  |  |  | implements the Telnet protocol.  See \rfc{854} for details about the | 
					
						
							| 
									
										
										
										
											2001-09-06 08:51:38 +00:00
										 |  |  | protocol. In addition, it provides symbolic constants for the protocol | 
					
						
							| 
									
										
										
										
											2002-11-04 17:41:18 +00:00
										 |  |  | characters (see below), and for the telnet options. The | 
					
						
							| 
									
										
										
										
											2001-09-06 08:51:38 +00:00
										 |  |  | symbolic names of the telnet options follow the definitions in | 
					
						
							|  |  |  | \code{arpa/telnet.h}, with the leading \code{TELOPT_} removed. For | 
					
						
							|  |  |  | symbolic names of options which are traditionally not included in | 
					
						
							|  |  |  | \code{arpa/telnet.h}, see the module source itself. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-04 17:41:18 +00:00
										 |  |  | The symbolic constants for the telnet commands are: IAC, DONT, DO, | 
					
						
							|  |  |  | WONT, WILL, SE (Subnegotiation End), NOP (No Operation), DM (Data | 
					
						
							|  |  |  | Mark), BRK (Break), IP (Interrupt process), AO (Abort output), AYT | 
					
						
							|  |  |  | (Are You There), EC (Erase Character), EL (Erase Line), GA (Go Ahead), | 
					
						
							|  |  |  | SB (Subnegotiation Begin). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{classdesc}{Telnet}{\optional{host\optional{, port}}} | 
					
						
							| 
									
										
										
										
											2001-07-06 20:23:02 +00:00
										 |  |  | \class{Telnet} represents a connection to a Telnet server. The | 
					
						
							| 
									
										
										
										
											2000-05-03 15:11:47 +00:00
										 |  |  | instance is initially not connected by default; the \method{open()} | 
					
						
							|  |  |  | method must be used to establish a connection.  Alternatively, the | 
					
						
							|  |  |  | host name and optional port number can be passed to the constructor, | 
					
						
							|  |  |  | to, in which case the connection to the server will be established | 
					
						
							|  |  |  | before the constructor returns. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Do not reopen an already connected instance. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This class has many \method{read_*()} methods.  Note that some of them  | 
					
						
							|  |  |  | raise \exception{EOFError} when the end of the connection is read, | 
					
						
							|  |  |  | because they can return an empty string for other reasons.  See the | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | individual descriptions below. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{classdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-26 18:20:04 +00:00
										 |  |  | \begin{seealso} | 
					
						
							|  |  |  |   \seerfc{854}{Telnet Protocol Specification}{ | 
					
						
							|  |  |  |           Definition of the Telnet protocol.} | 
					
						
							|  |  |  | \end{seealso} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \subsection{Telnet Objects \label{telnet-objects}} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \class{Telnet} instances have the following methods: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{read_until}{expected\optional{, timeout}} | 
					
						
							| 
									
										
										
										
											2003-04-29 13:39:05 +00:00
										 |  |  | Read until a given string, \var{expected}, is encountered or until | 
					
						
							|  |  |  | \var{timeout} seconds have passed. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | When no match is found, return whatever is available instead, | 
					
						
							|  |  |  | possibly the empty string.  Raise \exception{EOFError} if the connection | 
					
						
							|  |  |  | is closed and no cooked data is available. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{read_all}{} | 
					
						
							| 
									
										
										
										
											2001-11-28 07:26:15 +00:00
										 |  |  | Read all data until \EOF; block until connection closed. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{read_some}{} | 
					
						
							|  |  |  | Read at least one byte of cooked data unless \EOF{} is hit. | 
					
						
							|  |  |  | Return \code{''} if \EOF{} is hit.  Block if no data is immediately | 
					
						
							|  |  |  | available. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{read_very_eager}{} | 
					
						
							|  |  |  | Read everything that can be without blocking in I/O (eager). | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Raise \exception{EOFError} if connection closed and no cooked data | 
					
						
							|  |  |  | available.  Return \code{''} if no cooked data available otherwise. | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | Do not block unless in the midst of an IAC sequence. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{read_eager}{} | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | Read readily available data. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Raise \exception{EOFError} if connection closed and no cooked data | 
					
						
							|  |  |  | available.  Return \code{''} if no cooked data available otherwise. | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | Do not block unless in the midst of an IAC sequence. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{read_lazy}{} | 
					
						
							|  |  |  | Process and return data already in the queues (lazy). | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Raise \exception{EOFError} if connection closed and no data available. | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | Return \code{''} if no cooked data available otherwise.  Do not block | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | unless in the midst of an IAC sequence. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{read_very_lazy}{} | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | Return any data available in the cooked queue (very lazy). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Raise \exception{EOFError} if connection closed and no data available. | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | Return \code{''} if no cooked data available otherwise.  This method | 
					
						
							|  |  |  | never blocks. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-04 09:56:00 +00:00
										 |  |  | \begin{methoddesc}{read_sb_data}{} | 
					
						
							|  |  |  | Return the data collected between a SB/SE pair (suboption begin/end). | 
					
						
							|  |  |  | The callback should access these data when it was invoked with a | 
					
						
							|  |  |  | \code{SE} command. This method never blocks. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \versionadded{2.3} | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{open}{host\optional{, port}} | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | Connect to a host. | 
					
						
							|  |  |  | The optional second argument is the port number, which | 
					
						
							| 
									
										
										
										
											2001-07-06 20:23:02 +00:00
										 |  |  | defaults to the standard Telnet port (23). | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | Do not try to reopen an already connected instance. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{msg}{msg\optional{, *args}} | 
					
						
							|  |  |  | Print a debug message when the debug level is \code{>} 0. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | If extra arguments are present, they are substituted in the | 
					
						
							|  |  |  | message using the standard string formatting operator. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{set_debuglevel}{debuglevel} | 
					
						
							|  |  |  | Set the debug level.  The higher the value of \var{debuglevel}, the | 
					
						
							|  |  |  | more debug output you get (on \code{sys.stdout}). | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{close}{} | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | Close the connection. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{get_socket}{} | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | Return the socket object used internally. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{fileno}{} | 
					
						
							|  |  |  | Return the file descriptor of the socket object used internally. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{write}{buffer} | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | Write a string to the socket, doubling any IAC characters. | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | This can block if the connection is blocked.  May raise | 
					
						
							|  |  |  | \exception{socket.error} if the connection is closed. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{interact}{} | 
					
						
							| 
									
										
										
										
											2001-07-06 20:23:02 +00:00
										 |  |  | Interaction function, emulates a very dumb Telnet client. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{mt_interact}{} | 
					
						
							|  |  |  | Multithreaded version of \method{interact()}. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | \begin{methoddesc}{expect}{list\optional{, timeout}} | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | Read until one from a list of a regular expressions matches. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The first argument is a list of regular expressions, either | 
					
						
							|  |  |  | compiled (\class{re.RegexObject} instances) or uncompiled (strings). | 
					
						
							| 
									
										
										
										
											1999-04-22 17:53:37 +00:00
										 |  |  | The optional second argument is a timeout, in seconds; the default | 
					
						
							| 
									
										
										
										
											2000-07-16 19:01:10 +00:00
										 |  |  | is to block indefinitely. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Return a tuple of three items: the index in the list of the | 
					
						
							|  |  |  | first regular expression that matches; the match object | 
					
						
							|  |  |  | returned; and the text read up till and including the match. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | If end of file is found and no text was read, raise | 
					
						
							|  |  |  | \exception{EOFError}.  Otherwise, when nothing matches, return | 
					
						
							|  |  |  | \code{(-1, None, \var{text})} where \var{text} is the text received so | 
					
						
							|  |  |  | far (may be the empty string if a timeout happened). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-06 20:23:02 +00:00
										 |  |  | If a regular expression ends with a greedy match (such as \regexp{.*}) | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | or if more than one expression can match the same input, the | 
					
						
							| 
									
										
										
										
											2000-07-16 19:01:10 +00:00
										 |  |  | results are indeterministic, and may depend on the I/O timing. | 
					
						
							| 
									
										
										
										
											1999-03-15 15:44:18 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-06 08:51:38 +00:00
										 |  |  | \begin{methoddesc}{set_option_negotiation_callback}{callback} | 
					
						
							|  |  |  | Each time a telnet option is read on the input flow, this | 
					
						
							|  |  |  | \var{callback} (if set) is called with the following parameters : | 
					
						
							|  |  |  | callback(telnet socket, command (DO/DONT/WILL/WONT), option).  No other | 
					
						
							|  |  |  | action is done afterwards by telnetlib. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \subsection{Telnet Example \label{telnet-example}} | 
					
						
							|  |  |  | \sectionauthor{Peter Funk}{pf@artcom-gmbh.de} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | A simple example illustrating typical use: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{verbatim} | 
					
						
							|  |  |  | import getpass | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import telnetlib | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-17 06:49:51 +00:00
										 |  |  | def raw_input(prompt): | 
					
						
							|  |  |  |     sys.stdout.write(prompt) | 
					
						
							|  |  |  |     sys.stdout.flush() | 
					
						
							|  |  |  |     return sys.stdin.readline() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | HOST = "localhost" | 
					
						
							|  |  |  | user = raw_input("Enter your remote account: ") | 
					
						
							|  |  |  | password = getpass.getpass() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tn = telnetlib.Telnet(HOST) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tn.read_until("login: ") | 
					
						
							|  |  |  | tn.write(user + "\n") | 
					
						
							|  |  |  | if password: | 
					
						
							|  |  |  |     tn.read_until("Password: ") | 
					
						
							|  |  |  |     tn.write(password + "\n") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tn.write("ls\n") | 
					
						
							|  |  |  | tn.write("exit\n") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | print tn.read_all() | 
					
						
							|  |  |  | \end{verbatim} |