Node-Red configuration
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.

RFC-1215.mib 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. -- Network Working Group M. Rose, Editor
  2. -- Request for Comments: 1215 Performance Systems International
  3. -- March 1991
  4. -- A Convention for Defining Traps
  5. -- for use with the SNMP
  6. RFC-1215 DEFINITIONS ::= BEGIN
  7. IMPORTS
  8. ObjectName
  9. FROM RFC1155-SMI;
  10. TRAP-TYPE MACRO ::=
  11. BEGIN
  12. TYPE NOTATION ::= "ENTERPRISE" value
  13. (enterprise OBJECT IDENTIFIER)
  14. VarPart
  15. DescrPart
  16. ReferPart
  17. VALUE NOTATION ::= value (VALUE INTEGER)
  18. VarPart ::=
  19. "VARIABLES" "{" VarTypes "}"
  20. | empty
  21. VarTypes ::=
  22. VarType | VarTypes "," VarType
  23. VarType ::=
  24. value (vartype ObjectName)
  25. DescrPart ::=
  26. "DESCRIPTION" value (description DisplayString)
  27. | empty
  28. ReferPart ::=
  29. "REFERENCE" value (reference DisplayString)
  30. | empty
  31. END
  32. -- snmp OBJECT IDENTIFIER ::= { mib-2 11 }
  33. coldStart TRAP-TYPE
  34. ENTERPRISE snmp
  35. DESCRIPTION
  36. "A coldStart trap signifies that the sending
  37. protocol entity is reinitializing itself such
  38. that the agent's configuration or the rotocol
  39. entity implementation may be altered."
  40. ::= 0
  41. warmStart TRAP-TYPE
  42. ENTERPRISE snmp
  43. DESCRIPTION
  44. "A warmStart trap signifies that the sending
  45. protocol entity is reinitializing itself such
  46. that neither the agent configuration nor the
  47. protocol entity implementation is altered."
  48. ::= 1
  49. linkDown TRAP-TYPE
  50. ENTERPRISE snmp
  51. VARIABLES { ifIndex }
  52. DESCRIPTION
  53. "A linkDown trap signifies that the sending
  54. protocol entity recognizes a failure in one of
  55. the communication links represented in the
  56. agent's configuration."
  57. ::= 2
  58. linkUp TRAP-TYPE
  59. ENTERPRISE snmp
  60. VARIABLES { ifIndex }
  61. DESCRIPTION
  62. "A linkUp trap signifies that the sending
  63. protocol entity recognizes that one of the
  64. communication links represented in the agent's
  65. configuration has come up."
  66. ::= 3
  67. authenticationFailure TRAP-TYPE
  68. ENTERPRISE snmp
  69. DESCRIPTION
  70. "An authenticationFailure trap signifies that
  71. the sending protocol entity is the addressee
  72. of a protocol message that is not properly
  73. authenticated. While implementations of the
  74. SNMP must be capable of generating this trap,
  75. they must also be capable of suppressing the
  76. emission of such traps via an implementation-
  77. specific mechanism."
  78. ::= 4
  79. egpNeighborLoss TRAP-TYPE
  80. ENTERPRISE snmp
  81. VARIABLES { egpNeighAddr }
  82. DESCRIPTION
  83. "An egpNeighborLoss trap signifies that an EGP
  84. neighbor for whom the sending protocol entity
  85. was an EGP peer has been marked down and the
  86. peer relationship no longer obtains."
  87. ::= 5
  88. END