Shell扫描所在网段存活主机

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell扫描所在网段存活主机相关的知识,希望对你有一定的参考价值。

本例以c类地址为例,如果是A类或者B类地址,将脚本稍作修改即可

ipaddr=`/usr/sbin/ip a | grep $1 | grep inet | awk '{print $2}'`
netmask=`echo ${ipaddr} | awk -F "/" '{print $2}'`
if [ $netmask -eq 24 ];then
    subnets=`echo ${ipaddr} | awk -F "." '{print $1"."$2"."$3"."}'`
    acount=0
    for i in `seq 1 25`
    do
        /usr/bin/ping ${subnets}${i} -c 2 > /dev/null
        if [ $? -eq 0 ];then
            echo "${subnets}$i is online"
            let count+=1
        else
            echo "${subnets}$i is not online"
        fi
    done
fi      
echo "There are $count hosts onlie"

执行脚本时需要加上参数(网卡的连接名,如ens33)

以上是关于Shell扫描所在网段存活主机的主要内容,如果未能解决你的问题,请参考以下文章

主动信息收集--二层发现(shell脚本)

白帽子***教你Kali Linux:原来网络主机扫描和发现可以这样做!

kali之nmap

[na]tcp&udp扫描原理

Python获取网络中的存活主机以及哪些主机是Linux

通过windows快速查询当前网段的存活主机