TTLファイル(.ttl)
以下の内容を、設定を書き換えてTTLファイルとして保存する。
; 設定(ここのみ書き換えて使いまわす)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
username = 'kurita-shougo'
hostname = 'test.host.jp'
keyfile = 'C:\Users\kurita-shougo\.ssh\id_rsa'
passwdfile = 'C:\Users\kurita-shougo\tool\teraterm\password.dat'
configfile = 'C:\Users\kurita-shougo\tool\teraterm\TERATERM.INI'
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
msg = 'Enter password for user '
strconcat msg username
passwdkey = username
strconcat passwdkey '@'
strconcat passwdkey hostname
getpassword passwdfile passwdkey password
msg = hostname
strconcat msg ':22 /ssh /auth=publickey'
strconcat msg ' /user='
strconcat msg username
strconcat msg ' /keyfile='
strconcat msg keyfile
strconcat msg ' /passwd="'
strconcat msg password
strconcat msg '"'
strconcat msg ' /F='
strconcat msg configfile
connect msg
TTLファイルを「Tera Term Macro Interpreter」で実行するだけでログインができる。