10

我用谷歌搜索了“python ssh”。有一个很棒的模块pexpect,可以使用 ssh(带密码)访问远程计算机。

远程电脑连接好后,我就可以执行其他命令了。但是我无法再次在 python 中得到结果。

p = pexpect.spawn("ssh user@remote_computer")
print "connecting..."
p.waitnoecho()
p.sendline(my_password)
print "connected"
p.sendline("ps -ef")
p.expect(pexpect.EOF) # this will take very long time
print p.before

在我的情况下如何得到结果ps -ef

4

4 回答 4

11

您是否尝试过更简单的方法?

>>> from subprocess import Popen, PIPE
>>> stdout, stderr = Popen(['ssh', 'user@remote_computer', 'ps -ef'],
...                        stdout=PIPE).communicate()
>>> print(stdout)

当然,这只是因为我已经ssh-agent预先加载了远程主机知道的私钥。

于 2009-08-21T23:07:00.063 回答
3
child = pexpect.spawn("ssh user@remote_computer ps -ef")
print "connecting..."
i = child.expect(['user@remote_computer\'s password:'])
child.sendline(user_password)
i = child.expect([' .*']) #or use i = child.expect([pexpect.EOF])
if i == 0:
    print child.after # uncomment when using [' .*'] pattern
    #print child.before # uncomment when using EOF pattern
else:
    print "Unable to capture output"


Hope this help..
于 2011-08-25T06:32:20.990 回答
1

尝试发送

p.sendline("ps -ef\n")

IIRC,您发送的文本是逐字解释的,因此另一台计算机可能正在等待您完成命令。

于 2009-08-21T15:43:45.480 回答
1

您可能还想研究paramiko,它是 Python 的另一个 SSH 库。

于 2009-08-21T19:08:36.253 回答