免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4385 | 回复: 4
打印 上一主题 下一主题

分享我的局域网ip扫描的小脚本 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-09-10 22:25 |只看该作者 |倒序浏览
  1. #!/usr/bin/perl


  2. ################################
  3. # this script is using to scan the lan 's ip.
  4. # this can show how much ip is in using.
  5. # auth by redpig315,^_^
  6. ###############################


  7. use strict;
  8. use warnings;

  9. open(Fh,">iptable");
  10. print Fh "iplist\n";
  11. close(Fh);
  12. open(Fh,">>iptable");

  13. my $iphead="192.168.250.";
  14. my $i=1;
  15. my $count=0;
  16. while($i++<255){
  17. my $ip =$iphead.$i;
  18. my $node=$ip;
  19. my $state=!system("ping -c        1 -w 1 -q $node 1>/dev/null 2>&1");
  20. if(!$state){
  21.    print "$node is  offline\n";

  22. }else{
  23.      $count++;
  24.    print "$node is online\n";
  25.    print Fh "$node\n";
  26. }

  27. $ip=$iphead;
  28. }
  29. close(Fh);

  30. print "total $count 's ip online\n";

  31. my $offip=255-$count;

  32. print "total $offip 's ip offline\n";

复制代码
通过修改iphead的值,填入要扫描的局域网ip,对本网段的ip进行可用性统计,结果记录在iptable中,并显示可用ip数。

论坛徽章:
0
2 [报告]
发表于 2011-09-11 10:18 |只看该作者
可用的IP数,是指正在使用的IP数,还是能用的IP数?

论坛徽章:
0
3 [报告]
发表于 2011-09-11 14:23 |只看该作者
正在使用的ip.若要知道可用的ip数,改一下上面保存数据的位置就ok 了。

论坛徽章:
0
4 [报告]
发表于 2011-09-11 17:47 |只看该作者
通过修改iphead的值,填入要扫描的局域网ip,对本网段的ip进行可用性统计,结果记录在iptable中,并显示可用 ...
xiucai315 发表于 2011-09-10 22:25


shell几句代码的事

    for c in 1..255;do
ping  ....
done

如果 用 perl的话 ,试着 用多线程 ,或者 输出一个比较漂亮的 报表 ,可能意义更大些  

论坛徽章:
0
5 [报告]
发表于 2011-09-15 23:33 |只看该作者
楼上兄弟:上面3行代码能搞定吗?

用fping 可以。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP