#-*- coding: utf-8 -*-
#!/usr/bin/python
import paramiko
import threading

def ssh2(ip,username,passwd,cmd):
    try:
        ssh = paramiko.SSHClient()
        ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        ssh.connect(ip,远程端口,username,passwd,timeout=5)
        for m in cmd:
            stdin, stdout, stderr = ssh.exec_command(m)
#           stdin.write("Y")   #简单交互,输入 ‘Y’
            out = stdout.readlines()
            #屏幕输出
            for o in out:
                print o,
        print '%s\tOK\n'%(ip)
        ssh.close()
    except :
        print '%s\tError\n'%(ip)


if __name__=='__main__':
    cmd = ['date','df -h']#你要执行的命令列表
    username = ""  #用户名
    passwd = ""    #密码
    threads = []   #多线程
    for i in range(1,255):
        ip = '192.168.199.'+str(i)
        a=threading.Thread(target=ssh2,args=(ip,username,passwd,cmd))
        a.start()

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-24
  • 2021-10-31
  • 2022-12-23
  • 2021-12-29
  • 2021-07-09
  • 2022-12-23
猜你喜欢
  • 2021-05-17
  • 2021-06-20
  • 2021-07-06
  • 2021-07-01
  • 2022-12-23
  • 2021-11-23
相关资源
相似解决方案