home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / SNMPKT.ZIP / TOASTER.MIB < prev   
Text File  |  1992-08-04  |  3KB  |  86 lines

  1.           TOASTER-MIB DEFINITIONS ::= BEGIN
  2.  
  3.           --
  4.           -- Microsoft copied from SNMP mailing list and made no changes.
  5.           --
  6.  
  7.           IMPORTS
  8.                   enterprises
  9.                           FROM RFC1155-SMI
  10.                   OBJECT-TYPE
  11.                           FROM RFC-1212
  12.                   DisplayString
  13.                           FROM RFC-1213;
  14.  
  15.  
  16.           epilogue        OBJECT IDENTIFIER ::= { enterprises 12 }
  17.           toaster         OBJECT IDENTIFIER ::= { epilogue 2 }
  18.  
  19.           -- toaster MIB
  20.  
  21.           toasterManufacturer OBJECT-TYPE
  22.               SYNTAX  DisplayString
  23.               ACCESS  read-only
  24.               STATUS  mandatory
  25.               DESCRIPTION
  26.                       "The name of the toaster's manufacturer. For instance,
  27.                        Sunbeam."
  28.               ::= { toaster 1 }
  29.  
  30.           toasterModelNumber OBJECT-TYPE
  31.               SYNTAX  DisplayString
  32.               ACCESS  read-only
  33.               STATUS  mandatory
  34.               DESCRIPTION
  35.                       "The name of the toaster's model. For instance,
  36.                        Radiant Automatic."
  37.               ::= { toaster 2 }
  38.  
  39.           toasterControl OBJECT-TYPE
  40.               SYNTAX  INTEGER  {
  41.                           up(1),
  42.                           down(2)
  43.                       }
  44.               ACCESS  read-write
  45.               STATUS  mandatory
  46.               DESCRIPTION
  47.                       "This variable controls the current state of the 
  48.                        toaster. To begin toasting, set it to down(2). To 
  49.                        abort toasting (perhaps in the event of an 
  50.                        emergency), set it to up(2)."
  51.               ::= { toaster 3 }
  52.  
  53.           toasterDoneness OBJECT-TYPE
  54.               SYNTAX  INTEGER (1..10)
  55.               ACCESS  read-write
  56.               STATUS  mandatory
  57.               DESCRIPTION
  58.                       "This variable controls how well done ensuing toast 
  59.                        should be on a scale of 1 to 10. Toast made at 10 
  60.                        is generally considered unfit for human consumption; 
  61.                        toast made at 1 is lightly warmed."
  62.               ::= { toaster 4 }
  63.  
  64.           toasterToastType OBJECT-TYPE
  65.               SYNTAX  INTEGER  {
  66.                           white-bread(1),
  67.                           wheat-bread(2),
  68.                           wonder-bread(3),
  69.                           frozen-waffle(4),
  70.                           frozen-bagel(5),
  71.                           hash-brown(6),
  72.                           other(7)
  73.                       }
  74.               ACCESS  read-write
  75.               STATUS  mandatory
  76.               DESCRIPTION
  77.                       "This variable informs the toaster of the type of 
  78.                        material being toasted. The toaster uses this 
  79.                        information combined with toasterToastDoneness to 
  80.                        compute how long the material must be toasted for 
  81.                        to achieve the desired doneness."
  82.               ::= { toaster 5 }
  83.  
  84.  
  85.           END
  86.