paramiko模块
Posted yangxiufeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了paramiko模块相关的知识,希望对你有一定的参考价值。
import paramiko import time import web def Print_creen(): ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect(hostname=‘192.168.50.3‘,port=22,username=‘root‘,password=‘123456‘) stdin,stdout,stderr=ssh.exec_command(‘df -h‘) result= stdout.read() results = result.decode(‘utf8‘) print(results) ssh.close() return results Print_creen()
以上是关于paramiko模块的主要内容,如果未能解决你的问题,请参考以下文章