来自 pexpect (pxssh) 的 SSH 失败,当我尝试从 Linux 机器到 Windows SSH 客户端服



我正在尝试运行一个python脚本,该脚本从Linux机器ssh到Windows服务器并运行批处理文件。

经过一些研究,我意识到来自 pexpect 的 pxssh 类是一个可以使用的 ood 模块。当我在 linux 到 ssh 到 linux 机器上尝试这个模块时,没有问题。当我从 Linux 到 Windows 执行此操作时,它失败并显示以下错误: PXSSH 登录失败。

pxssh failed on login.
could not set shell prompt (received: ": rnx1b[2Jx1b[1HMicrosoft Windows [Version 10.0.14393]rn(c) 2016 Microsoft Corporation. All rights reserved.rnrnC:\Users\myname>unset PROMPT_COMMANDnPS1='[PEXPECT]\$ 'nset prompt='[PEXPECT]\$ 'n", expected: '\[PEXPECT\][\$\#] ').

我记得在Windows之前,Linux有不同的结束行的方式,例如(回车等(。我想知道是否知道这个问题的解决方案。 请注意,我可以手动使用从 linux 机器和 ssh 到 windows 机器的 shell,只有当我尝试编写 python 脚本并使用 pxssh 时才会失败。 谢谢你的帮助。 请注意,我的下一步是运行批处理文件并关闭连接。 我的简单脚本:

from pexpect import pxssh
import getpass
try:                                                            
s = pxssh.pxssh()
#hostname = raw_input('hostname: ')
#username = raw_input('username: ')
#password = getpass.getpass('password: ')
s.login ('192.168.0.144', 'username', 'password',  auto_prompt_reset=True)
s.sendline ('dir')
s.prompt()             # match the prompt
s.sendline ('exit')
s.logout()
print "I'm here"
except pxssh.ExceptionPxssh, e:
print "pxssh failed on login."
print str(e)

我使用退出而不是注销,因为我认为 Windows 上的 ssh 客户端服务器不支持注销

编辑:我已经禁用了auto_prompt_reset现在我得到了以下内容:

Traceback (most recent call last):
File "sshLogin.py", line 22, in <module>
s.logout()
File "/usr/local/lib/python2.7/dist-packages/pexpect/pxssh.py", line 355, in logout
index = self.expect([EOF, "(?i)there are stopped jobs"])
File "/usr/local/lib/python2.7/dist-packages/pexpect/spawnbase.py", line 321, in expect
timeout, searchwindowsize, async)
File "/usr/local/lib/python2.7/dist-packages/pexpect/spawnbase.py", line 345, in expect_list
return exp.expect_loop(timeout)
File "/usr/local/lib/python2.7/dist-packages/pexpect/expect.py", line 107, in expect_loop
return self.timeout(e)
File "/usr/local/lib/python2.7/dist-packages/pexpect/expect.py", line 70, in timeout
raise TIMEOUT(msg)
pexpect.exceptions.TIMEOUT: Timeout exceeded.
<pexpect.pxssh.pxssh object at 0xb72491cc>
command: /usr/bin/ssh
args: ['/usr/bin/ssh', 'username@192.168.0.144']
buffer (last 100 chars): 'Version 10.0.14393]rn(c) 2016 Microsoft Corporation. All rights reserved.rnrnC:\Users\myname>exitn'
before (last 100 chars): 'Version 10.0.14393]rn(c) 2016 Microsoft Corporation. All rights reserved.rnrnC:\Users\myname>exitn'
after: <class 'pexpect.exceptions.TIMEOUT'>
match: None
match_index: None
exitstatus: None
flag_eof: False
pid: 4523
child_fd: 5
closed: False
timeout: 30
delimiter: <class 'pexpect.exceptions.EOF'>
logfile: None
logfile_read: None
logfile_send: None
maxread: 2000
ignorecase: False
searchwindowsize: None
delaybeforesend: 0.05
delayafterclose: 0.1
delayafterterminate: 0.1
searcher: searcher_re:
0: EOF
1: re.compile("(?i)there are stopped jobs")

一些可能有用的资源: http://pexpect.readthedocs.io/en/stable/overview.html

按如下方式设置登录参数解决了我的问题

s.login(server= hostname, username=username, password='', terminal_type='ansi',
original_prompt=r"[#$]", login_timeout=10, port=22,
auto_prompt_reset=False, ssh_key=None, quiet=True,
sync_multiplier=1, check_local_ip=True)

但是,连接仍然很慢,我无法远程启动程序。 还有另一个提示:为了使用sendline方法,在字符串的开头和结尾添加回旋

相关内容

  • 没有找到相关文章

最新更新