码迷,mamicode.com
首页 > 其他好文 > 详细

局域网ip地址扫描_v1版本

时间:2019-10-31 09:11:55      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:css   版本   工作   ip地址   $1   code   使用情况   address   add   

局域网ip地址扫描

工作中,我们有时需要对局域网中ip地址使用情况进行统计。可以使用shell脚本进行扫。

脚本功能:

  1. 在线使用IP写入list_online.txt文件
  2. 未在线IP写入list_offline.txt文件
#!/bin/bash
#2019年10月31日00:45:54
#IP address scanning v1
#sunjinhua
########################
NET_VER="$1"
NET="$NET_VER"
for ip in {1..250}
do  
    ping -c 1 $NET.$ip
    if [ $? -eq 0 ];then
        echo "$NET.$ip" >> list_online.txt
    else
        echo "$NET.$ip" >> list_offline.txt
    fi  
don

局域网ip地址扫描_v1版本

标签:css   版本   工作   ip地址   $1   code   使用情况   address   add   

原文地址:https://www.cnblogs.com/linux123/p/11768994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!