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,2634 @@
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-BPI-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/DOCS-BPI-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "DOCS-BPI-MIB",
11
+
12
+ "DOCS-BPI-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPCDN Working Group""",
17
+ "contact" :
18
+ """Rich Woundy
19
+ Postal: Cisco Systems
20
+ 250 Apollo Drive
21
+ Chelmsford, MA 01824 U.S.A.
22
+ Tel: +1 978 244 8000
23
+ E-mail: rwoundy@cisco.com
24
+
25
+ IETF IPCDN Working Group
26
+ General Discussion: ipcdn@ietf.org
27
+ Subscribe: http://www.ietf.org/mailman/listinfo/ipcdn
28
+ Archive: ftp://ftp.ietf.org/ietf-mail-archive/ipcdn
29
+ Co-chairs: Richard Woundy, rwoundy@cisco.com
30
+ Andrew Valentine, a.valentine@eu.hns.com""",
31
+ "description" :
32
+ """This is the MIB Module for the DOCSIS Baseline Privacy Interface
33
+ (BPI) at cable modems (CMs) and cable modem termination systems
34
+ (CMTSs). CableLabs requires the implementation of this MIB in
35
+ DOCSIS 1.0 cable modems that implement the Baseline Privacy
36
+ Interface, as a prerequisite for DOCSIS 1.0 certification.""",
37
+ "revisions" : (
38
+ {
39
+ "date" : "2001-03-13 00:00",
40
+ "description" :
41
+ """Version published as RFC 3083.""",
42
+ },
43
+ {
44
+ "date" : "2000-11-03 19:30",
45
+ "description" :
46
+ """Modified by Richard Woundy to fix problems identified by the MIB
47
+
48
+
49
+ doctor. I marked docsBpiCmtsDefaultAuthGraceTime and
50
+ docsBpiCmtsDefaultTEKGraceTime as obsolete objects, to prevent OID
51
+ reassignment. Several object descriptions were also corrected.""",
52
+ },
53
+ {
54
+ "date" : "2000-02-16 19:30",
55
+ "description" :
56
+ """Initial version.
57
+ CableLabs requires the implementation of this MIB in certified DOCSIS
58
+ 1.0 cable modems implementing the Baseline Privacy Interface, per
59
+ DOCSIS 1.0 engineering change notice oss-n-99027.""",
60
+ },
61
+ ),
62
+ "identity node" : "docsBpiMIB",
63
+ },
64
+
65
+ "imports" : (
66
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
67
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
68
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
69
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
70
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
71
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
72
+ {"module" : "SNMPv2-TC", "name" : "MacAddress"},
73
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
74
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
75
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
76
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
77
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
78
+ {"module" : "IF-MIB", "name" : "ifIndex"},
79
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfMib"},
80
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfCmServiceId"},
81
+ {"module" : "DOCS-IF-MIB", "name" : "docsIfCmtsServiceId"},
82
+ ),
83
+
84
+ "nodes" : {
85
+ "docsBpiMIB" : {
86
+ "nodetype" : "node",
87
+ "moduleName" : "DOCS-BPI-MIB",
88
+ "oid" : "1.3.6.1.2.1.10.127.5",
89
+ "status" : "current",
90
+ }, # node
91
+ "docsBpiMIBObjects" : {
92
+ "nodetype" : "node",
93
+ "moduleName" : "DOCS-BPI-MIB",
94
+ "oid" : "1.3.6.1.2.1.10.127.5.1",
95
+ }, # node
96
+ "docsBpiCmObjects" : {
97
+ "nodetype" : "node",
98
+ "moduleName" : "DOCS-BPI-MIB",
99
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1",
100
+ }, # node
101
+ "docsBpiCmBaseTable" : {
102
+ "nodetype" : "table",
103
+ "moduleName" : "DOCS-BPI-MIB",
104
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1",
105
+ "status" : "current",
106
+ "description" :
107
+ """This table describes the basic and authorization-related Baseline
108
+ Privacy attributes of each CM MAC interface.""",
109
+ }, # table
110
+ "docsBpiCmBaseEntry" : {
111
+ "nodetype" : "row",
112
+ "moduleName" : "DOCS-BPI-MIB",
113
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1",
114
+ "status" : "current",
115
+ "linkage" : [
116
+ "ifIndex",
117
+ ],
118
+ "description" :
119
+ """Each entry contains objects describing attributes of one CM MAC
120
+ interface. An entry in this table exists for each ifEntry with an
121
+ ifType of docsCableMaclayer(127).""",
122
+ }, # row
123
+ "docsBpiCmPrivacyEnable" : {
124
+ "nodetype" : "column",
125
+ "moduleName" : "DOCS-BPI-MIB",
126
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.1",
127
+ "status" : "current",
128
+ "syntax" : {
129
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
130
+ },
131
+ "access" : "readonly",
132
+ "description" :
133
+ """This object identifies whether this CM is provisioned to run
134
+ Baseline Privacy. This is analogous to the presence (or absence)
135
+ of the Baseline Privacy Configuration Setting option. The status
136
+ of each individual SID with respect to Baseline Privacy is
137
+ captured in the docsBpiCmTEKPrivacyEnable object.""",
138
+ "reference" :
139
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.""",
140
+ }, # column
141
+ "docsBpiCmPublicKey" : {
142
+ "nodetype" : "column",
143
+ "moduleName" : "DOCS-BPI-MIB",
144
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.2",
145
+ "status" : "current",
146
+ "syntax" : {
147
+ "type" : {
148
+ "basetype" : "OctetString",
149
+ "ranges" : [
150
+ {
151
+ "min" : "74",
152
+ "max" : "74"
153
+ },
154
+ {
155
+ "min" : "106",
156
+ "max" : "106"
157
+ },
158
+ {
159
+ "min" : "140",
160
+ "max" : "140"
161
+ },
162
+ {
163
+ "min" : "270",
164
+ "max" : "270"
165
+ },
166
+ ],
167
+ "range" : {
168
+ "min" : "74",
169
+ "max" : "270"
170
+ },
171
+ },
172
+ },
173
+ "access" : "readonly",
174
+ "description" :
175
+ """The value of this object is a DER-encoded RSAPublicKey ASN.1 type
176
+ string, as defined in the RSA Encryption Standard (PKCS #1) [22],
177
+ corresponding to the public key of the CM. The 74, 106, 140, and
178
+ 270 byte key encoding lengths correspond to 512 bit, 768 bit, 1024
179
+ bit, and 2048 public moduli respectively.""",
180
+ "reference" :
181
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.2.4.""",
182
+ }, # column
183
+ "docsBpiCmAuthState" : {
184
+ "nodetype" : "column",
185
+ "moduleName" : "DOCS-BPI-MIB",
186
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.3",
187
+ "status" : "current",
188
+ "syntax" : {
189
+ "type" : {
190
+ "basetype" : "Enumeration",
191
+ "authWait" : {
192
+ "nodetype" : "namednumber",
193
+ "number" : "2"
194
+ },
195
+ "authorized" : {
196
+ "nodetype" : "namednumber",
197
+ "number" : "3"
198
+ },
199
+ "reauthWait" : {
200
+ "nodetype" : "namednumber",
201
+ "number" : "4"
202
+ },
203
+ "authRejectWait" : {
204
+ "nodetype" : "namednumber",
205
+ "number" : "5"
206
+ },
207
+ },
208
+ },
209
+ "access" : "readonly",
210
+ "description" :
211
+ """The value of this object is the state of the CM authorization
212
+ FSM. The start state indicates that FSM is in its initial state.""",
213
+ "reference" :
214
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.1.2.1.""",
215
+ }, # column
216
+ "docsBpiCmAuthKeySequenceNumber" : {
217
+ "nodetype" : "column",
218
+ "moduleName" : "DOCS-BPI-MIB",
219
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.4",
220
+ "status" : "current",
221
+ "syntax" : {
222
+ "type" : {
223
+ "basetype" : "Integer32",
224
+ "ranges" : [
225
+ {
226
+ "min" : "0",
227
+ "max" : "15"
228
+ },
229
+ ],
230
+ "range" : {
231
+ "min" : "0",
232
+ "max" : "15"
233
+ },
234
+ },
235
+ },
236
+ "access" : "readonly",
237
+ "description" :
238
+ """The value of this object is the authorization key sequence number
239
+ for this FSM.""",
240
+ "reference" :
241
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.2
242
+ and 4.2.2.10.""",
243
+ }, # column
244
+ "docsBpiCmAuthExpires" : {
245
+ "nodetype" : "column",
246
+ "moduleName" : "DOCS-BPI-MIB",
247
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.5",
248
+ "status" : "current",
249
+ "syntax" : {
250
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
251
+ },
252
+ "access" : "readonly",
253
+ "description" :
254
+ """The value of this object is the actual clock time when the current
255
+ authorization for this FSM expires. If the CM does not have an active
256
+ authorization, then the value is of the expiration date and time of
257
+ the last active authorization.""",
258
+ "reference" :
259
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.2
260
+ and 4.2.2.9.""",
261
+ }, # column
262
+ "docsBpiCmAuthReset" : {
263
+ "nodetype" : "column",
264
+ "moduleName" : "DOCS-BPI-MIB",
265
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.6",
266
+ "status" : "current",
267
+ "syntax" : {
268
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
269
+ },
270
+ "access" : "readwrite",
271
+ "description" :
272
+ """Setting this object to TRUE generates a Reauthorize event in the
273
+ authorization FSM. Reading this object always returns FALSE.""",
274
+ "reference" :
275
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.1.2.3.4.""",
276
+ }, # column
277
+ "docsBpiCmAuthGraceTime" : {
278
+ "nodetype" : "column",
279
+ "moduleName" : "DOCS-BPI-MIB",
280
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.7",
281
+ "status" : "current",
282
+ "syntax" : {
283
+ "type" : {
284
+ "basetype" : "Integer32",
285
+ "ranges" : [
286
+ {
287
+ "min" : "1",
288
+ "max" : "1800"
289
+ },
290
+ ],
291
+ "range" : {
292
+ "min" : "1",
293
+ "max" : "1800"
294
+ },
295
+ },
296
+ },
297
+ "access" : "readonly",
298
+ "units" : "seconds",
299
+ "description" :
300
+ """The value of this object is the grace time for an authorization key.
301
+ A CM is expected to start trying to get a new authorization key
302
+ beginning AuthGraceTime seconds before the authorization key actually
303
+ expires.""",
304
+ "reference" :
305
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.1.3.""",
306
+ }, # column
307
+ "docsBpiCmTEKGraceTime" : {
308
+ "nodetype" : "column",
309
+ "moduleName" : "DOCS-BPI-MIB",
310
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.8",
311
+ "status" : "current",
312
+ "syntax" : {
313
+ "type" : {
314
+ "basetype" : "Integer32",
315
+ "ranges" : [
316
+ {
317
+ "min" : "1",
318
+ "max" : "1800"
319
+ },
320
+ ],
321
+ "range" : {
322
+ "min" : "1",
323
+ "max" : "1800"
324
+ },
325
+ },
326
+ },
327
+ "access" : "readonly",
328
+ "units" : "seconds",
329
+ "description" :
330
+ """The value of this object is the grace time for a TEK. A CM is
331
+ expected to start trying to get a new TEK beginning TEKGraceTime
332
+ seconds before the TEK actually expires.""",
333
+ "reference" :
334
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.1.6.""",
335
+ }, # column
336
+ "docsBpiCmAuthWaitTimeout" : {
337
+ "nodetype" : "column",
338
+ "moduleName" : "DOCS-BPI-MIB",
339
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.9",
340
+ "status" : "current",
341
+ "syntax" : {
342
+ "type" : {
343
+ "basetype" : "Integer32",
344
+ "ranges" : [
345
+ {
346
+ "min" : "1",
347
+ "max" : "30"
348
+ },
349
+ ],
350
+ "range" : {
351
+ "min" : "1",
352
+ "max" : "30"
353
+ },
354
+ },
355
+ },
356
+ "access" : "readonly",
357
+ "units" : "seconds",
358
+ "description" :
359
+ """The value of this object is the Authorize Wait Timeout.""",
360
+ "reference" :
361
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.1.1.""",
362
+ }, # column
363
+ "docsBpiCmReauthWaitTimeout" : {
364
+ "nodetype" : "column",
365
+ "moduleName" : "DOCS-BPI-MIB",
366
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.10",
367
+ "status" : "current",
368
+ "syntax" : {
369
+ "type" : {
370
+ "basetype" : "Integer32",
371
+ "ranges" : [
372
+ {
373
+ "min" : "1",
374
+ "max" : "30"
375
+ },
376
+ ],
377
+ "range" : {
378
+ "min" : "1",
379
+ "max" : "30"
380
+ },
381
+ },
382
+ },
383
+ "access" : "readonly",
384
+ "units" : "seconds",
385
+ "description" :
386
+ """The value of this object is the Reauthorize Wait Timeout in seconds.""",
387
+ "reference" :
388
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.1.2.""",
389
+ }, # column
390
+ "docsBpiCmOpWaitTimeout" : {
391
+ "nodetype" : "column",
392
+ "moduleName" : "DOCS-BPI-MIB",
393
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.11",
394
+ "status" : "current",
395
+ "syntax" : {
396
+ "type" : {
397
+ "basetype" : "Integer32",
398
+ "ranges" : [
399
+ {
400
+ "min" : "1",
401
+ "max" : "10"
402
+ },
403
+ ],
404
+ "range" : {
405
+ "min" : "1",
406
+ "max" : "10"
407
+ },
408
+ },
409
+ },
410
+ "access" : "readonly",
411
+ "units" : "seconds",
412
+ "description" :
413
+ """The value of this object is the Operational Wait Timeout in seconds.""",
414
+ "reference" :
415
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.1.4.""",
416
+ }, # column
417
+ "docsBpiCmRekeyWaitTimeout" : {
418
+ "nodetype" : "column",
419
+ "moduleName" : "DOCS-BPI-MIB",
420
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.12",
421
+ "status" : "current",
422
+ "syntax" : {
423
+ "type" : {
424
+ "basetype" : "Integer32",
425
+ "ranges" : [
426
+ {
427
+ "min" : "1",
428
+ "max" : "10"
429
+ },
430
+ ],
431
+ "range" : {
432
+ "min" : "1",
433
+ "max" : "10"
434
+ },
435
+ },
436
+ },
437
+ "access" : "readonly",
438
+ "units" : "seconds",
439
+ "description" :
440
+ """The value of this object is the Rekey Wait Timeout in seconds.""",
441
+ "reference" :
442
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.1.5.""",
443
+ }, # column
444
+ "docsBpiCmAuthRejectWaitTimeout" : {
445
+ "nodetype" : "column",
446
+ "moduleName" : "DOCS-BPI-MIB",
447
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.13",
448
+ "status" : "current",
449
+ "syntax" : {
450
+ "type" : {
451
+ "basetype" : "Integer32",
452
+ "ranges" : [
453
+ {
454
+ "min" : "1",
455
+ "max" : "600"
456
+ },
457
+ ],
458
+ "range" : {
459
+ "min" : "1",
460
+ "max" : "600"
461
+ },
462
+ },
463
+ },
464
+ "access" : "readonly",
465
+ "units" : "seconds",
466
+ "description" :
467
+ """The value of this object is the Authorization Reject Wait Timeout in
468
+ seconds.""",
469
+ "reference" :
470
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.1.7.""",
471
+ }, # column
472
+ "docsBpiCmAuthRequests" : {
473
+ "nodetype" : "column",
474
+ "moduleName" : "DOCS-BPI-MIB",
475
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.14",
476
+ "status" : "current",
477
+ "syntax" : {
478
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
479
+ },
480
+ "access" : "readonly",
481
+ "description" :
482
+ """The value of this object is the count of times the CM has
483
+ transmitted an Authorization Request message.""",
484
+ "reference" :
485
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.1.""",
486
+ }, # column
487
+ "docsBpiCmAuthReplies" : {
488
+ "nodetype" : "column",
489
+ "moduleName" : "DOCS-BPI-MIB",
490
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.15",
491
+ "status" : "current",
492
+ "syntax" : {
493
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
494
+ },
495
+ "access" : "readonly",
496
+ "description" :
497
+ """The value of this object is the count of times the CM has
498
+ received an Authorization Reply message.""",
499
+ "reference" :
500
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.2.""",
501
+ }, # column
502
+ "docsBpiCmAuthRejects" : {
503
+ "nodetype" : "column",
504
+ "moduleName" : "DOCS-BPI-MIB",
505
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.16",
506
+ "status" : "current",
507
+ "syntax" : {
508
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
509
+ },
510
+ "access" : "readonly",
511
+ "description" :
512
+ """The value of this object is the count of times the CM has
513
+ received an Authorization Reject message.""",
514
+ "reference" :
515
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.3.""",
516
+ }, # column
517
+ "docsBpiCmAuthInvalids" : {
518
+ "nodetype" : "column",
519
+ "moduleName" : "DOCS-BPI-MIB",
520
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.17",
521
+ "status" : "current",
522
+ "syntax" : {
523
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
524
+ },
525
+ "access" : "readonly",
526
+ "description" :
527
+ """The value of this object is the count of times the CM has
528
+ received an Authorization Invalid message.""",
529
+ "reference" :
530
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.7.""",
531
+ }, # column
532
+ "docsBpiCmAuthRejectErrorCode" : {
533
+ "nodetype" : "column",
534
+ "moduleName" : "DOCS-BPI-MIB",
535
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.18",
536
+ "status" : "current",
537
+ "syntax" : {
538
+ "type" : {
539
+ "basetype" : "Enumeration",
540
+ "none" : {
541
+ "nodetype" : "namednumber",
542
+ "number" : "1"
543
+ },
544
+ "unknown" : {
545
+ "nodetype" : "namednumber",
546
+ "number" : "2"
547
+ },
548
+ "unauthorizedCm" : {
549
+ "nodetype" : "namednumber",
550
+ "number" : "3"
551
+ },
552
+ "unauthorizedSid" : {
553
+ "nodetype" : "namednumber",
554
+ "number" : "4"
555
+ },
556
+ },
557
+ },
558
+ "access" : "readonly",
559
+ "description" :
560
+ """The value of this object is the enumerated description of the
561
+ Error-Code in most recent Authorization Reject message received by
562
+ the CM. This has value unknown(2) if the last Error-Code value was
563
+ 0, and none(1) if no Authorization Reject message has been received
564
+ since reboot.""",
565
+ "reference" :
566
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.3
567
+ and 4.2.2.16.""",
568
+ }, # column
569
+ "docsBpiCmAuthRejectErrorString" : {
570
+ "nodetype" : "column",
571
+ "moduleName" : "DOCS-BPI-MIB",
572
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.19",
573
+ "status" : "current",
574
+ "syntax" : {
575
+ "type" : {
576
+ "basetype" : "OctetString",
577
+ "parent module" : {
578
+ "name" : "SNMPv2-TC",
579
+ "type" : "DisplayString",
580
+ },
581
+ "ranges" : [
582
+ {
583
+ "min" : "0",
584
+ "max" : "128"
585
+ },
586
+ ],
587
+ "range" : {
588
+ "min" : "0",
589
+ "max" : "128"
590
+ },
591
+ },
592
+ },
593
+ "access" : "readonly",
594
+ "description" :
595
+ """The value of this object is the Display-String in most recent
596
+ Authorization Reject message received by the CM. This is a zero
597
+ length string if no Authorization Reject message has been received
598
+ since reboot.""",
599
+ "reference" :
600
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.3
601
+ and 4.2.2.6.""",
602
+ }, # column
603
+ "docsBpiCmAuthInvalidErrorCode" : {
604
+ "nodetype" : "column",
605
+ "moduleName" : "DOCS-BPI-MIB",
606
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.20",
607
+ "status" : "current",
608
+ "syntax" : {
609
+ "type" : {
610
+ "basetype" : "Enumeration",
611
+ "none" : {
612
+ "nodetype" : "namednumber",
613
+ "number" : "1"
614
+ },
615
+ "unknown" : {
616
+ "nodetype" : "namednumber",
617
+ "number" : "2"
618
+ },
619
+ "unauthorizedCm" : {
620
+ "nodetype" : "namednumber",
621
+ "number" : "3"
622
+ },
623
+ "unsolicited" : {
624
+ "nodetype" : "namednumber",
625
+ "number" : "5"
626
+ },
627
+ "invalidKeySequence" : {
628
+ "nodetype" : "namednumber",
629
+ "number" : "6"
630
+ },
631
+ "keyRequestAuthenticationFailure" : {
632
+ "nodetype" : "namednumber",
633
+ "number" : "7"
634
+ },
635
+ },
636
+ },
637
+ "access" : "readonly",
638
+ "description" :
639
+ """The value of this object is the enumerated description of the
640
+ Error-Code in most recent Authorization Invalid message received by
641
+ the CM. This has value unknown(2) if the last Error-Code value was
642
+ 0, and none(1) if no Authorization Invalid message has been received
643
+ since reboot.""",
644
+ "reference" :
645
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.7
646
+ and 4.2.2.16.""",
647
+ }, # column
648
+ "docsBpiCmAuthInvalidErrorString" : {
649
+ "nodetype" : "column",
650
+ "moduleName" : "DOCS-BPI-MIB",
651
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.1.1.21",
652
+ "status" : "current",
653
+ "syntax" : {
654
+ "type" : {
655
+ "basetype" : "OctetString",
656
+ "parent module" : {
657
+ "name" : "SNMPv2-TC",
658
+ "type" : "DisplayString",
659
+ },
660
+ "ranges" : [
661
+ {
662
+ "min" : "0",
663
+ "max" : "128"
664
+ },
665
+ ],
666
+ "range" : {
667
+ "min" : "0",
668
+ "max" : "128"
669
+ },
670
+ },
671
+ },
672
+ "access" : "readonly",
673
+ "description" :
674
+ """The value of this object is the Display-String in most recent
675
+ Authorization Invalid message received by the CM. This is a zero
676
+
677
+
678
+ length string if no Authorization Invalid message has been received
679
+ since reboot.""",
680
+ "reference" :
681
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.7
682
+ and 4.2.2.6.""",
683
+ }, # column
684
+ "docsBpiCmTEKTable" : {
685
+ "nodetype" : "table",
686
+ "moduleName" : "DOCS-BPI-MIB",
687
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2",
688
+ "status" : "current",
689
+ "description" :
690
+ """This table describes the attributes of each CM Traffic Encryption Key
691
+ (TEK) association. The CM maintains (no more than) one TEK association
692
+ per SID per CM MAC interface.""",
693
+ }, # table
694
+ "docsBpiCmTEKEntry" : {
695
+ "nodetype" : "row",
696
+ "moduleName" : "DOCS-BPI-MIB",
697
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1",
698
+ "status" : "current",
699
+ "linkage" : [
700
+ "ifIndex",
701
+ "docsIfCmServiceId",
702
+ ],
703
+ "description" :
704
+ """Each entry contains objects describing the TEK association attributes
705
+ of one SID. The CM MUST create one entry per unicast SID, regardless
706
+ of whether the SID was obtained from a Registration Response message,
707
+ or from an Authorization Reply message.""",
708
+ }, # row
709
+ "docsBpiCmTEKPrivacyEnable" : {
710
+ "nodetype" : "column",
711
+ "moduleName" : "DOCS-BPI-MIB",
712
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.1",
713
+ "status" : "current",
714
+ "syntax" : {
715
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
716
+ },
717
+ "access" : "readonly",
718
+ "description" :
719
+ """This object identifies whether this SID is provisioned to run
720
+ Baseline Privacy. This is analogous to enabling Baseline Privacy on
721
+ a provisioned SID using the Class-of-Service Privacy Enable option.
722
+ Baseline Privacy is not effectively enabled for any SID unless
723
+ Baseline Privacy is enabled for the CM, which is managed via the
724
+ docsBpiCmPrivacyEnable object.""",
725
+ "reference" :
726
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.2.""",
727
+ }, # column
728
+ "docsBpiCmTEKState" : {
729
+ "nodetype" : "column",
730
+ "moduleName" : "DOCS-BPI-MIB",
731
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.2",
732
+ "status" : "current",
733
+ "syntax" : {
734
+ "type" : {
735
+ "basetype" : "Enumeration",
736
+ "start" : {
737
+ "nodetype" : "namednumber",
738
+ "number" : "1"
739
+ },
740
+ "opWait" : {
741
+ "nodetype" : "namednumber",
742
+ "number" : "2"
743
+ },
744
+ "opReauthWait" : {
745
+ "nodetype" : "namednumber",
746
+ "number" : "3"
747
+ },
748
+ "operational" : {
749
+ "nodetype" : "namednumber",
750
+ "number" : "4"
751
+ },
752
+ "rekeyWait" : {
753
+ "nodetype" : "namednumber",
754
+ "number" : "5"
755
+ },
756
+ "rekeyReauthWait" : {
757
+ "nodetype" : "namednumber",
758
+ "number" : "6"
759
+ },
760
+ },
761
+ },
762
+ "access" : "readonly",
763
+ "description" :
764
+ """The value of this object is the state of the indicated TEK FSM.
765
+ The start(1) state indicates that FSM is in its initial state.""",
766
+ "reference" :
767
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.1.3.1.""",
768
+ }, # column
769
+ "docsBpiCmTEKExpiresOld" : {
770
+ "nodetype" : "column",
771
+ "moduleName" : "DOCS-BPI-MIB",
772
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.3",
773
+ "status" : "current",
774
+ "syntax" : {
775
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
776
+ },
777
+ "access" : "readonly",
778
+ "description" :
779
+ """The value of this object is the actual clock time for expiration
780
+ of the immediate predecessor of the most recent TEK for this FSM.
781
+ If this FSM has only one TEK, then the value is the time of activation
782
+ of this FSM.""",
783
+ "reference" :
784
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.5 and
785
+ 4.2.2.9.""",
786
+ }, # column
787
+ "docsBpiCmTEKExpiresNew" : {
788
+ "nodetype" : "column",
789
+ "moduleName" : "DOCS-BPI-MIB",
790
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.4",
791
+ "status" : "current",
792
+ "syntax" : {
793
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
794
+ },
795
+ "access" : "readonly",
796
+ "description" :
797
+ """The value of this object is the actual clock time for expiration
798
+ of the most recent TEK for this FSM.""",
799
+ "reference" :
800
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.5 and
801
+ 4.2.2.9.""",
802
+ }, # column
803
+ "docsBpiCmTEKKeyRequests" : {
804
+ "nodetype" : "column",
805
+ "moduleName" : "DOCS-BPI-MIB",
806
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.5",
807
+ "status" : "current",
808
+ "syntax" : {
809
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
810
+ },
811
+ "access" : "readonly",
812
+ "description" :
813
+ """The value of this object is the count of times the CM has transmitted
814
+ a Key Request message.""",
815
+ "reference" :
816
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.4.""",
817
+ }, # column
818
+ "docsBpiCmTEKKeyReplies" : {
819
+ "nodetype" : "column",
820
+ "moduleName" : "DOCS-BPI-MIB",
821
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.6",
822
+ "status" : "current",
823
+ "syntax" : {
824
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
825
+ },
826
+ "access" : "readonly",
827
+ "description" :
828
+ """The value of this object is the count of times the CM has received
829
+ a Key Reply message, including a message whose authentication failed.""",
830
+ "reference" :
831
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.5.""",
832
+ }, # column
833
+ "docsBpiCmTEKKeyRejects" : {
834
+ "nodetype" : "column",
835
+ "moduleName" : "DOCS-BPI-MIB",
836
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.7",
837
+ "status" : "current",
838
+ "syntax" : {
839
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
840
+ },
841
+ "access" : "readonly",
842
+ "description" :
843
+ """The value of this object is the count of times the CM has received
844
+ a Key Reject message, including a message whose authentication failed.""",
845
+ "reference" :
846
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.6.""",
847
+ }, # column
848
+ "docsBpiCmTEKInvalids" : {
849
+ "nodetype" : "column",
850
+ "moduleName" : "DOCS-BPI-MIB",
851
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.8",
852
+ "status" : "current",
853
+ "syntax" : {
854
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
855
+ },
856
+ "access" : "readonly",
857
+ "description" :
858
+ """The value of this object is the count of times the CM has received
859
+ a TEK Invalid message, including a message whose authentication failed.""",
860
+ "reference" :
861
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.8.""",
862
+ }, # column
863
+ "docsBpiCmTEKAuthPends" : {
864
+ "nodetype" : "column",
865
+ "moduleName" : "DOCS-BPI-MIB",
866
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.9",
867
+ "status" : "current",
868
+ "syntax" : {
869
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
870
+ },
871
+ "access" : "readonly",
872
+ "description" :
873
+ """The value of this object is the count of times an Authorization
874
+ Pending (Auth Pend) event occurred in this FSM.""",
875
+ "reference" :
876
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.1.3.3.3.""",
877
+ }, # column
878
+ "docsBpiCmTEKKeyRejectErrorCode" : {
879
+ "nodetype" : "column",
880
+ "moduleName" : "DOCS-BPI-MIB",
881
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.10",
882
+ "status" : "current",
883
+ "syntax" : {
884
+ "type" : {
885
+ "basetype" : "Enumeration",
886
+ "none" : {
887
+ "nodetype" : "namednumber",
888
+ "number" : "1"
889
+ },
890
+ "unknown" : {
891
+ "nodetype" : "namednumber",
892
+ "number" : "2"
893
+ },
894
+ "unauthorizedSid" : {
895
+ "nodetype" : "namednumber",
896
+ "number" : "4"
897
+ },
898
+ },
899
+ },
900
+ "access" : "readonly",
901
+ "description" :
902
+ """The value of this object is the enumerated description of the
903
+ Error-Code in most recent Key Reject message received by the CM. This
904
+ has value unknown(2) if the last Error-Code value was 0, and none(1)
905
+ if no Key Reject message has been received since reboot.""",
906
+ "reference" :
907
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.1.2.6
908
+ and 4.2.2.16.""",
909
+ }, # column
910
+ "docsBpiCmTEKKeyRejectErrorString" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "DOCS-BPI-MIB",
913
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.11",
914
+ "status" : "current",
915
+ "syntax" : {
916
+ "type" : {
917
+ "basetype" : "OctetString",
918
+ "parent module" : {
919
+ "name" : "SNMPv2-TC",
920
+ "type" : "DisplayString",
921
+ },
922
+ "ranges" : [
923
+ {
924
+ "min" : "0",
925
+ "max" : "128"
926
+ },
927
+ ],
928
+ "range" : {
929
+ "min" : "0",
930
+ "max" : "128"
931
+ },
932
+ },
933
+ },
934
+ "access" : "readonly",
935
+ "description" :
936
+ """The value of this object is the Display-String in most recent Key
937
+ Reject message received by the CM. This is a zero length string if no
938
+ Key Reject message has been received since reboot.""",
939
+ "reference" :
940
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.1.2.6
941
+ and 4.2.2.6.""",
942
+ }, # column
943
+ "docsBpiCmTEKInvalidErrorCode" : {
944
+ "nodetype" : "column",
945
+ "moduleName" : "DOCS-BPI-MIB",
946
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.12",
947
+ "status" : "current",
948
+ "syntax" : {
949
+ "type" : {
950
+ "basetype" : "Enumeration",
951
+ "none" : {
952
+ "nodetype" : "namednumber",
953
+ "number" : "1"
954
+ },
955
+ "unknown" : {
956
+ "nodetype" : "namednumber",
957
+ "number" : "2"
958
+ },
959
+ "invalidKeySequence" : {
960
+ "nodetype" : "namednumber",
961
+ "number" : "6"
962
+ },
963
+ },
964
+ },
965
+ "access" : "readonly",
966
+ "description" :
967
+ """The value of this object is the enumerated description of the
968
+ Error-Code in most recent TEK Invalid message received by the CM.
969
+ This has value unknown(2) if the last Error-Code value was 0, and
970
+ none(1) if no TEK Invalid message has been received since reboot.""",
971
+ "reference" :
972
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.1.2.8
973
+ and 4.2.2.16.""",
974
+ }, # column
975
+ "docsBpiCmTEKInvalidErrorString" : {
976
+ "nodetype" : "column",
977
+ "moduleName" : "DOCS-BPI-MIB",
978
+ "oid" : "1.3.6.1.2.1.10.127.5.1.1.2.1.13",
979
+ "status" : "current",
980
+ "syntax" : {
981
+ "type" : {
982
+ "basetype" : "OctetString",
983
+ "parent module" : {
984
+ "name" : "SNMPv2-TC",
985
+ "type" : "DisplayString",
986
+ },
987
+ "ranges" : [
988
+ {
989
+ "min" : "0",
990
+ "max" : "128"
991
+ },
992
+ ],
993
+ "range" : {
994
+ "min" : "0",
995
+ "max" : "128"
996
+ },
997
+ },
998
+ },
999
+ "access" : "readonly",
1000
+ "description" :
1001
+ """The value of this object is the Display-String in most recent TEK
1002
+ Invalid message received by the CM. This is a zero length string if
1003
+ no TEK Invalid message has been received since reboot.""",
1004
+ "reference" :
1005
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.1.2.8
1006
+ and 4.2.2.6.""",
1007
+ }, # column
1008
+ "docsBpiCmtsObjects" : {
1009
+ "nodetype" : "node",
1010
+ "moduleName" : "DOCS-BPI-MIB",
1011
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2",
1012
+ }, # node
1013
+ "docsBpiCmtsBaseTable" : {
1014
+ "nodetype" : "table",
1015
+ "moduleName" : "DOCS-BPI-MIB",
1016
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1",
1017
+ "status" : "current",
1018
+ "description" :
1019
+ """This table describes the basic Baseline Privacy attributes of each
1020
+ CMTS MAC interface.""",
1021
+ }, # table
1022
+ "docsBpiCmtsBaseEntry" : {
1023
+ "nodetype" : "row",
1024
+ "moduleName" : "DOCS-BPI-MIB",
1025
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1.1",
1026
+ "status" : "current",
1027
+ "linkage" : [
1028
+ "ifIndex",
1029
+ ],
1030
+ "description" :
1031
+ """Each entry contains objects describing attributes of one CMTS MAC
1032
+ interface. An entry in this table exists for each ifEntry with an
1033
+ ifType of docsCableMaclayer(127).""",
1034
+ }, # row
1035
+ "docsBpiCmtsDefaultAuthLifetime" : {
1036
+ "nodetype" : "column",
1037
+ "moduleName" : "DOCS-BPI-MIB",
1038
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1.1.1",
1039
+ "status" : "current",
1040
+ "syntax" : {
1041
+ "type" : {
1042
+ "basetype" : "Integer32",
1043
+ "ranges" : [
1044
+ {
1045
+ "min" : "1",
1046
+ "max" : "6048000"
1047
+ },
1048
+ ],
1049
+ "range" : {
1050
+ "min" : "1",
1051
+ "max" : "6048000"
1052
+ },
1053
+ },
1054
+ },
1055
+ "access" : "readwrite",
1056
+ "units" : "seconds",
1057
+ "description" :
1058
+ """The value of this object is the default lifetime, in seconds, the
1059
+ CMTS assigns to a new authorization key.""",
1060
+ "reference" :
1061
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.2.""",
1062
+ }, # column
1063
+ "docsBpiCmtsDefaultTEKLifetime" : {
1064
+ "nodetype" : "column",
1065
+ "moduleName" : "DOCS-BPI-MIB",
1066
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1.1.2",
1067
+ "status" : "current",
1068
+ "syntax" : {
1069
+ "type" : {
1070
+ "basetype" : "Integer32",
1071
+ "ranges" : [
1072
+ {
1073
+ "min" : "1",
1074
+ "max" : "604800"
1075
+ },
1076
+ ],
1077
+ "range" : {
1078
+ "min" : "1",
1079
+ "max" : "604800"
1080
+ },
1081
+ },
1082
+ },
1083
+ "access" : "readwrite",
1084
+ "units" : "seconds",
1085
+ "description" :
1086
+ """The value of this object is the default lifetime, in seconds, the
1087
+ CMTS assigns to a new Traffic Encryption Key (TEK).""",
1088
+ "reference" :
1089
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.2.""",
1090
+ }, # column
1091
+ "docsBpiCmtsDefaultAuthGraceTime" : {
1092
+ "nodetype" : "column",
1093
+ "moduleName" : "DOCS-BPI-MIB",
1094
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1.1.3",
1095
+ "status" : "obsolete",
1096
+ "syntax" : {
1097
+ "type" : {
1098
+ "basetype" : "Integer32",
1099
+ "ranges" : [
1100
+ {
1101
+ "min" : "1",
1102
+ "max" : "1800"
1103
+ },
1104
+ ],
1105
+ "range" : {
1106
+ "min" : "1",
1107
+ "max" : "1800"
1108
+ },
1109
+ },
1110
+ },
1111
+ "access" : "readwrite",
1112
+ "units" : "seconds",
1113
+ "description" :
1114
+ """This object was obsoleted because the provisioning system, not the CMTS,
1115
+ manages the authorization key grace time for DOCSIS CMs.""",
1116
+ }, # column
1117
+ "docsBpiCmtsDefaultTEKGraceTime" : {
1118
+ "nodetype" : "column",
1119
+ "moduleName" : "DOCS-BPI-MIB",
1120
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1.1.4",
1121
+ "status" : "obsolete",
1122
+ "syntax" : {
1123
+ "type" : {
1124
+ "basetype" : "Integer32",
1125
+ "ranges" : [
1126
+ {
1127
+ "min" : "1",
1128
+ "max" : "1800"
1129
+ },
1130
+ ],
1131
+ "range" : {
1132
+ "min" : "1",
1133
+ "max" : "1800"
1134
+ },
1135
+ },
1136
+ },
1137
+ "access" : "readwrite",
1138
+ "units" : "seconds",
1139
+ "description" :
1140
+ """This object was obsoleted because the provisioning system, not the CMTS,
1141
+ manages the Traffic Encryption Key (TEK) grace time for DOCSIS CMs.""",
1142
+ }, # column
1143
+ "docsBpiCmtsAuthRequests" : {
1144
+ "nodetype" : "column",
1145
+ "moduleName" : "DOCS-BPI-MIB",
1146
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1.1.5",
1147
+ "status" : "current",
1148
+ "syntax" : {
1149
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1150
+ },
1151
+ "access" : "readonly",
1152
+ "description" :
1153
+ """The value of this object is the count of times the CMTS has
1154
+ received an Authorization Request message from any CM.""",
1155
+ "reference" :
1156
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.1.""",
1157
+ }, # column
1158
+ "docsBpiCmtsAuthReplies" : {
1159
+ "nodetype" : "column",
1160
+ "moduleName" : "DOCS-BPI-MIB",
1161
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1.1.6",
1162
+ "status" : "current",
1163
+ "syntax" : {
1164
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1165
+ },
1166
+ "access" : "readonly",
1167
+ "description" :
1168
+ """The value of this object is the count of times the CMTS has
1169
+ transmitted an Authorization Reply message to any CM.""",
1170
+ "reference" :
1171
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.2.""",
1172
+ }, # column
1173
+ "docsBpiCmtsAuthRejects" : {
1174
+ "nodetype" : "column",
1175
+ "moduleName" : "DOCS-BPI-MIB",
1176
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1.1.7",
1177
+ "status" : "current",
1178
+ "syntax" : {
1179
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1180
+ },
1181
+ "access" : "readonly",
1182
+ "description" :
1183
+ """The value of this object is the count of times the CMTS has
1184
+
1185
+
1186
+ transmitted an Authorization Reject message to any CM.""",
1187
+ "reference" :
1188
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.3.""",
1189
+ }, # column
1190
+ "docsBpiCmtsAuthInvalids" : {
1191
+ "nodetype" : "column",
1192
+ "moduleName" : "DOCS-BPI-MIB",
1193
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.1.1.8",
1194
+ "status" : "current",
1195
+ "syntax" : {
1196
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1197
+ },
1198
+ "access" : "readonly",
1199
+ "description" :
1200
+ """The value of this object is the count of times the CMTS has
1201
+ transmitted an Authorization Invalid message to any CM.""",
1202
+ "reference" :
1203
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.7.""",
1204
+ }, # column
1205
+ "docsBpiCmtsAuthTable" : {
1206
+ "nodetype" : "table",
1207
+ "moduleName" : "DOCS-BPI-MIB",
1208
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2",
1209
+ "status" : "current",
1210
+ "description" :
1211
+ """This table describes the attributes of each CM authorization
1212
+ association. The CMTS maintains one authorization association with
1213
+ each Baseline Privacy-enabled CM on each CMTS MAC interface.""",
1214
+ }, # table
1215
+ "docsBpiCmtsAuthEntry" : {
1216
+ "nodetype" : "row",
1217
+ "moduleName" : "DOCS-BPI-MIB",
1218
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1",
1219
+ "status" : "current",
1220
+ "linkage" : [
1221
+ "ifIndex",
1222
+ "docsBpiCmtsAuthCmMacAddress",
1223
+ ],
1224
+ "description" :
1225
+ """Each entry contains objects describing attributes of one
1226
+ authorization association. The CMTS MUST create one entry per CM per
1227
+ MAC interface, based on the receipt of an Authorization Request
1228
+ message, and MUST not delete the entry before the CM authorization
1229
+ permanently expires.""",
1230
+ }, # row
1231
+ "docsBpiCmtsAuthCmMacAddress" : {
1232
+ "nodetype" : "column",
1233
+ "moduleName" : "DOCS-BPI-MIB",
1234
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.1",
1235
+ "status" : "current",
1236
+ "syntax" : {
1237
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
1238
+ },
1239
+ "access" : "noaccess",
1240
+ "description" :
1241
+ """The value of this object is the physical address of the CM to
1242
+ which the authorization association applies.""",
1243
+ }, # column
1244
+ "docsBpiCmtsAuthCmPublicKey" : {
1245
+ "nodetype" : "column",
1246
+ "moduleName" : "DOCS-BPI-MIB",
1247
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.2",
1248
+ "status" : "current",
1249
+ "syntax" : {
1250
+ "type" : {
1251
+ "basetype" : "OctetString",
1252
+ "ranges" : [
1253
+ {
1254
+ "min" : "0",
1255
+ "max" : "0"
1256
+ },
1257
+ {
1258
+ "min" : "74",
1259
+ "max" : "74"
1260
+ },
1261
+ {
1262
+ "min" : "106",
1263
+ "max" : "106"
1264
+ },
1265
+ {
1266
+ "min" : "140",
1267
+ "max" : "140"
1268
+ },
1269
+ {
1270
+ "min" : "270",
1271
+ "max" : "270"
1272
+ },
1273
+ ],
1274
+ "range" : {
1275
+ "min" : "0",
1276
+ "max" : "270"
1277
+ },
1278
+ },
1279
+ },
1280
+ "access" : "readonly",
1281
+ "description" :
1282
+ """The value of this object is a DER-encoded RSAPublicKey ASN.1 type
1283
+ string, as defined in the RSA Encryption Standard (PKCS #1) [22],
1284
+ corresponding to the public key of the CM. The 74, 106, 140, and
1285
+ 270 byte key encoding lengths correspond to 512 bit, 768 bit, 1024
1286
+ bit, and 2048 public moduli respectively. This is a zero-length
1287
+ string if the CMTS does not retain the public key.""",
1288
+ "reference" :
1289
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.2.4.""",
1290
+ }, # column
1291
+ "docsBpiCmtsAuthCmKeySequenceNumber" : {
1292
+ "nodetype" : "column",
1293
+ "moduleName" : "DOCS-BPI-MIB",
1294
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.3",
1295
+ "status" : "current",
1296
+ "syntax" : {
1297
+ "type" : {
1298
+ "basetype" : "Integer32",
1299
+ "ranges" : [
1300
+ {
1301
+ "min" : "0",
1302
+ "max" : "15"
1303
+ },
1304
+ ],
1305
+ "range" : {
1306
+ "min" : "0",
1307
+ "max" : "15"
1308
+ },
1309
+ },
1310
+ },
1311
+ "access" : "readonly",
1312
+ "description" :
1313
+ """The value of this object is the authorization key sequence number
1314
+ for this CM.""",
1315
+ "reference" :
1316
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.2
1317
+ and 4.2.2.10.""",
1318
+ }, # column
1319
+ "docsBpiCmtsAuthCmExpires" : {
1320
+ "nodetype" : "column",
1321
+ "moduleName" : "DOCS-BPI-MIB",
1322
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.4",
1323
+ "status" : "current",
1324
+ "syntax" : {
1325
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1326
+ },
1327
+ "access" : "readonly",
1328
+ "description" :
1329
+ """The value of this object is the actual clock time when the current
1330
+ authorization for this CM expires. If this CM does not have an
1331
+ active authorization, then the value is of the expiration date and
1332
+ time of the last active authorization.""",
1333
+ "reference" :
1334
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.2
1335
+ and 4.2.2.9.""",
1336
+ }, # column
1337
+ "docsBpiCmtsAuthCmLifetime" : {
1338
+ "nodetype" : "column",
1339
+ "moduleName" : "DOCS-BPI-MIB",
1340
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.5",
1341
+ "status" : "current",
1342
+ "syntax" : {
1343
+ "type" : {
1344
+ "basetype" : "Integer32",
1345
+ "ranges" : [
1346
+ {
1347
+ "min" : "1",
1348
+ "max" : "6048000"
1349
+ },
1350
+ ],
1351
+ "range" : {
1352
+ "min" : "1",
1353
+ "max" : "6048000"
1354
+ },
1355
+ },
1356
+ },
1357
+ "access" : "readwrite",
1358
+ "units" : "seconds",
1359
+ "description" :
1360
+ """The value of this object is the lifetime, in seconds, the CMTS
1361
+ assigns to an authorization key for this CM.""",
1362
+ "reference" :
1363
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.2
1364
+ and Appendix A.2.""",
1365
+ }, # column
1366
+ "docsBpiCmtsAuthCmGraceTime" : {
1367
+ "nodetype" : "column",
1368
+ "moduleName" : "DOCS-BPI-MIB",
1369
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.6",
1370
+ "status" : "current",
1371
+ "syntax" : {
1372
+ "type" : {
1373
+ "basetype" : "Integer32",
1374
+ "ranges" : [
1375
+ {
1376
+ "min" : "1",
1377
+ "max" : "1800"
1378
+ },
1379
+ ],
1380
+ "range" : {
1381
+ "min" : "1",
1382
+ "max" : "1800"
1383
+ },
1384
+ },
1385
+ },
1386
+ "access" : "readonly",
1387
+ "units" : "seconds",
1388
+ "description" :
1389
+ """The value of this object is the grace time for the authorization key
1390
+ in seconds. The CM is expected to start trying to get a new
1391
+ authorization key beginning AuthGraceTime seconds before the
1392
+ authorization key actually expires.""",
1393
+ "reference" :
1394
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.1.3.""",
1395
+ }, # column
1396
+ "docsBpiCmtsAuthCmReset" : {
1397
+ "nodetype" : "column",
1398
+ "moduleName" : "DOCS-BPI-MIB",
1399
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.7",
1400
+ "status" : "current",
1401
+ "syntax" : {
1402
+ "type" : {
1403
+ "basetype" : "Enumeration",
1404
+ "noResetRequested" : {
1405
+ "nodetype" : "namednumber",
1406
+ "number" : "1"
1407
+ },
1408
+ "invalidateAuth" : {
1409
+ "nodetype" : "namednumber",
1410
+ "number" : "2"
1411
+ },
1412
+ "sendAuthInvalid" : {
1413
+ "nodetype" : "namednumber",
1414
+ "number" : "3"
1415
+ },
1416
+ "invalidateTeks" : {
1417
+ "nodetype" : "namednumber",
1418
+ "number" : "4"
1419
+ },
1420
+ },
1421
+ },
1422
+ "access" : "readwrite",
1423
+ "description" :
1424
+ """Setting this object to invalidateAuth(2) causes the CMTS to
1425
+ invalidate the current CM authorization key, but not to transmit an
1426
+ Authorization Invalid message nor to invalidate unicast TEKs. Setting
1427
+ this object to sendAuthInvalid(3) causes the CMTS to invalidate the
1428
+ current CM authorization key, and to transmit an Authorization Invalid
1429
+ message to the CM, but not to invalidate unicast TEKs. Setting this
1430
+ object to invalidateTeks(4) causes the CMTS to invalidate the current
1431
+ CM authorization key, to transmit an Authorization Invalid message to
1432
+ the CM, and to invalidate all unicast TEKs associated with this CM
1433
+ authorization. Reading this object returns the most-recently-set value
1434
+ of this object, or returns noResetRequested(1) if the object has not
1435
+ been set since the last CMTS reboot.""",
1436
+ "reference" :
1437
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.1.2.3.4,
1438
+ 4.1.2.3.5, and 4.1.3.3.5.""",
1439
+ }, # column
1440
+ "docsBpiCmtsAuthCmRequests" : {
1441
+ "nodetype" : "column",
1442
+ "moduleName" : "DOCS-BPI-MIB",
1443
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.8",
1444
+ "status" : "current",
1445
+ "syntax" : {
1446
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1447
+ },
1448
+ "access" : "readonly",
1449
+ "description" :
1450
+ """The value of this object is the count of times the CMTS has
1451
+ received an Authorization Request message from this CM.""",
1452
+ "reference" :
1453
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.1.""",
1454
+ }, # column
1455
+ "docsBpiCmtsAuthCmReplies" : {
1456
+ "nodetype" : "column",
1457
+ "moduleName" : "DOCS-BPI-MIB",
1458
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.9",
1459
+ "status" : "current",
1460
+ "syntax" : {
1461
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1462
+ },
1463
+ "access" : "readonly",
1464
+ "description" :
1465
+ """The value of this object is the count of times the CMTS has
1466
+ transmitted an Authorization Reply message to this CM.""",
1467
+ "reference" :
1468
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.2.""",
1469
+ }, # column
1470
+ "docsBpiCmtsAuthCmRejects" : {
1471
+ "nodetype" : "column",
1472
+ "moduleName" : "DOCS-BPI-MIB",
1473
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.10",
1474
+ "status" : "current",
1475
+ "syntax" : {
1476
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1477
+ },
1478
+ "access" : "readonly",
1479
+ "description" :
1480
+ """The value of this object is the count of times the CMTS has
1481
+ transmitted an Authorization Reject message to this CM.""",
1482
+ "reference" :
1483
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.3.""",
1484
+ }, # column
1485
+ "docsBpiCmtsAuthCmInvalids" : {
1486
+ "nodetype" : "column",
1487
+ "moduleName" : "DOCS-BPI-MIB",
1488
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.11",
1489
+ "status" : "current",
1490
+ "syntax" : {
1491
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1492
+ },
1493
+ "access" : "readonly",
1494
+ "description" :
1495
+ """The value of this object is the count of times the CMTS has
1496
+ transmitted an Authorization Invalid message to this CM.""",
1497
+ "reference" :
1498
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.7.""",
1499
+ }, # column
1500
+ "docsBpiCmtsAuthRejectErrorCode" : {
1501
+ "nodetype" : "column",
1502
+ "moduleName" : "DOCS-BPI-MIB",
1503
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.12",
1504
+ "status" : "current",
1505
+ "syntax" : {
1506
+ "type" : {
1507
+ "basetype" : "Enumeration",
1508
+ "none" : {
1509
+ "nodetype" : "namednumber",
1510
+ "number" : "1"
1511
+ },
1512
+ "unknown" : {
1513
+ "nodetype" : "namednumber",
1514
+ "number" : "2"
1515
+ },
1516
+ "unauthorizedCm" : {
1517
+ "nodetype" : "namednumber",
1518
+ "number" : "3"
1519
+ },
1520
+ "unauthorizedSid" : {
1521
+ "nodetype" : "namednumber",
1522
+ "number" : "4"
1523
+ },
1524
+ },
1525
+ },
1526
+ "access" : "readonly",
1527
+ "description" :
1528
+ """The value of this object is the enumerated description of the
1529
+ Error-Code in most recent Authorization Reject message transmitted to
1530
+ the CM. This has value unknown(2) if the last Error-Code value was
1531
+ 0, and none(1) if no Authorization Reject message has been transmitted
1532
+ to the CM.""",
1533
+ "reference" :
1534
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.3
1535
+ and 4.2.2.16.""",
1536
+ }, # column
1537
+ "docsBpiCmtsAuthRejectErrorString" : {
1538
+ "nodetype" : "column",
1539
+ "moduleName" : "DOCS-BPI-MIB",
1540
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.13",
1541
+ "status" : "current",
1542
+ "syntax" : {
1543
+ "type" : {
1544
+ "basetype" : "OctetString",
1545
+ "parent module" : {
1546
+ "name" : "SNMPv2-TC",
1547
+ "type" : "DisplayString",
1548
+ },
1549
+ "ranges" : [
1550
+ {
1551
+ "min" : "0",
1552
+ "max" : "128"
1553
+ },
1554
+ ],
1555
+ "range" : {
1556
+ "min" : "0",
1557
+ "max" : "128"
1558
+ },
1559
+ },
1560
+ },
1561
+ "access" : "readonly",
1562
+ "description" :
1563
+ """The value of this object is the Display-String in most recent
1564
+ Authorization Reject message transmitted to the CM. This is a
1565
+ zero length string if no Authorization Reject message has been
1566
+ transmitted to the CM.""",
1567
+ "reference" :
1568
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.3
1569
+ and 4.2.2.6.""",
1570
+ }, # column
1571
+ "docsBpiCmtsAuthInvalidErrorCode" : {
1572
+ "nodetype" : "column",
1573
+ "moduleName" : "DOCS-BPI-MIB",
1574
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.14",
1575
+ "status" : "current",
1576
+ "syntax" : {
1577
+ "type" : {
1578
+ "basetype" : "Enumeration",
1579
+ "none" : {
1580
+ "nodetype" : "namednumber",
1581
+ "number" : "1"
1582
+ },
1583
+ "unknown" : {
1584
+ "nodetype" : "namednumber",
1585
+ "number" : "2"
1586
+ },
1587
+ "unauthorizedCm" : {
1588
+ "nodetype" : "namednumber",
1589
+ "number" : "3"
1590
+ },
1591
+ "unsolicited" : {
1592
+ "nodetype" : "namednumber",
1593
+ "number" : "5"
1594
+ },
1595
+ "invalidKeySequence" : {
1596
+ "nodetype" : "namednumber",
1597
+ "number" : "6"
1598
+ },
1599
+ "keyRequestAuthenticationFailure" : {
1600
+ "nodetype" : "namednumber",
1601
+ "number" : "7"
1602
+ },
1603
+ },
1604
+ },
1605
+ "access" : "readonly",
1606
+ "description" :
1607
+ """The value of this object is the enumerated description of the
1608
+ Error-Code in most recent Authorization Invalid message transmitted
1609
+ to the CM. This has value unknown(2) if the last Error-Code value was
1610
+ 0, and none(1) if no Authorization Invalid message has been
1611
+ transmitted to the CM.""",
1612
+ "reference" :
1613
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.7
1614
+ and 4.2.2.16.""",
1615
+ }, # column
1616
+ "docsBpiCmtsAuthInvalidErrorString" : {
1617
+ "nodetype" : "column",
1618
+ "moduleName" : "DOCS-BPI-MIB",
1619
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.2.1.15",
1620
+ "status" : "current",
1621
+ "syntax" : {
1622
+ "type" : {
1623
+ "basetype" : "OctetString",
1624
+ "parent module" : {
1625
+ "name" : "SNMPv2-TC",
1626
+ "type" : "DisplayString",
1627
+ },
1628
+ "ranges" : [
1629
+ {
1630
+ "min" : "0",
1631
+ "max" : "128"
1632
+ },
1633
+ ],
1634
+ "range" : {
1635
+ "min" : "0",
1636
+ "max" : "128"
1637
+ },
1638
+ },
1639
+ },
1640
+ "access" : "readonly",
1641
+ "description" :
1642
+ """The value of this object is the Display-String in most recent
1643
+ Authorization Invalid message transmitted to the CM. This is a
1644
+ zero length string if no Authorization Invalid message has been
1645
+ transmitted to the CM.""",
1646
+ "reference" :
1647
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.7
1648
+ and 4.2.2.6.""",
1649
+ }, # column
1650
+ "docsBpiCmtsTEKTable" : {
1651
+ "nodetype" : "table",
1652
+ "moduleName" : "DOCS-BPI-MIB",
1653
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3",
1654
+ "status" : "current",
1655
+ "description" :
1656
+ """This table describes the attributes of each CM Traffic Encryption
1657
+ Key (TEK) association. The CMTS maintains one TEK association per BPI
1658
+ SID on each CMTS MAC interface.""",
1659
+ }, # table
1660
+ "docsBpiCmtsTEKEntry" : {
1661
+ "nodetype" : "row",
1662
+ "moduleName" : "DOCS-BPI-MIB",
1663
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1",
1664
+ "status" : "current",
1665
+ "linkage" : [
1666
+ "ifIndex",
1667
+ "docsIfCmtsServiceId",
1668
+ ],
1669
+ "description" :
1670
+ """Each entry contains objects describing attributes of one TEK
1671
+ association on a particular CMTS MAC interface. The CMTS MUST create
1672
+ one entry per SID per MAC interface, based on the receipt of an
1673
+ Key Request message, and MUST not delete the entry before the CM
1674
+ authorization for the SID permanently expires.""",
1675
+ }, # row
1676
+ "docsBpiCmtsTEKLifetime" : {
1677
+ "nodetype" : "column",
1678
+ "moduleName" : "DOCS-BPI-MIB",
1679
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.1",
1680
+ "status" : "current",
1681
+ "syntax" : {
1682
+ "type" : {
1683
+ "basetype" : "Integer32",
1684
+ "ranges" : [
1685
+ {
1686
+ "min" : "1",
1687
+ "max" : "604800"
1688
+ },
1689
+ ],
1690
+ "range" : {
1691
+ "min" : "1",
1692
+ "max" : "604800"
1693
+ },
1694
+ },
1695
+ },
1696
+ "access" : "readwrite",
1697
+ "units" : "seconds",
1698
+ "description" :
1699
+ """The value of this object is the lifetime, in seconds, the CMTS assigns
1700
+ to keys for this TEK association.""",
1701
+ "reference" :
1702
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.5
1703
+ and Appendix A.2.""",
1704
+ }, # column
1705
+ "docsBpiCmtsTEKGraceTime" : {
1706
+ "nodetype" : "column",
1707
+ "moduleName" : "DOCS-BPI-MIB",
1708
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.2",
1709
+ "status" : "current",
1710
+ "syntax" : {
1711
+ "type" : {
1712
+ "basetype" : "Integer32",
1713
+ "ranges" : [
1714
+ {
1715
+ "min" : "1",
1716
+ "max" : "1800"
1717
+ },
1718
+ ],
1719
+ "range" : {
1720
+ "min" : "1",
1721
+ "max" : "1800"
1722
+ },
1723
+ },
1724
+ },
1725
+ "access" : "readonly",
1726
+ "units" : "seconds",
1727
+ "description" :
1728
+ """The value of this object is the grace time for the TEK in seconds.
1729
+ The CM is expected to start trying to get a new TEK beginning
1730
+ TEKGraceTime seconds before the TEK actually expires.""",
1731
+ "reference" :
1732
+ """DOCSIS Baseline Privacy Interface Specification, Appendix A.1.1.1.6.""",
1733
+ }, # column
1734
+ "docsBpiCmtsTEKExpiresOld" : {
1735
+ "nodetype" : "column",
1736
+ "moduleName" : "DOCS-BPI-MIB",
1737
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.3",
1738
+ "status" : "current",
1739
+ "syntax" : {
1740
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1741
+ },
1742
+ "access" : "readonly",
1743
+ "description" :
1744
+ """The value of this object is the actual clock time for expiration
1745
+ of the immediate predecessor of the most recent TEK for this FSM.
1746
+ If this FSM has only one TEK, then the value is the time of activation
1747
+ of this FSM.""",
1748
+ "reference" :
1749
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.5
1750
+ and 4.2.2.9.""",
1751
+ }, # column
1752
+ "docsBpiCmtsTEKExpiresNew" : {
1753
+ "nodetype" : "column",
1754
+ "moduleName" : "DOCS-BPI-MIB",
1755
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.4",
1756
+ "status" : "current",
1757
+ "syntax" : {
1758
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1759
+ },
1760
+ "access" : "readonly",
1761
+ "description" :
1762
+ """The value of this object is the actual clock time for expiration
1763
+ of the most recent TEK for this FSM.""",
1764
+ "reference" :
1765
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.5
1766
+ and 4.2.2.9.""",
1767
+ }, # column
1768
+ "docsBpiCmtsTEKReset" : {
1769
+ "nodetype" : "column",
1770
+ "moduleName" : "DOCS-BPI-MIB",
1771
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.5",
1772
+ "status" : "current",
1773
+ "syntax" : {
1774
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1775
+ },
1776
+ "access" : "readwrite",
1777
+ "description" :
1778
+ """Setting this object to TRUE causes the CMTS to invalidate the current
1779
+ active TEK(s) (plural due to key transition periods), and to generate
1780
+ a new TEK for the associated SID; the CMTS MAY also generate an
1781
+ unsolicited TEK Invalid message, to optimize the TEK synchronization
1782
+
1783
+
1784
+ between the CMTS and the CM. Reading this object always returns
1785
+ FALSE.""",
1786
+ "reference" :
1787
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.1.3.3.5.""",
1788
+ }, # column
1789
+ "docsBpiCmtsKeyRequests" : {
1790
+ "nodetype" : "column",
1791
+ "moduleName" : "DOCS-BPI-MIB",
1792
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.6",
1793
+ "status" : "current",
1794
+ "syntax" : {
1795
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1796
+ },
1797
+ "access" : "readonly",
1798
+ "description" :
1799
+ """The value of this object is the count of times the CMTS has
1800
+ received a Key Request message.""",
1801
+ "reference" :
1802
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.4.""",
1803
+ }, # column
1804
+ "docsBpiCmtsKeyReplies" : {
1805
+ "nodetype" : "column",
1806
+ "moduleName" : "DOCS-BPI-MIB",
1807
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.7",
1808
+ "status" : "current",
1809
+ "syntax" : {
1810
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1811
+ },
1812
+ "access" : "readonly",
1813
+ "description" :
1814
+ """The value of this object is the count of times the CMTS has
1815
+ transmitted a Key Reply message.""",
1816
+ "reference" :
1817
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.5.""",
1818
+ }, # column
1819
+ "docsBpiCmtsKeyRejects" : {
1820
+ "nodetype" : "column",
1821
+ "moduleName" : "DOCS-BPI-MIB",
1822
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.8",
1823
+ "status" : "current",
1824
+ "syntax" : {
1825
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1826
+ },
1827
+ "access" : "readonly",
1828
+ "description" :
1829
+ """The value of this object is the count of times the CMTS has
1830
+ transmitted a Key Reject message.""",
1831
+ "reference" :
1832
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.6.""",
1833
+ }, # column
1834
+ "docsBpiCmtsTEKInvalids" : {
1835
+ "nodetype" : "column",
1836
+ "moduleName" : "DOCS-BPI-MIB",
1837
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.9",
1838
+ "status" : "current",
1839
+ "syntax" : {
1840
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1841
+ },
1842
+ "access" : "readonly",
1843
+ "description" :
1844
+ """The value of this object is the count of times the CMTS has
1845
+ transmitted a TEK Invalid message.""",
1846
+ "reference" :
1847
+ """DOCSIS Baseline Privacy Interface Specification, Section 4.2.1.8.""",
1848
+ }, # column
1849
+ "docsBpiCmtsKeyRejectErrorCode" : {
1850
+ "nodetype" : "column",
1851
+ "moduleName" : "DOCS-BPI-MIB",
1852
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.10",
1853
+ "status" : "current",
1854
+ "syntax" : {
1855
+ "type" : {
1856
+ "basetype" : "Enumeration",
1857
+ "none" : {
1858
+ "nodetype" : "namednumber",
1859
+ "number" : "1"
1860
+ },
1861
+ "unknown" : {
1862
+ "nodetype" : "namednumber",
1863
+ "number" : "2"
1864
+ },
1865
+ "unauthorizedSid" : {
1866
+ "nodetype" : "namednumber",
1867
+ "number" : "4"
1868
+ },
1869
+ },
1870
+ },
1871
+ "access" : "readonly",
1872
+ "description" :
1873
+ """The value of this object is the enumerated description of the
1874
+ Error-Code in the most recent Key Reject message sent in response to
1875
+ a Key Request for this BPI SID. This has value unknown(2) if the last
1876
+ Error-Code value was 0, and none(1) if no Key Reject message has been
1877
+ received since reboot.""",
1878
+ "reference" :
1879
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.6
1880
+ and 4.2.2.16.""",
1881
+ }, # column
1882
+ "docsBpiCmtsKeyRejectErrorString" : {
1883
+ "nodetype" : "column",
1884
+ "moduleName" : "DOCS-BPI-MIB",
1885
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.11",
1886
+ "status" : "current",
1887
+ "syntax" : {
1888
+ "type" : {
1889
+ "basetype" : "OctetString",
1890
+ "parent module" : {
1891
+ "name" : "SNMPv2-TC",
1892
+ "type" : "DisplayString",
1893
+ },
1894
+ "ranges" : [
1895
+ {
1896
+ "min" : "0",
1897
+ "max" : "128"
1898
+ },
1899
+ ],
1900
+ "range" : {
1901
+ "min" : "0",
1902
+ "max" : "128"
1903
+ },
1904
+ },
1905
+ },
1906
+ "access" : "readonly",
1907
+ "description" :
1908
+ """The value of this object is the Display-String in the most recent
1909
+ Key Reject message sent in response to a Key Request for this BPI
1910
+ SID. This is a zero length string if no Key Reject message has been
1911
+ received since reboot.""",
1912
+ "reference" :
1913
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.6
1914
+ and 4.2.2.6.""",
1915
+ }, # column
1916
+ "docsBpiCmtsTEKInvalidErrorCode" : {
1917
+ "nodetype" : "column",
1918
+ "moduleName" : "DOCS-BPI-MIB",
1919
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.12",
1920
+ "status" : "current",
1921
+ "syntax" : {
1922
+ "type" : {
1923
+ "basetype" : "Enumeration",
1924
+ "none" : {
1925
+ "nodetype" : "namednumber",
1926
+ "number" : "1"
1927
+ },
1928
+ "unknown" : {
1929
+ "nodetype" : "namednumber",
1930
+ "number" : "2"
1931
+ },
1932
+ "invalidKeySequence" : {
1933
+ "nodetype" : "namednumber",
1934
+ "number" : "6"
1935
+ },
1936
+ },
1937
+ },
1938
+ "access" : "readonly",
1939
+ "description" :
1940
+ """The value of this object is the enumerated description of the
1941
+ Error-Code in the most recent TEK Invalid message sent in association
1942
+ with this BPI SID. This has value unknown(2) if the last Error-Code
1943
+ value was 0, and none(1) if no TEK Invalid message has been received
1944
+
1945
+
1946
+ since reboot.""",
1947
+ "reference" :
1948
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.8
1949
+ and 4.2.2.16.""",
1950
+ }, # column
1951
+ "docsBpiCmtsTEKInvalidErrorString" : {
1952
+ "nodetype" : "column",
1953
+ "moduleName" : "DOCS-BPI-MIB",
1954
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.3.1.13",
1955
+ "status" : "current",
1956
+ "syntax" : {
1957
+ "type" : {
1958
+ "basetype" : "OctetString",
1959
+ "parent module" : {
1960
+ "name" : "SNMPv2-TC",
1961
+ "type" : "DisplayString",
1962
+ },
1963
+ "ranges" : [
1964
+ {
1965
+ "min" : "0",
1966
+ "max" : "128"
1967
+ },
1968
+ ],
1969
+ "range" : {
1970
+ "min" : "0",
1971
+ "max" : "128"
1972
+ },
1973
+ },
1974
+ },
1975
+ "access" : "readonly",
1976
+ "description" :
1977
+ """The value of this object is the Display-String in the most recent TEK
1978
+ Invalid message sent in association with this BPI SID. This is a zero
1979
+ length string if no TEK Invalid message has been received since reboot.""",
1980
+ "reference" :
1981
+ """DOCSIS Baseline Privacy Interface Specification, Sections 4.2.1.8
1982
+ and 4.2.2.6.""",
1983
+ }, # column
1984
+ "docsBpiMulticastControl" : {
1985
+ "nodetype" : "node",
1986
+ "moduleName" : "DOCS-BPI-MIB",
1987
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4",
1988
+ }, # node
1989
+ "docsBpiIpMulticastMapTable" : {
1990
+ "nodetype" : "table",
1991
+ "moduleName" : "DOCS-BPI-MIB",
1992
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.1",
1993
+ "status" : "current",
1994
+ "description" :
1995
+ """This table describes the mapping of IP multicast address prefixes to
1996
+ multicast SIDs on each CMTS MAC interface.""",
1997
+ }, # table
1998
+ "docsBpiIpMulticastMapEntry" : {
1999
+ "nodetype" : "row",
2000
+ "moduleName" : "DOCS-BPI-MIB",
2001
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.1.1",
2002
+ "create" : "true",
2003
+ "status" : "current",
2004
+ "linkage" : [
2005
+ "ifIndex",
2006
+ "docsBpiIpMulticastAddress",
2007
+ "docsBpiIpMulticastPrefixLength",
2008
+ ],
2009
+ "description" :
2010
+ """Each entry contains objects describing the mapping of one IP
2011
+ multicast address prefix to one multicast SID on one CMTS MAC
2012
+ interface. The CMTS uses the mapping when forwarding downstream IP
2013
+ multicast traffic.""",
2014
+ }, # row
2015
+ "docsBpiIpMulticastAddress" : {
2016
+ "nodetype" : "column",
2017
+ "moduleName" : "DOCS-BPI-MIB",
2018
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.1.1.1",
2019
+ "status" : "current",
2020
+ "syntax" : {
2021
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
2022
+ },
2023
+ "access" : "noaccess",
2024
+ "description" :
2025
+ """This object represents the IP multicast address (prefix) to be
2026
+ mapped by this row, in conjunction with
2027
+ docsBpiIpMulticastPrefixLength.""",
2028
+ }, # column
2029
+ "docsBpiIpMulticastPrefixLength" : {
2030
+ "nodetype" : "column",
2031
+ "moduleName" : "DOCS-BPI-MIB",
2032
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.1.1.2",
2033
+ "status" : "current",
2034
+ "syntax" : {
2035
+ "type" : {
2036
+ "basetype" : "Integer32",
2037
+ "ranges" : [
2038
+ {
2039
+ "min" : "0",
2040
+ "max" : "32"
2041
+ },
2042
+ ],
2043
+ "range" : {
2044
+ "min" : "0",
2045
+ "max" : "32"
2046
+ },
2047
+ },
2048
+ },
2049
+ "access" : "noaccess",
2050
+ "description" :
2051
+ """This object represents the IP multicast address prefix length
2052
+ for this row. The value of this object represents the length in
2053
+ bits of docsBpiIpMulticastAddress for multicast address
2054
+ comparisons, using big-endian ordering. An IP multicast address
2055
+ matches this row if the (docsBpiIpMulticastPrefixLength) most
2056
+ significant bits of the IP multicast address and of the
2057
+ (docsBpiIpMulticastAddress) are identical.
2058
+ This object is similar in usage to an IP address mask. The value
2059
+ 0 corresponds to IP address mask 0.0.0.0, the value 1 corresponds
2060
+ to IP address mask 128.0.0.0, the value 8 corresponds to IP
2061
+ address mask 255.0.0.0, and the value 32 corresponds to IP
2062
+ address mask 255.255.255.255.""",
2063
+ }, # column
2064
+ "docsBpiIpMulticastServiceId" : {
2065
+ "nodetype" : "column",
2066
+ "moduleName" : "DOCS-BPI-MIB",
2067
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.1.1.3",
2068
+ "status" : "current",
2069
+ "syntax" : {
2070
+ "type" : {
2071
+ "basetype" : "Integer32",
2072
+ "ranges" : [
2073
+ {
2074
+ "min" : "8192",
2075
+ "max" : "16368"
2076
+ },
2077
+ ],
2078
+ "range" : {
2079
+ "min" : "8192",
2080
+ "max" : "16368"
2081
+ },
2082
+ },
2083
+ },
2084
+ "access" : "readwrite",
2085
+ "description" :
2086
+ """This object represents the multicast SID to be used in this
2087
+ IP multicast address prefix mapping entry.""",
2088
+ }, # column
2089
+ "docsBpiIpMulticastMapControl" : {
2090
+ "nodetype" : "column",
2091
+ "moduleName" : "DOCS-BPI-MIB",
2092
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.1.1.4",
2093
+ "status" : "current",
2094
+ "syntax" : {
2095
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2096
+ },
2097
+ "access" : "readwrite",
2098
+ "description" :
2099
+ """This object controls and reflects the IP multicast address prefix
2100
+ mapping entry. There is no restriction on the ability to change values
2101
+ in this row while the row is active.""",
2102
+ }, # column
2103
+ "docsBpiMulticastAuthTable" : {
2104
+ "nodetype" : "table",
2105
+ "moduleName" : "DOCS-BPI-MIB",
2106
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.2",
2107
+ "status" : "current",
2108
+ "description" :
2109
+ """This table describes the multicast SID authorization for each
2110
+ CM on each CMTS MAC interface.""",
2111
+ }, # table
2112
+ "docsBpiMulticastAuthEntry" : {
2113
+ "nodetype" : "row",
2114
+ "moduleName" : "DOCS-BPI-MIB",
2115
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.2.1",
2116
+ "create" : "true",
2117
+ "status" : "current",
2118
+ "linkage" : [
2119
+ "ifIndex",
2120
+ "docsBpiMulticastServiceId",
2121
+ "docsBpiMulticastCmMacAddress",
2122
+ ],
2123
+ "description" :
2124
+ """Each entry contains objects describing the key authorization of one
2125
+ cable modem for one multicast SID for one CMTS MAC interface.""",
2126
+ }, # row
2127
+ "docsBpiMulticastServiceId" : {
2128
+ "nodetype" : "column",
2129
+ "moduleName" : "DOCS-BPI-MIB",
2130
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.2.1.1",
2131
+ "status" : "current",
2132
+ "syntax" : {
2133
+ "type" : {
2134
+ "basetype" : "Integer32",
2135
+ "ranges" : [
2136
+ {
2137
+ "min" : "8192",
2138
+ "max" : "16368"
2139
+ },
2140
+ ],
2141
+ "range" : {
2142
+ "min" : "8192",
2143
+ "max" : "16368"
2144
+ },
2145
+ },
2146
+ },
2147
+ "access" : "noaccess",
2148
+ "description" :
2149
+ """This object represents the multicast SID for authorization.""",
2150
+ }, # column
2151
+ "docsBpiMulticastCmMacAddress" : {
2152
+ "nodetype" : "column",
2153
+ "moduleName" : "DOCS-BPI-MIB",
2154
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.2.1.2",
2155
+ "status" : "current",
2156
+ "syntax" : {
2157
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
2158
+ },
2159
+ "access" : "noaccess",
2160
+ "description" :
2161
+ """This object represents the MAC address of the CM to which the
2162
+ multicast SID authorization applies.""",
2163
+ }, # column
2164
+ "docsBpiMulticastAuthControl" : {
2165
+ "nodetype" : "column",
2166
+ "moduleName" : "DOCS-BPI-MIB",
2167
+ "oid" : "1.3.6.1.2.1.10.127.5.1.2.4.2.1.3",
2168
+ "status" : "current",
2169
+ "syntax" : {
2170
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2171
+ },
2172
+ "access" : "readwrite",
2173
+ "description" :
2174
+ """This object controls and reflects the CM authorization for each
2175
+ multicast SID. There is no restriction on the ability to change
2176
+ values in this row while the row is active.""",
2177
+ }, # column
2178
+ "docsBpiNotification" : {
2179
+ "nodetype" : "node",
2180
+ "moduleName" : "DOCS-BPI-MIB",
2181
+ "oid" : "1.3.6.1.2.1.10.127.5.2",
2182
+ }, # node
2183
+ "docsBpiConformance" : {
2184
+ "nodetype" : "node",
2185
+ "moduleName" : "DOCS-BPI-MIB",
2186
+ "oid" : "1.3.6.1.2.1.10.127.5.3",
2187
+ }, # node
2188
+ "docsBpiCompliances" : {
2189
+ "nodetype" : "node",
2190
+ "moduleName" : "DOCS-BPI-MIB",
2191
+ "oid" : "1.3.6.1.2.1.10.127.5.3.1",
2192
+ }, # node
2193
+ "docsBpiGroups" : {
2194
+ "nodetype" : "node",
2195
+ "moduleName" : "DOCS-BPI-MIB",
2196
+ "oid" : "1.3.6.1.2.1.10.127.5.3.2",
2197
+ }, # node
2198
+ }, # nodes
2199
+
2200
+ "groups" : {
2201
+ "docsBpiCmGroup" : {
2202
+ "nodetype" : "group",
2203
+ "moduleName" : "DOCS-BPI-MIB",
2204
+ "oid" : "1.3.6.1.2.1.10.127.5.3.2.1",
2205
+ "status" : "current",
2206
+ "members" : {
2207
+ "docsBpiCmPrivacyEnable" : {
2208
+ "nodetype" : "member",
2209
+ "module" : "DOCS-BPI-MIB"
2210
+ },
2211
+ "docsBpiCmPublicKey" : {
2212
+ "nodetype" : "member",
2213
+ "module" : "DOCS-BPI-MIB"
2214
+ },
2215
+ "docsBpiCmAuthState" : {
2216
+ "nodetype" : "member",
2217
+ "module" : "DOCS-BPI-MIB"
2218
+ },
2219
+ "docsBpiCmAuthKeySequenceNumber" : {
2220
+ "nodetype" : "member",
2221
+ "module" : "DOCS-BPI-MIB"
2222
+ },
2223
+ "docsBpiCmAuthExpires" : {
2224
+ "nodetype" : "member",
2225
+ "module" : "DOCS-BPI-MIB"
2226
+ },
2227
+ "docsBpiCmAuthReset" : {
2228
+ "nodetype" : "member",
2229
+ "module" : "DOCS-BPI-MIB"
2230
+ },
2231
+ "docsBpiCmAuthGraceTime" : {
2232
+ "nodetype" : "member",
2233
+ "module" : "DOCS-BPI-MIB"
2234
+ },
2235
+ "docsBpiCmTEKGraceTime" : {
2236
+ "nodetype" : "member",
2237
+ "module" : "DOCS-BPI-MIB"
2238
+ },
2239
+ "docsBpiCmAuthWaitTimeout" : {
2240
+ "nodetype" : "member",
2241
+ "module" : "DOCS-BPI-MIB"
2242
+ },
2243
+ "docsBpiCmReauthWaitTimeout" : {
2244
+ "nodetype" : "member",
2245
+ "module" : "DOCS-BPI-MIB"
2246
+ },
2247
+ "docsBpiCmOpWaitTimeout" : {
2248
+ "nodetype" : "member",
2249
+ "module" : "DOCS-BPI-MIB"
2250
+ },
2251
+ "docsBpiCmRekeyWaitTimeout" : {
2252
+ "nodetype" : "member",
2253
+ "module" : "DOCS-BPI-MIB"
2254
+ },
2255
+ "docsBpiCmAuthRejectWaitTimeout" : {
2256
+ "nodetype" : "member",
2257
+ "module" : "DOCS-BPI-MIB"
2258
+ },
2259
+ "docsBpiCmAuthRequests" : {
2260
+ "nodetype" : "member",
2261
+ "module" : "DOCS-BPI-MIB"
2262
+ },
2263
+ "docsBpiCmAuthReplies" : {
2264
+ "nodetype" : "member",
2265
+ "module" : "DOCS-BPI-MIB"
2266
+ },
2267
+ "docsBpiCmAuthRejects" : {
2268
+ "nodetype" : "member",
2269
+ "module" : "DOCS-BPI-MIB"
2270
+ },
2271
+ "docsBpiCmAuthInvalids" : {
2272
+ "nodetype" : "member",
2273
+ "module" : "DOCS-BPI-MIB"
2274
+ },
2275
+ "docsBpiCmAuthRejectErrorCode" : {
2276
+ "nodetype" : "member",
2277
+ "module" : "DOCS-BPI-MIB"
2278
+ },
2279
+ "docsBpiCmAuthRejectErrorString" : {
2280
+ "nodetype" : "member",
2281
+ "module" : "DOCS-BPI-MIB"
2282
+ },
2283
+ "docsBpiCmAuthInvalidErrorCode" : {
2284
+ "nodetype" : "member",
2285
+ "module" : "DOCS-BPI-MIB"
2286
+ },
2287
+ "docsBpiCmAuthInvalidErrorString" : {
2288
+ "nodetype" : "member",
2289
+ "module" : "DOCS-BPI-MIB"
2290
+ },
2291
+ "docsBpiCmTEKPrivacyEnable" : {
2292
+ "nodetype" : "member",
2293
+ "module" : "DOCS-BPI-MIB"
2294
+ },
2295
+ "docsBpiCmTEKState" : {
2296
+ "nodetype" : "member",
2297
+ "module" : "DOCS-BPI-MIB"
2298
+ },
2299
+ "docsBpiCmTEKExpiresOld" : {
2300
+ "nodetype" : "member",
2301
+ "module" : "DOCS-BPI-MIB"
2302
+ },
2303
+ "docsBpiCmTEKExpiresNew" : {
2304
+ "nodetype" : "member",
2305
+ "module" : "DOCS-BPI-MIB"
2306
+ },
2307
+ "docsBpiCmTEKKeyRequests" : {
2308
+ "nodetype" : "member",
2309
+ "module" : "DOCS-BPI-MIB"
2310
+ },
2311
+ "docsBpiCmTEKKeyReplies" : {
2312
+ "nodetype" : "member",
2313
+ "module" : "DOCS-BPI-MIB"
2314
+ },
2315
+ "docsBpiCmTEKKeyRejects" : {
2316
+ "nodetype" : "member",
2317
+ "module" : "DOCS-BPI-MIB"
2318
+ },
2319
+ "docsBpiCmTEKInvalids" : {
2320
+ "nodetype" : "member",
2321
+ "module" : "DOCS-BPI-MIB"
2322
+ },
2323
+ "docsBpiCmTEKAuthPends" : {
2324
+ "nodetype" : "member",
2325
+ "module" : "DOCS-BPI-MIB"
2326
+ },
2327
+ "docsBpiCmTEKKeyRejectErrorCode" : {
2328
+ "nodetype" : "member",
2329
+ "module" : "DOCS-BPI-MIB"
2330
+ },
2331
+ "docsBpiCmTEKKeyRejectErrorString" : {
2332
+ "nodetype" : "member",
2333
+ "module" : "DOCS-BPI-MIB"
2334
+ },
2335
+ "docsBpiCmTEKInvalidErrorCode" : {
2336
+ "nodetype" : "member",
2337
+ "module" : "DOCS-BPI-MIB"
2338
+ },
2339
+ "docsBpiCmTEKInvalidErrorString" : {
2340
+ "nodetype" : "member",
2341
+ "module" : "DOCS-BPI-MIB"
2342
+ },
2343
+ }, # members
2344
+ "description" :
2345
+ """This collection of objects provides CM BPI status and control.""",
2346
+ }, # group
2347
+ "docsBpiCmtsGroup" : {
2348
+ "nodetype" : "group",
2349
+ "moduleName" : "DOCS-BPI-MIB",
2350
+ "oid" : "1.3.6.1.2.1.10.127.5.3.2.2",
2351
+ "status" : "current",
2352
+ "members" : {
2353
+ "docsBpiCmtsDefaultAuthLifetime" : {
2354
+ "nodetype" : "member",
2355
+ "module" : "DOCS-BPI-MIB"
2356
+ },
2357
+ "docsBpiCmtsDefaultTEKLifetime" : {
2358
+ "nodetype" : "member",
2359
+ "module" : "DOCS-BPI-MIB"
2360
+ },
2361
+ "docsBpiCmtsAuthRequests" : {
2362
+ "nodetype" : "member",
2363
+ "module" : "DOCS-BPI-MIB"
2364
+ },
2365
+ "docsBpiCmtsAuthReplies" : {
2366
+ "nodetype" : "member",
2367
+ "module" : "DOCS-BPI-MIB"
2368
+ },
2369
+ "docsBpiCmtsAuthRejects" : {
2370
+ "nodetype" : "member",
2371
+ "module" : "DOCS-BPI-MIB"
2372
+ },
2373
+ "docsBpiCmtsAuthInvalids" : {
2374
+ "nodetype" : "member",
2375
+ "module" : "DOCS-BPI-MIB"
2376
+ },
2377
+ "docsBpiCmtsAuthCmPublicKey" : {
2378
+ "nodetype" : "member",
2379
+ "module" : "DOCS-BPI-MIB"
2380
+ },
2381
+ "docsBpiCmtsAuthCmKeySequenceNumber" : {
2382
+ "nodetype" : "member",
2383
+ "module" : "DOCS-BPI-MIB"
2384
+ },
2385
+ "docsBpiCmtsAuthCmExpires" : {
2386
+ "nodetype" : "member",
2387
+ "module" : "DOCS-BPI-MIB"
2388
+ },
2389
+ "docsBpiCmtsAuthCmLifetime" : {
2390
+ "nodetype" : "member",
2391
+ "module" : "DOCS-BPI-MIB"
2392
+ },
2393
+ "docsBpiCmtsAuthCmGraceTime" : {
2394
+ "nodetype" : "member",
2395
+ "module" : "DOCS-BPI-MIB"
2396
+ },
2397
+ "docsBpiCmtsAuthCmReset" : {
2398
+ "nodetype" : "member",
2399
+ "module" : "DOCS-BPI-MIB"
2400
+ },
2401
+ "docsBpiCmtsAuthCmRequests" : {
2402
+ "nodetype" : "member",
2403
+ "module" : "DOCS-BPI-MIB"
2404
+ },
2405
+ "docsBpiCmtsAuthCmReplies" : {
2406
+ "nodetype" : "member",
2407
+ "module" : "DOCS-BPI-MIB"
2408
+ },
2409
+ "docsBpiCmtsAuthCmRejects" : {
2410
+ "nodetype" : "member",
2411
+ "module" : "DOCS-BPI-MIB"
2412
+ },
2413
+ "docsBpiCmtsAuthCmInvalids" : {
2414
+ "nodetype" : "member",
2415
+ "module" : "DOCS-BPI-MIB"
2416
+ },
2417
+ "docsBpiCmtsAuthRejectErrorCode" : {
2418
+ "nodetype" : "member",
2419
+ "module" : "DOCS-BPI-MIB"
2420
+ },
2421
+ "docsBpiCmtsAuthRejectErrorString" : {
2422
+ "nodetype" : "member",
2423
+ "module" : "DOCS-BPI-MIB"
2424
+ },
2425
+ "docsBpiCmtsAuthInvalidErrorCode" : {
2426
+ "nodetype" : "member",
2427
+ "module" : "DOCS-BPI-MIB"
2428
+ },
2429
+ "docsBpiCmtsAuthInvalidErrorString" : {
2430
+ "nodetype" : "member",
2431
+ "module" : "DOCS-BPI-MIB"
2432
+ },
2433
+ "docsBpiCmtsTEKLifetime" : {
2434
+ "nodetype" : "member",
2435
+ "module" : "DOCS-BPI-MIB"
2436
+ },
2437
+ "docsBpiCmtsTEKGraceTime" : {
2438
+ "nodetype" : "member",
2439
+ "module" : "DOCS-BPI-MIB"
2440
+ },
2441
+ "docsBpiCmtsTEKExpiresOld" : {
2442
+ "nodetype" : "member",
2443
+ "module" : "DOCS-BPI-MIB"
2444
+ },
2445
+ "docsBpiCmtsTEKExpiresNew" : {
2446
+ "nodetype" : "member",
2447
+ "module" : "DOCS-BPI-MIB"
2448
+ },
2449
+ "docsBpiCmtsTEKReset" : {
2450
+ "nodetype" : "member",
2451
+ "module" : "DOCS-BPI-MIB"
2452
+ },
2453
+ "docsBpiCmtsKeyRequests" : {
2454
+ "nodetype" : "member",
2455
+ "module" : "DOCS-BPI-MIB"
2456
+ },
2457
+ "docsBpiCmtsKeyReplies" : {
2458
+ "nodetype" : "member",
2459
+ "module" : "DOCS-BPI-MIB"
2460
+ },
2461
+ "docsBpiCmtsKeyRejects" : {
2462
+ "nodetype" : "member",
2463
+ "module" : "DOCS-BPI-MIB"
2464
+ },
2465
+ "docsBpiCmtsTEKInvalids" : {
2466
+ "nodetype" : "member",
2467
+ "module" : "DOCS-BPI-MIB"
2468
+ },
2469
+ "docsBpiCmtsKeyRejectErrorCode" : {
2470
+ "nodetype" : "member",
2471
+ "module" : "DOCS-BPI-MIB"
2472
+ },
2473
+ "docsBpiCmtsKeyRejectErrorString" : {
2474
+ "nodetype" : "member",
2475
+ "module" : "DOCS-BPI-MIB"
2476
+ },
2477
+ "docsBpiCmtsTEKInvalidErrorCode" : {
2478
+ "nodetype" : "member",
2479
+ "module" : "DOCS-BPI-MIB"
2480
+ },
2481
+ "docsBpiCmtsTEKInvalidErrorString" : {
2482
+ "nodetype" : "member",
2483
+ "module" : "DOCS-BPI-MIB"
2484
+ },
2485
+ "docsBpiIpMulticastServiceId" : {
2486
+ "nodetype" : "member",
2487
+ "module" : "DOCS-BPI-MIB"
2488
+ },
2489
+ "docsBpiIpMulticastMapControl" : {
2490
+ "nodetype" : "member",
2491
+ "module" : "DOCS-BPI-MIB"
2492
+ },
2493
+ "docsBpiMulticastAuthControl" : {
2494
+ "nodetype" : "member",
2495
+ "module" : "DOCS-BPI-MIB"
2496
+ },
2497
+ }, # members
2498
+ "description" :
2499
+ """This collection of objects provides CMTS BPI status and control.""",
2500
+ }, # group
2501
+ "docsBpiObsoleteObjectsGroup" : {
2502
+ "nodetype" : "group",
2503
+ "moduleName" : "DOCS-BPI-MIB",
2504
+ "oid" : "1.3.6.1.2.1.10.127.5.3.2.3",
2505
+ "status" : "obsolete",
2506
+ "members" : {
2507
+ "docsBpiCmtsDefaultAuthGraceTime" : {
2508
+ "nodetype" : "member",
2509
+ "module" : "DOCS-BPI-MIB"
2510
+ },
2511
+ "docsBpiCmtsDefaultTEKGraceTime" : {
2512
+ "nodetype" : "member",
2513
+ "module" : "DOCS-BPI-MIB"
2514
+ },
2515
+ }, # members
2516
+ "description" :
2517
+ """This is a collection of obsolete BPI objects.""",
2518
+ }, # group
2519
+ }, # groups
2520
+
2521
+ "compliances" : {
2522
+ "docsBpiBasicCompliance" : {
2523
+ "nodetype" : "compliance",
2524
+ "moduleName" : "DOCS-BPI-MIB",
2525
+ "oid" : "1.3.6.1.2.1.10.127.5.3.1.1",
2526
+ "status" : "current",
2527
+ "description" :
2528
+ """This is the compliance statement for devices which implement the
2529
+ DOCSIS Baseline Privacy Interface.""",
2530
+ "requires" : {
2531
+ "docsBpiCmGroup" : {
2532
+ "nodetype" : "optional",
2533
+ "module" : "DOCS-BPI-MIB",
2534
+ "description" :
2535
+ """This group is implemented only in CMs, not in CMTSs.""",
2536
+ },
2537
+ "docsBpiCmtsGroup" : {
2538
+ "nodetype" : "optional",
2539
+ "module" : "DOCS-BPI-MIB",
2540
+ "description" :
2541
+ """This group is implemented only in CMTSs, not in CMs.""",
2542
+ },
2543
+ }, # requires
2544
+ "refinements" : {
2545
+ "docsBpiCmtsDefaultAuthLifetime" : {
2546
+ "module" : "DOCS-BPI-MIB",
2547
+ "syntax" : {
2548
+ "type" : {
2549
+ "basetype" : "Integer32",
2550
+ "ranges" : [
2551
+ {
2552
+ "min" : "86400",
2553
+ "max" : "6048000"
2554
+ },
2555
+ ],
2556
+ "range" : {
2557
+ "min" : "86400",
2558
+ "max" : "6048000"
2559
+ },
2560
+ },
2561
+ }, # syntax
2562
+ "description" :
2563
+ """The refined range corresponds to the minimum and maximum values in
2564
+ operational networks, according to Appendix A.2 in [18].""",
2565
+ },
2566
+ "docsBpiCmtsDefaultTEKLifetime" : {
2567
+ "module" : "DOCS-BPI-MIB",
2568
+ "syntax" : {
2569
+ "type" : {
2570
+ "basetype" : "Integer32",
2571
+ "ranges" : [
2572
+ {
2573
+ "min" : "1800",
2574
+ "max" : "604800"
2575
+ },
2576
+ ],
2577
+ "range" : {
2578
+ "min" : "1800",
2579
+ "max" : "604800"
2580
+ },
2581
+ },
2582
+ }, # syntax
2583
+ "description" :
2584
+ """The refined range corresponds to the minimum and maximum values in
2585
+ operational networks, according to Appendix A.2 in [18].""",
2586
+ },
2587
+ "docsBpiCmtsAuthCmLifetime" : {
2588
+ "module" : "DOCS-BPI-MIB",
2589
+ "syntax" : {
2590
+ "type" : {
2591
+ "basetype" : "Integer32",
2592
+ "ranges" : [
2593
+ {
2594
+ "min" : "86400",
2595
+ "max" : "6048000"
2596
+ },
2597
+ ],
2598
+ "range" : {
2599
+ "min" : "86400",
2600
+ "max" : "6048000"
2601
+ },
2602
+ },
2603
+ }, # syntax
2604
+ "description" :
2605
+ """The refined range corresponds to the minimum and maximum values in
2606
+ operational networks, according to Appendix A.2 in [18].""",
2607
+ },
2608
+ "docsBpiCmtsTEKLifetime" : {
2609
+ "module" : "DOCS-BPI-MIB",
2610
+ "syntax" : {
2611
+ "type" : {
2612
+ "basetype" : "Integer32",
2613
+ "ranges" : [
2614
+ {
2615
+ "min" : "1800",
2616
+ "max" : "604800"
2617
+ },
2618
+ ],
2619
+ "range" : {
2620
+ "min" : "1800",
2621
+ "max" : "604800"
2622
+ },
2623
+ },
2624
+ }, # syntax
2625
+ "description" :
2626
+ """The refined range corresponds to the minimum and maximum values in
2627
+ operational networks, according to Appendix A.2 in [18].""",
2628
+ },
2629
+ }, # refinements
2630
+
2631
+ }, # compliance
2632
+ }, # compliances
2633
+
2634
+ }