#!/bin/bash
#××× QQ××× url.txt文件直接填写需要监控的网址 第六版
#添加需要监控的网址 echo "evecom.net" >> url.txt
#降低误报,可以配合IP监控脚本一起用

cur_time(){
        date "+%Y/%m/%d %H:%M:%S"
}
systemname(){
name=`cat url2.txt|grep $url|wc -l`
if [ $name -eq 1 ];then
	cat url2.txt|grep -w $url
else
        echo "$url"
fi
}

[ ! -f /root/url.txt ] && echo "url.txt文件不存在" && exit 1

while read url
do
	[ -z $url  ] && echo "url.txt存在空格 检查文件格式" && exit 1
        for ((i=1;i<13;i++))
        do
                rule1=`curl -i -s -k -L -m 10 $url|grep "200 OK"|wc -l` 
                if [ $rule1 -eq 1 ];then
                     echo "$(cur_time) 第$i次检查$url网页访问成功" >> check.log
				     break
				fi
				rule2=`curl -i -s -k -L -m 10 $url|sed -n '1p'|grep "200"|wc -l`#20190719新增加判断规则
				if [ $rule2 -eq 1 ];then
                     echo "$(cur_time) 第$i次检查$url网页访问成功" >> check.log
				     break
                elif [ $i = 12 ];then
                     echo "$(cur_time) $(systemname) 网页连续$(expr $i \* 5)秒无法访问,请检查!"|mail -s "【重要告警】网页不可达" ×××@×××.com
                     echo "$(cur_time) 第$i次检查$url网页访问失败" >> checkfail.log
                else
                     echo "$(cur_time) 第$i次检查$url网页访问失败" >> checkfail.log
                     sleep 5
                fi

        done
done < /root/url.txt

--------------------------------------------------------------------------------


1. 发送邮件 配置/etc/mail.rc就可以实现 百度教程一堆
2. 如何使用
/root目录下创建脚本 
vi check.sh
授权可执行权限
chmod +x check.sh
每3分钟执行一次脚本 调用crontab
crontab –e
*/3 * * * * sh /root/check.sh
-------------------------------------------------------
监控网站可达性,当网站出现访问不可达的情况发出邮件告警。扫描频率可修改;
#!/bin/bash
#20190705 url.txt文件直接填写需要监控的网址 第四版
#添加需要监控的网址 echo "evecom.net" >> url.txt
cur_time(){
        date "+%Y/%m/%d %H:%M:%S"
}
[ ! -f /root/url.txt ] && echo "url.txt文件不存在" && exit 1

while read url
do
urldns=$(echo $url|sed 's@https://@@'|sed 's@http://@@')
nslookup $urldns >/dev/null 2>&1
if [ $? -ne 0 ] ;then
        echo "$(cur_time) $url 网页无法解析" >> checkfail.log
        continue
else
        for ((i=1;i<4;i++))
        do
                connect=`curl -i -s -k -L -m 10 $url|grep "200 OK"|wc -l` #https要用-k 有跳转-L -m 超时执行时间
                if [ $connect -eq 1 ];then
                        echo "$(cur_time) 第$i次检查$url网页访问成功" >> check.log
                        break
                elif [ $i = 3 ];then
                                echo "$(cur_time) 网页第$i次无法访问"|mail -s "网页不可达告警" ×××@×××.com
                                echo "$(cur_time) 第$i次检查$url网页访问失败" >> checkfail.log
                else
                                echo "$(cur_time) 第$i次检查$url网页访问失败" >> checkfail.log
                                sleep 5
                fi

        done
fi
done < /root/url.txt

----------------------------------------------------------------------------------------------------------------------------------
#!/bin/bash
#20190611 url.txt文件直接填写需要监控的网址 第三版
#QQ×××
time=`date +"%Y/%m/%d %H:%M.%S"`
[ ! -f /root/url.txt ] && echo "url.txt文件不存在" && exit 1

while read url
do
nslookup $url >/dev/null 2>&1
if [ $? -ne 0 ] ;then
	echo "$time $url 网页无法解析" >> checkfail.log
	continue
else
	for((i=1;i<4;i++))
	do
		connect=`curl -i -s $url|grep "200 OK"|wc -l`
		if [ $connect -eq 1 ];then
			echo "$time 第$i次检查$url网页访问成功" >> check.log
			break
		elif [ $i = 3 ];then
				echo "$time $url 网页第$i次无法访问"|mail -s "网页不可达告警" ×××@×××.com
				echo "$time 第$i次检查$url网页访问失败" >> checkfail.log
		else
				echo "$time 第$i次检查$url网页访问失败" >> checkfail.log
		fi
	done
fi
done < /root/url.txt

QQ×××

--------------------------------------
以下是前面写的2个版本 后来想想还是优化下
#!/bin/bash
#20190511 第二版本
check(){
connect=`curl -i -s $url|grep "200 OK"|wc -l`
}
time=`date +"%Y/%m/%d %H:%M.%S"`
[ ! -f /root/url.txt ] && echo "url.txt文件不存在" && exit 1

while read url
do
nslookup $url >/dev/null 2>&1
if [ $? -ne 0 ] ;then
	echo "$time $url 网页无法解析" >> $0.faillog
    continue
else
	echo "" >> $0.log
fi
check
if [ $connect -eq 1 ];then
	echo "$time 第1次检查$url网页访问成功" >> $0.log
else
	echo "$time 第1次检查$url网页访问失败" >> $0.faillog
	check
	if [ $connect -eq 1 ];then
		echo "$time 第2次检查$url网页访问成功" >> $0.log
	else
		echo "$time 第2次检查$url网页访问失败" >> $0.faillog
		check
		if [ $connect -eq 1 ];then
			echo "$time 第3次检查$url网页访问成功" >> $0.log
			else
			    echo "$time $url 网页3次无法访问"|mail -s "网页不可达告警" ×××@×××.com
                echo "$time $url 网页3次无法访问" >> $0.faillog
			fi
	   fi
fi
done < /root/url.txt

#!/bin/bash
#第一版 
while read url
do
connect1=`curl -i -s $url|grep "200 OK"|wc -l`
if [ $connect1 -eq 1 ];then   
	  echo `date +"%Y/%m/%d %H:%M.%S"` check $url first success >>/root/connect.log 
else
      connect2=`curl -i -s $url|grep "200 OK"|wc -l`
      echo `date +"%Y/%m/%d %H:%M.%S"` check $url first fail >>/root/fail.log
		if [ $connect2 -eq 1 ];then
		    echo `date +"%Y/%m/%d %H:%M.%S"` check $url second success >>/root/connect.log
		else
		    connect3=`curl -i -s $url|grep "200 OK"|wc -l`
			echo `date +"%Y/%m/%d %H:%M.%S"` check $url second fail >>/root/fail.log
			if [ $connect3 -eq 1 ];then
			    echo `date +"%Y/%m/%d %H:%M.%S"` check $url success >>/root/connect.log
			else
			    echo `date +"%Y/%m/%d %H:%M.%S"` Check $url for three failed visits|mail -s "网页不可达告警" ×××@×××.com
                echo `date +"%Y/%m/%d %H:%M.%S"` check $url Third fail >>/root/fail.log
			fi
		fi
fi
done < /root/url.txt