From abda75748b87a2557d8e43e68306605a9022b9bf Mon Sep 17 00:00:00 2001 From: Matthew Kent Date: Sun, 23 Aug 2009 23:26:55 -0700 Subject: [PATCH] Add an example of net_info usage. --- bindings/ruby/examples/net_info.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bindings/ruby/examples/net_info.rb diff --git a/bindings/ruby/examples/net_info.rb b/bindings/ruby/examples/net_info.rb new file mode 100644 index 00000000..22ca59c5 --- /dev/null +++ b/bindings/ruby/examples/net_info.rb @@ -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