复制代码 代码如下:
#!/bin/bash
PING=`which ping`
DATE=`date +%Y%m%d%H%M`
TAIL=`which tail`
LOG=./ping$DATE.log
HOSTS="selboo.com.cn 221.130.191.97"
COUNT=200
for myHost in $HOSTS
do
count=$(ping -c $COUNT $myHost | grep ‘loss' | awk -F',' '{ print $3 }' | awk -F “%” ‘{ print $1 }')
if [ $count -ge 10 ]; then
/bin/echo selboo | mutt -s "$myHost pingispacketloss>10% $DATE" root@selboo.com.cn
fi
done
exit 0
复制上以上内容为ping.sh加入crontab中让其10分钟跑一次,其中发邮件程序为mutt
以下是补充:
linux 的和solaris的居然不一样!
复制代码 代码如下:
#!/bin/sh
PingConf='/opt/monitor/newIp'
#File where the log will be stored
LogDir='/opt/monitor/newLog'
#Define the interval time
INTERVAL='10'
#Define the alarm process
########################################################
proc_main()
{
while read IpAddress
do
#ingore any hash signs
case $IpAddress in
#*);;
*)
ping -w 20 $IpAddress -c 5 >errtmp$$
# ping $IpAddress -c 10 >errtmp$$
if [ $? = 0 ] ; then
rm errtmp$$
else
rm errtmp$$
ErrTime=`date +%Y/%m/%d/%H:%M:%S`
# echo "$ErrTime"": ""$IpAddress"" cann't be connected">>$LogDir
echo "$ErrTime"":""$IpAddress"" cann't be connected
">>$LogDir
sleep 1
cp /opt/monitor/newLog /opt/OV/www/htdocs/PingLog/new.html
sleep 1
# mail -s "$IpAddress"Cantreach -c 我的email </dev/null
play -v 50 /opt/monitor/123.au
fi
esac
done <$PingConf
}
##########################################################
# execute the proc_main function every the specified time INTERVAL
while [ "1" -eq "1" ]
do
# execute the proc_main function
proc_main
# suspend execution for INTERVAL seconds
sleep $INTERVAL
done
最近发表
- Centos7 metasploit-framework安装部署
- 记录systemd内存占用过多
- 错误提示open_basedir restriction in effect. File is not within the allowed path:的解决方法
- EUserv自动续期shell脚本配合crontab
- Elasticsearch 7.9.1集群安装配置
- 判断磁盘空间使用率是否达到阈值shell脚本
- TypeError: Unicode-objects must be encoded before hashing
- Unverified HTTPS request is being made
- Centos7 部署DHCP服务
- LVS负载调度NAT及DR教程
标签列表
- win11 (20)
- win11教程 (20)
- win11桌面 (1)
- 远程桌面 (1)
- 远程链接 (1)
- 清理缓存 (1)
- Win11如何设置右键经典模式 (2)
- Win11右键怎么设置原来的模样 (2)
- Win11图标 (2)
- Win11 (4)
- 本地磁盘 (1)
- win11正式版退回win10 (1)
- win10 (1)
- 管理员权限 (1)
- 帝国cms教程 (36)
- 火焰效果 (2)
- 火焰制作 (2)
- 火焰动图 (2)
- ps教程 (9)
- Office 2010 (2)
- Office2010 (2)
- Office2010激活 (2)
- Office2007 (4)
- Office2007安装 (4)
- Office2007激活 (4)
