Dartware MIB

Fortra, LLC registered the Enterprise 6306 for its own SNMP variables. The remainder of this page shows the Dartware MIB in ASN.1 notation.

-- *****************************************************************
-- DARTWARE-MIB for Intermapper and other products
--
-- May 2007
--
-- Copyright© Fortra, LLC
-- All rights reserved.
-- *****************************************************************

DARTWARE-MIB DEFINITIONS ::= BEGIN

    IMPORTS 
     MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, enterprises
      FROM SNMPv2-SMI
     DisplayString
      FROM SNMPv2-TC;
  

    dartware MODULE-IDENTITY
     LAST-UPDATED "200507270000Z"
     ORGANIZATION "Dartware, LLC"
     CONTACT-INFO "Dartware, LLC
          Customer Service
    
          Postal: PO Box 130
          Hanover, NH 03755-0130
          USA
    
          Tel: +1 603 643-9600
    
          E-mail: support@dartware.com"
    
     DESCRIPTION
      "This MIB module defines objects for SNMP traps sent by Intermapper."
      
     REVISION  "200705300000Z"
     DESCRIPTION
      "Updated descriptions to show timestamp format, correct strings for IntermapperMessage."

     REVISION  "200512150000Z"
     DESCRIPTION
      "Added IntermapperDeviceAddress and IntermapperProbeType."
      
     REVISION  "200507270000Z"
     DESCRIPTION
      "First version of MIB in SMIv2."
     
     ::= { enterprises 6306 }


    notify    OBJECT IDENTIFIER ::= { dartware 2 }
    Intermapper  OBJECT IDENTIFIER ::= { notify 1 }


    IntermapperTimestamp OBJECT-TYPE
      SYNTAX    DisplayString (SIZE(0..255))
      MAX-ACCESS   read-only
      STATUS    current
      DESCRIPTION
        "The current date and time, as a string, in the format 'mm/dd hh:mm:ss'."
      ::= { Intermapper 1 }



    IntermapperMessage OBJECT-TYPE
      SYNTAX    DisplayString (SIZE(0..255))
      MAX-ACCESS   read-only
      STATUS    current
      DESCRIPTION
        "The type of event - Down, Up, Critical, Alarm, Warning, OK,
or Trap - as a string."
      ::= { Intermapper 2 }



    IntermapperDeviceName OBJECT-TYPE
      SYNTAX    DisplayString (SIZE(0..255))
      MAX-ACCESS   read-only
      STATUS    current
      DESCRIPTION
        "The (first line of the) label of the device as shown on a map, as a string."
      ::= { Intermapper 3 }



    IntermapperCondition OBJECT-TYPE
      SYNTAX    DisplayString (SIZE(0..255))
      MAX-ACCESS   read-only
      STATUS    current
      DESCRIPTION
        "The condition of the device, as it would be printed in the log file."
      ::= { Intermapper 4 }


    IntermapperDeviceAddress OBJECT-TYPE
      SYNTAX    DisplayString (SIZE(0..255))
      MAX-ACCESS   read-only
      STATUS    current
      DESCRIPTION
        "The device's network address, as a string."
      ::= { Intermapper 5 }


    IntermapperProbeType OBJECT-TYPE
      SYNTAX    DisplayString (SIZE(0..255))
      MAX-ACCESS   read-only
      STATUS    current
      DESCRIPTION
        "The device's probe type, as a human-readable string."
      ::= { Intermapper 6 }


    -- For SMIv2, map the TRAP-TYPE macro to the 
    -- corresponding NOTIFICATION-TYPE macro:
    --
    -- IntermapperTrap TRAP-TYPE
    --   ENTERPRISE   dartware
    --   VARIABLES    { IntermapperTimestamp, IntermapperMessage, 
    --            IntermapperDeviceName, IntermapperCondition }
    --   DESCRIPTION
    --        "The SNMP trap that is generated by Intermapper as a notification option."
    --   ::= 1

    IntermapperNotifications OBJECT IDENTIFIER ::= { Intermapper 0 }

    IntermapperTrap NOTIFICATION-TYPE
     OBJECTS { IntermapperTimestamp, IntermapperMessage,
         IntermapperDeviceName, IntermapperCondition,
         IntermapperDeviceAddress, IntermapperProbeType }
     STATUS current
     DESCRIPTION
      "The SNMP trap that is generated by Intermapper as a notification option."
     ::= { IntermapperNotifications 1 }


END