我正在尝试制作一个脚本,通过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)
您可能没有使用python 2.6或更高版本。引用自文档:
在2.6版更改:timeout被添加。