I am unable to get a MIB file to import:

The file is:

DCSW-SSV-MONITOR-MIB DEFINITIONS ::= BEGIN

IMPORTS
    enterprises
        FROM RFC1155-SMI
    OBJECT-TYPE
        FROM RFC-1212
    TRAP-TYPE
        FROM RFC-1215
    DisplayString
        FROM RFC1213-MIB;
				
    datacore    OBJECT IDENTIFIER ::= { enterprises 7652 } 
    objects     OBJECT IDENTIFIER ::= { datacore 1 }
    traps       OBJECT IDENTIFIER ::= { datacore 2 }

   -- a multi-row table describing the monitors 

    monitorTable  OBJECT-TYPE 
        SYNTAX SEQUENCE OF MonitorEntry 
        ACCESS not-accessible 
        STATUS mandatory 
        DESCRIPTION "table"
        ::= { objects 1 } 

    monitorEntry OBJECT-TYPE 
        SYNTAX MonitorEntry
        ACCESS not-accessible 
        STATUS mandatory 
        DESCRIPTION "entry"
        INDEX { monitorId } 
        ::= { monitorTable  1 }

        MonitorEntry::= 
            SEQUENCE { 
                monitorId
                    OCTET STRING (SIZE(16)),
                monitoredId
                    OCTET STRING (SIZE(16)),
                monitorState
                    DisplayString,
                monitorDesc
                    DisplayString,
                monitorCaption
                    DisplayString
            }

    monitorId OBJECT-TYPE 
        SYNTAX OCTET STRING (SIZE(16))
        ACCESS read-only 
        STATUS mandatory 
        DESCRIPTION "Monitor GUID"
        ::= { monitorEntry 1 }

    monitoredId OBJECT-TYPE 
        SYNTAX OCTET STRING (SIZE(16))
        ACCESS read-only 
        STATUS mandatory 
        DESCRIPTION "Monitored GUID"
        ::= { monitorEntry 2 }

    monitorState OBJECT-TYPE 
        SYNTAX DisplayString
        ACCESS read-only 
        STATUS mandatory 
        DESCRIPTION "Monitor state ENUM"
        ::= { monitorEntry 3 }

    monitorDesc OBJECT-TYPE 
        SYNTAX DisplayString
        ACCESS read-only 
        STATUS mandatory 
        DESCRIPTION "Monitor Description"
        ::= { monitorEntry 4 }
			
    monitorCaption OBJECT-TYPE 
        SYNTAX DisplayString
        ACCESS read-only 
        STATUS mandatory 
        DESCRIPTION "Monitored Object Caption"
        ::= { monitorEntry 5 }

   -- trap definitions

     trapMonitorEvent TRAP-TYPE 
        ENTERPRISE  traps
        VARIABLES { monitorId, monitoredId, monitorState, monitorDesc, monitorCaption  } 
        DESCRIPTION "Trap sent when an update to a SANsymphony-V monitor occurs" 
        ::= 1

END

Result is as follows:

Import successful!


Report for C:\Program Files\Paessler MIB Importer V2\DCSW-SSV-MONITOR.MIB:
Sucessfully included files: 9 of 9
Sucessfully imported OIDs: 0 of 0
OIDs that were useful for PRTG: 0

Article Comments

Hello,

which MIB importer did you use?

the Importer simply can not find any OIDs that can be used with PRTG.

If you did use the old MIB Importer 2.1, then please try with the new alpha 3.4.6

https://www.paessler.com/tools/mibimporter


May, 2013 - Permalink