Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

The general idea: SNMP v1 has set, get, get_next. set($oid,$value); ($oid, $value) = get($oid); ($oid, $value) = get_next($root). For the set, get you a full OID leaf value, for the get_next you can use either any OID value because get_next returns the next available OID in the MIB after the one you gave it. So if you have a tree like:

1.2.1.1.0 = 42
1.2.1.1.1 = 43
1.2.1.1.3 = 44
1.2.1.2.0 = 'a'
1.2.1.2.1 = 'b'
1.2.1.2.3 = 'c'

get(1.2.1.1) -> error
get_next(1.2.1.1) -> (1.2.1.1.0, 42)
get_next(1.2.1.1.0) -> (1.2.1.1.1, 43)
...
get_next(1.2.1.1.3) -> 1.2.1.2.0, 'a)
...
get_next(1.2.1.2.3) -> 1.2.1.3.something, something)

A walk just does a get_next over and over until the returned OID is outside of the tree root you gave it to start with. In this case if you started with 1.2.1.1 it would stop at 1.2.1.1.3 and not give you 1.2.1.2 and later.

A get_table is just a wrapper that walks multiple tree roots at the same time, e.g. get_table(1.2.1.1, 1.2.1.2) would return all six of the above values.

SNMP v2c and v3 have the bulk versions of these, they can just request/get multiple OIDs in the same data packet rather than doing a get_next for each OID in turn.

IIRC, the Net::SNMP module returns everything in a hash reference. The SNMP module for the net-snmp library returns VarBind objects (array references) and will return a get_table in columns like:

[
 [ 1.2.1.1.0, 42,  1.2.1.2.0, 'a' ],
 [ 1.2.1.1.1, 43,  1.2.1.2.1, 'b' ],
]

This is by no means a detailed description, method names, signatures, returns, details differ depending on which SNMP module you're using, and which version of SNMP you're using to communicate with the device. But it all pretty much breaks down to set, get, get_next.


In reply to Re^3: Net::SNMP get_bulk_request Not Working by zengargoyle
in thread Net::SNMP get_bulk_request Not Working by spickles

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-19 22:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found