サーチ…


パラメーター

パラメータ使用法
ホスト名このパラメータは、接続を確立する必要があるホストを指示します
ユーザー名ホストにアクセスするために必要なユーザ名
ホストポート
パスワードアカウントのパスワード

ssh接続

from paramiko import client
ssh = client.SSHClient() # create a new SSHClient object
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) #auto-accept unknown host keys
ssh.connect(hostname, username=username, port=port, password=password) #connect with a host
stdin, stdout, stderr = ssh.exec_command(command) # submit a command to ssh
print stdout.channel.recv_exit_status() #tells the status  1 - job failed


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow