Advertisement
PJH

"Example" MIB

PJH
Dec 12th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. myExampleAlarmHistory OBJECT IDENTIFIER ::= { myExample 22 }
  2.  
  3. myExampleAlarmHistoryMeta OBJECT IDENTIFIER ::= { myExampleAlarmHistory 1 }
  4.  
  5. myExampleAlarmHistoryMetaCount OBJECT-TYPE
  6. SYNTAX Integer32 (1..5120)
  7. UNITS "none"
  8. MAX-ACCESS read-write
  9. STATUS current
  10. DESCRIPTION
  11. "Maximum number of entries in total to keep in the history table."
  12. ::= { myExampleAlarmHistoryMeta 1 }
  13.  
  14. -- more scalars in myExampleAlarmHistoryMeta, e.g. first, last index in use, next index to use
  15.  
  16. myExampleAlarmHistoryTable OBJECT-TYPE
  17. SYNTAX SEQUENCE OF NdCCUAlarmHistoryEntry
  18. MAX-ACCESS not-accessible
  19. STATUS current
  20. DESCRIPTION
  21. "Table of the last myExampleAlarmHistoryCount alerts from IDS"
  22. ::= { myExampleAlarmHistory 2 }
  23.  
  24. myExampleAlarmHistoryEntry OBJECT-TYPE
  25. SYNTAX NdCCUAlarmHistoryEntry
  26. MAX-ACCESS not-accessible
  27. STATUS current
  28. DESCRIPTION
  29. "Entry that represents one alarm history."
  30. INDEX
  31. { myExampleAlarmHistoryIndex }
  32. ::= { myExampleAlarmHistoryTable 1 }
  33.  
  34. myExampleAlarmHistoryIndex OBJECT-TYPE
  35. SYNTAX Integer32 (1..2147483647)
  36. MAX-ACCESS not-accessible
  37. STATUS current
  38. DESCRIPTION
  39. "Index number"
  40. ::= { myExampleAlarmHistoryEntry 1 }
  41.  
  42. myExampleAlarmHistoryId OBJECT-TYPE
  43. SYNTAX OCTET STRING (SIZE(0..32))
  44. MAX-ACCESS read-create
  45. STATUS current
  46. DESCRIPTION
  47. "The id given to this alarm by IDS, typically of the format
  48. [<epoch seconds>.<fraction of second>], e.g. 1572447605.327513 for
  49. 2019-10-30T15:00:05.327513000Z"
  50. ::= { myExampleAlarmHistoryEntry 2 }
  51.  
  52. myExampleAlarmHistoryRuleId OBJECT-TYPE
  53. SYNTAX Integer32 (1..999999)
  54. MAX-ACCESS read-create
  55. STATUS current
  56. DESCRIPTION
  57. "IDS rule number"
  58. ::= { myExampleAlarmHistoryEntry 3 }
  59.  
  60. -- more things in AlarmHistoryEntry
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement