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,2156 @@
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 MALLOC-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MALLOC-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MALLOC-MIB",
11
+
12
+ "MALLOC-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF MALLOC Working Group""",
17
+ "contact" :
18
+ """ WG-EMail: malloc@catarina.usc.edu
19
+ Subscribe: malloc-request@catarina.usc.edu
20
+ Archive: catarina.usc.edu/pub/multicast/malloc/
21
+
22
+ Co-chair/editor:
23
+ Dave Thaler
24
+ Microsoft Corporation
25
+ One Microsoft Way
26
+ Redmond, WA 98052
27
+ EMail: dthaler@microsoft.com
28
+
29
+ Co-chair:
30
+ Steve Hanna
31
+ Sun Microsystems, Inc.
32
+ One Network Drive
33
+ Burlington, MA 01803
34
+ EMail: steve.hanna@sun.com""",
35
+ "description" :
36
+ """The MIB module for management of multicast address
37
+ allocation.
38
+
39
+ Copyright (C) The Internet Society (2003). This version of
40
+ this MIB module is part of RFC 3559; see the RFC itself for
41
+ full legal notices.""",
42
+ "revisions" : (
43
+ {
44
+ "date" : "2003-06-09 00:00",
45
+ "description" :
46
+ """Initial version, published as RFC 3559.""",
47
+ },
48
+ ),
49
+ "identity node" : "mallocMIB",
50
+ },
51
+
52
+ "imports" : (
53
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
54
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
55
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
56
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
58
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
59
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
60
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
61
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
62
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
63
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
64
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
65
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
66
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
67
+ {"module" : "IPMROUTE-STD-MIB", "name" : "LanguageTag"},
68
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
69
+ {"module" : "IANA-MALLOC-MIB", "name" : "IANAscopeSource"},
70
+ {"module" : "IANA-MALLOC-MIB", "name" : "IANAmallocRangeSource"},
71
+ ),
72
+
73
+ "nodes" : {
74
+ "mallocMIB" : {
75
+ "nodetype" : "node",
76
+ "moduleName" : "MALLOC-MIB",
77
+ "oid" : "1.3.6.1.2.1.101",
78
+ "status" : "current",
79
+ }, # node
80
+ "mallocMIBObjects" : {
81
+ "nodetype" : "node",
82
+ "moduleName" : "MALLOC-MIB",
83
+ "oid" : "1.3.6.1.2.1.101.1",
84
+ }, # node
85
+ "malloc" : {
86
+ "nodetype" : "node",
87
+ "moduleName" : "MALLOC-MIB",
88
+ "oid" : "1.3.6.1.2.1.101.1.1",
89
+ }, # node
90
+ "mallocCapabilities" : {
91
+ "nodetype" : "scalar",
92
+ "moduleName" : "MALLOC-MIB",
93
+ "oid" : "1.3.6.1.2.1.101.1.1.1",
94
+ "status" : "current",
95
+ "syntax" : {
96
+ "type" : {
97
+ "basetype" : "Bits",
98
+ "startTime" : {
99
+ "nodetype" : "namednumber",
100
+ "number" : "0"
101
+ },
102
+ "serverMobility" : {
103
+ "nodetype" : "namednumber",
104
+ "number" : "1"
105
+ },
106
+ "retryAfter" : {
107
+ "nodetype" : "namednumber",
108
+ "number" : "2"
109
+ },
110
+ },
111
+ },
112
+ "access" : "readonly",
113
+ "description" :
114
+ """This object describes the capabilities which a client or
115
+ server supports. The startTime bit indicates that
116
+ allocations with a future start time are supported. The
117
+ serverMobility bit indicates that allocations can be renewed
118
+ or released from a server other than the one granting the
119
+ original allocation. The retryAfter bit indicates support
120
+ for a waiting state where the client may check back at a
121
+ later time to get the status of its request.""",
122
+ }, # scalar
123
+ "mallocScopeTable" : {
124
+ "nodetype" : "table",
125
+ "moduleName" : "MALLOC-MIB",
126
+ "oid" : "1.3.6.1.2.1.101.1.1.2",
127
+ "status" : "current",
128
+ "description" :
129
+ """The (conceptual) table containing information on multicast
130
+ scopes from which addresses may be allocated. Entries in
131
+ this table may be dynamically discovered via some other
132
+
133
+
134
+
135
+ protocol, such as MZAP, or may be statically configured,
136
+ such as in an isolated network environment. Each scope is
137
+ associated with a range of multicast addresses, and ranges
138
+ for different rows must be disjoint.""",
139
+ }, # table
140
+ "mallocScopeEntry" : {
141
+ "nodetype" : "row",
142
+ "moduleName" : "MALLOC-MIB",
143
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1",
144
+ "create" : "true",
145
+ "status" : "current",
146
+ "linkage" : [
147
+ "mallocScopeAddressType",
148
+ "mallocScopeFirstAddress",
149
+ ],
150
+ "description" :
151
+ """An entry (conceptual row) containing the information on a
152
+ particular multicast scope.""",
153
+ }, # row
154
+ "mallocScopeAddressType" : {
155
+ "nodetype" : "column",
156
+ "moduleName" : "MALLOC-MIB",
157
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.1",
158
+ "status" : "current",
159
+ "syntax" : {
160
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
161
+ },
162
+ "access" : "noaccess",
163
+ "description" :
164
+ """The type of the addresses in the multicast scope range.
165
+ Legal values correspond to the subset of address families
166
+ for which multicast address allocation is supported.""",
167
+ }, # column
168
+ "mallocScopeFirstAddress" : {
169
+ "nodetype" : "column",
170
+ "moduleName" : "MALLOC-MIB",
171
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.2",
172
+ "status" : "current",
173
+ "syntax" : {
174
+ "type" : {
175
+ "basetype" : "OctetString",
176
+ "parent module" : {
177
+ "name" : "INET-ADDRESS-MIB",
178
+ "type" : "InetAddress",
179
+ },
180
+ "ranges" : [
181
+ {
182
+ "min" : "0",
183
+ "max" : "20"
184
+ },
185
+ ],
186
+ "range" : {
187
+ "min" : "0",
188
+ "max" : "20"
189
+ },
190
+ },
191
+ },
192
+ "access" : "noaccess",
193
+ "description" :
194
+ """The first address in the multicast scope range. The type
195
+ of this address is determined by the value of the
196
+ mallocScopeAddressType object.""",
197
+ }, # column
198
+ "mallocScopeLastAddress" : {
199
+ "nodetype" : "column",
200
+ "moduleName" : "MALLOC-MIB",
201
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.3",
202
+ "status" : "current",
203
+ "syntax" : {
204
+ "type" : {
205
+ "basetype" : "OctetString",
206
+ "parent module" : {
207
+ "name" : "INET-ADDRESS-MIB",
208
+ "type" : "InetAddress",
209
+ },
210
+ "ranges" : [
211
+ {
212
+ "min" : "0",
213
+ "max" : "20"
214
+ },
215
+ ],
216
+ "range" : {
217
+ "min" : "0",
218
+ "max" : "20"
219
+ },
220
+ },
221
+ },
222
+ "access" : "readwrite",
223
+ "description" :
224
+ """The last address in the multicast scope range. The type of
225
+ this address is determined by the value of the
226
+ mallocScopeAddressType object.""",
227
+ }, # column
228
+ "mallocScopeHopLimit" : {
229
+ "nodetype" : "column",
230
+ "moduleName" : "MALLOC-MIB",
231
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.4",
232
+ "status" : "current",
233
+ "syntax" : {
234
+ "type" : {
235
+ "basetype" : "Unsigned32",
236
+ "ranges" : [
237
+ {
238
+ "min" : "0",
239
+ "max" : "255"
240
+ },
241
+ ],
242
+ "range" : {
243
+ "min" : "0",
244
+ "max" : "255"
245
+ },
246
+ },
247
+ },
248
+ "access" : "readwrite",
249
+ "default" : "255",
250
+ "description" :
251
+ """The default IPv4 TTL or IPv6 hop limit which applications
252
+ should use for groups within the scope.""",
253
+ }, # column
254
+ "mallocScopeStatus" : {
255
+ "nodetype" : "column",
256
+ "moduleName" : "MALLOC-MIB",
257
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.5",
258
+ "status" : "current",
259
+ "syntax" : {
260
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
261
+ },
262
+ "access" : "readwrite",
263
+ "description" :
264
+ """The status of this row, by which new entries may be
265
+ created, or old entries deleted from this table. If write
266
+ access is supported, the other writable objects in this
267
+ table may be modified even while the status is `active'.""",
268
+ }, # column
269
+ "mallocScopeSource" : {
270
+ "nodetype" : "column",
271
+ "moduleName" : "MALLOC-MIB",
272
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.6",
273
+ "status" : "current",
274
+ "syntax" : {
275
+ "type" : { "module" :"IANA-MALLOC-MIB", "name" : "IANAscopeSource"},
276
+ },
277
+ "access" : "readonly",
278
+ "description" :
279
+ """The method by which this entry was learned.""",
280
+ }, # column
281
+ "mallocScopeDivisible" : {
282
+ "nodetype" : "column",
283
+ "moduleName" : "MALLOC-MIB",
284
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.7",
285
+ "status" : "current",
286
+ "syntax" : {
287
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
288
+ },
289
+ "access" : "readwrite",
290
+ "default" : "false",
291
+ "description" :
292
+ """If false, the server may allocate addresses out of the
293
+ entire range. If true, the server must not allocate
294
+
295
+
296
+
297
+ addresses out of the entire range, but may only allocate
298
+ addresses out of a subrange learned via another method.
299
+ Creating or deleting a scope which is not divisible has the
300
+ side effect of creating or deleting the corresponding entry
301
+ in the mallocAllocRangeTable. Deleting a scope which is
302
+ divisible has the side effect of deleting any corresponding
303
+ entries in the mallocAllocRangeTable, and the
304
+ mallocRequestTable.""",
305
+ }, # column
306
+ "mallocScopeServerAddressType" : {
307
+ "nodetype" : "column",
308
+ "moduleName" : "MALLOC-MIB",
309
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.8",
310
+ "status" : "current",
311
+ "syntax" : {
312
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
313
+ },
314
+ "access" : "readwrite",
315
+ "default" : "unknown",
316
+ "description" :
317
+ """The type of the address of a multicast address allocation
318
+ server to which a request may be sent.""",
319
+ }, # column
320
+ "mallocScopeServerAddress" : {
321
+ "nodetype" : "column",
322
+ "moduleName" : "MALLOC-MIB",
323
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.9",
324
+ "status" : "current",
325
+ "syntax" : {
326
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
327
+ },
328
+ "access" : "readwrite",
329
+ "default" : "",
330
+ "description" :
331
+ """The address of a multicast address allocation server to
332
+ which a request may be sent. The default value is an zero-
333
+ length address, indicating that no server is known. The
334
+ type of this address is determined by the value of the
335
+ mallocScopeServerAddressType object.""",
336
+ }, # column
337
+ "mallocScopeSSM" : {
338
+ "nodetype" : "column",
339
+ "moduleName" : "MALLOC-MIB",
340
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.10",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
344
+ },
345
+ "access" : "readwrite",
346
+ "default" : "false",
347
+ "description" :
348
+ """Indicates whether the scope is a Source-Specific Multicast
349
+ (SSM) range.""",
350
+ }, # column
351
+ "mallocScopeStorage" : {
352
+ "nodetype" : "column",
353
+ "moduleName" : "MALLOC-MIB",
354
+ "oid" : "1.3.6.1.2.1.101.1.1.2.1.11",
355
+ "status" : "current",
356
+ "syntax" : {
357
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
358
+ },
359
+ "access" : "readwrite",
360
+ "default" : "nonVolatile",
361
+ "description" :
362
+ """The storage type for this conceptual row. Conceptual rows
363
+ having the value 'permanent' need not allow write-access to
364
+ any columnar objects in the row.""",
365
+ }, # column
366
+ "mallocScopeNameTable" : {
367
+ "nodetype" : "table",
368
+ "moduleName" : "MALLOC-MIB",
369
+ "oid" : "1.3.6.1.2.1.101.1.1.3",
370
+ "status" : "current",
371
+ "description" :
372
+ """The (conceptual) table containing information on multicast
373
+ scope names. Entries in this table may be dynamically
374
+ discovered via some other protocol, such as MZAP, or may be
375
+ statically configured, such as in an isolated network
376
+ environment.""",
377
+ }, # table
378
+ "mallocScopeNameEntry" : {
379
+ "nodetype" : "row",
380
+ "moduleName" : "MALLOC-MIB",
381
+ "oid" : "1.3.6.1.2.1.101.1.1.3.1",
382
+ "create" : "true",
383
+ "status" : "current",
384
+ "implied" : "true",
385
+ "linkage" : [
386
+ "mallocScopeAddressType",
387
+ "mallocScopeFirstAddress",
388
+ "mallocScopeNameLangName",
389
+ ],
390
+ "description" :
391
+ """An entry (conceptual row) containing the information on a
392
+ particular multicast scope name.""",
393
+ }, # row
394
+ "mallocScopeNameLangName" : {
395
+ "nodetype" : "column",
396
+ "moduleName" : "MALLOC-MIB",
397
+ "oid" : "1.3.6.1.2.1.101.1.1.3.1.1",
398
+ "status" : "current",
399
+ "syntax" : {
400
+ "type" : {
401
+ "basetype" : "OctetString",
402
+ "parent module" : {
403
+ "name" : "IPMROUTE-STD-MIB",
404
+ "type" : "LanguageTag",
405
+ },
406
+ "ranges" : [
407
+ {
408
+ "min" : "1",
409
+ "max" : "94"
410
+ },
411
+ ],
412
+ "range" : {
413
+ "min" : "1",
414
+ "max" : "94"
415
+ },
416
+ },
417
+ },
418
+ "access" : "noaccess",
419
+ "description" :
420
+ """The RFC 3066 language tag for the language of the scope
421
+ name.""",
422
+ }, # column
423
+ "mallocScopeNameScopeName" : {
424
+ "nodetype" : "column",
425
+ "moduleName" : "MALLOC-MIB",
426
+ "oid" : "1.3.6.1.2.1.101.1.1.3.1.2",
427
+ "status" : "current",
428
+ "syntax" : {
429
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
430
+ },
431
+ "access" : "readwrite",
432
+ "description" :
433
+ """The textual name associated with the multicast scope. The
434
+ value of this object should be suitable for displaying to
435
+ end-users, such as when allocating a multicast address in
436
+ this scope. If the scope is an IPv4 scope, and no name is
437
+ specified, the default value of this object should be the
438
+ string 239.x.x.x/y with x and y replaced appropriately to
439
+ describe the address and mask length associated with the
440
+ scope. If the scope is an IPv6 scope, and no name is
441
+ specified, the default value of this object should
442
+ generically describe the scope level (e.g., site).""",
443
+ }, # column
444
+ "mallocScopeNameDefault" : {
445
+ "nodetype" : "column",
446
+ "moduleName" : "MALLOC-MIB",
447
+ "oid" : "1.3.6.1.2.1.101.1.1.3.1.3",
448
+ "status" : "current",
449
+ "syntax" : {
450
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
451
+ },
452
+ "access" : "readwrite",
453
+ "default" : "false",
454
+ "description" :
455
+ """If true, indicates a preference that the name in the
456
+ associated language should be used by applications if no
457
+ name is available in a desired language.""",
458
+ }, # column
459
+ "mallocScopeNameStatus" : {
460
+ "nodetype" : "column",
461
+ "moduleName" : "MALLOC-MIB",
462
+ "oid" : "1.3.6.1.2.1.101.1.1.3.1.4",
463
+ "status" : "current",
464
+ "syntax" : {
465
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
466
+ },
467
+ "access" : "readwrite",
468
+ "description" :
469
+ """The status of this row, by which new entries may be
470
+ created, or old entries deleted from this table. If write
471
+ access is supported, the other writable objects in this
472
+ table may be modified even while the status is `active'.""",
473
+ }, # column
474
+ "mallocScopeNameStorage" : {
475
+ "nodetype" : "column",
476
+ "moduleName" : "MALLOC-MIB",
477
+ "oid" : "1.3.6.1.2.1.101.1.1.3.1.5",
478
+ "status" : "current",
479
+ "syntax" : {
480
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
481
+ },
482
+ "access" : "readwrite",
483
+ "default" : "nonVolatile",
484
+ "description" :
485
+ """The storage type for this conceptual row. Conceptual rows
486
+ having the value 'permanent' need not allow write-access to
487
+ any columnar objects in the row.""",
488
+ }, # column
489
+ "mallocAllocRangeTable" : {
490
+ "nodetype" : "table",
491
+ "moduleName" : "MALLOC-MIB",
492
+ "oid" : "1.3.6.1.2.1.101.1.1.4",
493
+ "status" : "current",
494
+ "description" :
495
+ """The (conceptual) table containing information on subranges
496
+ of addresses from which the device may allocate addresses,
497
+ if it is a MAAS. If the device is a Prefix Coordinator, any
498
+ ranges which the device is advertising to MAAS's will be in
499
+ this table. Note that the device may be both a MAAS and a
500
+ Prefix Coordinator.
501
+
502
+ Address ranges for different rows must be disjoint, and must
503
+ be contained with the address range of the corresponding row
504
+ of the mallocScopeTable.
505
+
506
+ Deleting an allocation range has the side effect of deleting
507
+ any entries within that range from the mallocAddressTable.""",
508
+ }, # table
509
+ "mallocAllocRangeEntry" : {
510
+ "nodetype" : "row",
511
+ "moduleName" : "MALLOC-MIB",
512
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1",
513
+ "create" : "true",
514
+ "status" : "current",
515
+ "linkage" : [
516
+ "mallocScopeAddressType",
517
+ "mallocScopeFirstAddress",
518
+ "mallocAllocRangeFirstAddress",
519
+ ],
520
+ "description" :
521
+ """An entry (conceptual row) containing the information on a
522
+ particular allocation range.""",
523
+ }, # row
524
+ "mallocAllocRangeFirstAddress" : {
525
+ "nodetype" : "column",
526
+ "moduleName" : "MALLOC-MIB",
527
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.1",
528
+ "status" : "current",
529
+ "syntax" : {
530
+ "type" : {
531
+ "basetype" : "OctetString",
532
+ "parent module" : {
533
+ "name" : "INET-ADDRESS-MIB",
534
+ "type" : "InetAddress",
535
+ },
536
+ "ranges" : [
537
+ {
538
+ "min" : "0",
539
+ "max" : "20"
540
+ },
541
+ ],
542
+ "range" : {
543
+ "min" : "0",
544
+ "max" : "20"
545
+ },
546
+ },
547
+ },
548
+ "access" : "noaccess",
549
+ "description" :
550
+ """The first address in the allocation range. The type of
551
+ this address is determined by the value of the
552
+ mallocScopeAddressType object.""",
553
+ }, # column
554
+ "mallocAllocRangeLastAddress" : {
555
+ "nodetype" : "column",
556
+ "moduleName" : "MALLOC-MIB",
557
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.2",
558
+ "status" : "current",
559
+ "syntax" : {
560
+ "type" : {
561
+ "basetype" : "OctetString",
562
+ "parent module" : {
563
+ "name" : "INET-ADDRESS-MIB",
564
+ "type" : "InetAddress",
565
+ },
566
+ "ranges" : [
567
+ {
568
+ "min" : "0",
569
+ "max" : "20"
570
+ },
571
+ ],
572
+ "range" : {
573
+ "min" : "0",
574
+ "max" : "20"
575
+ },
576
+ },
577
+ },
578
+ "access" : "readwrite",
579
+ "description" :
580
+ """The last address in the allocation range. The type of this
581
+ address is determined by the value of the
582
+ mallocScopeAddressType object.""",
583
+ }, # column
584
+ "mallocAllocRangeStatus" : {
585
+ "nodetype" : "column",
586
+ "moduleName" : "MALLOC-MIB",
587
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.3",
588
+ "status" : "current",
589
+ "syntax" : {
590
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
591
+ },
592
+ "access" : "readwrite",
593
+ "description" :
594
+ """The status of this row, by which new entries may be
595
+ created, or old entries deleted from this table. If write
596
+ access is supported, the other writable objects in this
597
+ table may be modified even while the status is `active'.""",
598
+ }, # column
599
+ "mallocAllocRangeSource" : {
600
+ "nodetype" : "column",
601
+ "moduleName" : "MALLOC-MIB",
602
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.4",
603
+ "status" : "current",
604
+ "syntax" : {
605
+ "type" : { "module" :"IANA-MALLOC-MIB", "name" : "IANAmallocRangeSource"},
606
+ },
607
+ "access" : "readonly",
608
+ "description" :
609
+ """The means by which this entry was learned.""",
610
+ }, # column
611
+ "mallocAllocRangeLifetime" : {
612
+ "nodetype" : "column",
613
+ "moduleName" : "MALLOC-MIB",
614
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.5",
615
+ "status" : "current",
616
+ "syntax" : {
617
+ "type" : { "module" :"", "name" : "Unsigned32"},
618
+ },
619
+ "access" : "readwrite",
620
+ "default" : "0",
621
+ "units" : "seconds",
622
+ "description" :
623
+ """The number of seconds remaining in the lifetime of the
624
+ (sub)range out of which addresses are being allocated. A
625
+ value of 0 indicates that the range is not subject to
626
+ aging.""",
627
+ }, # column
628
+ "mallocAllocRangeMaxLeaseAddrs" : {
629
+ "nodetype" : "column",
630
+ "moduleName" : "MALLOC-MIB",
631
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.6",
632
+ "status" : "current",
633
+ "syntax" : {
634
+ "type" : { "module" :"", "name" : "Unsigned32"},
635
+ },
636
+ "access" : "readwrite",
637
+ "default" : "0",
638
+ "description" :
639
+ """The maximum number of addresses which the server is willing
640
+ to grant for each future request in this range. A value of
641
+ 0 means that no specific limit is enforced, as long as the
642
+ server has valid addresses to allocate.""",
643
+ }, # column
644
+ "mallocAllocRangeMaxLeaseTime" : {
645
+ "nodetype" : "column",
646
+ "moduleName" : "MALLOC-MIB",
647
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.7",
648
+ "status" : "current",
649
+ "syntax" : {
650
+ "type" : { "module" :"", "name" : "Unsigned32"},
651
+ },
652
+ "access" : "readwrite",
653
+ "default" : "0",
654
+ "units" : "seconds",
655
+ "description" :
656
+ """The maximum lifetime which the server will grant for future
657
+ requests in this range. A value of 0 means that no
658
+ additional limit is enforced beyond that of
659
+ mallocAllocRangeLifetime.""",
660
+ }, # column
661
+ "mallocAllocRangeNumAllocatedAddrs" : {
662
+ "nodetype" : "column",
663
+ "moduleName" : "MALLOC-MIB",
664
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.8",
665
+ "status" : "current",
666
+ "syntax" : {
667
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
668
+ },
669
+ "access" : "readonly",
670
+ "description" :
671
+ """The number of addresses in the range which have been
672
+ allocated. This value can be used to determine the current
673
+ address space utilization within the scoped range. This
674
+
675
+
676
+
677
+ should match the total number of addresses for this scope
678
+ covered by entries in the mallocAddressTable.""",
679
+ }, # column
680
+ "mallocAllocRangeNumOfferedAddrs" : {
681
+ "nodetype" : "column",
682
+ "moduleName" : "MALLOC-MIB",
683
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.9",
684
+ "status" : "current",
685
+ "syntax" : {
686
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
687
+ },
688
+ "access" : "readonly",
689
+ "description" :
690
+ """The number of addresses in the range which have been
691
+ offered. This number should match the sum of
692
+ mallocRequestNumAddrs for all entries in the
693
+ mallocRequestTable in the offered state. Together with
694
+ mallocAllocRangeNumAllocatedAddrs and
695
+ mallocAllocRangeNumTryingAddrs, this can be used to
696
+ determine the address space utilization within the scoped
697
+ range in the immediate future.""",
698
+ }, # column
699
+ "mallocAllocRangeNumWaitingAddrs" : {
700
+ "nodetype" : "column",
701
+ "moduleName" : "MALLOC-MIB",
702
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.10",
703
+ "status" : "current",
704
+ "syntax" : {
705
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
706
+ },
707
+ "access" : "readonly",
708
+ "description" :
709
+ """The number of addresses in the range which have been
710
+ requested, but whose state is waiting, while the server
711
+ attempts to acquire more address space.""",
712
+ }, # column
713
+ "mallocAllocRangeNumTryingAddrs" : {
714
+ "nodetype" : "column",
715
+ "moduleName" : "MALLOC-MIB",
716
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.11",
717
+ "status" : "current",
718
+ "syntax" : {
719
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
720
+ },
721
+ "access" : "readonly",
722
+ "description" :
723
+ """The number of addresses in the scope covered by entries in
724
+ the mallocRequestTable in the trying state.""",
725
+ }, # column
726
+ "mallocAllocRangeAdvertisable" : {
727
+ "nodetype" : "column",
728
+ "moduleName" : "MALLOC-MIB",
729
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.12",
730
+ "status" : "current",
731
+ "syntax" : {
732
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
733
+ },
734
+ "access" : "readwrite",
735
+ "description" :
736
+ """The value of this object is true if the range is eligible
737
+ to be advertised to other MAASs. When the row is first
738
+ created, the default value of this object is true if the
739
+ scope is divisible, and is false otherwise.""",
740
+ }, # column
741
+ "mallocAllocRangeTotalAllocatedAddrs" : {
742
+ "nodetype" : "column",
743
+ "moduleName" : "MALLOC-MIB",
744
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.13",
745
+ "status" : "current",
746
+ "syntax" : {
747
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
748
+ },
749
+ "access" : "readonly",
750
+ "description" :
751
+ """The approximate number of addresses in the range which have
752
+ been allocated by any MAAS, as determined by a Prefix
753
+ Coordinator. This object need only be present if
754
+ mallocAllocRangeAdvertisable is true. If the number is
755
+ unknown, a value of 0 may be reported.""",
756
+ }, # column
757
+ "mallocAllocRangeTotalRequestedAddrs" : {
758
+ "nodetype" : "column",
759
+ "moduleName" : "MALLOC-MIB",
760
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.14",
761
+ "status" : "current",
762
+ "syntax" : {
763
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
764
+ },
765
+ "access" : "readonly",
766
+ "description" :
767
+ """The approximate number of addresses in the range for which
768
+ there is potential demand among MAASs, as determined by a
769
+ Prefix Coordinator. This object need only be present if
770
+ mallocAllocRangeAdvertisable is true. If the number is
771
+ unknown, a value of 0 may be reported.""",
772
+ }, # column
773
+ "mallocAllocRangeStorage" : {
774
+ "nodetype" : "column",
775
+ "moduleName" : "MALLOC-MIB",
776
+ "oid" : "1.3.6.1.2.1.101.1.1.4.1.15",
777
+ "status" : "current",
778
+ "syntax" : {
779
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
780
+ },
781
+ "access" : "readwrite",
782
+ "default" : "nonVolatile",
783
+ "description" :
784
+ """The storage type for this conceptual row. Conceptual rows
785
+ having the value 'permanent' need not allow write-access to
786
+ any columnar objects in the row.""",
787
+ }, # column
788
+ "mallocRequestTable" : {
789
+ "nodetype" : "table",
790
+ "moduleName" : "MALLOC-MIB",
791
+ "oid" : "1.3.6.1.2.1.101.1.1.5",
792
+ "status" : "current",
793
+ "description" :
794
+ """The (conceptual) table containing information on allocation
795
+ requests, whether allocated or in progress. This table may
796
+ also be used to determine which clients are responsible for
797
+ high address space utilization within a given scope.
798
+
799
+
800
+
801
+ Entries in this table reflect requests dynamically received
802
+ by an address allocation protocol.""",
803
+ }, # table
804
+ "mallocRequestEntry" : {
805
+ "nodetype" : "row",
806
+ "moduleName" : "MALLOC-MIB",
807
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1",
808
+ "status" : "current",
809
+ "linkage" : [
810
+ "mallocRequestId",
811
+ ],
812
+ "description" :
813
+ """An entry (conceptual row) containing the information on a
814
+ particular allocation request.""",
815
+ }, # row
816
+ "mallocRequestId" : {
817
+ "nodetype" : "column",
818
+ "moduleName" : "MALLOC-MIB",
819
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.1",
820
+ "status" : "current",
821
+ "syntax" : {
822
+ "type" : {
823
+ "basetype" : "Unsigned32",
824
+ "ranges" : [
825
+ {
826
+ "min" : "1",
827
+ "max" : "4294967295"
828
+ },
829
+ ],
830
+ "range" : {
831
+ "min" : "1",
832
+ "max" : "4294967295"
833
+ },
834
+ },
835
+ },
836
+ "access" : "noaccess",
837
+ "description" :
838
+ """An arbitrary value identifying this row.""",
839
+ }, # column
840
+ "mallocRequestScopeAddressType" : {
841
+ "nodetype" : "column",
842
+ "moduleName" : "MALLOC-MIB",
843
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.2",
844
+ "status" : "current",
845
+ "syntax" : {
846
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
847
+ },
848
+ "access" : "readonly",
849
+ "description" :
850
+ """The type of the first address of the scope to which the
851
+ request applies. Legal values correspond to the subset of
852
+ address families for which multicast address allocation is
853
+ supported.""",
854
+ }, # column
855
+ "mallocRequestScopeFirstAddress" : {
856
+ "nodetype" : "column",
857
+ "moduleName" : "MALLOC-MIB",
858
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.3",
859
+ "status" : "current",
860
+ "syntax" : {
861
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
862
+ },
863
+ "access" : "readonly",
864
+ "description" :
865
+ """The first address of the scope to which the request
866
+ applies. This must match mallocScopeFirstAddress for some
867
+ row in the mallocScopeTable. The type of this address is
868
+ determined by the value of the mallocRequestScopeAddressType
869
+ object.""",
870
+ }, # column
871
+ "mallocRequestStartTime" : {
872
+ "nodetype" : "column",
873
+ "moduleName" : "MALLOC-MIB",
874
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.4",
875
+ "status" : "current",
876
+ "syntax" : {
877
+ "type" : { "module" :"", "name" : "Unsigned32"},
878
+ },
879
+ "access" : "readonly",
880
+ "units" : "seconds",
881
+ "description" :
882
+ """The number of seconds remaining before the start time of
883
+ the request. A value of 0 means that the allocation is
884
+ currently in effect.""",
885
+ }, # column
886
+ "mallocRequestEndTime" : {
887
+ "nodetype" : "column",
888
+ "moduleName" : "MALLOC-MIB",
889
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.5",
890
+ "status" : "current",
891
+ "syntax" : {
892
+ "type" : { "module" :"", "name" : "Unsigned32"},
893
+ },
894
+ "access" : "readonly",
895
+ "units" : "seconds",
896
+ "description" :
897
+ """The number of seconds remaining before the end time of the
898
+ request.""",
899
+ }, # column
900
+ "mallocRequestNumAddrs" : {
901
+ "nodetype" : "column",
902
+ "moduleName" : "MALLOC-MIB",
903
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.6",
904
+ "status" : "current",
905
+ "syntax" : {
906
+ "type" : { "module" :"", "name" : "Unsigned32"},
907
+ },
908
+ "access" : "readonly",
909
+ "description" :
910
+ """The number of addresses requested. If the addresses have
911
+ been allocated, this number should match the total number of
912
+ addresses for this request covered by entries in the
913
+ mallocAddressTable.""",
914
+ }, # column
915
+ "mallocRequestState" : {
916
+ "nodetype" : "column",
917
+ "moduleName" : "MALLOC-MIB",
918
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.7",
919
+ "status" : "current",
920
+ "syntax" : {
921
+ "type" : {
922
+ "basetype" : "Enumeration",
923
+ "allocated" : {
924
+ "nodetype" : "namednumber",
925
+ "number" : "1"
926
+ },
927
+ "offered" : {
928
+ "nodetype" : "namednumber",
929
+ "number" : "2"
930
+ },
931
+ "waiting" : {
932
+ "nodetype" : "namednumber",
933
+ "number" : "3"
934
+ },
935
+ "trying" : {
936
+ "nodetype" : "namednumber",
937
+ "number" : "4"
938
+ },
939
+ },
940
+ },
941
+ "access" : "readonly",
942
+ "description" :
943
+ """The state of the request. A value of allocated(1)
944
+ indicates that one or more entries for this request are
945
+ present in the mallocAddressTable. A value of offered(2)
946
+ indicates that addresses have been offered to the client
947
+ (e.g. via a MADCAP OFFER message), but the allocation has
948
+ not been committed. A value of waiting(3) indicates that
949
+ the allocation is blocked while the server attempts to
950
+ acquire more space from which it can allocate addresses. A
951
+ value of trying(4) means that no addresses have been offered
952
+ to the client, but that an attempt to allocate is in
953
+ progress.""",
954
+ }, # column
955
+ "mallocRequestClientAddressType" : {
956
+ "nodetype" : "column",
957
+ "moduleName" : "MALLOC-MIB",
958
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.8",
959
+ "status" : "current",
960
+ "syntax" : {
961
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
962
+ },
963
+ "access" : "readonly",
964
+ "description" :
965
+ """The type of the address of the client that (last) requested
966
+ this allocation.""",
967
+ }, # column
968
+ "mallocRequestClientAddress" : {
969
+ "nodetype" : "column",
970
+ "moduleName" : "MALLOC-MIB",
971
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.9",
972
+ "status" : "current",
973
+ "syntax" : {
974
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
975
+ },
976
+ "access" : "readonly",
977
+ "description" :
978
+ """The address of the client that (last) requested this
979
+ allocation. The type of this address is determined by the
980
+ value of the mallocRequestClientAddressType object.""",
981
+ }, # column
982
+ "mallocRequestServerAddressType" : {
983
+ "nodetype" : "column",
984
+ "moduleName" : "MALLOC-MIB",
985
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.10",
986
+ "status" : "current",
987
+ "syntax" : {
988
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
989
+ },
990
+ "access" : "readonly",
991
+ "description" :
992
+ """The type of the address of the server to which the request
993
+ was (last) sent.""",
994
+ }, # column
995
+ "mallocRequestServerAddress" : {
996
+ "nodetype" : "column",
997
+ "moduleName" : "MALLOC-MIB",
998
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.11",
999
+ "status" : "current",
1000
+ "syntax" : {
1001
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1002
+ },
1003
+ "access" : "readonly",
1004
+ "description" :
1005
+ """The address of the server to which the request was (last)
1006
+ sent. The type of this address is determined by the value
1007
+ of the mallocRequestServerAddressType object.""",
1008
+ }, # column
1009
+ "mallocRequestLeaseIdentifier" : {
1010
+ "nodetype" : "column",
1011
+ "moduleName" : "MALLOC-MIB",
1012
+ "oid" : "1.3.6.1.2.1.101.1.1.5.1.12",
1013
+ "status" : "current",
1014
+ "syntax" : {
1015
+ "type" : {
1016
+ "basetype" : "OctetString",
1017
+ "ranges" : [
1018
+ {
1019
+ "min" : "0",
1020
+ "max" : "255"
1021
+ },
1022
+ ],
1023
+ "range" : {
1024
+ "min" : "0",
1025
+ "max" : "255"
1026
+ },
1027
+ },
1028
+ },
1029
+ "access" : "readonly",
1030
+ "description" :
1031
+ """The Lease Identifier of this request. If the allocation
1032
+ mechanism in use does not use Lease Identifiers, then the
1033
+ value is a 0-length string.""",
1034
+ }, # column
1035
+ "mallocAddressTable" : {
1036
+ "nodetype" : "table",
1037
+ "moduleName" : "MALLOC-MIB",
1038
+ "oid" : "1.3.6.1.2.1.101.1.1.6",
1039
+ "status" : "current",
1040
+ "description" :
1041
+ """The (conceptual) table containing information on blocks of
1042
+ allocated addresses. This table may be used to map a given
1043
+ multicast group address to the associated request.""",
1044
+ }, # table
1045
+ "mallocAddressEntry" : {
1046
+ "nodetype" : "row",
1047
+ "moduleName" : "MALLOC-MIB",
1048
+ "oid" : "1.3.6.1.2.1.101.1.1.6.1",
1049
+ "status" : "current",
1050
+ "linkage" : [
1051
+ "mallocAddressAddressType",
1052
+ "mallocAddressFirstAddress",
1053
+ ],
1054
+ "description" :
1055
+ """An entry (conceptual row) containing the information on a
1056
+ particular block of allocated addresses. The block of
1057
+ addresses covered by each entry in this table must fall
1058
+ within a range corresponding to an entry in the
1059
+ mallocAllocRangeTable.""",
1060
+ }, # row
1061
+ "mallocAddressAddressType" : {
1062
+ "nodetype" : "column",
1063
+ "moduleName" : "MALLOC-MIB",
1064
+ "oid" : "1.3.6.1.2.1.101.1.1.6.1.1",
1065
+ "status" : "current",
1066
+ "syntax" : {
1067
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1068
+ },
1069
+ "access" : "noaccess",
1070
+ "description" :
1071
+ """The type of the first address in the allocated block.
1072
+ Legal values correspond to the subset of address families
1073
+ for which multicast address allocation is supported.""",
1074
+ }, # column
1075
+ "mallocAddressFirstAddress" : {
1076
+ "nodetype" : "column",
1077
+ "moduleName" : "MALLOC-MIB",
1078
+ "oid" : "1.3.6.1.2.1.101.1.1.6.1.2",
1079
+ "status" : "current",
1080
+ "syntax" : {
1081
+ "type" : {
1082
+ "basetype" : "OctetString",
1083
+ "parent module" : {
1084
+ "name" : "INET-ADDRESS-MIB",
1085
+ "type" : "InetAddress",
1086
+ },
1087
+ "ranges" : [
1088
+ {
1089
+ "min" : "0",
1090
+ "max" : "20"
1091
+ },
1092
+ ],
1093
+ "range" : {
1094
+ "min" : "0",
1095
+ "max" : "20"
1096
+ },
1097
+ },
1098
+ },
1099
+ "access" : "noaccess",
1100
+ "description" :
1101
+ """The first address in the allocated block. The type of this
1102
+ address is determined by the value of the
1103
+ mallocAddressAddressType object.""",
1104
+ }, # column
1105
+ "mallocAddressNumAddrs" : {
1106
+ "nodetype" : "column",
1107
+ "moduleName" : "MALLOC-MIB",
1108
+ "oid" : "1.3.6.1.2.1.101.1.1.6.1.3",
1109
+ "status" : "current",
1110
+ "syntax" : {
1111
+ "type" : { "module" :"", "name" : "Unsigned32"},
1112
+ },
1113
+ "access" : "readonly",
1114
+ "description" :
1115
+ """The number of addresses in the allocated block.""",
1116
+ }, # column
1117
+ "mallocAddressRequestId" : {
1118
+ "nodetype" : "column",
1119
+ "moduleName" : "MALLOC-MIB",
1120
+ "oid" : "1.3.6.1.2.1.101.1.1.6.1.4",
1121
+ "status" : "current",
1122
+ "syntax" : {
1123
+ "type" : { "module" :"", "name" : "Unsigned32"},
1124
+ },
1125
+ "access" : "readonly",
1126
+ "description" :
1127
+ """The index of the request which caused this block of
1128
+ addresses to be allocated. This value must match the value
1129
+ of mallocRequestId for some entry in the
1130
+ mallocRequestTable.""",
1131
+ }, # column
1132
+ "madcap" : {
1133
+ "nodetype" : "node",
1134
+ "moduleName" : "MALLOC-MIB",
1135
+ "oid" : "1.3.6.1.2.1.101.1.2",
1136
+ }, # node
1137
+ "madcapConfig" : {
1138
+ "nodetype" : "node",
1139
+ "moduleName" : "MALLOC-MIB",
1140
+ "oid" : "1.3.6.1.2.1.101.1.2.1",
1141
+ "status" : "current",
1142
+ "description" :
1143
+ """Group of objects that count various MADCAP events.""",
1144
+ }, # node
1145
+ "madcapConfigExtraAllocationTime" : {
1146
+ "nodetype" : "scalar",
1147
+ "moduleName" : "MALLOC-MIB",
1148
+ "oid" : "1.3.6.1.2.1.101.1.2.1.1",
1149
+ "status" : "current",
1150
+ "syntax" : {
1151
+ "type" : { "module" :"", "name" : "Unsigned32"},
1152
+ },
1153
+ "access" : "readwrite",
1154
+ "units" : "seconds",
1155
+ "description" :
1156
+ """The amount of extra time on either side of a lease which
1157
+ the MADCAP server allocates to allow for clock skew among
1158
+ clients.""",
1159
+ }, # scalar
1160
+ "madcapConfigNoResponseDelay" : {
1161
+ "nodetype" : "scalar",
1162
+ "moduleName" : "MALLOC-MIB",
1163
+ "oid" : "1.3.6.1.2.1.101.1.2.1.2",
1164
+ "status" : "current",
1165
+ "syntax" : {
1166
+ "type" : { "module" :"", "name" : "Unsigned32"},
1167
+ },
1168
+ "access" : "readwrite",
1169
+ "units" : "seconds",
1170
+ "description" :
1171
+ """The amount of time the MADCAP client allows for receiving a
1172
+ response from a MADCAP server.""",
1173
+ }, # scalar
1174
+ "madcapConfigOfferHold" : {
1175
+ "nodetype" : "scalar",
1176
+ "moduleName" : "MALLOC-MIB",
1177
+ "oid" : "1.3.6.1.2.1.101.1.2.1.3",
1178
+ "status" : "current",
1179
+ "syntax" : {
1180
+ "type" : { "module" :"", "name" : "Unsigned32"},
1181
+ },
1182
+ "access" : "readwrite",
1183
+ "units" : "seconds",
1184
+ "description" :
1185
+ """The amount of time the MADCAP server will reserve an
1186
+ address for after sending an OFFER message in anticipation
1187
+ of receiving a REQUEST message.""",
1188
+ }, # scalar
1189
+ "madcapConfigResponseCacheInterval" : {
1190
+ "nodetype" : "scalar",
1191
+ "moduleName" : "MALLOC-MIB",
1192
+ "oid" : "1.3.6.1.2.1.101.1.2.1.4",
1193
+ "status" : "current",
1194
+ "syntax" : {
1195
+ "type" : {
1196
+ "basetype" : "Unsigned32",
1197
+ "ranges" : [
1198
+ {
1199
+ "min" : "0",
1200
+ "max" : "300"
1201
+ },
1202
+ ],
1203
+ "range" : {
1204
+ "min" : "0",
1205
+ "max" : "300"
1206
+ },
1207
+ },
1208
+ },
1209
+ "access" : "readwrite",
1210
+ "units" : "seconds",
1211
+ "description" :
1212
+ """The amount of time the MADCAP server uses to detect
1213
+ duplicate messages.""",
1214
+ }, # scalar
1215
+ "madcapConfigClockSkewAllowance" : {
1216
+ "nodetype" : "scalar",
1217
+ "moduleName" : "MALLOC-MIB",
1218
+ "oid" : "1.3.6.1.2.1.101.1.2.1.5",
1219
+ "status" : "current",
1220
+ "syntax" : {
1221
+ "type" : { "module" :"", "name" : "Unsigned32"},
1222
+ },
1223
+ "access" : "readwrite",
1224
+ "units" : "seconds",
1225
+ "description" :
1226
+ """The clock skew threshold used by the MADCAP server to
1227
+ generate Excessive Clock Skew errors.""",
1228
+ }, # scalar
1229
+ "madcapCounters" : {
1230
+ "nodetype" : "node",
1231
+ "moduleName" : "MALLOC-MIB",
1232
+ "oid" : "1.3.6.1.2.1.101.1.2.2",
1233
+ "status" : "current",
1234
+ "description" :
1235
+ """A group of objects that count various MADCAP events.""",
1236
+ }, # node
1237
+ "madcapTotalErrors" : {
1238
+ "nodetype" : "scalar",
1239
+ "moduleName" : "MALLOC-MIB",
1240
+ "oid" : "1.3.6.1.2.1.101.1.2.2.1",
1241
+ "status" : "current",
1242
+ "syntax" : {
1243
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1244
+ },
1245
+ "access" : "readonly",
1246
+ "description" :
1247
+ """The total number of transactions for which the MADCAP
1248
+ server has detected an error of any type, regardless of
1249
+ whether the server ignored the request or generated a NAK.""",
1250
+ }, # scalar
1251
+ "madcapRequestsDenied" : {
1252
+ "nodetype" : "scalar",
1253
+ "moduleName" : "MALLOC-MIB",
1254
+ "oid" : "1.3.6.1.2.1.101.1.2.2.2",
1255
+ "status" : "current",
1256
+ "syntax" : {
1257
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1258
+ },
1259
+ "access" : "readonly",
1260
+ "description" :
1261
+ """The number of valid requests for which the MADCAP server
1262
+ could not complete an allocation, regardless of whether NAKs
1263
+ were sent. This corresponds to the Valid Request Could Not
1264
+ Be Completed error code in MADCAP.""",
1265
+ }, # scalar
1266
+ "madcapInvalidRequests" : {
1267
+ "nodetype" : "scalar",
1268
+ "moduleName" : "MALLOC-MIB",
1269
+ "oid" : "1.3.6.1.2.1.101.1.2.2.3",
1270
+ "status" : "current",
1271
+ "syntax" : {
1272
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1273
+ },
1274
+ "access" : "readonly",
1275
+ "description" :
1276
+ """The number of invalid requests received by the MADCAP
1277
+ server, regardless of whether NAKs were sent. This
1278
+ corresponds to the Invalid Request error code in MADCAP.""",
1279
+ }, # scalar
1280
+ "madcapExcessiveClockSkews" : {
1281
+ "nodetype" : "scalar",
1282
+ "moduleName" : "MALLOC-MIB",
1283
+ "oid" : "1.3.6.1.2.1.101.1.2.2.4",
1284
+ "status" : "current",
1285
+ "syntax" : {
1286
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1287
+ },
1288
+ "access" : "readonly",
1289
+ "description" :
1290
+ """The number of requests received by the MADCAP server with
1291
+ an excessive clock skew, regardless of whether NAKs were
1292
+ sent. This corresponds to the Excessive Clock Skew error
1293
+ code in MADCAP.""",
1294
+ }, # scalar
1295
+ "madcapBadLeaseIds" : {
1296
+ "nodetype" : "scalar",
1297
+ "moduleName" : "MALLOC-MIB",
1298
+ "oid" : "1.3.6.1.2.1.101.1.2.2.5",
1299
+ "status" : "current",
1300
+ "syntax" : {
1301
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1302
+ },
1303
+ "access" : "readonly",
1304
+ "description" :
1305
+ """The number of requests received by the MADCAP server with
1306
+ an unrecognized Lease Identifier, regardless of whether NAKs
1307
+ were sent. This corresponds to the Lease Identifier Not
1308
+ Recognized error code in MADCAP.""",
1309
+ }, # scalar
1310
+ "madcapDiscovers" : {
1311
+ "nodetype" : "scalar",
1312
+ "moduleName" : "MALLOC-MIB",
1313
+ "oid" : "1.3.6.1.2.1.101.1.2.2.6",
1314
+ "status" : "current",
1315
+ "syntax" : {
1316
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1317
+ },
1318
+ "access" : "readonly",
1319
+ "description" :
1320
+ """The number of DISCOVER messages received by the MADCAP
1321
+ server.""",
1322
+ }, # scalar
1323
+ "madcapInforms" : {
1324
+ "nodetype" : "scalar",
1325
+ "moduleName" : "MALLOC-MIB",
1326
+ "oid" : "1.3.6.1.2.1.101.1.2.2.7",
1327
+ "status" : "current",
1328
+ "syntax" : {
1329
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1330
+ },
1331
+ "access" : "readonly",
1332
+ "description" :
1333
+ """The number of INFORM messages received by the MADCAP
1334
+ server.""",
1335
+ }, # scalar
1336
+ "madcapRequests" : {
1337
+ "nodetype" : "scalar",
1338
+ "moduleName" : "MALLOC-MIB",
1339
+ "oid" : "1.3.6.1.2.1.101.1.2.2.8",
1340
+ "status" : "current",
1341
+ "syntax" : {
1342
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1343
+ },
1344
+ "access" : "readonly",
1345
+ "description" :
1346
+ """The number of REQUEST messages received by the MADCAP
1347
+ server.""",
1348
+ }, # scalar
1349
+ "madcapRenews" : {
1350
+ "nodetype" : "scalar",
1351
+ "moduleName" : "MALLOC-MIB",
1352
+ "oid" : "1.3.6.1.2.1.101.1.2.2.9",
1353
+ "status" : "current",
1354
+ "syntax" : {
1355
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1356
+ },
1357
+ "access" : "readonly",
1358
+ "description" :
1359
+ """The number of RENEW messages received by the MADCAP
1360
+ server.""",
1361
+ }, # scalar
1362
+ "madcapReleases" : {
1363
+ "nodetype" : "scalar",
1364
+ "moduleName" : "MALLOC-MIB",
1365
+ "oid" : "1.3.6.1.2.1.101.1.2.2.10",
1366
+ "status" : "current",
1367
+ "syntax" : {
1368
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1369
+ },
1370
+ "access" : "readonly",
1371
+ "description" :
1372
+ """The number of RELEASE messages received by the MADCAP
1373
+ server.""",
1374
+ }, # scalar
1375
+ "mallocConformance" : {
1376
+ "nodetype" : "node",
1377
+ "moduleName" : "MALLOC-MIB",
1378
+ "oid" : "1.3.6.1.2.1.101.2",
1379
+ }, # node
1380
+ "mallocCompliances" : {
1381
+ "nodetype" : "node",
1382
+ "moduleName" : "MALLOC-MIB",
1383
+ "oid" : "1.3.6.1.2.1.101.2.1",
1384
+ }, # node
1385
+ "mallocGroups" : {
1386
+ "nodetype" : "node",
1387
+ "moduleName" : "MALLOC-MIB",
1388
+ "oid" : "1.3.6.1.2.1.101.2.2",
1389
+ }, # node
1390
+ }, # nodes
1391
+
1392
+ "groups" : {
1393
+ "mallocBasicGroup" : {
1394
+ "nodetype" : "group",
1395
+ "moduleName" : "MALLOC-MIB",
1396
+ "oid" : "1.3.6.1.2.1.101.2.2.1",
1397
+ "status" : "current",
1398
+ "members" : {
1399
+ "mallocCapabilities" : {
1400
+ "nodetype" : "member",
1401
+ "module" : "MALLOC-MIB"
1402
+ },
1403
+ "mallocRequestScopeAddressType" : {
1404
+ "nodetype" : "member",
1405
+ "module" : "MALLOC-MIB"
1406
+ },
1407
+ "mallocRequestScopeFirstAddress" : {
1408
+ "nodetype" : "member",
1409
+ "module" : "MALLOC-MIB"
1410
+ },
1411
+ "mallocRequestStartTime" : {
1412
+ "nodetype" : "member",
1413
+ "module" : "MALLOC-MIB"
1414
+ },
1415
+ "mallocRequestEndTime" : {
1416
+ "nodetype" : "member",
1417
+ "module" : "MALLOC-MIB"
1418
+ },
1419
+ "mallocRequestNumAddrs" : {
1420
+ "nodetype" : "member",
1421
+ "module" : "MALLOC-MIB"
1422
+ },
1423
+ "mallocRequestState" : {
1424
+ "nodetype" : "member",
1425
+ "module" : "MALLOC-MIB"
1426
+ },
1427
+ "mallocAddressNumAddrs" : {
1428
+ "nodetype" : "member",
1429
+ "module" : "MALLOC-MIB"
1430
+ },
1431
+ "mallocAddressRequestId" : {
1432
+ "nodetype" : "member",
1433
+ "module" : "MALLOC-MIB"
1434
+ },
1435
+ }, # members
1436
+ "description" :
1437
+ """The basic collection of objects providing management of IP
1438
+ multicast address allocation.""",
1439
+ }, # group
1440
+ "mallocServerGroup" : {
1441
+ "nodetype" : "group",
1442
+ "moduleName" : "MALLOC-MIB",
1443
+ "oid" : "1.3.6.1.2.1.101.2.2.2",
1444
+ "status" : "current",
1445
+ "members" : {
1446
+ "mallocScopeLastAddress" : {
1447
+ "nodetype" : "member",
1448
+ "module" : "MALLOC-MIB"
1449
+ },
1450
+ "mallocScopeHopLimit" : {
1451
+ "nodetype" : "member",
1452
+ "module" : "MALLOC-MIB"
1453
+ },
1454
+ "mallocScopeSSM" : {
1455
+ "nodetype" : "member",
1456
+ "module" : "MALLOC-MIB"
1457
+ },
1458
+ "mallocScopeStatus" : {
1459
+ "nodetype" : "member",
1460
+ "module" : "MALLOC-MIB"
1461
+ },
1462
+ "mallocScopeStorage" : {
1463
+ "nodetype" : "member",
1464
+ "module" : "MALLOC-MIB"
1465
+ },
1466
+ "mallocAllocRangeLastAddress" : {
1467
+ "nodetype" : "member",
1468
+ "module" : "MALLOC-MIB"
1469
+ },
1470
+ "mallocAllocRangeLifetime" : {
1471
+ "nodetype" : "member",
1472
+ "module" : "MALLOC-MIB"
1473
+ },
1474
+ "mallocAllocRangeNumAllocatedAddrs" : {
1475
+ "nodetype" : "member",
1476
+ "module" : "MALLOC-MIB"
1477
+ },
1478
+ "mallocAllocRangeNumOfferedAddrs" : {
1479
+ "nodetype" : "member",
1480
+ "module" : "MALLOC-MIB"
1481
+ },
1482
+ "mallocAllocRangeNumWaitingAddrs" : {
1483
+ "nodetype" : "member",
1484
+ "module" : "MALLOC-MIB"
1485
+ },
1486
+ "mallocAllocRangeNumTryingAddrs" : {
1487
+ "nodetype" : "member",
1488
+ "module" : "MALLOC-MIB"
1489
+ },
1490
+ "mallocAllocRangeMaxLeaseAddrs" : {
1491
+ "nodetype" : "member",
1492
+ "module" : "MALLOC-MIB"
1493
+ },
1494
+ "mallocAllocRangeMaxLeaseTime" : {
1495
+ "nodetype" : "member",
1496
+ "module" : "MALLOC-MIB"
1497
+ },
1498
+ "mallocAllocRangeSource" : {
1499
+ "nodetype" : "member",
1500
+ "module" : "MALLOC-MIB"
1501
+ },
1502
+ "mallocAllocRangeStatus" : {
1503
+ "nodetype" : "member",
1504
+ "module" : "MALLOC-MIB"
1505
+ },
1506
+ "mallocAllocRangeStorage" : {
1507
+ "nodetype" : "member",
1508
+ "module" : "MALLOC-MIB"
1509
+ },
1510
+ "mallocScopeDivisible" : {
1511
+ "nodetype" : "member",
1512
+ "module" : "MALLOC-MIB"
1513
+ },
1514
+ "mallocScopeSource" : {
1515
+ "nodetype" : "member",
1516
+ "module" : "MALLOC-MIB"
1517
+ },
1518
+ "mallocScopeNameScopeName" : {
1519
+ "nodetype" : "member",
1520
+ "module" : "MALLOC-MIB"
1521
+ },
1522
+ "mallocScopeNameDefault" : {
1523
+ "nodetype" : "member",
1524
+ "module" : "MALLOC-MIB"
1525
+ },
1526
+ "mallocScopeNameStatus" : {
1527
+ "nodetype" : "member",
1528
+ "module" : "MALLOC-MIB"
1529
+ },
1530
+ "mallocScopeNameStorage" : {
1531
+ "nodetype" : "member",
1532
+ "module" : "MALLOC-MIB"
1533
+ },
1534
+ "mallocRequestClientAddressType" : {
1535
+ "nodetype" : "member",
1536
+ "module" : "MALLOC-MIB"
1537
+ },
1538
+ "mallocRequestClientAddress" : {
1539
+ "nodetype" : "member",
1540
+ "module" : "MALLOC-MIB"
1541
+ },
1542
+ }, # members
1543
+ "description" :
1544
+ """A collection of objects providing management of multicast
1545
+ address allocation in servers.""",
1546
+ }, # group
1547
+ "mallocClientGroup" : {
1548
+ "nodetype" : "group",
1549
+ "moduleName" : "MALLOC-MIB",
1550
+ "oid" : "1.3.6.1.2.1.101.2.2.3",
1551
+ "status" : "current",
1552
+ "members" : {
1553
+ "mallocRequestServerAddressType" : {
1554
+ "nodetype" : "member",
1555
+ "module" : "MALLOC-MIB"
1556
+ },
1557
+ "mallocRequestServerAddress" : {
1558
+ "nodetype" : "member",
1559
+ "module" : "MALLOC-MIB"
1560
+ },
1561
+ }, # members
1562
+ "description" :
1563
+ """A collection of objects providing management of multicast
1564
+ address allocation in clients.""",
1565
+ }, # group
1566
+ "madcapServerGroup" : {
1567
+ "nodetype" : "group",
1568
+ "moduleName" : "MALLOC-MIB",
1569
+ "oid" : "1.3.6.1.2.1.101.2.2.4",
1570
+ "status" : "current",
1571
+ "members" : {
1572
+ "madcapConfigClockSkewAllowance" : {
1573
+ "nodetype" : "member",
1574
+ "module" : "MALLOC-MIB"
1575
+ },
1576
+ "madcapConfigExtraAllocationTime" : {
1577
+ "nodetype" : "member",
1578
+ "module" : "MALLOC-MIB"
1579
+ },
1580
+ "madcapConfigOfferHold" : {
1581
+ "nodetype" : "member",
1582
+ "module" : "MALLOC-MIB"
1583
+ },
1584
+ "madcapConfigResponseCacheInterval" : {
1585
+ "nodetype" : "member",
1586
+ "module" : "MALLOC-MIB"
1587
+ },
1588
+ "madcapTotalErrors" : {
1589
+ "nodetype" : "member",
1590
+ "module" : "MALLOC-MIB"
1591
+ },
1592
+ "madcapRequestsDenied" : {
1593
+ "nodetype" : "member",
1594
+ "module" : "MALLOC-MIB"
1595
+ },
1596
+ "madcapInvalidRequests" : {
1597
+ "nodetype" : "member",
1598
+ "module" : "MALLOC-MIB"
1599
+ },
1600
+ "madcapBadLeaseIds" : {
1601
+ "nodetype" : "member",
1602
+ "module" : "MALLOC-MIB"
1603
+ },
1604
+ "madcapExcessiveClockSkews" : {
1605
+ "nodetype" : "member",
1606
+ "module" : "MALLOC-MIB"
1607
+ },
1608
+ "madcapDiscovers" : {
1609
+ "nodetype" : "member",
1610
+ "module" : "MALLOC-MIB"
1611
+ },
1612
+ "madcapInforms" : {
1613
+ "nodetype" : "member",
1614
+ "module" : "MALLOC-MIB"
1615
+ },
1616
+ "madcapRequests" : {
1617
+ "nodetype" : "member",
1618
+ "module" : "MALLOC-MIB"
1619
+ },
1620
+ "madcapRenews" : {
1621
+ "nodetype" : "member",
1622
+ "module" : "MALLOC-MIB"
1623
+ },
1624
+ "madcapReleases" : {
1625
+ "nodetype" : "member",
1626
+ "module" : "MALLOC-MIB"
1627
+ },
1628
+ }, # members
1629
+ "description" :
1630
+ """A collection of objects providing management of MADCAP
1631
+ servers.""",
1632
+ }, # group
1633
+ "madcapClientGroup" : {
1634
+ "nodetype" : "group",
1635
+ "moduleName" : "MALLOC-MIB",
1636
+ "oid" : "1.3.6.1.2.1.101.2.2.5",
1637
+ "status" : "current",
1638
+ "members" : {
1639
+ "mallocRequestLeaseIdentifier" : {
1640
+ "nodetype" : "member",
1641
+ "module" : "MALLOC-MIB"
1642
+ },
1643
+ "madcapConfigNoResponseDelay" : {
1644
+ "nodetype" : "member",
1645
+ "module" : "MALLOC-MIB"
1646
+ },
1647
+ }, # members
1648
+ "description" :
1649
+ """A collection of objects providing management of MADCAP
1650
+ clients.""",
1651
+ }, # group
1652
+ "mallocClientScopeGroup" : {
1653
+ "nodetype" : "group",
1654
+ "moduleName" : "MALLOC-MIB",
1655
+ "oid" : "1.3.6.1.2.1.101.2.2.6",
1656
+ "status" : "current",
1657
+ "members" : {
1658
+ "mallocScopeLastAddress" : {
1659
+ "nodetype" : "member",
1660
+ "module" : "MALLOC-MIB"
1661
+ },
1662
+ "mallocScopeHopLimit" : {
1663
+ "nodetype" : "member",
1664
+ "module" : "MALLOC-MIB"
1665
+ },
1666
+ "mallocScopeStatus" : {
1667
+ "nodetype" : "member",
1668
+ "module" : "MALLOC-MIB"
1669
+ },
1670
+ "mallocScopeStorage" : {
1671
+ "nodetype" : "member",
1672
+ "module" : "MALLOC-MIB"
1673
+ },
1674
+ "mallocScopeSource" : {
1675
+ "nodetype" : "member",
1676
+ "module" : "MALLOC-MIB"
1677
+ },
1678
+ "mallocScopeServerAddressType" : {
1679
+ "nodetype" : "member",
1680
+ "module" : "MALLOC-MIB"
1681
+ },
1682
+ "mallocScopeServerAddress" : {
1683
+ "nodetype" : "member",
1684
+ "module" : "MALLOC-MIB"
1685
+ },
1686
+ "mallocScopeSSM" : {
1687
+ "nodetype" : "member",
1688
+ "module" : "MALLOC-MIB"
1689
+ },
1690
+ "mallocScopeNameScopeName" : {
1691
+ "nodetype" : "member",
1692
+ "module" : "MALLOC-MIB"
1693
+ },
1694
+ "mallocScopeNameDefault" : {
1695
+ "nodetype" : "member",
1696
+ "module" : "MALLOC-MIB"
1697
+ },
1698
+ "mallocScopeNameStatus" : {
1699
+ "nodetype" : "member",
1700
+ "module" : "MALLOC-MIB"
1701
+ },
1702
+ "mallocScopeNameStorage" : {
1703
+ "nodetype" : "member",
1704
+ "module" : "MALLOC-MIB"
1705
+ },
1706
+ }, # members
1707
+ "description" :
1708
+ """A collection of objects providing management of multicast
1709
+ scope information in clients.""",
1710
+ }, # group
1711
+ "mallocPrefixCoordinatorGroup" : {
1712
+ "nodetype" : "group",
1713
+ "moduleName" : "MALLOC-MIB",
1714
+ "oid" : "1.3.6.1.2.1.101.2.2.7",
1715
+ "status" : "current",
1716
+ "members" : {
1717
+ "mallocAllocRangeLastAddress" : {
1718
+ "nodetype" : "member",
1719
+ "module" : "MALLOC-MIB"
1720
+ },
1721
+ "mallocAllocRangeLifetime" : {
1722
+ "nodetype" : "member",
1723
+ "module" : "MALLOC-MIB"
1724
+ },
1725
+ "mallocAllocRangeStatus" : {
1726
+ "nodetype" : "member",
1727
+ "module" : "MALLOC-MIB"
1728
+ },
1729
+ "mallocAllocRangeStorage" : {
1730
+ "nodetype" : "member",
1731
+ "module" : "MALLOC-MIB"
1732
+ },
1733
+ "mallocAllocRangeSource" : {
1734
+ "nodetype" : "member",
1735
+ "module" : "MALLOC-MIB"
1736
+ },
1737
+ "mallocAllocRangeTotalAllocatedAddrs" : {
1738
+ "nodetype" : "member",
1739
+ "module" : "MALLOC-MIB"
1740
+ },
1741
+ "mallocAllocRangeTotalRequestedAddrs" : {
1742
+ "nodetype" : "member",
1743
+ "module" : "MALLOC-MIB"
1744
+ },
1745
+ "mallocAllocRangeAdvertisable" : {
1746
+ "nodetype" : "member",
1747
+ "module" : "MALLOC-MIB"
1748
+ },
1749
+ "mallocScopeLastAddress" : {
1750
+ "nodetype" : "member",
1751
+ "module" : "MALLOC-MIB"
1752
+ },
1753
+ "mallocScopeDivisible" : {
1754
+ "nodetype" : "member",
1755
+ "module" : "MALLOC-MIB"
1756
+ },
1757
+ "mallocScopeSource" : {
1758
+ "nodetype" : "member",
1759
+ "module" : "MALLOC-MIB"
1760
+ },
1761
+ }, # members
1762
+ "description" :
1763
+ """A collection of objects for managing Prefix Coordinators.""",
1764
+ }, # group
1765
+ }, # groups
1766
+
1767
+ "compliances" : {
1768
+ "mallocServerReadOnlyCompliance" : {
1769
+ "nodetype" : "compliance",
1770
+ "moduleName" : "MALLOC-MIB",
1771
+ "oid" : "1.3.6.1.2.1.101.2.1.1",
1772
+ "status" : "current",
1773
+ "description" :
1774
+ """The compliance statement for multicast address allocation
1775
+ servers implementing the MALLOC MIB without support for
1776
+ read-create (i.e., in read-only mode). Such a server can
1777
+ then be monitored but can not be configured with this MIB.""",
1778
+ "requires" : {
1779
+ "mallocBasicGroup" : {
1780
+ "nodetype" : "mandatory",
1781
+ "module" : "MALLOC-MIB"
1782
+ },
1783
+ "mallocServerGroup" : {
1784
+ "nodetype" : "mandatory",
1785
+ "module" : "MALLOC-MIB"
1786
+ },
1787
+ "madcapServerGroup" : {
1788
+ "nodetype" : "optional",
1789
+ "module" : "MALLOC-MIB",
1790
+ "description" :
1791
+ """This group is mandatory for servers which implement the
1792
+ MADCAP client-server protocol.""",
1793
+ },
1794
+ }, # requires
1795
+ "refinements" : {
1796
+ "mallocScopeLastAddress" : {
1797
+ "module" : "MALLOC-MIB",
1798
+ "access" : "readonly",
1799
+ "description" :
1800
+ """Write access is not required.""",
1801
+ },
1802
+ "mallocScopeHopLimit" : {
1803
+ "module" : "MALLOC-MIB",
1804
+ "access" : "readonly",
1805
+ "description" :
1806
+ """Write access is not required.""",
1807
+ },
1808
+ "mallocScopeStatus" : {
1809
+ "module" : "MALLOC-MIB",
1810
+ "access" : "readonly",
1811
+ "description" :
1812
+ """Write access is not required.""",
1813
+ },
1814
+ "mallocScopeDivisible" : {
1815
+ "module" : "MALLOC-MIB",
1816
+ "access" : "readonly",
1817
+ "description" :
1818
+ """Write access is not required.""",
1819
+ },
1820
+ "mallocScopeSSM" : {
1821
+ "module" : "MALLOC-MIB",
1822
+ "access" : "readonly",
1823
+ "description" :
1824
+ """Write access is not required.""",
1825
+ },
1826
+ "mallocScopeStorage" : {
1827
+ "module" : "MALLOC-MIB",
1828
+ "access" : "readonly",
1829
+ "description" :
1830
+ """Write access is not required.""",
1831
+ },
1832
+ "mallocScopeNameScopeName" : {
1833
+ "module" : "MALLOC-MIB",
1834
+ "access" : "readonly",
1835
+ "description" :
1836
+ """Write access is not required.""",
1837
+ },
1838
+ "mallocScopeNameDefault" : {
1839
+ "module" : "MALLOC-MIB",
1840
+ "access" : "readonly",
1841
+ "description" :
1842
+ """Write access is not required.""",
1843
+ },
1844
+ "mallocScopeNameStatus" : {
1845
+ "module" : "MALLOC-MIB",
1846
+ "access" : "readonly",
1847
+ "description" :
1848
+ """Write access is not required.""",
1849
+ },
1850
+ "mallocScopeNameStorage" : {
1851
+ "module" : "MALLOC-MIB",
1852
+ "access" : "readonly",
1853
+ "description" :
1854
+ """Write access is not required.""",
1855
+ },
1856
+ "mallocAllocRangeLastAddress" : {
1857
+ "module" : "MALLOC-MIB",
1858
+ "access" : "readonly",
1859
+ "description" :
1860
+ """Write access is not required.""",
1861
+ },
1862
+ "mallocAllocRangeStatus" : {
1863
+ "module" : "MALLOC-MIB",
1864
+ "access" : "readonly",
1865
+ "description" :
1866
+ """Write access is not required.""",
1867
+ },
1868
+ "mallocAllocRangeLifetime" : {
1869
+ "module" : "MALLOC-MIB",
1870
+ "access" : "readonly",
1871
+ "description" :
1872
+ """Write access is not required.""",
1873
+ },
1874
+ "mallocAllocRangeMaxLeaseAddrs" : {
1875
+ "module" : "MALLOC-MIB",
1876
+ "access" : "readonly",
1877
+ "description" :
1878
+ """Write access is not required.""",
1879
+ },
1880
+ "mallocAllocRangeMaxLeaseTime" : {
1881
+ "module" : "MALLOC-MIB",
1882
+ "access" : "readonly",
1883
+ "description" :
1884
+ """Write access is not required.""",
1885
+ },
1886
+ "mallocAllocRangeStorage" : {
1887
+ "module" : "MALLOC-MIB",
1888
+ "access" : "readonly",
1889
+ "description" :
1890
+ """Write access is not required.""",
1891
+ },
1892
+ "madcapConfigExtraAllocationTime" : {
1893
+ "module" : "MALLOC-MIB",
1894
+ "access" : "readonly",
1895
+ "description" :
1896
+ """Write access is not required.""",
1897
+ },
1898
+ "madcapConfigOfferHold" : {
1899
+ "module" : "MALLOC-MIB",
1900
+ "access" : "readonly",
1901
+ "description" :
1902
+ """Write access is not required.""",
1903
+ },
1904
+ "madcapConfigResponseCacheInterval" : {
1905
+ "module" : "MALLOC-MIB",
1906
+ "access" : "readonly",
1907
+ "description" :
1908
+ """Write access is not required.""",
1909
+ },
1910
+ "madcapConfigClockSkewAllowance" : {
1911
+ "module" : "MALLOC-MIB",
1912
+ "access" : "readonly",
1913
+ "description" :
1914
+ """Write access is not required.""",
1915
+ },
1916
+ }, # refinements
1917
+
1918
+ }, # compliance
1919
+ "mallocClientReadOnlyCompliance" : {
1920
+ "nodetype" : "compliance",
1921
+ "moduleName" : "MALLOC-MIB",
1922
+ "oid" : "1.3.6.1.2.1.101.2.1.2",
1923
+ "status" : "current",
1924
+ "description" :
1925
+ """The compliance statement for clients implementing the
1926
+ MALLOC MIB without support for read-create (i.e., in read-
1927
+ only mode). Such clients can then be monitored but can not
1928
+ be configured with this MIB.""",
1929
+ "requires" : {
1930
+ "mallocBasicGroup" : {
1931
+ "nodetype" : "mandatory",
1932
+ "module" : "MALLOC-MIB"
1933
+ },
1934
+ "mallocClientGroup" : {
1935
+ "nodetype" : "mandatory",
1936
+ "module" : "MALLOC-MIB"
1937
+ },
1938
+ "mallocClientScopeGroup" : {
1939
+ "nodetype" : "optional",
1940
+ "module" : "MALLOC-MIB",
1941
+ "description" :
1942
+ """This group is mandatory for clients which maintain a list
1943
+ of multicast scopes.""",
1944
+ },
1945
+ "madcapClientGroup" : {
1946
+ "nodetype" : "optional",
1947
+ "module" : "MALLOC-MIB",
1948
+ "description" :
1949
+ """This group is mandatory for clients which implement the
1950
+ MADCAP client-server protocol.""",
1951
+ },
1952
+ }, # requires
1953
+ "refinements" : {
1954
+ "mallocScopeLastAddress" : {
1955
+ "module" : "MALLOC-MIB",
1956
+ "access" : "readonly",
1957
+ "description" :
1958
+ """Write access is not required.""",
1959
+ },
1960
+ "mallocScopeHopLimit" : {
1961
+ "module" : "MALLOC-MIB",
1962
+ "access" : "readonly",
1963
+ "description" :
1964
+ """Write access is not required.""",
1965
+ },
1966
+ "mallocScopeStatus" : {
1967
+ "module" : "MALLOC-MIB",
1968
+ "access" : "readonly",
1969
+ "description" :
1970
+ """Write access is not required.""",
1971
+ },
1972
+ "mallocScopeServerAddressType" : {
1973
+ "module" : "MALLOC-MIB",
1974
+ "access" : "readonly",
1975
+ "description" :
1976
+ """Write access is not required.""",
1977
+ },
1978
+ "mallocScopeServerAddress" : {
1979
+ "module" : "MALLOC-MIB",
1980
+ "access" : "readonly",
1981
+ "description" :
1982
+ """Write access is not required.""",
1983
+ },
1984
+ "mallocScopeSSM" : {
1985
+ "module" : "MALLOC-MIB",
1986
+ "access" : "readonly",
1987
+ "description" :
1988
+ """Write access is not required.""",
1989
+ },
1990
+ "mallocScopeStorage" : {
1991
+ "module" : "MALLOC-MIB",
1992
+ "access" : "readonly",
1993
+ "description" :
1994
+ """Write access is not required.""",
1995
+ },
1996
+ "madcapConfigNoResponseDelay" : {
1997
+ "module" : "MALLOC-MIB",
1998
+ "access" : "readonly",
1999
+ "description" :
2000
+ """Write access is not required.""",
2001
+ },
2002
+ }, # refinements
2003
+
2004
+ }, # compliance
2005
+ "mallocPrefixCoordinatorReadOnlyCompliance" : {
2006
+ "nodetype" : "compliance",
2007
+ "moduleName" : "MALLOC-MIB",
2008
+ "oid" : "1.3.6.1.2.1.101.2.1.3",
2009
+ "status" : "current",
2010
+ "description" :
2011
+ """The compliance statement for prefix coordinators
2012
+ implementing the MALLOC MIB without support for read-create
2013
+ (i.e., in read-only mode). Such devices can then be
2014
+ monitored but can not be configured with this MIB.""",
2015
+ "requires" : {
2016
+ "mallocBasicGroup" : {
2017
+ "nodetype" : "mandatory",
2018
+ "module" : "MALLOC-MIB"
2019
+ },
2020
+ "mallocPrefixCoordinatorGroup" : {
2021
+ "nodetype" : "mandatory",
2022
+ "module" : "MALLOC-MIB"
2023
+ },
2024
+ }, # requires
2025
+ "refinements" : {
2026
+ "mallocScopeLastAddress" : {
2027
+ "module" : "MALLOC-MIB",
2028
+ "access" : "readonly",
2029
+ "description" :
2030
+ """Write access is not required.""",
2031
+ },
2032
+ "mallocScopeDivisible" : {
2033
+ "module" : "MALLOC-MIB",
2034
+ "access" : "readonly",
2035
+ "description" :
2036
+ """Write access is not required.""",
2037
+ },
2038
+ "mallocAllocRangeLastAddress" : {
2039
+ "module" : "MALLOC-MIB",
2040
+ "access" : "readonly",
2041
+ "description" :
2042
+ """Write access is not required.""",
2043
+ },
2044
+ "mallocAllocRangeStatus" : {
2045
+ "module" : "MALLOC-MIB",
2046
+ "access" : "readonly",
2047
+ "description" :
2048
+ """Write access is not required.""",
2049
+ },
2050
+ "mallocAllocRangeLifetime" : {
2051
+ "module" : "MALLOC-MIB",
2052
+ "access" : "readonly",
2053
+ "description" :
2054
+ """Write access is not required.""",
2055
+ },
2056
+ "mallocAllocRangeAdvertisable" : {
2057
+ "module" : "MALLOC-MIB",
2058
+ "access" : "readonly",
2059
+ "description" :
2060
+ """Write access is not required.""",
2061
+ },
2062
+ "mallocAllocRangeStorage" : {
2063
+ "module" : "MALLOC-MIB",
2064
+ "access" : "readonly",
2065
+ "description" :
2066
+ """Write access is not required.""",
2067
+ },
2068
+ }, # refinements
2069
+
2070
+ }, # compliance
2071
+ "mallocServerFullCompliance" : {
2072
+ "nodetype" : "compliance",
2073
+ "moduleName" : "MALLOC-MIB",
2074
+ "oid" : "1.3.6.1.2.1.101.2.1.4",
2075
+ "status" : "current",
2076
+ "description" :
2077
+ """The compliance statement for multicast address allocation
2078
+ servers implementing the MALLOC MIB with support for read-
2079
+ create. Such servers can then be both monitored and
2080
+ configured with this MIB.""",
2081
+ "requires" : {
2082
+ "mallocBasicGroup" : {
2083
+ "nodetype" : "mandatory",
2084
+ "module" : "MALLOC-MIB"
2085
+ },
2086
+ "mallocServerGroup" : {
2087
+ "nodetype" : "mandatory",
2088
+ "module" : "MALLOC-MIB"
2089
+ },
2090
+ "madcapServerGroup" : {
2091
+ "nodetype" : "optional",
2092
+ "module" : "MALLOC-MIB",
2093
+ "description" :
2094
+ """This group is mandatory for servers which implement the
2095
+ MADCAP client-server protocol.""",
2096
+ },
2097
+ }, # requires
2098
+ }, # compliance
2099
+ "mallocClientFullCompliance" : {
2100
+ "nodetype" : "compliance",
2101
+ "moduleName" : "MALLOC-MIB",
2102
+ "oid" : "1.3.6.1.2.1.101.2.1.5",
2103
+ "status" : "current",
2104
+ "description" :
2105
+ """The compliance statement for hosts implementing the MALLOC
2106
+ MIB with support for read-create. Such clients can then be
2107
+ both monitored and configured with this MIB.""",
2108
+ "requires" : {
2109
+ "mallocBasicGroup" : {
2110
+ "nodetype" : "mandatory",
2111
+ "module" : "MALLOC-MIB"
2112
+ },
2113
+ "mallocClientGroup" : {
2114
+ "nodetype" : "mandatory",
2115
+ "module" : "MALLOC-MIB"
2116
+ },
2117
+ "mallocClientScopeGroup" : {
2118
+ "nodetype" : "optional",
2119
+ "module" : "MALLOC-MIB",
2120
+ "description" :
2121
+ """This group is mandatory for clients which maintain a list
2122
+ of multicast scopes.""",
2123
+ },
2124
+ "madcapClientGroup" : {
2125
+ "nodetype" : "optional",
2126
+ "module" : "MALLOC-MIB",
2127
+ "description" :
2128
+ """This group is mandatory for clients which implement the
2129
+ MADCAP client-server protocol.""",
2130
+ },
2131
+ }, # requires
2132
+ }, # compliance
2133
+ "mallocPrefixCoordinatorFullCompliance" : {
2134
+ "nodetype" : "compliance",
2135
+ "moduleName" : "MALLOC-MIB",
2136
+ "oid" : "1.3.6.1.2.1.101.2.1.6",
2137
+ "status" : "current",
2138
+ "description" :
2139
+ """The compliance statement for prefix coordinators
2140
+ implementing the MALLOC MIB with support for read-create.
2141
+ Such devices can then be both monitored and configured with
2142
+ this MIB.""",
2143
+ "requires" : {
2144
+ "mallocBasicGroup" : {
2145
+ "nodetype" : "mandatory",
2146
+ "module" : "MALLOC-MIB"
2147
+ },
2148
+ "mallocPrefixCoordinatorGroup" : {
2149
+ "nodetype" : "mandatory",
2150
+ "module" : "MALLOC-MIB"
2151
+ },
2152
+ }, # requires
2153
+ }, # compliance
2154
+ }, # compliances
2155
+
2156
+ }