加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby – 从255个ip地址查找可用设备的方法

发布时间:2020-12-17 02:12:53 所属栏目:百科 来源:网络整理
导读:我在IP地址1到255上配置了6个设备,范围为192.168.1.X(其中X = 1到255).我已经编写了这个程序来ping并查看可用的IP地址来执行操作.但是执行这么长时间…… 任何人都建议一个快速的方法来执行此操作? 叉子的使用也很受欢迎…… 这是程序: server = "192.168.
我在IP地址1到255上配置了6个设备,范围为192.168.1.X(其中X = 1到255).我已经编写了这个程序来ping并查看可用的IP地址来执行操作.但是执行这么长时间……
任何人都建议一个快速的方法来执行此操作?

叉子的使用也很受欢迎……

这是程序:

server = "192.168.1"
for i in (1...255)
  system("ping -q -c #{timeout} #{server}.#{i} 2&>/dev/null")
  if $?.exitstatus == 0
    # operations
  end
end

解决方法

测试ruby1.9.3时间不错;

[slmn@uriel ~]$time ruby ipmap.rb 
"192.168.0.1"
"192.168.0.10"

real    0m2.393s
user    0m0.750s
sys     0m1.547s

如果你想做你的操作线程,我评论了这些区域;

require 'ipaddr'

ips = IPAddr.new("192.168.1.0/24").to_range

threads = ips.map do |ip|
  Thread.new do
    status = system("ping -q -W 1 -c 1 #{ip}",[:err,:out] => "/dev/null")

    # you can do your operations in thread like this
    # if status
    #   # operations
    # end

    # optional
    Thread.current[:result] = ip.to_s if status
  end
end

threads.each {|t| t.join}

# if you don't do your operations in thread
threads.each do |t|
  next unless t[:result]

  # operations

  #optional
  puts t[:result]
end

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读