client = paramiko.SSHClient()
stdin, stdout, stderr = client.exec_command(command)
มีวิธีใดในการรับโค้ดส่งคืนคำสั่งหรือไม่?
ยากที่จะแยกวิเคราะห์ stdout / stderr ทั้งหมดและรู้ว่าคำสั่งเสร็จสมบูรณ์หรือไม่
client = paramiko.SSHClient()
stdin, stdout, stderr = client.exec_command(command)
มีวิธีใดในการรับโค้ดส่งคืนคำสั่งหรือไม่?
ยากที่จะแยกวิเคราะห์ stdout / stderr ทั้งหมดและรู้ว่าคำสั่งเสร็จสมบูรณ์หรือไม่
คำตอบ:
SSHClient เป็นคลาส Wrapper ที่เรียบง่ายรอบ ๆ ฟังก์ชันการทำงานระดับล่างใน Paramiko เอกสาร APIแสดงรายการrecv_exit_status()
วิธีการในChannel
ชั้นเรียน
สคริปต์การสาธิตที่ง่ายมาก:
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:
$
recv_exit_status
คุณไม่สามารถใช้วิธีนี้ได้เนื่องจากรหัสอาจหยุดชะงัก คุณต้องใช้เอาต์พุตคำสั่งในขณะที่รอให้คำสั่งเสร็จสิ้น ดูParamiko SSH ตาย / แขวนกับการส่งออกขนาดใหญ่
ตัวอย่างที่ง่ายกว่ามากที่ไม่เกี่ยวข้องกับการเรียกใช้คลาสแชนเนล "ระดับล่าง" โดยตรง (เช่น - ไม่ใช้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
recv_exit_status
คุณไม่สามารถใช้วิธีนี้ได้เนื่องจากรหัสอาจหยุดชะงัก คุณต้องใช้เอาต์พุตคำสั่งในขณะที่รอให้คำสั่งเสร็จสิ้น ดูParamiko SSH ตาย / แขวนกับการส่งออกขนาดใหญ่
ขอบคุณสำหรับ 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()