Python Paramiko模块使用

1 执行远程命令

 

#!/usr/bin/python

import paramiko

 

ssh = paramiko.SSHClient()

ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect("IP地址",22,"用户名", "口令")

stdin, stdout, stderr = ssh.exec_command("你的命令")

print stdout.readlines()

ssh.close()

 

2 上传文件到远程

 

#!/usr/bin/python

import paramiko

 

t = paramiko.Transport(("IP地址",22))

t.connect(username = "用户名", password = "口令")

sftp = paramiko.SFTPClient.from_transport(t)

remotepath='/tmp/test.txt'

localpath='/tmp/test.txt'

sftp.put(localpath,remotepath)

t.close()

 

3 从远程下载文件

 

#!/usr/bin/python

import paramiko

 

t = paramiko.Transport(("IP地址",22))

t.connect(username = "用户名", password = "口令")

sftp = paramiko.SFTPClient.from_transport(t)

remotepath='/tmp/test.txt'

localpath='/tmp/test.txt'

sftp.get(remotepath, localpath)

t.close()

原文地址:https://www.cnblogs.com/s-seven/p/9307913.html