当前位置:   article > 正文

expect自动化交互案例——sftp自动上传log到主机指定位置

expect自动化交互案例——sftp自动上传log到主机指定位置

脚本作用

从主机上拉取数据生成log文件,再通过expect自动化交互通过sftp上传log文件到指定位置

#!/bin/bash

cur_date="`date +%Y-%m-%d`"

#收取计算机信息
echo "1.1计算机名称" >> /tmp/$(hostname)_quarterly_check_$cur_date_$cur_date.log
hostname >> /tmp/$(hostname)_quarterly_check_$cur_date.log
echo "=========================================================================" >> /tmp/$(hostname)_quarterly_check_$cur_date.log

echo "1.2操作系统版本" >> /tmp/$(hostname)_quarterly_check_$cur_date_$cur_date.log
cat /etc/redhat-release >> /tmp/$(hostname)_quarterly_check_$cur_date.log
echo "=========================================================================" >> /tmp/$(hostname)_quarterly_check_$cur_date.log

#注意需要提前安装expect
#自动上传log到SFTP
targetServerUser=infra
targetserverIP=172.16.16.1
targetServerPasswd='Password@123!'
expect << EOF
log_user 0
spawn sftp $targetserverUser@$targetServerIP
expect {
	-re "Are you sure you want to continue connecting*" {
		sleep 2
		send "yes\r"
		exp_continue
		}
	"*password:*" {
		sleep 2
		send "$targetServerPasswd\r"
		expect {
			"Hello, I'm freeFTPd*" {
				puts "sftp 连接成功,上传日志到$targetserverIP"
				send "put /tmp/*_quarterly_check_$cur_date.log /\r"
				expect {
					"*100%*" {
					puts "sftp 上传完成"
					send "exit\r"
					}
					"*Permission denied*" {
					puts "sftp 上传失败,Permission denied"
					}
				}
			}
			"*Permission denied*" {
				puts "sftp 连接失败,Permission denied"
			}
			"*timeout*" {
				puts "sftp 连接超时"
			}
		}
		}
}
EOF

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/197593
推荐阅读
相关标签
  

闽ICP备14008679号