博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
use paramiko to connect remote server and execute command
阅读量:6818 次
发布时间:2019-06-26

本文共 480 字,大约阅读时间需要 1 分钟。

#!/usr/bin/env pythonimport sys, paramikohostname = ''password = ''command = 'ls'username = ""port = 22try:    client = paramiko.SSHClient()    client.load_system_host_keys()    client.set_missing_host_key_policy(paramiko.WarningPolicy)    client.connect(hostname, port=port, username=username, password=password)    stdin, stdout, stderr = client.exec_command(command)    print(stdout.read(), end='')finally:    client.close()

转载于:https://www.cnblogs.com/otfsenter/p/9678354.html

你可能感兴趣的文章