python 使用paramiko模块上传本地文件到ssh
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用paramiko模块上传本地文件到ssh相关的知识,希望对你有一定的参考价值。
我们要了解几个函数:
paramiko.Tranport(("目标ip,端口"))#这是上传目标的IP和端口
paramiko.SFTPClient.from_tranport()#安全文件传输凭证
sftp.put(loaclfile,remotefile)#loaclfile是要上传的文件,remotefile是上传后要保存的文件名
代码版:
import paramiko ssh=paramiko.Transport(("192.168.223.129",22)) ssh.connect(username="root",password="root") sftp=paramiko.SFTPClient.from_transport(ssh) localfile="使用说明.txt" remotefile="使用说明.txt" try: sftp.put(localfile,remotefile) except Exception: print("[-]put Error:User name or password error or uploaded file does not exist") print("上传") ssh.close()
成功图:
转载请注释:来自本地址
以上是关于python 使用paramiko模块上传本地文件到ssh的主要内容,如果未能解决你的问题,请参考以下文章