广州明生堂生物科技有限公司


一个ping检测告警函数代码

网络编程 一个ping检测告警函数代码 06-22

#!/bin/bash
ping_monitor()
{
host_=(203 204 205 207 208 209 210 212 213 214 215 216 217 218 219 220 221)
ping_count=3
called=(13000000001 13000000002 13000000003)
calling=13000000000
callop=1310000000
#main------------------------------------------------------------
echo "`date "+%Y%m%d %H:%M:%S"`----->脚本开始执行......">>ping_log
for host_1 in ${host_[*]};do
host=192.168.1.$host_1
echo "-------->开始检测$host服务器通迅是否正常,ping次数$count"
ping_result=`ping $host -c $ping_count |tail -2 |head -1`
#sleep 1
echo "-------->服务器$host检测已完成"
#取成功条数
succ_ping=`echo ${ping_result:23:1}`
#取失败百分比
loss_ping=`echo ${ping_result:46:4}`
if [ $succ_ping -eq $ping_count ];then
echo "本次检测结果---->$host服务器ping检测正常"
echo "`date "+%Y%m%d %H:%M:%S"`--->$host服务器ping检测正常" >>ping_log
else
echo "本次检测结果---->$host服务器有丢包现象,丢包率为:$loss_ping"
echo "`date "+%Y%m%d %H:%M:%S"`--->$host服务器有丢包现象,丢包率为:$loss_ping" >>ping_err_log
#插入短信表—smssend00
for called in ${telno[*]};do
mysql -h$dbhost -u$dbuser -p$dbpass -D$dbbase <<GETRECODE
INSERT INTO $dbtable (servercode,smsservercode,groupid,priority,calling,called,payer,orderdatetime,senddatetime,effectstarttime,
effectendtime,effectstarttime2,effectendtime2,invaliddatetime,feevalue,iffee,message,hideflag,msgtype,smsfeetype,ifsmsreport,service
type,morelatetomtflag,reserve,optempid,optuserid,clientprogramtype,optcode,optip,remark)
VALUES
(2,2,1,0,'$calling','$called','$callop',Now(),Now(),'00:00:00','23:59:59',NULL,NULL,NULL,0,1,'服务器告警!!$host服务器检测到有丢包现像,丢包率:$loss_ping',0,1,2,0,'2_2',NULL,NULL,1,668,1,3001,'192.168.1.182',NULL)
GETRECODE
done
fi
done
echo "`date "+%Y%m%d %H:%M:%S"`----->脚本运行完毕......">>ping_log
}

shell写的告警次数控制及恢复示例代码
俺也是新手,写的有点老土,权当练手了,供初学的朋友们参考吧。#!/bin/bashif[$succ_ping-gt$((ping_count-1))];thenif[-f./alarm_file/alarm_$host];thenrm-rf./alarm_file/alarm_$

一个简单的转换输出的shell脚本代码
一个简单的转换输出的shell脚本,从健盘输入a,b,c这种格式输出如下格式:ac#!/bin/bashread-p'请输入:'echo$REPLY.tmp5count=`grep-o','.tmp5|wc-l`echo$countcount_=$((count+1))i

检查linux网络状态的两个脚本
一、通过定时收发email检测网络连通性#/bin/bashecho"Dailytestmail"state.txtmail-sServer_Stateabc@jbxue.comstate.txtrm-df./state.txt~crontab-e增加如下任务1007***/root/checkNKmail&


编辑:广州明生堂生物科技有限公司

标签:服务器,脚本,率为,次数,现象