File: iftable.rb

package info (click to toggle)
libsnmp-ruby 1.0.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,428 kB
  • ctags: 573
  • sloc: ruby: 3,743; makefile: 40; sh: 23
file content (14 lines) | stat: -rw-r--r-- 407 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'snmp'
include SNMP

host = ARGV[0] || 'localhost'

manager = Manager.new(:Host => host, :Port => 161)
ifTable = ObjectId.new("1.3.6.1.2.1.2.2")
next_oid = ifTable
while next_oid.subtree_of?(ifTable)
    response = manager.get_next(next_oid)
    varbind = response.varbind_list.first
    next_oid = varbind.name
    puts "#{varbind.name.to_s}  #{varbind.value.to_s}  #{varbind.value.asn1_type}"
end