Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

comment on

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

Update

Sorry, this was my mistake. The error did not come from the script, but another module that already tried to load the same mibs before the addMibDirs in the main script. Don't ask why... After removing the other LoadModule everything works.

Does anyone use the SNMP module? (not Net::SNMP)?

I have the following code:

&SNMP::addMibDirs("FULL_PATH/mibs"); &SNMP::loadModules("IRONPORT-SMI","ASYNCOS-MAIL-MIB");

Script is located in FULL_PATH.

If my CWD is FULL_PATH everything is great. Otherwise I get:

Cannot find module (IRONPORT-SMI): At line 0 in (none) Cannot find module (ASYNCOS-MAIL-MIB): At line 0 in (none)

I did an strace and see (shortened the output a bit):

stat64("./mibs/.index" ... -1 ENOENT open("./mibs" ... = -1 ENOENT write(2, "Cannot find module (IRONPORT-SMI"... write(2, "Cannot find module (ASYNCOS-MAIL"...
a bit later...
stat64("FULL_PATH/mibs/.index" ... = 0 stat64("FULL_PATH/mibs" ... = 0 open("FULL_PATH/mibs/.index" ... = 3
and continues to open and read the necessary MIB-Files. Even stranger: I use all OIDs by Name, not numbers some work some lead to "Unknown Object Identifier".

I could just drop the needed MIBs in the default directories, but this does bug me a bit. What am I doing wrong?


In reply to SNMP and addMibDirs? by suba

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 examining the Monastery: (3)
As of 2024-04-18 18:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found