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,1202 @@
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 SNMP-VIEW-BASED-ACM-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SNMP-VIEW-BASED-ACM-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
11
+
12
+ "SNMP-VIEW-BASED-ACM-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """SNMPv3 Working Group""",
17
+ "contact" :
18
+ """WG-email: snmpv3@lists.tislabs.com
19
+ Subscribe: majordomo@lists.tislabs.com
20
+ In message body: subscribe snmpv3
21
+
22
+ Co-Chair: Russ Mundy
23
+ Network Associates Laboratories
24
+ postal: 15204 Omega Drive, Suite 300
25
+ Rockville, MD 20850-4601
26
+ USA
27
+ email: mundy@tislabs.com
28
+ phone: +1 301-947-7107
29
+
30
+ Co-Chair: David Harrington
31
+ Enterasys Networks
32
+ Postal: 35 Industrial Way
33
+ P. O. Box 5004
34
+ Rochester, New Hampshire 03866-5005
35
+ USA
36
+ EMail: dbh@enterasys.com
37
+ Phone: +1 603-337-2614
38
+
39
+ Co-editor: Bert Wijnen
40
+ Lucent Technologies
41
+ postal: Schagen 33
42
+ 3461 GL Linschoten
43
+ Netherlands
44
+ email: bwijnen@lucent.com
45
+ phone: +31-348-480-685
46
+
47
+ Co-editor: Randy Presuhn
48
+ BMC Software, Inc.
49
+
50
+
51
+
52
+ postal: 2141 North First Street
53
+ San Jose, CA 95131
54
+ USA
55
+ email: randy_presuhn@bmc.com
56
+ phone: +1 408-546-1006
57
+
58
+ Co-editor: Keith McCloghrie
59
+ Cisco Systems, Inc.
60
+ postal: 170 West Tasman Drive
61
+ San Jose, CA 95134-1706
62
+ USA
63
+ email: kzm@cisco.com
64
+ phone: +1-408-526-5260""",
65
+ "description" :
66
+ """The management information definitions for the
67
+ View-based Access Control Model for SNMP.
68
+
69
+ Copyright (C) The Internet Society (2002). This
70
+ version of this MIB module is part of RFC 3415;
71
+ see the RFC itself for full legal notices.""",
72
+ "revisions" : (
73
+ {
74
+ "date" : "2002-10-16 00:00",
75
+ "description" :
76
+ """Clarifications, published as RFC3415""",
77
+ },
78
+ {
79
+ "date" : "1999-01-20 00:00",
80
+ "description" :
81
+ """Clarifications, published as RFC2575""",
82
+ },
83
+ {
84
+ "date" : "1997-11-20 00:00",
85
+ "description" :
86
+ """Initial version, published as RFC2275""",
87
+ },
88
+ ),
89
+ "identity node" : "snmpVacmMIB",
90
+ },
91
+
92
+ "imports" : (
93
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
94
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
95
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
96
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
97
+ {"module" : "SNMPv2-SMI", "name" : "snmpModules"},
98
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
99
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
100
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
101
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
102
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpSecurityLevel"},
103
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpSecurityModel"},
104
+ ),
105
+
106
+ "nodes" : {
107
+ "snmpVacmMIB" : {
108
+ "nodetype" : "node",
109
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
110
+ "oid" : "1.3.6.1.6.3.16",
111
+ "status" : "current",
112
+ }, # node
113
+ "vacmMIBObjects" : {
114
+ "nodetype" : "node",
115
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
116
+ "oid" : "1.3.6.1.6.3.16.1",
117
+ }, # node
118
+ "vacmContextTable" : {
119
+ "nodetype" : "table",
120
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
121
+ "oid" : "1.3.6.1.6.3.16.1.1",
122
+ "status" : "current",
123
+ "description" :
124
+ """The table of locally available contexts.
125
+
126
+ This table provides information to SNMP Command
127
+
128
+
129
+
130
+ Generator applications so that they can properly
131
+ configure the vacmAccessTable to control access to
132
+ all contexts at the SNMP entity.
133
+
134
+ This table may change dynamically if the SNMP entity
135
+ allows that contexts are added/deleted dynamically
136
+ (for instance when its configuration changes). Such
137
+ changes would happen only if the management
138
+ instrumentation at that SNMP entity recognizes more
139
+ (or fewer) contexts.
140
+
141
+ The presence of entries in this table and of entries
142
+ in the vacmAccessTable are independent. That is, a
143
+ context identified by an entry in this table is not
144
+ necessarily referenced by any entries in the
145
+ vacmAccessTable; and the context(s) referenced by an
146
+ entry in the vacmAccessTable does not necessarily
147
+ currently exist and thus need not be identified by an
148
+ entry in this table.
149
+
150
+ This table must be made accessible via the default
151
+ context so that Command Responder applications have
152
+ a standard way of retrieving the information.
153
+
154
+ This table is read-only. It cannot be configured via
155
+ SNMP.""",
156
+ }, # table
157
+ "vacmContextEntry" : {
158
+ "nodetype" : "row",
159
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
160
+ "oid" : "1.3.6.1.6.3.16.1.1.1",
161
+ "status" : "current",
162
+ "linkage" : [
163
+ "vacmContextName",
164
+ ],
165
+ "description" :
166
+ """Information about a particular context.""",
167
+ }, # row
168
+ "vacmContextName" : {
169
+ "nodetype" : "column",
170
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
171
+ "oid" : "1.3.6.1.6.3.16.1.1.1.1",
172
+ "status" : "current",
173
+ "syntax" : {
174
+ "type" : {
175
+ "basetype" : "OctetString",
176
+ "parent module" : {
177
+ "name" : "SNMP-FRAMEWORK-MIB",
178
+ "type" : "SnmpAdminString",
179
+ },
180
+ "ranges" : [
181
+ {
182
+ "min" : "0",
183
+ "max" : "32"
184
+ },
185
+ ],
186
+ "range" : {
187
+ "min" : "0",
188
+ "max" : "32"
189
+ },
190
+ },
191
+ },
192
+ "access" : "readonly",
193
+ "description" :
194
+ """A human readable name identifying a particular
195
+ context at a particular SNMP entity.
196
+
197
+ The empty contextName (zero length) represents the
198
+ default context.""",
199
+ }, # column
200
+ "vacmSecurityToGroupTable" : {
201
+ "nodetype" : "table",
202
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
203
+ "oid" : "1.3.6.1.6.3.16.1.2",
204
+ "status" : "current",
205
+ "description" :
206
+ """This table maps a combination of securityModel and
207
+ securityName into a groupName which is used to define
208
+ an access control policy for a group of principals.""",
209
+ }, # table
210
+ "vacmSecurityToGroupEntry" : {
211
+ "nodetype" : "row",
212
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
213
+ "oid" : "1.3.6.1.6.3.16.1.2.1",
214
+ "create" : "true",
215
+ "status" : "current",
216
+ "linkage" : [
217
+ "vacmSecurityModel",
218
+ "vacmSecurityName",
219
+ ],
220
+ "description" :
221
+ """An entry in this table maps the combination of a
222
+ securityModel and securityName into a groupName.""",
223
+ }, # row
224
+ "vacmSecurityModel" : {
225
+ "nodetype" : "column",
226
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
227
+ "oid" : "1.3.6.1.6.3.16.1.2.1.1",
228
+ "status" : "current",
229
+ "syntax" : {
230
+ "type" : {
231
+ "basetype" : "Integer32",
232
+ "parent module" : {
233
+ "name" : "SNMP-FRAMEWORK-MIB",
234
+ "type" : "SnmpSecurityModel",
235
+ },
236
+ "ranges" : [
237
+ {
238
+ "min" : "1",
239
+ "max" : "2147483647"
240
+ },
241
+ ],
242
+ "range" : {
243
+ "min" : "1",
244
+ "max" : "2147483647"
245
+ },
246
+ },
247
+ },
248
+ "access" : "noaccess",
249
+ "description" :
250
+ """The Security Model, by which the vacmSecurityName
251
+ referenced by this entry is provided.
252
+
253
+
254
+
255
+ Note, this object may not take the 'any' (0) value.""",
256
+ }, # column
257
+ "vacmSecurityName" : {
258
+ "nodetype" : "column",
259
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
260
+ "oid" : "1.3.6.1.6.3.16.1.2.1.2",
261
+ "status" : "current",
262
+ "syntax" : {
263
+ "type" : {
264
+ "basetype" : "OctetString",
265
+ "parent module" : {
266
+ "name" : "SNMP-FRAMEWORK-MIB",
267
+ "type" : "SnmpAdminString",
268
+ },
269
+ "ranges" : [
270
+ {
271
+ "min" : "1",
272
+ "max" : "32"
273
+ },
274
+ ],
275
+ "range" : {
276
+ "min" : "1",
277
+ "max" : "32"
278
+ },
279
+ },
280
+ },
281
+ "access" : "noaccess",
282
+ "description" :
283
+ """The securityName for the principal, represented in a
284
+ Security Model independent format, which is mapped by
285
+ this entry to a groupName.""",
286
+ }, # column
287
+ "vacmGroupName" : {
288
+ "nodetype" : "column",
289
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
290
+ "oid" : "1.3.6.1.6.3.16.1.2.1.3",
291
+ "status" : "current",
292
+ "syntax" : {
293
+ "type" : {
294
+ "basetype" : "OctetString",
295
+ "parent module" : {
296
+ "name" : "SNMP-FRAMEWORK-MIB",
297
+ "type" : "SnmpAdminString",
298
+ },
299
+ "ranges" : [
300
+ {
301
+ "min" : "1",
302
+ "max" : "32"
303
+ },
304
+ ],
305
+ "range" : {
306
+ "min" : "1",
307
+ "max" : "32"
308
+ },
309
+ },
310
+ },
311
+ "access" : "readwrite",
312
+ "description" :
313
+ """The name of the group to which this entry (e.g., the
314
+ combination of securityModel and securityName)
315
+ belongs.
316
+
317
+ This groupName is used as index into the
318
+ vacmAccessTable to select an access control policy.
319
+ However, a value in this table does not imply that an
320
+ instance with the value exists in table vacmAccesTable.""",
321
+ }, # column
322
+ "vacmSecurityToGroupStorageType" : {
323
+ "nodetype" : "column",
324
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
325
+ "oid" : "1.3.6.1.6.3.16.1.2.1.4",
326
+ "status" : "current",
327
+ "syntax" : {
328
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
329
+ },
330
+ "access" : "readwrite",
331
+ "default" : "nonVolatile",
332
+ "description" :
333
+ """The storage type for this conceptual row.
334
+ Conceptual rows having the value 'permanent' need not
335
+ allow write-access to any columnar objects in the row.""",
336
+ }, # column
337
+ "vacmSecurityToGroupStatus" : {
338
+ "nodetype" : "column",
339
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
340
+ "oid" : "1.3.6.1.6.3.16.1.2.1.5",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
344
+ },
345
+ "access" : "readwrite",
346
+ "description" :
347
+ """The status of this conceptual row.
348
+
349
+ Until instances of all corresponding columns are
350
+ appropriately configured, the value of the
351
+
352
+
353
+
354
+ corresponding instance of the vacmSecurityToGroupStatus
355
+ column is 'notReady'.
356
+
357
+ In particular, a newly created row cannot be made
358
+ active until a value has been set for vacmGroupName.
359
+
360
+ The RowStatus TC [RFC2579] requires that this
361
+ DESCRIPTION clause states under which circumstances
362
+ other objects in this row can be modified:
363
+
364
+ The value of this object has no effect on whether
365
+ other objects in this conceptual row can be modified.""",
366
+ }, # column
367
+ "vacmAccessTable" : {
368
+ "nodetype" : "table",
369
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
370
+ "oid" : "1.3.6.1.6.3.16.1.4",
371
+ "status" : "current",
372
+ "description" :
373
+ """The table of access rights for groups.
374
+
375
+ Each entry is indexed by a groupName, a contextPrefix,
376
+ a securityModel and a securityLevel. To determine
377
+ whether access is allowed, one entry from this table
378
+ needs to be selected and the proper viewName from that
379
+ entry must be used for access control checking.
380
+
381
+ To select the proper entry, follow these steps:
382
+
383
+ 1) the set of possible matches is formed by the
384
+ intersection of the following sets of entries:
385
+
386
+ the set of entries with identical vacmGroupName
387
+ the union of these two sets:
388
+ - the set with identical vacmAccessContextPrefix
389
+ - the set of entries with vacmAccessContextMatch
390
+ value of 'prefix' and matching
391
+ vacmAccessContextPrefix
392
+ intersected with the union of these two sets:
393
+ - the set of entries with identical
394
+ vacmSecurityModel
395
+ - the set of entries with vacmSecurityModel
396
+ value of 'any'
397
+ intersected with the set of entries with
398
+ vacmAccessSecurityLevel value less than or equal
399
+ to the requested securityLevel
400
+
401
+
402
+
403
+ 2) if this set has only one member, we're done
404
+ otherwise, it comes down to deciding how to weight
405
+ the preferences between ContextPrefixes,
406
+ SecurityModels, and SecurityLevels as follows:
407
+ a) if the subset of entries with securityModel
408
+ matching the securityModel in the message is
409
+ not empty, then discard the rest.
410
+ b) if the subset of entries with
411
+ vacmAccessContextPrefix matching the contextName
412
+ in the message is not empty,
413
+ then discard the rest
414
+ c) discard all entries with ContextPrefixes shorter
415
+ than the longest one remaining in the set
416
+ d) select the entry with the highest securityLevel
417
+
418
+ Please note that for securityLevel noAuthNoPriv, all
419
+ groups are really equivalent since the assumption that
420
+ the securityName has been authenticated does not hold.""",
421
+ }, # table
422
+ "vacmAccessEntry" : {
423
+ "nodetype" : "row",
424
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
425
+ "oid" : "1.3.6.1.6.3.16.1.4.1",
426
+ "create" : "true",
427
+ "status" : "current",
428
+ "linkage" : [
429
+ "vacmGroupName",
430
+ "vacmAccessContextPrefix",
431
+ "vacmAccessSecurityModel",
432
+ "vacmAccessSecurityLevel",
433
+ ],
434
+ "description" :
435
+ """An access right configured in the Local Configuration
436
+ Datastore (LCD) authorizing access to an SNMP context.
437
+
438
+ Entries in this table can use an instance value for
439
+ object vacmGroupName even if no entry in table
440
+ vacmAccessSecurityToGroupTable has a corresponding
441
+ value for object vacmGroupName.""",
442
+ }, # row
443
+ "vacmAccessContextPrefix" : {
444
+ "nodetype" : "column",
445
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
446
+ "oid" : "1.3.6.1.6.3.16.1.4.1.1",
447
+ "status" : "current",
448
+ "syntax" : {
449
+ "type" : {
450
+ "basetype" : "OctetString",
451
+ "parent module" : {
452
+ "name" : "SNMP-FRAMEWORK-MIB",
453
+ "type" : "SnmpAdminString",
454
+ },
455
+ "ranges" : [
456
+ {
457
+ "min" : "0",
458
+ "max" : "32"
459
+ },
460
+ ],
461
+ "range" : {
462
+ "min" : "0",
463
+ "max" : "32"
464
+ },
465
+ },
466
+ },
467
+ "access" : "noaccess",
468
+ "description" :
469
+ """In order to gain the access rights allowed by this
470
+ conceptual row, a contextName must match exactly
471
+ (if the value of vacmAccessContextMatch is 'exact')
472
+ or partially (if the value of vacmAccessContextMatch
473
+ is 'prefix') to the value of the instance of this
474
+ object.""",
475
+ }, # column
476
+ "vacmAccessSecurityModel" : {
477
+ "nodetype" : "column",
478
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
479
+ "oid" : "1.3.6.1.6.3.16.1.4.1.2",
480
+ "status" : "current",
481
+ "syntax" : {
482
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpSecurityModel"},
483
+ },
484
+ "access" : "noaccess",
485
+ "description" :
486
+ """In order to gain the access rights allowed by this
487
+ conceptual row, this securityModel must be in use.""",
488
+ }, # column
489
+ "vacmAccessSecurityLevel" : {
490
+ "nodetype" : "column",
491
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
492
+ "oid" : "1.3.6.1.6.3.16.1.4.1.3",
493
+ "status" : "current",
494
+ "syntax" : {
495
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpSecurityLevel"},
496
+ },
497
+ "access" : "noaccess",
498
+ "description" :
499
+ """The minimum level of security required in order to
500
+ gain the access rights allowed by this conceptual
501
+ row. A securityLevel of noAuthNoPriv is less than
502
+ authNoPriv which in turn is less than authPriv.
503
+
504
+ If multiple entries are equally indexed except for
505
+ this vacmAccessSecurityLevel index, then the entry
506
+ which has the highest value for
507
+ vacmAccessSecurityLevel is selected.""",
508
+ }, # column
509
+ "vacmAccessContextMatch" : {
510
+ "nodetype" : "column",
511
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
512
+ "oid" : "1.3.6.1.6.3.16.1.4.1.4",
513
+ "status" : "current",
514
+ "syntax" : {
515
+ "type" : {
516
+ "basetype" : "Enumeration",
517
+ "exact" : {
518
+ "nodetype" : "namednumber",
519
+ "number" : "1"
520
+ },
521
+ "prefix" : {
522
+ "nodetype" : "namednumber",
523
+ "number" : "2"
524
+ },
525
+ },
526
+ },
527
+ "access" : "readwrite",
528
+ "default" : "exact",
529
+ "description" :
530
+ """If the value of this object is exact(1), then all
531
+ rows where the contextName exactly matches
532
+ vacmAccessContextPrefix are selected.
533
+
534
+ If the value of this object is prefix(2), then all
535
+ rows where the contextName whose starting octets
536
+ exactly match vacmAccessContextPrefix are selected.
537
+ This allows for a simple form of wildcarding.""",
538
+ }, # column
539
+ "vacmAccessReadViewName" : {
540
+ "nodetype" : "column",
541
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
542
+ "oid" : "1.3.6.1.6.3.16.1.4.1.5",
543
+ "status" : "current",
544
+ "syntax" : {
545
+ "type" : {
546
+ "basetype" : "OctetString",
547
+ "parent module" : {
548
+ "name" : "SNMP-FRAMEWORK-MIB",
549
+ "type" : "SnmpAdminString",
550
+ },
551
+ "ranges" : [
552
+ {
553
+ "min" : "0",
554
+ "max" : "32"
555
+ },
556
+ ],
557
+ "range" : {
558
+ "min" : "0",
559
+ "max" : "32"
560
+ },
561
+ },
562
+ },
563
+ "access" : "readwrite",
564
+ "default" : "",
565
+ "description" :
566
+ """The value of an instance of this object identifies
567
+ the MIB view of the SNMP context to which this
568
+ conceptual row authorizes read access.
569
+
570
+ The identified MIB view is that one for which the
571
+ vacmViewTreeFamilyViewName has the same value as the
572
+ instance of this object; if the value is the empty
573
+ string or if there is no active MIB view having this
574
+ value of vacmViewTreeFamilyViewName, then no access
575
+ is granted.""",
576
+ }, # column
577
+ "vacmAccessWriteViewName" : {
578
+ "nodetype" : "column",
579
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
580
+ "oid" : "1.3.6.1.6.3.16.1.4.1.6",
581
+ "status" : "current",
582
+ "syntax" : {
583
+ "type" : {
584
+ "basetype" : "OctetString",
585
+ "parent module" : {
586
+ "name" : "SNMP-FRAMEWORK-MIB",
587
+ "type" : "SnmpAdminString",
588
+ },
589
+ "ranges" : [
590
+ {
591
+ "min" : "0",
592
+ "max" : "32"
593
+ },
594
+ ],
595
+ "range" : {
596
+ "min" : "0",
597
+ "max" : "32"
598
+ },
599
+ },
600
+ },
601
+ "access" : "readwrite",
602
+ "default" : "",
603
+ "description" :
604
+ """The value of an instance of this object identifies
605
+ the MIB view of the SNMP context to which this
606
+ conceptual row authorizes write access.
607
+
608
+ The identified MIB view is that one for which the
609
+ vacmViewTreeFamilyViewName has the same value as the
610
+ instance of this object; if the value is the empty
611
+ string or if there is no active MIB view having this
612
+ value of vacmViewTreeFamilyViewName, then no access
613
+ is granted.""",
614
+ }, # column
615
+ "vacmAccessNotifyViewName" : {
616
+ "nodetype" : "column",
617
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
618
+ "oid" : "1.3.6.1.6.3.16.1.4.1.7",
619
+ "status" : "current",
620
+ "syntax" : {
621
+ "type" : {
622
+ "basetype" : "OctetString",
623
+ "parent module" : {
624
+ "name" : "SNMP-FRAMEWORK-MIB",
625
+ "type" : "SnmpAdminString",
626
+ },
627
+ "ranges" : [
628
+ {
629
+ "min" : "0",
630
+ "max" : "32"
631
+ },
632
+ ],
633
+ "range" : {
634
+ "min" : "0",
635
+ "max" : "32"
636
+ },
637
+ },
638
+ },
639
+ "access" : "readwrite",
640
+ "default" : "",
641
+ "description" :
642
+ """The value of an instance of this object identifies
643
+ the MIB view of the SNMP context to which this
644
+ conceptual row authorizes access for notifications.
645
+
646
+ The identified MIB view is that one for which the
647
+ vacmViewTreeFamilyViewName has the same value as the
648
+ instance of this object; if the value is the empty
649
+ string or if there is no active MIB view having this
650
+ value of vacmViewTreeFamilyViewName, then no access
651
+ is granted.""",
652
+ }, # column
653
+ "vacmAccessStorageType" : {
654
+ "nodetype" : "column",
655
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
656
+ "oid" : "1.3.6.1.6.3.16.1.4.1.8",
657
+ "status" : "current",
658
+ "syntax" : {
659
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
660
+ },
661
+ "access" : "readwrite",
662
+ "default" : "nonVolatile",
663
+ "description" :
664
+ """The storage type for this conceptual row.
665
+
666
+ Conceptual rows having the value 'permanent' need not
667
+ allow write-access to any columnar objects in the row.""",
668
+ }, # column
669
+ "vacmAccessStatus" : {
670
+ "nodetype" : "column",
671
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
672
+ "oid" : "1.3.6.1.6.3.16.1.4.1.9",
673
+ "status" : "current",
674
+ "syntax" : {
675
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
676
+ },
677
+ "access" : "readwrite",
678
+ "description" :
679
+ """The status of this conceptual row.
680
+
681
+ The RowStatus TC [RFC2579] requires that this
682
+ DESCRIPTION clause states under which circumstances
683
+ other objects in this row can be modified:
684
+
685
+ The value of this object has no effect on whether
686
+ other objects in this conceptual row can be modified.""",
687
+ }, # column
688
+ "vacmMIBViews" : {
689
+ "nodetype" : "node",
690
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
691
+ "oid" : "1.3.6.1.6.3.16.1.5",
692
+ }, # node
693
+ "vacmViewSpinLock" : {
694
+ "nodetype" : "scalar",
695
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
696
+ "oid" : "1.3.6.1.6.3.16.1.5.1",
697
+ "status" : "current",
698
+ "syntax" : {
699
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
700
+ },
701
+ "access" : "readwrite",
702
+ "description" :
703
+ """An advisory lock used to allow cooperating SNMP
704
+ Command Generator applications to coordinate their
705
+ use of the Set operation in creating or modifying
706
+ views.
707
+
708
+ When creating a new view or altering an existing
709
+ view, it is important to understand the potential
710
+ interactions with other uses of the view. The
711
+ vacmViewSpinLock should be retrieved. The name of
712
+ the view to be created should be determined to be
713
+ unique by the SNMP Command Generator application by
714
+ consulting the vacmViewTreeFamilyTable. Finally,
715
+ the named view may be created (Set), including the
716
+ advisory lock.
717
+ If another SNMP Command Generator application has
718
+ altered the views in the meantime, then the spin
719
+ lock's value will have changed, and so this creation
720
+ will fail because it will specify the wrong value for
721
+ the spin lock.
722
+
723
+ Since this is an advisory lock, the use of this lock
724
+ is not enforced.""",
725
+ }, # scalar
726
+ "vacmViewTreeFamilyTable" : {
727
+ "nodetype" : "table",
728
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
729
+ "oid" : "1.3.6.1.6.3.16.1.5.2",
730
+ "status" : "current",
731
+ "description" :
732
+ """Locally held information about families of subtrees
733
+ within MIB views.
734
+
735
+ Each MIB view is defined by two sets of view subtrees:
736
+ - the included view subtrees, and
737
+ - the excluded view subtrees.
738
+ Every such view subtree, both the included and the
739
+
740
+
741
+
742
+ excluded ones, is defined in this table.
743
+
744
+ To determine if a particular object instance is in
745
+ a particular MIB view, compare the object instance's
746
+ OBJECT IDENTIFIER with each of the MIB view's active
747
+ entries in this table. If none match, then the
748
+ object instance is not in the MIB view. If one or
749
+ more match, then the object instance is included in,
750
+ or excluded from, the MIB view according to the
751
+ value of vacmViewTreeFamilyType in the entry whose
752
+ value of vacmViewTreeFamilySubtree has the most
753
+ sub-identifiers. If multiple entries match and have
754
+ the same number of sub-identifiers (when wildcarding
755
+ is specified with the value of vacmViewTreeFamilyMask),
756
+ then the lexicographically greatest instance of
757
+ vacmViewTreeFamilyType determines the inclusion or
758
+ exclusion.
759
+
760
+ An object instance's OBJECT IDENTIFIER X matches an
761
+ active entry in this table when the number of
762
+ sub-identifiers in X is at least as many as in the
763
+ value of vacmViewTreeFamilySubtree for the entry,
764
+ and each sub-identifier in the value of
765
+ vacmViewTreeFamilySubtree matches its corresponding
766
+ sub-identifier in X. Two sub-identifiers match
767
+ either if the corresponding bit of the value of
768
+ vacmViewTreeFamilyMask for the entry is zero (the
769
+ 'wild card' value), or if they are equal.
770
+
771
+ A 'family' of subtrees is the set of subtrees defined
772
+ by a particular combination of values of
773
+ vacmViewTreeFamilySubtree and vacmViewTreeFamilyMask.
774
+
775
+ In the case where no 'wild card' is defined in the
776
+ vacmViewTreeFamilyMask, the family of subtrees reduces
777
+ to a single subtree.
778
+
779
+ When creating or changing MIB views, an SNMP Command
780
+ Generator application should utilize the
781
+ vacmViewSpinLock to try to avoid collisions. See
782
+ DESCRIPTION clause of vacmViewSpinLock.
783
+
784
+ When creating MIB views, it is strongly advised that
785
+ first the 'excluded' vacmViewTreeFamilyEntries are
786
+ created and then the 'included' entries.
787
+
788
+ When deleting MIB views, it is strongly advised that
789
+ first the 'included' vacmViewTreeFamilyEntries are
790
+
791
+
792
+
793
+ deleted and then the 'excluded' entries.
794
+
795
+ If a create for an entry for instance-level access
796
+ control is received and the implementation does not
797
+ support instance-level granularity, then an
798
+ inconsistentName error must be returned.""",
799
+ }, # table
800
+ "vacmViewTreeFamilyEntry" : {
801
+ "nodetype" : "row",
802
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
803
+ "oid" : "1.3.6.1.6.3.16.1.5.2.1",
804
+ "create" : "true",
805
+ "status" : "current",
806
+ "linkage" : [
807
+ "vacmViewTreeFamilyViewName",
808
+ "vacmViewTreeFamilySubtree",
809
+ ],
810
+ "description" :
811
+ """Information on a particular family of view subtrees
812
+ included in or excluded from a particular SNMP
813
+ context's MIB view.
814
+
815
+ Implementations must not restrict the number of
816
+ families of view subtrees for a given MIB view,
817
+ except as dictated by resource constraints on the
818
+ overall number of entries in the
819
+ vacmViewTreeFamilyTable.
820
+
821
+ If no conceptual rows exist in this table for a given
822
+ MIB view (viewName), that view may be thought of as
823
+ consisting of the empty set of view subtrees.""",
824
+ }, # row
825
+ "vacmViewTreeFamilyViewName" : {
826
+ "nodetype" : "column",
827
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
828
+ "oid" : "1.3.6.1.6.3.16.1.5.2.1.1",
829
+ "status" : "current",
830
+ "syntax" : {
831
+ "type" : {
832
+ "basetype" : "OctetString",
833
+ "parent module" : {
834
+ "name" : "SNMP-FRAMEWORK-MIB",
835
+ "type" : "SnmpAdminString",
836
+ },
837
+ "ranges" : [
838
+ {
839
+ "min" : "1",
840
+ "max" : "32"
841
+ },
842
+ ],
843
+ "range" : {
844
+ "min" : "1",
845
+ "max" : "32"
846
+ },
847
+ },
848
+ },
849
+ "access" : "noaccess",
850
+ "description" :
851
+ """The human readable name for a family of view subtrees.""",
852
+ }, # column
853
+ "vacmViewTreeFamilySubtree" : {
854
+ "nodetype" : "column",
855
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
856
+ "oid" : "1.3.6.1.6.3.16.1.5.2.1.2",
857
+ "status" : "current",
858
+ "syntax" : {
859
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
860
+ },
861
+ "access" : "noaccess",
862
+ "description" :
863
+ """The MIB subtree which when combined with the
864
+ corresponding instance of vacmViewTreeFamilyMask
865
+ defines a family of view subtrees.""",
866
+ }, # column
867
+ "vacmViewTreeFamilyMask" : {
868
+ "nodetype" : "column",
869
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
870
+ "oid" : "1.3.6.1.6.3.16.1.5.2.1.3",
871
+ "status" : "current",
872
+ "syntax" : {
873
+ "type" : {
874
+ "basetype" : "OctetString",
875
+ "ranges" : [
876
+ {
877
+ "min" : "0",
878
+ "max" : "16"
879
+ },
880
+ ],
881
+ "range" : {
882
+ "min" : "0",
883
+ "max" : "16"
884
+ },
885
+ },
886
+ },
887
+ "access" : "readwrite",
888
+ "default" : "",
889
+ "description" :
890
+ """The bit mask which, in combination with the
891
+ corresponding instance of vacmViewTreeFamilySubtree,
892
+ defines a family of view subtrees.
893
+
894
+ Each bit of this bit mask corresponds to a
895
+ sub-identifier of vacmViewTreeFamilySubtree, with the
896
+ most significant bit of the i-th octet of this octet
897
+ string value (extended if necessary, see below)
898
+ corresponding to the (8*i - 7)-th sub-identifier, and
899
+ the least significant bit of the i-th octet of this
900
+ octet string corresponding to the (8*i)-th
901
+ sub-identifier, where i is in the range 1 through 16.
902
+
903
+ Each bit of this bit mask specifies whether or not
904
+ the corresponding sub-identifiers must match when
905
+ determining if an OBJECT IDENTIFIER is in this
906
+ family of view subtrees; a '1' indicates that an
907
+ exact match must occur; a '0' indicates 'wild card',
908
+ i.e., any sub-identifier value matches.
909
+
910
+ Thus, the OBJECT IDENTIFIER X of an object instance
911
+ is contained in a family of view subtrees if, for
912
+ each sub-identifier of the value of
913
+ vacmViewTreeFamilySubtree, either:
914
+
915
+ the i-th bit of vacmViewTreeFamilyMask is 0, or
916
+
917
+ the i-th sub-identifier of X is equal to the i-th
918
+ sub-identifier of the value of
919
+ vacmViewTreeFamilySubtree.
920
+
921
+ If the value of this bit mask is M bits long and
922
+
923
+
924
+
925
+ there are more than M sub-identifiers in the
926
+ corresponding instance of vacmViewTreeFamilySubtree,
927
+ then the bit mask is extended with 1's to be the
928
+ required length.
929
+
930
+ Note that when the value of this object is the
931
+ zero-length string, this extension rule results in
932
+ a mask of all-1's being used (i.e., no 'wild card'),
933
+ and the family of view subtrees is the one view
934
+ subtree uniquely identified by the corresponding
935
+ instance of vacmViewTreeFamilySubtree.
936
+
937
+ Note that masks of length greater than zero length
938
+ do not need to be supported. In this case this
939
+ object is made read-only.""",
940
+ }, # column
941
+ "vacmViewTreeFamilyType" : {
942
+ "nodetype" : "column",
943
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
944
+ "oid" : "1.3.6.1.6.3.16.1.5.2.1.4",
945
+ "status" : "current",
946
+ "syntax" : {
947
+ "type" : {
948
+ "basetype" : "Enumeration",
949
+ "included" : {
950
+ "nodetype" : "namednumber",
951
+ "number" : "1"
952
+ },
953
+ "excluded" : {
954
+ "nodetype" : "namednumber",
955
+ "number" : "2"
956
+ },
957
+ },
958
+ },
959
+ "access" : "readwrite",
960
+ "default" : "included",
961
+ "description" :
962
+ """Indicates whether the corresponding instances of
963
+ vacmViewTreeFamilySubtree and vacmViewTreeFamilyMask
964
+ define a family of view subtrees which is included in
965
+ or excluded from the MIB view.""",
966
+ }, # column
967
+ "vacmViewTreeFamilyStorageType" : {
968
+ "nodetype" : "column",
969
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
970
+ "oid" : "1.3.6.1.6.3.16.1.5.2.1.5",
971
+ "status" : "current",
972
+ "syntax" : {
973
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
974
+ },
975
+ "access" : "readwrite",
976
+ "default" : "nonVolatile",
977
+ "description" :
978
+ """The storage type for this conceptual row.
979
+
980
+ Conceptual rows having the value 'permanent' need not
981
+ allow write-access to any columnar objects in the row.""",
982
+ }, # column
983
+ "vacmViewTreeFamilyStatus" : {
984
+ "nodetype" : "column",
985
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
986
+ "oid" : "1.3.6.1.6.3.16.1.5.2.1.6",
987
+ "status" : "current",
988
+ "syntax" : {
989
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
990
+ },
991
+ "access" : "readwrite",
992
+ "description" :
993
+ """The status of this conceptual row.
994
+
995
+
996
+
997
+ The RowStatus TC [RFC2579] requires that this
998
+ DESCRIPTION clause states under which circumstances
999
+ other objects in this row can be modified:
1000
+
1001
+ The value of this object has no effect on whether
1002
+ other objects in this conceptual row can be modified.""",
1003
+ }, # column
1004
+ "vacmMIBConformance" : {
1005
+ "nodetype" : "node",
1006
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
1007
+ "oid" : "1.3.6.1.6.3.16.2",
1008
+ }, # node
1009
+ "vacmMIBCompliances" : {
1010
+ "nodetype" : "node",
1011
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
1012
+ "oid" : "1.3.6.1.6.3.16.2.1",
1013
+ }, # node
1014
+ "vacmMIBGroups" : {
1015
+ "nodetype" : "node",
1016
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
1017
+ "oid" : "1.3.6.1.6.3.16.2.2",
1018
+ }, # node
1019
+ }, # nodes
1020
+
1021
+ "groups" : {
1022
+ "vacmBasicGroup" : {
1023
+ "nodetype" : "group",
1024
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
1025
+ "oid" : "1.3.6.1.6.3.16.2.2.1",
1026
+ "status" : "current",
1027
+ "members" : {
1028
+ "vacmContextName" : {
1029
+ "nodetype" : "member",
1030
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1031
+ },
1032
+ "vacmGroupName" : {
1033
+ "nodetype" : "member",
1034
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1035
+ },
1036
+ "vacmSecurityToGroupStorageType" : {
1037
+ "nodetype" : "member",
1038
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1039
+ },
1040
+ "vacmSecurityToGroupStatus" : {
1041
+ "nodetype" : "member",
1042
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1043
+ },
1044
+ "vacmAccessContextMatch" : {
1045
+ "nodetype" : "member",
1046
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1047
+ },
1048
+ "vacmAccessReadViewName" : {
1049
+ "nodetype" : "member",
1050
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1051
+ },
1052
+ "vacmAccessWriteViewName" : {
1053
+ "nodetype" : "member",
1054
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1055
+ },
1056
+ "vacmAccessNotifyViewName" : {
1057
+ "nodetype" : "member",
1058
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1059
+ },
1060
+ "vacmAccessStorageType" : {
1061
+ "nodetype" : "member",
1062
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1063
+ },
1064
+ "vacmAccessStatus" : {
1065
+ "nodetype" : "member",
1066
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1067
+ },
1068
+ "vacmViewSpinLock" : {
1069
+ "nodetype" : "member",
1070
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1071
+ },
1072
+ "vacmViewTreeFamilyMask" : {
1073
+ "nodetype" : "member",
1074
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1075
+ },
1076
+ "vacmViewTreeFamilyType" : {
1077
+ "nodetype" : "member",
1078
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1079
+ },
1080
+ "vacmViewTreeFamilyStorageType" : {
1081
+ "nodetype" : "member",
1082
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1083
+ },
1084
+ "vacmViewTreeFamilyStatus" : {
1085
+ "nodetype" : "member",
1086
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1087
+ },
1088
+ }, # members
1089
+ "description" :
1090
+ """A collection of objects providing for remote
1091
+ configuration of an SNMP engine which implements
1092
+
1093
+
1094
+
1095
+ the SNMP View-based Access Control Model.""",
1096
+ }, # group
1097
+ }, # groups
1098
+
1099
+ "compliances" : {
1100
+ "vacmMIBCompliance" : {
1101
+ "nodetype" : "compliance",
1102
+ "moduleName" : "SNMP-VIEW-BASED-ACM-MIB",
1103
+ "oid" : "1.3.6.1.6.3.16.2.1.1",
1104
+ "status" : "current",
1105
+ "description" :
1106
+ """The compliance statement for SNMP engines which
1107
+ implement the SNMP View-based Access Control Model
1108
+ configuration MIB.""",
1109
+ "requires" : {
1110
+ "vacmBasicGroup" : {
1111
+ "nodetype" : "mandatory",
1112
+ "module" : "SNMP-VIEW-BASED-ACM-MIB"
1113
+ },
1114
+ }, # requires
1115
+ "refinements" : {
1116
+ "vacmAccessContextMatch" : {
1117
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1118
+ "access" : "readonly",
1119
+ "description" :
1120
+ """Write access is not required.""",
1121
+ },
1122
+ "vacmAccessReadViewName" : {
1123
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1124
+ "access" : "readonly",
1125
+ "description" :
1126
+ """Write access is not required.""",
1127
+ },
1128
+ "vacmAccessWriteViewName" : {
1129
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1130
+ "access" : "readonly",
1131
+ "description" :
1132
+ """Write access is not required.""",
1133
+ },
1134
+ "vacmAccessNotifyViewName" : {
1135
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1136
+ "access" : "readonly",
1137
+ "description" :
1138
+ """Write access is not required.""",
1139
+ },
1140
+ "vacmAccessStorageType" : {
1141
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1142
+ "access" : "readonly",
1143
+ "description" :
1144
+ """Write access is not required.""",
1145
+ },
1146
+ "vacmAccessStatus" : {
1147
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1148
+ "access" : "readonly",
1149
+ "description" :
1150
+ """Create/delete/modify access to the
1151
+
1152
+
1153
+
1154
+ vacmAccessTable is not required.""",
1155
+ },
1156
+ "vacmViewTreeFamilyMask" : {
1157
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1158
+ "writesyntax" : {
1159
+ "type" : {
1160
+ "basetype" : "OctetString",
1161
+ "ranges" : [
1162
+ {
1163
+ "min" : "0",
1164
+ "max" : "0"
1165
+ },
1166
+ ],
1167
+ "range" : {
1168
+ "min" : "0",
1169
+ "max" : "0"
1170
+ },
1171
+ },
1172
+ }, # writesyntax
1173
+ "access" : "readonly",
1174
+ "description" :
1175
+ """Support for configuration via SNMP of subtree
1176
+ families using wild-cards is not required.""",
1177
+ },
1178
+ "vacmViewTreeFamilyType" : {
1179
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1180
+ "access" : "readonly",
1181
+ "description" :
1182
+ """Write access is not required.""",
1183
+ },
1184
+ "vacmViewTreeFamilyStorageType" : {
1185
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1186
+ "access" : "readonly",
1187
+ "description" :
1188
+ """Write access is not required.""",
1189
+ },
1190
+ "vacmViewTreeFamilyStatus" : {
1191
+ "module" : "SNMP-VIEW-BASED-ACM-MIB",
1192
+ "access" : "readonly",
1193
+ "description" :
1194
+ """Create/delete/modify access to the
1195
+ vacmViewTreeFamilyTable is not required.""",
1196
+ },
1197
+ }, # refinements
1198
+
1199
+ }, # compliance
1200
+ }, # compliances
1201
+
1202
+ }