91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用python3怎么模擬xshell遠程執行liunx命令

發布時間:2021-05-26 10:16:48 來源:億速云 閱讀:228 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關使用python3怎么模擬xshell遠程執行liunx命令,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

from time import *
import paramiko
# 定義一個類,表示一臺遠端linux主機
class Linux(object):
  # 通過IP, 用戶名,密碼,超時時間初始化一個遠程Linux主機
  def __init__(self, ip, username, password, timeout=30):
    self.ip = ip
    self.username = username
    self.password = password
    self.timeout = timeout
    # transport和chanel
    self.t = ''
    self.chan = ''
    # 鏈接失敗的重試次數
    self.try_times = 3
 
  # 調用該方法連接遠程主機
  def connect(self):
    while True:
      # 連接過程中可能會拋出異常,比如網絡不通、鏈接超時
      try:
        self.t = paramiko.Transport(sock=(self.ip, 22))
        self.t.connect(username=self.username, password=self.password)
        self.chan = self.t.open_session()
        self.chan.settimeout(self.timeout)
        self.chan.get_pty()
        self.chan.invoke_shell()
        # 如果沒有拋出異常說明連接成功,直接返回
        print('連接%s成功' % self.ip)
        # 接收到的網絡數據解碼為str
        print(self.chan.recv(65535).decode('utf-8'))
        return
      # 這里不對可能的異常如socket.error, socket.timeout細化,直接一網打盡
      except Exception as e1:
        if self.try_times != 0:
          print('連接%s失敗,進行重試' % self.ip)
          self.try_times -= 1
        else:
          print('重試3次失敗,結束程序')
          exit(1)
 
  # 斷開連接
  def close(self):
    self.chan.close()
    self.t.close()
 
  # 發送要執行的命令
  def send(self, cmd):
    cmd += '\r'
    result = ''
    # 發送要執行的命令
    self.chan.send(cmd)
    # 回顯很長的命令可能執行較久,通過循環分批次取回回顯,執行成功返回true,失敗返回false
    while True:
      sleep(0.5)
      ret = self.chan.recv(65535)
      ret = ret.decode('utf-8')
      result += ret
      return result
  '''
  發送文件
  @:param upload_files上傳文件路徑 例如:/tmp/test.py
  @:param upload_path 上傳到目標路徑 例如:/tmp/test_new.py
  '''
  def upload_file(self,upload_files,upload_path):
    try:
      tran=paramiko.Transport(sock=(self.ip, self.port))
      tran.connect(username=self.username, password=self.password)
      sftp = paramiko.SFTPClient.from_transport(tran)
      result=sftp.put(upload_files, upload_path)
      return True if result else False
    except Exception as ex:
      print(ex)
      tran.close()
    finally:
      tran.close()
 
 
# 連接正常的情況
if __name__ == '__main__':
  host = Linux('192.168.16.57', 'root', '+B*A15*EFpKG') # 傳入Ip,用戶名,密碼
  host.connect()
  # result = host.send('ls') # 發送一個查看ip的命令
  def input_cmd(str):
    return input(str)
  tishi_msg="輸入命令:"
  while True:
    msg=input(tishi_msg)
    if msg=="exit":
      host.close()
      break
    else:
      res=host.send(msg)
      data=res.replace(res.split("\n")[-1],"")
      tishi_msg=res.split("\n")[-1]
      print(res.split("\n")[-1] + data.strip("\n"))

運行代碼測試效果圖:

使用python3怎么模擬xshell遠程執行liunx命令

關于使用python3怎么模擬xshell遠程執行liunx命令就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

高州市| 鱼台县| 青铜峡市| 林周县| 通榆县| 平度市| 于田县| 濮阳县| 三河市| 山阳县| 全州县| 博野县| 湘乡市| 鄂温| 嘉善县| 尚义县| 惠安县| 康乐县| 卓资县| 绩溪县| 道孚县| 延长县| 介休市| 深泽县| 治多县| 玉树县| 宁明县| 墨竹工卡县| 涞水县| 洪雅县| 文昌市| 鄂尔多斯市| 依兰县| 宜川县| 云梦县| 阿鲁科尔沁旗| 高淳县| 襄汾县| 马尔康县| 宜章县| 涞源县|