First page Back Continue Last page Overview Graphics

SNMP – MIB primjer

TOASTER-MIB DEFINITIONS ::= BEGIN

 

IMPORTS

enterprises

FROM RFC1155-SMI

OBJECT-TYPE

FROM RFC-1212

DisplayString

FROM RFC-1213;

 

epilogue OBJECT IDENTIFIER ::= {enterprises 12}

toaster OBJECT IDENTIFIER ::= {epilogue 2}

 

 

toasterModelNumber OBJECT-TYPE

SYNTAX DisplayString

ACCESS read-only

STATUS mandatory

DESCRIPTION

"The name of the toaster's model. For instance,

Radiant Automatic."

::= {toaster 2}

 

 toasterControl OBJECT-TYPE

SYNTAX INTEGER {up (1), down (2)}

ACCESS read-write

STATUS mandatory

DESCRIPTION

"This variable controls the current state of the toaster. To begin toasting, set it to down (2). To abort toasting , set it to up (2)."

::= {toaster 3}

 

toasterDoneness OBJECT-TYPE

SYNTAX INTEGER (1..10)

ACCESS read-write

STATUS mandatory

DESCRIPTION

"This variable controls how well-done is the ensuing toast. It should be on a scale of 1 to 10.

Toast made at 10 generally is considered unfit for human consumption; toast made at 1 is warmed lightly."

::= {toaster 4}

 

END