logstash-integration-snmp 4.0.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +23 -0
  3. data/CONTRIBUTORS +20 -0
  4. data/Gemfile +11 -0
  5. data/LICENSE +202 -0
  6. data/README.md +89 -0
  7. data/VERSION +1 -0
  8. data/docs/index.asciidoc +202 -0
  9. data/docs/input-snmp.asciidoc +524 -0
  10. data/docs/input-snmptrap.asciidoc +392 -0
  11. data/lib/logstash/inputs/snmp.rb +369 -0
  12. data/lib/logstash/inputs/snmptrap.rb +190 -0
  13. data/lib/logstash/plugin_mixins/snmp/common.rb +197 -0
  14. data/lib/logstash-integration-snmp_jars.rb +6 -0
  15. data/lib/mibs/ietf/ACCOUNTING-CONTROL-MIB.dic +1316 -0
  16. data/lib/mibs/ietf/ADSL-LINE-EXT-MIB.dic +1724 -0
  17. data/lib/mibs/ietf/ADSL-LINE-MIB.dic +7297 -0
  18. data/lib/mibs/ietf/ADSL-TC-MIB.dic +160 -0
  19. data/lib/mibs/ietf/ADSL2-LINE-MIB.dic +8663 -0
  20. data/lib/mibs/ietf/ADSL2-LINE-TC-MIB.dic +1462 -0
  21. data/lib/mibs/ietf/AGENTX-MIB.dic +817 -0
  22. data/lib/mibs/ietf/AGGREGATE-MIB.dic +708 -0
  23. data/lib/mibs/ietf/ALARM-MIB.dic +1734 -0
  24. data/lib/mibs/ietf/APM-MIB.dic +2870 -0
  25. data/lib/mibs/ietf/APPC-MIB.dic +8687 -0
  26. data/lib/mibs/ietf/APPLETALK-MIB.dic +4399 -0
  27. data/lib/mibs/ietf/APPLICATION-MIB.dic +3750 -0
  28. data/lib/mibs/ietf/APPN-DLUR-MIB.dic +972 -0
  29. data/lib/mibs/ietf/APPN-MIB.dic +9364 -0
  30. data/lib/mibs/ietf/APPN-TRAP-MIB.dic +664 -0
  31. data/lib/mibs/ietf/APS-MIB.dic +2430 -0
  32. data/lib/mibs/ietf/ARC-MIB.dic +552 -0
  33. data/lib/mibs/ietf/ATM-ACCOUNTING-INFORMATION-MIB.dic +816 -0
  34. data/lib/mibs/ietf/ATM-MIB.dic +4104 -0
  35. data/lib/mibs/ietf/ATM-TC-MIB.dic +914 -0
  36. data/lib/mibs/ietf/ATM2-MIB.dic +4715 -0
  37. data/lib/mibs/ietf/BFD-STD-MIB.dic +2367 -0
  38. data/lib/mibs/ietf/BFD-TC-STD-MIB.dic +202 -0
  39. data/lib/mibs/ietf/BGP4-MIB.dic +1931 -0
  40. data/lib/mibs/ietf/BLDG-HVAC-MIB.dic +812 -0
  41. data/lib/mibs/ietf/BRIDGE-MIB.dic +2257 -0
  42. data/lib/mibs/ietf/CAPWAP-BASE-MIB.dic +4128 -0
  43. data/lib/mibs/ietf/CAPWAP-DOT11-MIB.dic +482 -0
  44. data/lib/mibs/ietf/CHARACTER-MIB.dic +1140 -0
  45. data/lib/mibs/ietf/CIRCUIT-IF-MIB.dic +493 -0
  46. data/lib/mibs/ietf/CLNS-MIB.dic +1702 -0
  47. data/lib/mibs/ietf/COFFEE-POT-MIB.dic +282 -0
  48. data/lib/mibs/ietf/COPS-CLIENT-MIB.dic +1270 -0
  49. data/lib/mibs/ietf/DECNET-PHIV-MIB.dic +5837 -0
  50. data/lib/mibs/ietf/DIAL-CONTROL-MIB.dic +2139 -0
  51. data/lib/mibs/ietf/DIFFSERV-CONFIG-MIB.dic +378 -0
  52. data/lib/mibs/ietf/DIFFSERV-MIB.dic +5073 -0
  53. data/lib/mibs/ietf/DIRECTORY-SERVER-MIB.dic +1041 -0
  54. data/lib/mibs/ietf/DISMAN-EVENT-MIB.dic +3151 -0
  55. data/lib/mibs/ietf/DISMAN-EXPRESSION-MIB.dic +1716 -0
  56. data/lib/mibs/ietf/DISMAN-NSLOOKUP-MIB.dic +698 -0
  57. data/lib/mibs/ietf/DISMAN-PING-MIB.dic +2635 -0
  58. data/lib/mibs/ietf/DISMAN-SCHEDULE-MIB.dic +1744 -0
  59. data/lib/mibs/ietf/DISMAN-SCRIPT-MIB.dic +2820 -0
  60. data/lib/mibs/ietf/DISMAN-TRACEROUTE-MIB.dic +3239 -0
  61. data/lib/mibs/ietf/DLSW-MIB.dic +5635 -0
  62. data/lib/mibs/ietf/DNS-RESOLVER-MIB.dic +1765 -0
  63. data/lib/mibs/ietf/DNS-SERVER-MIB.dic +1593 -0
  64. data/lib/mibs/ietf/DOCS-BPI-MIB.dic +2634 -0
  65. data/lib/mibs/ietf/DOCS-CABLE-DEVICE-MIB.dic +5042 -0
  66. data/lib/mibs/ietf/DOCS-IETF-BPI2-MIB.dic +5478 -0
  67. data/lib/mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB.dic +2447 -0
  68. data/lib/mibs/ietf/DOCS-IETF-QOS-MIB.dic +4886 -0
  69. data/lib/mibs/ietf/DOCS-IETF-SUBMGT-MIB.dic +1331 -0
  70. data/lib/mibs/ietf/DOCS-IF-MIB.dic +7980 -0
  71. data/lib/mibs/ietf/DOT12-IF-MIB.dic +1066 -0
  72. data/lib/mibs/ietf/DOT12-RPTR-MIB.dic +2669 -0
  73. data/lib/mibs/ietf/DOT3-EPON-MIB.dic +3297 -0
  74. data/lib/mibs/ietf/DOT3-OAM-MIB.dic +2830 -0
  75. data/lib/mibs/ietf/DS0-MIB.dic +466 -0
  76. data/lib/mibs/ietf/DS0BUNDLE-MIB.dic +468 -0
  77. data/lib/mibs/ietf/DS1-MIB.dic +4890 -0
  78. data/lib/mibs/ietf/DS3-MIB.dic +2719 -0
  79. data/lib/mibs/ietf/DSA-MIB.dic +888 -0
  80. data/lib/mibs/ietf/DSMON-MIB.dic +6177 -0
  81. data/lib/mibs/ietf/DVB-RCS-MIB.dic +5764 -0
  82. data/lib/mibs/ietf/EBN-MIB.dic +1026 -0
  83. data/lib/mibs/ietf/EFM-CU-MIB.dic +4335 -0
  84. data/lib/mibs/ietf/ENTITY-MIB.dic +2235 -0
  85. data/lib/mibs/ietf/ENTITY-SENSOR-MIB.dic +653 -0
  86. data/lib/mibs/ietf/ENTITY-STATE-MIB.dic +457 -0
  87. data/lib/mibs/ietf/ENTITY-STATE-TC-MIB.dic +260 -0
  88. data/lib/mibs/ietf/ETHER-CHIPSET-MIB.dic +787 -0
  89. data/lib/mibs/ietf/EtherLike-MIB.dic +2548 -0
  90. data/lib/mibs/ietf/FC-MGMT-MIB.dic +3465 -0
  91. data/lib/mibs/ietf/FCIP-MGMT-MIB.dic +1596 -0
  92. data/lib/mibs/ietf/FDDI-SMT73-MIB.dic +3378 -0
  93. data/lib/mibs/ietf/FIBRE-CHANNEL-FE-MIB.dic +2504 -0
  94. data/lib/mibs/ietf/FLOAT-TC-MIB.dic +128 -0
  95. data/lib/mibs/ietf/FLOW-METER-MIB.dic +3201 -0
  96. data/lib/mibs/ietf/FORCES-MIB.dic +598 -0
  97. data/lib/mibs/ietf/FR-ATM-PVC-SERVICE-IWF-MIB.dic +1601 -0
  98. data/lib/mibs/ietf/FR-MFR-MIB.dic +1351 -0
  99. data/lib/mibs/ietf/FRAME-RELAY-DTE-MIB.dic +1688 -0
  100. data/lib/mibs/ietf/FRNETSERV-MIB.dic +3940 -0
  101. data/lib/mibs/ietf/FRSLD-MIB.dic +2580 -0
  102. data/lib/mibs/ietf/Finisher-MIB.dic +1416 -0
  103. data/lib/mibs/ietf/GMPLS-LABEL-STD-MIB.dic +965 -0
  104. data/lib/mibs/ietf/GMPLS-LSR-STD-MIB.dic +693 -0
  105. data/lib/mibs/ietf/GMPLS-TC-STD-MIB.dic +180 -0
  106. data/lib/mibs/ietf/GMPLS-TE-STD-MIB.dic +2542 -0
  107. data/lib/mibs/ietf/GSMP-MIB.dic +2468 -0
  108. data/lib/mibs/ietf/HC-ALARM-MIB.dic +1050 -0
  109. data/lib/mibs/ietf/HC-PerfHist-TC-MIB.dic +310 -0
  110. data/lib/mibs/ietf/HC-RMON-MIB.dic +4456 -0
  111. data/lib/mibs/ietf/HDSL2-SHDSL-LINE-MIB.dic +3955 -0
  112. data/lib/mibs/ietf/HOST-RESOURCES-MIB.dic +2453 -0
  113. data/lib/mibs/ietf/HPR-IP-MIB.dic +640 -0
  114. data/lib/mibs/ietf/HPR-MIB.dic +1959 -0
  115. data/lib/mibs/ietf/IANA-ITU-ALARM-TC-MIB.dic +936 -0
  116. data/lib/mibs/ietf/IF-CAP-STACK-MIB.dic +356 -0
  117. data/lib/mibs/ietf/IF-INVERTED-STACK-MIB.dic +220 -0
  118. data/lib/mibs/ietf/IF-MIB.dic +2753 -0
  119. data/lib/mibs/ietf/IFCP-MGMT-MIB.dic +1717 -0
  120. data/lib/mibs/ietf/IGMP-STD-MIB.dic +809 -0
  121. data/lib/mibs/ietf/INET-ADDRESS-MIB.dic +570 -0
  122. data/lib/mibs/ietf/INTEGRATED-SERVICES-GUARANTEED-MIB.dic +319 -0
  123. data/lib/mibs/ietf/INTEGRATED-SERVICES-MIB.dic +1196 -0
  124. data/lib/mibs/ietf/INTERFACETOPN-MIB.dic +1705 -0
  125. data/lib/mibs/ietf/IP-FORWARD-MIB.dic +1853 -0
  126. data/lib/mibs/ietf/IP-MIB.dic +7064 -0
  127. data/lib/mibs/ietf/IPATM-IPMC-MIB.dic +4830 -0
  128. data/lib/mibs/ietf/IPFIX-MIB.dic +2334 -0
  129. data/lib/mibs/ietf/IPFIX-SELECTOR-MIB.dic +215 -0
  130. data/lib/mibs/ietf/IPMCAST-MIB.dic +3390 -0
  131. data/lib/mibs/ietf/IPMROUTE-STD-MIB.dic +1246 -0
  132. data/lib/mibs/ietf/IPOA-MIB.dic +2372 -0
  133. data/lib/mibs/ietf/IPS-AUTH-MIB.dic +1609 -0
  134. data/lib/mibs/ietf/IPSEC-SPD-MIB.dic +3989 -0
  135. data/lib/mibs/ietf/IPV6-FLOW-LABEL-MIB.dic +110 -0
  136. data/lib/mibs/ietf/IPV6-ICMP-MIB.dic +748 -0
  137. data/lib/mibs/ietf/IPV6-MIB.dic +2028 -0
  138. data/lib/mibs/ietf/IPV6-MLD-MIB.dic +659 -0
  139. data/lib/mibs/ietf/IPV6-TCP-MIB.dic +332 -0
  140. data/lib/mibs/ietf/IPV6-UDP-MIB.dic +209 -0
  141. data/lib/mibs/ietf/ISCSI-MIB.dic +4613 -0
  142. data/lib/mibs/ietf/ISDN-MIB.dic +1796 -0
  143. data/lib/mibs/ietf/ISIS-MIB.dic +6215 -0
  144. data/lib/mibs/ietf/ISNS-MIB.dic +6578 -0
  145. data/lib/mibs/ietf/ITU-ALARM-MIB.dic +665 -0
  146. data/lib/mibs/ietf/ITU-ALARM-TC-MIB.dic +137 -0
  147. data/lib/mibs/ietf/Job-Monitoring-MIB.dic +2519 -0
  148. data/lib/mibs/ietf/L2TP-MIB.dic +4050 -0
  149. data/lib/mibs/ietf/LANGTAG-TC-MIB.dic +104 -0
  150. data/lib/mibs/ietf/LISP-MIB.dic +4067 -0
  151. data/lib/mibs/ietf/LMP-MIB.dic +5166 -0
  152. data/lib/mibs/ietf/MALLOC-MIB.dic +2156 -0
  153. data/lib/mibs/ietf/MAU-MIB.dic +2619 -0
  154. data/lib/mibs/ietf/MIDCOM-MIB.dic +2856 -0
  155. data/lib/mibs/ietf/MIOX25-MIB.dic +828 -0
  156. data/lib/mibs/ietf/MIP-MIB.dic +3473 -0
  157. data/lib/mibs/ietf/MOBILEIPV6-MIB.dic +5228 -0
  158. data/lib/mibs/ietf/MPLS-FTN-STD-MIB.dic +1594 -0
  159. data/lib/mibs/ietf/MPLS-L3VPN-STD-MIB.dic +2548 -0
  160. data/lib/mibs/ietf/MPLS-LC-ATM-STD-MIB.dic +491 -0
  161. data/lib/mibs/ietf/MPLS-LC-FR-STD-MIB.dic +395 -0
  162. data/lib/mibs/ietf/MPLS-LDP-ATM-STD-MIB.dic +1019 -0
  163. data/lib/mibs/ietf/MPLS-LDP-FRAME-RELAY-STD-MIB.dic +862 -0
  164. data/lib/mibs/ietf/MPLS-LDP-GENERIC-STD-MIB.dic +445 -0
  165. data/lib/mibs/ietf/MPLS-LDP-STD-MIB.dic +3657 -0
  166. data/lib/mibs/ietf/MPLS-LSR-STD-MIB.dic +3103 -0
  167. data/lib/mibs/ietf/MPLS-TC-STD-MIB.dic +911 -0
  168. data/lib/mibs/ietf/MPLS-TE-STD-MIB.dic +3673 -0
  169. data/lib/mibs/ietf/MSDP-MIB.dic +1893 -0
  170. data/lib/mibs/ietf/MTA-MIB.dic +1898 -0
  171. data/lib/mibs/ietf/Modem-MIB.dic +2054 -0
  172. data/lib/mibs/ietf/NAT-MIB.dic +3866 -0
  173. data/lib/mibs/ietf/NETWORK-SERVICES-MIB.dic +1034 -0
  174. data/lib/mibs/ietf/NHDP-MIB.dic +3005 -0
  175. data/lib/mibs/ietf/NHRP-MIB.dic +3660 -0
  176. data/lib/mibs/ietf/NOTIFICATION-LOG-MIB.dic +1156 -0
  177. data/lib/mibs/ietf/NTPv4-MIB.dic +1535 -0
  178. data/lib/mibs/ietf/OPT-IF-MIB.dic +8972 -0
  179. data/lib/mibs/ietf/OSPF-MIB.dic +5963 -0
  180. data/lib/mibs/ietf/OSPF-TRAP-MIB.dic +1190 -0
  181. data/lib/mibs/ietf/OSPFV3-MIB.dic +5708 -0
  182. data/lib/mibs/ietf/P-BRIDGE-MIB.dic +1499 -0
  183. data/lib/mibs/ietf/PARALLEL-MIB.dic +476 -0
  184. data/lib/mibs/ietf/PIM-MIB.dic +1393 -0
  185. data/lib/mibs/ietf/PIM-STD-MIB.dic +6819 -0
  186. data/lib/mibs/ietf/PINT-MIB.dic +830 -0
  187. data/lib/mibs/ietf/PKTC-IETF-MTA-MIB.dic +3191 -0
  188. data/lib/mibs/ietf/PKTC-IETF-SIG-MIB.dic +4713 -0
  189. data/lib/mibs/ietf/PMIPV6-MIB.dic +3010 -0
  190. data/lib/mibs/ietf/PMIPV6-TC-MIB.dic +293 -0
  191. data/lib/mibs/ietf/POLICY-BASED-MANAGEMENT-MIB.dic +3316 -0
  192. data/lib/mibs/ietf/POWER-ETHERNET-MIB.dic +959 -0
  193. data/lib/mibs/ietf/PPP-BRIDGE-NCP-MIB.dic +587 -0
  194. data/lib/mibs/ietf/PPP-IP-NCP-MIB.dic +269 -0
  195. data/lib/mibs/ietf/PPP-LCP-MIB.dic +994 -0
  196. data/lib/mibs/ietf/PPP-SEC-MIB.dic +411 -0
  197. data/lib/mibs/ietf/PSAMP-MIB.dic +998 -0
  198. data/lib/mibs/ietf/PTOPO-MIB.dic +1135 -0
  199. data/lib/mibs/ietf/PW-ATM-MIB.dic +1642 -0
  200. data/lib/mibs/ietf/PW-CEP-STD-MIB.dic +3661 -0
  201. data/lib/mibs/ietf/PW-STD-MIB.dic +3592 -0
  202. data/lib/mibs/ietf/PW-TC-STD-MIB.dic +437 -0
  203. data/lib/mibs/ietf/PW-TDM-MIB.dic +1896 -0
  204. data/lib/mibs/ietf/PerfHist-TC-MIB.dic +152 -0
  205. data/lib/mibs/ietf/Printer-MIB.dic +6665 -0
  206. data/lib/mibs/ietf/Q-BRIDGE-MIB.dic +3115 -0
  207. data/lib/mibs/ietf/RADIUS-ACC-CLIENT-MIB.dic +991 -0
  208. data/lib/mibs/ietf/RADIUS-ACC-SERVER-MIB.dic +1183 -0
  209. data/lib/mibs/ietf/RADIUS-AUTH-CLIENT-MIB.dic +1073 -0
  210. data/lib/mibs/ietf/RADIUS-AUTH-SERVER-MIB.dic +1251 -0
  211. data/lib/mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB.dic +1116 -0
  212. data/lib/mibs/ietf/RADIUS-DYNAUTH-SERVER-MIB.dic +1003 -0
  213. data/lib/mibs/ietf/RAQMON-MIB.dic +2695 -0
  214. data/lib/mibs/ietf/RBRIDGE-MIB.dic +2981 -0
  215. data/lib/mibs/ietf/RDBMS-MIB.dic +1935 -0
  216. data/lib/mibs/ietf/RFC1065-SMI.dic +108 -0
  217. data/lib/mibs/ietf/RFC1155-SMI.dic +118 -0
  218. data/lib/mibs/ietf/RFC1158-MIB.dic +2440 -0
  219. data/lib/mibs/ietf/RFC1213-MIB.dic +3434 -0
  220. data/lib/mibs/ietf/RFC1269-MIB.dic +557 -0
  221. data/lib/mibs/ietf/RFC1271-MIB.dic +4135 -0
  222. data/lib/mibs/ietf/RFC1285-MIB.dic +2842 -0
  223. data/lib/mibs/ietf/RFC1316-MIB.dic +800 -0
  224. data/lib/mibs/ietf/RFC1381-MIB.dic +1347 -0
  225. data/lib/mibs/ietf/RFC1382-MIB.dic +3820 -0
  226. data/lib/mibs/ietf/RFC1414-MIB.dic +214 -0
  227. data/lib/mibs/ietf/RIPv2-MIB.dic +773 -0
  228. data/lib/mibs/ietf/RMON-MIB.dic +5551 -0
  229. data/lib/mibs/ietf/RMON2-MIB.dic +8224 -0
  230. data/lib/mibs/ietf/ROHC-MIB.dic +1613 -0
  231. data/lib/mibs/ietf/ROHC-RTP-MIB.dic +859 -0
  232. data/lib/mibs/ietf/ROHC-UNCOMPRESSED-MIB.dic +267 -0
  233. data/lib/mibs/ietf/RPKI-ROUTER-MIB.dic +1363 -0
  234. data/lib/mibs/ietf/RS-232-MIB.dic +1335 -0
  235. data/lib/mibs/ietf/RSERPOOL-MIB.dic +2501 -0
  236. data/lib/mibs/ietf/RSTP-MIB.dic +427 -0
  237. data/lib/mibs/ietf/RSVP-MIB.dic +4135 -0
  238. data/lib/mibs/ietf/RTP-MIB.dic +1376 -0
  239. data/lib/mibs/ietf/SCSI-MIB.dic +3804 -0
  240. data/lib/mibs/ietf/SCTP-MIB.dic +1924 -0
  241. data/lib/mibs/ietf/SFLOW-MIB.dic +568 -0
  242. data/lib/mibs/ietf/SIP-COMMON-MIB.dic +2769 -0
  243. data/lib/mibs/ietf/SIP-MIB.dic +1438 -0
  244. data/lib/mibs/ietf/SIP-SERVER-MIB.dic +1150 -0
  245. data/lib/mibs/ietf/SIP-TC-MIB.dic +257 -0
  246. data/lib/mibs/ietf/SIP-UA-MIB.dic +268 -0
  247. data/lib/mibs/ietf/SLAPM-MIB.dic +4527 -0
  248. data/lib/mibs/ietf/SMON-MIB.dic +1758 -0
  249. data/lib/mibs/ietf/SNA-NAU-MIB.dic +4042 -0
  250. data/lib/mibs/ietf/SNA-SDLC-MIB.dic +3858 -0
  251. data/lib/mibs/ietf/SNMP-COMMUNITY-MIB.dic +715 -0
  252. data/lib/mibs/ietf/SNMP-FRAMEWORK-MIB.dic +709 -0
  253. data/lib/mibs/ietf/SNMP-MPD-MIB.dic +230 -0
  254. data/lib/mibs/ietf/SNMP-NOTIFICATION-MIB.dic +859 -0
  255. data/lib/mibs/ietf/SNMP-PROXY-MIB.dic +414 -0
  256. data/lib/mibs/ietf/SNMP-REPEATER-MIB.dic +4335 -0
  257. data/lib/mibs/ietf/SNMP-SSH-TM-MIB.dic +447 -0
  258. data/lib/mibs/ietf/SNMP-TARGET-MIB.dic +924 -0
  259. data/lib/mibs/ietf/SNMP-TLS-TM-MIB.dic +1449 -0
  260. data/lib/mibs/ietf/SNMP-TSM-MIB.dic +315 -0
  261. data/lib/mibs/ietf/SNMP-USER-BASED-SM-MIB.dic +1164 -0
  262. data/lib/mibs/ietf/SNMP-USM-AES-MIB.dic +95 -0
  263. data/lib/mibs/ietf/SNMP-USM-DH-OBJECTS-MIB.dic +653 -0
  264. data/lib/mibs/ietf/SNMP-VIEW-BASED-ACM-MIB.dic +1202 -0
  265. data/lib/mibs/ietf/SNMPv2-MIB.dic +1382 -0
  266. data/lib/mibs/ietf/SNMPv2-SMI.dic +223 -0
  267. data/lib/mibs/ietf/SNMPv2-USEC-MIB.dic +405 -0
  268. data/lib/mibs/ietf/SONET-MIB.dic +3308 -0
  269. data/lib/mibs/ietf/SOURCE-ROUTING-MIB.dic +542 -0
  270. data/lib/mibs/ietf/SSPM-MIB.dic +1530 -0
  271. data/lib/mibs/ietf/SYSAPPL-MIB.dic +2092 -0
  272. data/lib/mibs/ietf/T11-FC-FABRIC-ADDR-MGR-MIB.dic +1779 -0
  273. data/lib/mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB.dic +2822 -0
  274. data/lib/mibs/ietf/T11-FC-FABRIC-LOCK-MIB.dic +700 -0
  275. data/lib/mibs/ietf/T11-FC-FSPF-MIB.dic +1889 -0
  276. data/lib/mibs/ietf/T11-FC-NAME-SERVER-MIB.dic +1775 -0
  277. data/lib/mibs/ietf/T11-FC-ROUTE-MIB.dic +655 -0
  278. data/lib/mibs/ietf/T11-FC-RSCN-MIB.dic +1110 -0
  279. data/lib/mibs/ietf/T11-FC-VIRTUAL-FABRIC-MIB.dic +770 -0
  280. data/lib/mibs/ietf/T11-FC-ZONE-SERVER-MIB.dic +3886 -0
  281. data/lib/mibs/ietf/T11-TC-MIB.dic +110 -0
  282. data/lib/mibs/ietf/TCP-ESTATS-MIB.dic +3926 -0
  283. data/lib/mibs/ietf/TCP-MIB.dic +1319 -0
  284. data/lib/mibs/ietf/TCPIPX-MIB.dic +457 -0
  285. data/lib/mibs/ietf/TE-LINK-STD-MIB.dic +2876 -0
  286. data/lib/mibs/ietf/TE-MIB.dic +2924 -0
  287. data/lib/mibs/ietf/TED-MIB.dic +1749 -0
  288. data/lib/mibs/ietf/TIME-AGGREGATE-MIB.dic +550 -0
  289. data/lib/mibs/ietf/TN3270E-MIB.dic +2785 -0
  290. data/lib/mibs/ietf/TN3270E-RT-MIB.dic +1317 -0
  291. data/lib/mibs/ietf/TOKEN-RING-RMON-MIB.dic +2820 -0
  292. data/lib/mibs/ietf/TOKENRING-MIB.dic +1184 -0
  293. data/lib/mibs/ietf/TOKENRING-STATION-SR-MIB.dic +292 -0
  294. data/lib/mibs/ietf/TRANSPORT-ADDRESS-MIB.dic +610 -0
  295. data/lib/mibs/ietf/TRIP-MIB.dic +3159 -0
  296. data/lib/mibs/ietf/TRIP-TC-MIB.dic +241 -0
  297. data/lib/mibs/ietf/TUNNEL-MIB.dic +1095 -0
  298. data/lib/mibs/ietf/UDP-MIB.dic +751 -0
  299. data/lib/mibs/ietf/UDPLITE-MIB.dic +704 -0
  300. data/lib/mibs/ietf/UPS-MIB.dic +3088 -0
  301. data/lib/mibs/ietf/URI-TC-MIB.dic +193 -0
  302. data/lib/mibs/ietf/UUID-TC-MIB.dic +135 -0
  303. data/lib/mibs/ietf/VDSL-LINE-EXT-MCM-MIB.dic +989 -0
  304. data/lib/mibs/ietf/VDSL-LINE-EXT-SCM-MIB.dic +605 -0
  305. data/lib/mibs/ietf/VDSL-LINE-MIB.dic +4518 -0
  306. data/lib/mibs/ietf/VDSL2-LINE-MIB.dic +11029 -0
  307. data/lib/mibs/ietf/VDSL2-LINE-TC-MIB.dic +3152 -0
  308. data/lib/mibs/ietf/VPN-TC-STD-MIB.dic +121 -0
  309. data/lib/mibs/ietf/VRRP-MIB.dic +1163 -0
  310. data/lib/mibs/ietf/VRRPV3-MIB.dic +1403 -0
  311. data/lib/mibs/ietf/WWW-MIB.dic +1810 -0
  312. data/lib/mibs/logstash/iso.dic +18 -0
  313. data/logstash-integration-snmp.gemspec +40 -0
  314. data/spec/fixtures/RFC1213-MIB.dic +3445 -0
  315. data/spec/fixtures/collision.dic +25 -0
  316. data/spec/integration/inputs/snmp_spec.rb +443 -0
  317. data/spec/integration/inputs/snmptrap_spec.rb +383 -0
  318. data/spec/unit/inputs/common_spec.rb +264 -0
  319. data/spec/unit/inputs/snmp_spec.rb +510 -0
  320. data/spec/unit/inputs/snmptrap_spec.rb +141 -0
  321. data/vendor/jar-dependencies/org/logstash/integrations/plugin/4.0.0/plugin-4.0.0.jar +0 -0
  322. data/vendor/jar-dependencies/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar +0 -0
  323. data/vendor/jar-dependencies/org/snmp4j/snmp4j/3.8.0/snmp4j-3.8.0.jar +0 -0
  324. metadata +523 -0
@@ -0,0 +1,2447 @@
1
+ # python version 1.0 DO NOT EDIT
2
+ #
3
+ # This python file has been generated by smidump version 0.5.0:
4
+ #
5
+ # smidump -f python DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
11
+
12
+ "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IP over Cable Data Network
17
+ Working Group""",
18
+ "contact" :
19
+ """ Azlina Ahmad
20
+ Postal: Cisco Systems, Inc.
21
+ 170 West Tasman Drive
22
+ San Jose, CA 95134, U.S.A.
23
+ Phone: 408 853 7927
24
+ E-mail: azlina@cisco.com
25
+
26
+ Greg Nakanishi
27
+ Postal: Motorola
28
+ 6450 Sequence Drive
29
+ San Diego, CA 92121, U.S.A.
30
+ Phone: 858 404 2366
31
+ E-mail: gnakanishi@motorola.com
32
+
33
+ IETF IPCDN Working Group
34
+ General Discussion: ipcdn@ietf.org
35
+
36
+
37
+
38
+ Subscribe: http://www.ietf.org/mailman/listinfo/ipcdn
39
+ Archive: ftp://ftp.ietf.org/ietf-mail-archive/ipcdn
40
+ Co-chairs: Richard Woundy,
41
+ richard_woundy@cable.comcast.com
42
+ Jean-Francois Mule, jf.mule@cablelabs.com""",
43
+ "description" :
44
+ """The Event Notification MIB is an extension of the
45
+ CABLE DEVICE MIB. It defines various notification
46
+ objects for both cable modem and cable modem termination
47
+ systems. Two groups of SNMP notification objects are
48
+ defined. One group is for notifying cable modem events,
49
+ and one group is for notifying cable modem termination
50
+ system events.
51
+
52
+ DOCSIS defines numerous events, and each event is
53
+ assigned to a functional category. This MIB defines
54
+ a notification object for each functional category.
55
+ The varbinding list of each notification includes
56
+ information about the event that occurred on the
57
+ device.
58
+
59
+ Copyright (C) The Internet Society (2006). This version
60
+ of this MIB module is part of RFC 4547; see the RFC
61
+ itself for full legal notices.""",
62
+ "revisions" : (
63
+ {
64
+ "date" : "2006-05-24 00:00",
65
+ "description" :
66
+ """Initial version, published as RFC 4547.""",
67
+ },
68
+ ),
69
+ "identity node" : "docsDevNotifMIB",
70
+ },
71
+
72
+ "imports" : (
73
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
74
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
75
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
76
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
77
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
78
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
79
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
80
+ {"module" : "DOCS-CABLE-DEVICE-MIB", "name" : "docsDevEvLevel"},
81
+ {"module" : "DOCS-CABLE-DEVICE-MIB", "name" : "docsDevEvId"},
82
+ {"module" : "DOCS-CABLE-DEVICE-MIB", "name" : "docsDevEvText"},
83
+ {"module" : "DOCS-CABLE-DEVICE-MIB", "name" : "docsDevSwFilename"},
84
+ {"module" : "DOCS-CABLE-DEVICE-MIB", "name" : "docsDevSwServer"},
85
+ {"module" : "DOCS-CABLE-DEVICE-MIB", "name" : "docsDevServerDhcp"},
86
+ {"module" : "DOCS-CABLE-DEVICE-MIB", "name" : "docsDevServerTime"},
87
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfCmCmtsAddress"},
88
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfCmtsCmStatusMacAddress"},
89
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfDocsisBaseCapability"},
90
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfCmStatusDocsisOperMode"},
91
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfCmStatusModulationType"},
92
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfCmtsCmStatusDocsisRegMode"},
93
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfCmtsCmStatusModulationType"},
94
+ {"module" : "IF-MIB", "name" : "ifPhysAddress"},
95
+ ),
96
+
97
+ "nodes" : {
98
+ "docsDevNotifMIB" : {
99
+ "nodetype" : "node",
100
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
101
+ "oid" : "1.3.6.1.2.1.132",
102
+ "status" : "current",
103
+ }, # node
104
+ "docsDevNotifControl" : {
105
+ "nodetype" : "node",
106
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
107
+ "oid" : "1.3.6.1.2.1.132.1",
108
+ }, # node
109
+ "docsDevCmNotifControl" : {
110
+ "nodetype" : "scalar",
111
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
112
+ "oid" : "1.3.6.1.2.1.132.1.1",
113
+ "status" : "current",
114
+ "syntax" : {
115
+ "type" : {
116
+ "basetype" : "Bits",
117
+ "cmInitTLVUnknownNotif" : {
118
+ "nodetype" : "namednumber",
119
+ "number" : "0"
120
+ },
121
+ "cmDynServReqFailNotif" : {
122
+ "nodetype" : "namednumber",
123
+ "number" : "1"
124
+ },
125
+ "cmDynServRspFailNotif" : {
126
+ "nodetype" : "namednumber",
127
+ "number" : "2"
128
+ },
129
+ "cmDynServAckFailNotif" : {
130
+ "nodetype" : "namednumber",
131
+ "number" : "3"
132
+ },
133
+ "cmBpiInitNotif" : {
134
+ "nodetype" : "namednumber",
135
+ "number" : "4"
136
+ },
137
+ "cmBPKMNotif" : {
138
+ "nodetype" : "namednumber",
139
+ "number" : "5"
140
+ },
141
+ "cmDynamicSANotif" : {
142
+ "nodetype" : "namednumber",
143
+ "number" : "6"
144
+ },
145
+ "cmDHCPFailNotif" : {
146
+ "nodetype" : "namednumber",
147
+ "number" : "7"
148
+ },
149
+ "cmSwUpgradeInitNotif" : {
150
+ "nodetype" : "namednumber",
151
+ "number" : "8"
152
+ },
153
+ "cmSwUpgradeFailNotif" : {
154
+ "nodetype" : "namednumber",
155
+ "number" : "9"
156
+ },
157
+ "cmSwUpgradeSuccessNotif" : {
158
+ "nodetype" : "namednumber",
159
+ "number" : "10"
160
+ },
161
+ "cmSwUpgradeCVCNotif" : {
162
+ "nodetype" : "namednumber",
163
+ "number" : "11"
164
+ },
165
+ "cmTODFailNotif" : {
166
+ "nodetype" : "namednumber",
167
+ "number" : "12"
168
+ },
169
+ "cmDCCReqFailNotif" : {
170
+ "nodetype" : "namednumber",
171
+ "number" : "13"
172
+ },
173
+ "cmDCCRspFailNotif" : {
174
+ "nodetype" : "namednumber",
175
+ "number" : "14"
176
+ },
177
+ "cmDCCAckFailNotif" : {
178
+ "nodetype" : "namednumber",
179
+ "number" : "15"
180
+ },
181
+ },
182
+ },
183
+ "access" : "readwrite",
184
+ "default" : "()",
185
+ "description" :
186
+ """The object is used to enable specific CM notifications.
187
+ For example, if the first bit is set, then
188
+ docsDevCmInitTLVUnknownNotif is enabled. If it is not set,
189
+ the notification is disabled. Note that notifications are
190
+ also under the control of the MIB modules defined in
191
+ RFC3413.
192
+
193
+ If the device is rebooted,the value of this object SHOULD
194
+ revert to the default value.""",
195
+ }, # scalar
196
+ "docsDevCmtsNotifControl" : {
197
+ "nodetype" : "scalar",
198
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
199
+ "oid" : "1.3.6.1.2.1.132.1.2",
200
+ "status" : "current",
201
+ "syntax" : {
202
+ "type" : {
203
+ "basetype" : "Bits",
204
+ "cmtsInitRegReqFailNotif" : {
205
+ "nodetype" : "namednumber",
206
+ "number" : "0"
207
+ },
208
+ "cmtsInitRegRspFailNotif" : {
209
+ "nodetype" : "namednumber",
210
+ "number" : "1"
211
+ },
212
+ "cmtsInitRegAckFailNotif" : {
213
+ "nodetype" : "namednumber",
214
+ "number" : "2"
215
+ },
216
+ "cmtsDynServReqFailNotif" : {
217
+ "nodetype" : "namednumber",
218
+ "number" : "3"
219
+ },
220
+ "cmtsDynServRspFailNotif" : {
221
+ "nodetype" : "namednumber",
222
+ "number" : "4"
223
+ },
224
+ "cmtsDynServAckFailNotif" : {
225
+ "nodetype" : "namednumber",
226
+ "number" : "5"
227
+ },
228
+ "cmtsBpiInitNotif" : {
229
+ "nodetype" : "namednumber",
230
+ "number" : "6"
231
+ },
232
+ "cmtsBPKMNotif" : {
233
+ "nodetype" : "namednumber",
234
+ "number" : "7"
235
+ },
236
+ "cmtsDynamicSANotif" : {
237
+ "nodetype" : "namednumber",
238
+ "number" : "8"
239
+ },
240
+ "cmtsDCCReqFailNotif" : {
241
+ "nodetype" : "namednumber",
242
+ "number" : "9"
243
+ },
244
+ "cmtsDCCRspFailNotif" : {
245
+ "nodetype" : "namednumber",
246
+ "number" : "10"
247
+ },
248
+ "cmtsDCCAckFailNotif" : {
249
+ "nodetype" : "namednumber",
250
+ "number" : "11"
251
+ },
252
+ },
253
+ },
254
+ "access" : "readwrite",
255
+ "default" : "()",
256
+ "description" :
257
+ """The object is used to enable specific CMTS notifications.
258
+ For example, if the first bit is set, then
259
+ docsDevCmtsInitRegRspFailNotif is enabled. If it is not set,
260
+ the notification is disabled. Note that notifications are
261
+ also under the control of the MIB modules defined in
262
+ RFC3413.
263
+
264
+
265
+
266
+
267
+ If the device is rebooted,the value of this object SHOULD
268
+ revert to the default value.""",
269
+ }, # scalar
270
+ "docsDevCmNotifs" : {
271
+ "nodetype" : "node",
272
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
273
+ "oid" : "1.3.6.1.2.1.132.2.0",
274
+ }, # node
275
+ "docsDevCmtsNotifs" : {
276
+ "nodetype" : "node",
277
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
278
+ "oid" : "1.3.6.1.2.1.132.3.0",
279
+ }, # node
280
+ "docsDevNotifConformance" : {
281
+ "nodetype" : "node",
282
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
283
+ "oid" : "1.3.6.1.2.1.132.4",
284
+ }, # node
285
+ "docsDevNotifGroups" : {
286
+ "nodetype" : "node",
287
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
288
+ "oid" : "1.3.6.1.2.1.132.4.1",
289
+ }, # node
290
+ "docsDevNotifCompliances" : {
291
+ "nodetype" : "node",
292
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
293
+ "oid" : "1.3.6.1.2.1.132.4.2",
294
+ }, # node
295
+ }, # nodes
296
+
297
+ "notifications" : {
298
+ "docsDevCmInitTLVUnknownNotif" : {
299
+ "nodetype" : "notification",
300
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
301
+ "oid" : "1.3.6.1.2.1.132.2.0.1",
302
+ "status" : "current",
303
+ "objects" : {
304
+ "docsDevEvLevel" : {
305
+ "nodetype" : "object",
306
+ "module" : "DOCS-CABLE-DEVICE-MIB"
307
+ },
308
+ "docsDevEvId" : {
309
+ "nodetype" : "object",
310
+ "module" : "DOCS-CABLE-DEVICE-MIB"
311
+ },
312
+ "docsDevEvText" : {
313
+ "nodetype" : "object",
314
+ "module" : "DOCS-CABLE-DEVICE-MIB"
315
+ },
316
+ "ifPhysAddress" : {
317
+ "nodetype" : "object",
318
+ "module" : "IF-MIB"
319
+ },
320
+ "docsIfCmCmtsAddress" : {
321
+ "nodetype" : "object",
322
+ "module" : "DOCS-IF-MIB"
323
+ },
324
+ "docsIfDocsisBaseCapability" : {
325
+ "nodetype" : "object",
326
+ "module" : "DOCS-IF-MIB"
327
+ },
328
+ "docsIfCmStatusDocsisOperMode" : {
329
+ "nodetype" : "object",
330
+ "module" : "DOCS-IF-MIB"
331
+ },
332
+ "docsIfCmStatusModulationType" : {
333
+ "nodetype" : "object",
334
+ "module" : "DOCS-IF-MIB"
335
+ },
336
+ },
337
+ "description" :
338
+ """Notification to indicate that an unknown TLV was
339
+ encountered during the TLV parsing process.
340
+
341
+ This notification sends additional information about
342
+ the event by including the following objects in its
343
+ varbinding list.
344
+ - docsDevEvLevel: the priority level associated with the
345
+ event.
346
+ - docsDevEvId: the unique identifier of the event that
347
+ occurred.
348
+ - docsDevEvText: a textual description of the event.
349
+ - ifPhysAddress: the MAC address of the cable
350
+ interface of this cable modem.
351
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
352
+ to which the CM is connected (if there is a cable
353
+ card/interface in the CMTS, then it is actually the
354
+ MAC address of the cable interface to which it is
355
+ connected).
356
+ - docsIfDocsisBaseCapability: the highest
357
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
358
+ that the device is capable of supporting.
359
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
360
+ that the CM is operating in.
361
+ - docsIfCmStatusModulationType: the upstream modulation
362
+ methodology used by the CM.""",
363
+ }, # notification
364
+ "docsDevCmDynServReqFailNotif" : {
365
+ "nodetype" : "notification",
366
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
367
+ "oid" : "1.3.6.1.2.1.132.2.0.2",
368
+ "status" : "current",
369
+ "objects" : {
370
+ "docsDevEvLevel" : {
371
+ "nodetype" : "object",
372
+ "module" : "DOCS-CABLE-DEVICE-MIB"
373
+ },
374
+ "docsDevEvId" : {
375
+ "nodetype" : "object",
376
+ "module" : "DOCS-CABLE-DEVICE-MIB"
377
+ },
378
+ "docsDevEvText" : {
379
+ "nodetype" : "object",
380
+ "module" : "DOCS-CABLE-DEVICE-MIB"
381
+ },
382
+ "ifPhysAddress" : {
383
+ "nodetype" : "object",
384
+ "module" : "IF-MIB"
385
+ },
386
+ "docsIfCmCmtsAddress" : {
387
+ "nodetype" : "object",
388
+ "module" : "DOCS-IF-MIB"
389
+ },
390
+ "docsIfDocsisBaseCapability" : {
391
+ "nodetype" : "object",
392
+ "module" : "DOCS-IF-MIB"
393
+ },
394
+ "docsIfCmStatusDocsisOperMode" : {
395
+ "nodetype" : "object",
396
+ "module" : "DOCS-IF-MIB"
397
+ },
398
+ "docsIfCmStatusModulationType" : {
399
+ "nodetype" : "object",
400
+ "module" : "DOCS-IF-MIB"
401
+ },
402
+ },
403
+ "description" :
404
+ """A notification to report the failure of a dynamic service
405
+ request during the dynamic services process.
406
+
407
+ This notification sends additional information about
408
+ the event by including the following objects in its
409
+ varbinding list.
410
+ - docsDevEvLevel: the priority level associated with the
411
+ event.
412
+ - docsDevEvId: the unique identifier of the event that
413
+ occurred.
414
+ - docsDevEvText: a textual description of the event.
415
+ - ifPhysAddress: the MAC address of the cable
416
+ interface of this cable modem.
417
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
418
+ to which the CM is connected to (if there is a cable
419
+ card/interface in the CMTS, then it is actually the
420
+ MAC address of the cable interface to which it is
421
+ connected).
422
+ - docsIfDocsisBaseCapability: the highest
423
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
424
+ that the device is capable of supporting.
425
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
426
+ that the CM is operating in.
427
+ - docsIfCmStatusModulationType: the upstream modulation
428
+ methodology used by the CM.""",
429
+ }, # notification
430
+ "docsDevCmDynServRspFailNotif" : {
431
+ "nodetype" : "notification",
432
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
433
+ "oid" : "1.3.6.1.2.1.132.2.0.3",
434
+ "status" : "current",
435
+ "objects" : {
436
+ "docsDevEvLevel" : {
437
+ "nodetype" : "object",
438
+ "module" : "DOCS-CABLE-DEVICE-MIB"
439
+ },
440
+ "docsDevEvId" : {
441
+ "nodetype" : "object",
442
+ "module" : "DOCS-CABLE-DEVICE-MIB"
443
+ },
444
+ "docsDevEvText" : {
445
+ "nodetype" : "object",
446
+ "module" : "DOCS-CABLE-DEVICE-MIB"
447
+ },
448
+ "ifPhysAddress" : {
449
+ "nodetype" : "object",
450
+ "module" : "IF-MIB"
451
+ },
452
+ "docsIfCmCmtsAddress" : {
453
+ "nodetype" : "object",
454
+ "module" : "DOCS-IF-MIB"
455
+ },
456
+ "docsIfDocsisBaseCapability" : {
457
+ "nodetype" : "object",
458
+ "module" : "DOCS-IF-MIB"
459
+ },
460
+ "docsIfCmStatusDocsisOperMode" : {
461
+ "nodetype" : "object",
462
+ "module" : "DOCS-IF-MIB"
463
+ },
464
+ "docsIfCmStatusModulationType" : {
465
+ "nodetype" : "object",
466
+ "module" : "DOCS-IF-MIB"
467
+ },
468
+ },
469
+ "description" :
470
+ """ A notification to report the failure of a dynamic service
471
+ response during the dynamic services process.
472
+
473
+ This notification sends additional information about
474
+ the event by including the following objects in its
475
+ varbinding list.
476
+ - docsDevEvLevel: the priority level associated with the
477
+ event.
478
+ - docsDevEvId: the unique identifier of the event that
479
+ occurred.
480
+ - docsDevEvText: a textual description of the event.
481
+ - ifPhysAddress: the MAC address of the cable
482
+ interface of this cable modem.
483
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
484
+ to which the CM is connected (if there is a cable
485
+ card/interface in the CMTS, then it is actually the
486
+ MAC address of the cable interface to which it is
487
+ connected).
488
+ - docsIfDocsisBaseCapability: the highest
489
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
490
+ that the device is capable of supporting.
491
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
492
+ that the CM is operating in.
493
+ - docsIfCmStatusModulationType: the upstream modulation
494
+ methodology used by the CM.""",
495
+ }, # notification
496
+ "docsDevCmDynServAckFailNotif" : {
497
+ "nodetype" : "notification",
498
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
499
+ "oid" : "1.3.6.1.2.1.132.2.0.4",
500
+ "status" : "current",
501
+ "objects" : {
502
+ "docsDevEvLevel" : {
503
+ "nodetype" : "object",
504
+ "module" : "DOCS-CABLE-DEVICE-MIB"
505
+ },
506
+ "docsDevEvId" : {
507
+ "nodetype" : "object",
508
+ "module" : "DOCS-CABLE-DEVICE-MIB"
509
+ },
510
+ "docsDevEvText" : {
511
+ "nodetype" : "object",
512
+ "module" : "DOCS-CABLE-DEVICE-MIB"
513
+ },
514
+ "ifPhysAddress" : {
515
+ "nodetype" : "object",
516
+ "module" : "IF-MIB"
517
+ },
518
+ "docsIfCmCmtsAddress" : {
519
+ "nodetype" : "object",
520
+ "module" : "DOCS-IF-MIB"
521
+ },
522
+ "docsIfDocsisBaseCapability" : {
523
+ "nodetype" : "object",
524
+ "module" : "DOCS-IF-MIB"
525
+ },
526
+ "docsIfCmStatusDocsisOperMode" : {
527
+ "nodetype" : "object",
528
+ "module" : "DOCS-IF-MIB"
529
+ },
530
+ "docsIfCmStatusModulationType" : {
531
+ "nodetype" : "object",
532
+ "module" : "DOCS-IF-MIB"
533
+ },
534
+ },
535
+ "description" :
536
+ """A notification to report the failure of a dynamic service
537
+ acknowledgement during the dynamic services process.
538
+
539
+ This notification sends additional information about
540
+ the event by including the following objects in its
541
+ varbinding list.
542
+ - docsDevEvLevel: the priority level associated with the
543
+ event.
544
+ - docsDevEvId: the unique identifier of the event that
545
+ occurred.
546
+ - docsDevEvText: a textual description of the event.
547
+ - ifPhysAddress: the MAC address of the cable
548
+ interface of this cable modem.
549
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
550
+ to which the CM is connected (if there is a cable
551
+ card/interface in the CMTS, then it is actually the
552
+ MAC address of the cable interface to which it is
553
+ connected).
554
+ - docsIfDocsisBaseCapability: the highest
555
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
556
+ that the device is capable of supporting.
557
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
558
+ that the CM is operating in.
559
+ - docsIfCmStatusModulationType: the upstream modulation
560
+ methodology used by the CM.""",
561
+ }, # notification
562
+ "docsDevCmBpiInitNotif" : {
563
+ "nodetype" : "notification",
564
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
565
+ "oid" : "1.3.6.1.2.1.132.2.0.5",
566
+ "status" : "current",
567
+ "objects" : {
568
+ "docsDevEvLevel" : {
569
+ "nodetype" : "object",
570
+ "module" : "DOCS-CABLE-DEVICE-MIB"
571
+ },
572
+ "docsDevEvId" : {
573
+ "nodetype" : "object",
574
+ "module" : "DOCS-CABLE-DEVICE-MIB"
575
+ },
576
+ "docsDevEvText" : {
577
+ "nodetype" : "object",
578
+ "module" : "DOCS-CABLE-DEVICE-MIB"
579
+ },
580
+ "ifPhysAddress" : {
581
+ "nodetype" : "object",
582
+ "module" : "IF-MIB"
583
+ },
584
+ "docsIfCmCmtsAddress" : {
585
+ "nodetype" : "object",
586
+ "module" : "DOCS-IF-MIB"
587
+ },
588
+ "docsIfDocsisBaseCapability" : {
589
+ "nodetype" : "object",
590
+ "module" : "DOCS-IF-MIB"
591
+ },
592
+ "docsIfCmStatusDocsisOperMode" : {
593
+ "nodetype" : "object",
594
+ "module" : "DOCS-IF-MIB"
595
+ },
596
+ "docsIfCmStatusModulationType" : {
597
+ "nodetype" : "object",
598
+ "module" : "DOCS-IF-MIB"
599
+ },
600
+ },
601
+ "description" :
602
+ """A notification to report the failure of a BPI
603
+ initialization attempt during the registration process.
604
+
605
+ This notification sends additional information about
606
+ the event by including the following objects in its
607
+ varbinding list.
608
+ - docsDevEvLevel: the priority level associated with the
609
+
610
+
611
+
612
+ event.
613
+ - docsDevEvId: the unique identifier of the event that
614
+ occurred.
615
+ - docsDevEvText: a textual description of the event.
616
+ - ifPhysAddress: the MAC address of the cable
617
+ interface of this cable modem.
618
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
619
+ to which the CM is connected (if there is a cable
620
+ card/interface in the CMTS, then it is actually the
621
+ MAC address of the cable interface to which it is
622
+ connected).
623
+ - docsIfDocsisBaseCapability: the highest
624
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
625
+ that the device is capable of supporting.
626
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
627
+ that the CM is operating in.
628
+ - docsIfCmStatusModulationType: the upstream modulation
629
+ methodology used by the CM.""",
630
+ }, # notification
631
+ "docsDevCmBPKMNotif" : {
632
+ "nodetype" : "notification",
633
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
634
+ "oid" : "1.3.6.1.2.1.132.2.0.6",
635
+ "status" : "current",
636
+ "objects" : {
637
+ "docsDevEvLevel" : {
638
+ "nodetype" : "object",
639
+ "module" : "DOCS-CABLE-DEVICE-MIB"
640
+ },
641
+ "docsDevEvId" : {
642
+ "nodetype" : "object",
643
+ "module" : "DOCS-CABLE-DEVICE-MIB"
644
+ },
645
+ "docsDevEvText" : {
646
+ "nodetype" : "object",
647
+ "module" : "DOCS-CABLE-DEVICE-MIB"
648
+ },
649
+ "ifPhysAddress" : {
650
+ "nodetype" : "object",
651
+ "module" : "IF-MIB"
652
+ },
653
+ "docsIfCmCmtsAddress" : {
654
+ "nodetype" : "object",
655
+ "module" : "DOCS-IF-MIB"
656
+ },
657
+ "docsIfDocsisBaseCapability" : {
658
+ "nodetype" : "object",
659
+ "module" : "DOCS-IF-MIB"
660
+ },
661
+ "docsIfCmStatusDocsisOperMode" : {
662
+ "nodetype" : "object",
663
+ "module" : "DOCS-IF-MIB"
664
+ },
665
+ "docsIfCmStatusModulationType" : {
666
+ "nodetype" : "object",
667
+ "module" : "DOCS-IF-MIB"
668
+ },
669
+ },
670
+ "description" :
671
+ """A notification to report the failure of a Baseline
672
+ Privacy Key Management (BPKM) operation.
673
+
674
+ This notification sends additional information about
675
+ the event by including the following objects in its
676
+ varbinding list.
677
+ - docsDevEvLevel: the priority level associated with the
678
+ event.
679
+ - docsDevEvId: the unique identifier of the event that
680
+ occurred.
681
+ - docsDevEvText: a textual description of the event.
682
+ - ifPhysAddress: the MAC address of the cable
683
+ interface of this cable modem.
684
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
685
+
686
+
687
+
688
+ to which the CM is connected (if there is a cable
689
+ card/interface in the CMTS, then it is actually the
690
+ MAC address of the cable interface to which it is
691
+ connected).
692
+ - docsIfDocsisBaseCapability: the highest
693
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
694
+ that the device is capable of supporting.
695
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
696
+ that the CM is operating in.
697
+ - docsIfCmStatusModulationType: the upstream modulation
698
+ methodology used by the CM.""",
699
+ }, # notification
700
+ "docsDevCmDynamicSANotif" : {
701
+ "nodetype" : "notification",
702
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
703
+ "oid" : "1.3.6.1.2.1.132.2.0.7",
704
+ "status" : "current",
705
+ "objects" : {
706
+ "docsDevEvLevel" : {
707
+ "nodetype" : "object",
708
+ "module" : "DOCS-CABLE-DEVICE-MIB"
709
+ },
710
+ "docsDevEvId" : {
711
+ "nodetype" : "object",
712
+ "module" : "DOCS-CABLE-DEVICE-MIB"
713
+ },
714
+ "docsDevEvText" : {
715
+ "nodetype" : "object",
716
+ "module" : "DOCS-CABLE-DEVICE-MIB"
717
+ },
718
+ "ifPhysAddress" : {
719
+ "nodetype" : "object",
720
+ "module" : "IF-MIB"
721
+ },
722
+ "docsIfCmCmtsAddress" : {
723
+ "nodetype" : "object",
724
+ "module" : "DOCS-IF-MIB"
725
+ },
726
+ "docsIfDocsisBaseCapability" : {
727
+ "nodetype" : "object",
728
+ "module" : "DOCS-IF-MIB"
729
+ },
730
+ "docsIfCmStatusDocsisOperMode" : {
731
+ "nodetype" : "object",
732
+ "module" : "DOCS-IF-MIB"
733
+ },
734
+ "docsIfCmStatusModulationType" : {
735
+ "nodetype" : "object",
736
+ "module" : "DOCS-IF-MIB"
737
+ },
738
+ },
739
+ "description" :
740
+ """A notification to report the failure of a dynamic security
741
+ association operation.
742
+
743
+ This notification sends additional information about
744
+ the event by including the following objects in its
745
+ varbinding list.
746
+ - docsDevEvLevel: the priority level associated with the
747
+ event.
748
+ - docsDevEvId: the unique identifier of the event that
749
+ occurred.
750
+ - docsDevEvText: a textual description of the event.
751
+ - ifPhysAddress: the MAC address of the cable
752
+ interface of this cable modem.
753
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
754
+ to which the CM is connected (if there is a cable
755
+ card/interface in the CMTS, then it is actually the
756
+ MAC address of the cable interface to which it is
757
+ connected).
758
+ - docsIfDocsisBaseCapability: the highest
759
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
760
+ that the device is capable of supporting.
761
+
762
+
763
+
764
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
765
+ that the CM is operating in.
766
+ - docsIfCmStatusModulationType: the upstream modulation
767
+ methodology used by the CM.""",
768
+ }, # notification
769
+ "docsDevCmDHCPFailNotif" : {
770
+ "nodetype" : "notification",
771
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
772
+ "oid" : "1.3.6.1.2.1.132.2.0.8",
773
+ "status" : "current",
774
+ "objects" : {
775
+ "docsDevEvLevel" : {
776
+ "nodetype" : "object",
777
+ "module" : "DOCS-CABLE-DEVICE-MIB"
778
+ },
779
+ "docsDevEvId" : {
780
+ "nodetype" : "object",
781
+ "module" : "DOCS-CABLE-DEVICE-MIB"
782
+ },
783
+ "docsDevEvText" : {
784
+ "nodetype" : "object",
785
+ "module" : "DOCS-CABLE-DEVICE-MIB"
786
+ },
787
+ "ifPhysAddress" : {
788
+ "nodetype" : "object",
789
+ "module" : "IF-MIB"
790
+ },
791
+ "docsIfCmCmtsAddress" : {
792
+ "nodetype" : "object",
793
+ "module" : "DOCS-IF-MIB"
794
+ },
795
+ "docsDevServerDhcp" : {
796
+ "nodetype" : "object",
797
+ "module" : "DOCS-CABLE-DEVICE-MIB"
798
+ },
799
+ "docsIfDocsisBaseCapability" : {
800
+ "nodetype" : "object",
801
+ "module" : "DOCS-IF-MIB"
802
+ },
803
+ "docsIfCmStatusDocsisOperMode" : {
804
+ "nodetype" : "object",
805
+ "module" : "DOCS-IF-MIB"
806
+ },
807
+ "docsIfCmStatusModulationType" : {
808
+ "nodetype" : "object",
809
+ "module" : "DOCS-IF-MIB"
810
+ },
811
+ },
812
+ "description" :
813
+ """A notification to report the failure of a DHCP operation.
814
+
815
+ This notification sends additional information about
816
+ the event by including the following objects in its
817
+ varbinding list.
818
+ - docsDevEvLevel: the priority level associated with the
819
+ event.
820
+ - docsDevEvId: the unique identifier of the event that
821
+ occurred.
822
+ - docsDevEvText: a textual description of the event.
823
+ - ifPhysAddress: the MAC address of the cable
824
+ interface of this cable modem.
825
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
826
+ to which the CM is connected (if there is a cable
827
+ card/interface in the CMTS, then it is actually the
828
+ MAC address of the cable interface to which it is
829
+ connected).
830
+ - docsDevServerDhcp: the IP address of the DHCP server.
831
+ - docsIfDocsisBaseCapability: the highest
832
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
833
+ that the device is capable of supporting.
834
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
835
+ that the CM is operating in.
836
+ - docsIfCmStatusModulationType: the upstream modulation
837
+ methodology used by the CM.""",
838
+ }, # notification
839
+ "docsDevCmSwUpgradeInitNotif" : {
840
+ "nodetype" : "notification",
841
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
842
+ "oid" : "1.3.6.1.2.1.132.2.0.9",
843
+ "status" : "current",
844
+ "objects" : {
845
+ "docsDevEvLevel" : {
846
+ "nodetype" : "object",
847
+ "module" : "DOCS-CABLE-DEVICE-MIB"
848
+ },
849
+ "docsDevEvId" : {
850
+ "nodetype" : "object",
851
+ "module" : "DOCS-CABLE-DEVICE-MIB"
852
+ },
853
+ "docsDevEvText" : {
854
+ "nodetype" : "object",
855
+ "module" : "DOCS-CABLE-DEVICE-MIB"
856
+ },
857
+ "ifPhysAddress" : {
858
+ "nodetype" : "object",
859
+ "module" : "IF-MIB"
860
+ },
861
+ "docsIfCmCmtsAddress" : {
862
+ "nodetype" : "object",
863
+ "module" : "DOCS-IF-MIB"
864
+ },
865
+ "docsDevSwFilename" : {
866
+ "nodetype" : "object",
867
+ "module" : "DOCS-CABLE-DEVICE-MIB"
868
+ },
869
+ "docsDevSwServer" : {
870
+ "nodetype" : "object",
871
+ "module" : "DOCS-CABLE-DEVICE-MIB"
872
+ },
873
+ "docsIfDocsisBaseCapability" : {
874
+ "nodetype" : "object",
875
+ "module" : "DOCS-IF-MIB"
876
+ },
877
+ "docsIfCmStatusDocsisOperMode" : {
878
+ "nodetype" : "object",
879
+ "module" : "DOCS-IF-MIB"
880
+ },
881
+ "docsIfCmStatusModulationType" : {
882
+ "nodetype" : "object",
883
+ "module" : "DOCS-IF-MIB"
884
+ },
885
+ },
886
+ "description" :
887
+ """A notification to indicate that a software upgrade
888
+ has been initiated on the device.
889
+
890
+ This notification sends additional information about
891
+ the event by including the following objects in its
892
+ varbinding list.
893
+ - docsDevEvLevel: the priority level associated with the
894
+ event.
895
+ - docsDevEvId: the unique identifier of the event that
896
+ occurred.
897
+ - docsDevEvText: a textual description of the event.
898
+ - ifPhysAddress: the MAC address of the cable
899
+ interface of this cable modem.
900
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
901
+ to which the CM is connected (if there is a cable
902
+ card/interface in the CMTS, then it is actually the
903
+ MAC address of the cable interface to which it is
904
+ connected).
905
+ - docsIfDocsisBaseCapability: the highest
906
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
907
+ that the device is capable of supporting.
908
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
909
+ that the CM is operating in.
910
+ - docsIfCmStatusModulationType: the upstream modulation
911
+ methodology used by the CM.""",
912
+ }, # notification
913
+ "docsDevCmSwUpgradeFailNotif" : {
914
+ "nodetype" : "notification",
915
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
916
+ "oid" : "1.3.6.1.2.1.132.2.0.10",
917
+ "status" : "current",
918
+ "objects" : {
919
+ "docsDevEvLevel" : {
920
+ "nodetype" : "object",
921
+ "module" : "DOCS-CABLE-DEVICE-MIB"
922
+ },
923
+ "docsDevEvId" : {
924
+ "nodetype" : "object",
925
+ "module" : "DOCS-CABLE-DEVICE-MIB"
926
+ },
927
+ "docsDevEvText" : {
928
+ "nodetype" : "object",
929
+ "module" : "DOCS-CABLE-DEVICE-MIB"
930
+ },
931
+ "ifPhysAddress" : {
932
+ "nodetype" : "object",
933
+ "module" : "IF-MIB"
934
+ },
935
+ "docsIfCmCmtsAddress" : {
936
+ "nodetype" : "object",
937
+ "module" : "DOCS-IF-MIB"
938
+ },
939
+ "docsDevSwFilename" : {
940
+ "nodetype" : "object",
941
+ "module" : "DOCS-CABLE-DEVICE-MIB"
942
+ },
943
+ "docsDevSwServer" : {
944
+ "nodetype" : "object",
945
+ "module" : "DOCS-CABLE-DEVICE-MIB"
946
+ },
947
+ "docsIfDocsisBaseCapability" : {
948
+ "nodetype" : "object",
949
+ "module" : "DOCS-IF-MIB"
950
+ },
951
+ "docsIfCmStatusDocsisOperMode" : {
952
+ "nodetype" : "object",
953
+ "module" : "DOCS-IF-MIB"
954
+ },
955
+ "docsIfCmStatusModulationType" : {
956
+ "nodetype" : "object",
957
+ "module" : "DOCS-IF-MIB"
958
+ },
959
+ },
960
+ "description" :
961
+ """A notification to report the failure of a software upgrade
962
+ attempt.
963
+
964
+ This notification sends additional information about
965
+ the event by including the following objects in its
966
+ varbinding list.
967
+ - docsDevEvLevel: the priority level associated with the
968
+ event.
969
+ - docsDevEvId: the unique identifier of the event that
970
+ occurred.
971
+ - docsDevEvText: a textual description of the event.
972
+ - ifPhysAddress: the MAC address of the cable
973
+ interface of this cable modem.
974
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
975
+ to which the CM is connected (if there is a cable
976
+ card/interface in the CMTS, then it is actually the
977
+ MAC address of the cable interface to which it is
978
+ connected).
979
+ - docsDevSwFilename: the software image file name
980
+ - docsDevSwServer: the IP address of the server that
981
+ the image is retrieved from.
982
+ - docsIfDocsisBaseCapability: the highest
983
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
984
+ that the device is capable of supporting.
985
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
986
+ that the CM is operating in.
987
+ - docsIfCmStatusModulationType: the upstream modulation
988
+ methodology used by the CM.""",
989
+ }, # notification
990
+ "docsDevCmSwUpgradeSuccessNotif" : {
991
+ "nodetype" : "notification",
992
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
993
+ "oid" : "1.3.6.1.2.1.132.2.0.11",
994
+ "status" : "current",
995
+ "objects" : {
996
+ "docsDevEvLevel" : {
997
+ "nodetype" : "object",
998
+ "module" : "DOCS-CABLE-DEVICE-MIB"
999
+ },
1000
+ "docsDevEvId" : {
1001
+ "nodetype" : "object",
1002
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1003
+ },
1004
+ "docsDevEvText" : {
1005
+ "nodetype" : "object",
1006
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1007
+ },
1008
+ "ifPhysAddress" : {
1009
+ "nodetype" : "object",
1010
+ "module" : "IF-MIB"
1011
+ },
1012
+ "docsIfCmCmtsAddress" : {
1013
+ "nodetype" : "object",
1014
+ "module" : "DOCS-IF-MIB"
1015
+ },
1016
+ "docsDevSwFilename" : {
1017
+ "nodetype" : "object",
1018
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1019
+ },
1020
+ "docsDevSwServer" : {
1021
+ "nodetype" : "object",
1022
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1023
+ },
1024
+ "docsIfDocsisBaseCapability" : {
1025
+ "nodetype" : "object",
1026
+ "module" : "DOCS-IF-MIB"
1027
+ },
1028
+ "docsIfCmStatusDocsisOperMode" : {
1029
+ "nodetype" : "object",
1030
+ "module" : "DOCS-IF-MIB"
1031
+ },
1032
+ "docsIfCmStatusModulationType" : {
1033
+ "nodetype" : "object",
1034
+ "module" : "DOCS-IF-MIB"
1035
+ },
1036
+ },
1037
+ "description" :
1038
+ """A notification to report the software upgrade success
1039
+ status.
1040
+
1041
+ This notification sends additional information about
1042
+ the event by including the following objects in its
1043
+ varbinding list.
1044
+ - docsDevEvLevel: the priority level associated with the
1045
+ event.
1046
+ - docsDevEvId: the unique identifier of the event that
1047
+ occurred.
1048
+ - docsDevEvText: a textual description of the event.
1049
+ - ifPhysAddress: the MAC address of the cable
1050
+ interface of this cable modem.
1051
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
1052
+ to which the CM is connected (if there is a cable
1053
+ card/interface in the CMTS, then it is actually the
1054
+ MAC address of the cable interface to which it is
1055
+ connected).
1056
+ - docsDevSwFilename: the software image file name
1057
+ - docsDevSwServer: the IP address of the server that
1058
+ the image is retrieved from.
1059
+ - docsIfDocsisBaseCapability: the highest
1060
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1061
+ that the device is capable of supporting.
1062
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
1063
+ that the CM is operating in.
1064
+ - docsIfCmStatusModulationType: the upstream modulation
1065
+ methodology used by the CM.""",
1066
+ }, # notification
1067
+ "docsDevCmSwUpgradeCVCFailNotif" : {
1068
+ "nodetype" : "notification",
1069
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1070
+ "oid" : "1.3.6.1.2.1.132.2.0.12",
1071
+ "status" : "current",
1072
+ "objects" : {
1073
+ "docsDevEvLevel" : {
1074
+ "nodetype" : "object",
1075
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1076
+ },
1077
+ "docsDevEvId" : {
1078
+ "nodetype" : "object",
1079
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1080
+ },
1081
+ "docsDevEvText" : {
1082
+ "nodetype" : "object",
1083
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1084
+ },
1085
+ "ifPhysAddress" : {
1086
+ "nodetype" : "object",
1087
+ "module" : "IF-MIB"
1088
+ },
1089
+ "docsIfCmCmtsAddress" : {
1090
+ "nodetype" : "object",
1091
+ "module" : "DOCS-IF-MIB"
1092
+ },
1093
+ "docsIfDocsisBaseCapability" : {
1094
+ "nodetype" : "object",
1095
+ "module" : "DOCS-IF-MIB"
1096
+ },
1097
+ "docsIfCmStatusDocsisOperMode" : {
1098
+ "nodetype" : "object",
1099
+ "module" : "DOCS-IF-MIB"
1100
+ },
1101
+ "docsIfCmStatusModulationType" : {
1102
+ "nodetype" : "object",
1103
+ "module" : "DOCS-IF-MIB"
1104
+ },
1105
+ },
1106
+ "description" :
1107
+ """A notification to report that the verification of the
1108
+ code file has failed during a secure software upgrade
1109
+ attempt.
1110
+
1111
+ This notification sends additional information about
1112
+ the event by including the following objects in its
1113
+ varbinding list.
1114
+ - docsDevEvLevel: the priority level associated with the
1115
+ event.
1116
+ - docsDevEvId: the unique identifier of the event that
1117
+ occurred.
1118
+ - docsDevEvText: a textual description of the event.
1119
+ - ifPhysAddress: the MAC address of the cable
1120
+ interface of this cable modem.
1121
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
1122
+ to which the CM is connected (if there is a cable
1123
+ card/interface in the CMTS, then it is actually the
1124
+ MAC address of the cable interface to which it is
1125
+ connected).
1126
+ - docsIfDocsisBaseCapability: the highest
1127
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1128
+ that the device is capable of supporting.
1129
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
1130
+ that the CM is operating in.
1131
+ - docsIfCmStatusModulationType: the upstream modulation
1132
+ methodology used by the CM.""",
1133
+ }, # notification
1134
+ "docsDevCmTODFailNotif" : {
1135
+ "nodetype" : "notification",
1136
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1137
+ "oid" : "1.3.6.1.2.1.132.2.0.13",
1138
+ "status" : "current",
1139
+ "objects" : {
1140
+ "docsDevEvLevel" : {
1141
+ "nodetype" : "object",
1142
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1143
+ },
1144
+ "docsDevEvId" : {
1145
+ "nodetype" : "object",
1146
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1147
+ },
1148
+ "docsDevEvText" : {
1149
+ "nodetype" : "object",
1150
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1151
+ },
1152
+ "ifPhysAddress" : {
1153
+ "nodetype" : "object",
1154
+ "module" : "IF-MIB"
1155
+ },
1156
+ "docsIfCmCmtsAddress" : {
1157
+ "nodetype" : "object",
1158
+ "module" : "DOCS-IF-MIB"
1159
+ },
1160
+ "docsDevServerTime" : {
1161
+ "nodetype" : "object",
1162
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1163
+ },
1164
+ "docsIfDocsisBaseCapability" : {
1165
+ "nodetype" : "object",
1166
+ "module" : "DOCS-IF-MIB"
1167
+ },
1168
+ "docsIfCmStatusDocsisOperMode" : {
1169
+ "nodetype" : "object",
1170
+ "module" : "DOCS-IF-MIB"
1171
+ },
1172
+ "docsIfCmStatusModulationType" : {
1173
+ "nodetype" : "object",
1174
+ "module" : "DOCS-IF-MIB"
1175
+ },
1176
+ },
1177
+ "description" :
1178
+ """A notification to report the failure of a time of day
1179
+
1180
+
1181
+
1182
+ operation.
1183
+
1184
+ This notification sends additional information about
1185
+ the event by including the following objects in its
1186
+ varbinding list.
1187
+ - docsDevEvLevel: the priority level associated with the
1188
+ event.
1189
+ - docsDevEvId: the unique identifier of the event that
1190
+ occurred.
1191
+ - docsDevEvText: a textual description of the event.
1192
+ - ifPhysAddress: the MAC address of the cable
1193
+ interface of this cable modem.
1194
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
1195
+ to which the CM is connected (if there is a cable
1196
+ card/interface in the CMTS, then it is actually the
1197
+ MAC address of the cable interface to which it is
1198
+ connected).
1199
+ - docsDevServerTime: the IP address of the time server.
1200
+ - docsIfDocsisBaseCapability: the highest
1201
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1202
+ that the device is capable of supporting.
1203
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
1204
+ that the CM is operating in.
1205
+ - docsIfCmStatusModulationType: the upstream modulation
1206
+ methodology used by the CM.""",
1207
+ }, # notification
1208
+ "docsDevCmDCCReqFailNotif" : {
1209
+ "nodetype" : "notification",
1210
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1211
+ "oid" : "1.3.6.1.2.1.132.2.0.14",
1212
+ "status" : "current",
1213
+ "objects" : {
1214
+ "docsDevEvLevel" : {
1215
+ "nodetype" : "object",
1216
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1217
+ },
1218
+ "docsDevEvId" : {
1219
+ "nodetype" : "object",
1220
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1221
+ },
1222
+ "docsDevEvText" : {
1223
+ "nodetype" : "object",
1224
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1225
+ },
1226
+ "ifPhysAddress" : {
1227
+ "nodetype" : "object",
1228
+ "module" : "IF-MIB"
1229
+ },
1230
+ "docsIfCmCmtsAddress" : {
1231
+ "nodetype" : "object",
1232
+ "module" : "DOCS-IF-MIB"
1233
+ },
1234
+ "docsIfDocsisBaseCapability" : {
1235
+ "nodetype" : "object",
1236
+ "module" : "DOCS-IF-MIB"
1237
+ },
1238
+ "docsIfCmStatusDocsisOperMode" : {
1239
+ "nodetype" : "object",
1240
+ "module" : "DOCS-IF-MIB"
1241
+ },
1242
+ "docsIfCmStatusModulationType" : {
1243
+ "nodetype" : "object",
1244
+ "module" : "DOCS-IF-MIB"
1245
+ },
1246
+ },
1247
+ "description" :
1248
+ """ A notification to report the failure of a dynamic channel
1249
+ change request during the dynamic channel change process
1250
+ on the CM.
1251
+
1252
+ This notification sends additional information about
1253
+ the event by including the following objects in its
1254
+ varbinding list.
1255
+
1256
+
1257
+
1258
+ - docsDevEvLevel: the priority level associated with the
1259
+ event.
1260
+ - docsDevEvId: the unique identifier of the event that
1261
+ occurred.
1262
+ - docsDevEvText: a textual description of the event.
1263
+ - ifPhysAddress: the MAC address of the cable
1264
+ interface of this cable modem.
1265
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
1266
+ to which the CM is connected (if there is a cable
1267
+ card/interface in the CMTS, then it is actually the
1268
+ MAC address of the cable interface to which it is
1269
+ connected).
1270
+ - docsIfDocsisBaseCapability: the highest
1271
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1272
+ that the device is capable of supporting.
1273
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
1274
+ that the CM is operating in.
1275
+ - docsIfCmStatusModulationType: the upstream modulation
1276
+ methodology used by the CM.""",
1277
+ }, # notification
1278
+ "docsDevCmDCCRspFailNotif" : {
1279
+ "nodetype" : "notification",
1280
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1281
+ "oid" : "1.3.6.1.2.1.132.2.0.15",
1282
+ "status" : "current",
1283
+ "objects" : {
1284
+ "docsDevEvLevel" : {
1285
+ "nodetype" : "object",
1286
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1287
+ },
1288
+ "docsDevEvId" : {
1289
+ "nodetype" : "object",
1290
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1291
+ },
1292
+ "docsDevEvText" : {
1293
+ "nodetype" : "object",
1294
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1295
+ },
1296
+ "ifPhysAddress" : {
1297
+ "nodetype" : "object",
1298
+ "module" : "IF-MIB"
1299
+ },
1300
+ "docsIfCmCmtsAddress" : {
1301
+ "nodetype" : "object",
1302
+ "module" : "DOCS-IF-MIB"
1303
+ },
1304
+ "docsIfDocsisBaseCapability" : {
1305
+ "nodetype" : "object",
1306
+ "module" : "DOCS-IF-MIB"
1307
+ },
1308
+ "docsIfCmStatusDocsisOperMode" : {
1309
+ "nodetype" : "object",
1310
+ "module" : "DOCS-IF-MIB"
1311
+ },
1312
+ "docsIfCmStatusModulationType" : {
1313
+ "nodetype" : "object",
1314
+ "module" : "DOCS-IF-MIB"
1315
+ },
1316
+ },
1317
+ "description" :
1318
+ """A notification to report the failure of a dynamic channel
1319
+ change response during the dynamic channel
1320
+ change process on the CM.
1321
+
1322
+ This notification sends additional information about
1323
+ the event by including the following objects in its
1324
+ varbinding list.
1325
+ - docsDevEvLevel: the priority level associated with the
1326
+ event.
1327
+ - docsDevEvId: the unique identifier of the event that
1328
+ occurred.
1329
+ - docsDevEvText: a textual description of the event.
1330
+ - ifPhysAddress: the MAC address of the cable
1331
+
1332
+
1333
+
1334
+ interface of this cable modem.
1335
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
1336
+ to which the CM is connected (if there is a cable
1337
+ card/interface in the CMTS, then it is actually the
1338
+ MAC address of the cable interface to which it is
1339
+ connected).
1340
+ - docsIfDocsisBaseCapability: the highest
1341
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1342
+ that the device is capable of supporting.
1343
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
1344
+ that the CM is operating in.
1345
+ - docsIfCmStatusModulationType: the upstream modulation
1346
+ methodology used by the CM.""",
1347
+ }, # notification
1348
+ "docsDevCmDCCAckFailNotif" : {
1349
+ "nodetype" : "notification",
1350
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1351
+ "oid" : "1.3.6.1.2.1.132.2.0.16",
1352
+ "status" : "current",
1353
+ "objects" : {
1354
+ "docsDevEvLevel" : {
1355
+ "nodetype" : "object",
1356
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1357
+ },
1358
+ "docsDevEvId" : {
1359
+ "nodetype" : "object",
1360
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1361
+ },
1362
+ "docsDevEvText" : {
1363
+ "nodetype" : "object",
1364
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1365
+ },
1366
+ "ifPhysAddress" : {
1367
+ "nodetype" : "object",
1368
+ "module" : "IF-MIB"
1369
+ },
1370
+ "docsIfCmCmtsAddress" : {
1371
+ "nodetype" : "object",
1372
+ "module" : "DOCS-IF-MIB"
1373
+ },
1374
+ "docsIfDocsisBaseCapability" : {
1375
+ "nodetype" : "object",
1376
+ "module" : "DOCS-IF-MIB"
1377
+ },
1378
+ "docsIfCmStatusDocsisOperMode" : {
1379
+ "nodetype" : "object",
1380
+ "module" : "DOCS-IF-MIB"
1381
+ },
1382
+ "docsIfCmStatusModulationType" : {
1383
+ "nodetype" : "object",
1384
+ "module" : "DOCS-IF-MIB"
1385
+ },
1386
+ },
1387
+ "description" :
1388
+ """A notification to report the failure of a dynamic channel
1389
+ change acknowledgement during the dynamic channel
1390
+ change process on the CM.
1391
+
1392
+ This notification sends additional information about
1393
+ the event by including the following objects in its
1394
+
1395
+ varbinding list.
1396
+ - docsDevEvLevel: the priority level associated with the
1397
+ event.
1398
+ - docsDevEvId: the unique identifier of the event that
1399
+ occurred.
1400
+ - docsDevEvText: a textual description of the event.
1401
+ - ifPhysAddress: the MAC address of the cable
1402
+ interface of this cable modem.
1403
+ - docsIfCmCmtsAddress: the MAC address of the CMTS
1404
+ to which the CM is connected (if there is a cable
1405
+ card/interface in the CMTS, then it is actually the
1406
+ MAC address of the cable interface to which it is
1407
+
1408
+
1409
+
1410
+ connected).
1411
+ - docsIfDocsisBaseCapability: the highest
1412
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1413
+ that the device is capable of supporting.
1414
+ - docsIfCmStatusDocsisOperMode: the QOS level (1.0, 1.1)
1415
+ that the CM is operating in.
1416
+ - docsIfCmtsCmStatusModulationType the upstream modulation
1417
+ methodology used by the CM.""",
1418
+ }, # notification
1419
+ "docsDevCmtsInitRegReqFailNotif" : {
1420
+ "nodetype" : "notification",
1421
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1422
+ "oid" : "1.3.6.1.2.1.132.3.0.1",
1423
+ "status" : "current",
1424
+ "objects" : {
1425
+ "docsDevEvLevel" : {
1426
+ "nodetype" : "object",
1427
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1428
+ },
1429
+ "docsDevEvId" : {
1430
+ "nodetype" : "object",
1431
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1432
+ },
1433
+ "docsDevEvText" : {
1434
+ "nodetype" : "object",
1435
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1436
+ },
1437
+ "docsIfCmtsCmStatusMacAddress" : {
1438
+ "nodetype" : "object",
1439
+ "module" : "DOCS-IF-MIB"
1440
+ },
1441
+ "ifPhysAddress" : {
1442
+ "nodetype" : "object",
1443
+ "module" : "IF-MIB"
1444
+ },
1445
+ "docsIfCmtsCmStatusDocsisRegMode" : {
1446
+ "nodetype" : "object",
1447
+ "module" : "DOCS-IF-MIB"
1448
+ },
1449
+ "docsIfDocsisBaseCapability" : {
1450
+ "nodetype" : "object",
1451
+ "module" : "DOCS-IF-MIB"
1452
+ },
1453
+ "docsIfCmtsCmStatusModulationType" : {
1454
+ "nodetype" : "object",
1455
+ "module" : "DOCS-IF-MIB"
1456
+ },
1457
+ },
1458
+ "description" :
1459
+ """A notification to report the failure of a registration
1460
+ request from a CM during the CM initialization
1461
+ process that was detected on the CMTS.
1462
+
1463
+ This notification sends additional information about
1464
+ the event by including the following objects in its
1465
+ varbinding list.
1466
+ - docsDevEvLevel: the priority level associated with the
1467
+ event.
1468
+ - docsDevEvId: the unique identifier of the event that
1469
+ occurred.
1470
+ - docsDevEvText: a textual description of the event.
1471
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
1472
+ with which this notification is associated.
1473
+ - ifPhysAddress: the MAC address of the CMTS
1474
+ (if there is a cable card/interface in the CMTS,
1475
+ then it is actually the MAC address of the cable
1476
+ interface that connected to the CM) cable interface
1477
+ connected to the CM.
1478
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
1479
+ that the reporting CM is operating in.
1480
+ - docsIfDocsisBaseCapability: the highest
1481
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1482
+ that the device is capable of supporting.
1483
+
1484
+
1485
+
1486
+ - docsIfCmtsCmStatusModulationType: the upstream
1487
+ modulation methodology used by the CM.""",
1488
+ }, # notification
1489
+ "docsDevCmtsInitRegRspFailNotif" : {
1490
+ "nodetype" : "notification",
1491
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1492
+ "oid" : "1.3.6.1.2.1.132.3.0.2",
1493
+ "status" : "current",
1494
+ "objects" : {
1495
+ "docsDevEvLevel" : {
1496
+ "nodetype" : "object",
1497
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1498
+ },
1499
+ "docsDevEvId" : {
1500
+ "nodetype" : "object",
1501
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1502
+ },
1503
+ "docsDevEvText" : {
1504
+ "nodetype" : "object",
1505
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1506
+ },
1507
+ "docsIfCmtsCmStatusMacAddress" : {
1508
+ "nodetype" : "object",
1509
+ "module" : "DOCS-IF-MIB"
1510
+ },
1511
+ "ifPhysAddress" : {
1512
+ "nodetype" : "object",
1513
+ "module" : "IF-MIB"
1514
+ },
1515
+ "docsIfCmtsCmStatusDocsisRegMode" : {
1516
+ "nodetype" : "object",
1517
+ "module" : "DOCS-IF-MIB"
1518
+ },
1519
+ "docsIfDocsisBaseCapability" : {
1520
+ "nodetype" : "object",
1521
+ "module" : "DOCS-IF-MIB"
1522
+ },
1523
+ "docsIfCmtsCmStatusModulationType" : {
1524
+ "nodetype" : "object",
1525
+ "module" : "DOCS-IF-MIB"
1526
+ },
1527
+ },
1528
+ "description" :
1529
+ """A notification to report the failure of a registration
1530
+ response during the CM initialization
1531
+ process that was detected by the CMTS.
1532
+
1533
+ This notification sends additional information about
1534
+ the event by including the following objects in its
1535
+ varbinding list.
1536
+ - docsDevEvLevel: the priority level associated with the
1537
+ event.
1538
+ - docsDevEvId: the unique identifier of the event that
1539
+ occurred.
1540
+ - docsDevEvText: a textual description of the event.
1541
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
1542
+ with which this notification is associated.
1543
+ - ifPhysAddress: the MAC address of the CMTS
1544
+ (if there is a cable card/interface in the CMTS,
1545
+ then it is actually the MAC address of the cable
1546
+ interface that connected to the CM) cable interface
1547
+ connected to the CM.
1548
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
1549
+ that the reporting CM is operating in.
1550
+ - docsIfDocsisBaseCapability: the highest
1551
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1552
+ that the device is capable of supporting.
1553
+ - docsIfCmtsCmStatusModulationType: the upstream
1554
+ modulation methodology used by the CM.""",
1555
+ }, # notification
1556
+ "docsDevCmtsInitRegAckFailNotif" : {
1557
+ "nodetype" : "notification",
1558
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1559
+ "oid" : "1.3.6.1.2.1.132.3.0.3",
1560
+ "status" : "current",
1561
+ "objects" : {
1562
+ "docsDevEvLevel" : {
1563
+ "nodetype" : "object",
1564
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1565
+ },
1566
+ "docsDevEvId" : {
1567
+ "nodetype" : "object",
1568
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1569
+ },
1570
+ "docsDevEvText" : {
1571
+ "nodetype" : "object",
1572
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1573
+ },
1574
+ "docsIfCmtsCmStatusMacAddress" : {
1575
+ "nodetype" : "object",
1576
+ "module" : "DOCS-IF-MIB"
1577
+ },
1578
+ "ifPhysAddress" : {
1579
+ "nodetype" : "object",
1580
+ "module" : "IF-MIB"
1581
+ },
1582
+ "docsIfCmtsCmStatusDocsisRegMode" : {
1583
+ "nodetype" : "object",
1584
+ "module" : "DOCS-IF-MIB"
1585
+ },
1586
+ "docsIfDocsisBaseCapability" : {
1587
+ "nodetype" : "object",
1588
+ "module" : "DOCS-IF-MIB"
1589
+ },
1590
+ "docsIfCmtsCmStatusModulationType" : {
1591
+ "nodetype" : "object",
1592
+ "module" : "DOCS-IF-MIB"
1593
+ },
1594
+ },
1595
+ "description" :
1596
+ """A notification to report the failure of a registration
1597
+ acknowledgement from the CM during the CM
1598
+ initialization process that was detected by the CMTS.
1599
+
1600
+ This notification sends additional information about
1601
+ the event by including the following objects in its
1602
+ varbinding list.
1603
+ - docsDevEvLevel: the priority level associated with the
1604
+ event.
1605
+ - docsDevEvId: the unique identifier of the event that
1606
+ occurred.
1607
+ - docsDevEvText: a textual description of the event.
1608
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
1609
+ with which this notification is associated.
1610
+ - ifPhysAddress: the MAC address of the CMTS
1611
+ (if there is a cable card/interface in the CMTS,
1612
+ then it is actually the MAC address of the cable
1613
+ interface that connected to the CM) cable interface
1614
+ connected to the CM.
1615
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
1616
+ that the reporting CM is operating in.
1617
+ - docsIfDocsisBaseCapability: the highest
1618
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1619
+ that the device is capable of supporting.
1620
+ - docsIfCmtsCmStatusModulationType: the upstream
1621
+ modulation methodology used by the CM.""",
1622
+ }, # notification
1623
+ "docsDevCmtsDynServReqFailNotif" : {
1624
+ "nodetype" : "notification",
1625
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1626
+ "oid" : "1.3.6.1.2.1.132.3.0.4",
1627
+ "status" : "current",
1628
+ "objects" : {
1629
+ "docsDevEvLevel" : {
1630
+ "nodetype" : "object",
1631
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1632
+ },
1633
+ "docsDevEvId" : {
1634
+ "nodetype" : "object",
1635
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1636
+ },
1637
+ "docsDevEvText" : {
1638
+ "nodetype" : "object",
1639
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1640
+ },
1641
+ "docsIfCmtsCmStatusMacAddress" : {
1642
+ "nodetype" : "object",
1643
+ "module" : "DOCS-IF-MIB"
1644
+ },
1645
+ "ifPhysAddress" : {
1646
+ "nodetype" : "object",
1647
+ "module" : "IF-MIB"
1648
+ },
1649
+ "docsIfCmtsCmStatusDocsisRegMode" : {
1650
+ "nodetype" : "object",
1651
+ "module" : "DOCS-IF-MIB"
1652
+ },
1653
+ "docsIfDocsisBaseCapability" : {
1654
+ "nodetype" : "object",
1655
+ "module" : "DOCS-IF-MIB"
1656
+ },
1657
+ "docsIfCmtsCmStatusModulationType" : {
1658
+ "nodetype" : "object",
1659
+ "module" : "DOCS-IF-MIB"
1660
+ },
1661
+ },
1662
+ "description" :
1663
+ """A notification to report the failure of a dynamic service
1664
+ request during the dynamic services process
1665
+ that was detected by the CMTS.
1666
+
1667
+ This notification sends additional information about
1668
+ the event by including the following objects in its
1669
+ varbinding list.
1670
+ - docsDevEvLevel: the priority level associated with the
1671
+ event.
1672
+ - docsDevEvId: the unique identifier of the event that
1673
+ occurred.
1674
+ - docsDevEvText: a textual description of the event.
1675
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
1676
+ with which this notification is associated.
1677
+ - ifPhysAddress: the MAC address of the CMTS
1678
+ (if there is a cable card/interface in the CMTS,
1679
+ then it is actually the MAC address of the cable
1680
+ interface that connected to the CM) cable interface
1681
+ connected to the CM.
1682
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
1683
+ that the reporting CM is operating in.
1684
+ - docsIfDocsisBaseCapability: the highest
1685
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1686
+ that the device is capable of supporting.
1687
+ - docsIfCmtsCmStatusModulationType: the upstream
1688
+ modulation methodology used by the CM.""",
1689
+ }, # notification
1690
+ "docsDevCmtsDynServRspFailNotif" : {
1691
+ "nodetype" : "notification",
1692
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1693
+ "oid" : "1.3.6.1.2.1.132.3.0.5",
1694
+ "status" : "current",
1695
+ "objects" : {
1696
+ "docsDevEvLevel" : {
1697
+ "nodetype" : "object",
1698
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1699
+ },
1700
+ "docsDevEvId" : {
1701
+ "nodetype" : "object",
1702
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1703
+ },
1704
+ "docsDevEvText" : {
1705
+ "nodetype" : "object",
1706
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1707
+ },
1708
+ "docsIfCmtsCmStatusMacAddress" : {
1709
+ "nodetype" : "object",
1710
+ "module" : "DOCS-IF-MIB"
1711
+ },
1712
+ "ifPhysAddress" : {
1713
+ "nodetype" : "object",
1714
+ "module" : "IF-MIB"
1715
+ },
1716
+ "docsIfCmtsCmStatusDocsisRegMode" : {
1717
+ "nodetype" : "object",
1718
+ "module" : "DOCS-IF-MIB"
1719
+ },
1720
+ "docsIfDocsisBaseCapability" : {
1721
+ "nodetype" : "object",
1722
+ "module" : "DOCS-IF-MIB"
1723
+ },
1724
+ "docsIfCmtsCmStatusModulationType" : {
1725
+ "nodetype" : "object",
1726
+ "module" : "DOCS-IF-MIB"
1727
+ },
1728
+ },
1729
+ "description" :
1730
+ """A notification to report the failure of a dynamic service
1731
+ response during the dynamic services process
1732
+ that was detected by the CMTS.
1733
+
1734
+ This notification sends additional information about
1735
+ the event by including the following objects in its
1736
+ varbinding list.
1737
+ - docsDevEvLevel: the priority level associated with the
1738
+ event.
1739
+ - docsDevEvId: the unique identifier of the event that
1740
+ occurred.
1741
+ - docsDevEvText: a textual description of the event.
1742
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
1743
+ with which this notification is associated.
1744
+ - ifPhysAddress: the MAC address of the CMTS
1745
+ (if there is a cable card/interface in the CMTS,
1746
+ then it is actually the MAC address of the cable
1747
+ interface that connected to the CM) cable interface
1748
+ connected to the CM.
1749
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
1750
+ that the reporting CM is operating in.
1751
+ - docsIfDocsisBaseCapability: the highest
1752
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1753
+ that the device is capable of supporting.
1754
+ - docsIfCmtsCmStatusModulationType: the upstream
1755
+ modulation methodology used by the CM.""",
1756
+ }, # notification
1757
+ "docsDevCmtsDynServAckFailNotif" : {
1758
+ "nodetype" : "notification",
1759
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1760
+ "oid" : "1.3.6.1.2.1.132.3.0.6",
1761
+ "status" : "current",
1762
+ "objects" : {
1763
+ "docsDevEvLevel" : {
1764
+ "nodetype" : "object",
1765
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1766
+ },
1767
+ "docsDevEvId" : {
1768
+ "nodetype" : "object",
1769
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1770
+ },
1771
+ "docsDevEvText" : {
1772
+ "nodetype" : "object",
1773
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1774
+ },
1775
+ "docsIfCmtsCmStatusMacAddress" : {
1776
+ "nodetype" : "object",
1777
+ "module" : "DOCS-IF-MIB"
1778
+ },
1779
+ "ifPhysAddress" : {
1780
+ "nodetype" : "object",
1781
+ "module" : "IF-MIB"
1782
+ },
1783
+ "docsIfCmtsCmStatusDocsisRegMode" : {
1784
+ "nodetype" : "object",
1785
+ "module" : "DOCS-IF-MIB"
1786
+ },
1787
+ "docsIfDocsisBaseCapability" : {
1788
+ "nodetype" : "object",
1789
+ "module" : "DOCS-IF-MIB"
1790
+ },
1791
+ "docsIfCmtsCmStatusModulationType" : {
1792
+ "nodetype" : "object",
1793
+ "module" : "DOCS-IF-MIB"
1794
+ },
1795
+ },
1796
+ "description" :
1797
+ """A notification to report the failure of a dynamic service
1798
+ acknowledgement during the dynamic services
1799
+ process that was detected by the CMTS.
1800
+
1801
+ This notification sends additional information about
1802
+ the event by including the following objects in its
1803
+
1804
+
1805
+
1806
+ varbinding list.
1807
+ - docsDevEvLevel: the priority level associated with the
1808
+ event.
1809
+ - docsDevEvId: the unique identifier of the event that
1810
+ occurred.
1811
+ - docsDevEvText: a textual description of the event.
1812
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
1813
+ with which this notification is associated.
1814
+ - ifPhysAddress: the MAC address of the CMTS
1815
+ (if there is a cable card/interface in the CMTS,
1816
+ then it is actually the MAC address of the cable
1817
+ interface that connected to the CM) cable interface
1818
+ connected to the CM.
1819
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
1820
+ that the reporting CM is operating in.
1821
+ - docsIfDocsisBaseCapability: the highest
1822
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1823
+ that the device is capable of supporting.
1824
+ - docsIfCmtsCmStatusModulationType: the upstream
1825
+ modulation methodology used by the CM.""",
1826
+ }, # notification
1827
+ "docsDevCmtsBpiInitNotif" : {
1828
+ "nodetype" : "notification",
1829
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1830
+ "oid" : "1.3.6.1.2.1.132.3.0.7",
1831
+ "status" : "current",
1832
+ "objects" : {
1833
+ "docsDevEvLevel" : {
1834
+ "nodetype" : "object",
1835
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1836
+ },
1837
+ "docsDevEvId" : {
1838
+ "nodetype" : "object",
1839
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1840
+ },
1841
+ "docsDevEvText" : {
1842
+ "nodetype" : "object",
1843
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1844
+ },
1845
+ "docsIfCmtsCmStatusMacAddress" : {
1846
+ "nodetype" : "object",
1847
+ "module" : "DOCS-IF-MIB"
1848
+ },
1849
+ "ifPhysAddress" : {
1850
+ "nodetype" : "object",
1851
+ "module" : "IF-MIB"
1852
+ },
1853
+ "docsIfCmtsCmStatusDocsisRegMode" : {
1854
+ "nodetype" : "object",
1855
+ "module" : "DOCS-IF-MIB"
1856
+ },
1857
+ "docsIfDocsisBaseCapability" : {
1858
+ "nodetype" : "object",
1859
+ "module" : "DOCS-IF-MIB"
1860
+ },
1861
+ "docsIfCmtsCmStatusModulationType" : {
1862
+ "nodetype" : "object",
1863
+ "module" : "DOCS-IF-MIB"
1864
+ },
1865
+ },
1866
+ "description" :
1867
+ """A notification to report the failure of a BPI
1868
+ initialization attempt during the CM registration process
1869
+ that was detected by the CMTS.
1870
+
1871
+ This notification sends additional information about
1872
+ the event by including the following objects in its
1873
+ varbinding list.
1874
+ - docsDevEvLevel: the priority level associated with the
1875
+ event.
1876
+ - docsDevEvId: the unique identifier of the event that
1877
+ occurred.
1878
+
1879
+
1880
+
1881
+ - docsDevEvText: a textual description of the event.
1882
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
1883
+ with which this notification is associated.
1884
+ - ifPhysAddress: the MAC address of the CMTS
1885
+ (if there is a cable card/interface in the CMTS,
1886
+ then it is actually the MAC address of the cable
1887
+ interface that connected to the CM) cable interface
1888
+ connected to the CM.
1889
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
1890
+ that the reporting CM is operating in.
1891
+ - docsIfDocsisBaseCapability: the highest
1892
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1893
+ that the device is capable of supporting.
1894
+ - docsIfCmtsCmStatusModulationType: the upstream
1895
+ modulation methodology used by the CM.""",
1896
+ }, # notification
1897
+ "docsDevCmtsBPKMNotif" : {
1898
+ "nodetype" : "notification",
1899
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1900
+ "oid" : "1.3.6.1.2.1.132.3.0.8",
1901
+ "status" : "current",
1902
+ "objects" : {
1903
+ "docsDevEvLevel" : {
1904
+ "nodetype" : "object",
1905
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1906
+ },
1907
+ "docsDevEvId" : {
1908
+ "nodetype" : "object",
1909
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1910
+ },
1911
+ "docsDevEvText" : {
1912
+ "nodetype" : "object",
1913
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1914
+ },
1915
+ "docsIfCmtsCmStatusMacAddress" : {
1916
+ "nodetype" : "object",
1917
+ "module" : "DOCS-IF-MIB"
1918
+ },
1919
+ "ifPhysAddress" : {
1920
+ "nodetype" : "object",
1921
+ "module" : "IF-MIB"
1922
+ },
1923
+ "docsIfCmtsCmStatusDocsisRegMode" : {
1924
+ "nodetype" : "object",
1925
+ "module" : "DOCS-IF-MIB"
1926
+ },
1927
+ "docsIfDocsisBaseCapability" : {
1928
+ "nodetype" : "object",
1929
+ "module" : "DOCS-IF-MIB"
1930
+ },
1931
+ "docsIfCmtsCmStatusModulationType" : {
1932
+ "nodetype" : "object",
1933
+ "module" : "DOCS-IF-MIB"
1934
+ },
1935
+ },
1936
+ "description" :
1937
+ """A notification to report the failure of a BPKM operation
1938
+ that is detected by the CMTS.
1939
+
1940
+ This notification sends additional information about
1941
+ the event by including the following objects in its
1942
+ varbinding list.
1943
+ - docsDevEvLevel: the priority level associated with the
1944
+ event.
1945
+ - docsDevEvId: the unique identifier of the event that
1946
+ occurred.
1947
+ - docsDevEvText: a textual description of the event.
1948
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
1949
+ with which this notification is associated.
1950
+ - ifPhysAddress: the MAC address of the CMTS
1951
+ (if there is a cable card/interface in the CMTS,
1952
+ then it is actually the MAC address of the cable
1953
+ interface that connected to the CM) cable interface
1954
+
1955
+
1956
+
1957
+ connected to the CM.
1958
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
1959
+ that the reporting CM is operating in.
1960
+ - docsIfDocsisBaseCapability: the highest
1961
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
1962
+ that the device is capable of supporting.
1963
+ - docsIfCmtsCmStatusModulationType: the upstream
1964
+ modulation methodology used by the CM.""",
1965
+ }, # notification
1966
+ "docsDevCmtsDynamicSANotif" : {
1967
+ "nodetype" : "notification",
1968
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
1969
+ "oid" : "1.3.6.1.2.1.132.3.0.9",
1970
+ "status" : "current",
1971
+ "objects" : {
1972
+ "docsDevEvLevel" : {
1973
+ "nodetype" : "object",
1974
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1975
+ },
1976
+ "docsDevEvId" : {
1977
+ "nodetype" : "object",
1978
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1979
+ },
1980
+ "docsDevEvText" : {
1981
+ "nodetype" : "object",
1982
+ "module" : "DOCS-CABLE-DEVICE-MIB"
1983
+ },
1984
+ "docsIfCmtsCmStatusMacAddress" : {
1985
+ "nodetype" : "object",
1986
+ "module" : "DOCS-IF-MIB"
1987
+ },
1988
+ "ifPhysAddress" : {
1989
+ "nodetype" : "object",
1990
+ "module" : "IF-MIB"
1991
+ },
1992
+ "docsIfCmtsCmStatusDocsisRegMode" : {
1993
+ "nodetype" : "object",
1994
+ "module" : "DOCS-IF-MIB"
1995
+ },
1996
+ "docsIfDocsisBaseCapability" : {
1997
+ "nodetype" : "object",
1998
+ "module" : "DOCS-IF-MIB"
1999
+ },
2000
+ "docsIfCmtsCmStatusModulationType" : {
2001
+ "nodetype" : "object",
2002
+ "module" : "DOCS-IF-MIB"
2003
+ },
2004
+ },
2005
+ "description" :
2006
+ """A notification to report the failure of a dynamic security
2007
+ association operation that is detected by the CMTS.
2008
+
2009
+ This notification sends additional information about
2010
+ the event by including the following objects in its
2011
+ varbinding list.
2012
+
2013
+ - docsDevEvLevel: the priority level associated with the
2014
+ event.
2015
+ - docsDevEvId: the unique identifier of the event that
2016
+ occurred.
2017
+ - docsDevEvText: a textual description of the event.
2018
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
2019
+ with which this notification is associated.
2020
+ - ifPhysAddress: the MAC address of the CMTS
2021
+ (if there is a cable card/interface in the CMTS,
2022
+ then it is actually the MAC address of the cable
2023
+ interface that connected to the CM) cable interface
2024
+ connected to the CM.
2025
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
2026
+ that the reporting CM is operating in.
2027
+ - docsIfDocsisBaseCapability: the highest
2028
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
2029
+ that the device is capable of supporting.
2030
+
2031
+
2032
+
2033
+ - docsIfCmtsCmStatusModulationType: the upstream
2034
+ modulation methodology used by the CM.""",
2035
+ }, # notification
2036
+ "docsDevCmtsDCCReqFailNotif" : {
2037
+ "nodetype" : "notification",
2038
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
2039
+ "oid" : "1.3.6.1.2.1.132.3.0.10",
2040
+ "status" : "current",
2041
+ "objects" : {
2042
+ "docsDevEvLevel" : {
2043
+ "nodetype" : "object",
2044
+ "module" : "DOCS-CABLE-DEVICE-MIB"
2045
+ },
2046
+ "docsDevEvId" : {
2047
+ "nodetype" : "object",
2048
+ "module" : "DOCS-CABLE-DEVICE-MIB"
2049
+ },
2050
+ "docsDevEvText" : {
2051
+ "nodetype" : "object",
2052
+ "module" : "DOCS-CABLE-DEVICE-MIB"
2053
+ },
2054
+ "docsIfCmtsCmStatusMacAddress" : {
2055
+ "nodetype" : "object",
2056
+ "module" : "DOCS-IF-MIB"
2057
+ },
2058
+ "ifPhysAddress" : {
2059
+ "nodetype" : "object",
2060
+ "module" : "IF-MIB"
2061
+ },
2062
+ "docsIfCmtsCmStatusDocsisRegMode" : {
2063
+ "nodetype" : "object",
2064
+ "module" : "DOCS-IF-MIB"
2065
+ },
2066
+ "docsIfDocsisBaseCapability" : {
2067
+ "nodetype" : "object",
2068
+ "module" : "DOCS-IF-MIB"
2069
+ },
2070
+ "docsIfCmtsCmStatusModulationType" : {
2071
+ "nodetype" : "object",
2072
+ "module" : "DOCS-IF-MIB"
2073
+ },
2074
+ },
2075
+ "description" :
2076
+ """A notification to report the failure of a dynamic channel
2077
+ change request during the dynamic channel
2078
+ change process and is detected by the CMTS.
2079
+
2080
+ This notification sends additional information about
2081
+ the event by including the following objects in its
2082
+ varbinding list.
2083
+ - docsDevEvLevel: the priority level associated with the
2084
+ event.
2085
+ - docsDevEvId: the unique identifier of the event that
2086
+ occurred.
2087
+ - docsDevEvText: a textual description of the event.
2088
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
2089
+ with which this notification is associated.
2090
+ - ifPhysAddress: the MAC address of the CMTS
2091
+ (if there is a cable card/interface in the CMTS,
2092
+ then it is actually the MAC address of the cable
2093
+ interface that connected to the CM) cable interface
2094
+ connected to the CM.
2095
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
2096
+ that the reporting CM is operating in.
2097
+ - docsIfDocsisBaseCapability: the highest
2098
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
2099
+ that the device is capable of supporting.
2100
+ - docsIfCmtsCmStatusModulationType: the upstream
2101
+ modulation methodology used by the CM.""",
2102
+ }, # notification
2103
+ "docsDevCmtsDCCRspFailNotif" : {
2104
+ "nodetype" : "notification",
2105
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
2106
+ "oid" : "1.3.6.1.2.1.132.3.0.11",
2107
+ "status" : "current",
2108
+ "objects" : {
2109
+ "docsDevEvLevel" : {
2110
+ "nodetype" : "object",
2111
+ "module" : "DOCS-CABLE-DEVICE-MIB"
2112
+ },
2113
+ "docsDevEvId" : {
2114
+ "nodetype" : "object",
2115
+ "module" : "DOCS-CABLE-DEVICE-MIB"
2116
+ },
2117
+ "docsDevEvText" : {
2118
+ "nodetype" : "object",
2119
+ "module" : "DOCS-CABLE-DEVICE-MIB"
2120
+ },
2121
+ "docsIfCmtsCmStatusMacAddress" : {
2122
+ "nodetype" : "object",
2123
+ "module" : "DOCS-IF-MIB"
2124
+ },
2125
+ "ifPhysAddress" : {
2126
+ "nodetype" : "object",
2127
+ "module" : "IF-MIB"
2128
+ },
2129
+ "docsIfCmtsCmStatusDocsisRegMode" : {
2130
+ "nodetype" : "object",
2131
+ "module" : "DOCS-IF-MIB"
2132
+ },
2133
+ "docsIfDocsisBaseCapability" : {
2134
+ "nodetype" : "object",
2135
+ "module" : "DOCS-IF-MIB"
2136
+ },
2137
+ "docsIfCmtsCmStatusModulationType" : {
2138
+ "nodetype" : "object",
2139
+ "module" : "DOCS-IF-MIB"
2140
+ },
2141
+ },
2142
+ "description" :
2143
+ """A notification to report the failure of a dynamic channel
2144
+ change response during the dynamic channel
2145
+ change process and is detected by the CMTS.
2146
+
2147
+ This notification sends additional information about
2148
+ the event by including the following objects in its
2149
+ varbinding list.
2150
+ - docsDevEvLevel: the priority level associated with the
2151
+ event.
2152
+ - docsDevEvId: the unique identifier of the event that
2153
+ occurred.
2154
+ - docsDevEvText: a textual description of the event.
2155
+
2156
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
2157
+ with which this notification is associated.
2158
+ - ifPhysAddress: the MAC address of the CMTS
2159
+ (if there is a cable card/interface in the CMTS,
2160
+ then it is actually the MAC address of the cable
2161
+ interface that connected to the CM) cable interface
2162
+ connected to the CM.
2163
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
2164
+ that the reporting CM is operating in.
2165
+ - docsIfDocsisBaseCapability: the highest
2166
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
2167
+ that the device is capable of supporting.
2168
+ - docsIfCmtsCmStatusModulationType: the upstream
2169
+ modulation methodology used by the CM.""",
2170
+ }, # notification
2171
+ "docsDevCmtsDCCAckFailNotif" : {
2172
+ "nodetype" : "notification",
2173
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
2174
+ "oid" : "1.3.6.1.2.1.132.3.0.12",
2175
+ "status" : "current",
2176
+ "objects" : {
2177
+ "docsDevEvLevel" : {
2178
+ "nodetype" : "object",
2179
+ "module" : "DOCS-CABLE-DEVICE-MIB"
2180
+ },
2181
+ "docsDevEvId" : {
2182
+ "nodetype" : "object",
2183
+ "module" : "DOCS-CABLE-DEVICE-MIB"
2184
+ },
2185
+ "docsDevEvText" : {
2186
+ "nodetype" : "object",
2187
+ "module" : "DOCS-CABLE-DEVICE-MIB"
2188
+ },
2189
+ "docsIfCmtsCmStatusMacAddress" : {
2190
+ "nodetype" : "object",
2191
+ "module" : "DOCS-IF-MIB"
2192
+ },
2193
+ "ifPhysAddress" : {
2194
+ "nodetype" : "object",
2195
+ "module" : "IF-MIB"
2196
+ },
2197
+ "docsIfCmtsCmStatusDocsisRegMode" : {
2198
+ "nodetype" : "object",
2199
+ "module" : "DOCS-IF-MIB"
2200
+ },
2201
+ "docsIfDocsisBaseCapability" : {
2202
+ "nodetype" : "object",
2203
+ "module" : "DOCS-IF-MIB"
2204
+ },
2205
+ "docsIfCmtsCmStatusModulationType" : {
2206
+ "nodetype" : "object",
2207
+ "module" : "DOCS-IF-MIB"
2208
+ },
2209
+ },
2210
+ "description" :
2211
+ """A notification to report the failure of a dynamic channel
2212
+ change acknowledgement during the dynamic channel
2213
+ change process and is detected by the CMTS.
2214
+
2215
+ This notification sends additional information about
2216
+ the event by including the following objects in its
2217
+ varbinding list.
2218
+ - docsDevEvLevel: the priority level associated with the
2219
+ event.
2220
+ - docsDevEvId: the unique identifier of the event that
2221
+ occurred.
2222
+ - docsDevEvText: a textual description of the event.
2223
+ - docsIfCmtsCmStatusMacAddress: the MAC address of the CM
2224
+ with which this notification is associated.
2225
+ - ifPhysAddress: the MAC address of the CMTS
2226
+ (if there is a cable card/interface in the CMTS,
2227
+ then it is actually the MAC address of the cable
2228
+ interface that connected to the CM) cable interface
2229
+ connected to the CM.
2230
+ - docsIfCmtsCmStatusDocsisRegMode: the QOS level (1.0, 1.1)
2231
+ that the reporting CM is operating in.
2232
+ - docsIfDocsisBaseCapability: the highest
2233
+ version of the DOCSIS specification (1.0, 1.1, 2.0)
2234
+ that the device is capable of supporting.
2235
+ - docsIfCmtsCmStatusModulationType: the upstream
2236
+ modulation methodology used by the CM.""",
2237
+ }, # notification
2238
+ }, # notifications
2239
+
2240
+ "groups" : {
2241
+ "docsDevCmNotifControlGroup" : {
2242
+ "nodetype" : "group",
2243
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
2244
+ "oid" : "1.3.6.1.2.1.132.4.1.1",
2245
+ "status" : "current",
2246
+ "members" : {
2247
+ "docsDevCmNotifControl" : {
2248
+ "nodetype" : "member",
2249
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2250
+ },
2251
+ }, # members
2252
+ "description" :
2253
+ """This group represents objects that allow control
2254
+ over CM Notifications.""",
2255
+ }, # group
2256
+ "docsDevCmNotificationGroup" : {
2257
+ "nodetype" : "group",
2258
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
2259
+ "oid" : "1.3.6.1.2.1.132.4.1.2",
2260
+ "status" : "current",
2261
+ "members" : {
2262
+ "docsDevCmInitTLVUnknownNotif" : {
2263
+ "nodetype" : "member",
2264
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2265
+ },
2266
+ "docsDevCmDynServReqFailNotif" : {
2267
+ "nodetype" : "member",
2268
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2269
+ },
2270
+ "docsDevCmDynServRspFailNotif" : {
2271
+ "nodetype" : "member",
2272
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2273
+ },
2274
+ "docsDevCmDynServAckFailNotif" : {
2275
+ "nodetype" : "member",
2276
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2277
+ },
2278
+ "docsDevCmBpiInitNotif" : {
2279
+ "nodetype" : "member",
2280
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2281
+ },
2282
+ "docsDevCmBPKMNotif" : {
2283
+ "nodetype" : "member",
2284
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2285
+ },
2286
+ "docsDevCmDynamicSANotif" : {
2287
+ "nodetype" : "member",
2288
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2289
+ },
2290
+ "docsDevCmDHCPFailNotif" : {
2291
+ "nodetype" : "member",
2292
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2293
+ },
2294
+ "docsDevCmSwUpgradeInitNotif" : {
2295
+ "nodetype" : "member",
2296
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2297
+ },
2298
+ "docsDevCmSwUpgradeFailNotif" : {
2299
+ "nodetype" : "member",
2300
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2301
+ },
2302
+ "docsDevCmSwUpgradeSuccessNotif" : {
2303
+ "nodetype" : "member",
2304
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2305
+ },
2306
+ "docsDevCmSwUpgradeCVCFailNotif" : {
2307
+ "nodetype" : "member",
2308
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2309
+ },
2310
+ "docsDevCmTODFailNotif" : {
2311
+ "nodetype" : "member",
2312
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2313
+ },
2314
+ "docsDevCmDCCReqFailNotif" : {
2315
+ "nodetype" : "member",
2316
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2317
+ },
2318
+ "docsDevCmDCCRspFailNotif" : {
2319
+ "nodetype" : "member",
2320
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2321
+ },
2322
+ "docsDevCmDCCAckFailNotif" : {
2323
+ "nodetype" : "member",
2324
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2325
+ },
2326
+ }, # members
2327
+ "description" :
2328
+ """A collection of CM notifications providing device status
2329
+ and control.""",
2330
+ }, # group
2331
+ "docsDevCmtsNotifControlGroup" : {
2332
+ "nodetype" : "group",
2333
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
2334
+ "oid" : "1.3.6.1.2.1.132.4.1.3",
2335
+ "status" : "current",
2336
+ "members" : {
2337
+ "docsDevCmtsNotifControl" : {
2338
+ "nodetype" : "member",
2339
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2340
+ },
2341
+ }, # members
2342
+ "description" :
2343
+ """This group represents objects that allow control
2344
+ over CMTS Notifications.""",
2345
+ }, # group
2346
+ "docsDevCmtsNotificationGroup" : {
2347
+ "nodetype" : "group",
2348
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
2349
+ "oid" : "1.3.6.1.2.1.132.4.1.4",
2350
+ "status" : "current",
2351
+ "members" : {
2352
+ "docsDevCmtsInitRegReqFailNotif" : {
2353
+ "nodetype" : "member",
2354
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2355
+ },
2356
+ "docsDevCmtsInitRegRspFailNotif" : {
2357
+ "nodetype" : "member",
2358
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2359
+ },
2360
+ "docsDevCmtsInitRegAckFailNotif" : {
2361
+ "nodetype" : "member",
2362
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2363
+ },
2364
+ "docsDevCmtsDynServReqFailNotif" : {
2365
+ "nodetype" : "member",
2366
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2367
+ },
2368
+ "docsDevCmtsDynServRspFailNotif" : {
2369
+ "nodetype" : "member",
2370
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2371
+ },
2372
+ "docsDevCmtsDynServAckFailNotif" : {
2373
+ "nodetype" : "member",
2374
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2375
+ },
2376
+ "docsDevCmtsBpiInitNotif" : {
2377
+ "nodetype" : "member",
2378
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2379
+ },
2380
+ "docsDevCmtsBPKMNotif" : {
2381
+ "nodetype" : "member",
2382
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2383
+ },
2384
+ "docsDevCmtsDynamicSANotif" : {
2385
+ "nodetype" : "member",
2386
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2387
+ },
2388
+ "docsDevCmtsDCCReqFailNotif" : {
2389
+ "nodetype" : "member",
2390
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2391
+ },
2392
+ "docsDevCmtsDCCRspFailNotif" : {
2393
+ "nodetype" : "member",
2394
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2395
+ },
2396
+ "docsDevCmtsDCCAckFailNotif" : {
2397
+ "nodetype" : "member",
2398
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2399
+ },
2400
+ }, # members
2401
+ "description" :
2402
+ """A collection of CMTS notifications providing device
2403
+ status and control.""",
2404
+ }, # group
2405
+ }, # groups
2406
+
2407
+ "compliances" : {
2408
+ "docsDevCmNotifCompliance" : {
2409
+ "nodetype" : "compliance",
2410
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
2411
+ "oid" : "1.3.6.1.2.1.132.4.2.1",
2412
+ "status" : "current",
2413
+ "description" :
2414
+ """The compliance statement for CM Notifications and Control.""",
2415
+ "requires" : {
2416
+ "docsDevCmNotifControlGroup" : {
2417
+ "nodetype" : "mandatory",
2418
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2419
+ },
2420
+ "docsDevCmNotificationGroup" : {
2421
+ "nodetype" : "mandatory",
2422
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2423
+ },
2424
+ }, # requires
2425
+ }, # compliance
2426
+ "docsDevCmtsNotifCompliance" : {
2427
+ "nodetype" : "compliance",
2428
+ "moduleName" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB",
2429
+ "oid" : "1.3.6.1.2.1.132.4.2.2",
2430
+ "status" : "current",
2431
+ "description" :
2432
+ """The compliance statement for DOCSIS CMTS Notification
2433
+ and Control.""",
2434
+ "requires" : {
2435
+ "docsDevCmtsNotifControlGroup" : {
2436
+ "nodetype" : "mandatory",
2437
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2438
+ },
2439
+ "docsDevCmtsNotificationGroup" : {
2440
+ "nodetype" : "mandatory",
2441
+ "module" : "DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB"
2442
+ },
2443
+ }, # requires
2444
+ }, # compliance
2445
+ }, # compliances
2446
+
2447
+ }