shell通过shell编写ping包及arp的监控并发送短信

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell通过shell编写ping包及arp的监控并发送短信相关的知识,希望对你有一定的参考价值。

  1. #!/bin/bash
  2. NOW="`date +%Y%m%d-%H:%M:%S`"
  3. PHONES=15134567893
  4. IP=10.100.8.78
  5. GATEWAY=10.100.30.1
  6. #ping失误的短信内容
  7. content1="host is failed"
  8. #arp主机网关失误的短信内容
  9. content2="GW is failed"
  10. #ping日志路径
  11. LogFile="/tmp/ping`date "+%Y%m%d-%H-%M-%S"`.log"
  12. #ping对方主机100个包并将结果输出到日志
  13. ping -c100 $IP &> $LogFile
  14. #用if,else语句判断是否ping通,
  15. if [ "$?" == "0" ]; 
  16.     then
  17.         echo "$NOW $IP is ok">> $LogFile
  18. else
  19.         echo "$NOW $IP is down">> $LogFile &/usr/bin/curl -d "phones=$PHONES&content= $NOW $IP $content" "content-type: application/x-www-form-urlencoded;charset=UTF-8" "http://短信网关:8080"
  20. fi
  21. #分隔符
  22. echo "================================" >> $LogFile
  23. #arp自己网关
  24. arp $GATEWAY &>>$LogFile
  25. num=$(cat $LogFile |grep eth0|wc -l)
  26.     if [ "$num" == "0" ]; 
  27.         then
  28.           echo "$NOW $GATEWAY is down">> $LogFile &/usr/bin/curl -d "phones=$PHONES&content= $NOW $GATEWAY $content1" "content-type: application/x-www-form-urlencoded;charset=UTF-8" "http://短信网关:8080"
  29. fi

以上是关于shell通过shell编写ping包及arp的监控并发送短信的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本批量获取内网主机的MAC地址

[shell]通过ping检测整个网段IP的网络状态脚本

shell通过ping实现ip检测

Shell基础:使用for循环结构使用while循环结构基于case分支编写脚本使用Shell函数中断及退出

shell概述

shell脚本和任务基础