Add an example of net_info usage.

This commit is contained in:
Matthew Kent 2009-08-23 23:26:55 -07:00
parent 49bc336919
commit abda75748b
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
# Example illustrating the collecting of network information.
require 'rbsigar'
sigar = Sigar.new
ninfo = sigar.net_info
puts "Hostname: " + ninfo.host_name
puts "Domain Name: " + ninfo.domain_name
puts "FQDN: " + sigar.fqdn
puts "Default gateway: " + ninfo.default_gateway
puts "Default gateway interface: " + ninfo.default_gateway_interface
puts "Primary DNS: " + ninfo.primary_dns
puts "Secondary DNS: " + ninfo.secondary_dns