最后更新:2022-06-24 12:24:56 手机定位技术交流文章
yum install expect -y
[root@localhost opt]# expect
expect1.1>
vim reboot.exp
#/usr/local/bin/expect
spawn telnet "ip地址"
expect “H3C login:”
发送"用户名n"
expect “Password:”
发送"密码n"
expect “”
send “rebootr”
expect “This command will reboot the system”
send “Yr”
expect eof
每天早上3点重新启动设备并记录日志重新启动。
crontab -e
0 3 * * * date >> /opt/reboot.log && expect /opt/reboot.exp >> /opt/reboot.log
本文由 在线网速测试 整理编辑,转载请注明出处。