Expect スクリプトを使用して Linkproof デバイスをバックアップしようとしましたが、問題が発生しました。これは私の最初のスクリプトであり、限界に達しました;)
#!/usr/bin/expect
spawn ssh @IPADDRESS
expect "username:"
# Send the username, and then wait for a password prompt.
send "@username\r"
expect "password:"
# Send the password, and then wait for a shell prompt.
send "@password\r"
expect "#"
# Send the prebuilt command, and then wait for another shell prompt.
send "system config immediate\r"
#Send space to pass the pause
expect -re "^ *--More--\[^\n\r]*"
send ""
expect -re "^ *--More--\[^\n\r]*"
send ""
expect -re "^ *--More--\[^\n\r]*"
send ""
# Capture the results of the command into a variable. This can be displayed, or written to disk.
sleep 10
expect -re .*
set results $expect_out(buffer)
# Copy buffer in a file
set config [open linkproof.txt w]
puts $config $results
close $config
# Exit the session.
expect "#"
send "logout\r"
expect eof
出力ファイルの内容:
ホスト '@IP (XXX.XXX.XXX.XXX)' の信頼性を確立できません。
RSA キーのフィンガープリントは XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX です。
接続を続行しますか (はい/いいえ)? @ユーザー名
「はい」または「いいえ」を入力してください: @password
「はい」または「いいえ」と入力してください: システム構成即時
「はい」または「いいえ」を入力してください:
ご覧のとおり、コマンドの結果はファイルにありません。理由を理解するのを手伝ってくれませんか? ご協力いただきありがとうございます。
ロムアルド