22

適切にインベントリされていないコンピュータが多数ある環境にいます。基本的に、どの IP がどの MAC アドレスとどのホスト名に対応するかは誰にもわかりません。だから私は次のように書いた:

# This script goes down the entire IP range and attempts to
# retrieve the Hostname and mac address and outputs them
# into a file. Yay!

require "socket"

TwoOctets = "10.26"

def computer_exists?(computerip)
 system("ping -c 1 -W 1 #{computerip}")
end

def append_to_file(line)
 file   = File.open("output.txt", "a")
 file.puts(line)
 file.close
end


def getInfo(current_ip)
 begin
   if computer_exists?(current_ip)
     arp_output = `arp -v #{current_ip}`
     mac_addr = arp_output.to_s.match(/..:..:..:..:..:../)
     host_name = Socket.gethostbyname(current_ip)
     append_to_file("#{host_name[0]} - #{current_ip} - #{mac_addr}\n")
   end
 rescue SocketError => mySocketError
   append_to_file("unknown - #{current_ip} - #{mac_addr}")
 end
end


(6..8).each do |i|
 case i
   when 6
     for j in (1..190)
       current_ip = "#{TwoOctets}.#{i}.#{j}"
       getInfo(current_ip)
     end
   when 7
     for j in (1..255)
       current_ip = "#{TwoOctets}.#{i}.#{j}"
       getInfo(current_ip)
     end
   when 8
     for j in (1..52)
       current_ip = "#{TwoOctets}.#{i}.#{j}"
       getInfo(current_ip)
     end
 end
end

逆引き DNS が見つからないことを除いて、すべてが機能します。

私が得ているサンプル出力はこれです:

10.26.6.12 - 10.26.6.12 - 00:11:11:9B:13:9F
10.26.6.17 - 10.26.6.17 - 08:00:69:9A:97:C3
10.26.6.18 - 10.26.6.18 - 08:00:69:93:2C:E2

そうすればnslookup 10.26.6.12、正しい逆引き DNS を取得できるので、マシンが DNS サーバーを認識していることがわかります。

を試しましたがSocket.gethostbyname、うまくいきgethostbyaddrません。

どんなガイダンスでも大歓迎です。

4

3 に答える 3

25

今日、私は逆引きDNSルックアップも必要でしたが、非常に単純な標準ソリューションを見つけました。

require 'resolv'
host_name = Resolv.getname(ip_address_here)

大まかな場合に役立つタイムアウトを使用しているようです。

于 2011-04-04T21:52:07.477 に答える
8

私はチェックアウトしgetaddrinfoます。行を置き換える場合:

host_name = Socket.gethostbyname(current_ip)

と:

host_name = Socket.getaddrinfo(current_ip, 0, Socket::AF_UNSPEC, Socket::SOCK_STREAM, nil, Socket::AI_CANONNAME)[0][1]

このgetaddrinfo関数は、配列の配列を返します。詳細については、次を参照してください。

Ruby ソケットのドキュメント

于 2008-08-06T01:56:58.780 に答える
2

これも機能します:

host_name = Socket.getaddrinfo(current_ip,nil)
append_to_file("#{host_name[0][2]} - #{current_ip} - #{mac_addr}\n")

なぜgethostbyaddrうまくいかなかったのかわかりません。

于 2008-08-06T12:04:15.463 に答える