jbumsted has asked for the wisdom of the Perl Monks concerning the following question:
I am attempting to script the setting of an OID through Net::SNMP. I have determined that the session is getting created successfully, I can do read_requests successfully, etc. The error I see when checking $SESSION->error() is: "The ASN.1 type "INTEGER" is unknown. " Here is my code:
use Net::SNMP; my $SESSION = Net::SNMP->session (-hostname => $ip, -community =>priva +te); $SESSION->set_request(-varbindlist=>["1.3.6.1.4.1.6080.3.1.2.4.0", INT +EGER, 1]); print $SESSION->error();
Any help would be greatly appreciated. Thanks! NOTE: Edited for spelling. , and edited to "fix my mess".
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::SNMP ASN1 Type error
by kcott (Archbishop) on Oct 11, 2010 at 19:33 UTC | |
by jbumsted (Initiate) on Oct 11, 2010 at 19:47 UTC | |
by kcott (Archbishop) on Oct 11, 2010 at 20:02 UTC | |
by jbumsted (Initiate) on Oct 11, 2010 at 20:16 UTC | |
by kcott (Archbishop) on Oct 11, 2010 at 20:30 UTC | |
by kcott (Archbishop) on Oct 12, 2010 at 10:56 UTC | |
|