DOCS-IF-EXT-MIB 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. DOCS-IF-EXT-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3. MODULE-IDENTITY,
  4. OBJECT-TYPE
  5. FROM SNMPv2-SMI
  6. OBJECT-GROUP,
  7. MODULE-COMPLIANCE
  8. FROM SNMPv2-CONF
  9. TEXTUAL-CONVENTION
  10. FROM SNMPv2-TC
  11. docsIfMib,
  12. docsIfCmtsCmStatusEntry
  13. FROM DOCS-IF-MIB;
  14. docsIfExtMib MODULE-IDENTITY
  15. LAST-UPDATED "200011160000Z" -- November 16, 2000
  16. ORGANIZATION "IETF IPCDN Working Group"
  17. CONTACT-INFO
  18. " "
  19. DESCRIPTION
  20. "This is the extension Module to rfc2670 DOCS-IF-MIB."
  21. REVISION "200010080000Z"
  22. DESCRIPTION
  23. "Initial Version. "
  24. ::= { docsIfMib 21 }
  25. -- Textual Conventions
  26. DocsisVersion ::= TEXTUAL-CONVENTION
  27. STATUS current
  28. DESCRIPTION "Indicates the docsis version number."
  29. SYNTAX INTEGER {
  30. docsis10 (1),
  31. docsis11 (2)
  32. }
  33. docsIfDocsisCapability OBJECT-TYPE
  34. SYNTAX DocsisVersion
  35. MAX-ACCESS read-only
  36. STATUS current
  37. DESCRIPTION
  38. "Indication of the DOCSIS capability of the device.
  39. "
  40. ::= { docsIfExtMib 1 }
  41. docsIfDocsisOperMode OBJECT-TYPE
  42. SYNTAX DocsisVersion
  43. MAX-ACCESS read-only
  44. STATUS current
  45. DESCRIPTION
  46. "Indication whether the device has registered as a 1.0 or 1.1.
  47. For CMTS and unregistered CM, it is always the same as docsDevDocsisCapability.
  48. "
  49. ::= { docsIfExtMib 2 }
  50. --
  51. -- CM status table (within CMTS).
  52. -- This table is implemented only at the CMTS.
  53. -- It contains per CM status information available in the CMTS.
  54. --
  55. docsIfCmtsCmStatusExtTable OBJECT-TYPE
  56. SYNTAX SEQUENCE OF DocsIfCmtsCmStatusExtEntry
  57. MAX-ACCESS not-accessible
  58. STATUS current
  59. DESCRIPTION
  60. "A set of objects in the CMTS, maintained for each
  61. Cable Modem connected to this CMTS."
  62. ::= { docsIfExtMib 3 }
  63. docsIfCmtsCmStatusExtEntry OBJECT-TYPE
  64. SYNTAX DocsIfCmtsCmStatusExtEntry
  65. MAX-ACCESS not-accessible
  66. STATUS current
  67. DESCRIPTION
  68. "Status information for a single Cable Modem.
  69. An entry in this table exists for each Cable Modem
  70. which is connected to the CMTS."
  71. AUGMENTS { docsIfCmtsCmStatusEntry }
  72. ::= { docsIfCmtsCmStatusExtTable 1 }
  73. DocsIfCmtsCmStatusExtEntry ::= SEQUENCE {
  74. docsIfCmtsCmStatusDocsisMode DocsisVersion
  75. }
  76. docsIfCmtsCmStatusDocsisMode OBJECT-TYPE
  77. SYNTAX DocsisVersion
  78. MAX-ACCESS read-only
  79. STATUS current
  80. DESCRIPTION
  81. "Indication whether the CM has registered as a 1.0 or 1.1 modem "
  82. ::= { docsIfCmtsCmStatusExtEntry 1 }
  83. docsIfExtConformance OBJECT IDENTIFIER ::= { docsIfExtMib 4 }
  84. docsIfExtCompliances OBJECT IDENTIFIER ::= { docsIfExtConformance 1 }
  85. docsIfExtGroups OBJECT IDENTIFIER ::= { docsIfExtConformance 2 }
  86. -- compliance statements
  87. docsIfExtCmCompliance MODULE-COMPLIANCE
  88. STATUS current
  89. DESCRIPTION
  90. "The compliance statement."
  91. MODULE -- docsIfExtMib
  92. -- unconditionally mandatory groups for CM
  93. MANDATORY-GROUPS {
  94. docsIfDocsisVersionGroup
  95. }
  96. ::= { docsIfExtCompliances 1 }
  97. docsIfDocsisVersionGroup OBJECT-GROUP
  98. OBJECTS {
  99. docsIfDocsisCapability,
  100. docsIfDocsisOperMode
  101. }
  102. STATUS current
  103. DESCRIPTION
  104. "Object group to indicates DOCSIS version."
  105. ::= { docsIfExtGroups 1 }
  106. docsIfExtCmtsCompliance MODULE-COMPLIANCE
  107. STATUS current
  108. DESCRIPTION
  109. "The compliance statement."
  110. MODULE -- docsIfExtMib
  111. -- unconditionally mandatory groups for CMTS
  112. MANDATORY-GROUPS {
  113. docsIfExtGroup,
  114. docsIfDocsisVersionGroup
  115. }
  116. ::= { docsIfExtCompliances 2 }
  117. docsIfExtGroup OBJECT-GROUP
  118. OBJECTS {
  119. docsIfCmtsCmStatusDocsisMode
  120. }
  121. STATUS current
  122. DESCRIPTION
  123. "Mandatory implementation group for CMTS."
  124. ::= { docsIfExtGroups 2 }
  125. END