Python的paramiko,实现ssh

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的paramiko,实现ssh相关的知识,希望对你有一定的参考价值。

最简单的使用paramiko登录远程机器执行一些命令,学习实验楼的paramiko记录下来,第一次使用ConfigParser这个库,对于封装这些还是不太熟悉,只能慢慢来,嘿嘿嘿

 

这是python脚本文件,还有一个变量文本

import paramiko
import ConfigParser

class ParamikoClient:
    def __init__(self,config_str):
        self.config = ConfigParser.ConfigParser()
        self.config.read(config_str)

        self.client = paramiko.SSHClient()
        self.client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    def connet(self):

        try:
            self.client.connect(hostname=self.config.get(ssh,host),port=self.config.getint(ssh,port),username=self.config.get(ssh,username),password=self.config.get(ssh,password))
        except Exception,e:
            print e
            try:
                self.client.close()
            except:
                pass
    def run_cmd(self,cmd_str):
            stdin, stdout, stderr = self.client.exec_command(cmd_str)
            print stdout.read()

client = ParamikoClient(config.ini)
client.connet()
client.run_cmd(date)

 

config.ini文件

[ssh]
host = 192.168.1.101
port = 22
username = root
password = 123456

 

以上是关于Python的paramiko,实现ssh的主要内容,如果未能解决你的问题,请参考以下文章

Python paramiko模块(实现ssh)

Python的paramiko,实现ssh

Python中SSH协议的实现 - Paramiko

Python模块学习 - Paramiko

Python 3.x--paramiko模块详解

Python学习—paramiko模块实现简单的ssh与sftp