知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

linux检查网络状态脚本

发布时间:2014-09-05 15:16:42作者:知识屋

linux检查网络状态脚本
 
1,通过定时收发email检测网络连通性  www.zhishiwu.com  
#/bin/bash 
echo "Daily test mail" > state.txt 
mail -s Server_State abc@md1.21.co.jp < state.txt 
rm -df ./state.txt 
~                          
crontab -e
增加如下任务
10 07 * * * /root/checkNKmail &
分时日月周
  www.zhishiwu.com  
2,定时检测网络状态通过email发送
checkserverstat脚本内容:
#/bin/bash 
echo "HZtelecomDNS" > state.txt 
ping -c 5 202.101.172.35 >> state.txt 
echo " 
bJU" &gt;&gt; state.txt 
ping -c 5 10.X.X.X >> state.txt 
echo "ADSL Gateway" >>state.txt 
ping -c 5 X.X.X.X >> state.txt 
echo "Server_Outside VPN" >>state.txt 
ping -c 5 192.168.2.100 >>state.txt 
echo "Server_Outside WAN" >> state.txt 
ping -c 5 X.X.X.X >> state.txt 
echo "VPN in company" >> state.txt 
ping -c 5 192.168.1.4 >>state.txt 
echo "L2tp at aaa Libweb" >>state.txt 
ping -c 5 X.X.X.X & >>state.txt 
mail -s Server_State admin@abc.com <state.txt 
rm -df ./state.txt 
~                           
crontab中增加任务
corntab -e
10 16 * * * /root/CheckWeatherState & 
10 09 * * * /root/checkserverstate & 
10 13 * * * /root/checkserverstate & 
10 17 * * * /root/checkserverstate &
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜