Python——SSHClient.py

brj880719發表於2017-11-09

自己封裝好的遠端連線的元件,後期會不斷完善

1、為了更方便採集資訊系統以及資料庫的資訊,我做了該元件

2、為了讓語句執行更順暢,位置不發生錯亂,暫時採用time.sleep()的方式解決

3、對於第二點會想辦法將方法完善,以希望大家多多提出寶貴建議

  1. #!/usr/bin/env python
  2. # coding:utf-8
  3. '''
  4. @author: Ryan Bai(白瑞鈞)
  5. @license:
  6. @contact: brj880719@hotmail.com
  7. @file: SSHClient.py
  8. @create time: 2017/11/8 18:11
  9. @desc:
  10. '''
  11. import paramiko
  12. from paramiko.py3compat import u
  13. import time

  14. '''
  15. @attention: : ssh客戶端使用
  16. @author: 白瑞鈞
  17. @param date:
  18. '''
  19. class SSHClient(object):

  20.     '''
  21.     @attention: 關閉 ssh 連結
  22.     @author: 白瑞鈞
  23.     @param ssh: ssh連結
  24.     '''
  25.     def close(self, ssh):
  26.         ssh.close()


  27.     '''
  28.     @attention: 建立 ssh 連結
  29.     @author: 白瑞鈞
  30.     @param v_username: 使用者名稱
  31.     @param v_password: 密碼
  32.     @param v_ip: IP
  33.     @param v_port: 埠號
  34.     '''
  35.     def sshConnection(self, v_username, v_password, v_ip, v_port=22):
  36.         # 建立SSH物件
  37.         ssh = paramiko.SSHClient()

  38.         # 把要連線的機器新增到known_hosts檔案中
  39.         ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

  40.         # 連線伺服器
  41.         ssh.connect(hostname=v_ip, port=v_port, username=v_username, password=v_password)

  42.         return ssh
  43.     # endregion


  44.     '''
  45.     @attention: 執行單條命令
  46.     @author: 白瑞鈞
  47.     @param ssh: ssh連結
  48.     @param v_cmd: 需要執行的命令
  49.     '''
  50.     def sshExecByOne(self, ssh, v_cmd):
  51.         # 執行
  52.         stdin, stdout, stderr = ssh.exec_command(v_cmd)
  53.         result = stdout.read()
  54.         
  55.         if not result:
  56.             result = stderr.read()

  57.         return result.decode()


  58.     '''
  59.     @attention: 執行命令集
  60.     @author: 白瑞鈞
  61.     @param ssh: ssh連結
  62.     @param l_cmd: 需要執行的命令集
  63.     @param exec_wait: 執行命令間隔時間
  64.     @param exit_wait: 退出等待時間
  65.     '''
  66.     def sshExecByMany(self, s, l_cmd, exec_wait, exit_wait):
  67.         ssh = s.invoke_shell()
  68.         # 執行
  69.         for v_cmd in l_cmd:
  70.             ssh.send(v_cmd)
  71.             ssh.send('\n')
  72.             time.sleep(exec_wait)
  73.             if v_cmd=='exit':
  74.                 time.sleep(exit_wait)

  75.         result = u(ssh.recv(9999))

  76.         return result


  77. if __name__ == '__main__':

  78.     getClient = SSHClient()
  79.     ssh = getClient.sshConnection('sys_admin', 'XSW@1qaz', '10.82.28.219')
  80.     l_cmd = ['sudo su - ',
  81.              'su - oracle',
  82.             'sqlplus / as sysdba',
  83.             u'select * from dual;',
  84.             'exit',
  85.              'df -h',
  86.              'exit']
  87.     result = getClient.sshExecByMany(ssh, l_cmd, 1, 1)
  88.     print(result)
  89.     getClient.close(ssh)

  90.     # getClient = SSHClient()
  91.     # ssh = getClient.sshConnection('sys_admin', 'XSW@1qaz', '10.82.28.219')
  92.     # result = getClient.sshExecByOne(ssh,'pwd')
  93.     # print(result)
  94.     # getClient.close(ssh)


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24851054/viewspace-2147009/,如需轉載,請註明出處,否則將追究法律責任。

相關文章