peertracker/ruby/lib/whois_request.rb
2013-01-25 10:29:40 +01:00

12 lines
230 B
Ruby

module Peertracker
class WhoisRequest
def get_as_info(ip_address)
`whois -h whois.radb.net #{ip_address}`
end
def get_country_info(ip_address)
`whois -h whois.lacnic.net #{ip_address}`
end
end
end