问题:设备的输出未被重定向到文件。 程序:根据我的程序,我已经登录了一个设备并尝试收集少量输出。这是程序。
#!/usr/bin/python
import pexpect
import time
import sys
IP_Address= '10.197.225.226'
Username = 'hey'
Password= 'hey'
session = pexpect.spawn("telnet " + IP_Address)
result= session.expect(["Username:"])
if result!=0:
print("-----Failure connection")
exit()
session.sendline(Username)
result= session.expect(["Password:"])
session.sendline(Password)
result= session.expect(["#"])
print('success')
C2=input('How many commands you want to enter:')
for i in range (0,C2):
C1=raw_input('Enter the commands:' )
session.expect('#')
session.sendline(C1)
session.logfile= open("Result1.txt","w")
print('Done')
请帮忙!
注意:我是新来的。
我使用的是Python 2.7.6(默认,2016年10月26日,20:30:19) linux2上的[GCC 4.8.4] 输入“帮助”,“版权”,“信用”或“许可”以获取更多信息。
答案 0 :(得分:0)