所以我尝试了几个模块pxssh,pexpect等,我似乎无法获得与ssh代理的ssh连接。基本上我想要做的是使用我们的SSH代理,它可以访问我们的其余设备作为其他设备的跳转点,然后运行命令。这在ipython中有效,但是当它连接时会引发下面列出的异常,但是它会继续执行其余命令并且工作正常。但是,当只是作为python脚本运行时,它只会导致脚本失败。由于例外,我认为它失败了。有没有办法关闭异常,或阻止它拯救?或者我这样做是错的吗?
我也试过搞乱提示设置和auto_prompt_reset设置......
代理主机不是真正的linux主机,或cisco,这可能是默认设置不起作用的原因。
不确定从何处开始,所以任何帮助或见解都会很棒。
import pxssh
s = pxssh.pxssh()
hostname = '10.10.10.4'
username = 'username'
password = 'password!'
s.login (hostname, username, password)
s.sendline ('connect 10.10.5.1')
s.prompt(timeout=2)
print s.before
s.endline ('')
s.sendline ('show run')
s.prompt(timeout=2)
print s.before
发布的异常。
In [40]: s.login (hostname, username, password)
---------------------------------------------------------------------------
TIMEOUT Traceback (most recent call last)
<ipython-input-40-51f00f2075f5> in <module>()
----> 1 s.login (hostname, username, password)
/usr/lib/python2.7/dist-packages/pxssh.pyc in login(self, server, username, password, terminal_type, original_prompt, login_timeout, port, auto_prompt_reset)
241 self.close()
242 raise ExceptionPxssh ('unexpected login response')
--> 243 if not self.synch_original_prompt():
244 self.close()
245 raise ExceptionPxssh ('could not synchronize with original prompt')
/usr/lib/python2.7/dist-packages/pxssh.pyc in synch_original_prompt(self)
132 # If latency is worse than these values then this will fail.
133
--> 134 self.read_nonblocking(size=10000,timeout=1) # GAS: Clear out the cache before getting the prompt
135 time.sleep(0.1)
136 self.sendline()
/usr/lib/python2.7/dist-packages/pexpect.pyc in read_nonblocking(self, size, timeout)
822 raise EOF ('End of File (EOF) in read_nonblocking(). Very pokey platform.')
823 else:
--> 824 raise TIMEOUT ('Timeout exceeded in read_nonblocking().')
825
826 if self.child_fd in r:
TIMEOUT: Timeout exceeded in read_nonblocking().
答案 0 :(得分:4)
在为自己研究之后,我在Stackoverflow上发现了另一篇文章,其中提问者发布了他们的解决方案。我测试了解决方案,它也适用于我自己。问题是usr / lib / python.2.6 / dist-packages / pxssh.py中的代码片段已过时/缺失。 (它也可能在usr / lib / python.2.6 / site-packages / pxssh.py中)。
导航到此文件并添加以下代码行:
self.sendline() #Line 134
time.sleep(0.5) #Line 135
这应该插在行
的正上方self.read_nonblocking(size=10000,timeout=1) # GAS: Clear out the cache before getting the prompt
和中提琴,再次运行你的代码,它应该像魅力一样工作。 感谢:python pexpect: SSHing then updating the date