shell脚本练习 扫描当前的网段ip
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本练习 扫描当前的网段ip相关的知识,希望对你有一定的参考价值。
check_ok() { if [ $? -eq 0 ];then echo "$ip UP" else echo "$ip DOWN" fi } for i in `seq 1 255` do ip=`ifconfig|awk -F [:a-Z" "]+ ‘NR==2 {print $2}‘|cut -d. -f1,2,3`.$i ping -c1 -w1 $ip &>/dev/null check_ok done
以上是关于shell脚本练习 扫描当前的网段ip的主要内容,如果未能解决你的问题,请参考以下文章