您的位置:首页 > 编程语言 > Python开发

Python实现SSH远程登陆,并执行远程命令

2016-08-01 09:26 666 查看

主要使用paramiko 模块

import paramiko

def sshclient_execmd(hostname, port, username, password, execmd):
paramiko.util.log_to_file("paramiko.log")

s = paramiko.SSHClient()
s.set_missing_host_key_policy(paramiko.AutoAddPolicy())

s.connect(hostname=hostname, port=port, username=username, password=password)
stdin, stdout, stderr = s.exec_command (execmd)
stdin.write("Y")  # Generally speaking, the first connection, need a simple interaction.

print stdout.read()

s.close()

def main():

hostname = '10.***.***.**'
port = 22
username = 'root'
password = '******'
execmd = "free"

sshclient_execmd(hostname, port, username, password, execmd)

if __name__ == "__main__":
main()
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: