腳本檢測同網段下ip佔用情況

#!/bin/bash  a=1 while (($a<=255)) do  ping 192.168.200.$a -c 3 | grep -q "ttl=" && echo "192.168.200.$a  yes" || echo "192.168.200.$a  no" > ip.txt  let "a++" done 能ping通的地址顯示如下 不能ping通的地址寫入ip.txt中
相關文章
相關標籤/搜索