Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
3.1 KiB

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