标签:get login use mnt /tmp python 文件 pass 下载
1,使用到Python的paramiko模块2,下面直接上代码
import paramiko
localpath =r‘/tmp/a.txt‘
remotepath = r‘/mnt/b.txt‘
t = paramiko.Transport((ip,ssh_port))
t.connect(username="your login username",password="you password")
sftp =paramiko.SFTPClient.from_transport(t)
#download file
sft.get(remotepath,localpath)
#upload file
sft.put(localpath,remotepath)
sft.close()
标签:get login use mnt /tmp python 文件 pass 下载
原文地址:http://blog.51cto.com/13718210/2134940