우리의 Linux 설정에는 비밀번호 없는 인증을 위해 구성된 키 생성이 없습니다. 따라서 EXPECT
쉘 스크립트에서는 비밀번호 없는 인증만 사용해야 합니다.
/usr/bin/expect<<EOF >> ${LOG_FILE}
set timeout 60
spawn sftp ${EWS_USER}@${EWS_HOST}:${TGT_DIR}
expect "*?assword:"
send "$password\r"
expect "sftp>"
send "put $local_dir/$line\r"
expect "sftp>"
send "bye\r"
expect EOF
EOF
filename=$(basename "$line")
# echo "File Name: $filename"
#Calculate the MD5Sum locally.
local_md5sum=$(md5sum "$line")
#echo "Local MD5Sum: ${local_md5sum}"
#Calculate the MD5sum in remote machine
remote_md5sum=$(ssh ${EWS_USER}@${EWS_HOST} "cd '$TGT_DIR' ; find -name '$filename' -exec md5sum {} \;" < /dev/null)
#echo "Remote MD5Sum: ${remote_md5sum}"
LOCAL_SUM=`echo ${local_md5sum} | awk {'print $1'}`
REMOTE_SUM=`echo ${remote_md5sum} | awk {'print $1'}`
echo $LOCAL_SUM
echo $REMOTE_SUM
if [ "${LOCAL_SUM}" != "${REMOTE_SUM}" ]
then
echo "SFTP Successfull"
else
echo "SFTP Unsuccessfull"
fi
EXPECT
다음 시나리오에서 사용하는 방법을 알고 있습니다 .
sftp ${EWS_USER}@${EWS_HOST} << EOF >> ${LOG_NAME}
put ${LOCAL_DIR}/${line} ${TGT_DIR}/${line}
EOF
하지만 다음 시나리오에서 EXPECT를 사용하여 연결을 비밀번호 없이 만드는 방법을 알고 계십니까?
remote_md5sum=$(ssh ${EWS_USER}@${EWS_HOST} "cd '$TGT_DIR' ; find -name '$filename' -exec md5sum {} \;" < /dev/null)
답변1
expect
ssh
for는 for와 정확히 같은 방식으로 사용됩니다 sftp
. 가장 복잡한 부분은 출력에서 체크섬을 추출하는 방법입니다. 이는 다음 라인을 따라 실행될 수 있습니다.
#!/usr/bin/env expect
#
# remote host sftp and then checksum a file. assumes linux coreutils
# available on both ends
if {[llength $argv] == 0} {
puts stderr "Usage: $argv0 somefiletoxfer"
exit 64
}
set local_file [lindex $argv 0]
set local_sum [lindex [split [exec md5sum $local_file] " "] 0]
set file_basename [lindex [split $local_file "/"] end]
set match_max 9999 ;# in the event of much output spam from sftp or ssh
set timeout 60
# these could also be read from $argv
set EWS_USER todofixme
set EWS_HOST todofixme
set TGT_DIR todofixme
set password hunter2
spawn sftp ${EWS_USER}@${EWS_HOST}:${TGT_DIR}
expect -ex "assword:"
send "$password\r"
expect -ex "sftp>"
send "put $local_file\r"
expect -ex "sftp>"
send "bye\r"
expect EOF
spawn ssh ${EWS_USER}@${EWS_HOST}
expect -ex "assword:"
send "$password\r"
send "md5sum ${TGT_DIR}/$file_basename\r"
expect -re {md5sum [^\n]+\n([A-Za-z0-9=_-]+) }
set remote_sum $expect_out(1,string)
send "exit\r"
expect EOF
if {$local_sum ne $remote_sum} {
puts stderr "a failure prompts this dispatch"
puts stderr "for thy checksums do mismatch"
puts stderr "local >$local_sum<"
puts stderr "remote >$remote_sum<"
exit 1
}
puts $remote_sum
exit 0