telnetlib.rst 7.36 KB
Newer Older
1 2 3 4 5
:mod:`telnetlib` --- Telnet client
==================================

.. module:: telnetlib
   :synopsis: Telnet client class.
6
.. sectionauthor:: Skip Montanaro <skip@pobox.com>
7 8 9 10


.. index:: single: protocol; Telnet

Raymond Hettinger's avatar
Raymond Hettinger committed
11 12 13 14
**Source code:** :source:`Lib/telnetlib.py`

--------------

15 16 17 18 19 20 21 22 23 24 25 26 27 28
The :mod:`telnetlib` module provides a :class:`Telnet` class that implements the
Telnet protocol.  See :rfc:`854` for details about the protocol. In addition, it
provides symbolic constants for the protocol characters (see below), and for the
telnet options. The symbolic names of the telnet options follow the definitions
in ``arpa/telnet.h``, with the leading ``TELOPT_`` removed. For symbolic names
of options which are traditionally not included in ``arpa/telnet.h``, see the
module source itself.

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).


29
.. class:: Telnet(host=None, port=0[, timeout])
30 31 32

   :class:`Telnet` represents a connection to a Telnet server. The instance is
   initially not connected by default; the :meth:`open` method must be used to
33 34
   establish a connection.  Alternatively, the host name and optional port
   number can be passed to the constructor, to, in which case the connection to
35
   the server will be established before the constructor returns.  The optional
36
   *timeout* parameter specifies a timeout in seconds for blocking operations
37 38
   like the connection attempt (if not specified, the global default timeout
   setting will be used).
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

   Do not reopen an already connected instance.

   This class has many :meth:`read_\*` methods.  Note that some of them  raise
   :exc:`EOFError` when the end of the connection is read, because they can return
   an empty string for other reasons.  See the individual descriptions below.


.. seealso::

   :rfc:`854` - Telnet Protocol Specification
      Definition of the Telnet protocol.


.. _telnet-objects:

Telnet Objects
--------------

:class:`Telnet` instances have the following methods:


61
.. method:: Telnet.read_until(expected, timeout=None)
62

63 64
   Read until a given byte string, *expected*, is encountered or until *timeout*
   seconds have passed.
65

66 67 68
   When no match is found, return whatever is available instead, possibly empty
   bytes.  Raise :exc:`EOFError` if the connection is closed and no cooked data
   is available.
69 70 71 72


.. method:: Telnet.read_all()

73
   Read all data until EOF as bytes; block until connection closed.
74 75 76 77


.. method:: Telnet.read_some()

78 79
   Read at least one byte of cooked data unless EOF is hit. Return ``b''`` if
   EOF is hit.  Block if no data is immediately available.
80 81 82 83 84 85


.. method:: Telnet.read_very_eager()

   Read everything that can be without blocking in I/O (eager).

86 87 88
   Raise :exc:`EOFError` if connection closed and no cooked data available.
   Return ``b''`` if no cooked data available otherwise. Do not block unless in
   the midst of an IAC sequence.
89 90 91 92 93 94


.. method:: Telnet.read_eager()

   Read readily available data.

95 96 97
   Raise :exc:`EOFError` if connection closed and no cooked data available.
   Return ``b''`` if no cooked data available otherwise. Do not block unless in
   the midst of an IAC sequence.
98 99 100 101 102 103


.. method:: Telnet.read_lazy()

   Process and return data already in the queues (lazy).

104 105 106
   Raise :exc:`EOFError` if connection closed and no data available. Return
   ``b''`` if no cooked data available otherwise.  Do not block unless in the
   midst of an IAC sequence.
107 108 109 110 111 112


.. method:: Telnet.read_very_lazy()

   Return any data available in the cooked queue (very lazy).

113 114
   Raise :exc:`EOFError` if connection closed and no data available. Return
   ``b''`` if no cooked data available otherwise.  This method never blocks.
115 116 117 118 119 120 121 122 123


.. method:: Telnet.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 ``SE`` command.
   This method never blocks.


124
.. method:: Telnet.open(host, port=0[, timeout])
125 126 127

   Connect to a host. The optional second argument is the port number, which
   defaults to the standard Telnet port (23). The optional *timeout* parameter
128
   specifies a timeout in seconds for blocking operations like the connection
Georg Brandl's avatar
Georg Brandl committed
129
   attempt (if not specified, the global default timeout setting will be used).
130 131 132 133

   Do not try to reopen an already connected instance.


134
.. method:: Telnet.msg(msg, *args)
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163

   Print a debug message when the debug level is ``>`` 0. If extra arguments are
   present, they are substituted in the message using the standard string
   formatting operator.


.. method:: Telnet.set_debuglevel(debuglevel)

   Set the debug level.  The higher the value of *debuglevel*, the more debug
   output you get (on ``sys.stdout``).


.. method:: Telnet.close()

   Close the connection.


.. method:: Telnet.get_socket()

   Return the socket object used internally.


.. method:: Telnet.fileno()

   Return the file descriptor of the socket object used internally.


.. method:: Telnet.write(buffer)

164
   Write a byte string to the socket, doubling any IAC characters. This can
165
   block if the connection is blocked.  May raise :exc:`OSError` if the
166
   connection is closed.
167

168 169 170 171
   .. versionchanged:: 3.3
      This method used to raise :exc:`socket.error`, which is now an alias
      of :exc:`OSError`.

172 173 174 175 176 177 178 179 180 181 182

.. method:: Telnet.interact()

   Interaction function, emulates a very dumb Telnet client.


.. method:: Telnet.mt_interact()

   Multithreaded version of :meth:`interact`.


183
.. method:: Telnet.expect(list, timeout=None)
184 185 186 187

   Read until one from a list of a regular expressions matches.

   The first argument is a list of regular expressions, either compiled
188
   (:ref:`regex objects <re-objects>`) or uncompiled (byte strings). The
189 190
   optional second argument is a timeout, in seconds; the default is to block
   indefinitely.
191 192

   Return a tuple of three items: the index in the list of the first regular
193 194
   expression that matches; the match object returned; and the bytes read up
   till and including the match.
195

196 197 198
   If end of file is found and no bytes were read, raise :exc:`EOFError`.
   Otherwise, when nothing matches, return ``(-1, None, data)`` where *data* is
   the bytes received so far (may be empty bytes if a timeout happened).
199 200

   If a regular expression ends with a greedy match (such as ``.*``) or if more
201
   than one expression can match the same input, the results are
Georg Brandl's avatar
Georg Brandl committed
202
   non-deterministic, and may depend on the I/O timing.
203 204 205 206 207


.. method:: Telnet.set_option_negotiation_callback(callback)

   Each time a telnet option is read on the input flow, this *callback* (if set) is
208
   called with the following parameters: callback(telnet socket, command
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
   (DO/DONT/WILL/WONT), option).  No other action is done afterwards by telnetlib.


.. _telnet-example:

Telnet Example
--------------

.. sectionauthor:: Peter Funk <pf@artcom-gmbh.de>


A simple example illustrating typical use::

   import getpass
   import telnetlib

   HOST = "localhost"
226
   user = input("Enter your remote account: ")
227 228 229 230
   password = getpass.getpass()

   tn = telnetlib.Telnet(HOST)

231 232
   tn.read_until(b"login: ")
   tn.write(user.encode('ascii') + b"\n")
233
   if password:
234 235
       tn.read_until(b"Password: ")
       tn.write(password.encode('ascii') + b"\n")
236

237 238
   tn.write(b"ls\n")
   tn.write(b"exit\n")
239

240
   print(tn.read_all().decode('ascii'))
241