web-dev-qa-db-ja.com

Paramikoを使用してSSHリターンコードを取得するにはどうすればよいですか?

client = paramiko.SSHClient()
stdin, stdout, stderr = client.exec_command(command)

コマンドの戻りコードを取得する方法はありますか?

すべてのstdout/stderrを解析し、コマンドが正常に終了したかどうかを知ることは困難です。

87
Beyonder

SSHClientは、Paramikoのより低レベルの機能の単純なラッパークラスです。 APIドキュメント は、Channelクラスの recv_exit_status() メソッドをリストします。

非常に簡単なデモスクリプト:

$ cat sshtest.py
import paramiko
import getpass

pw = getpass.getpass()

client = paramiko.SSHClient()
client.set_missing_Host_key_policy(paramiko.WarningPolicy())
client.connect('127.0.0.1', password=pw)

while True:
    cmd = raw_input("Command to run: ")
    if cmd == "":
        break
    chan = client.get_transport().open_session()
    print "running '%s'" % cmd
    chan.exec_command(cmd)
    print "exit status: %s" % chan.recv_exit_status()

client.close()

$ python sshtest.py
Password: 
Command to run: true
running 'true'
exit status: 0
Command to run: false
running 'false'
exit status: 1
Command to run: 
$
47
JanC

「下位レベル」チャネルクラスを直接呼び出すことを含まない、はるかに簡単な例(つまり、-[〜#〜] not [〜#〜]client.get_transport().open_session()コマンドを使用) :

import paramiko

client = paramiko.SSHClient()
client.set_missing_Host_key_policy(paramiko.AutoAddPolicy())
client.connect('blahblah.com')

stdin, stdout, stderr = client.exec_command("uptime")
print stdout.channel.recv_exit_status()    # status is 0

stdin, stdout, stderr = client.exec_command("oauwhduawhd")
print stdout.channel.recv_exit_status()    # status is 127
248
apdastous

JanCのおかげで、この例にいくつかの変更を加えてPython3でテストしました。これは本当に便利です。

import paramiko
import getpass

pw = getpass.getpass()

client = paramiko.SSHClient()
client.set_missing_Host_key_policy(paramiko.WarningPolicy())
#client.set_missing_Host_key_policy(paramiko.AutoAddPolicy())

def start():
    try :
        client.connect('127.0.0.1', port=22, username='ubuntu', password=pw)
        return True
    except Exception as e:
        #client.close()
        print(e)
        return False

while start():
    key = True
    cmd = input("Command to run: ")
    if cmd == "":
        break
    chan = client.get_transport().open_session()
    print("running '%s'" % cmd)
    chan.exec_command(cmd)
    while key:
        if chan.recv_ready():
            print("recv:\n%s" % chan.recv(4096).decode('ascii'))
        if chan.recv_stderr_ready():
            print("error:\n%s" % chan.recv_stderr(4096).decode('ascii'))
        if chan.exit_status_ready():
            print("exit status: %s" % chan.recv_exit_status())
            key = False
            client.close()
client.close()
5
perillaseed

私の場合、出力バッファリングが問題でした。バッファリングのため、アプリケーションからの出力は非ブロッキングの方法で出てきません。ここでバッファリングせずに出力を印刷する方法についての答えを見つけることができます: Disable output buffering 。要するに、次のように-uオプションを指定してpythonを実行するだけです。

> python -u script.py

0
Youngmin Kim