;=================================
;timeoutを10秒に設定
;=================================
timeout=10
;=================================
;yesnoboxの表示
;=================================
yesnobox 'マクロを開始しますか?' 'Logging'
if result=0 then
end
endif
;=================================
;22ならSSH、その他ならそのポート番号にtelnet
;USER変数にSSH様のusernameを書きます
;=================================
PORT=23
USER='sshuser'
;=================================
;fileopenでlist.txtを開き、FHに格納
;=================================
fileopen FH 'list.txt' 0
;=================================
;whileでループを開始する
;=================================
while 1
;=================================
;filereadlnでFHから読み出し
;LINEに格納
;=================================
filereadln FH LINE
;=================================
;ifを使って、ファイルの最後まで来たら、
;マクロのループから抜ける
;=================================
if result=1 then
break
endif
;=================================
;LINEにIPアドレスが格納されたので、
;LINEをIP_ADDRに代入する
;=================================
IP_ADDR = LINE
;=================================
;変数格納
;=================================
PWD = 'ciscoshun'
;=================================
;PORTに22が書いてあれば、SSH
;elseはその番号に応じてtelnet
;PORTの型は整数なので、
;int2str関数で文字列に変換し
;PORT_STR変数に格納する
;=================================
if PORT=22 then
strconcat IP_ADDR ' /ssh /auth=password /user='
strconcat IP_ADDR USER
strconcat IP_ADDR ' /passwd='
strconcat IP_ADDR PWD
connect IP_ADDR
else
strconcat IP_ADDR ':'
int2str PORT_STR PORT
strconcat IP_ADDR PORT_STR
strconcat IP_ADDR ' /nossh /T=1'
connect IP_ADDR
wait 'Password:'
sendln PWD
endif
;=================================
;telnet接続、ログ保存ディレクトリ
;=================================
getdir DIR
changedir DIR
;=================================
;ログ保存名の確定
;=================================
getdate DATE '%Y%m%d-%H%M%S.log'
SHRUN = 'show_run_'
SHLOG = 'show_log_'
strconcat SHRUN DATE
strconcat SHLOG DATE
;=================================
;show runのログを取得
;=================================
logopen SHRUN 0 0
wait '<'
pause 3
sendln 'en'
wait 'Password'
pause 3
sendln PWD
wait '#'
pause 3
sendln 'terminal length 0'
wait '#'
pause 3
sendln 'show run'
pause 5
sendln ''
wait '#'
logclose
;=================================
;show logのログを取得
;=================================
logopen SHLOG 0 0
sendln 'show log'
pause 5
sendln ''
wait '#'
sendln 'exit'
logclose
pause 5
;=================================
;ここでループ元に戻る
;=================================
endwhile
;=================================
;FHを無効化する
;=================================
fileclose FH
;=================================
;messageboxの使用
;=================================
messagebox 'Successfully Done' 'Logging'
end