Python 3.x--paramiko模块详解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 3.x--paramiko模块详解相关的知识,希望对你有一定的参考价值。
一、使用paramiko模块实现SSH功能
下列代码在Windows上运行,连接虚拟机中centos系统。
import paramiko # 创建SSH对象 ssh = paramiko.SSHClient() # 允许连接不在know_hosts文件上的主机 ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) # 连接服务器 ssh.connect(hostname="192.168.0.99", port=22, username="root", password="rootroot") # 执行命令 stdin, stdout, stderr = ssh.exec_command(‘df‘) # 获取结果 result = stdout.read().decode() # 获取错误提示(stdout、stderr只会输出其中一个) err = stderr.read() # 关闭连接 ssh.close() print(stdin, result, err)
注:如果注释“ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())”这句,会报错。
以上是关于Python 3.x--paramiko模块详解的主要内容,如果未能解决你的问题,请参考以下文章
RW007系列综合实战2使用RW007模块连接小米蓝牙温湿度计2代
python扩展实现方法--python与c混和编程 转自:http://www.cnblogs.com/btchenguang/archive/2012/09/04/2670849.html(示例代