| | | Forum Newbie
       
Group: Forum Members Last Login: 1/26/2010 9:28:48 AM Posts: 3, Visits: 24 |
| | Hello! I want to import a MIB-File but i get two error messages: 1: Warning: Unlinked OID in UPS-MIB: upsMIB ::= { mib-2 33 } 2: Warning: Undefined identifier: mib-2 near line 20 of C:\PROGRA~1\Ipswitch\WhatsUp\Data\Mibs/1628_V1.MIB Details see below. Does anybody know what i can do to solve the problems? Thanks a lot for all answers. Wilfried Warning: Unlinked OID in UPS-MIB: upsMIB ::= { mib-2 33 }
1 UPS-MIB DEFINITIONS ::= BEGIN 2 3 4 IMPORTS 5 AutonomousType 6 FROM RFC1316-MIB 7 TRAP-TYPE 8 FROM RFC-1215 9 DisplayString 10 FROM RFC1213-MIB 11 OBJECT-TYPE 12 FROM RFC-1212 13 Gauge, Counter 14 FROM RFC1155-SMI 15 TestAndIncr, TimeInterval, TimeStamp 16 FROM SNMPv2-TC; 17 18 19 20 upsMIB OBJECT IDENTIFIER ::= { mib-2 33 } Warning: Undefined identifier: mib-2 near line 20 of C:\PROGRA~1\Ipswitch\WhatsUp\Data\Mibs/1628_V1.MIB
21 22 PositiveInteger ::= 23 INTEGER 24 25 NonNegativeInteger ::= 26 INTEGER 27 28 upsObjects OBJECT IDENTIFIER ::= { upsMIB 1 } 29 30 upsIdent OBJECT IDENTIFIER ::= { upsObjects 1 }
.....
|
| | | | Forum Newbie
       
Group: Forum Members Last Login: 6/30/2009 2:49:50 AM Posts: 1, Visits: 9 |
| Hello,
I had the same problem and viewing the mib file I noticed that mib-2 wasn't imported from SNMPv2-SMI to this tree.
I solved it adding mib-2 in the import line, like that:
OBJECT-IDENTITY, Counter32, Gauge32, Integer32, mib-2
FROM SNMPv2-SMI
Then I could import the mib file.
Greetings! |
| |
|
|