設計一個腳本,監控遠程的一臺機器(假設ip爲123.23.11.21)的存活狀態,當發現宕機時發一封郵件給你本身。python
#!/bin/bash
ip=123.23.11.21
ma=abc@139.com
while 1
do
ping -c10 $ip >/dev/null 2>/dev/null
if [ $? != "0" ]
then
python /usr/local/sbin/mail.py $ma "$ip down" "$ip is down,plese check."
#假設mail.py已經編寫並設置好了
fi
sleep 30
donebash