Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: SNMP problems

by andyford (Curate)
on Sep 11, 2007 at 20:40 UTC ( [id://638427]=note: print w/replies, xml ) Need Help??


in reply to SNMP problems

Can you show all your code or at least a working subset? I am having trouble duplicating your results: I get the same empty result set with the mac table or ifTable and I never get the error message.

non-Perl: Andy Ford

Replies are listed 'Best First'.
Re^2: SNMP problems
by ribasushi (Pilgrim) on Sep 11, 2007 at 22:05 UTC
    Here is my complete test script:
    #!/usr/bin/perl use warnings; use strict; use SNMP; use Data::Dumper; $Data::Dumper::Useqq = 1; my $switchaddr = '<SET_ME>'; my $community = '<SET_ME>'; my $snmp = SNMP::Session->new ( DestHost => $switchaddr, Community => $community, Version => '2c', ) or die "Unable to connect to $switchaddr\n"; for my $oid (qw/ .1.3.6.1.2.1.2.2 .1.3.6.1.2.1.17.4.3.1.1 /) { print "\nTrying snmpwalk on $oid\n=========================\n"; print scalar `snmpwalk -O n -v 2c -c $community $switchaddr $oid`; print "\nTrying SNMP->gettable on $oid\n=========================\ +n"; my $response; eval { $response = $snmp->gettable ($oid) }; if ($@) { print "FAILED: $@\n"; } else { print Dumper $response; } }

    and here is the result.

      Wow, ran your code and still got no results from gettable() for either OID but my snmpwalk results look great. I'm using perl 5.8.5 and SNMP 5.1.2 on Linux. How 'bout you?

      Update: fixed version and module name

      non-Perl: Andy Ford

Re^2: SNMP problems
by ribasushi (Pilgrim) on Sep 11, 2007 at 22:11 UTC
    On reading my original posting I realized that I omitted a leading '.' when pasting things around. Sorry about that.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://638427]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (2)
As of 2024-04-24 17:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found