Ruby misc
Install Module
- gem install net-ping
Host reachable
#!/usr/bin/ruby require 'net/ping' def up?(host) check = Net::Ping::External.new(host) check.ping? end chost = '10.0.0.1' puts up?(chost)
#!/usr/bin/ruby require 'net/ping' def up?(host) check = Net::Ping::External.new(host) check.ping? end chost = '10.0.0.1' puts up?(chost)