使用paramiko互動小程式

來源:互聯網
上載者:User
小程式如下:

#!/usr/bin/env python3# -*- coding: utf-8 -*-import paramikoRED_COLOR='\033[1;31;48m'  #紅 ,配置終端輸出的顏色BLUE_COLOR='\033[1;34;48m'  #藍 ,配置終端輸出的顏色RES='\033[0m'def SSH_Pkey(Host,UserName,Pkey,Port=22):    #基於使用者名稱密鑰串連並執行命令    try:        private_key = paramiko.RSAKey.from_private_key_file(Pkey)        # 建立SSH對象        SSH = paramiko.SSHClient()        # 允許串連不在know_hosts檔案中的主機        SSH.set_missing_host_key_policy(paramiko.AutoAddPolicy())        # 串連伺服器        SSH.connect(hostname=Host, port=Port, username=UserName,key_filename=Pkey)        # 執行命令        print ("%s成功登入到伺服器%s,請輸入操作命令!%s"%(RED_COLOR,Host,RES) )        while True:            CMD=input('%s請輸入輸入操作命令:%s'%(BLUE_COLOR,RES))            if CMD=='exit':                print ("%s執行%s命令退出!%s" %(RED_COLOR,CMD,RES))                # 關閉串連                SSH.close()                break            else:                stdin, stdout, stderr = SSH.exec_command(CMD)                print ("%s執行命令%s返回結果:%s"%(RED_COLOR,CMD,RES))                for i in stdout.read().splitlines():                    print (i.decode('utf-8'))    except :        print ("%sSSH遠程登入失敗,退出程式!\n" %(RED_COLOR,RES )) if __name__ == '__main__':    Host='59.1.1.1'    UserName='root'    SSH_Key=r'D:\Identity2048'    Port = 6382    SSH_Pkey(Host=Host,UserName=UserName,Pkey=SSH_Key,Port=Port)

如下:

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.