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,2453 @@
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 HOST-RESOURCES-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/HOST-RESOURCES-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "HOST-RESOURCES-MIB",
11
+
12
+ "HOST-RESOURCES-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Host Resources MIB Working Group""",
17
+ "contact" :
18
+ """Steve Waldbusser
19
+ Postal: Lucent Technologies, Inc.
20
+ 1213 Innsbruck Dr.
21
+ Sunnyvale, CA 94089
22
+ USA
23
+ Phone: 650-318-1251
24
+ Fax: 650-318-1633
25
+ Email: waldbusser@lucent.com
26
+ In addition, the Host Resources MIB mailing list is
27
+ dedicated to discussion of this MIB. To join the
28
+ mailing list, send a request message to
29
+ hostmib-request@andrew.cmu.edu. The mailing list
30
+ address is hostmib@andrew.cmu.edu.""",
31
+ "description" :
32
+ """This MIB is for use in managing host systems. The term
33
+ `host' is construed to mean any computer that communicates
34
+ with other similar computers attached to the internet and
35
+ that is directly used by one or more human beings. Although
36
+ this MIB does not necessarily apply to devices whose primary
37
+ function is communications services (e.g., terminal servers,
38
+ routers, bridges, monitoring equipment), such relevance is
39
+ not explicitly precluded. This MIB instruments attributes
40
+ common to all internet hosts including, for example, both
41
+ personal computers and systems that run variants of Unix.""",
42
+ "revisions" : (
43
+ {
44
+ "date" : "2000-03-06 00:00",
45
+ "description" :
46
+ """Clarifications and bug fixes based on implementation
47
+ experience. This revision was also reformatted in the SMIv2
48
+ format. The revisions made were:
49
+
50
+ New RFC document standards:
51
+ Added Copyright notice, updated introduction to SNMP
52
+ Framework, updated references section, added reference to
53
+ RFC 2119, and added a meaningful Security Considerations
54
+ section.
55
+
56
+ New IANA considerations section for registration of new types
57
+
58
+ Conversion to new SMIv2 syntax for the following types and
59
+ macros:
60
+ Counter32, Integer32, Gauge32, MODULE-IDENTITY,
61
+ OBJECT-TYPE, TEXTUAL-CONVENTION, OBJECT-IDENTITY,
62
+ MODULE-COMPLIANCE, OBJECT-GROUP
63
+
64
+ Used new Textual Conventions:
65
+ TruthValue, DateAndTime, AutonomousType,
66
+ InterfaceIndexOrZero
67
+
68
+ Fixed typo in hrPrinterStatus.
69
+
70
+ Added missing error bits to hrPrinterDetectedErrorState and
71
+ clarified confusion resulting from suggested mappings to
72
+ hrPrinterStatus.
73
+ Clarified that size of objects of type
74
+ InternationalDisplayString is number of octets, not number
75
+ of encoded symbols.
76
+
77
+ Clarified the use of the following objects based on
78
+ implementation experience:
79
+ hrSystemInitialLoadDevice, hrSystemInitialLoadParameters,
80
+ hrMemorySize, hrStorageSize, hrStorageAllocationFailures,
81
+ hrDeviceErrors, hrProcessorLoad, hrNetworkIfIndex,
82
+ hrDiskStorageCapacity, hrSWRunStatus, hrSWRunPerfCPU,
83
+ and hrSWInstalledDate.
84
+
85
+ Clarified implementation technique for hrSWInstalledTable.
86
+
87
+ Used new AUGMENTS clause for hrSWRunPerfTable.
88
+
89
+ Added Internationalization Considerations section.
90
+
91
+ This revision published as RFC2790.""",
92
+ },
93
+ {
94
+ "date" : "1999-10-20 22:00",
95
+ "description" :
96
+ """The original version of this MIB, published as
97
+ RFC1514.""",
98
+ },
99
+ ),
100
+ "identity node" : "hostResourcesMibModule",
101
+ },
102
+
103
+ "imports" : (
104
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
105
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
106
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
107
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
108
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
109
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
110
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
111
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
112
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
113
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
114
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
115
+ {"module" : "SNMPv2-TC", "name" : "AutonomousType"},
116
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
117
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
118
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
119
+ ),
120
+
121
+ "typedefs" : {
122
+ "KBytes" : {
123
+ "basetype" : "Integer32",
124
+ "status" : "current",
125
+ "ranges" : [
126
+ {
127
+ "min" : "0",
128
+ "max" : "2147483647"
129
+ },
130
+ ],
131
+ "range" : {
132
+ "min" : "0",
133
+ "max" : "2147483647"
134
+ },
135
+ "description" :
136
+ """Storage size, expressed in units of 1024 bytes.""",
137
+ },
138
+ "ProductID" : {
139
+ "basetype" : "ObjectIdentifier",
140
+ "status" : "current",
141
+ "description" :
142
+ """This textual convention is intended to identify the
143
+ manufacturer, model, and version of a specific
144
+ hardware or software product. It is suggested that
145
+ these OBJECT IDENTIFIERs are allocated such that all
146
+ products from a particular manufacturer are registered
147
+ under a subtree distinct to that manufacturer. In
148
+ addition, all versions of a product should be
149
+ registered under a subtree distinct to that product.
150
+ With this strategy, a management station may uniquely
151
+ determine the manufacturer and/or model of a product
152
+ whose productID is unknown to the management station.
153
+ Objects of this type may be useful for inventory
154
+ purposes or for automatically detecting
155
+ incompatibilities or version mismatches between
156
+ various hardware and software components on a system.
157
+
158
+ For example, the product ID for the ACME 4860 66MHz
159
+ clock doubled processor might be:
160
+ enterprises.acme.acmeProcessors.a4860DX2.MHz66
161
+
162
+ A software product might be registered as:
163
+ enterprises.acme.acmeOperatingSystems.acmeDOS.six(6).one(1)""",
164
+ },
165
+ "InternationalDisplayString" : {
166
+ "basetype" : "OctetString",
167
+ "status" : "current",
168
+ "description" :
169
+ """This data type is used to model textual information
170
+ in some character set. A network management station
171
+ should use a local algorithm to determine which
172
+ character set is in use and how it should be
173
+ displayed. Note that this character set may be
174
+ encoded with more than one octet per symbol, but will
175
+ most often be NVT ASCII. When a size clause is
176
+ specified for an object of this type, the size refers
177
+ to the length in octets, not the number of symbols.""",
178
+ },
179
+ }, # typedefs
180
+
181
+ "nodes" : {
182
+ "host" : {
183
+ "nodetype" : "node",
184
+ "moduleName" : "HOST-RESOURCES-MIB",
185
+ "oid" : "1.3.6.1.2.1.25",
186
+ }, # node
187
+ "hrSystem" : {
188
+ "nodetype" : "node",
189
+ "moduleName" : "HOST-RESOURCES-MIB",
190
+ "oid" : "1.3.6.1.2.1.25.1",
191
+ }, # node
192
+ "hrSystemUptime" : {
193
+ "nodetype" : "scalar",
194
+ "moduleName" : "HOST-RESOURCES-MIB",
195
+ "oid" : "1.3.6.1.2.1.25.1.1",
196
+ "status" : "current",
197
+ "syntax" : {
198
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
199
+ },
200
+ "access" : "readonly",
201
+ "description" :
202
+ """The amount of time since this host was last
203
+ initialized. Note that this is different from
204
+ sysUpTime in the SNMPv2-MIB [RFC1907] because
205
+ sysUpTime is the uptime of the network management
206
+ portion of the system.""",
207
+ }, # scalar
208
+ "hrSystemDate" : {
209
+ "nodetype" : "scalar",
210
+ "moduleName" : "HOST-RESOURCES-MIB",
211
+ "oid" : "1.3.6.1.2.1.25.1.2",
212
+ "status" : "current",
213
+ "syntax" : {
214
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
215
+ },
216
+ "access" : "readwrite",
217
+ "description" :
218
+ """The host's notion of the local date and time of day.""",
219
+ }, # scalar
220
+ "hrSystemInitialLoadDevice" : {
221
+ "nodetype" : "scalar",
222
+ "moduleName" : "HOST-RESOURCES-MIB",
223
+ "oid" : "1.3.6.1.2.1.25.1.3",
224
+ "status" : "current",
225
+ "syntax" : {
226
+ "type" : {
227
+ "basetype" : "Integer32",
228
+ "ranges" : [
229
+ {
230
+ "min" : "1",
231
+ "max" : "2147483647"
232
+ },
233
+ ],
234
+ "range" : {
235
+ "min" : "1",
236
+ "max" : "2147483647"
237
+ },
238
+ },
239
+ },
240
+ "access" : "readwrite",
241
+ "description" :
242
+ """The index of the hrDeviceEntry for the device from
243
+ which this host is configured to load its initial
244
+ operating system configuration (i.e., which operating
245
+ system code and/or boot parameters).
246
+
247
+ Note that writing to this object just changes the
248
+ configuration that will be used the next time the
249
+ operating system is loaded and does not actually cause
250
+ the reload to occur.""",
251
+ }, # scalar
252
+ "hrSystemInitialLoadParameters" : {
253
+ "nodetype" : "scalar",
254
+ "moduleName" : "HOST-RESOURCES-MIB",
255
+ "oid" : "1.3.6.1.2.1.25.1.4",
256
+ "status" : "current",
257
+ "syntax" : {
258
+ "type" : {
259
+ "basetype" : "OctetString",
260
+ "parent module" : {
261
+ "name" : "HOST-RESOURCES-MIB",
262
+ "type" : "InternationalDisplayString",
263
+ },
264
+ "ranges" : [
265
+ {
266
+ "min" : "0",
267
+ "max" : "128"
268
+ },
269
+ ],
270
+ "range" : {
271
+ "min" : "0",
272
+ "max" : "128"
273
+ },
274
+ },
275
+ },
276
+ "access" : "readwrite",
277
+ "description" :
278
+ """This object contains the parameters (e.g. a pathname
279
+ and parameter) supplied to the load device when
280
+ requesting the initial operating system configuration
281
+ from that device.
282
+
283
+ Note that writing to this object just changes the
284
+ configuration that will be used the next time the
285
+ operating system is loaded and does not actually cause
286
+ the reload to occur.""",
287
+ }, # scalar
288
+ "hrSystemNumUsers" : {
289
+ "nodetype" : "scalar",
290
+ "moduleName" : "HOST-RESOURCES-MIB",
291
+ "oid" : "1.3.6.1.2.1.25.1.5",
292
+ "status" : "current",
293
+ "syntax" : {
294
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
295
+ },
296
+ "access" : "readonly",
297
+ "description" :
298
+ """The number of user sessions for which this host is
299
+ storing state information. A session is a collection
300
+ of processes requiring a single act of user
301
+ authentication and possibly subject to collective job
302
+ control.""",
303
+ }, # scalar
304
+ "hrSystemProcesses" : {
305
+ "nodetype" : "scalar",
306
+ "moduleName" : "HOST-RESOURCES-MIB",
307
+ "oid" : "1.3.6.1.2.1.25.1.6",
308
+ "status" : "current",
309
+ "syntax" : {
310
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
311
+ },
312
+ "access" : "readonly",
313
+ "description" :
314
+ """The number of process contexts currently loaded or
315
+ running on this system.""",
316
+ }, # scalar
317
+ "hrSystemMaxProcesses" : {
318
+ "nodetype" : "scalar",
319
+ "moduleName" : "HOST-RESOURCES-MIB",
320
+ "oid" : "1.3.6.1.2.1.25.1.7",
321
+ "status" : "current",
322
+ "syntax" : {
323
+ "type" : {
324
+ "basetype" : "Integer32",
325
+ "ranges" : [
326
+ {
327
+ "min" : "0",
328
+ "max" : "2147483647"
329
+ },
330
+ ],
331
+ "range" : {
332
+ "min" : "0",
333
+ "max" : "2147483647"
334
+ },
335
+ },
336
+ },
337
+ "access" : "readonly",
338
+ "description" :
339
+ """The maximum number of process contexts this system
340
+ can support. If there is no fixed maximum, the value
341
+ should be zero. On systems that have a fixed maximum,
342
+ this object can help diagnose failures that occur when
343
+ this maximum is reached.""",
344
+ }, # scalar
345
+ "hrStorage" : {
346
+ "nodetype" : "node",
347
+ "moduleName" : "HOST-RESOURCES-MIB",
348
+ "oid" : "1.3.6.1.2.1.25.2",
349
+ }, # node
350
+ "hrStorageTypes" : {
351
+ "nodetype" : "node",
352
+ "moduleName" : "HOST-RESOURCES-MIB",
353
+ "oid" : "1.3.6.1.2.1.25.2.1",
354
+ }, # node
355
+ "hrMemorySize" : {
356
+ "nodetype" : "scalar",
357
+ "moduleName" : "HOST-RESOURCES-MIB",
358
+ "oid" : "1.3.6.1.2.1.25.2.2",
359
+ "status" : "current",
360
+ "syntax" : {
361
+ "type" : { "module" :"HOST-RESOURCES-MIB", "name" : "KBytes"},
362
+ },
363
+ "access" : "readonly",
364
+ "units" : "KBytes",
365
+ "description" :
366
+ """The amount of physical read-write main memory,
367
+ typically RAM, contained by the host.""",
368
+ }, # scalar
369
+ "hrStorageTable" : {
370
+ "nodetype" : "table",
371
+ "moduleName" : "HOST-RESOURCES-MIB",
372
+ "oid" : "1.3.6.1.2.1.25.2.3",
373
+ "status" : "current",
374
+ "description" :
375
+ """The (conceptual) table of logical storage areas on
376
+ the host.
377
+
378
+ An entry shall be placed in the storage table for each
379
+ logical area of storage that is allocated and has
380
+ fixed resource limits. The amount of storage
381
+ represented in an entity is the amount actually usable
382
+ by the requesting entity, and excludes loss due to
383
+ formatting or file system reference information.
384
+
385
+ These entries are associated with logical storage
386
+ areas, as might be seen by an application, rather than
387
+ physical storage entities which are typically seen by
388
+ an operating system. Storage such as tapes and
389
+ floppies without file systems on them are typically
390
+ not allocated in chunks by the operating system to
391
+ requesting applications, and therefore shouldn't
392
+ appear in this table. Examples of valid storage for
393
+ this table include disk partitions, file systems, ram
394
+ (for some architectures this is further segmented into
395
+ regular memory, extended memory, and so on), backing
396
+ store for virtual memory (`swap space').
397
+
398
+ This table is intended to be a useful diagnostic for
399
+ `out of memory' and `out of buffers' types of
400
+ failures. In addition, it can be a useful performance
401
+ monitoring tool for tracking memory, disk, or buffer
402
+ usage.""",
403
+ }, # table
404
+ "hrStorageEntry" : {
405
+ "nodetype" : "row",
406
+ "moduleName" : "HOST-RESOURCES-MIB",
407
+ "oid" : "1.3.6.1.2.1.25.2.3.1",
408
+ "status" : "current",
409
+ "linkage" : [
410
+ "hrStorageIndex",
411
+ ],
412
+ "description" :
413
+ """A (conceptual) entry for one logical storage area on
414
+ the host. As an example, an instance of the
415
+ hrStorageType object might be named hrStorageType.3""",
416
+ }, # row
417
+ "hrStorageIndex" : {
418
+ "nodetype" : "column",
419
+ "moduleName" : "HOST-RESOURCES-MIB",
420
+ "oid" : "1.3.6.1.2.1.25.2.3.1.1",
421
+ "status" : "current",
422
+ "syntax" : {
423
+ "type" : {
424
+ "basetype" : "Integer32",
425
+ "ranges" : [
426
+ {
427
+ "min" : "1",
428
+ "max" : "2147483647"
429
+ },
430
+ ],
431
+ "range" : {
432
+ "min" : "1",
433
+ "max" : "2147483647"
434
+ },
435
+ },
436
+ },
437
+ "access" : "readonly",
438
+ "description" :
439
+ """A unique value for each logical storage area
440
+ contained by the host.""",
441
+ }, # column
442
+ "hrStorageType" : {
443
+ "nodetype" : "column",
444
+ "moduleName" : "HOST-RESOURCES-MIB",
445
+ "oid" : "1.3.6.1.2.1.25.2.3.1.2",
446
+ "status" : "current",
447
+ "syntax" : {
448
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
449
+ },
450
+ "access" : "readonly",
451
+ "description" :
452
+ """The type of storage represented by this entry.""",
453
+ }, # column
454
+ "hrStorageDescr" : {
455
+ "nodetype" : "column",
456
+ "moduleName" : "HOST-RESOURCES-MIB",
457
+ "oid" : "1.3.6.1.2.1.25.2.3.1.3",
458
+ "status" : "current",
459
+ "syntax" : {
460
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
461
+ },
462
+ "access" : "readonly",
463
+ "description" :
464
+ """A description of the type and instance of the storage
465
+ described by this entry.""",
466
+ }, # column
467
+ "hrStorageAllocationUnits" : {
468
+ "nodetype" : "column",
469
+ "moduleName" : "HOST-RESOURCES-MIB",
470
+ "oid" : "1.3.6.1.2.1.25.2.3.1.4",
471
+ "status" : "current",
472
+ "syntax" : {
473
+ "type" : {
474
+ "basetype" : "Integer32",
475
+ "ranges" : [
476
+ {
477
+ "min" : "1",
478
+ "max" : "2147483647"
479
+ },
480
+ ],
481
+ "range" : {
482
+ "min" : "1",
483
+ "max" : "2147483647"
484
+ },
485
+ },
486
+ },
487
+ "access" : "readonly",
488
+ "units" : "Bytes",
489
+ "description" :
490
+ """The size, in bytes, of the data objects allocated
491
+ from this pool. If this entry is monitoring sectors,
492
+ blocks, buffers, or packets, for example, this number
493
+ will commonly be greater than one. Otherwise this
494
+ number will typically be one.""",
495
+ }, # column
496
+ "hrStorageSize" : {
497
+ "nodetype" : "column",
498
+ "moduleName" : "HOST-RESOURCES-MIB",
499
+ "oid" : "1.3.6.1.2.1.25.2.3.1.5",
500
+ "status" : "current",
501
+ "syntax" : {
502
+ "type" : {
503
+ "basetype" : "Integer32",
504
+ "ranges" : [
505
+ {
506
+ "min" : "0",
507
+ "max" : "2147483647"
508
+ },
509
+ ],
510
+ "range" : {
511
+ "min" : "0",
512
+ "max" : "2147483647"
513
+ },
514
+ },
515
+ },
516
+ "access" : "readwrite",
517
+ "description" :
518
+ """The size of the storage represented by this entry, in
519
+ units of hrStorageAllocationUnits. This object is
520
+ writable to allow remote configuration of the size of
521
+ the storage area in those cases where such an
522
+ operation makes sense and is possible on the
523
+ underlying system. For example, the amount of main
524
+ memory allocated to a buffer pool might be modified or
525
+ the amount of disk space allocated to virtual memory
526
+ might be modified.""",
527
+ }, # column
528
+ "hrStorageUsed" : {
529
+ "nodetype" : "column",
530
+ "moduleName" : "HOST-RESOURCES-MIB",
531
+ "oid" : "1.3.6.1.2.1.25.2.3.1.6",
532
+ "status" : "current",
533
+ "syntax" : {
534
+ "type" : {
535
+ "basetype" : "Integer32",
536
+ "ranges" : [
537
+ {
538
+ "min" : "0",
539
+ "max" : "2147483647"
540
+ },
541
+ ],
542
+ "range" : {
543
+ "min" : "0",
544
+ "max" : "2147483647"
545
+ },
546
+ },
547
+ },
548
+ "access" : "readonly",
549
+ "description" :
550
+ """The amount of the storage represented by this entry
551
+ that is allocated, in units of
552
+ hrStorageAllocationUnits.""",
553
+ }, # column
554
+ "hrStorageAllocationFailures" : {
555
+ "nodetype" : "column",
556
+ "moduleName" : "HOST-RESOURCES-MIB",
557
+ "oid" : "1.3.6.1.2.1.25.2.3.1.7",
558
+ "status" : "current",
559
+ "syntax" : {
560
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
561
+ },
562
+ "access" : "readonly",
563
+ "description" :
564
+ """The number of requests for storage represented by
565
+ this entry that could not be honored due to not enough
566
+ storage. It should be noted that as this object has a
567
+ SYNTAX of Counter32, that it does not have a defined
568
+ initial value. However, it is recommended that this
569
+ object be initialized to zero, even though management
570
+ stations must not depend on such an initialization.""",
571
+ }, # column
572
+ "hrDevice" : {
573
+ "nodetype" : "node",
574
+ "moduleName" : "HOST-RESOURCES-MIB",
575
+ "oid" : "1.3.6.1.2.1.25.3",
576
+ }, # node
577
+ "hrDeviceTypes" : {
578
+ "nodetype" : "node",
579
+ "moduleName" : "HOST-RESOURCES-MIB",
580
+ "oid" : "1.3.6.1.2.1.25.3.1",
581
+ }, # node
582
+ "hrDeviceTable" : {
583
+ "nodetype" : "table",
584
+ "moduleName" : "HOST-RESOURCES-MIB",
585
+ "oid" : "1.3.6.1.2.1.25.3.2",
586
+ "status" : "current",
587
+ "description" :
588
+ """The (conceptual) table of devices contained by the
589
+ host.""",
590
+ }, # table
591
+ "hrDeviceEntry" : {
592
+ "nodetype" : "row",
593
+ "moduleName" : "HOST-RESOURCES-MIB",
594
+ "oid" : "1.3.6.1.2.1.25.3.2.1",
595
+ "status" : "current",
596
+ "linkage" : [
597
+ "hrDeviceIndex",
598
+ ],
599
+ "description" :
600
+ """A (conceptual) entry for one device contained by the
601
+ host. As an example, an instance of the hrDeviceType
602
+ object might be named hrDeviceType.3""",
603
+ }, # row
604
+ "hrDeviceIndex" : {
605
+ "nodetype" : "column",
606
+ "moduleName" : "HOST-RESOURCES-MIB",
607
+ "oid" : "1.3.6.1.2.1.25.3.2.1.1",
608
+ "status" : "current",
609
+ "syntax" : {
610
+ "type" : {
611
+ "basetype" : "Integer32",
612
+ "ranges" : [
613
+ {
614
+ "min" : "1",
615
+ "max" : "2147483647"
616
+ },
617
+ ],
618
+ "range" : {
619
+ "min" : "1",
620
+ "max" : "2147483647"
621
+ },
622
+ },
623
+ },
624
+ "access" : "readonly",
625
+ "description" :
626
+ """A unique value for each device contained by the host.
627
+ The value for each device must remain constant at
628
+ least from one re-initialization of the agent to the
629
+ next re-initialization.""",
630
+ }, # column
631
+ "hrDeviceType" : {
632
+ "nodetype" : "column",
633
+ "moduleName" : "HOST-RESOURCES-MIB",
634
+ "oid" : "1.3.6.1.2.1.25.3.2.1.2",
635
+ "status" : "current",
636
+ "syntax" : {
637
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
638
+ },
639
+ "access" : "readonly",
640
+ "description" :
641
+ """An indication of the type of device.
642
+
643
+ If this value is
644
+ `hrDeviceProcessor { hrDeviceTypes 3 }' then an entry
645
+ exists in the hrProcessorTable which corresponds to
646
+ this device.
647
+
648
+ If this value is
649
+ `hrDeviceNetwork { hrDeviceTypes 4 }', then an entry
650
+ exists in the hrNetworkTable which corresponds to this
651
+ device.
652
+
653
+ If this value is
654
+ `hrDevicePrinter { hrDeviceTypes 5 }', then an entry
655
+ exists in the hrPrinterTable which corresponds to this
656
+ device.
657
+
658
+ If this value is
659
+ `hrDeviceDiskStorage { hrDeviceTypes 6 }', then an
660
+ entry exists in the hrDiskStorageTable which
661
+ corresponds to this device.""",
662
+ }, # column
663
+ "hrDeviceDescr" : {
664
+ "nodetype" : "column",
665
+ "moduleName" : "HOST-RESOURCES-MIB",
666
+ "oid" : "1.3.6.1.2.1.25.3.2.1.3",
667
+ "status" : "current",
668
+ "syntax" : {
669
+ "type" : {
670
+ "basetype" : "OctetString",
671
+ "parent module" : {
672
+ "name" : "SNMPv2-TC",
673
+ "type" : "DisplayString",
674
+ },
675
+ "ranges" : [
676
+ {
677
+ "min" : "0",
678
+ "max" : "64"
679
+ },
680
+ ],
681
+ "range" : {
682
+ "min" : "0",
683
+ "max" : "64"
684
+ },
685
+ },
686
+ },
687
+ "access" : "readonly",
688
+ "description" :
689
+ """A textual description of this device, including the
690
+ device's manufacturer and revision, and optionally,
691
+ its serial number.""",
692
+ }, # column
693
+ "hrDeviceID" : {
694
+ "nodetype" : "column",
695
+ "moduleName" : "HOST-RESOURCES-MIB",
696
+ "oid" : "1.3.6.1.2.1.25.3.2.1.4",
697
+ "status" : "current",
698
+ "syntax" : {
699
+ "type" : { "module" :"HOST-RESOURCES-MIB", "name" : "ProductID"},
700
+ },
701
+ "access" : "readonly",
702
+ "description" :
703
+ """The product ID for this device.""",
704
+ }, # column
705
+ "hrDeviceStatus" : {
706
+ "nodetype" : "column",
707
+ "moduleName" : "HOST-RESOURCES-MIB",
708
+ "oid" : "1.3.6.1.2.1.25.3.2.1.5",
709
+ "status" : "current",
710
+ "syntax" : {
711
+ "type" : {
712
+ "basetype" : "Enumeration",
713
+ "unknown" : {
714
+ "nodetype" : "namednumber",
715
+ "number" : "1"
716
+ },
717
+ "running" : {
718
+ "nodetype" : "namednumber",
719
+ "number" : "2"
720
+ },
721
+ "warning" : {
722
+ "nodetype" : "namednumber",
723
+ "number" : "3"
724
+ },
725
+ "testing" : {
726
+ "nodetype" : "namednumber",
727
+ "number" : "4"
728
+ },
729
+ "down" : {
730
+ "nodetype" : "namednumber",
731
+ "number" : "5"
732
+ },
733
+ },
734
+ },
735
+ "access" : "readonly",
736
+ "description" :
737
+ """The current operational state of the device described
738
+ by this row of the table. A value unknown(1)
739
+ indicates that the current state of the device is
740
+ unknown. running(2) indicates that the device is up
741
+ and running and that no unusual error conditions are
742
+ known. The warning(3) state indicates that agent has
743
+ been informed of an unusual error condition by the
744
+ operational software (e.g., a disk device driver) but
745
+ that the device is still 'operational'. An example
746
+ would be a high number of soft errors on a disk. A
747
+ value of testing(4), indicates that the device is not
748
+ available for use because it is in the testing state.
749
+ The state of down(5) is used only when the agent has
750
+ been informed that the device is not available for any
751
+ use.""",
752
+ }, # column
753
+ "hrDeviceErrors" : {
754
+ "nodetype" : "column",
755
+ "moduleName" : "HOST-RESOURCES-MIB",
756
+ "oid" : "1.3.6.1.2.1.25.3.2.1.6",
757
+ "status" : "current",
758
+ "syntax" : {
759
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
760
+ },
761
+ "access" : "readonly",
762
+ "description" :
763
+ """The number of errors detected on this device. It
764
+ should be noted that as this object has a SYNTAX of
765
+ Counter32, that it does not have a defined initial
766
+ value. However, it is recommended that this object be
767
+ initialized to zero, even though management stations
768
+ must not depend on such an initialization.""",
769
+ }, # column
770
+ "hrProcessorTable" : {
771
+ "nodetype" : "table",
772
+ "moduleName" : "HOST-RESOURCES-MIB",
773
+ "oid" : "1.3.6.1.2.1.25.3.3",
774
+ "status" : "current",
775
+ "description" :
776
+ """The (conceptual) table of processors contained by the
777
+ host.
778
+
779
+ Note that this table is potentially sparse: a
780
+ (conceptual) entry exists only if the correspondent
781
+ value of the hrDeviceType object is
782
+ `hrDeviceProcessor'.""",
783
+ }, # table
784
+ "hrProcessorEntry" : {
785
+ "nodetype" : "row",
786
+ "moduleName" : "HOST-RESOURCES-MIB",
787
+ "oid" : "1.3.6.1.2.1.25.3.3.1",
788
+ "status" : "current",
789
+ "linkage" : [
790
+ "hrDeviceIndex",
791
+ ],
792
+ "description" :
793
+ """A (conceptual) entry for one processor contained by
794
+ the host. The hrDeviceIndex in the index represents
795
+ the entry in the hrDeviceTable that corresponds to the
796
+ hrProcessorEntry.
797
+
798
+ As an example of how objects in this table are named,
799
+ an instance of the hrProcessorFrwID object might be
800
+ named hrProcessorFrwID.3""",
801
+ }, # row
802
+ "hrProcessorFrwID" : {
803
+ "nodetype" : "column",
804
+ "moduleName" : "HOST-RESOURCES-MIB",
805
+ "oid" : "1.3.6.1.2.1.25.3.3.1.1",
806
+ "status" : "current",
807
+ "syntax" : {
808
+ "type" : { "module" :"HOST-RESOURCES-MIB", "name" : "ProductID"},
809
+ },
810
+ "access" : "readonly",
811
+ "description" :
812
+ """The product ID of the firmware associated with the
813
+ processor.""",
814
+ }, # column
815
+ "hrProcessorLoad" : {
816
+ "nodetype" : "column",
817
+ "moduleName" : "HOST-RESOURCES-MIB",
818
+ "oid" : "1.3.6.1.2.1.25.3.3.1.2",
819
+ "status" : "current",
820
+ "syntax" : {
821
+ "type" : {
822
+ "basetype" : "Integer32",
823
+ "ranges" : [
824
+ {
825
+ "min" : "0",
826
+ "max" : "100"
827
+ },
828
+ ],
829
+ "range" : {
830
+ "min" : "0",
831
+ "max" : "100"
832
+ },
833
+ },
834
+ },
835
+ "access" : "readonly",
836
+ "description" :
837
+ """The average, over the last minute, of the percentage
838
+ of time that this processor was not idle.
839
+ Implementations may approximate this one minute
840
+ smoothing period if necessary.""",
841
+ }, # column
842
+ "hrNetworkTable" : {
843
+ "nodetype" : "table",
844
+ "moduleName" : "HOST-RESOURCES-MIB",
845
+ "oid" : "1.3.6.1.2.1.25.3.4",
846
+ "status" : "current",
847
+ "description" :
848
+ """The (conceptual) table of network devices contained
849
+ by the host.
850
+ Note that this table is potentially sparse: a
851
+ (conceptual) entry exists only if the correspondent
852
+ value of the hrDeviceType object is
853
+ `hrDeviceNetwork'.""",
854
+ }, # table
855
+ "hrNetworkEntry" : {
856
+ "nodetype" : "row",
857
+ "moduleName" : "HOST-RESOURCES-MIB",
858
+ "oid" : "1.3.6.1.2.1.25.3.4.1",
859
+ "status" : "current",
860
+ "linkage" : [
861
+ "hrDeviceIndex",
862
+ ],
863
+ "description" :
864
+ """A (conceptual) entry for one network device contained
865
+ by the host. The hrDeviceIndex in the index
866
+ represents the entry in the hrDeviceTable that
867
+ corresponds to the hrNetworkEntry.
868
+
869
+ As an example of how objects in this table are named,
870
+ an instance of the hrNetworkIfIndex object might be
871
+ named hrNetworkIfIndex.3""",
872
+ }, # row
873
+ "hrNetworkIfIndex" : {
874
+ "nodetype" : "column",
875
+ "moduleName" : "HOST-RESOURCES-MIB",
876
+ "oid" : "1.3.6.1.2.1.25.3.4.1.1",
877
+ "status" : "current",
878
+ "syntax" : {
879
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
880
+ },
881
+ "access" : "readonly",
882
+ "description" :
883
+ """The value of ifIndex which corresponds to this
884
+ network device. If this device is not represented in
885
+ the ifTable, then this value shall be zero.""",
886
+ }, # column
887
+ "hrPrinterTable" : {
888
+ "nodetype" : "table",
889
+ "moduleName" : "HOST-RESOURCES-MIB",
890
+ "oid" : "1.3.6.1.2.1.25.3.5",
891
+ "status" : "current",
892
+ "description" :
893
+ """The (conceptual) table of printers local to the host.
894
+
895
+ Note that this table is potentially sparse: a
896
+ (conceptual) entry exists only if the correspondent
897
+ value of the hrDeviceType object is
898
+ `hrDevicePrinter'.""",
899
+ }, # table
900
+ "hrPrinterEntry" : {
901
+ "nodetype" : "row",
902
+ "moduleName" : "HOST-RESOURCES-MIB",
903
+ "oid" : "1.3.6.1.2.1.25.3.5.1",
904
+ "status" : "current",
905
+ "linkage" : [
906
+ "hrDeviceIndex",
907
+ ],
908
+ "description" :
909
+ """A (conceptual) entry for one printer local to the
910
+ host. The hrDeviceIndex in the index represents the
911
+ entry in the hrDeviceTable that corresponds to the
912
+ hrPrinterEntry.
913
+
914
+ As an example of how objects in this table are named,
915
+ an instance of the hrPrinterStatus object might be
916
+ named hrPrinterStatus.3""",
917
+ }, # row
918
+ "hrPrinterStatus" : {
919
+ "nodetype" : "column",
920
+ "moduleName" : "HOST-RESOURCES-MIB",
921
+ "oid" : "1.3.6.1.2.1.25.3.5.1.1",
922
+ "status" : "current",
923
+ "syntax" : {
924
+ "type" : {
925
+ "basetype" : "Enumeration",
926
+ "other" : {
927
+ "nodetype" : "namednumber",
928
+ "number" : "1"
929
+ },
930
+ "unknown" : {
931
+ "nodetype" : "namednumber",
932
+ "number" : "2"
933
+ },
934
+ "idle" : {
935
+ "nodetype" : "namednumber",
936
+ "number" : "3"
937
+ },
938
+ "printing" : {
939
+ "nodetype" : "namednumber",
940
+ "number" : "4"
941
+ },
942
+ "warmup" : {
943
+ "nodetype" : "namednumber",
944
+ "number" : "5"
945
+ },
946
+ },
947
+ },
948
+ "access" : "readonly",
949
+ "description" :
950
+ """The current status of this printer device.""",
951
+ }, # column
952
+ "hrPrinterDetectedErrorState" : {
953
+ "nodetype" : "column",
954
+ "moduleName" : "HOST-RESOURCES-MIB",
955
+ "oid" : "1.3.6.1.2.1.25.3.5.1.2",
956
+ "status" : "current",
957
+ "syntax" : {
958
+ "type" : { "module" :"", "name" : "OctetString"},
959
+ },
960
+ "access" : "readonly",
961
+ "description" :
962
+ """This object represents any error conditions detected
963
+ by the printer. The error conditions are encoded as
964
+ bits in an octet string, with the following
965
+ definitions:
966
+
967
+ Condition Bit #
968
+
969
+ lowPaper 0
970
+ noPaper 1
971
+ lowToner 2
972
+ noToner 3
973
+ doorOpen 4
974
+ jammed 5
975
+ offline 6
976
+ serviceRequested 7
977
+ inputTrayMissing 8
978
+ outputTrayMissing 9
979
+ markerSupplyMissing 10
980
+ outputNearFull 11
981
+ outputFull 12
982
+ inputTrayEmpty 13
983
+ overduePreventMaint 14
984
+
985
+ Bits are numbered starting with the most significant
986
+ bit of the first byte being bit 0, the least
987
+ significant bit of the first byte being bit 7, the
988
+ most significant bit of the second byte being bit 8,
989
+ and so on. A one bit encodes that the condition was
990
+ detected, while a zero bit encodes that the condition
991
+ was not detected.
992
+
993
+ This object is useful for alerting an operator to
994
+ specific warning or error conditions that may occur,
995
+ especially those requiring human intervention.""",
996
+ }, # column
997
+ "hrDiskStorageTable" : {
998
+ "nodetype" : "table",
999
+ "moduleName" : "HOST-RESOURCES-MIB",
1000
+ "oid" : "1.3.6.1.2.1.25.3.6",
1001
+ "status" : "current",
1002
+ "description" :
1003
+ """The (conceptual) table of long-term storage devices
1004
+ contained by the host. In particular, disk devices
1005
+ accessed remotely over a network are not included
1006
+ here.
1007
+
1008
+ Note that this table is potentially sparse: a
1009
+ (conceptual) entry exists only if the correspondent
1010
+ value of the hrDeviceType object is
1011
+ `hrDeviceDiskStorage'.""",
1012
+ }, # table
1013
+ "hrDiskStorageEntry" : {
1014
+ "nodetype" : "row",
1015
+ "moduleName" : "HOST-RESOURCES-MIB",
1016
+ "oid" : "1.3.6.1.2.1.25.3.6.1",
1017
+ "status" : "current",
1018
+ "linkage" : [
1019
+ "hrDeviceIndex",
1020
+ ],
1021
+ "description" :
1022
+ """A (conceptual) entry for one long-term storage device
1023
+ contained by the host. The hrDeviceIndex in the index
1024
+ represents the entry in the hrDeviceTable that
1025
+ corresponds to the hrDiskStorageEntry. As an example,
1026
+ an instance of the hrDiskStorageCapacity object might
1027
+ be named hrDiskStorageCapacity.3""",
1028
+ }, # row
1029
+ "hrDiskStorageAccess" : {
1030
+ "nodetype" : "column",
1031
+ "moduleName" : "HOST-RESOURCES-MIB",
1032
+ "oid" : "1.3.6.1.2.1.25.3.6.1.1",
1033
+ "status" : "current",
1034
+ "syntax" : {
1035
+ "type" : {
1036
+ "basetype" : "Enumeration",
1037
+ "readWrite" : {
1038
+ "nodetype" : "namednumber",
1039
+ "number" : "1"
1040
+ },
1041
+ "readOnly" : {
1042
+ "nodetype" : "namednumber",
1043
+ "number" : "2"
1044
+ },
1045
+ },
1046
+ },
1047
+ "access" : "readonly",
1048
+ "description" :
1049
+ """An indication if this long-term storage device is
1050
+ readable and writable or only readable. This should
1051
+ reflect the media type, any write-protect mechanism,
1052
+ and any device configuration that affects the entire
1053
+ device.""",
1054
+ }, # column
1055
+ "hrDiskStorageMedia" : {
1056
+ "nodetype" : "column",
1057
+ "moduleName" : "HOST-RESOURCES-MIB",
1058
+ "oid" : "1.3.6.1.2.1.25.3.6.1.2",
1059
+ "status" : "current",
1060
+ "syntax" : {
1061
+ "type" : {
1062
+ "basetype" : "Enumeration",
1063
+ "other" : {
1064
+ "nodetype" : "namednumber",
1065
+ "number" : "1"
1066
+ },
1067
+ "unknown" : {
1068
+ "nodetype" : "namednumber",
1069
+ "number" : "2"
1070
+ },
1071
+ "hardDisk" : {
1072
+ "nodetype" : "namednumber",
1073
+ "number" : "3"
1074
+ },
1075
+ "floppyDisk" : {
1076
+ "nodetype" : "namednumber",
1077
+ "number" : "4"
1078
+ },
1079
+ "opticalDiskROM" : {
1080
+ "nodetype" : "namednumber",
1081
+ "number" : "5"
1082
+ },
1083
+ "opticalDiskWORM" : {
1084
+ "nodetype" : "namednumber",
1085
+ "number" : "6"
1086
+ },
1087
+ "opticalDiskRW" : {
1088
+ "nodetype" : "namednumber",
1089
+ "number" : "7"
1090
+ },
1091
+ "ramDisk" : {
1092
+ "nodetype" : "namednumber",
1093
+ "number" : "8"
1094
+ },
1095
+ },
1096
+ },
1097
+ "access" : "readonly",
1098
+ "description" :
1099
+ """An indication of the type of media used in this long-
1100
+ term storage device.""",
1101
+ }, # column
1102
+ "hrDiskStorageRemoveble" : {
1103
+ "nodetype" : "column",
1104
+ "moduleName" : "HOST-RESOURCES-MIB",
1105
+ "oid" : "1.3.6.1.2.1.25.3.6.1.3",
1106
+ "status" : "current",
1107
+ "syntax" : {
1108
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1109
+ },
1110
+ "access" : "readonly",
1111
+ "description" :
1112
+ """Denotes whether or not the disk media may be removed
1113
+ from the drive.""",
1114
+ }, # column
1115
+ "hrDiskStorageCapacity" : {
1116
+ "nodetype" : "column",
1117
+ "moduleName" : "HOST-RESOURCES-MIB",
1118
+ "oid" : "1.3.6.1.2.1.25.3.6.1.4",
1119
+ "status" : "current",
1120
+ "syntax" : {
1121
+ "type" : { "module" :"HOST-RESOURCES-MIB", "name" : "KBytes"},
1122
+ },
1123
+ "access" : "readonly",
1124
+ "units" : "KBytes",
1125
+ "description" :
1126
+ """The total size for this long-term storage device. If
1127
+ the media is removable and is currently removed, this
1128
+ value should be zero.""",
1129
+ }, # column
1130
+ "hrPartitionTable" : {
1131
+ "nodetype" : "table",
1132
+ "moduleName" : "HOST-RESOURCES-MIB",
1133
+ "oid" : "1.3.6.1.2.1.25.3.7",
1134
+ "status" : "current",
1135
+ "description" :
1136
+ """The (conceptual) table of partitions for long-term
1137
+ storage devices contained by the host. In particular,
1138
+ partitions accessed remotely over a network are not
1139
+ included here.""",
1140
+ }, # table
1141
+ "hrPartitionEntry" : {
1142
+ "nodetype" : "row",
1143
+ "moduleName" : "HOST-RESOURCES-MIB",
1144
+ "oid" : "1.3.6.1.2.1.25.3.7.1",
1145
+ "status" : "current",
1146
+ "linkage" : [
1147
+ "hrDeviceIndex",
1148
+ "hrPartitionIndex",
1149
+ ],
1150
+ "description" :
1151
+ """A (conceptual) entry for one partition. The
1152
+ hrDeviceIndex in the index represents the entry in the
1153
+ hrDeviceTable that corresponds to the
1154
+ hrPartitionEntry.
1155
+
1156
+ As an example of how objects in this table are named,
1157
+ an instance of the hrPartitionSize object might be
1158
+ named hrPartitionSize.3.1""",
1159
+ }, # row
1160
+ "hrPartitionIndex" : {
1161
+ "nodetype" : "column",
1162
+ "moduleName" : "HOST-RESOURCES-MIB",
1163
+ "oid" : "1.3.6.1.2.1.25.3.7.1.1",
1164
+ "status" : "current",
1165
+ "syntax" : {
1166
+ "type" : {
1167
+ "basetype" : "Integer32",
1168
+ "ranges" : [
1169
+ {
1170
+ "min" : "1",
1171
+ "max" : "2147483647"
1172
+ },
1173
+ ],
1174
+ "range" : {
1175
+ "min" : "1",
1176
+ "max" : "2147483647"
1177
+ },
1178
+ },
1179
+ },
1180
+ "access" : "readonly",
1181
+ "description" :
1182
+ """A unique value for each partition on this long-term
1183
+ storage device. The value for each long-term storage
1184
+ device must remain constant at least from one re-
1185
+ initialization of the agent to the next re-
1186
+ initialization.""",
1187
+ }, # column
1188
+ "hrPartitionLabel" : {
1189
+ "nodetype" : "column",
1190
+ "moduleName" : "HOST-RESOURCES-MIB",
1191
+ "oid" : "1.3.6.1.2.1.25.3.7.1.2",
1192
+ "status" : "current",
1193
+ "syntax" : {
1194
+ "type" : {
1195
+ "basetype" : "OctetString",
1196
+ "parent module" : {
1197
+ "name" : "HOST-RESOURCES-MIB",
1198
+ "type" : "InternationalDisplayString",
1199
+ },
1200
+ "ranges" : [
1201
+ {
1202
+ "min" : "0",
1203
+ "max" : "128"
1204
+ },
1205
+ ],
1206
+ "range" : {
1207
+ "min" : "0",
1208
+ "max" : "128"
1209
+ },
1210
+ },
1211
+ },
1212
+ "access" : "readonly",
1213
+ "description" :
1214
+ """A textual description of this partition.""",
1215
+ }, # column
1216
+ "hrPartitionID" : {
1217
+ "nodetype" : "column",
1218
+ "moduleName" : "HOST-RESOURCES-MIB",
1219
+ "oid" : "1.3.6.1.2.1.25.3.7.1.3",
1220
+ "status" : "current",
1221
+ "syntax" : {
1222
+ "type" : { "module" :"", "name" : "OctetString"},
1223
+ },
1224
+ "access" : "readonly",
1225
+ "description" :
1226
+ """A descriptor which uniquely represents this partition
1227
+ to the responsible operating system. On some systems,
1228
+ this might take on a binary representation.""",
1229
+ }, # column
1230
+ "hrPartitionSize" : {
1231
+ "nodetype" : "column",
1232
+ "moduleName" : "HOST-RESOURCES-MIB",
1233
+ "oid" : "1.3.6.1.2.1.25.3.7.1.4",
1234
+ "status" : "current",
1235
+ "syntax" : {
1236
+ "type" : { "module" :"HOST-RESOURCES-MIB", "name" : "KBytes"},
1237
+ },
1238
+ "access" : "readonly",
1239
+ "units" : "KBytes",
1240
+ "description" :
1241
+ """The size of this partition.""",
1242
+ }, # column
1243
+ "hrPartitionFSIndex" : {
1244
+ "nodetype" : "column",
1245
+ "moduleName" : "HOST-RESOURCES-MIB",
1246
+ "oid" : "1.3.6.1.2.1.25.3.7.1.5",
1247
+ "status" : "current",
1248
+ "syntax" : {
1249
+ "type" : {
1250
+ "basetype" : "Integer32",
1251
+ "ranges" : [
1252
+ {
1253
+ "min" : "0",
1254
+ "max" : "2147483647"
1255
+ },
1256
+ ],
1257
+ "range" : {
1258
+ "min" : "0",
1259
+ "max" : "2147483647"
1260
+ },
1261
+ },
1262
+ },
1263
+ "access" : "readonly",
1264
+ "description" :
1265
+ """The index of the file system mounted on this
1266
+ partition. If no file system is mounted on this
1267
+ partition, then this value shall be zero. Note that
1268
+ multiple partitions may point to one file system,
1269
+ denoting that that file system resides on those
1270
+ partitions. Multiple file systems may not reside on
1271
+ one partition.""",
1272
+ }, # column
1273
+ "hrFSTable" : {
1274
+ "nodetype" : "table",
1275
+ "moduleName" : "HOST-RESOURCES-MIB",
1276
+ "oid" : "1.3.6.1.2.1.25.3.8",
1277
+ "status" : "current",
1278
+ "description" :
1279
+ """The (conceptual) table of file systems local to this
1280
+ host or remotely mounted from a file server. File
1281
+ systems that are in only one user's environment on a
1282
+ multi-user system will not be included in this table.""",
1283
+ }, # table
1284
+ "hrFSEntry" : {
1285
+ "nodetype" : "row",
1286
+ "moduleName" : "HOST-RESOURCES-MIB",
1287
+ "oid" : "1.3.6.1.2.1.25.3.8.1",
1288
+ "status" : "current",
1289
+ "linkage" : [
1290
+ "hrFSIndex",
1291
+ ],
1292
+ "description" :
1293
+ """A (conceptual) entry for one file system local to
1294
+ this host or remotely mounted from a file server.
1295
+ File systems that are in only one user's environment
1296
+ on a multi-user system will not be included in this
1297
+ table.
1298
+
1299
+ As an example of how objects in this table are named,
1300
+ an instance of the hrFSMountPoint object might be
1301
+ named hrFSMountPoint.3""",
1302
+ }, # row
1303
+ "hrFSIndex" : {
1304
+ "nodetype" : "column",
1305
+ "moduleName" : "HOST-RESOURCES-MIB",
1306
+ "oid" : "1.3.6.1.2.1.25.3.8.1.1",
1307
+ "status" : "current",
1308
+ "syntax" : {
1309
+ "type" : {
1310
+ "basetype" : "Integer32",
1311
+ "ranges" : [
1312
+ {
1313
+ "min" : "1",
1314
+ "max" : "2147483647"
1315
+ },
1316
+ ],
1317
+ "range" : {
1318
+ "min" : "1",
1319
+ "max" : "2147483647"
1320
+ },
1321
+ },
1322
+ },
1323
+ "access" : "readonly",
1324
+ "description" :
1325
+ """A unique value for each file system local to this
1326
+ host. The value for each file system must remain
1327
+ constant at least from one re-initialization of the
1328
+ agent to the next re-initialization.""",
1329
+ }, # column
1330
+ "hrFSMountPoint" : {
1331
+ "nodetype" : "column",
1332
+ "moduleName" : "HOST-RESOURCES-MIB",
1333
+ "oid" : "1.3.6.1.2.1.25.3.8.1.2",
1334
+ "status" : "current",
1335
+ "syntax" : {
1336
+ "type" : {
1337
+ "basetype" : "OctetString",
1338
+ "parent module" : {
1339
+ "name" : "HOST-RESOURCES-MIB",
1340
+ "type" : "InternationalDisplayString",
1341
+ },
1342
+ "ranges" : [
1343
+ {
1344
+ "min" : "0",
1345
+ "max" : "128"
1346
+ },
1347
+ ],
1348
+ "range" : {
1349
+ "min" : "0",
1350
+ "max" : "128"
1351
+ },
1352
+ },
1353
+ },
1354
+ "access" : "readonly",
1355
+ "description" :
1356
+ """The path name of the root of this file system.""",
1357
+ }, # column
1358
+ "hrFSRemoteMountPoint" : {
1359
+ "nodetype" : "column",
1360
+ "moduleName" : "HOST-RESOURCES-MIB",
1361
+ "oid" : "1.3.6.1.2.1.25.3.8.1.3",
1362
+ "status" : "current",
1363
+ "syntax" : {
1364
+ "type" : {
1365
+ "basetype" : "OctetString",
1366
+ "parent module" : {
1367
+ "name" : "HOST-RESOURCES-MIB",
1368
+ "type" : "InternationalDisplayString",
1369
+ },
1370
+ "ranges" : [
1371
+ {
1372
+ "min" : "0",
1373
+ "max" : "128"
1374
+ },
1375
+ ],
1376
+ "range" : {
1377
+ "min" : "0",
1378
+ "max" : "128"
1379
+ },
1380
+ },
1381
+ },
1382
+ "access" : "readonly",
1383
+ "description" :
1384
+ """A description of the name and/or address of the
1385
+ server that this file system is mounted from. This
1386
+ may also include parameters such as the mount point on
1387
+ the remote file system. If this is not a remote file
1388
+ system, this string should have a length of zero.""",
1389
+ }, # column
1390
+ "hrFSType" : {
1391
+ "nodetype" : "column",
1392
+ "moduleName" : "HOST-RESOURCES-MIB",
1393
+ "oid" : "1.3.6.1.2.1.25.3.8.1.4",
1394
+ "status" : "current",
1395
+ "syntax" : {
1396
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
1397
+ },
1398
+ "access" : "readonly",
1399
+ "description" :
1400
+ """The value of this object identifies the type of this
1401
+ file system.""",
1402
+ }, # column
1403
+ "hrFSAccess" : {
1404
+ "nodetype" : "column",
1405
+ "moduleName" : "HOST-RESOURCES-MIB",
1406
+ "oid" : "1.3.6.1.2.1.25.3.8.1.5",
1407
+ "status" : "current",
1408
+ "syntax" : {
1409
+ "type" : {
1410
+ "basetype" : "Enumeration",
1411
+ "readWrite" : {
1412
+ "nodetype" : "namednumber",
1413
+ "number" : "1"
1414
+ },
1415
+ "readOnly" : {
1416
+ "nodetype" : "namednumber",
1417
+ "number" : "2"
1418
+ },
1419
+ },
1420
+ },
1421
+ "access" : "readonly",
1422
+ "description" :
1423
+ """An indication if this file system is logically
1424
+ configured by the operating system to be readable and
1425
+ writable or only readable. This does not represent
1426
+ any local access-control policy, except one that is
1427
+ applied to the file system as a whole.""",
1428
+ }, # column
1429
+ "hrFSBootable" : {
1430
+ "nodetype" : "column",
1431
+ "moduleName" : "HOST-RESOURCES-MIB",
1432
+ "oid" : "1.3.6.1.2.1.25.3.8.1.6",
1433
+ "status" : "current",
1434
+ "syntax" : {
1435
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1436
+ },
1437
+ "access" : "readonly",
1438
+ "description" :
1439
+ """A flag indicating whether this file system is
1440
+ bootable.""",
1441
+ }, # column
1442
+ "hrFSStorageIndex" : {
1443
+ "nodetype" : "column",
1444
+ "moduleName" : "HOST-RESOURCES-MIB",
1445
+ "oid" : "1.3.6.1.2.1.25.3.8.1.7",
1446
+ "status" : "current",
1447
+ "syntax" : {
1448
+ "type" : {
1449
+ "basetype" : "Integer32",
1450
+ "ranges" : [
1451
+ {
1452
+ "min" : "0",
1453
+ "max" : "2147483647"
1454
+ },
1455
+ ],
1456
+ "range" : {
1457
+ "min" : "0",
1458
+ "max" : "2147483647"
1459
+ },
1460
+ },
1461
+ },
1462
+ "access" : "readonly",
1463
+ "description" :
1464
+ """The index of the hrStorageEntry that represents
1465
+ information about this file system. If there is no
1466
+ such information available, then this value shall be
1467
+ zero. The relevant storage entry will be useful in
1468
+ tracking the percent usage of this file system and
1469
+ diagnosing errors that may occur when it runs out of
1470
+ space.""",
1471
+ }, # column
1472
+ "hrFSLastFullBackupDate" : {
1473
+ "nodetype" : "column",
1474
+ "moduleName" : "HOST-RESOURCES-MIB",
1475
+ "oid" : "1.3.6.1.2.1.25.3.8.1.8",
1476
+ "status" : "current",
1477
+ "syntax" : {
1478
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1479
+ },
1480
+ "access" : "readwrite",
1481
+ "description" :
1482
+ """The last date at which this complete file system was
1483
+ copied to another storage device for backup. This
1484
+ information is useful for ensuring that backups are
1485
+ being performed regularly.
1486
+
1487
+ If this information is not known, then this variable
1488
+ shall have the value corresponding to January 1, year
1489
+ 0000, 00:00:00.0, which is encoded as
1490
+ (hex)'00 00 01 01 00 00 00 00'.""",
1491
+ }, # column
1492
+ "hrFSLastPartialBackupDate" : {
1493
+ "nodetype" : "column",
1494
+ "moduleName" : "HOST-RESOURCES-MIB",
1495
+ "oid" : "1.3.6.1.2.1.25.3.8.1.9",
1496
+ "status" : "current",
1497
+ "syntax" : {
1498
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1499
+ },
1500
+ "access" : "readwrite",
1501
+ "description" :
1502
+ """The last date at which a portion of this file system
1503
+ was copied to another storage device for backup. This
1504
+ information is useful for ensuring that backups are
1505
+ being performed regularly.
1506
+
1507
+ If this information is not known, then this variable
1508
+ shall have the value corresponding to January 1, year
1509
+ 0000, 00:00:00.0, which is encoded as
1510
+ (hex)'00 00 01 01 00 00 00 00'.""",
1511
+ }, # column
1512
+ "hrFSTypes" : {
1513
+ "nodetype" : "node",
1514
+ "moduleName" : "HOST-RESOURCES-MIB",
1515
+ "oid" : "1.3.6.1.2.1.25.3.9",
1516
+ }, # node
1517
+ "hrSWRun" : {
1518
+ "nodetype" : "node",
1519
+ "moduleName" : "HOST-RESOURCES-MIB",
1520
+ "oid" : "1.3.6.1.2.1.25.4",
1521
+ }, # node
1522
+ "hrSWOSIndex" : {
1523
+ "nodetype" : "scalar",
1524
+ "moduleName" : "HOST-RESOURCES-MIB",
1525
+ "oid" : "1.3.6.1.2.1.25.4.1",
1526
+ "status" : "current",
1527
+ "syntax" : {
1528
+ "type" : {
1529
+ "basetype" : "Integer32",
1530
+ "ranges" : [
1531
+ {
1532
+ "min" : "1",
1533
+ "max" : "2147483647"
1534
+ },
1535
+ ],
1536
+ "range" : {
1537
+ "min" : "1",
1538
+ "max" : "2147483647"
1539
+ },
1540
+ },
1541
+ },
1542
+ "access" : "readonly",
1543
+ "description" :
1544
+ """The value of the hrSWRunIndex for the hrSWRunEntry
1545
+ that represents the primary operating system running
1546
+ on this host. This object is useful for quickly and
1547
+ uniquely identifying that primary operating system.""",
1548
+ }, # scalar
1549
+ "hrSWRunTable" : {
1550
+ "nodetype" : "table",
1551
+ "moduleName" : "HOST-RESOURCES-MIB",
1552
+ "oid" : "1.3.6.1.2.1.25.4.2",
1553
+ "status" : "current",
1554
+ "description" :
1555
+ """The (conceptual) table of software running on the
1556
+ host.""",
1557
+ }, # table
1558
+ "hrSWRunEntry" : {
1559
+ "nodetype" : "row",
1560
+ "moduleName" : "HOST-RESOURCES-MIB",
1561
+ "oid" : "1.3.6.1.2.1.25.4.2.1",
1562
+ "status" : "current",
1563
+ "linkage" : [
1564
+ "hrSWRunIndex",
1565
+ ],
1566
+ "description" :
1567
+ """A (conceptual) entry for one piece of software
1568
+ running on the host Note that because the installed
1569
+ software table only contains information for software
1570
+ stored locally on this host, not every piece of
1571
+ running software will be found in the installed
1572
+ software table. This is true of software that was
1573
+ loaded and run from a non-local source, such as a
1574
+ network-mounted file system.
1575
+
1576
+ As an example of how objects in this table are named,
1577
+ an instance of the hrSWRunName object might be named
1578
+ hrSWRunName.1287""",
1579
+ }, # row
1580
+ "hrSWRunIndex" : {
1581
+ "nodetype" : "column",
1582
+ "moduleName" : "HOST-RESOURCES-MIB",
1583
+ "oid" : "1.3.6.1.2.1.25.4.2.1.1",
1584
+ "status" : "current",
1585
+ "syntax" : {
1586
+ "type" : {
1587
+ "basetype" : "Integer32",
1588
+ "ranges" : [
1589
+ {
1590
+ "min" : "1",
1591
+ "max" : "2147483647"
1592
+ },
1593
+ ],
1594
+ "range" : {
1595
+ "min" : "1",
1596
+ "max" : "2147483647"
1597
+ },
1598
+ },
1599
+ },
1600
+ "access" : "readonly",
1601
+ "description" :
1602
+ """A unique value for each piece of software running on
1603
+ the host. Wherever possible, this should be the
1604
+ system's native, unique identification number.""",
1605
+ }, # column
1606
+ "hrSWRunName" : {
1607
+ "nodetype" : "column",
1608
+ "moduleName" : "HOST-RESOURCES-MIB",
1609
+ "oid" : "1.3.6.1.2.1.25.4.2.1.2",
1610
+ "status" : "current",
1611
+ "syntax" : {
1612
+ "type" : {
1613
+ "basetype" : "OctetString",
1614
+ "parent module" : {
1615
+ "name" : "HOST-RESOURCES-MIB",
1616
+ "type" : "InternationalDisplayString",
1617
+ },
1618
+ "ranges" : [
1619
+ {
1620
+ "min" : "0",
1621
+ "max" : "64"
1622
+ },
1623
+ ],
1624
+ "range" : {
1625
+ "min" : "0",
1626
+ "max" : "64"
1627
+ },
1628
+ },
1629
+ },
1630
+ "access" : "readonly",
1631
+ "description" :
1632
+ """A textual description of this running piece of
1633
+ software, including the manufacturer, revision, and
1634
+ the name by which it is commonly known. If this
1635
+ software was installed locally, this should be the
1636
+ same string as used in the corresponding
1637
+ hrSWInstalledName.""",
1638
+ }, # column
1639
+ "hrSWRunID" : {
1640
+ "nodetype" : "column",
1641
+ "moduleName" : "HOST-RESOURCES-MIB",
1642
+ "oid" : "1.3.6.1.2.1.25.4.2.1.3",
1643
+ "status" : "current",
1644
+ "syntax" : {
1645
+ "type" : { "module" :"HOST-RESOURCES-MIB", "name" : "ProductID"},
1646
+ },
1647
+ "access" : "readonly",
1648
+ "description" :
1649
+ """The product ID of this running piece of software.""",
1650
+ }, # column
1651
+ "hrSWRunPath" : {
1652
+ "nodetype" : "column",
1653
+ "moduleName" : "HOST-RESOURCES-MIB",
1654
+ "oid" : "1.3.6.1.2.1.25.4.2.1.4",
1655
+ "status" : "current",
1656
+ "syntax" : {
1657
+ "type" : {
1658
+ "basetype" : "OctetString",
1659
+ "parent module" : {
1660
+ "name" : "HOST-RESOURCES-MIB",
1661
+ "type" : "InternationalDisplayString",
1662
+ },
1663
+ "ranges" : [
1664
+ {
1665
+ "min" : "0",
1666
+ "max" : "128"
1667
+ },
1668
+ ],
1669
+ "range" : {
1670
+ "min" : "0",
1671
+ "max" : "128"
1672
+ },
1673
+ },
1674
+ },
1675
+ "access" : "readonly",
1676
+ "description" :
1677
+ """A description of the location on long-term storage
1678
+ (e.g. a disk drive) from which this software was
1679
+ loaded.""",
1680
+ }, # column
1681
+ "hrSWRunParameters" : {
1682
+ "nodetype" : "column",
1683
+ "moduleName" : "HOST-RESOURCES-MIB",
1684
+ "oid" : "1.3.6.1.2.1.25.4.2.1.5",
1685
+ "status" : "current",
1686
+ "syntax" : {
1687
+ "type" : {
1688
+ "basetype" : "OctetString",
1689
+ "parent module" : {
1690
+ "name" : "HOST-RESOURCES-MIB",
1691
+ "type" : "InternationalDisplayString",
1692
+ },
1693
+ "ranges" : [
1694
+ {
1695
+ "min" : "0",
1696
+ "max" : "128"
1697
+ },
1698
+ ],
1699
+ "range" : {
1700
+ "min" : "0",
1701
+ "max" : "128"
1702
+ },
1703
+ },
1704
+ },
1705
+ "access" : "readonly",
1706
+ "description" :
1707
+ """A description of the parameters supplied to this
1708
+ software when it was initially loaded.""",
1709
+ }, # column
1710
+ "hrSWRunType" : {
1711
+ "nodetype" : "column",
1712
+ "moduleName" : "HOST-RESOURCES-MIB",
1713
+ "oid" : "1.3.6.1.2.1.25.4.2.1.6",
1714
+ "status" : "current",
1715
+ "syntax" : {
1716
+ "type" : {
1717
+ "basetype" : "Enumeration",
1718
+ "unknown" : {
1719
+ "nodetype" : "namednumber",
1720
+ "number" : "1"
1721
+ },
1722
+ "operatingSystem" : {
1723
+ "nodetype" : "namednumber",
1724
+ "number" : "2"
1725
+ },
1726
+ "deviceDriver" : {
1727
+ "nodetype" : "namednumber",
1728
+ "number" : "3"
1729
+ },
1730
+ "application" : {
1731
+ "nodetype" : "namednumber",
1732
+ "number" : "4"
1733
+ },
1734
+ },
1735
+ },
1736
+ "access" : "readonly",
1737
+ "description" :
1738
+ """The type of this software.""",
1739
+ }, # column
1740
+ "hrSWRunStatus" : {
1741
+ "nodetype" : "column",
1742
+ "moduleName" : "HOST-RESOURCES-MIB",
1743
+ "oid" : "1.3.6.1.2.1.25.4.2.1.7",
1744
+ "status" : "current",
1745
+ "syntax" : {
1746
+ "type" : {
1747
+ "basetype" : "Enumeration",
1748
+ "running" : {
1749
+ "nodetype" : "namednumber",
1750
+ "number" : "1"
1751
+ },
1752
+ "runnable" : {
1753
+ "nodetype" : "namednumber",
1754
+ "number" : "2"
1755
+ },
1756
+ "notRunnable" : {
1757
+ "nodetype" : "namednumber",
1758
+ "number" : "3"
1759
+ },
1760
+ "invalid" : {
1761
+ "nodetype" : "namednumber",
1762
+ "number" : "4"
1763
+ },
1764
+ },
1765
+ },
1766
+ "access" : "readwrite",
1767
+ "description" :
1768
+ """The status of this running piece of software.
1769
+ Setting this value to invalid(4) shall cause this
1770
+ software to stop running and to be unloaded. Sets to
1771
+ other values are not valid.""",
1772
+ }, # column
1773
+ "hrSWRunPerf" : {
1774
+ "nodetype" : "node",
1775
+ "moduleName" : "HOST-RESOURCES-MIB",
1776
+ "oid" : "1.3.6.1.2.1.25.5",
1777
+ }, # node
1778
+ "hrSWRunPerfTable" : {
1779
+ "nodetype" : "table",
1780
+ "moduleName" : "HOST-RESOURCES-MIB",
1781
+ "oid" : "1.3.6.1.2.1.25.5.1",
1782
+ "status" : "current",
1783
+ "description" :
1784
+ """The (conceptual) table of running software
1785
+ performance metrics.""",
1786
+ }, # table
1787
+ "hrSWRunPerfEntry" : {
1788
+ "nodetype" : "row",
1789
+ "moduleName" : "HOST-RESOURCES-MIB",
1790
+ "oid" : "1.3.6.1.2.1.25.5.1.1",
1791
+ "status" : "current",
1792
+ "linkage" : [
1793
+ { "HOST-RESOURCES-MIB" : {
1794
+ "indexkind" : "augments",
1795
+ "relatedNode" : "hrSWRunEntry",
1796
+ }},
1797
+ ],
1798
+ "description" :
1799
+ """A (conceptual) entry containing software performance
1800
+ metrics. As an example, an instance of the
1801
+ hrSWRunPerfCPU object might be named
1802
+ hrSWRunPerfCPU.1287""",
1803
+ }, # row
1804
+ "hrSWRunPerfCPU" : {
1805
+ "nodetype" : "column",
1806
+ "moduleName" : "HOST-RESOURCES-MIB",
1807
+ "oid" : "1.3.6.1.2.1.25.5.1.1.1",
1808
+ "status" : "current",
1809
+ "syntax" : {
1810
+ "type" : {
1811
+ "basetype" : "Integer32",
1812
+ "ranges" : [
1813
+ {
1814
+ "min" : "0",
1815
+ "max" : "2147483647"
1816
+ },
1817
+ ],
1818
+ "range" : {
1819
+ "min" : "0",
1820
+ "max" : "2147483647"
1821
+ },
1822
+ },
1823
+ },
1824
+ "access" : "readonly",
1825
+ "description" :
1826
+ """The number of centi-seconds of the total system's CPU
1827
+ resources consumed by this process. Note that on a
1828
+ multi-processor system, this value may increment by
1829
+ more than one centi-second in one centi-second of real
1830
+ (wall clock) time.""",
1831
+ }, # column
1832
+ "hrSWRunPerfMem" : {
1833
+ "nodetype" : "column",
1834
+ "moduleName" : "HOST-RESOURCES-MIB",
1835
+ "oid" : "1.3.6.1.2.1.25.5.1.1.2",
1836
+ "status" : "current",
1837
+ "syntax" : {
1838
+ "type" : { "module" :"HOST-RESOURCES-MIB", "name" : "KBytes"},
1839
+ },
1840
+ "access" : "readonly",
1841
+ "units" : "KBytes",
1842
+ "description" :
1843
+ """The total amount of real system memory allocated to
1844
+ this process.""",
1845
+ }, # column
1846
+ "hrSWInstalled" : {
1847
+ "nodetype" : "node",
1848
+ "moduleName" : "HOST-RESOURCES-MIB",
1849
+ "oid" : "1.3.6.1.2.1.25.6",
1850
+ }, # node
1851
+ "hrSWInstalledLastChange" : {
1852
+ "nodetype" : "scalar",
1853
+ "moduleName" : "HOST-RESOURCES-MIB",
1854
+ "oid" : "1.3.6.1.2.1.25.6.1",
1855
+ "status" : "current",
1856
+ "syntax" : {
1857
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1858
+ },
1859
+ "access" : "readonly",
1860
+ "description" :
1861
+ """The value of sysUpTime when an entry in the
1862
+ hrSWInstalledTable was last added, renamed, or
1863
+ deleted. Because this table is likely to contain many
1864
+ entries, polling of this object allows a management
1865
+ station to determine when re-downloading of the table
1866
+ might be useful.""",
1867
+ }, # scalar
1868
+ "hrSWInstalledLastUpdateTime" : {
1869
+ "nodetype" : "scalar",
1870
+ "moduleName" : "HOST-RESOURCES-MIB",
1871
+ "oid" : "1.3.6.1.2.1.25.6.2",
1872
+ "status" : "current",
1873
+ "syntax" : {
1874
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1875
+ },
1876
+ "access" : "readonly",
1877
+ "description" :
1878
+ """The value of sysUpTime when the hrSWInstalledTable
1879
+ was last completely updated. Because caching of this
1880
+ data will be a popular implementation strategy,
1881
+ retrieval of this object allows a management station
1882
+ to obtain a guarantee that no data in this table is
1883
+ older than the indicated time.""",
1884
+ }, # scalar
1885
+ "hrSWInstalledTable" : {
1886
+ "nodetype" : "table",
1887
+ "moduleName" : "HOST-RESOURCES-MIB",
1888
+ "oid" : "1.3.6.1.2.1.25.6.3",
1889
+ "status" : "current",
1890
+ "description" :
1891
+ """The (conceptual) table of software installed on this
1892
+ host.""",
1893
+ }, # table
1894
+ "hrSWInstalledEntry" : {
1895
+ "nodetype" : "row",
1896
+ "moduleName" : "HOST-RESOURCES-MIB",
1897
+ "oid" : "1.3.6.1.2.1.25.6.3.1",
1898
+ "status" : "current",
1899
+ "linkage" : [
1900
+ "hrSWInstalledIndex",
1901
+ ],
1902
+ "description" :
1903
+ """A (conceptual) entry for a piece of software
1904
+ installed on this host.
1905
+
1906
+ As an example of how objects in this table are named,
1907
+ an instance of the hrSWInstalledName object might be
1908
+ named hrSWInstalledName.96""",
1909
+ }, # row
1910
+ "hrSWInstalledIndex" : {
1911
+ "nodetype" : "column",
1912
+ "moduleName" : "HOST-RESOURCES-MIB",
1913
+ "oid" : "1.3.6.1.2.1.25.6.3.1.1",
1914
+ "status" : "current",
1915
+ "syntax" : {
1916
+ "type" : {
1917
+ "basetype" : "Integer32",
1918
+ "ranges" : [
1919
+ {
1920
+ "min" : "1",
1921
+ "max" : "2147483647"
1922
+ },
1923
+ ],
1924
+ "range" : {
1925
+ "min" : "1",
1926
+ "max" : "2147483647"
1927
+ },
1928
+ },
1929
+ },
1930
+ "access" : "readonly",
1931
+ "description" :
1932
+ """A unique value for each piece of software installed
1933
+ on the host. This value shall be in the range from 1
1934
+ to the number of pieces of software installed on the
1935
+ host.""",
1936
+ }, # column
1937
+ "hrSWInstalledName" : {
1938
+ "nodetype" : "column",
1939
+ "moduleName" : "HOST-RESOURCES-MIB",
1940
+ "oid" : "1.3.6.1.2.1.25.6.3.1.2",
1941
+ "status" : "current",
1942
+ "syntax" : {
1943
+ "type" : {
1944
+ "basetype" : "OctetString",
1945
+ "parent module" : {
1946
+ "name" : "HOST-RESOURCES-MIB",
1947
+ "type" : "InternationalDisplayString",
1948
+ },
1949
+ "ranges" : [
1950
+ {
1951
+ "min" : "0",
1952
+ "max" : "64"
1953
+ },
1954
+ ],
1955
+ "range" : {
1956
+ "min" : "0",
1957
+ "max" : "64"
1958
+ },
1959
+ },
1960
+ },
1961
+ "access" : "readonly",
1962
+ "description" :
1963
+ """A textual description of this installed piece of
1964
+ software, including the manufacturer, revision, the
1965
+ name by which it is commonly known, and optionally,
1966
+ its serial number.""",
1967
+ }, # column
1968
+ "hrSWInstalledID" : {
1969
+ "nodetype" : "column",
1970
+ "moduleName" : "HOST-RESOURCES-MIB",
1971
+ "oid" : "1.3.6.1.2.1.25.6.3.1.3",
1972
+ "status" : "current",
1973
+ "syntax" : {
1974
+ "type" : { "module" :"HOST-RESOURCES-MIB", "name" : "ProductID"},
1975
+ },
1976
+ "access" : "readonly",
1977
+ "description" :
1978
+ """The product ID of this installed piece of software.""",
1979
+ }, # column
1980
+ "hrSWInstalledType" : {
1981
+ "nodetype" : "column",
1982
+ "moduleName" : "HOST-RESOURCES-MIB",
1983
+ "oid" : "1.3.6.1.2.1.25.6.3.1.4",
1984
+ "status" : "current",
1985
+ "syntax" : {
1986
+ "type" : {
1987
+ "basetype" : "Enumeration",
1988
+ "unknown" : {
1989
+ "nodetype" : "namednumber",
1990
+ "number" : "1"
1991
+ },
1992
+ "operatingSystem" : {
1993
+ "nodetype" : "namednumber",
1994
+ "number" : "2"
1995
+ },
1996
+ "deviceDriver" : {
1997
+ "nodetype" : "namednumber",
1998
+ "number" : "3"
1999
+ },
2000
+ "application" : {
2001
+ "nodetype" : "namednumber",
2002
+ "number" : "4"
2003
+ },
2004
+ },
2005
+ },
2006
+ "access" : "readonly",
2007
+ "description" :
2008
+ """The type of this software.""",
2009
+ }, # column
2010
+ "hrSWInstalledDate" : {
2011
+ "nodetype" : "column",
2012
+ "moduleName" : "HOST-RESOURCES-MIB",
2013
+ "oid" : "1.3.6.1.2.1.25.6.3.1.5",
2014
+ "status" : "current",
2015
+ "syntax" : {
2016
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
2017
+ },
2018
+ "access" : "readonly",
2019
+ "description" :
2020
+ """The last-modification date of this application as it
2021
+ would appear in a directory listing.
2022
+
2023
+ If this information is not known, then this variable
2024
+ shall have the value corresponding to January 1, year
2025
+ 0000, 00:00:00.0, which is encoded as
2026
+ (hex)'00 00 01 01 00 00 00 00'.""",
2027
+ }, # column
2028
+ "hrMIBAdminInfo" : {
2029
+ "nodetype" : "node",
2030
+ "moduleName" : "HOST-RESOURCES-MIB",
2031
+ "oid" : "1.3.6.1.2.1.25.7",
2032
+ }, # node
2033
+ "hostResourcesMibModule" : {
2034
+ "nodetype" : "node",
2035
+ "moduleName" : "HOST-RESOURCES-MIB",
2036
+ "oid" : "1.3.6.1.2.1.25.7.1",
2037
+ "status" : "current",
2038
+ }, # node
2039
+ "hrMIBCompliances" : {
2040
+ "nodetype" : "node",
2041
+ "moduleName" : "HOST-RESOURCES-MIB",
2042
+ "oid" : "1.3.6.1.2.1.25.7.2",
2043
+ }, # node
2044
+ "hrMIBGroups" : {
2045
+ "nodetype" : "node",
2046
+ "moduleName" : "HOST-RESOURCES-MIB",
2047
+ "oid" : "1.3.6.1.2.1.25.7.3",
2048
+ }, # node
2049
+ }, # nodes
2050
+
2051
+ "groups" : {
2052
+ "hrSystemGroup" : {
2053
+ "nodetype" : "group",
2054
+ "moduleName" : "HOST-RESOURCES-MIB",
2055
+ "oid" : "1.3.6.1.2.1.25.7.3.1",
2056
+ "status" : "current",
2057
+ "members" : {
2058
+ "hrSystemUptime" : {
2059
+ "nodetype" : "member",
2060
+ "module" : "HOST-RESOURCES-MIB"
2061
+ },
2062
+ "hrSystemDate" : {
2063
+ "nodetype" : "member",
2064
+ "module" : "HOST-RESOURCES-MIB"
2065
+ },
2066
+ "hrSystemInitialLoadDevice" : {
2067
+ "nodetype" : "member",
2068
+ "module" : "HOST-RESOURCES-MIB"
2069
+ },
2070
+ "hrSystemInitialLoadParameters" : {
2071
+ "nodetype" : "member",
2072
+ "module" : "HOST-RESOURCES-MIB"
2073
+ },
2074
+ "hrSystemNumUsers" : {
2075
+ "nodetype" : "member",
2076
+ "module" : "HOST-RESOURCES-MIB"
2077
+ },
2078
+ "hrSystemProcesses" : {
2079
+ "nodetype" : "member",
2080
+ "module" : "HOST-RESOURCES-MIB"
2081
+ },
2082
+ "hrSystemMaxProcesses" : {
2083
+ "nodetype" : "member",
2084
+ "module" : "HOST-RESOURCES-MIB"
2085
+ },
2086
+ }, # members
2087
+ "description" :
2088
+ """The Host Resources System Group.""",
2089
+ }, # group
2090
+ "hrStorageGroup" : {
2091
+ "nodetype" : "group",
2092
+ "moduleName" : "HOST-RESOURCES-MIB",
2093
+ "oid" : "1.3.6.1.2.1.25.7.3.2",
2094
+ "status" : "current",
2095
+ "members" : {
2096
+ "hrMemorySize" : {
2097
+ "nodetype" : "member",
2098
+ "module" : "HOST-RESOURCES-MIB"
2099
+ },
2100
+ "hrStorageIndex" : {
2101
+ "nodetype" : "member",
2102
+ "module" : "HOST-RESOURCES-MIB"
2103
+ },
2104
+ "hrStorageType" : {
2105
+ "nodetype" : "member",
2106
+ "module" : "HOST-RESOURCES-MIB"
2107
+ },
2108
+ "hrStorageDescr" : {
2109
+ "nodetype" : "member",
2110
+ "module" : "HOST-RESOURCES-MIB"
2111
+ },
2112
+ "hrStorageAllocationUnits" : {
2113
+ "nodetype" : "member",
2114
+ "module" : "HOST-RESOURCES-MIB"
2115
+ },
2116
+ "hrStorageSize" : {
2117
+ "nodetype" : "member",
2118
+ "module" : "HOST-RESOURCES-MIB"
2119
+ },
2120
+ "hrStorageUsed" : {
2121
+ "nodetype" : "member",
2122
+ "module" : "HOST-RESOURCES-MIB"
2123
+ },
2124
+ "hrStorageAllocationFailures" : {
2125
+ "nodetype" : "member",
2126
+ "module" : "HOST-RESOURCES-MIB"
2127
+ },
2128
+ }, # members
2129
+ "description" :
2130
+ """The Host Resources Storage Group.""",
2131
+ }, # group
2132
+ "hrDeviceGroup" : {
2133
+ "nodetype" : "group",
2134
+ "moduleName" : "HOST-RESOURCES-MIB",
2135
+ "oid" : "1.3.6.1.2.1.25.7.3.3",
2136
+ "status" : "current",
2137
+ "members" : {
2138
+ "hrDeviceIndex" : {
2139
+ "nodetype" : "member",
2140
+ "module" : "HOST-RESOURCES-MIB"
2141
+ },
2142
+ "hrDeviceType" : {
2143
+ "nodetype" : "member",
2144
+ "module" : "HOST-RESOURCES-MIB"
2145
+ },
2146
+ "hrDeviceDescr" : {
2147
+ "nodetype" : "member",
2148
+ "module" : "HOST-RESOURCES-MIB"
2149
+ },
2150
+ "hrDeviceID" : {
2151
+ "nodetype" : "member",
2152
+ "module" : "HOST-RESOURCES-MIB"
2153
+ },
2154
+ "hrDeviceStatus" : {
2155
+ "nodetype" : "member",
2156
+ "module" : "HOST-RESOURCES-MIB"
2157
+ },
2158
+ "hrDeviceErrors" : {
2159
+ "nodetype" : "member",
2160
+ "module" : "HOST-RESOURCES-MIB"
2161
+ },
2162
+ "hrProcessorFrwID" : {
2163
+ "nodetype" : "member",
2164
+ "module" : "HOST-RESOURCES-MIB"
2165
+ },
2166
+ "hrProcessorLoad" : {
2167
+ "nodetype" : "member",
2168
+ "module" : "HOST-RESOURCES-MIB"
2169
+ },
2170
+ "hrNetworkIfIndex" : {
2171
+ "nodetype" : "member",
2172
+ "module" : "HOST-RESOURCES-MIB"
2173
+ },
2174
+ "hrPrinterStatus" : {
2175
+ "nodetype" : "member",
2176
+ "module" : "HOST-RESOURCES-MIB"
2177
+ },
2178
+ "hrPrinterDetectedErrorState" : {
2179
+ "nodetype" : "member",
2180
+ "module" : "HOST-RESOURCES-MIB"
2181
+ },
2182
+ "hrDiskStorageAccess" : {
2183
+ "nodetype" : "member",
2184
+ "module" : "HOST-RESOURCES-MIB"
2185
+ },
2186
+ "hrDiskStorageMedia" : {
2187
+ "nodetype" : "member",
2188
+ "module" : "HOST-RESOURCES-MIB"
2189
+ },
2190
+ "hrDiskStorageRemoveble" : {
2191
+ "nodetype" : "member",
2192
+ "module" : "HOST-RESOURCES-MIB"
2193
+ },
2194
+ "hrDiskStorageCapacity" : {
2195
+ "nodetype" : "member",
2196
+ "module" : "HOST-RESOURCES-MIB"
2197
+ },
2198
+ "hrPartitionIndex" : {
2199
+ "nodetype" : "member",
2200
+ "module" : "HOST-RESOURCES-MIB"
2201
+ },
2202
+ "hrPartitionLabel" : {
2203
+ "nodetype" : "member",
2204
+ "module" : "HOST-RESOURCES-MIB"
2205
+ },
2206
+ "hrPartitionID" : {
2207
+ "nodetype" : "member",
2208
+ "module" : "HOST-RESOURCES-MIB"
2209
+ },
2210
+ "hrPartitionSize" : {
2211
+ "nodetype" : "member",
2212
+ "module" : "HOST-RESOURCES-MIB"
2213
+ },
2214
+ "hrPartitionFSIndex" : {
2215
+ "nodetype" : "member",
2216
+ "module" : "HOST-RESOURCES-MIB"
2217
+ },
2218
+ "hrFSIndex" : {
2219
+ "nodetype" : "member",
2220
+ "module" : "HOST-RESOURCES-MIB"
2221
+ },
2222
+ "hrFSMountPoint" : {
2223
+ "nodetype" : "member",
2224
+ "module" : "HOST-RESOURCES-MIB"
2225
+ },
2226
+ "hrFSRemoteMountPoint" : {
2227
+ "nodetype" : "member",
2228
+ "module" : "HOST-RESOURCES-MIB"
2229
+ },
2230
+ "hrFSType" : {
2231
+ "nodetype" : "member",
2232
+ "module" : "HOST-RESOURCES-MIB"
2233
+ },
2234
+ "hrFSAccess" : {
2235
+ "nodetype" : "member",
2236
+ "module" : "HOST-RESOURCES-MIB"
2237
+ },
2238
+ "hrFSBootable" : {
2239
+ "nodetype" : "member",
2240
+ "module" : "HOST-RESOURCES-MIB"
2241
+ },
2242
+ "hrFSStorageIndex" : {
2243
+ "nodetype" : "member",
2244
+ "module" : "HOST-RESOURCES-MIB"
2245
+ },
2246
+ "hrFSLastFullBackupDate" : {
2247
+ "nodetype" : "member",
2248
+ "module" : "HOST-RESOURCES-MIB"
2249
+ },
2250
+ "hrFSLastPartialBackupDate" : {
2251
+ "nodetype" : "member",
2252
+ "module" : "HOST-RESOURCES-MIB"
2253
+ },
2254
+ }, # members
2255
+ "description" :
2256
+ """The Host Resources Device Group.""",
2257
+ }, # group
2258
+ "hrSWRunGroup" : {
2259
+ "nodetype" : "group",
2260
+ "moduleName" : "HOST-RESOURCES-MIB",
2261
+ "oid" : "1.3.6.1.2.1.25.7.3.4",
2262
+ "status" : "current",
2263
+ "members" : {
2264
+ "hrSWOSIndex" : {
2265
+ "nodetype" : "member",
2266
+ "module" : "HOST-RESOURCES-MIB"
2267
+ },
2268
+ "hrSWRunIndex" : {
2269
+ "nodetype" : "member",
2270
+ "module" : "HOST-RESOURCES-MIB"
2271
+ },
2272
+ "hrSWRunName" : {
2273
+ "nodetype" : "member",
2274
+ "module" : "HOST-RESOURCES-MIB"
2275
+ },
2276
+ "hrSWRunID" : {
2277
+ "nodetype" : "member",
2278
+ "module" : "HOST-RESOURCES-MIB"
2279
+ },
2280
+ "hrSWRunPath" : {
2281
+ "nodetype" : "member",
2282
+ "module" : "HOST-RESOURCES-MIB"
2283
+ },
2284
+ "hrSWRunParameters" : {
2285
+ "nodetype" : "member",
2286
+ "module" : "HOST-RESOURCES-MIB"
2287
+ },
2288
+ "hrSWRunType" : {
2289
+ "nodetype" : "member",
2290
+ "module" : "HOST-RESOURCES-MIB"
2291
+ },
2292
+ "hrSWRunStatus" : {
2293
+ "nodetype" : "member",
2294
+ "module" : "HOST-RESOURCES-MIB"
2295
+ },
2296
+ }, # members
2297
+ "description" :
2298
+ """The Host Resources Running Software Group.""",
2299
+ }, # group
2300
+ "hrSWRunPerfGroup" : {
2301
+ "nodetype" : "group",
2302
+ "moduleName" : "HOST-RESOURCES-MIB",
2303
+ "oid" : "1.3.6.1.2.1.25.7.3.5",
2304
+ "status" : "current",
2305
+ "members" : {
2306
+ "hrSWRunPerfCPU" : {
2307
+ "nodetype" : "member",
2308
+ "module" : "HOST-RESOURCES-MIB"
2309
+ },
2310
+ "hrSWRunPerfMem" : {
2311
+ "nodetype" : "member",
2312
+ "module" : "HOST-RESOURCES-MIB"
2313
+ },
2314
+ }, # members
2315
+ "description" :
2316
+ """The Host Resources Running Software
2317
+ Performance Group.""",
2318
+ }, # group
2319
+ "hrSWInstalledGroup" : {
2320
+ "nodetype" : "group",
2321
+ "moduleName" : "HOST-RESOURCES-MIB",
2322
+ "oid" : "1.3.6.1.2.1.25.7.3.6",
2323
+ "status" : "current",
2324
+ "members" : {
2325
+ "hrSWInstalledLastChange" : {
2326
+ "nodetype" : "member",
2327
+ "module" : "HOST-RESOURCES-MIB"
2328
+ },
2329
+ "hrSWInstalledLastUpdateTime" : {
2330
+ "nodetype" : "member",
2331
+ "module" : "HOST-RESOURCES-MIB"
2332
+ },
2333
+ "hrSWInstalledIndex" : {
2334
+ "nodetype" : "member",
2335
+ "module" : "HOST-RESOURCES-MIB"
2336
+ },
2337
+ "hrSWInstalledName" : {
2338
+ "nodetype" : "member",
2339
+ "module" : "HOST-RESOURCES-MIB"
2340
+ },
2341
+ "hrSWInstalledID" : {
2342
+ "nodetype" : "member",
2343
+ "module" : "HOST-RESOURCES-MIB"
2344
+ },
2345
+ "hrSWInstalledType" : {
2346
+ "nodetype" : "member",
2347
+ "module" : "HOST-RESOURCES-MIB"
2348
+ },
2349
+ "hrSWInstalledDate" : {
2350
+ "nodetype" : "member",
2351
+ "module" : "HOST-RESOURCES-MIB"
2352
+ },
2353
+ }, # members
2354
+ "description" :
2355
+ """The Host Resources Installed Software Group.""",
2356
+ }, # group
2357
+ }, # groups
2358
+
2359
+ "compliances" : {
2360
+ "hrMIBCompliance" : {
2361
+ "nodetype" : "compliance",
2362
+ "moduleName" : "HOST-RESOURCES-MIB",
2363
+ "oid" : "1.3.6.1.2.1.25.7.2.1",
2364
+ "status" : "current",
2365
+ "description" :
2366
+ """The requirements for conformance to the Host Resources MIB.""",
2367
+ "requires" : {
2368
+ "hrSystemGroup" : {
2369
+ "nodetype" : "mandatory",
2370
+ "module" : "HOST-RESOURCES-MIB"
2371
+ },
2372
+ "hrStorageGroup" : {
2373
+ "nodetype" : "mandatory",
2374
+ "module" : "HOST-RESOURCES-MIB"
2375
+ },
2376
+ "hrDeviceGroup" : {
2377
+ "nodetype" : "mandatory",
2378
+ "module" : "HOST-RESOURCES-MIB"
2379
+ },
2380
+ "hrSWRunGroup" : {
2381
+ "nodetype" : "optional",
2382
+ "module" : "HOST-RESOURCES-MIB",
2383
+ "description" :
2384
+ """The Running Software Group. Implementation
2385
+ of this group is mandatory only when the
2386
+ hrSWRunPerfGroup is implemented.""",
2387
+ },
2388
+ "hrSWRunPerfGroup" : {
2389
+ "nodetype" : "optional",
2390
+ "module" : "HOST-RESOURCES-MIB",
2391
+ "description" :
2392
+ """The Running Software Performance Group.
2393
+ Implementation of this group is at the discretion
2394
+ of the implementor.""",
2395
+ },
2396
+ "hrSWInstalledGroup" : {
2397
+ "nodetype" : "optional",
2398
+ "module" : "HOST-RESOURCES-MIB",
2399
+ "description" :
2400
+ """The Installed Software Group.
2401
+ Implementation of this group is at the discretion
2402
+ of the implementor.""",
2403
+ },
2404
+ }, # requires
2405
+ "refinements" : {
2406
+ "hrSystemDate" : {
2407
+ "module" : "HOST-RESOURCES-MIB",
2408
+ "access" : "readonly",
2409
+ "description" :
2410
+ """Write access is not required.""",
2411
+ },
2412
+ "hrSystemInitialLoadDevice" : {
2413
+ "module" : "HOST-RESOURCES-MIB",
2414
+ "access" : "readonly",
2415
+ "description" :
2416
+ """Write access is not required.""",
2417
+ },
2418
+ "hrSystemInitialLoadParameters" : {
2419
+ "module" : "HOST-RESOURCES-MIB",
2420
+ "access" : "readonly",
2421
+ "description" :
2422
+ """Write access is not required.""",
2423
+ },
2424
+ "hrStorageSize" : {
2425
+ "module" : "HOST-RESOURCES-MIB",
2426
+ "access" : "readonly",
2427
+ "description" :
2428
+ """Write access is not required.""",
2429
+ },
2430
+ "hrFSLastFullBackupDate" : {
2431
+ "module" : "HOST-RESOURCES-MIB",
2432
+ "access" : "readonly",
2433
+ "description" :
2434
+ """Write access is not required.""",
2435
+ },
2436
+ "hrFSLastPartialBackupDate" : {
2437
+ "module" : "HOST-RESOURCES-MIB",
2438
+ "access" : "readonly",
2439
+ "description" :
2440
+ """Write access is not required.""",
2441
+ },
2442
+ "hrSWRunStatus" : {
2443
+ "module" : "HOST-RESOURCES-MIB",
2444
+ "access" : "readonly",
2445
+ "description" :
2446
+ """Write access is not required.""",
2447
+ },
2448
+ }, # refinements
2449
+
2450
+ }, # compliance
2451
+ }, # compliances
2452
+
2453
+ }