Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SNMP - MIB Names

Status
Not open for further replies.

Smudge1977

Technical User
Nov 12, 2002
64
GB
I am trying to load some MIBS from a third party in to Unicenter with the ldmib command the first MIB I loaded with the command:

ldmib -n enterprises -m LIEBERT_GP_REG.MIB

this worked fine
The next MIB I can't work out what its name is ie. the -n paramater

This is the header of the second MIB:

LIEBERT-GP-CONDITIONS-MIB DEFINITIONS ::= BEGIN

IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY, OBJECT-TYPE,
Gauge32, TimeTicks, Unsigned32
FROM SNMPv2-SMI
lgpConditions, liebertConditionsModuleReg
FROM LIEBERT-GP-REGISTRATION-MIB
;

I do not really know about MIBS all I want is when the UPS battery is flat I get a flat battery message go up the EM console due the the trap been sent to the server!

Thanks
 
If there is no mib-name entry at the top then look for a section like this (somewhere near the top of the mib)

novell OBJECT IDENTIFIER ::= { enterprises 23 }
mibDoc OBJECT IDENTIFIER ::= { novell 2 }

nwServer OBJECT IDENTIFIER ::= { mibDoc 28 }

nwSystem OBJECT IDENTIFIER ::= { nwServer 1 }
nwFileSystem OBJECT IDENTIFIER ::= { nwServer 2 }
nwUsers OBJECT IDENTIFIER ::= { nwServer 3 }
nwQueue OBJECT IDENTIFIER ::= { nwServer 4 }
nwOdi OBJECT IDENTIFIER ::= { nwServer 5 }
nwSft3 OBJECT IDENTIFIER ::= { nwServer 6 }
nwNCP OBJECT IDENTIFIER ::= { nwServer 7 }
nwWatchdog OBJECT IDENTIFIER ::= { nwServer 8 }
nwNLM OBJECT IDENTIFIER ::= { nwServer 9 }
nwSetParams OBJECT IDENTIFIER ::= { nwServer 10 }
nwUserAccounts OBJECT IDENTIFIER ::= { nwServer 11 }

--------------
This is an example from a Netware Mib that does not contain a mib-name entry. It loads OK with the command ldmib -n nwServer etc.
The entries above nwServer are the parent mibs that CA will need loading for this one to work. But you will normally find that these are already present.

Regards
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top