SecureCRT中python腳本編寫學習指南

引言

  • 在測試網絡設備中,一般使用腳本對設備端進行配置和測試以及維護;對於PE設備的測試維護人員來講使用較可能是SecureCRT工具;SecureCRT支持VB、JavaScript、Python等多種腳本語言,爲了實現腳本在CRT中更加豐富穩定地執行,掌握CRT的經常使用函數是很是有用的。接下來的時間我將對SecureCRT腳本編寫的經常使用函數展開學習應用。html

內容

(1)使用python語言實現SecureCRT中的Dialog功能python

複製代碼
# $language = "Python"
# $interface = "1.0"

#crt.Dialog.FileOpenDialog([title,[buttonLabel,[defaultFilename,[filter]]]])
#彈出一個對話框,用於選擇單個文件;若是選擇了具體文件則返回該文件的絕對路徑,若是選擇了彈窗的「取消」,則返回空。
filePath =  crt.Dialog.FileOpenDialog("please open a file","open","a.log","(*.log)|*.log")
#filePath =  crt.Dialog.FileOpenDialog("","","a.log","")
#crt.Dialog.MessageBox(message, [title, [icon|buttons]]) 警告、按鈕類型彈出一個消息框,能夠定義按鈕,使用按鈕和文本消息來實現和用戶的簡單對話;
crt.Dialog.MessageBox(filePath,"",64|0)
crt.Dialog.MessageBox("會話已斷開","session",64|2)
crt.Dialog.MessageBox("確認是否退出","session",32|1)
crt.Dialog.MessageBox("確認是否退出","session",32|3)
crt.Dialog.MessageBox("是否繼續安裝","session",32|4)
crt.Dialog.MessageBox("此會話已打開","session",48|5)
crt.Dialog.MessageBox("沒法鏈接此窗口","session",16|6)

#crt.Dialog.Prompt(message [, title [,default [,isPassword ]]])
#彈出一個輸入框,用戶能夠填寫文字,好比填寫文件名,填寫路徑,填寫IP地址等,運行結果若是點擊'ok',返回輸入的字符串,不然返回"" 
password = crt.Dialog.Prompt("password","session","admin",False)
crt.Dialog.MessageBox(password,"password",64|0)
password = crt.Dialog.Prompt("password","session","",True)
crt.Dialog.MessageBox(password,"password",64|0)
複製代碼

(2)使用python語言實現SecureCRT中的Screen功能網絡

複製代碼
# $language = "Python"
# $interface = "1.0"

# CurrentColumn返回當前光標的列座標。
curCol =  crt.Screen.CurrentColumn
crt.Dialog.MessageBox(str(curCol))

# CurrentRow返回當前光標的行座標。
curRow = crt.Screen.CurrentRow
crt.Dialog.MessageBox(str(curRow))

# Columns 返回當前屏幕的最大列寬
cols = crt.Screen.Columns
crt.Dialog.MessageBox(str(cols))

# Rows 返回當前屏幕的最大行寬
rows = crt.Screen.Rows
crt.Dialog.MessageBox(str(rows))

#IgnoreEscape 定義當使用WaitForString、WaitForStrings和ReadString這三個方法時是否獲取Escape字符(特殊字符如回車)默認是會獲取的
crt.Screen.IgnoreEscape = False
crt.Dialog.MessageBox(crt.Screen.ReadString(["\03"],5)) #獲取ctrl+c

crt.Screen.IgnoreEscape = True
crt.Dialog.MessageBox(crt.Screen.ReadString(["\03"],2)) #不獲取ctrl+c

# MatchIndex 定義當使用WaitForStrings和ReadString這三個方法時會根據參數的位置 獲取返回值,從1開始計算,若是沒有一個匹配則返回0.
outPut = crt.Screen.ReadString(["error","warning","#"],10)
index = crt.Screen.MatchIndex
if (index == 0):
    crt.Dialog.MessageBox("Timed out!")
elif (index == 1):
    crt.Dialog.MessageBox("Found 'error'")
elif (index == 2):
    crt.Dialog.MessageBox("Found 'warning'")
elif (index == 3):
    crt.Dialog.MessageBox("Found '#'")
    

# Synchronous 設置屏幕的同步屬性。若設置爲false,則在腳本中使用WaitForString、WaitForStrings、ReadString函數時可能存在丟失一部分數據的現象,設置爲true後可能會存在屏幕卡頓的狀況,默認爲false
crt.Screen.Synchronous = True
crt.Screen.Send("\r\n")
crt.Screen.ReadString("#")
crt.Screen.Send("\r\n")
crt.Screen.WaitForString("#")
crt.Screen.Send("\r\n")
crt.Screen.WaitForStrings(["#",">"])
crt.Screen.Send("conf t\r\n") 
  
# 方法
# Clear()清屏功能
# crt.Screen.Clear()

# get()按照座標取出一個矩形框內的屏幕上的字符(即從某行某列開始到其它行其它列),不包含字符串中的回車換行符,因此這個多用於獲取無格式的光標處字符串或某小段特定區域字符串。
out = crt.Screen.Get(row1, col1, row2, col2)
crt.Dialog.MessageBox(out)

# get2()解釋按照座標取出一個矩形框內的屏幕上的字符(即從某行某列開始到其它行其它列),包含字符串中的回車換行符,因此這個多用於獲取大段帶格式的字符串。
crt.Screen.Get2(row1, col1, row2, col2)

# IgnoreCase 使用全局參數設置控制在使用WaitForString、WaitForStrings和ReadString這三個函數時是否對大小寫敏感,默認爲false大小寫字符串都會檢查,設置爲true時則不會檢測大小寫。
crt.Screen.IgnoreCase = True
crt.Screen.Send("show memory\r\n")
crt.Screen.WaitForString("more")
crt.Screen.Send("\r\n")
crt.Screen.WaitForStrings("more","#")
crt.Screen.Send("\r\n")
crt.Screen.ReadString("more","#")

# Send() 向遠端設備或者屏幕發送字符串,當向屏幕發送字符串時須要指定第二個參數爲Ture
crt.Screen.Send("show version\r\n")
crt.Screen.Send("\r\nhello,world!\r\n",True)
crt.Screen.IgnoreCase = True
while (crt.Screen.WaitForString("more",10)):    
    crt.Screen.Send("\r\n")

# SendKeys()向當前窗口發送按鍵,包含組合按鍵,好比能夠發送相似"CTRL+ALT+C"等這樣的組合鍵,這樣寫便可:crt.screen.sendkeys("^%c");這個功能須要語言自己支持,目前只有VBS和JS腳本可使用。

# SendSpecial()能夠發送特殊控制碼,這個控制碼是Crt內置的功能,具體能夠包含的有Menu、Telnet、VT functions功能列表中提供的全部功能,
crt.Screen.SendSpecial("vT_HOLD_SCREEN")

# WaitForCursor()等待光標移動,當移動時返回值爲true,當有超時時間參數且超時時返回false,不然會一直等待光標移動。利用這個功能能夠用來判斷一個命令的輸出是否結束,
crt.Screen.WaitForCursor(5)
crt.Screen.Send("\r\nhello,world!\r\n",True)
if ( crt.Screen.WaitForCursor(5)):
    crt.Screen.Send("show version\r\n")

# WaitForKey()檢測有鍵盤按鍵時返回true,當有超時時間參數且超時時返回false,不然會一直等待按鍵
if (crt.Screen.WaitForKey(5)):
    crt.Screen.Send("show version\r\n")

# WaitForString()通常用於發送命令後等待某字符串
# crt.Screen.WaitForString(string,[timeout],[bCaseInsensitive])
crt.Screen.WaitForString("#",10)

# WaitForStrings()與WaitForString是一樣的功能,能夠等待多個字符串
outPut = crt.Screen.WaitForStrings(["error","warning","#"],10)
index = crt.Screen.MatchIndex
if (index == 0):
    crt.Dialog.MessageBox("Timed out!")
elif (index == 1):
    crt.Dialog.MessageBox("Found 'error'")
elif (index == 2):
    crt.Dialog.MessageBox("Found 'warning'")
elif (index == 3):
    crt.Dialog.MessageBox("Found '#'")
    
# ReadString()與WaitForStrings功能相似,都是等待某幾個字符出現,不一樣的是它還會讀取字符串以前出現的全部字符。
crt.Screen.ReadString([string1,string2..],[timeout],[bCaseInsensitive])        
一、string,必選參數,等待的字符串,最少有一個,能夠是特殊字符好比:\r\n;
二、timeout,可選參數,超時時間,當檢測不到對應字符串時會返回false,沒有此參數時會一直等待;
三、bCaseInsensitive,可選參數,大小寫不敏感,默認值是false,表示將檢測字符串的大小寫,當爲true時不檢測大小寫。   



複製代碼

本文轉自:

http://www.cnblogs.com/zhaoyujiao/p/4908627.htmlsession

相關文章
相關標籤/搜索