给出以下代码:
import telnetlib
import sys
def func1(IP,user,passw):
t=telnetlib.Telnet(IP)
t.write(user.encode('ascii')+b'\n')
t.write(passw.encode('ascii')+b'\n')
return t
def func2(t,command):
t.write(command.encode('ascii')+b'\n')
print(command)
user=sys.argv[1]
passw=sys.argv[2]
IP=sys.argv[3]
t=func1(IP,user,passw)
for i in range(6):
func2(t, "message "+str(i))
通过查看服务器并对其进行Wireshark,只有消息1和2可以通过。
现在,如果我按如下方式更改func2(t,command)
功能:
def func2(t,command):
t.write(command.encode('ascii')+b'\n')
t.read_eager() #This is the new line.
print(command)
一切正常,所有消息都已传输完毕。
有什么想法吗?
Python3.3 WindowsXP
答案 0 :(得分:0)
您需要阅读回来的文本以防止套接字阻塞。这就是你的其他方法有效的原因。
在真实世界会话中,您将始终回读登录和命令的结果。