簡單介紹python連線telnet和ssh的兩種方式
導讀 | 本文主要介紹了python連線telnet和ssh的兩種方式,文中透過示例程式碼介紹的非常詳細,具有一定的參考價值,感興趣的小夥伴們可以參考一下 |
Telnet 連線方式
#!/usr/bin/env python # coding=utf-8 import time import telnetlib import logging __author__ = 'Evan' save_log_path = 'result.txt' file_mode = 'a+' format_info = '%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s' logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) # 新增記錄 記錄器功能 fh = logging.FileHandler(save_log_path, mode=file_mode) fh.setLevel(logging.DEBUG) fh.setFormatter(logging.Formatter(format_info)) logger.addHandler(fh) # 增加顯示 記錄器功能 ch = logging.StreamHandler() ch.setLevel(logging.DEBUG) ch.setFormatter(logging.Formatter(format_info)) logger.addHandler(ch) def telnet_handle(host='', port=''): handle = telnetlib.Telnet(host, port, timeout=10) handle.set_debuglevel(2) # Display connect info (send command & received info) logger.debug('Connect host: {} port: {} successful'.format(host, port)) try: #獲取登入提示‘login:' 後輸入密碼。 handle.read_until('login:', timeout=5) #傳送命令 登入,使用者名稱:admin 密碼:admin handle.write('admin\n') #使用者名稱 #如果有輸入密碼的提示符可以開啟這一條,並修正確的密碼提示符 #handle.read_until('輸入密碼提示符', timeout=5) time.sleep(1) handle.write('admin\n') #密碼 time.sleep(1) handle.write('en\n') #執行指令 time.sleep(1) handle.write('sys\n') #執行指令 time.sleep(1) handle.write('display running-config\n') #執行指令 time.sleep(1) handle.write('show stack\n') #執行指令 time.sleep(1) #讀取所有資訊 result = handle.read_very_eager() logger.info('Received info: {}'.format(result)) finally: handle.close() if __name__ == '__main__': telnet_handle(host='192.168.10.1', port='23')
ssh連線方式
#!/usr/bin/env python # coding=utf-8 import paramiko,sys,time client = paramiko.SSHClient() client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) #連線SSH伺服器 client.connect("192.168.10.1",22,"admin","admin") #執行命令的方式一 連線linux傳送固定指令 stdin,stdout,stderr = client.exec_command("whoami") time.sleep(2) print(stdout.read()) stdin,stdout,stderr = client.exec_command("cat /root/lzhi/c_call_python.txt") print(stdout.read()) stdin,stdout,stderr = client.exec_command("ls") print(stdout.read()) stdin,stdout,stderr = client.exec_command("ls -la") print(stdout.read()) #執行命令的方式二 獲取命令列引數,並且刪除引數1.保留需要執行的命令 buf = sys.argv del buf[0] str1 = ' '.join(buf) print(str1) #執行命令列引數給出的命令 stdin,stdout,stderr = client.exec_command(str1) #time.sleep(1) print(stdout.read())
到此這篇關於詳解python連線telnet和ssh的兩種方式的文章就介紹到這了。
原文來自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2841297/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- gitlab兩種連線方式:ssh和http配置介紹GitlabHTTP
- 連線MySQL資料庫的兩種方式介紹MySql資料庫
- 簡單介紹MySQL開啟事務的兩種方式MySql
- javascript函式宣告兩種主要方式簡單介紹JavaScript函式
- js字串連線簡單介紹JS字串
- HTTP代理的兩種連線方式HTTP
- 【Python Oracle】使用cx_Oracle 連線oracle的簡單介紹PythonOracle
- js宣告陣列的幾種方式簡單介紹JS陣列
- Oracle中的外連線簡單介紹(轉)Oracle
- 簡單介紹redis加鎖常用幾種方式Redis
- 動態IPvps介紹,有哪種連線方式?
- 設定按鈕失效的幾種方式簡單介紹
- 網頁中使用css的幾種方式簡單介紹網頁CSS
- python連線clickhouse資料庫的兩種方式小結Python資料庫
- 透過PHP連線My SQL的兩種方法簡介(轉)PHPSQL
- SSH綜合查詢的兩種方式
- Python簡單介紹Python
- js 加號+運算子字串連線簡單介紹JS字串
- 簡單介紹python中的單向連結串列實現Python
- 簡單介紹Golang列印複雜結構體的兩種方法Golang結構體
- javascript除錯效能的兩種簡單方式JavaScript除錯
- redis兩種持久化方式的優缺點介紹Redis持久化
- javascript呼叫函式的方式簡單介紹JavaScript函式
- SQL Server埠更改後的資料庫連線方式簡要介紹SQLServer資料庫
- Machine Learning (3) - 介紹兩種儲存和讀取模型的方式Mac模型
- Redis持久化的兩種方式的優缺點介紹Redis持久化
- node.js連線mysql資料庫簡單介紹Node.jsMySql資料庫
- 簡單介紹mysql中資料庫覆蓋匯入的幾種方式MySql資料庫
- oracle資料庫透過sqlplus連線的幾種方式介紹Oracle資料庫SQL
- javascript函式呼叫方式簡單介紹JavaScript函式
- 分散式鎖簡單入門以及三種實現方式介紹分散式
- js清除閉包的通常方式簡單介紹JS
- jquery自定義事件的使用方式簡單介紹jQuery事件
- 本地SSH方式連線例項
- 簡單介紹四種Python 列表反轉顯示的方法Python
- python內建函式的簡單使用和介紹Python函式
- 實現js檔案動態載入的幾種方式簡單介紹JS
- 簡單介紹python process模組Python