2

我正在尝试制作一个脚本,该脚本通过 telnet 连接到服务器。我正在使用 python 和 telnetlib。我在超时工作时遇到问题。我想在连接到主机时使用可选超时,以便在主机不在线时得到异常。

我已经阅读了 python telnetlib 文档,但我不知道我的代码有什么问题。

这是我的简单代码:

import telnetlib

host = 'hostname'
tn = telnetlib.Telnet(host, 23, 5) # port 23, timeout 45secs
print 'Connecting to', host
tn.close()

这是我的错误信息:

Exception exceptions.AttributeError: "Telnet instance has no attribute 'sock'" in      <bound method Telnet.__del__ of <telnetlib.Telnet instance at 0x7f269864b8c0>> ignored
Traceback (most recent call last):
File "test2.py", line 7, in <module>
tn = telnetlib.Telnet(host, 23, 5)
TypeError: __init__() takes at most 3 arguments (4 given)
4

1 回答 1

4

您可能没有使用 python 2.6 或更高版本。从文档中引用:

在 2.6 版更改:添加了超时。

于 2011-11-17T13:02:26.477 回答