この記事は公開されてから1年以上経過しています。情報が古い可能性がありますので十分ご注意ください。
TERA TERM自動ログイン、Log記録スクリプトを紹介します。
1.個別Login用IPアドレス、ホスト名。
※ホスト名はLogファイル命名用
test_web_1.ttl
hostIP = '172.18.36.10'
hostname = 'test_web_1'
include 'common.ttl'
2.共通処理
common.ttl
; ユーザIDとパースワード
username = 'admin'
password = 'password'
msg = hostIP
strconcat msg ':22 /ssh /auth=password /user='
strconcat msg username
strconcat msg ' /passwd='
strconcat msg password
connect msg
;----- Logファイル -----;
logdir = 'd:\teraterm_log\'
;ディフォルトLogファイルが存在なければ、作成する
EXECMD = 'cmd /c md '
strconcat EXECMD logdir
exec EXECMD
logfile = logdir
strconcat logfile username
strconcat logfile '@'
strconcat logfile hostname
getdate datetime '-%Y%m%d-%H%M%S'
strconcat logfile datetime
strconcat logfile '.log'
logopen logfile 0 1
end
生成されるファイル名は下記となります。 admin@test_web_1-20191031-171241.log