您好,登錄后才能下訂單哦!
有時候想看看網段中有哪些IP被用了,可以用這個快速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!"
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。