shell檢測ip衝突

markzy5201190發表於2012-06-18
[html] view plaincopy
<embed>
  1. network="10.5.110"  
  2. for id in $(seq 200 255)  
  3. do  
  4.         ping -c 1 -w 1 ${network}.${id} > ./null && result=0 || result=1  
  5.   
  6.         if [ "$result" == 0 ];then  
  7.                 echo "server ${network}.${id}埠是可用"  
  8.         else  
  9.                 echo "server ${network}.${id}埠是不可用"  
  10.         fi  
  11. done  

連結來源:http://blog.csdn.net/chen861201/article/details/7028622

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26855487/viewspace-733139/,如需轉載,請註明出處,否則將追究法律責任。

相關文章