shell指令碼實現信用盤程式製作快速ping網段內的IP地址

oasanmu發表於2019-09-10

想看網段中有哪些IP被用了,信用盤程式製作q<115.28.8.00.9.9>可以用這個快速ping做一個初步的判斷。可以自己指定測試IP網段,並將測試結果整理排序到檔案。




#!/bin/bash


#V1.0 2019-09-10


#Ping test shell script by tutor




clear


>ip-up.txt


>ip-down.txt




while true;


 do


    read -p "Please input the ip segment for ping test(like 192.168.100) : "  segment






     if [ -z $segment  ] ; then




       segment="192.168.100"




     fi






    echo -n "the ip segment is ${segment} , are you sure to continue [y/n] ? "




    read  action




     if [ -z $action  ] ; then


          break


     fi




     if [  "$action" =  "y"  ]; then


         break


     fi


done




echo "ping test is ready to run! "




for i in  {1..254}


 do


      {


        ping -c2 -W1 ${segment}.${i}  &>/dev/null


        if [ $? -eq 0 ]; then


           echo "${segment}.$i is up" &>/dev/null  >> ip-up.txt


        else


           echo "${segment}.$i is down" &>/dev/null >> ip-down.txt


        fi


     }&


done




wait


            sort -n -k 4 -t . ip-up.txt -o ip-up.txt


            cat ip-up.txt


            sort -n -k 4 -t . ip-down.txt -o ip-down.txt


            cat ip-down.txt




echo "ping test are finished!"


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

相關文章