我是靠谱客的博主 虚幻小土豆,最近开发中收集的这篇文章主要介绍python实现ssh连接执行指令的两种方式Demo,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

python版本:python3.7.4

Demo:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
################################################
#author: SkyJ
#date  : 2019/7/17
################################################

import os
import sys
import string
import datetime
import time
import paramiko   #导入paramiko

hostname = "192.168.1.11"
username = "root"
password = "SkyJ"
cmdList = ['ls -ln', 'df -hn']

#第一种ssh连接执行指令方式
def sshRunCmd(hostname, username, password, cmdList):
    try:
        client = paramiko.SSHClient()
        client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        #创建ssh连接
        client.connect(hostname=hostname, port=22, username=username, password=password)
        # 开启ssh管道
        ssh = client.get_transport().open_session()
        ssh.get_pty()
        ssh.invoke_shell()
        #执行指令
        for cmd in cmdList:
            ssh.sendall(cmd)
            time.sleep(0.5)
            result = ssh.recv(102400)
            result = result.decode(encoding='UTF-8',errors='strict')
            print (result)
    except Exception as e:
        print ("[%s] %s target failed, the reason is %s" % (datetime.datetime.now(), hostname, str(e)))
    else:
        print ("[%s] %s target success" % (datetime.datetime.now(), hostname))
    finally:
        ssh.close()
        client.close()

#第二种ssh连接执行指令方式
def sshRunCmd2(hostname, username, password, cmdList):
    try:
        client = paramiko.SSHClient()
        client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        #创建ssh连接
        client.connect(hostname=hostname, port=22, username=username, password=password)
        #执行指令
        for cmd in cmdList:
            stdin, stdout, stderr = client.exec_command(cmd)
            result = stdout.read()
            result = result.decode(encoding='UTF-8',errors='strict')
            print (result)
    except Exception as e:
        print ("[%s] %s target failed, the reason is %s" % (datetime.datetime.now(), hostname, str(e)))
    else:
        print ("[%s] %s target success" % (datetime.datetime.now(), hostname))
    finally:
        client.close()


if __name__ == '__main__':
    sshRunCmd(hostname, username, password, cmdList)
    sshRunCmd2(hostname, username, password, cmdList)

 

最后

以上就是虚幻小土豆为你收集整理的python实现ssh连接执行指令的两种方式Demo的全部内容,希望文章能够帮你解决python实现ssh连接执行指令的两种方式Demo所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(84)

评论列表共有 0 条评论

立即
投稿
返回
顶部