亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

python如何處理telnet返回的More

發布時間:2021-08-12 13:51:54 來源:億速云 閱讀:272 作者:小新 欄目:開發技術

這篇文章主要介紹python如何處理telnet返回的More,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

問題:

需要循環獲取網元返回的某個參數,并計算出平均值。

解決方案:

通過expect解決返回More的問題。

通過具體的參數位置,精確獲取到參數。

討論:

參數位置固定,不好復用。

#! usr/bin/env python

# -*- coding: utf-8 -*-

import telnetlib
import math
import time

def get_param(b):
 "獲取相應的參數,返回float型參數組"
 c = []
 b = list(b)
 length = len(b)
 print length
 for x in b:
 c.append(float(x))
 print c
 return c

def get_avg(a):
 "獲取平均值"
 length = len(a)
 sum = 0
 for x in a:
 sum += x
 avg = sum/length
 return avg

def get_telnet(tn):
 "獲取telnet數據"
 for command in commands: 
 tn.write('%s\n' % command)
 time.sleep(0.5)
## result = tn.read_very_eager() # 不用read_all(),不能處理More
 print "**************"
 a = []
 a.append('More')
 print a
 result = str()
 while True:
  b,c,d = tn.expect(a,timeout=1)
  print b # 有More為0,無More為-1
  print 'cccccccccccccccccccccccccccccccccccccccccccc'
  print c
  print 'dddddddddddddddddddddddddddddddddddddddddddd'
  print d
  result += d
  if 0 == b:
  print "There has 'More'!!!"
  tn.write(r' ') #不用\r\n來繼續
  else:
  break
 print 'get result success!'
 print result #獲取到帶More的所有返回結果 
 a = result.split('\r\n') # 不要加r
 length = len(a)
 print length
 b = a[1].split(' ')
 print b
 print a[32]
 c = a[32]
 d = c.split(' ')
 print d
 length = len(d)
 print d[8]
 e = d[8].split('(')
 print e[0]
 return e[0] 

def close_telnet(tn):
 "執行完畢后,終止Telnet連接(或輸入exit退出)"
 tn.write('exit\n')
 tn.close()
 
def open_telnet(Host, username, password, finish, commands): 
 "Telnet遠程登錄"
 # 連接Telnet服務器 
 tn = telnetlib.Telnet(Host, port=23, timeout=10) 
 tn.set_debuglevel(2)
 # 輸入登錄用戶名 
 tn.read_until('Username:') 
 tn.write(username + '\n') 
 # 輸入登錄密碼 
 tn.read_until('Password:') 
 tn.write(password + '\n')

 # 登錄完畢后執行命令 
 tn.read_until(finish) 
 return tn
 
if __name__=='__main__': 
 Host = '' # Telnet服務器IP 
 username = '' # 登錄用戶名 
 password = '' # 登錄密碼 
 finish = '#' # 命令提示符
 param = []

 commands = ['sho optical-module-info xgei-1/3/1']
 tn = open_telnet(Host, username, password, finish, commands)
 for i in range(1,10):
 param.append(get_telnet(tn))
 close_telnet(tn)
 print param
 print get_avg(get_param(param))
 


'''

運行結果:

37
['Optical', 'Module', 'Position', ':', 'xgei-1/3/1']
Bias-Upper : 131(mA)  Bias-Lower : 0(mA)
['Bias-Upper', '', '', '', '', '', '', ':', '131(mA)', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Bias-Lower', '', '', '', '', '', '', ':', '0(mA)']
131(mA)
131
Telnet(172.10.1.123,23): send 'exit\n'
['131', '131', '131', '131', '131', '131', '131', '131', '131']
9
[131.0, 131.0, 131.0, 131.0, 131.0, 131.0, 131.0, 131.0, 131.0]
131.0
>>> 
'''

以上是“python如何處理telnet返回的More”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

天峻县| 武汉市| 永平县| 大洼县| 攀枝花市| 康平县| 木兰县| 长岭县| 宁国市| 吕梁市| 达孜县| 锡林郭勒盟| 娄底市| 沙湾县| 繁峙县| 南城县| 大英县| 太白县| 红原县| 昌都县| 南充市| 潜江市| 正阳县| 舞钢市| 浦东新区| 双峰县| 宁海县| 松原市| 延长县| 江门市| 利辛县| 鄂托克前旗| 那坡县| 闵行区| 巴林右旗| 靖州| 阜阳市| 鸡泽县| 虞城县| 板桥市| 辽宁省|