RFC-1215.txt
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:1k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. RFC-1215 DEFINITIONS ::= BEGIN
  2. -- This  module is a empty module.  It has been created solely for the 
  3. -- purpose of allowing other modules to correctly import the TRAP-TYPE 
  4. -- clause from RFC-1215 where it should be imported from.  It's a
  5. -- built in type in the UCD-SNMP code, and in fact RFC-1215 doesn't
  6. -- actually define a mib at all; it only defines macros.  However,
  7. -- importing the TRAP-TYPE is conventionally done from an import
  8. -- clause pointing to RFC-1215.
  9. --
  10. --   Wes 7/17/98
  11. TRAP-TYPE MACRO ::=
  12. BEGIN
  13.     TYPE NOTATION ::= "ENTERPRISE" value
  14.                       (enterprise OBJECT IDENTIFIER)
  15.                       VarPart
  16.                       DescrPart
  17.                       ReferPart
  18.     VALUE NOTATION ::= value (VALUE INTEGER)
  19.     VarPart ::=
  20.                "VARIABLES" "{" VarTypes "}"
  21.                | empty
  22.     VarTypes ::=
  23.                VarType | VarTypes "," VarType
  24.     VarType ::=
  25.                value (vartype ObjectName)
  26.     DescrPart ::=
  27.                "DESCRIPTION" value (description DisplayString)
  28.                | empty
  29.     ReferPart ::=
  30.                "REFERENCE" value (reference DisplayString)
  31.                | empty
  32. END
  33.  
  34. END