home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl502b.zip / ext / DPI / Sample / dpiSimple.mib next >
Text File  |  1995-09-01  |  3KB  |  80 lines

  1. -- the sample dpiSimpleMIB
  2.  
  3. -- The MIB objects are implemented by the dpi_sample DPI subAgent
  4.  
  5.         DPISimple-MIB DEFINITIONS ::= BEGIN
  6.  
  7.         IMPORTS
  8.                 OBJECT-TYPE
  9.                         FROM RFC-1212
  10.                 Counter 
  11.                         FROM RFC1155-SMI
  12.                 DisplayString
  13.                         FROM RFC1213-MIB
  14.                 dpi20MIB 
  15.                         FROM DPI20-MIB;
  16.  
  17.         --
  18.         -- Following can be used once we fit into SNMPv2
  19.         --
  20.         --      MODULE-IDENTITY, OBJECT-TYPE, snmpModules
  21.         --              FROM SNMPv2-SMI
  22.         --
  23.         -- dpiSimpleMIB MODULE-IDENTITY
  24.         --  LAST-UPDATED "9401210000Z"
  25.         --  ORGANIZATION "IBM Research - T.J. Watson Research Center"
  26.         --  CONTACT-INFO
  27.         --          "           Bert Wijnen
  28.         --
  29.         --           Postal:    IBM International Operations
  30.         --                      Watsonweg 2
  31.         --                      1423 ND Uithoorn
  32.         --                      The Netherlands
  33.         --
  34.         --           Tel:       +31 2975 53316
  35.         --           Fax:       +31 2975 62468
  36.         --
  37.         --           E-mail:    wijnen@vnet.ibm.com
  38.         --                      (IBM internal: wijnen at nlvm1)"
  39.         --   DESCRIPTION
  40.         --          "The MIB module describing DPI Simple Objects for
  41.         --           the dpi_sample.c program"
  42.         --   ::= { snmpModules x }
  43.  
  44.         dpiSimpleMIB OBJECT IDENTIFIER ::= { dpi20MIB 5 }
  45.  
  46.         dpiSimpleInteger         OBJECT-TYPE
  47.                 SYNTAX  INTEGER 
  48.                 ACCESS  read-only
  49.                 STATUS  mandatory
  50.                 DESCRIPTION
  51.                     "A sample integer32 value"
  52.                 ::= { dpiSimpleMIB 1 }
  53.  
  54.         dpiSimpleString          OBJECT-TYPE
  55.                 SYNTAX  DisplayString
  56.                 ACCESS  read-write
  57.                 STATUS  mandatory
  58.                 DESCRIPTION
  59.                     "A sample Display String"
  60.                 ::= { dpiSimpleMIB 2 }
  61.  
  62.         dpiSimpleCounter32       OBJECT-TYPE
  63.                 SYNTAX  Counter     -- Counter32 is SNMPv2
  64.                 ACCESS  read-only
  65.                 STATUS  mandatory
  66.                 DESCRIPTION
  67.                     "A sample 32-bit counter"
  68.                 ::= { dpiSimpleMIB 3 }
  69.  
  70.         dpiSimpleCounter64       OBJECT-TYPE
  71.                 SYNTAX  Counter     -- Counter64 is SNMPv2,
  72.                                     -- No SMI support for it yet
  73.                 ACCESS  read-only
  74.                 STATUS  mandatory
  75.                 DESCRIPTION
  76.                     "A sample 64-bit counter"
  77.                 ::= { dpiSimpleMIB 4 }
  78.  
  79.         END
  80.