码迷,mamicode.com
首页 > 编程语言 > 详细

检测一个网段多个主机网络是否正常(使用数组)

时间:2016-08-23 01:43:47      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:centos6   网络   检测   主机   

#!/bin/bash -x

. /etc/init.d/functions

m=192.168.137.

array=(

$(seq 10)

)

for n in ${array[@]}

do

ip=${m}${n}

[ `ping -c4 ${ip}|wc -l` -eq "9" ]||{

logfile=$(date +%F).${ip}.log

touch /tmp/$logfile 

echo "${ip} is disconnected!" >/tmp/$logfile

action "${ip}" /bin/false

}&&{

action "${ip}" /bin/true

}

done


本文出自 “神奇的海螺” 博客,谢绝转载!

检测一个网段多个主机网络是否正常(使用数组)

标签:centos6   网络   检测   主机   

原文地址:http://bilishell.blog.51cto.com/11756401/1841268

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!