码迷,mamicode.com
首页 > 编程语言 > 详细

python ssh_command

时间:2016-05-10 23:45:48      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:password   python   command   import   justin   

import threading
import paramiko
import subprocess

def ssh_command(ip,user,passwd,command):
    client = paramiko.SSHClient()
    #client.load_host_keys(‘/home/justin/.ssh/known_hosts‘)
    client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    client.connect(ip,username=user,password=passwd)
    ssh_session=client.get_transport().open_session()
    if ssh_session.active:
        ssh_session.exec_command(command)
        print ssh_session.recv(1024)
    return

ssh_command(‘192.168.100.131‘,‘justin‘,‘lovesthepython‘,‘id‘)


本文出自 “专注php” 博客,请务必保留此出处http://jingshanls.blog.51cto.com/3357095/1771998

python ssh_command

标签:password   python   command   import   justin   

原文地址:http://jingshanls.blog.51cto.com/3357095/1771998

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!