shell指令碼實現信用盤程式製作快速ping網段內的IP地址
想看網段中有哪些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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux下批量ping某個網段ip的指令碼Linux指令碼
- 設定Linux伺服器IP地址的shell指令碼Linux伺服器指令碼
- shell指令碼實現---Zabbix5.0快速部署指令碼
- Windows bat ping一個網段的ipWindowsBAT
- 內網IP地址實現HTTPS加密訪問教程內網HTTP加密
- 【Linux】【Shell】主控指令碼實現Linux指令碼
- golang實現抓取IP地址的蜘蛛程式Golang
- epoll實現快速ping
- win10怎麼ping ip地址_win10怎樣ping本機ip地址Win10
- yandexbot ip 地址段
- shell指令碼實現DNS正向解析指令碼DNS
- 程式碼上線的shell指令碼指令碼
- window下批次ping一段ip
- 透過Shell指令碼自動安裝Hive&JDBC測試&提供CDH5網盤地址指令碼HiveJDBCH5
- 通用程式部署shell指令碼指令碼
- 檢視Google Cloud的IP地址段GoCloud
- Shell指令碼最佳實踐指令碼
- Locust 程式碼指令碼實現指令碼
- 幾例實用的Shell指令碼指令碼
- Shell 指令碼程式設計陷阱指令碼程式設計
- Linux——新增預設路由(能ping通本網段,但是ping不通其他網段)Linux路由
- iOS使用shell指令碼注入混淆內容iOS指令碼
- [shell]shell指令碼實現每天自動抽取資料插入hive表指令碼Hive
- 能用js實現的最終用js實現,Shell指令碼也不例外JS指令碼
- 使用Shell指令碼程式監控網站URL是否正常指令碼網站
- 9個實用shell指令碼指令碼
- 分享兩個實用的shell指令碼指令碼
- PHP獲取MAC地址的實現程式碼PHPMac
- Shell 指令碼程式併發&程式數控制指令碼
- shell指令碼指令碼
- [ Shell ] 通過 Shell 指令碼匯出 CDL 網表指令碼
- Shell指令碼實現生成SSL自簽署證書指令碼
- 計算機網路知識總結:有關IP地址、子網掩碼、網路號、主機號、網路地址、主機地址以及ip段/數字的概念及筆試題計算機網路筆試
- 【網路安全】Shell 指令碼學習指令碼
- shell指令碼程式設計筆記指令碼程式設計筆記
- 7.shell指令碼程式設計指令碼程式設計
- 區域網/內網IP地址配置https證書教程內網HTTP
- 使用Shell指令碼查詢程式對應的程式ID指令碼