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,3088 @@
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 UPS-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/UPS-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "UPS-MIB",
11
+
12
+ "UPS-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF UPS MIB Working Group""",
17
+ "contact" :
18
+ """ Jeffrey D. Case
19
+
20
+ Postal: SNMP Research, Incorporated
21
+ 3001 Kimberlin Heights Road
22
+ Knoxville, TN 37920
23
+ US
24
+
25
+ Tel: +1 615 573 1434
26
+ Fax: +1 615 573 9197
27
+
28
+ E-mail: case@snmp.com""",
29
+ "description" :
30
+ """The MIB module to describe Uninterruptible Power
31
+ Supplies.""",
32
+ "revisions" : (
33
+ {
34
+ "date" : "1994-02-23 00:00",
35
+ "description" :
36
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
37
+ },
38
+ ),
39
+ "identity node" : "upsMIB",
40
+ },
41
+
42
+ "imports" : (
43
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
44
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
45
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
46
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
47
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
48
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
50
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
51
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
52
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
53
+ {"module" : "SNMPv2-TC", "name" : "TimeInterval"},
54
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
55
+ {"module" : "SNMPv2-TC", "name" : "AutonomousType"},
56
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
57
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
58
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
59
+ ),
60
+
61
+ "typedefs" : {
62
+ "PositiveInteger" : {
63
+ "basetype" : "Integer32",
64
+ "status" : "current",
65
+ "ranges" : [
66
+ {
67
+ "min" : "1",
68
+ "max" : "2147483647"
69
+ },
70
+ ],
71
+ "range" : {
72
+ "min" : "1",
73
+ "max" : "2147483647"
74
+ },
75
+ "format" : "d",
76
+ "description" :
77
+ """This data type is a non-zero and non-negative value.""",
78
+ },
79
+ "NonNegativeInteger" : {
80
+ "basetype" : "Integer32",
81
+ "status" : "current",
82
+ "ranges" : [
83
+ {
84
+ "min" : "0",
85
+ "max" : "2147483647"
86
+ },
87
+ ],
88
+ "range" : {
89
+ "min" : "0",
90
+ "max" : "2147483647"
91
+ },
92
+ "format" : "d",
93
+ "description" :
94
+ """This data type is a non-negative value.""",
95
+ },
96
+ }, # typedefs
97
+
98
+ "nodes" : {
99
+ "upsMIB" : {
100
+ "nodetype" : "node",
101
+ "moduleName" : "UPS-MIB",
102
+ "oid" : "1.3.6.1.2.1.33",
103
+ "status" : "current",
104
+ }, # node
105
+ "upsObjects" : {
106
+ "nodetype" : "node",
107
+ "moduleName" : "UPS-MIB",
108
+ "oid" : "1.3.6.1.2.1.33.1",
109
+ }, # node
110
+ "upsIdent" : {
111
+ "nodetype" : "node",
112
+ "moduleName" : "UPS-MIB",
113
+ "oid" : "1.3.6.1.2.1.33.1.1",
114
+ }, # node
115
+ "upsIdentManufacturer" : {
116
+ "nodetype" : "scalar",
117
+ "moduleName" : "UPS-MIB",
118
+ "oid" : "1.3.6.1.2.1.33.1.1.1",
119
+ "status" : "current",
120
+ "syntax" : {
121
+ "type" : {
122
+ "basetype" : "OctetString",
123
+ "parent module" : {
124
+ "name" : "SNMPv2-TC",
125
+ "type" : "DisplayString",
126
+ },
127
+ "ranges" : [
128
+ {
129
+ "min" : "0",
130
+ "max" : "31"
131
+ },
132
+ ],
133
+ "range" : {
134
+ "min" : "0",
135
+ "max" : "31"
136
+ },
137
+ },
138
+ },
139
+ "access" : "readonly",
140
+ "description" :
141
+ """The name of the UPS manufacturer.""",
142
+ }, # scalar
143
+ "upsIdentModel" : {
144
+ "nodetype" : "scalar",
145
+ "moduleName" : "UPS-MIB",
146
+ "oid" : "1.3.6.1.2.1.33.1.1.2",
147
+ "status" : "current",
148
+ "syntax" : {
149
+ "type" : {
150
+ "basetype" : "OctetString",
151
+ "parent module" : {
152
+ "name" : "SNMPv2-TC",
153
+ "type" : "DisplayString",
154
+ },
155
+ "ranges" : [
156
+ {
157
+ "min" : "0",
158
+ "max" : "63"
159
+ },
160
+ ],
161
+ "range" : {
162
+ "min" : "0",
163
+ "max" : "63"
164
+ },
165
+ },
166
+ },
167
+ "access" : "readonly",
168
+ "description" :
169
+ """The UPS Model designation.""",
170
+ }, # scalar
171
+ "upsIdentUPSSoftwareVersion" : {
172
+ "nodetype" : "scalar",
173
+ "moduleName" : "UPS-MIB",
174
+ "oid" : "1.3.6.1.2.1.33.1.1.3",
175
+ "status" : "current",
176
+ "syntax" : {
177
+ "type" : {
178
+ "basetype" : "OctetString",
179
+ "parent module" : {
180
+ "name" : "SNMPv2-TC",
181
+ "type" : "DisplayString",
182
+ },
183
+ "ranges" : [
184
+ {
185
+ "min" : "0",
186
+ "max" : "63"
187
+ },
188
+ ],
189
+ "range" : {
190
+ "min" : "0",
191
+ "max" : "63"
192
+ },
193
+ },
194
+ },
195
+ "access" : "readonly",
196
+ "description" :
197
+ """The UPS firmware/software version(s). This variable
198
+ may or may not have the same value as
199
+ upsIdentAgentSoftwareVersion in some implementations.""",
200
+ }, # scalar
201
+ "upsIdentAgentSoftwareVersion" : {
202
+ "nodetype" : "scalar",
203
+ "moduleName" : "UPS-MIB",
204
+ "oid" : "1.3.6.1.2.1.33.1.1.4",
205
+ "status" : "current",
206
+ "syntax" : {
207
+ "type" : {
208
+ "basetype" : "OctetString",
209
+ "parent module" : {
210
+ "name" : "SNMPv2-TC",
211
+ "type" : "DisplayString",
212
+ },
213
+ "ranges" : [
214
+ {
215
+ "min" : "0",
216
+ "max" : "63"
217
+ },
218
+ ],
219
+ "range" : {
220
+ "min" : "0",
221
+ "max" : "63"
222
+ },
223
+ },
224
+ },
225
+ "access" : "readonly",
226
+ "description" :
227
+ """The UPS agent software version. This variable may or
228
+ may not have the same value as
229
+ upsIdentUPSSoftwareVersion in some implementations.""",
230
+ }, # scalar
231
+ "upsIdentName" : {
232
+ "nodetype" : "scalar",
233
+ "moduleName" : "UPS-MIB",
234
+ "oid" : "1.3.6.1.2.1.33.1.1.5",
235
+ "status" : "current",
236
+ "syntax" : {
237
+ "type" : {
238
+ "basetype" : "OctetString",
239
+ "parent module" : {
240
+ "name" : "SNMPv2-TC",
241
+ "type" : "DisplayString",
242
+ },
243
+ "ranges" : [
244
+ {
245
+ "min" : "0",
246
+ "max" : "63"
247
+ },
248
+ ],
249
+ "range" : {
250
+ "min" : "0",
251
+ "max" : "63"
252
+ },
253
+ },
254
+ },
255
+ "access" : "readwrite",
256
+ "description" :
257
+ """A string identifying the UPS. This object should be
258
+ set by the administrator.""",
259
+ }, # scalar
260
+ "upsIdentAttachedDevices" : {
261
+ "nodetype" : "scalar",
262
+ "moduleName" : "UPS-MIB",
263
+ "oid" : "1.3.6.1.2.1.33.1.1.6",
264
+ "status" : "current",
265
+ "syntax" : {
266
+ "type" : {
267
+ "basetype" : "OctetString",
268
+ "parent module" : {
269
+ "name" : "SNMPv2-TC",
270
+ "type" : "DisplayString",
271
+ },
272
+ "ranges" : [
273
+ {
274
+ "min" : "0",
275
+ "max" : "63"
276
+ },
277
+ ],
278
+ "range" : {
279
+ "min" : "0",
280
+ "max" : "63"
281
+ },
282
+ },
283
+ },
284
+ "access" : "readwrite",
285
+ "description" :
286
+ """A string identifying the devices attached to the
287
+ output(s) of the UPS. This object should be set by
288
+ the administrator.""",
289
+ }, # scalar
290
+ "upsBattery" : {
291
+ "nodetype" : "node",
292
+ "moduleName" : "UPS-MIB",
293
+ "oid" : "1.3.6.1.2.1.33.1.2",
294
+ }, # node
295
+ "upsBatteryStatus" : {
296
+ "nodetype" : "scalar",
297
+ "moduleName" : "UPS-MIB",
298
+ "oid" : "1.3.6.1.2.1.33.1.2.1",
299
+ "status" : "current",
300
+ "syntax" : {
301
+ "type" : {
302
+ "basetype" : "Enumeration",
303
+ "unknown" : {
304
+ "nodetype" : "namednumber",
305
+ "number" : "1"
306
+ },
307
+ "batteryNormal" : {
308
+ "nodetype" : "namednumber",
309
+ "number" : "2"
310
+ },
311
+ "batteryLow" : {
312
+ "nodetype" : "namednumber",
313
+ "number" : "3"
314
+ },
315
+ "batteryDepleted" : {
316
+ "nodetype" : "namednumber",
317
+ "number" : "4"
318
+ },
319
+ },
320
+ },
321
+ "access" : "readonly",
322
+ "description" :
323
+ """The indication of the capacity remaining in the UPS
324
+ system's batteries. A value of batteryNormal
325
+ indicates that the remaining run-time is greater than
326
+ upsConfigLowBattTime. A value of batteryLow indicates
327
+ that the remaining battery run-time is less than or
328
+ equal to upsConfigLowBattTime. A value of
329
+ batteryDepleted indicates that the UPS will be unable
330
+ to sustain the present load when and if the utility
331
+ power is lost (including the possibility that the
332
+ utility power is currently absent and the UPS is
333
+ unable to sustain the output).""",
334
+ }, # scalar
335
+ "upsSecondsOnBattery" : {
336
+ "nodetype" : "scalar",
337
+ "moduleName" : "UPS-MIB",
338
+ "oid" : "1.3.6.1.2.1.33.1.2.2",
339
+ "status" : "current",
340
+ "syntax" : {
341
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
342
+ },
343
+ "access" : "readonly",
344
+ "units" : "seconds",
345
+ "description" :
346
+ """If the unit is on battery power, the elapsed time
347
+ since the UPS last switched to battery power, or the
348
+ time since the network management subsystem was last
349
+ restarted, whichever is less. Zero shall be returned
350
+ if the unit is not on battery power.""",
351
+ }, # scalar
352
+ "upsEstimatedMinutesRemaining" : {
353
+ "nodetype" : "scalar",
354
+ "moduleName" : "UPS-MIB",
355
+ "oid" : "1.3.6.1.2.1.33.1.2.3",
356
+ "status" : "current",
357
+ "syntax" : {
358
+ "type" : { "module" :"UPS-MIB", "name" : "PositiveInteger"},
359
+ },
360
+ "access" : "readonly",
361
+ "units" : "minutes",
362
+ "description" :
363
+ """An estimate of the time to battery charge depletion
364
+ under the present load conditions if the utility power
365
+ is off and remains off, or if it were to be lost and
366
+ remain off.""",
367
+ }, # scalar
368
+ "upsEstimatedChargeRemaining" : {
369
+ "nodetype" : "scalar",
370
+ "moduleName" : "UPS-MIB",
371
+ "oid" : "1.3.6.1.2.1.33.1.2.4",
372
+ "status" : "current",
373
+ "syntax" : {
374
+ "type" : {
375
+ "basetype" : "Integer32",
376
+ "ranges" : [
377
+ {
378
+ "min" : "0",
379
+ "max" : "100"
380
+ },
381
+ ],
382
+ "range" : {
383
+ "min" : "0",
384
+ "max" : "100"
385
+ },
386
+ },
387
+ },
388
+ "access" : "readonly",
389
+ "units" : "percent",
390
+ "description" :
391
+ """An estimate of the battery charge remaining expressed
392
+ as a percent of full charge.""",
393
+ }, # scalar
394
+ "upsBatteryVoltage" : {
395
+ "nodetype" : "scalar",
396
+ "moduleName" : "UPS-MIB",
397
+ "oid" : "1.3.6.1.2.1.33.1.2.5",
398
+ "status" : "current",
399
+ "syntax" : {
400
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
401
+ },
402
+ "access" : "readonly",
403
+ "units" : "0.1 Volt DC",
404
+ "description" :
405
+ """The magnitude of the present battery voltage.""",
406
+ }, # scalar
407
+ "upsBatteryCurrent" : {
408
+ "nodetype" : "scalar",
409
+ "moduleName" : "UPS-MIB",
410
+ "oid" : "1.3.6.1.2.1.33.1.2.6",
411
+ "status" : "current",
412
+ "syntax" : {
413
+ "type" : { "module" :"", "name" : "Integer32"},
414
+ },
415
+ "access" : "readonly",
416
+ "units" : "0.1 Amp DC",
417
+ "description" :
418
+ """The present battery current.""",
419
+ }, # scalar
420
+ "upsBatteryTemperature" : {
421
+ "nodetype" : "scalar",
422
+ "moduleName" : "UPS-MIB",
423
+ "oid" : "1.3.6.1.2.1.33.1.2.7",
424
+ "status" : "current",
425
+ "syntax" : {
426
+ "type" : { "module" :"", "name" : "Integer32"},
427
+ },
428
+ "access" : "readonly",
429
+ "units" : "degrees Centigrade",
430
+ "description" :
431
+ """The ambient temperature at or near the UPS Battery
432
+ casing.""",
433
+ }, # scalar
434
+ "upsInput" : {
435
+ "nodetype" : "node",
436
+ "moduleName" : "UPS-MIB",
437
+ "oid" : "1.3.6.1.2.1.33.1.3",
438
+ }, # node
439
+ "upsInputLineBads" : {
440
+ "nodetype" : "scalar",
441
+ "moduleName" : "UPS-MIB",
442
+ "oid" : "1.3.6.1.2.1.33.1.3.1",
443
+ "status" : "current",
444
+ "syntax" : {
445
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
446
+ },
447
+ "access" : "readonly",
448
+ "description" :
449
+ """A count of the number of times the input entered an
450
+ out-of-tolerance condition as defined by the
451
+ manufacturer. This count is incremented by one each
452
+ time the input transitions from zero out-of-tolerance
453
+ lines to one or more input lines out-of-tolerance.""",
454
+ }, # scalar
455
+ "upsInputNumLines" : {
456
+ "nodetype" : "scalar",
457
+ "moduleName" : "UPS-MIB",
458
+ "oid" : "1.3.6.1.2.1.33.1.3.2",
459
+ "status" : "current",
460
+ "syntax" : {
461
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
462
+ },
463
+ "access" : "readonly",
464
+ "description" :
465
+ """The number of input lines utilized in this device.
466
+ This variable indicates the number of rows in the
467
+ input table.""",
468
+ }, # scalar
469
+ "upsInputTable" : {
470
+ "nodetype" : "table",
471
+ "moduleName" : "UPS-MIB",
472
+ "oid" : "1.3.6.1.2.1.33.1.3.3",
473
+ "status" : "current",
474
+ "description" :
475
+ """A list of input table entries. The number of entries
476
+ is given by the value of upsInputNumLines.""",
477
+ }, # table
478
+ "upsInputEntry" : {
479
+ "nodetype" : "row",
480
+ "moduleName" : "UPS-MIB",
481
+ "oid" : "1.3.6.1.2.1.33.1.3.3.1",
482
+ "status" : "current",
483
+ "linkage" : [
484
+ "upsInputLineIndex",
485
+ ],
486
+ "description" :
487
+ """An entry containing information applicable to a
488
+ particular input line.""",
489
+ }, # row
490
+ "upsInputLineIndex" : {
491
+ "nodetype" : "column",
492
+ "moduleName" : "UPS-MIB",
493
+ "oid" : "1.3.6.1.2.1.33.1.3.3.1.1",
494
+ "status" : "current",
495
+ "syntax" : {
496
+ "type" : { "module" :"UPS-MIB", "name" : "PositiveInteger"},
497
+ },
498
+ "access" : "noaccess",
499
+ "description" :
500
+ """The input line identifier.""",
501
+ }, # column
502
+ "upsInputFrequency" : {
503
+ "nodetype" : "column",
504
+ "moduleName" : "UPS-MIB",
505
+ "oid" : "1.3.6.1.2.1.33.1.3.3.1.2",
506
+ "status" : "current",
507
+ "syntax" : {
508
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
509
+ },
510
+ "access" : "readonly",
511
+ "units" : "0.1 Hertz",
512
+ "description" :
513
+ """The present input frequency.""",
514
+ }, # column
515
+ "upsInputVoltage" : {
516
+ "nodetype" : "column",
517
+ "moduleName" : "UPS-MIB",
518
+ "oid" : "1.3.6.1.2.1.33.1.3.3.1.3",
519
+ "status" : "current",
520
+ "syntax" : {
521
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
522
+ },
523
+ "access" : "readonly",
524
+ "units" : "RMS Volts",
525
+ "description" :
526
+ """The magnitude of the present input voltage.""",
527
+ }, # column
528
+ "upsInputCurrent" : {
529
+ "nodetype" : "column",
530
+ "moduleName" : "UPS-MIB",
531
+ "oid" : "1.3.6.1.2.1.33.1.3.3.1.4",
532
+ "status" : "current",
533
+ "syntax" : {
534
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
535
+ },
536
+ "access" : "readonly",
537
+ "units" : "0.1 RMS Amp",
538
+ "description" :
539
+ """The magnitude of the present input current.""",
540
+ }, # column
541
+ "upsInputTruePower" : {
542
+ "nodetype" : "column",
543
+ "moduleName" : "UPS-MIB",
544
+ "oid" : "1.3.6.1.2.1.33.1.3.3.1.5",
545
+ "status" : "current",
546
+ "syntax" : {
547
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
548
+ },
549
+ "access" : "readonly",
550
+ "units" : "Watts",
551
+ "description" :
552
+ """The magnitude of the present input true power.""",
553
+ }, # column
554
+ "upsOutput" : {
555
+ "nodetype" : "node",
556
+ "moduleName" : "UPS-MIB",
557
+ "oid" : "1.3.6.1.2.1.33.1.4",
558
+ }, # node
559
+ "upsOutputSource" : {
560
+ "nodetype" : "scalar",
561
+ "moduleName" : "UPS-MIB",
562
+ "oid" : "1.3.6.1.2.1.33.1.4.1",
563
+ "status" : "current",
564
+ "syntax" : {
565
+ "type" : {
566
+ "basetype" : "Enumeration",
567
+ "other" : {
568
+ "nodetype" : "namednumber",
569
+ "number" : "1"
570
+ },
571
+ "none" : {
572
+ "nodetype" : "namednumber",
573
+ "number" : "2"
574
+ },
575
+ "normal" : {
576
+ "nodetype" : "namednumber",
577
+ "number" : "3"
578
+ },
579
+ "bypass" : {
580
+ "nodetype" : "namednumber",
581
+ "number" : "4"
582
+ },
583
+ "battery" : {
584
+ "nodetype" : "namednumber",
585
+ "number" : "5"
586
+ },
587
+ "booster" : {
588
+ "nodetype" : "namednumber",
589
+ "number" : "6"
590
+ },
591
+ "reducer" : {
592
+ "nodetype" : "namednumber",
593
+ "number" : "7"
594
+ },
595
+ },
596
+ },
597
+ "access" : "readonly",
598
+ "description" :
599
+ """The present source of output power. The enumeration
600
+ none(2) indicates that there is no source of output
601
+ power (and therefore no output power), for example,
602
+ the system has opened the output breaker.""",
603
+ }, # scalar
604
+ "upsOutputFrequency" : {
605
+ "nodetype" : "scalar",
606
+ "moduleName" : "UPS-MIB",
607
+ "oid" : "1.3.6.1.2.1.33.1.4.2",
608
+ "status" : "current",
609
+ "syntax" : {
610
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
611
+ },
612
+ "access" : "readonly",
613
+ "units" : "0.1 Hertz",
614
+ "description" :
615
+ """The present output frequency.""",
616
+ }, # scalar
617
+ "upsOutputNumLines" : {
618
+ "nodetype" : "scalar",
619
+ "moduleName" : "UPS-MIB",
620
+ "oid" : "1.3.6.1.2.1.33.1.4.3",
621
+ "status" : "current",
622
+ "syntax" : {
623
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
624
+ },
625
+ "access" : "readonly",
626
+ "description" :
627
+ """The number of output lines utilized in this device.
628
+ This variable indicates the number of rows in the
629
+ output table.""",
630
+ }, # scalar
631
+ "upsOutputTable" : {
632
+ "nodetype" : "table",
633
+ "moduleName" : "UPS-MIB",
634
+ "oid" : "1.3.6.1.2.1.33.1.4.4",
635
+ "status" : "current",
636
+ "description" :
637
+ """A list of output table entries. The number of
638
+ entries is given by the value of upsOutputNumLines.""",
639
+ }, # table
640
+ "upsOutputEntry" : {
641
+ "nodetype" : "row",
642
+ "moduleName" : "UPS-MIB",
643
+ "oid" : "1.3.6.1.2.1.33.1.4.4.1",
644
+ "status" : "current",
645
+ "linkage" : [
646
+ "upsOutputLineIndex",
647
+ ],
648
+ "description" :
649
+ """An entry containing information applicable to a
650
+ particular output line.""",
651
+ }, # row
652
+ "upsOutputLineIndex" : {
653
+ "nodetype" : "column",
654
+ "moduleName" : "UPS-MIB",
655
+ "oid" : "1.3.6.1.2.1.33.1.4.4.1.1",
656
+ "status" : "current",
657
+ "syntax" : {
658
+ "type" : { "module" :"UPS-MIB", "name" : "PositiveInteger"},
659
+ },
660
+ "access" : "noaccess",
661
+ "description" :
662
+ """The output line identifier.""",
663
+ }, # column
664
+ "upsOutputVoltage" : {
665
+ "nodetype" : "column",
666
+ "moduleName" : "UPS-MIB",
667
+ "oid" : "1.3.6.1.2.1.33.1.4.4.1.2",
668
+ "status" : "current",
669
+ "syntax" : {
670
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
671
+ },
672
+ "access" : "readonly",
673
+ "units" : "RMS Volts",
674
+ "description" :
675
+ """The present output voltage.""",
676
+ }, # column
677
+ "upsOutputCurrent" : {
678
+ "nodetype" : "column",
679
+ "moduleName" : "UPS-MIB",
680
+ "oid" : "1.3.6.1.2.1.33.1.4.4.1.3",
681
+ "status" : "current",
682
+ "syntax" : {
683
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
684
+ },
685
+ "access" : "readonly",
686
+ "units" : "0.1 RMS Amp",
687
+ "description" :
688
+ """The present output current.""",
689
+ }, # column
690
+ "upsOutputPower" : {
691
+ "nodetype" : "column",
692
+ "moduleName" : "UPS-MIB",
693
+ "oid" : "1.3.6.1.2.1.33.1.4.4.1.4",
694
+ "status" : "current",
695
+ "syntax" : {
696
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
697
+ },
698
+ "access" : "readonly",
699
+ "units" : "Watts",
700
+ "description" :
701
+ """The present output true power.""",
702
+ }, # column
703
+ "upsOutputPercentLoad" : {
704
+ "nodetype" : "column",
705
+ "moduleName" : "UPS-MIB",
706
+ "oid" : "1.3.6.1.2.1.33.1.4.4.1.5",
707
+ "status" : "current",
708
+ "syntax" : {
709
+ "type" : {
710
+ "basetype" : "Integer32",
711
+ "ranges" : [
712
+ {
713
+ "min" : "0",
714
+ "max" : "200"
715
+ },
716
+ ],
717
+ "range" : {
718
+ "min" : "0",
719
+ "max" : "200"
720
+ },
721
+ },
722
+ },
723
+ "access" : "readonly",
724
+ "units" : "percent",
725
+ "description" :
726
+ """The percentage of the UPS power capacity presently
727
+ being used on this output line, i.e., the greater of
728
+ the percent load of true power capacity and the
729
+ percent load of VA.""",
730
+ }, # column
731
+ "upsBypass" : {
732
+ "nodetype" : "node",
733
+ "moduleName" : "UPS-MIB",
734
+ "oid" : "1.3.6.1.2.1.33.1.5",
735
+ }, # node
736
+ "upsBypassFrequency" : {
737
+ "nodetype" : "scalar",
738
+ "moduleName" : "UPS-MIB",
739
+ "oid" : "1.3.6.1.2.1.33.1.5.1",
740
+ "status" : "current",
741
+ "syntax" : {
742
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
743
+ },
744
+ "access" : "readonly",
745
+ "units" : "0.1 Hertz",
746
+ "description" :
747
+ """The present bypass frequency.""",
748
+ }, # scalar
749
+ "upsBypassNumLines" : {
750
+ "nodetype" : "scalar",
751
+ "moduleName" : "UPS-MIB",
752
+ "oid" : "1.3.6.1.2.1.33.1.5.2",
753
+ "status" : "current",
754
+ "syntax" : {
755
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
756
+ },
757
+ "access" : "readonly",
758
+ "description" :
759
+ """The number of bypass lines utilized in this device.
760
+ This entry indicates the number of rows in the bypass
761
+ table.""",
762
+ }, # scalar
763
+ "upsBypassTable" : {
764
+ "nodetype" : "table",
765
+ "moduleName" : "UPS-MIB",
766
+ "oid" : "1.3.6.1.2.1.33.1.5.3",
767
+ "status" : "current",
768
+ "description" :
769
+ """A list of bypass table entries. The number of
770
+ entries is given by the value of upsBypassNumLines.""",
771
+ }, # table
772
+ "upsBypassEntry" : {
773
+ "nodetype" : "row",
774
+ "moduleName" : "UPS-MIB",
775
+ "oid" : "1.3.6.1.2.1.33.1.5.3.1",
776
+ "status" : "current",
777
+ "linkage" : [
778
+ "upsBypassLineIndex",
779
+ ],
780
+ "description" :
781
+ """An entry containing information applicable to a
782
+ particular bypass input.""",
783
+ }, # row
784
+ "upsBypassLineIndex" : {
785
+ "nodetype" : "column",
786
+ "moduleName" : "UPS-MIB",
787
+ "oid" : "1.3.6.1.2.1.33.1.5.3.1.1",
788
+ "status" : "current",
789
+ "syntax" : {
790
+ "type" : { "module" :"UPS-MIB", "name" : "PositiveInteger"},
791
+ },
792
+ "access" : "noaccess",
793
+ "description" :
794
+ """The bypass line identifier.""",
795
+ }, # column
796
+ "upsBypassVoltage" : {
797
+ "nodetype" : "column",
798
+ "moduleName" : "UPS-MIB",
799
+ "oid" : "1.3.6.1.2.1.33.1.5.3.1.2",
800
+ "status" : "current",
801
+ "syntax" : {
802
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
803
+ },
804
+ "access" : "readonly",
805
+ "units" : "RMS Volts",
806
+ "description" :
807
+ """The present bypass voltage.""",
808
+ }, # column
809
+ "upsBypassCurrent" : {
810
+ "nodetype" : "column",
811
+ "moduleName" : "UPS-MIB",
812
+ "oid" : "1.3.6.1.2.1.33.1.5.3.1.3",
813
+ "status" : "current",
814
+ "syntax" : {
815
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
816
+ },
817
+ "access" : "readonly",
818
+ "units" : "0.1 RMS Amp",
819
+ "description" :
820
+ """The present bypass current.""",
821
+ }, # column
822
+ "upsBypassPower" : {
823
+ "nodetype" : "column",
824
+ "moduleName" : "UPS-MIB",
825
+ "oid" : "1.3.6.1.2.1.33.1.5.3.1.4",
826
+ "status" : "current",
827
+ "syntax" : {
828
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
829
+ },
830
+ "access" : "readonly",
831
+ "units" : "Watts",
832
+ "description" :
833
+ """The present true power conveyed by the bypass.""",
834
+ }, # column
835
+ "upsAlarm" : {
836
+ "nodetype" : "node",
837
+ "moduleName" : "UPS-MIB",
838
+ "oid" : "1.3.6.1.2.1.33.1.6",
839
+ }, # node
840
+ "upsAlarmsPresent" : {
841
+ "nodetype" : "scalar",
842
+ "moduleName" : "UPS-MIB",
843
+ "oid" : "1.3.6.1.2.1.33.1.6.1",
844
+ "status" : "current",
845
+ "syntax" : {
846
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
847
+ },
848
+ "access" : "readonly",
849
+ "description" :
850
+ """The present number of active alarm conditions.""",
851
+ }, # scalar
852
+ "upsAlarmTable" : {
853
+ "nodetype" : "table",
854
+ "moduleName" : "UPS-MIB",
855
+ "oid" : "1.3.6.1.2.1.33.1.6.2",
856
+ "status" : "current",
857
+ "description" :
858
+ """A list of alarm table entries. The table contains
859
+ zero, one, or many rows at any moment, depending upon
860
+ the number of alarm conditions in effect. The table
861
+ is initially empty at agent startup. The agent
862
+ creates a row in the table each time a condition is
863
+ detected and deletes that row when that condition no
864
+ longer pertains. The agent creates the first row with
865
+ upsAlarmId equal to 1, and increments the value of
866
+ upsAlarmId each time a new row is created, wrapping to
867
+ the first free value greater than or equal to 1 when
868
+ the maximum value of upsAlarmId would otherwise be
869
+ exceeded. Consequently, after multiple operations,
870
+ the table may become sparse, e.g., containing entries
871
+ for rows 95, 100, 101, and 203 and the entries should
872
+ not be assumed to be in chronological order because
873
+ upsAlarmId might have wrapped.
874
+
875
+ Alarms are named by an AutonomousType (OBJECT
876
+ IDENTIFIER), upsAlarmDescr, to allow a single table to
877
+ reflect well known alarms plus alarms defined by a
878
+ particular implementation, i.e., as documented in the
879
+ private enterprise MIB definition for the device. No
880
+ two rows will have the same value of upsAlarmDescr,
881
+ since alarms define conditions. In order to meet this
882
+ requirement, care should be taken in the definition of
883
+ alarm conditions to insure that a system cannot enter
884
+ the same condition multiple times simultaneously.
885
+
886
+ The number of rows in the table at any given time is
887
+ reflected by the value of upsAlarmsPresent.""",
888
+ }, # table
889
+ "upsAlarmEntry" : {
890
+ "nodetype" : "row",
891
+ "moduleName" : "UPS-MIB",
892
+ "oid" : "1.3.6.1.2.1.33.1.6.2.1",
893
+ "status" : "current",
894
+ "linkage" : [
895
+ "upsAlarmId",
896
+ ],
897
+ "description" :
898
+ """An entry containing information applicable to a
899
+ particular alarm.""",
900
+ }, # row
901
+ "upsAlarmId" : {
902
+ "nodetype" : "column",
903
+ "moduleName" : "UPS-MIB",
904
+ "oid" : "1.3.6.1.2.1.33.1.6.2.1.1",
905
+ "status" : "current",
906
+ "syntax" : {
907
+ "type" : { "module" :"UPS-MIB", "name" : "PositiveInteger"},
908
+ },
909
+ "access" : "noaccess",
910
+ "description" :
911
+ """A unique identifier for an alarm condition. This
912
+ value must remain constant.""",
913
+ }, # column
914
+ "upsAlarmDescr" : {
915
+ "nodetype" : "column",
916
+ "moduleName" : "UPS-MIB",
917
+ "oid" : "1.3.6.1.2.1.33.1.6.2.1.2",
918
+ "status" : "current",
919
+ "syntax" : {
920
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
921
+ },
922
+ "access" : "readonly",
923
+ "description" :
924
+ """A reference to an alarm description object. The
925
+ object referenced should not be accessible, but rather
926
+ be used to provide a unique description of the alarm
927
+ condition.""",
928
+ }, # column
929
+ "upsAlarmTime" : {
930
+ "nodetype" : "column",
931
+ "moduleName" : "UPS-MIB",
932
+ "oid" : "1.3.6.1.2.1.33.1.6.2.1.3",
933
+ "status" : "current",
934
+ "syntax" : {
935
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
936
+ },
937
+ "access" : "readonly",
938
+ "description" :
939
+ """The value of sysUpTime when the alarm condition was
940
+ detected. If the alarm condition was detected at the
941
+ time of agent startup and presumably existed before
942
+ agent startup, the value of upsAlarmTime shall equal
943
+ 0.""",
944
+ }, # column
945
+ "upsWellKnownAlarms" : {
946
+ "nodetype" : "node",
947
+ "moduleName" : "UPS-MIB",
948
+ "oid" : "1.3.6.1.2.1.33.1.6.3",
949
+ }, # node
950
+ "upsAlarmBatteryBad" : {
951
+ "nodetype" : "node",
952
+ "moduleName" : "UPS-MIB",
953
+ "oid" : "1.3.6.1.2.1.33.1.6.3.1",
954
+ "status" : "current",
955
+ "description" :
956
+ """One or more batteries have been determined to require
957
+ replacement.""",
958
+ }, # node
959
+ "upsAlarmOnBattery" : {
960
+ "nodetype" : "node",
961
+ "moduleName" : "UPS-MIB",
962
+ "oid" : "1.3.6.1.2.1.33.1.6.3.2",
963
+ "status" : "current",
964
+ "description" :
965
+ """The UPS is drawing power from the batteries.""",
966
+ }, # node
967
+ "upsAlarmLowBattery" : {
968
+ "nodetype" : "node",
969
+ "moduleName" : "UPS-MIB",
970
+ "oid" : "1.3.6.1.2.1.33.1.6.3.3",
971
+ "status" : "current",
972
+ "description" :
973
+ """The remaining battery run-time is less than or equal
974
+ to upsConfigLowBattTime.""",
975
+ }, # node
976
+ "upsAlarmDepletedBattery" : {
977
+ "nodetype" : "node",
978
+ "moduleName" : "UPS-MIB",
979
+ "oid" : "1.3.6.1.2.1.33.1.6.3.4",
980
+ "status" : "current",
981
+ "description" :
982
+ """The UPS will be unable to sustain the present load
983
+ when and if the utility power is lost.""",
984
+ }, # node
985
+ "upsAlarmTempBad" : {
986
+ "nodetype" : "node",
987
+ "moduleName" : "UPS-MIB",
988
+ "oid" : "1.3.6.1.2.1.33.1.6.3.5",
989
+ "status" : "current",
990
+ "description" :
991
+ """A temperature is out of tolerance.""",
992
+ }, # node
993
+ "upsAlarmInputBad" : {
994
+ "nodetype" : "node",
995
+ "moduleName" : "UPS-MIB",
996
+ "oid" : "1.3.6.1.2.1.33.1.6.3.6",
997
+ "status" : "current",
998
+ "description" :
999
+ """An input condition is out of tolerance.""",
1000
+ }, # node
1001
+ "upsAlarmOutputBad" : {
1002
+ "nodetype" : "node",
1003
+ "moduleName" : "UPS-MIB",
1004
+ "oid" : "1.3.6.1.2.1.33.1.6.3.7",
1005
+ "status" : "current",
1006
+ "description" :
1007
+ """An output condition (other than OutputOverload) is
1008
+ out of tolerance.""",
1009
+ }, # node
1010
+ "upsAlarmOutputOverload" : {
1011
+ "nodetype" : "node",
1012
+ "moduleName" : "UPS-MIB",
1013
+ "oid" : "1.3.6.1.2.1.33.1.6.3.8",
1014
+ "status" : "current",
1015
+ "description" :
1016
+ """The output load exceeds the UPS output capacity.""",
1017
+ }, # node
1018
+ "upsAlarmOnBypass" : {
1019
+ "nodetype" : "node",
1020
+ "moduleName" : "UPS-MIB",
1021
+ "oid" : "1.3.6.1.2.1.33.1.6.3.9",
1022
+ "status" : "current",
1023
+ "description" :
1024
+ """The Bypass is presently engaged on the UPS.""",
1025
+ }, # node
1026
+ "upsAlarmBypassBad" : {
1027
+ "nodetype" : "node",
1028
+ "moduleName" : "UPS-MIB",
1029
+ "oid" : "1.3.6.1.2.1.33.1.6.3.10",
1030
+ "status" : "current",
1031
+ "description" :
1032
+ """The Bypass is out of tolerance.""",
1033
+ }, # node
1034
+ "upsAlarmOutputOffAsRequested" : {
1035
+ "nodetype" : "node",
1036
+ "moduleName" : "UPS-MIB",
1037
+ "oid" : "1.3.6.1.2.1.33.1.6.3.11",
1038
+ "status" : "current",
1039
+ "description" :
1040
+ """The UPS has shutdown as requested, i.e., the output
1041
+ is off.""",
1042
+ }, # node
1043
+ "upsAlarmUpsOffAsRequested" : {
1044
+ "nodetype" : "node",
1045
+ "moduleName" : "UPS-MIB",
1046
+ "oid" : "1.3.6.1.2.1.33.1.6.3.12",
1047
+ "status" : "current",
1048
+ "description" :
1049
+ """The entire UPS has shutdown as commanded.""",
1050
+ }, # node
1051
+ "upsAlarmChargerFailed" : {
1052
+ "nodetype" : "node",
1053
+ "moduleName" : "UPS-MIB",
1054
+ "oid" : "1.3.6.1.2.1.33.1.6.3.13",
1055
+ "status" : "current",
1056
+ "description" :
1057
+ """An uncorrected problem has been detected within the
1058
+ UPS charger subsystem.""",
1059
+ }, # node
1060
+ "upsAlarmUpsOutputOff" : {
1061
+ "nodetype" : "node",
1062
+ "moduleName" : "UPS-MIB",
1063
+ "oid" : "1.3.6.1.2.1.33.1.6.3.14",
1064
+ "status" : "current",
1065
+ "description" :
1066
+ """The output of the UPS is in the off state.""",
1067
+ }, # node
1068
+ "upsAlarmUpsSystemOff" : {
1069
+ "nodetype" : "node",
1070
+ "moduleName" : "UPS-MIB",
1071
+ "oid" : "1.3.6.1.2.1.33.1.6.3.15",
1072
+ "status" : "current",
1073
+ "description" :
1074
+ """The UPS system is in the off state.""",
1075
+ }, # node
1076
+ "upsAlarmFanFailure" : {
1077
+ "nodetype" : "node",
1078
+ "moduleName" : "UPS-MIB",
1079
+ "oid" : "1.3.6.1.2.1.33.1.6.3.16",
1080
+ "status" : "current",
1081
+ "description" :
1082
+ """The failure of one or more fans in the UPS has been
1083
+ detected.""",
1084
+ }, # node
1085
+ "upsAlarmFuseFailure" : {
1086
+ "nodetype" : "node",
1087
+ "moduleName" : "UPS-MIB",
1088
+ "oid" : "1.3.6.1.2.1.33.1.6.3.17",
1089
+ "status" : "current",
1090
+ "description" :
1091
+ """The failure of one or more fuses has been detected.""",
1092
+ }, # node
1093
+ "upsAlarmGeneralFault" : {
1094
+ "nodetype" : "node",
1095
+ "moduleName" : "UPS-MIB",
1096
+ "oid" : "1.3.6.1.2.1.33.1.6.3.18",
1097
+ "status" : "current",
1098
+ "description" :
1099
+ """A general fault in the UPS has been detected.""",
1100
+ }, # node
1101
+ "upsAlarmDiagnosticTestFailed" : {
1102
+ "nodetype" : "node",
1103
+ "moduleName" : "UPS-MIB",
1104
+ "oid" : "1.3.6.1.2.1.33.1.6.3.19",
1105
+ "status" : "current",
1106
+ "description" :
1107
+ """The result of the last diagnostic test indicates a
1108
+ failure.""",
1109
+ }, # node
1110
+ "upsAlarmCommunicationsLost" : {
1111
+ "nodetype" : "node",
1112
+ "moduleName" : "UPS-MIB",
1113
+ "oid" : "1.3.6.1.2.1.33.1.6.3.20",
1114
+ "status" : "current",
1115
+ "description" :
1116
+ """A problem has been encountered in the communications
1117
+ between the agent and the UPS.""",
1118
+ }, # node
1119
+ "upsAlarmAwaitingPower" : {
1120
+ "nodetype" : "node",
1121
+ "moduleName" : "UPS-MIB",
1122
+ "oid" : "1.3.6.1.2.1.33.1.6.3.21",
1123
+ "status" : "current",
1124
+ "description" :
1125
+ """The UPS output is off and the UPS is awaiting the
1126
+ return of input power.""",
1127
+ }, # node
1128
+ "upsAlarmShutdownPending" : {
1129
+ "nodetype" : "node",
1130
+ "moduleName" : "UPS-MIB",
1131
+ "oid" : "1.3.6.1.2.1.33.1.6.3.22",
1132
+ "status" : "current",
1133
+ "description" :
1134
+ """A upsShutdownAfterDelay countdown is underway.""",
1135
+ }, # node
1136
+ "upsAlarmShutdownImminent" : {
1137
+ "nodetype" : "node",
1138
+ "moduleName" : "UPS-MIB",
1139
+ "oid" : "1.3.6.1.2.1.33.1.6.3.23",
1140
+ "status" : "current",
1141
+ "description" :
1142
+ """The UPS will turn off power to the load in less than
1143
+ 5 seconds; this may be either a timed shutdown or a
1144
+ low battery shutdown.""",
1145
+ }, # node
1146
+ "upsAlarmTestInProgress" : {
1147
+ "nodetype" : "node",
1148
+ "moduleName" : "UPS-MIB",
1149
+ "oid" : "1.3.6.1.2.1.33.1.6.3.24",
1150
+ "status" : "current",
1151
+ "description" :
1152
+ """A test is in progress, as initiated and indicated by
1153
+ the Test Group. Tests initiated via other
1154
+ implementation-specific mechanisms can indicate the
1155
+ presence of the testing in the alarm table, if
1156
+ desired, via a OBJECT-IDENTITY macro in the MIB
1157
+ document specific to that implementation and are
1158
+ outside the scope of this OBJECT-IDENTITY.""",
1159
+ }, # node
1160
+ "upsTest" : {
1161
+ "nodetype" : "node",
1162
+ "moduleName" : "UPS-MIB",
1163
+ "oid" : "1.3.6.1.2.1.33.1.7",
1164
+ }, # node
1165
+ "upsTestId" : {
1166
+ "nodetype" : "scalar",
1167
+ "moduleName" : "UPS-MIB",
1168
+ "oid" : "1.3.6.1.2.1.33.1.7.1",
1169
+ "status" : "current",
1170
+ "syntax" : {
1171
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1172
+ },
1173
+ "access" : "readwrite",
1174
+ "description" :
1175
+ """The test is named by an OBJECT IDENTIFIER which
1176
+ allows a standard mechanism for the initiation of
1177
+ tests, including the well known tests identified in
1178
+ this document as well as those introduced by a
1179
+ particular implementation, i.e., as documented in the
1180
+ private enterprise MIB definition for the device.
1181
+
1182
+ Setting this variable initiates the named test. Sets
1183
+ to this variable require the presence of
1184
+ upsTestSpinLock in the same SNMP message.
1185
+
1186
+ The set request will be rejected with an appropriate
1187
+ error message if the requested test cannot be
1188
+ performed, including attempts to start a test when
1189
+ another test is already in progress. The status of
1190
+ the current or last test is maintained in
1191
+ upsTestResultsSummary. Tests in progress may be
1192
+ aborted by setting the upsTestId variable to
1193
+ upsTestAbortTestInProgress.
1194
+
1195
+ Read operations return the value of the name of the
1196
+ test in progress if a test is in progress or the name
1197
+ of the last test performed if no test is in progress,
1198
+ unless no test has been run, in which case the well
1199
+ known value upsTestNoTestsInitiated is returned.""",
1200
+ }, # scalar
1201
+ "upsTestSpinLock" : {
1202
+ "nodetype" : "scalar",
1203
+ "moduleName" : "UPS-MIB",
1204
+ "oid" : "1.3.6.1.2.1.33.1.7.2",
1205
+ "status" : "current",
1206
+ "syntax" : {
1207
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
1208
+ },
1209
+ "access" : "readwrite",
1210
+ "description" :
1211
+ """A spin lock on the test subsystem. The spinlock is
1212
+ used as follows.
1213
+
1214
+ Before starting a test, a manager-station should make
1215
+ sure that a test is not in progress as follows:
1216
+
1217
+ try_again:
1218
+ get (upsTestSpinLock)
1219
+ while (upsTestResultsSummary == inProgress) {
1220
+ /* loop while a test is running for another
1221
+ manager */
1222
+ short delay
1223
+ get (upsTestSpinLock)
1224
+ }
1225
+ lock_value = upsTestSpinLock
1226
+ /* no test in progress, start the test */
1227
+ set (upsTestSpinLock = lock_value, upsTestId =
1228
+ requested_test)
1229
+ if (error_index == 1) { /* (upsTestSpinLock
1230
+ failed) */
1231
+ /* if problem is not access control, then
1232
+ some other manager slipped in ahead of us
1233
+ */
1234
+ goto try_again
1235
+ }
1236
+ if (error_index == 2) { /* (upsTestId) */
1237
+ /* cannot perform the test */
1238
+ give up
1239
+ }
1240
+ /* test started ok */
1241
+ /* wait for test completion by polling
1242
+ upsTestResultsSummary */
1243
+ get (upsTestSpinLock, upsTestResultsSummary,
1244
+ upsTestResultsDetail)
1245
+ while (upsTestResultsSummary == inProgress) {
1246
+ short delay
1247
+ get (upsTestSpinLock, upsTestResultsSummary,
1248
+ upsTestResultsDetail)
1249
+ }
1250
+ /* when test completes, retrieve any additional
1251
+ test results */
1252
+ /* if upsTestSpinLock == lock_value + 1, then
1253
+ these are our test */
1254
+ /* results (as opposed to another manager's */
1255
+ The initial value of upsTestSpinLock at agent
1256
+ initialization shall
1257
+ be 1.""",
1258
+ }, # scalar
1259
+ "upsTestResultsSummary" : {
1260
+ "nodetype" : "scalar",
1261
+ "moduleName" : "UPS-MIB",
1262
+ "oid" : "1.3.6.1.2.1.33.1.7.3",
1263
+ "status" : "current",
1264
+ "syntax" : {
1265
+ "type" : {
1266
+ "basetype" : "Enumeration",
1267
+ "donePass" : {
1268
+ "nodetype" : "namednumber",
1269
+ "number" : "1"
1270
+ },
1271
+ "doneWarning" : {
1272
+ "nodetype" : "namednumber",
1273
+ "number" : "2"
1274
+ },
1275
+ "doneError" : {
1276
+ "nodetype" : "namednumber",
1277
+ "number" : "3"
1278
+ },
1279
+ "aborted" : {
1280
+ "nodetype" : "namednumber",
1281
+ "number" : "4"
1282
+ },
1283
+ "inProgress" : {
1284
+ "nodetype" : "namednumber",
1285
+ "number" : "5"
1286
+ },
1287
+ "noTestsInitiated" : {
1288
+ "nodetype" : "namednumber",
1289
+ "number" : "6"
1290
+ },
1291
+ },
1292
+ },
1293
+ "access" : "readonly",
1294
+ "description" :
1295
+ """The results of the current or last UPS diagnostics
1296
+ test performed. The values for donePass(1),
1297
+ doneWarning(2), and doneError(3) indicate that the
1298
+ test completed either successfully, with a warning, or
1299
+ with an error, respectively. The value aborted(4) is
1300
+ returned for tests which are aborted by setting the
1301
+ value of upsTestId to upsTestAbortTestInProgress.
1302
+ Tests which have not yet concluded are indicated by
1303
+ inProgress(5). The value noTestsInitiated(6)
1304
+ indicates that no previous test results are available,
1305
+ such as is the case when no tests have been run since
1306
+ the last reinitialization of the network management
1307
+ subsystem and the system has no provision for non-
1308
+ volatile storage of test results.""",
1309
+ }, # scalar
1310
+ "upsTestResultsDetail" : {
1311
+ "nodetype" : "scalar",
1312
+ "moduleName" : "UPS-MIB",
1313
+ "oid" : "1.3.6.1.2.1.33.1.7.4",
1314
+ "status" : "current",
1315
+ "syntax" : {
1316
+ "type" : {
1317
+ "basetype" : "OctetString",
1318
+ "parent module" : {
1319
+ "name" : "SNMPv2-TC",
1320
+ "type" : "DisplayString",
1321
+ },
1322
+ "ranges" : [
1323
+ {
1324
+ "min" : "0",
1325
+ "max" : "255"
1326
+ },
1327
+ ],
1328
+ "range" : {
1329
+ "min" : "0",
1330
+ "max" : "255"
1331
+ },
1332
+ },
1333
+ },
1334
+ "access" : "readonly",
1335
+ "description" :
1336
+ """Additional information about upsTestResultsSummary.
1337
+ If no additional information available, a zero length
1338
+ string is returned.""",
1339
+ }, # scalar
1340
+ "upsTestStartTime" : {
1341
+ "nodetype" : "scalar",
1342
+ "moduleName" : "UPS-MIB",
1343
+ "oid" : "1.3.6.1.2.1.33.1.7.5",
1344
+ "status" : "current",
1345
+ "syntax" : {
1346
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1347
+ },
1348
+ "access" : "readonly",
1349
+ "description" :
1350
+ """The value of sysUpTime at the time the test in
1351
+ progress was initiated, or, if no test is in progress,
1352
+ the time the previous test was initiated. If the
1353
+ value of upsTestResultsSummary is noTestsInitiated(6),
1354
+ upsTestStartTime has the value 0.""",
1355
+ }, # scalar
1356
+ "upsTestElapsedTime" : {
1357
+ "nodetype" : "scalar",
1358
+ "moduleName" : "UPS-MIB",
1359
+ "oid" : "1.3.6.1.2.1.33.1.7.6",
1360
+ "status" : "current",
1361
+ "syntax" : {
1362
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1363
+ },
1364
+ "access" : "readonly",
1365
+ "description" :
1366
+ """The amount of time, in TimeTicks, since the test in
1367
+ progress was initiated, or, if no test is in progress,
1368
+ the previous test took to complete. If the value of
1369
+ upsTestResultsSummary is noTestsInitiated(6),
1370
+ upsTestElapsedTime has the value 0.""",
1371
+ }, # scalar
1372
+ "upsWellKnownTests" : {
1373
+ "nodetype" : "node",
1374
+ "moduleName" : "UPS-MIB",
1375
+ "oid" : "1.3.6.1.2.1.33.1.7.7",
1376
+ }, # node
1377
+ "upsTestNoTestsInitiated" : {
1378
+ "nodetype" : "node",
1379
+ "moduleName" : "UPS-MIB",
1380
+ "oid" : "1.3.6.1.2.1.33.1.7.7.1",
1381
+ "status" : "current",
1382
+ "description" :
1383
+ """No tests have been initiated and no test is in
1384
+ progress.""",
1385
+ }, # node
1386
+ "upsTestAbortTestInProgress" : {
1387
+ "nodetype" : "node",
1388
+ "moduleName" : "UPS-MIB",
1389
+ "oid" : "1.3.6.1.2.1.33.1.7.7.2",
1390
+ "status" : "current",
1391
+ "description" :
1392
+ """The test in progress is to be aborted / the test in
1393
+ progress was aborted.""",
1394
+ }, # node
1395
+ "upsTestGeneralSystemsTest" : {
1396
+ "nodetype" : "node",
1397
+ "moduleName" : "UPS-MIB",
1398
+ "oid" : "1.3.6.1.2.1.33.1.7.7.3",
1399
+ "status" : "current",
1400
+ "description" :
1401
+ """The manufacturer's standard test of UPS device
1402
+ systems.""",
1403
+ }, # node
1404
+ "upsTestQuickBatteryTest" : {
1405
+ "nodetype" : "node",
1406
+ "moduleName" : "UPS-MIB",
1407
+ "oid" : "1.3.6.1.2.1.33.1.7.7.4",
1408
+ "status" : "current",
1409
+ "description" :
1410
+ """A test that is sufficient to determine if the battery
1411
+ needs replacement.""",
1412
+ }, # node
1413
+ "upsTestDeepBatteryCalibration" : {
1414
+ "nodetype" : "node",
1415
+ "moduleName" : "UPS-MIB",
1416
+ "oid" : "1.3.6.1.2.1.33.1.7.7.5",
1417
+ "status" : "current",
1418
+ "description" :
1419
+ """The system is placed on battery to a discharge level,
1420
+ set by the manufacturer, sufficient to determine
1421
+ battery replacement and battery run-time with a high
1422
+ degree of confidence. WARNING: this test will leave
1423
+ the battery in a low charge state and will require
1424
+ time for recharging to a level sufficient to provide
1425
+ normal battery duration for the protected load.""",
1426
+ }, # node
1427
+ "upsControl" : {
1428
+ "nodetype" : "node",
1429
+ "moduleName" : "UPS-MIB",
1430
+ "oid" : "1.3.6.1.2.1.33.1.8",
1431
+ }, # node
1432
+ "upsShutdownType" : {
1433
+ "nodetype" : "scalar",
1434
+ "moduleName" : "UPS-MIB",
1435
+ "oid" : "1.3.6.1.2.1.33.1.8.1",
1436
+ "status" : "current",
1437
+ "syntax" : {
1438
+ "type" : {
1439
+ "basetype" : "Enumeration",
1440
+ "output" : {
1441
+ "nodetype" : "namednumber",
1442
+ "number" : "1"
1443
+ },
1444
+ "system" : {
1445
+ "nodetype" : "namednumber",
1446
+ "number" : "2"
1447
+ },
1448
+ },
1449
+ },
1450
+ "access" : "readwrite",
1451
+ "description" :
1452
+ """This object determines the nature of the action to be
1453
+ taken at the time when the countdown of the
1454
+ upsShutdownAfterDelay and upsRebootWithDuration
1455
+ objects reaches zero.
1456
+
1457
+ Setting this object to output(1) indicates that
1458
+ shutdown requests should cause only the output of the
1459
+ UPS to turn off. Setting this object to system(2)
1460
+ indicates that shutdown requests will cause the entire
1461
+ UPS system to turn off.""",
1462
+ }, # scalar
1463
+ "upsShutdownAfterDelay" : {
1464
+ "nodetype" : "scalar",
1465
+ "moduleName" : "UPS-MIB",
1466
+ "oid" : "1.3.6.1.2.1.33.1.8.2",
1467
+ "status" : "current",
1468
+ "syntax" : {
1469
+ "type" : {
1470
+ "basetype" : "Integer32",
1471
+ "ranges" : [
1472
+ {
1473
+ "min" : "-1",
1474
+ "max" : "2147483647"
1475
+ },
1476
+ ],
1477
+ "range" : {
1478
+ "min" : "-1",
1479
+ "max" : "2147483647"
1480
+ },
1481
+ },
1482
+ },
1483
+ "access" : "readwrite",
1484
+ "units" : "seconds",
1485
+ "description" :
1486
+ """Setting this object will shutdown (i.e., turn off)
1487
+ either the UPS output or the UPS system (as determined
1488
+ by the value of upsShutdownType at the time of
1489
+ shutdown) after the indicated number of seconds, or
1490
+ less if the UPS batteries become depleted. Setting
1491
+ this object to 0 will cause the shutdown to occur
1492
+ immediately. Setting this object to -1 will abort the
1493
+ countdown. If the system is already in the desired
1494
+ state at the time the countdown reaches 0, then
1495
+ nothing will happen. That is, there is no additional
1496
+ action at that time if upsShutdownType = system and
1497
+ the system is already off. Similarly, there is no
1498
+ additional action at that time if upsShutdownType =
1499
+ output and the output is already off. When read,
1500
+ upsShutdownAfterDelay will return the number of
1501
+ seconds remaining until shutdown, or -1 if no shutdown
1502
+ countdown is in effect. On some systems, if the agent
1503
+ is restarted while a shutdown countdown is in effect,
1504
+ the countdown may be aborted. Sets to this object
1505
+ override any upsShutdownAfterDelay already in effect.""",
1506
+ }, # scalar
1507
+ "upsStartupAfterDelay" : {
1508
+ "nodetype" : "scalar",
1509
+ "moduleName" : "UPS-MIB",
1510
+ "oid" : "1.3.6.1.2.1.33.1.8.3",
1511
+ "status" : "current",
1512
+ "syntax" : {
1513
+ "type" : {
1514
+ "basetype" : "Integer32",
1515
+ "ranges" : [
1516
+ {
1517
+ "min" : "-1",
1518
+ "max" : "2147483647"
1519
+ },
1520
+ ],
1521
+ "range" : {
1522
+ "min" : "-1",
1523
+ "max" : "2147483647"
1524
+ },
1525
+ },
1526
+ },
1527
+ "access" : "readwrite",
1528
+ "units" : "seconds",
1529
+ "description" :
1530
+ """Setting this object will start the output after the
1531
+ indicated number of seconds, including starting the
1532
+ UPS, if necessary. Setting this object to 0 will
1533
+ cause the startup to occur immediately. Setting this
1534
+ object to -1 will abort the countdown. If the output
1535
+ is already on at the time the countdown reaches 0,
1536
+ then nothing will happen. Sets to this object
1537
+ override the effect of any upsStartupAfterDelay
1538
+ countdown or upsRebootWithDuration countdown in
1539
+ progress. When read, upsStartupAfterDelay will return
1540
+ the number of seconds until startup, or -1 if no
1541
+ startup countdown is in effect. If the countdown
1542
+ expires during a utility failure, the startup shall
1543
+ not occur until the utility power is restored. On
1544
+ some systems, if the agent is restarted while a
1545
+ startup countdown is in effect, the countdown is
1546
+ aborted.""",
1547
+ }, # scalar
1548
+ "upsRebootWithDuration" : {
1549
+ "nodetype" : "scalar",
1550
+ "moduleName" : "UPS-MIB",
1551
+ "oid" : "1.3.6.1.2.1.33.1.8.4",
1552
+ "status" : "current",
1553
+ "syntax" : {
1554
+ "type" : {
1555
+ "basetype" : "Integer32",
1556
+ "ranges" : [
1557
+ {
1558
+ "min" : "-1",
1559
+ "max" : "300"
1560
+ },
1561
+ ],
1562
+ "range" : {
1563
+ "min" : "-1",
1564
+ "max" : "300"
1565
+ },
1566
+ },
1567
+ },
1568
+ "access" : "readwrite",
1569
+ "units" : "seconds",
1570
+ "description" :
1571
+ """Setting this object will immediately shutdown (i.e.,
1572
+ turn off) either the UPS output or the UPS system (as
1573
+ determined by the value of upsShutdownType at the time
1574
+ of shutdown) for a period equal to the indicated
1575
+ number of seconds, after which time the output will be
1576
+ started, including starting the UPS, if necessary. If
1577
+ the number of seconds required to perform the request
1578
+ is greater than the requested duration, then the
1579
+ requested shutdown and startup cycle shall be
1580
+ performed in the minimum time possible, but in no case
1581
+ shall this require more than the requested duration
1582
+ plus 60 seconds. When read, upsRebootWithDuration
1583
+ shall return the number of seconds remaining in the
1584
+ countdown, or -1 if no countdown is in progress. If
1585
+ the startup should occur during a utility failure, the
1586
+ startup shall not occur until the utility power is
1587
+ restored.""",
1588
+ }, # scalar
1589
+ "upsAutoRestart" : {
1590
+ "nodetype" : "scalar",
1591
+ "moduleName" : "UPS-MIB",
1592
+ "oid" : "1.3.6.1.2.1.33.1.8.5",
1593
+ "status" : "current",
1594
+ "syntax" : {
1595
+ "type" : {
1596
+ "basetype" : "Enumeration",
1597
+ "on" : {
1598
+ "nodetype" : "namednumber",
1599
+ "number" : "1"
1600
+ },
1601
+ "off" : {
1602
+ "nodetype" : "namednumber",
1603
+ "number" : "2"
1604
+ },
1605
+ },
1606
+ },
1607
+ "access" : "readwrite",
1608
+ "description" :
1609
+ """Setting this object to 'on' will cause the UPS system
1610
+ to restart after a shutdown if the shutdown occurred
1611
+ during a power loss as a result of either a
1612
+ upsShutdownAfterDelay or an internal battery depleted
1613
+ condition. Setting this object to 'off' will prevent
1614
+ the UPS system from restarting after a shutdown until
1615
+ an operator manually or remotely explicitly restarts
1616
+ it. If the UPS is in a startup or reboot countdown,
1617
+ then the UPS will not restart until that delay has
1618
+ been satisfied.""",
1619
+ }, # scalar
1620
+ "upsConfig" : {
1621
+ "nodetype" : "node",
1622
+ "moduleName" : "UPS-MIB",
1623
+ "oid" : "1.3.6.1.2.1.33.1.9",
1624
+ }, # node
1625
+ "upsConfigInputVoltage" : {
1626
+ "nodetype" : "scalar",
1627
+ "moduleName" : "UPS-MIB",
1628
+ "oid" : "1.3.6.1.2.1.33.1.9.1",
1629
+ "status" : "current",
1630
+ "syntax" : {
1631
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
1632
+ },
1633
+ "access" : "readwrite",
1634
+ "units" : "RMS Volts",
1635
+ "description" :
1636
+ """The magnitude of the nominal input voltage. On those
1637
+ systems which support read-write access to this
1638
+ object, if there is an attempt to set this variable to
1639
+ a value that is not supported, the request must be
1640
+ rejected and the agent shall respond with an
1641
+ appropriate error message, i.e., badValue for SNMPv1,
1642
+ or inconsistentValue for SNMPv2.""",
1643
+ }, # scalar
1644
+ "upsConfigInputFreq" : {
1645
+ "nodetype" : "scalar",
1646
+ "moduleName" : "UPS-MIB",
1647
+ "oid" : "1.3.6.1.2.1.33.1.9.2",
1648
+ "status" : "current",
1649
+ "syntax" : {
1650
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
1651
+ },
1652
+ "access" : "readwrite",
1653
+ "units" : "0.1 Hertz",
1654
+ "description" :
1655
+ """The nominal input frequency. On those systems which
1656
+ support read-write access to this object, if there is
1657
+ an attempt to set this variable to a value that is not
1658
+ supported, the request must be rejected and the agent
1659
+ shall respond with an appropriate error message, i.e.,
1660
+ badValue for SNMPv1, or inconsistentValue for SNMPv2.""",
1661
+ }, # scalar
1662
+ "upsConfigOutputVoltage" : {
1663
+ "nodetype" : "scalar",
1664
+ "moduleName" : "UPS-MIB",
1665
+ "oid" : "1.3.6.1.2.1.33.1.9.3",
1666
+ "status" : "current",
1667
+ "syntax" : {
1668
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
1669
+ },
1670
+ "access" : "readwrite",
1671
+ "units" : "RMS Volts",
1672
+ "description" :
1673
+ """The magnitude of the nominal output voltage. On
1674
+ those systems which support read-write access to this
1675
+ object, if there is an attempt to set this variable to
1676
+ a value that is not supported, the request must be
1677
+ rejected and the agent shall respond with an
1678
+ appropriate error message, i.e., badValue for SNMPv1,
1679
+ or inconsistentValue for SNMPv2.""",
1680
+ }, # scalar
1681
+ "upsConfigOutputFreq" : {
1682
+ "nodetype" : "scalar",
1683
+ "moduleName" : "UPS-MIB",
1684
+ "oid" : "1.3.6.1.2.1.33.1.9.4",
1685
+ "status" : "current",
1686
+ "syntax" : {
1687
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
1688
+ },
1689
+ "access" : "readwrite",
1690
+ "units" : "0.1 Hertz",
1691
+ "description" :
1692
+ """The nominal output frequency. On those systems which
1693
+ support read-write access to this object, if there is
1694
+ an attempt to set this variable to a value that is not
1695
+ supported, the request must be rejected and the agent
1696
+ shall respond with an appropriate error message, i.e.,
1697
+ badValue for SNMPv1, or inconsistentValue for SNMPv2.""",
1698
+ }, # scalar
1699
+ "upsConfigOutputVA" : {
1700
+ "nodetype" : "scalar",
1701
+ "moduleName" : "UPS-MIB",
1702
+ "oid" : "1.3.6.1.2.1.33.1.9.5",
1703
+ "status" : "current",
1704
+ "syntax" : {
1705
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
1706
+ },
1707
+ "access" : "readonly",
1708
+ "units" : "Volt-Amps",
1709
+ "description" :
1710
+ """The magnitude of the nominal Volt-Amp rating.""",
1711
+ }, # scalar
1712
+ "upsConfigOutputPower" : {
1713
+ "nodetype" : "scalar",
1714
+ "moduleName" : "UPS-MIB",
1715
+ "oid" : "1.3.6.1.2.1.33.1.9.6",
1716
+ "status" : "current",
1717
+ "syntax" : {
1718
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
1719
+ },
1720
+ "access" : "readonly",
1721
+ "units" : "Watts",
1722
+ "description" :
1723
+ """The magnitude of the nominal true power rating.""",
1724
+ }, # scalar
1725
+ "upsConfigLowBattTime" : {
1726
+ "nodetype" : "scalar",
1727
+ "moduleName" : "UPS-MIB",
1728
+ "oid" : "1.3.6.1.2.1.33.1.9.7",
1729
+ "status" : "current",
1730
+ "syntax" : {
1731
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
1732
+ },
1733
+ "access" : "readwrite",
1734
+ "units" : "minutes",
1735
+ "description" :
1736
+ """The value of upsEstimatedMinutesRemaining at which a
1737
+ lowBattery condition is declared. For agents which
1738
+ support only discrete (discontinuous) values, then the
1739
+ agent shall round up to the next supported value. If
1740
+ the requested value is larger than the largest
1741
+ supported value, then the largest supported value
1742
+ shall be selected.""",
1743
+ }, # scalar
1744
+ "upsConfigAudibleStatus" : {
1745
+ "nodetype" : "scalar",
1746
+ "moduleName" : "UPS-MIB",
1747
+ "oid" : "1.3.6.1.2.1.33.1.9.8",
1748
+ "status" : "current",
1749
+ "syntax" : {
1750
+ "type" : {
1751
+ "basetype" : "Enumeration",
1752
+ "disabled" : {
1753
+ "nodetype" : "namednumber",
1754
+ "number" : "1"
1755
+ },
1756
+ "enabled" : {
1757
+ "nodetype" : "namednumber",
1758
+ "number" : "2"
1759
+ },
1760
+ "muted" : {
1761
+ "nodetype" : "namednumber",
1762
+ "number" : "3"
1763
+ },
1764
+ },
1765
+ },
1766
+ "access" : "readwrite",
1767
+ "description" :
1768
+ """The requested state of the audible alarm. When in
1769
+ the disabled state, the audible alarm should never
1770
+ sound. The enabled state is self-describing. Setting
1771
+ this object to muted(3) when the audible alarm is
1772
+ sounding shall temporarily silence the alarm. It will
1773
+ remain muted until it would normally stop sounding and
1774
+ the value returned for read operations during this
1775
+ period shall equal muted(3). At the end of this
1776
+ period, the value shall revert to enabled(2). Writes
1777
+ of the value muted(3) when the audible alarm is not
1778
+ sounding shall be accepted but otherwise shall have no
1779
+ effect.""",
1780
+ }, # scalar
1781
+ "upsConfigLowVoltageTransferPoint" : {
1782
+ "nodetype" : "scalar",
1783
+ "moduleName" : "UPS-MIB",
1784
+ "oid" : "1.3.6.1.2.1.33.1.9.9",
1785
+ "status" : "current",
1786
+ "syntax" : {
1787
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
1788
+ },
1789
+ "access" : "readwrite",
1790
+ "units" : "RMS Volts",
1791
+ "description" :
1792
+ """The minimum input line voltage allowed before the UPS
1793
+ system transfers to battery backup.""",
1794
+ }, # scalar
1795
+ "upsConfigHighVoltageTransferPoint" : {
1796
+ "nodetype" : "scalar",
1797
+ "moduleName" : "UPS-MIB",
1798
+ "oid" : "1.3.6.1.2.1.33.1.9.10",
1799
+ "status" : "current",
1800
+ "syntax" : {
1801
+ "type" : { "module" :"UPS-MIB", "name" : "NonNegativeInteger"},
1802
+ },
1803
+ "access" : "readwrite",
1804
+ "units" : "RMS Volts",
1805
+ "description" :
1806
+ """The maximum line voltage allowed before the UPS
1807
+ system transfers to battery backup.""",
1808
+ }, # scalar
1809
+ "upsTraps" : {
1810
+ "nodetype" : "node",
1811
+ "moduleName" : "UPS-MIB",
1812
+ "oid" : "1.3.6.1.2.1.33.2",
1813
+ }, # node
1814
+ "upsConformance" : {
1815
+ "nodetype" : "node",
1816
+ "moduleName" : "UPS-MIB",
1817
+ "oid" : "1.3.6.1.2.1.33.3",
1818
+ }, # node
1819
+ "upsCompliances" : {
1820
+ "nodetype" : "node",
1821
+ "moduleName" : "UPS-MIB",
1822
+ "oid" : "1.3.6.1.2.1.33.3.1",
1823
+ }, # node
1824
+ "upsGroups" : {
1825
+ "nodetype" : "node",
1826
+ "moduleName" : "UPS-MIB",
1827
+ "oid" : "1.3.6.1.2.1.33.3.2",
1828
+ }, # node
1829
+ "upsSubsetGroups" : {
1830
+ "nodetype" : "node",
1831
+ "moduleName" : "UPS-MIB",
1832
+ "oid" : "1.3.6.1.2.1.33.3.2.1",
1833
+ }, # node
1834
+ "upsBasicGroups" : {
1835
+ "nodetype" : "node",
1836
+ "moduleName" : "UPS-MIB",
1837
+ "oid" : "1.3.6.1.2.1.33.3.2.2",
1838
+ }, # node
1839
+ "upsFullGroups" : {
1840
+ "nodetype" : "node",
1841
+ "moduleName" : "UPS-MIB",
1842
+ "oid" : "1.3.6.1.2.1.33.3.2.3",
1843
+ }, # node
1844
+ }, # nodes
1845
+
1846
+ "notifications" : {
1847
+ "upsTrapOnBattery" : {
1848
+ "nodetype" : "notification",
1849
+ "moduleName" : "UPS-MIB",
1850
+ "oid" : "1.3.6.1.2.1.33.2.1",
1851
+ "status" : "current",
1852
+ "objects" : {
1853
+ "upsEstimatedMinutesRemaining" : {
1854
+ "nodetype" : "object",
1855
+ "module" : "UPS-MIB"
1856
+ },
1857
+ "upsSecondsOnBattery" : {
1858
+ "nodetype" : "object",
1859
+ "module" : "UPS-MIB"
1860
+ },
1861
+ "upsConfigLowBattTime" : {
1862
+ "nodetype" : "object",
1863
+ "module" : "UPS-MIB"
1864
+ },
1865
+ },
1866
+ "description" :
1867
+ """The UPS is operating on battery power. This trap is
1868
+ persistent and is resent at one minute intervals until
1869
+ the UPS either turns off or is no longer running on
1870
+ battery.""",
1871
+ }, # notification
1872
+ "upsTrapTestCompleted" : {
1873
+ "nodetype" : "notification",
1874
+ "moduleName" : "UPS-MIB",
1875
+ "oid" : "1.3.6.1.2.1.33.2.2",
1876
+ "status" : "current",
1877
+ "objects" : {
1878
+ "upsTestId" : {
1879
+ "nodetype" : "object",
1880
+ "module" : "UPS-MIB"
1881
+ },
1882
+ "upsTestSpinLock" : {
1883
+ "nodetype" : "object",
1884
+ "module" : "UPS-MIB"
1885
+ },
1886
+ "upsTestResultsSummary" : {
1887
+ "nodetype" : "object",
1888
+ "module" : "UPS-MIB"
1889
+ },
1890
+ "upsTestResultsDetail" : {
1891
+ "nodetype" : "object",
1892
+ "module" : "UPS-MIB"
1893
+ },
1894
+ "upsTestStartTime" : {
1895
+ "nodetype" : "object",
1896
+ "module" : "UPS-MIB"
1897
+ },
1898
+ "upsTestElapsedTime" : {
1899
+ "nodetype" : "object",
1900
+ "module" : "UPS-MIB"
1901
+ },
1902
+ },
1903
+ "description" :
1904
+ """This trap is sent upon completion of a UPS diagnostic
1905
+ test.""",
1906
+ }, # notification
1907
+ "upsTrapAlarmEntryAdded" : {
1908
+ "nodetype" : "notification",
1909
+ "moduleName" : "UPS-MIB",
1910
+ "oid" : "1.3.6.1.2.1.33.2.3",
1911
+ "status" : "current",
1912
+ "objects" : {
1913
+ "upsAlarmId" : {
1914
+ "nodetype" : "object",
1915
+ "module" : "UPS-MIB"
1916
+ },
1917
+ "upsAlarmDescr" : {
1918
+ "nodetype" : "object",
1919
+ "module" : "UPS-MIB"
1920
+ },
1921
+ },
1922
+ "description" :
1923
+ """This trap is sent each time an alarm is inserted into
1924
+ to the alarm table. It is sent on the insertion of
1925
+ all alarms except for upsAlarmOnBattery and
1926
+ upsAlarmTestInProgress.""",
1927
+ }, # notification
1928
+ "upsTrapAlarmEntryRemoved" : {
1929
+ "nodetype" : "notification",
1930
+ "moduleName" : "UPS-MIB",
1931
+ "oid" : "1.3.6.1.2.1.33.2.4",
1932
+ "status" : "current",
1933
+ "objects" : {
1934
+ "upsAlarmId" : {
1935
+ "nodetype" : "object",
1936
+ "module" : "UPS-MIB"
1937
+ },
1938
+ "upsAlarmDescr" : {
1939
+ "nodetype" : "object",
1940
+ "module" : "UPS-MIB"
1941
+ },
1942
+ },
1943
+ "description" :
1944
+ """This trap is sent each time an alarm is removed from
1945
+ the alarm table. It is sent on the removal of all
1946
+ alarms except for upsAlarmTestInProgress.""",
1947
+ }, # notification
1948
+ }, # notifications
1949
+
1950
+ "groups" : {
1951
+ "upsSubsetIdentGroup" : {
1952
+ "nodetype" : "group",
1953
+ "moduleName" : "UPS-MIB",
1954
+ "oid" : "1.3.6.1.2.1.33.3.2.1.1",
1955
+ "status" : "current",
1956
+ "members" : {
1957
+ "upsIdentManufacturer" : {
1958
+ "nodetype" : "member",
1959
+ "module" : "UPS-MIB"
1960
+ },
1961
+ "upsIdentModel" : {
1962
+ "nodetype" : "member",
1963
+ "module" : "UPS-MIB"
1964
+ },
1965
+ "upsIdentAgentSoftwareVersion" : {
1966
+ "nodetype" : "member",
1967
+ "module" : "UPS-MIB"
1968
+ },
1969
+ "upsIdentName" : {
1970
+ "nodetype" : "member",
1971
+ "module" : "UPS-MIB"
1972
+ },
1973
+ "upsIdentAttachedDevices" : {
1974
+ "nodetype" : "member",
1975
+ "module" : "UPS-MIB"
1976
+ },
1977
+ }, # members
1978
+ "description" :
1979
+ """The upsSubsetIdentGroup defines objects which are
1980
+ common across all UPSs which meet subset compliance.
1981
+ Most devices which conform to the upsSubsetIdentGroup
1982
+ will provide access to these objects via a proxy
1983
+ agent. If the proxy agent is compatible with multiple
1984
+ UPS types, configuration of the proxy agent will
1985
+ require specifying some of these values, either
1986
+ individually, or as a group (perhaps through a table
1987
+ lookup mechanism based on the UPS model number).""",
1988
+ }, # group
1989
+ "upsSubsetBatteryGroup" : {
1990
+ "nodetype" : "group",
1991
+ "moduleName" : "UPS-MIB",
1992
+ "oid" : "1.3.6.1.2.1.33.3.2.1.2",
1993
+ "status" : "current",
1994
+ "members" : {
1995
+ "upsBatteryStatus" : {
1996
+ "nodetype" : "member",
1997
+ "module" : "UPS-MIB"
1998
+ },
1999
+ "upsSecondsOnBattery" : {
2000
+ "nodetype" : "member",
2001
+ "module" : "UPS-MIB"
2002
+ },
2003
+ }, # members
2004
+ "description" :
2005
+ """The upsSubsetBatteryGroup defines the objects that
2006
+ are common to battery groups of two-contact UPSs.""",
2007
+ }, # group
2008
+ "upsSubsetInputGroup" : {
2009
+ "nodetype" : "group",
2010
+ "moduleName" : "UPS-MIB",
2011
+ "oid" : "1.3.6.1.2.1.33.3.2.1.3",
2012
+ "status" : "current",
2013
+ "members" : {
2014
+ "upsInputLineBads" : {
2015
+ "nodetype" : "member",
2016
+ "module" : "UPS-MIB"
2017
+ },
2018
+ }, # members
2019
+ "description" :
2020
+ """The upsSubsetInputGroup defines the objects that are
2021
+ common to the Input groups of two-contact UPSs.""",
2022
+ }, # group
2023
+ "upsSubsetOutputGroup" : {
2024
+ "nodetype" : "group",
2025
+ "moduleName" : "UPS-MIB",
2026
+ "oid" : "1.3.6.1.2.1.33.3.2.1.4",
2027
+ "status" : "current",
2028
+ "members" : {
2029
+ "upsOutputSource" : {
2030
+ "nodetype" : "member",
2031
+ "module" : "UPS-MIB"
2032
+ },
2033
+ }, # members
2034
+ "description" :
2035
+ """The upsSubsetOutputGroup defines the objects that are
2036
+ common to the Output groups of two-contact UPSs.""",
2037
+ }, # group
2038
+ "upsSubsetAlarmGroup" : {
2039
+ "nodetype" : "group",
2040
+ "moduleName" : "UPS-MIB",
2041
+ "oid" : "1.3.6.1.2.1.33.3.2.1.6",
2042
+ "status" : "current",
2043
+ "members" : {
2044
+ "upsAlarmsPresent" : {
2045
+ "nodetype" : "member",
2046
+ "module" : "UPS-MIB"
2047
+ },
2048
+ "upsAlarmDescr" : {
2049
+ "nodetype" : "member",
2050
+ "module" : "UPS-MIB"
2051
+ },
2052
+ "upsAlarmTime" : {
2053
+ "nodetype" : "member",
2054
+ "module" : "UPS-MIB"
2055
+ },
2056
+ }, # members
2057
+ "description" :
2058
+ """The upsSubsetAlarmGroup defines the objects that are
2059
+ common to the Alarm groups of two-contact UPSs.""",
2060
+ }, # group
2061
+ "upsSubsetControlGroup" : {
2062
+ "nodetype" : "group",
2063
+ "moduleName" : "UPS-MIB",
2064
+ "oid" : "1.3.6.1.2.1.33.3.2.1.8",
2065
+ "status" : "current",
2066
+ "members" : {
2067
+ "upsShutdownType" : {
2068
+ "nodetype" : "member",
2069
+ "module" : "UPS-MIB"
2070
+ },
2071
+ "upsShutdownAfterDelay" : {
2072
+ "nodetype" : "member",
2073
+ "module" : "UPS-MIB"
2074
+ },
2075
+ "upsAutoRestart" : {
2076
+ "nodetype" : "member",
2077
+ "module" : "UPS-MIB"
2078
+ },
2079
+ }, # members
2080
+ "description" :
2081
+ """The upsSubsetControlGroup defines the objects that
2082
+ are common to the Control groups of two-contact UPSs.""",
2083
+ }, # group
2084
+ "upsSubsetConfigGroup" : {
2085
+ "nodetype" : "group",
2086
+ "moduleName" : "UPS-MIB",
2087
+ "oid" : "1.3.6.1.2.1.33.3.2.1.9",
2088
+ "status" : "current",
2089
+ "members" : {
2090
+ "upsConfigInputVoltage" : {
2091
+ "nodetype" : "member",
2092
+ "module" : "UPS-MIB"
2093
+ },
2094
+ "upsConfigInputFreq" : {
2095
+ "nodetype" : "member",
2096
+ "module" : "UPS-MIB"
2097
+ },
2098
+ "upsConfigOutputVoltage" : {
2099
+ "nodetype" : "member",
2100
+ "module" : "UPS-MIB"
2101
+ },
2102
+ "upsConfigOutputFreq" : {
2103
+ "nodetype" : "member",
2104
+ "module" : "UPS-MIB"
2105
+ },
2106
+ "upsConfigOutputVA" : {
2107
+ "nodetype" : "member",
2108
+ "module" : "UPS-MIB"
2109
+ },
2110
+ "upsConfigOutputPower" : {
2111
+ "nodetype" : "member",
2112
+ "module" : "UPS-MIB"
2113
+ },
2114
+ }, # members
2115
+ "description" :
2116
+ """The upsSubsetConfigGroup defines the objects that are
2117
+ common to the Config groups of two-contact UPSs.""",
2118
+ }, # group
2119
+ "upsBasicIdentGroup" : {
2120
+ "nodetype" : "group",
2121
+ "moduleName" : "UPS-MIB",
2122
+ "oid" : "1.3.6.1.2.1.33.3.2.2.1",
2123
+ "status" : "current",
2124
+ "members" : {
2125
+ "upsIdentManufacturer" : {
2126
+ "nodetype" : "member",
2127
+ "module" : "UPS-MIB"
2128
+ },
2129
+ "upsIdentModel" : {
2130
+ "nodetype" : "member",
2131
+ "module" : "UPS-MIB"
2132
+ },
2133
+ "upsIdentUPSSoftwareVersion" : {
2134
+ "nodetype" : "member",
2135
+ "module" : "UPS-MIB"
2136
+ },
2137
+ "upsIdentAgentSoftwareVersion" : {
2138
+ "nodetype" : "member",
2139
+ "module" : "UPS-MIB"
2140
+ },
2141
+ "upsIdentName" : {
2142
+ "nodetype" : "member",
2143
+ "module" : "UPS-MIB"
2144
+ },
2145
+ }, # members
2146
+ "description" :
2147
+ """The upsBasicIdentGroup defines objects which are
2148
+ common to the Ident group of compliant UPSs which
2149
+ support basic functions.""",
2150
+ }, # group
2151
+ "upsBasicBatteryGroup" : {
2152
+ "nodetype" : "group",
2153
+ "moduleName" : "UPS-MIB",
2154
+ "oid" : "1.3.6.1.2.1.33.3.2.2.2",
2155
+ "status" : "current",
2156
+ "members" : {
2157
+ "upsBatteryStatus" : {
2158
+ "nodetype" : "member",
2159
+ "module" : "UPS-MIB"
2160
+ },
2161
+ "upsSecondsOnBattery" : {
2162
+ "nodetype" : "member",
2163
+ "module" : "UPS-MIB"
2164
+ },
2165
+ }, # members
2166
+ "description" :
2167
+ """The upsBasicBatteryGroup defines the objects that are
2168
+ common to the battery groups of compliant UPSs which
2169
+ support basic functions.""",
2170
+ }, # group
2171
+ "upsBasicInputGroup" : {
2172
+ "nodetype" : "group",
2173
+ "moduleName" : "UPS-MIB",
2174
+ "oid" : "1.3.6.1.2.1.33.3.2.2.3",
2175
+ "status" : "current",
2176
+ "members" : {
2177
+ "upsInputLineBads" : {
2178
+ "nodetype" : "member",
2179
+ "module" : "UPS-MIB"
2180
+ },
2181
+ "upsInputNumLines" : {
2182
+ "nodetype" : "member",
2183
+ "module" : "UPS-MIB"
2184
+ },
2185
+ "upsInputFrequency" : {
2186
+ "nodetype" : "member",
2187
+ "module" : "UPS-MIB"
2188
+ },
2189
+ "upsInputVoltage" : {
2190
+ "nodetype" : "member",
2191
+ "module" : "UPS-MIB"
2192
+ },
2193
+ }, # members
2194
+ "description" :
2195
+ """The upsBasicInputGroup defines the objects that are
2196
+ common to the Input groups of compliant UPSs which
2197
+ support basic functions.""",
2198
+ }, # group
2199
+ "upsBasicOutputGroup" : {
2200
+ "nodetype" : "group",
2201
+ "moduleName" : "UPS-MIB",
2202
+ "oid" : "1.3.6.1.2.1.33.3.2.2.4",
2203
+ "status" : "current",
2204
+ "members" : {
2205
+ "upsOutputSource" : {
2206
+ "nodetype" : "member",
2207
+ "module" : "UPS-MIB"
2208
+ },
2209
+ "upsOutputFrequency" : {
2210
+ "nodetype" : "member",
2211
+ "module" : "UPS-MIB"
2212
+ },
2213
+ "upsOutputNumLines" : {
2214
+ "nodetype" : "member",
2215
+ "module" : "UPS-MIB"
2216
+ },
2217
+ "upsOutputVoltage" : {
2218
+ "nodetype" : "member",
2219
+ "module" : "UPS-MIB"
2220
+ },
2221
+ }, # members
2222
+ "description" :
2223
+ """The upsBasicOutputGroup defines the objects that are
2224
+ common to the Output groups of compliant UPSs which
2225
+ support basic functions.""",
2226
+ }, # group
2227
+ "upsBasicBypassGroup" : {
2228
+ "nodetype" : "group",
2229
+ "moduleName" : "UPS-MIB",
2230
+ "oid" : "1.3.6.1.2.1.33.3.2.2.5",
2231
+ "status" : "current",
2232
+ "members" : {
2233
+ "upsBypassFrequency" : {
2234
+ "nodetype" : "member",
2235
+ "module" : "UPS-MIB"
2236
+ },
2237
+ "upsBypassNumLines" : {
2238
+ "nodetype" : "member",
2239
+ "module" : "UPS-MIB"
2240
+ },
2241
+ "upsBypassVoltage" : {
2242
+ "nodetype" : "member",
2243
+ "module" : "UPS-MIB"
2244
+ },
2245
+ }, # members
2246
+ "description" :
2247
+ """The upsBasicBypassGroup defines the objects that are
2248
+ common to the Bypass groups of compliant UPSs which
2249
+ support basic functions.""",
2250
+ }, # group
2251
+ "upsBasicAlarmGroup" : {
2252
+ "nodetype" : "group",
2253
+ "moduleName" : "UPS-MIB",
2254
+ "oid" : "1.3.6.1.2.1.33.3.2.2.6",
2255
+ "status" : "current",
2256
+ "members" : {
2257
+ "upsAlarmsPresent" : {
2258
+ "nodetype" : "member",
2259
+ "module" : "UPS-MIB"
2260
+ },
2261
+ "upsAlarmDescr" : {
2262
+ "nodetype" : "member",
2263
+ "module" : "UPS-MIB"
2264
+ },
2265
+ "upsAlarmTime" : {
2266
+ "nodetype" : "member",
2267
+ "module" : "UPS-MIB"
2268
+ },
2269
+ }, # members
2270
+ "description" :
2271
+ """The upsBasicAlarmGroup defines the objects that are
2272
+ common to the Alarm groups of compliant UPSs which
2273
+ support basic functions.""",
2274
+ }, # group
2275
+ "upsBasicTestGroup" : {
2276
+ "nodetype" : "group",
2277
+ "moduleName" : "UPS-MIB",
2278
+ "oid" : "1.3.6.1.2.1.33.3.2.2.7",
2279
+ "status" : "current",
2280
+ "members" : {
2281
+ "upsTestId" : {
2282
+ "nodetype" : "member",
2283
+ "module" : "UPS-MIB"
2284
+ },
2285
+ "upsTestSpinLock" : {
2286
+ "nodetype" : "member",
2287
+ "module" : "UPS-MIB"
2288
+ },
2289
+ "upsTestResultsSummary" : {
2290
+ "nodetype" : "member",
2291
+ "module" : "UPS-MIB"
2292
+ },
2293
+ "upsTestResultsDetail" : {
2294
+ "nodetype" : "member",
2295
+ "module" : "UPS-MIB"
2296
+ },
2297
+ "upsTestStartTime" : {
2298
+ "nodetype" : "member",
2299
+ "module" : "UPS-MIB"
2300
+ },
2301
+ "upsTestElapsedTime" : {
2302
+ "nodetype" : "member",
2303
+ "module" : "UPS-MIB"
2304
+ },
2305
+ }, # members
2306
+ "description" :
2307
+ """The upsBasicTestGroup defines the objects that are
2308
+ common to the Test groups of compliant UPSs which
2309
+ support basic functions.""",
2310
+ }, # group
2311
+ "upsBasicControlGroup" : {
2312
+ "nodetype" : "group",
2313
+ "moduleName" : "UPS-MIB",
2314
+ "oid" : "1.3.6.1.2.1.33.3.2.2.8",
2315
+ "status" : "current",
2316
+ "members" : {
2317
+ "upsShutdownType" : {
2318
+ "nodetype" : "member",
2319
+ "module" : "UPS-MIB"
2320
+ },
2321
+ "upsShutdownAfterDelay" : {
2322
+ "nodetype" : "member",
2323
+ "module" : "UPS-MIB"
2324
+ },
2325
+ "upsStartupAfterDelay" : {
2326
+ "nodetype" : "member",
2327
+ "module" : "UPS-MIB"
2328
+ },
2329
+ "upsRebootWithDuration" : {
2330
+ "nodetype" : "member",
2331
+ "module" : "UPS-MIB"
2332
+ },
2333
+ "upsAutoRestart" : {
2334
+ "nodetype" : "member",
2335
+ "module" : "UPS-MIB"
2336
+ },
2337
+ }, # members
2338
+ "description" :
2339
+ """The upsBasicControlGroup defines the objects that are
2340
+ common to the Control groups of compliant UPSs which
2341
+ support basic functions.""",
2342
+ }, # group
2343
+ "upsBasicConfigGroup" : {
2344
+ "nodetype" : "group",
2345
+ "moduleName" : "UPS-MIB",
2346
+ "oid" : "1.3.6.1.2.1.33.3.2.2.9",
2347
+ "status" : "current",
2348
+ "members" : {
2349
+ "upsConfigInputVoltage" : {
2350
+ "nodetype" : "member",
2351
+ "module" : "UPS-MIB"
2352
+ },
2353
+ "upsConfigInputFreq" : {
2354
+ "nodetype" : "member",
2355
+ "module" : "UPS-MIB"
2356
+ },
2357
+ "upsConfigOutputVoltage" : {
2358
+ "nodetype" : "member",
2359
+ "module" : "UPS-MIB"
2360
+ },
2361
+ "upsConfigOutputFreq" : {
2362
+ "nodetype" : "member",
2363
+ "module" : "UPS-MIB"
2364
+ },
2365
+ "upsConfigOutputVA" : {
2366
+ "nodetype" : "member",
2367
+ "module" : "UPS-MIB"
2368
+ },
2369
+ "upsConfigOutputPower" : {
2370
+ "nodetype" : "member",
2371
+ "module" : "UPS-MIB"
2372
+ },
2373
+ "upsConfigLowBattTime" : {
2374
+ "nodetype" : "member",
2375
+ "module" : "UPS-MIB"
2376
+ },
2377
+ "upsConfigAudibleStatus" : {
2378
+ "nodetype" : "member",
2379
+ "module" : "UPS-MIB"
2380
+ },
2381
+ }, # members
2382
+ "description" :
2383
+ """The upsBasicConfigGroup defines the objects that are
2384
+ common to the Config groups of UPSs which support
2385
+ basic functions.""",
2386
+ }, # group
2387
+ "upsFullIdentGroup" : {
2388
+ "nodetype" : "group",
2389
+ "moduleName" : "UPS-MIB",
2390
+ "oid" : "1.3.6.1.2.1.33.3.2.3.1",
2391
+ "status" : "current",
2392
+ "members" : {
2393
+ "upsIdentManufacturer" : {
2394
+ "nodetype" : "member",
2395
+ "module" : "UPS-MIB"
2396
+ },
2397
+ "upsIdentModel" : {
2398
+ "nodetype" : "member",
2399
+ "module" : "UPS-MIB"
2400
+ },
2401
+ "upsIdentUPSSoftwareVersion" : {
2402
+ "nodetype" : "member",
2403
+ "module" : "UPS-MIB"
2404
+ },
2405
+ "upsIdentAgentSoftwareVersion" : {
2406
+ "nodetype" : "member",
2407
+ "module" : "UPS-MIB"
2408
+ },
2409
+ "upsIdentName" : {
2410
+ "nodetype" : "member",
2411
+ "module" : "UPS-MIB"
2412
+ },
2413
+ "upsIdentAttachedDevices" : {
2414
+ "nodetype" : "member",
2415
+ "module" : "UPS-MIB"
2416
+ },
2417
+ }, # members
2418
+ "description" :
2419
+ """The upsFullIdentGroup defines objects which are
2420
+ common to the Ident group of fully compliant UPSs.""",
2421
+ }, # group
2422
+ "upsFullBatteryGroup" : {
2423
+ "nodetype" : "group",
2424
+ "moduleName" : "UPS-MIB",
2425
+ "oid" : "1.3.6.1.2.1.33.3.2.3.2",
2426
+ "status" : "current",
2427
+ "members" : {
2428
+ "upsBatteryStatus" : {
2429
+ "nodetype" : "member",
2430
+ "module" : "UPS-MIB"
2431
+ },
2432
+ "upsSecondsOnBattery" : {
2433
+ "nodetype" : "member",
2434
+ "module" : "UPS-MIB"
2435
+ },
2436
+ "upsEstimatedMinutesRemaining" : {
2437
+ "nodetype" : "member",
2438
+ "module" : "UPS-MIB"
2439
+ },
2440
+ "upsEstimatedChargeRemaining" : {
2441
+ "nodetype" : "member",
2442
+ "module" : "UPS-MIB"
2443
+ },
2444
+ }, # members
2445
+ "description" :
2446
+ """The upsFullBatteryGroup defines the objects that are
2447
+ common to the battery groups of fully compliant UPSs.""",
2448
+ }, # group
2449
+ "upsFullInputGroup" : {
2450
+ "nodetype" : "group",
2451
+ "moduleName" : "UPS-MIB",
2452
+ "oid" : "1.3.6.1.2.1.33.3.2.3.3",
2453
+ "status" : "current",
2454
+ "members" : {
2455
+ "upsInputLineBads" : {
2456
+ "nodetype" : "member",
2457
+ "module" : "UPS-MIB"
2458
+ },
2459
+ "upsInputNumLines" : {
2460
+ "nodetype" : "member",
2461
+ "module" : "UPS-MIB"
2462
+ },
2463
+ "upsInputFrequency" : {
2464
+ "nodetype" : "member",
2465
+ "module" : "UPS-MIB"
2466
+ },
2467
+ "upsInputVoltage" : {
2468
+ "nodetype" : "member",
2469
+ "module" : "UPS-MIB"
2470
+ },
2471
+ }, # members
2472
+ "description" :
2473
+ """The upsFullInputGroup defines the objects that are
2474
+ common to the Input groups of fully compliant UPSs.""",
2475
+ }, # group
2476
+ "upsFullOutputGroup" : {
2477
+ "nodetype" : "group",
2478
+ "moduleName" : "UPS-MIB",
2479
+ "oid" : "1.3.6.1.2.1.33.3.2.3.4",
2480
+ "status" : "current",
2481
+ "members" : {
2482
+ "upsOutputSource" : {
2483
+ "nodetype" : "member",
2484
+ "module" : "UPS-MIB"
2485
+ },
2486
+ "upsOutputFrequency" : {
2487
+ "nodetype" : "member",
2488
+ "module" : "UPS-MIB"
2489
+ },
2490
+ "upsOutputNumLines" : {
2491
+ "nodetype" : "member",
2492
+ "module" : "UPS-MIB"
2493
+ },
2494
+ "upsOutputVoltage" : {
2495
+ "nodetype" : "member",
2496
+ "module" : "UPS-MIB"
2497
+ },
2498
+ "upsOutputCurrent" : {
2499
+ "nodetype" : "member",
2500
+ "module" : "UPS-MIB"
2501
+ },
2502
+ "upsOutputPower" : {
2503
+ "nodetype" : "member",
2504
+ "module" : "UPS-MIB"
2505
+ },
2506
+ "upsOutputPercentLoad" : {
2507
+ "nodetype" : "member",
2508
+ "module" : "UPS-MIB"
2509
+ },
2510
+ }, # members
2511
+ "description" :
2512
+ """The upsFullOutputGroup defines the objects that are
2513
+ common to the Output groups of fully compliant UPSs.""",
2514
+ }, # group
2515
+ "upsFullBypassGroup" : {
2516
+ "nodetype" : "group",
2517
+ "moduleName" : "UPS-MIB",
2518
+ "oid" : "1.3.6.1.2.1.33.3.2.3.5",
2519
+ "status" : "current",
2520
+ "members" : {
2521
+ "upsBypassFrequency" : {
2522
+ "nodetype" : "member",
2523
+ "module" : "UPS-MIB"
2524
+ },
2525
+ "upsBypassNumLines" : {
2526
+ "nodetype" : "member",
2527
+ "module" : "UPS-MIB"
2528
+ },
2529
+ "upsBypassVoltage" : {
2530
+ "nodetype" : "member",
2531
+ "module" : "UPS-MIB"
2532
+ },
2533
+ }, # members
2534
+ "description" :
2535
+ """The upsFullBypassGroup defines the objects that are
2536
+ common to the Bypass groups of fully compliant UPSs.""",
2537
+ }, # group
2538
+ "upsFullAlarmGroup" : {
2539
+ "nodetype" : "group",
2540
+ "moduleName" : "UPS-MIB",
2541
+ "oid" : "1.3.6.1.2.1.33.3.2.3.6",
2542
+ "status" : "current",
2543
+ "members" : {
2544
+ "upsAlarmsPresent" : {
2545
+ "nodetype" : "member",
2546
+ "module" : "UPS-MIB"
2547
+ },
2548
+ "upsAlarmDescr" : {
2549
+ "nodetype" : "member",
2550
+ "module" : "UPS-MIB"
2551
+ },
2552
+ "upsAlarmTime" : {
2553
+ "nodetype" : "member",
2554
+ "module" : "UPS-MIB"
2555
+ },
2556
+ }, # members
2557
+ "description" :
2558
+ """The upsFullAlarmGroup defines the objects that are
2559
+ common to the Alarm groups of fully compliant UPSs.""",
2560
+ }, # group
2561
+ "upsFullTestGroup" : {
2562
+ "nodetype" : "group",
2563
+ "moduleName" : "UPS-MIB",
2564
+ "oid" : "1.3.6.1.2.1.33.3.2.3.7",
2565
+ "status" : "current",
2566
+ "members" : {
2567
+ "upsTestId" : {
2568
+ "nodetype" : "member",
2569
+ "module" : "UPS-MIB"
2570
+ },
2571
+ "upsTestSpinLock" : {
2572
+ "nodetype" : "member",
2573
+ "module" : "UPS-MIB"
2574
+ },
2575
+ "upsTestResultsSummary" : {
2576
+ "nodetype" : "member",
2577
+ "module" : "UPS-MIB"
2578
+ },
2579
+ "upsTestResultsDetail" : {
2580
+ "nodetype" : "member",
2581
+ "module" : "UPS-MIB"
2582
+ },
2583
+ "upsTestStartTime" : {
2584
+ "nodetype" : "member",
2585
+ "module" : "UPS-MIB"
2586
+ },
2587
+ "upsTestElapsedTime" : {
2588
+ "nodetype" : "member",
2589
+ "module" : "UPS-MIB"
2590
+ },
2591
+ }, # members
2592
+ "description" :
2593
+ """The upsFullTestGroup defines the objects that are
2594
+ common to the Test groups of fully compliant UPSs.""",
2595
+ }, # group
2596
+ "upsFullControlGroup" : {
2597
+ "nodetype" : "group",
2598
+ "moduleName" : "UPS-MIB",
2599
+ "oid" : "1.3.6.1.2.1.33.3.2.3.8",
2600
+ "status" : "current",
2601
+ "members" : {
2602
+ "upsShutdownType" : {
2603
+ "nodetype" : "member",
2604
+ "module" : "UPS-MIB"
2605
+ },
2606
+ "upsShutdownAfterDelay" : {
2607
+ "nodetype" : "member",
2608
+ "module" : "UPS-MIB"
2609
+ },
2610
+ "upsStartupAfterDelay" : {
2611
+ "nodetype" : "member",
2612
+ "module" : "UPS-MIB"
2613
+ },
2614
+ "upsRebootWithDuration" : {
2615
+ "nodetype" : "member",
2616
+ "module" : "UPS-MIB"
2617
+ },
2618
+ "upsAutoRestart" : {
2619
+ "nodetype" : "member",
2620
+ "module" : "UPS-MIB"
2621
+ },
2622
+ }, # members
2623
+ "description" :
2624
+ """The upsFullControlGroup defines the objects that are
2625
+ common to the Control groups of fully compliant UPSs.""",
2626
+ }, # group
2627
+ "upsFullConfigGroup" : {
2628
+ "nodetype" : "group",
2629
+ "moduleName" : "UPS-MIB",
2630
+ "oid" : "1.3.6.1.2.1.33.3.2.3.9",
2631
+ "status" : "current",
2632
+ "members" : {
2633
+ "upsConfigInputVoltage" : {
2634
+ "nodetype" : "member",
2635
+ "module" : "UPS-MIB"
2636
+ },
2637
+ "upsConfigInputFreq" : {
2638
+ "nodetype" : "member",
2639
+ "module" : "UPS-MIB"
2640
+ },
2641
+ "upsConfigOutputVoltage" : {
2642
+ "nodetype" : "member",
2643
+ "module" : "UPS-MIB"
2644
+ },
2645
+ "upsConfigOutputFreq" : {
2646
+ "nodetype" : "member",
2647
+ "module" : "UPS-MIB"
2648
+ },
2649
+ "upsConfigOutputVA" : {
2650
+ "nodetype" : "member",
2651
+ "module" : "UPS-MIB"
2652
+ },
2653
+ "upsConfigOutputPower" : {
2654
+ "nodetype" : "member",
2655
+ "module" : "UPS-MIB"
2656
+ },
2657
+ "upsConfigLowBattTime" : {
2658
+ "nodetype" : "member",
2659
+ "module" : "UPS-MIB"
2660
+ },
2661
+ "upsConfigAudibleStatus" : {
2662
+ "nodetype" : "member",
2663
+ "module" : "UPS-MIB"
2664
+ },
2665
+ }, # members
2666
+ "description" :
2667
+ """The upsFullConfigGroup defines the objects that are
2668
+ common to the Config groups of fully compliant UPSs.""",
2669
+ }, # group
2670
+ }, # groups
2671
+
2672
+ "compliances" : {
2673
+ "upsSubsetCompliance" : {
2674
+ "nodetype" : "compliance",
2675
+ "moduleName" : "UPS-MIB",
2676
+ "oid" : "1.3.6.1.2.1.33.3.1.1",
2677
+ "status" : "current",
2678
+ "description" :
2679
+ """The compliance statement for UPSs that only support
2680
+ the two-contact communication protocol.""",
2681
+ "requires" : {
2682
+ "upsSubsetIdentGroup" : {
2683
+ "nodetype" : "mandatory",
2684
+ "module" : "UPS-MIB"
2685
+ },
2686
+ "upsSubsetBatteryGroup" : {
2687
+ "nodetype" : "mandatory",
2688
+ "module" : "UPS-MIB"
2689
+ },
2690
+ "upsSubsetInputGroup" : {
2691
+ "nodetype" : "mandatory",
2692
+ "module" : "UPS-MIB"
2693
+ },
2694
+ "upsSubsetOutputGroup" : {
2695
+ "nodetype" : "mandatory",
2696
+ "module" : "UPS-MIB"
2697
+ },
2698
+ "upsSubsetAlarmGroup" : {
2699
+ "nodetype" : "mandatory",
2700
+ "module" : "UPS-MIB"
2701
+ },
2702
+ "upsSubsetControlGroup" : {
2703
+ "nodetype" : "mandatory",
2704
+ "module" : "UPS-MIB"
2705
+ },
2706
+ "upsSubsetConfigGroup" : {
2707
+ "nodetype" : "mandatory",
2708
+ "module" : "UPS-MIB"
2709
+ },
2710
+ }, # requires
2711
+ "refinements" : {
2712
+ "upsBatteryStatus" : {
2713
+ "module" : "UPS-MIB",
2714
+ "syntax" : {
2715
+ "type" : {
2716
+ "basetype" : "Enumeration",
2717
+ "batteryNormal" : {
2718
+ "nodetype" : "namednumber",
2719
+ "number" : "2"
2720
+ },
2721
+ "batteryLow" : {
2722
+ "nodetype" : "namednumber",
2723
+ "number" : "3"
2724
+ },
2725
+ },
2726
+ }, # syntax
2727
+ "description" :
2728
+ """Support of the values unknown(1) and
2729
+ batteryDepleted(4) is not required.""",
2730
+ },
2731
+ "upsAlarmDescr" : {
2732
+ "module" : "UPS-MIB",
2733
+ "description" :
2734
+ """Support of all `well known' alarm types is not
2735
+ required. The well known alarm types which must be
2736
+ supported are: upsAlarmOnBattery, upsAlarmLowBattery,
2737
+ upsAlarmInputBad, upsAlarmUpsOutputOff,
2738
+ upsAlarmUpsSystemOff, and upsAlarmTestInProgress.""",
2739
+ },
2740
+ "upsOutputSource" : {
2741
+ "module" : "UPS-MIB",
2742
+ "syntax" : {
2743
+ "type" : {
2744
+ "basetype" : "Enumeration",
2745
+ "normal" : {
2746
+ "nodetype" : "namednumber",
2747
+ "number" : "2"
2748
+ },
2749
+ "battery" : {
2750
+ "nodetype" : "namednumber",
2751
+ "number" : "4"
2752
+ },
2753
+ },
2754
+ }, # syntax
2755
+ "description" :
2756
+ """Support of the values other(1), none(2), bypass(4),
2757
+ booster(6) and reducer(7) is not required.""",
2758
+ },
2759
+ "upsShutdownType" : {
2760
+ "module" : "UPS-MIB",
2761
+ "access" : "readonly",
2762
+ "description" :
2763
+ """Read-write access is not required, i.e., compliant
2764
+ systems need not support more than one shutdown type.""",
2765
+ },
2766
+ "upsAutoRestart" : {
2767
+ "module" : "UPS-MIB",
2768
+ "access" : "readonly",
2769
+ "description" :
2770
+ """Read-write access is not required, i.e., compliant
2771
+ systems need not support more than one restart type.""",
2772
+ },
2773
+ "upsConfigInputVoltage" : {
2774
+ "module" : "UPS-MIB",
2775
+ "access" : "readonly",
2776
+ "description" :
2777
+ """Read-write access is not required.""",
2778
+ },
2779
+ "upsConfigInputFreq" : {
2780
+ "module" : "UPS-MIB",
2781
+ "access" : "readonly",
2782
+ "description" :
2783
+ """Read-write access is not required.""",
2784
+ },
2785
+ "upsConfigOutputVoltage" : {
2786
+ "module" : "UPS-MIB",
2787
+ "access" : "readonly",
2788
+ "description" :
2789
+ """Read-write access is not required.""",
2790
+ },
2791
+ "upsConfigOutputFreq" : {
2792
+ "module" : "UPS-MIB",
2793
+ "access" : "readonly",
2794
+ "description" :
2795
+ """Read-write access is not required.""",
2796
+ },
2797
+ }, # refinements
2798
+
2799
+ }, # compliance
2800
+ "upsBasicCompliance" : {
2801
+ "nodetype" : "compliance",
2802
+ "moduleName" : "UPS-MIB",
2803
+ "oid" : "1.3.6.1.2.1.33.3.1.2",
2804
+ "status" : "current",
2805
+ "description" :
2806
+ """The compliance statement for UPSs that support
2807
+ full-featured functions, such as control.""",
2808
+ "requires" : {
2809
+ "upsBasicIdentGroup" : {
2810
+ "nodetype" : "mandatory",
2811
+ "module" : "UPS-MIB"
2812
+ },
2813
+ "upsBasicBatteryGroup" : {
2814
+ "nodetype" : "mandatory",
2815
+ "module" : "UPS-MIB"
2816
+ },
2817
+ "upsBasicInputGroup" : {
2818
+ "nodetype" : "mandatory",
2819
+ "module" : "UPS-MIB"
2820
+ },
2821
+ "upsBasicOutputGroup" : {
2822
+ "nodetype" : "mandatory",
2823
+ "module" : "UPS-MIB"
2824
+ },
2825
+ "upsBasicAlarmGroup" : {
2826
+ "nodetype" : "mandatory",
2827
+ "module" : "UPS-MIB"
2828
+ },
2829
+ "upsBasicTestGroup" : {
2830
+ "nodetype" : "mandatory",
2831
+ "module" : "UPS-MIB"
2832
+ },
2833
+ "upsBasicControlGroup" : {
2834
+ "nodetype" : "mandatory",
2835
+ "module" : "UPS-MIB"
2836
+ },
2837
+ "upsBasicConfigGroup" : {
2838
+ "nodetype" : "mandatory",
2839
+ "module" : "UPS-MIB"
2840
+ },
2841
+ "upsBasicBypassGroup" : {
2842
+ "nodetype" : "optional",
2843
+ "module" : "UPS-MIB",
2844
+ "description" :
2845
+ """The upsBasicBypassGroup is only required for UPSs
2846
+ that have a Bypass present.""",
2847
+ },
2848
+ }, # requires
2849
+ "refinements" : {
2850
+ "upsAlarmDescr" : {
2851
+ "module" : "UPS-MIB",
2852
+ "description" :
2853
+ """Support of all `well known' alarm types is not
2854
+ required. The well known alarm types which must be
2855
+ supported are: upsAlarmOnBattery, upsAlarmLowBattery,
2856
+ upsAlarmDepletedBattery, upsAlarmTempBad,
2857
+ upsAlarmInputBad, upsAlarmOutputOverload,
2858
+ upsAlarmOnBypass, upsAlarmBypassBad,
2859
+ upsAlarmOutputOffAsRequested,
2860
+ upsAlarmUpsOffAsRequested, upsAlarmUpsOutputOff,
2861
+ upsAlarmUpsSystemOff, upsAlarmGeneralFault,
2862
+ upsAlarmDiagnosticTestFailed,
2863
+ upsAlarmCommunicationsLost, upsAlarmShutdownPending,
2864
+ and upsAlarmTestInProgress.""",
2865
+ },
2866
+ "upsTestId" : {
2867
+ "module" : "UPS-MIB",
2868
+ "description" :
2869
+ """Support of all `well known' test types is not
2870
+ required. If no tests are supported, then the only
2871
+ well known test type which must be supported is
2872
+ upsTestNoTestsInitiated.""",
2873
+ },
2874
+ "upsOutputSource" : {
2875
+ "module" : "UPS-MIB",
2876
+ "syntax" : {
2877
+ "type" : {
2878
+ "basetype" : "Enumeration",
2879
+ "normal" : {
2880
+ "nodetype" : "namednumber",
2881
+ "number" : "2"
2882
+ },
2883
+ "battery" : {
2884
+ "nodetype" : "namednumber",
2885
+ "number" : "4"
2886
+ },
2887
+ },
2888
+ }, # syntax
2889
+ "description" :
2890
+ """Support of the values other(1), none(2), bypass(4),
2891
+ booster(6) and reducer(7) is not required.""",
2892
+ },
2893
+ "upsShutdownType" : {
2894
+ "module" : "UPS-MIB",
2895
+ "access" : "readonly",
2896
+ "description" :
2897
+ """Read-write access is not required, i.e., compliant
2898
+ systems need not support more than one shutdown type.""",
2899
+ },
2900
+ "upsAutoRestart" : {
2901
+ "module" : "UPS-MIB",
2902
+ "access" : "readonly",
2903
+ "description" :
2904
+ """Read-write access is not required, i.e., compliant
2905
+ systems need not support more than one restart type.""",
2906
+ },
2907
+ "upsConfigInputVoltage" : {
2908
+ "module" : "UPS-MIB",
2909
+ "access" : "readonly",
2910
+ "description" :
2911
+ """Read-write access is not required.""",
2912
+ },
2913
+ "upsConfigInputFreq" : {
2914
+ "module" : "UPS-MIB",
2915
+ "access" : "readonly",
2916
+ "description" :
2917
+ """Read-write access is not required.""",
2918
+ },
2919
+ "upsConfigOutputVoltage" : {
2920
+ "module" : "UPS-MIB",
2921
+ "access" : "readonly",
2922
+ "description" :
2923
+ """Read-write access is not required.""",
2924
+ },
2925
+ "upsConfigOutputFreq" : {
2926
+ "module" : "UPS-MIB",
2927
+ "access" : "readonly",
2928
+ "description" :
2929
+ """Read-write access is not required.""",
2930
+ },
2931
+ "upsConfigLowBattTime" : {
2932
+ "module" : "UPS-MIB",
2933
+ "description" :
2934
+ """Implementation of all possible values may be onerous
2935
+ for some systems. Consequently, not all possible
2936
+ values must be supported. However, at least two
2937
+ different manufacturer-selected values must be
2938
+ supported.""",
2939
+ },
2940
+ }, # refinements
2941
+
2942
+ }, # compliance
2943
+ "upsFullCompliance" : {
2944
+ "nodetype" : "compliance",
2945
+ "moduleName" : "UPS-MIB",
2946
+ "oid" : "1.3.6.1.2.1.33.3.1.3",
2947
+ "status" : "current",
2948
+ "description" :
2949
+ """The compliance statement for UPSs that support
2950
+ advanced full-featured functions.""",
2951
+ "requires" : {
2952
+ "upsFullIdentGroup" : {
2953
+ "nodetype" : "mandatory",
2954
+ "module" : "UPS-MIB"
2955
+ },
2956
+ "upsFullBatteryGroup" : {
2957
+ "nodetype" : "mandatory",
2958
+ "module" : "UPS-MIB"
2959
+ },
2960
+ "upsFullInputGroup" : {
2961
+ "nodetype" : "mandatory",
2962
+ "module" : "UPS-MIB"
2963
+ },
2964
+ "upsFullOutputGroup" : {
2965
+ "nodetype" : "mandatory",
2966
+ "module" : "UPS-MIB"
2967
+ },
2968
+ "upsFullAlarmGroup" : {
2969
+ "nodetype" : "mandatory",
2970
+ "module" : "UPS-MIB"
2971
+ },
2972
+ "upsFullTestGroup" : {
2973
+ "nodetype" : "mandatory",
2974
+ "module" : "UPS-MIB"
2975
+ },
2976
+ "upsFullControlGroup" : {
2977
+ "nodetype" : "mandatory",
2978
+ "module" : "UPS-MIB"
2979
+ },
2980
+ "upsFullConfigGroup" : {
2981
+ "nodetype" : "mandatory",
2982
+ "module" : "UPS-MIB"
2983
+ },
2984
+ "upsFullBypassGroup" : {
2985
+ "nodetype" : "optional",
2986
+ "module" : "UPS-MIB",
2987
+ "description" :
2988
+ """The upsFullBypassGroup is only required for UPSs that
2989
+ have a Bypass present.""",
2990
+ },
2991
+ }, # requires
2992
+ "refinements" : {
2993
+ "upsAlarmDescr" : {
2994
+ "module" : "UPS-MIB",
2995
+ "description" :
2996
+ """Support of all `well known' alarm types is not
2997
+ required. The well known alarm types which must be
2998
+ supported are: upsAlarmBatteryBad, upsAlarmOnBattery,
2999
+ upsAlarmLowBattery, upsAlarmDepletedBattery,
3000
+ upsAlarmTempBad, upsAlarmInputBad, upsAlarmOnBypass,
3001
+ upsAlarmBypassBad, upsAlarmOutputOffAsRequested,
3002
+ upsAlarmUpsOffAsRequested, upsAlarmUpsOutputOff,
3003
+ upsAlarmUpsSystemOff, upsAlarmGeneralFault,
3004
+ upsAlarmDiagnosticTestFailed,
3005
+ upsAlarmCommunicationsLost, upsAlarmShutdownPending,
3006
+ and upsAlarmTestInProgress.""",
3007
+ },
3008
+ "upsTestId" : {
3009
+ "module" : "UPS-MIB",
3010
+ "description" :
3011
+ """Support of all `well known' test types is not
3012
+ required. The well known test types which must be
3013
+ supported are: upsTestNoTestsInitiated,
3014
+ upsTestGeneralSystemsTest, and
3015
+ upsTestQuickBatteryTest.""",
3016
+ },
3017
+ "upsOutputSource" : {
3018
+ "module" : "UPS-MIB",
3019
+ "syntax" : {
3020
+ "type" : {
3021
+ "basetype" : "Enumeration",
3022
+ "normal" : {
3023
+ "nodetype" : "namednumber",
3024
+ "number" : "2"
3025
+ },
3026
+ "battery" : {
3027
+ "nodetype" : "namednumber",
3028
+ "number" : "4"
3029
+ },
3030
+ },
3031
+ }, # syntax
3032
+ "description" :
3033
+ """Support of the values other(1), none(2), bypass(4),
3034
+ booster(6) and reducer(7) is not required.""",
3035
+ },
3036
+ "upsShutdownType" : {
3037
+ "module" : "UPS-MIB",
3038
+ "access" : "readonly",
3039
+ "description" :
3040
+ """Read-write access is not required, i.e., compliant
3041
+ systems need not support more than one shutdown type.""",
3042
+ },
3043
+ "upsAutoRestart" : {
3044
+ "module" : "UPS-MIB",
3045
+ "access" : "readonly",
3046
+ "description" :
3047
+ """Read-write access is not required, i.e., compliant
3048
+ systems need not support more than one restart type.""",
3049
+ },
3050
+ "upsConfigInputVoltage" : {
3051
+ "module" : "UPS-MIB",
3052
+ "access" : "readonly",
3053
+ "description" :
3054
+ """Read-write access is not required.""",
3055
+ },
3056
+ "upsConfigInputFreq" : {
3057
+ "module" : "UPS-MIB",
3058
+ "access" : "readonly",
3059
+ "description" :
3060
+ """Read-write access is not required.""",
3061
+ },
3062
+ "upsConfigOutputVoltage" : {
3063
+ "module" : "UPS-MIB",
3064
+ "access" : "readonly",
3065
+ "description" :
3066
+ """Read-write access is not required.""",
3067
+ },
3068
+ "upsConfigOutputFreq" : {
3069
+ "module" : "UPS-MIB",
3070
+ "access" : "readonly",
3071
+ "description" :
3072
+ """Read-write access is not required.""",
3073
+ },
3074
+ "upsConfigLowBattTime" : {
3075
+ "module" : "UPS-MIB",
3076
+ "description" :
3077
+ """Implementation of all possible values may be onerous
3078
+ for some systems. Consequently, not all possible
3079
+ values must be supported. However, at least two
3080
+ different manufacturer-selected values must be
3081
+ supported.""",
3082
+ },
3083
+ }, # refinements
3084
+
3085
+ }, # compliance
3086
+ }, # compliances
3087
+
3088
+ }