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,2820 @@
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 DISMAN-SCRIPT-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/DISMAN-SCRIPT-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "DISMAN-SCRIPT-MIB",
11
+
12
+ "DISMAN-SCRIPT-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Distributed Management Working Group""",
17
+ "contact" :
18
+ """WG EMail: disman@dorothy.bmc.com
19
+ Subscribe: disman-request@dorothy.bmc.com
20
+
21
+ Chair: Randy Presuhn
22
+ BMC Software, Inc.
23
+
24
+
25
+ Postal: Office 1-3141
26
+ 2141 North First Street
27
+ San Jose, California 95131
28
+ USA
29
+ EMail: rpresuhn@bmc.com
30
+ Phone: +1 408 546-1006
31
+
32
+ Editor: David B. Levi
33
+ Nortel Networks
34
+ Postal: 4401 Great America Parkway
35
+ Santa Clara, CA 95052-8185
36
+ USA
37
+ EMail: dlevi@nortelnetworks.com
38
+ Phone: +1 423 686 0432
39
+
40
+ Editor: Juergen Schoenwaelder
41
+ TU Braunschweig
42
+ Postal: Bueltenweg 74/75
43
+ 38106 Braunschweig
44
+ Germany
45
+ EMail: schoenw@ibr.cs.tu-bs.de
46
+ Phone: +49 531 391-3283""",
47
+ "description" :
48
+ """This MIB module defines a set of objects that allow to
49
+ delegate management scripts to distributed managers.""",
50
+ "revisions" : (
51
+ {
52
+ "date" : "2001-08-21 00:00",
53
+ "description" :
54
+ """Revised version, published as RFC 3165.
55
+
56
+ This revision introduces several new objects: smScriptError,
57
+ smScriptLastChange, smLaunchError, smLaunchLastChange,
58
+ smLaunchRowExpireTime, smRunResultTime, and smRunErrorTime.
59
+
60
+ The following existing objects were updated: the maximum
61
+ value of smRunLifeTime now disables the timer, an
62
+ autostart value was added to the smLaunchAdminStatus
63
+ object, and a new expired state was added to the
64
+ smLaunchOperStatus object.
65
+
66
+ A new smScriptException notification has been added to
67
+ support runtime error notifications.
68
+
69
+ Created new conformance and compliance statements that
70
+ take care of the new objects and notifications.
71
+
72
+ Clarifications have been added in several places to remove
73
+ ambiguities or contradictions that were discovered and
74
+ reported by implementors.""",
75
+ },
76
+ {
77
+ "date" : "1999-02-22 18:00",
78
+ "description" :
79
+ """Initial version, published as RFC 2592.""",
80
+ },
81
+ ),
82
+ "identity node" : "scriptMIB",
83
+ },
84
+
85
+ "imports" : (
86
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
87
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
88
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
89
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
90
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
91
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
92
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
93
+ {"module" : "SNMPv2-TC", "name" : "TimeInterval"},
94
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
95
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
96
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
97
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
98
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
99
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
100
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
101
+ ),
102
+
103
+ "nodes" : {
104
+ "scriptMIB" : {
105
+ "nodetype" : "node",
106
+ "moduleName" : "DISMAN-SCRIPT-MIB",
107
+ "oid" : "1.3.6.1.2.1.64",
108
+ "status" : "current",
109
+ }, # node
110
+ "smObjects" : {
111
+ "nodetype" : "node",
112
+ "moduleName" : "DISMAN-SCRIPT-MIB",
113
+ "oid" : "1.3.6.1.2.1.64.1",
114
+ }, # node
115
+ "smLangTable" : {
116
+ "nodetype" : "table",
117
+ "moduleName" : "DISMAN-SCRIPT-MIB",
118
+ "oid" : "1.3.6.1.2.1.64.1.1",
119
+ "status" : "current",
120
+ "description" :
121
+ """This table lists supported script languages.""",
122
+ }, # table
123
+ "smLangEntry" : {
124
+ "nodetype" : "row",
125
+ "moduleName" : "DISMAN-SCRIPT-MIB",
126
+ "oid" : "1.3.6.1.2.1.64.1.1.1",
127
+ "status" : "current",
128
+ "linkage" : [
129
+ "smLangIndex",
130
+ ],
131
+ "description" :
132
+ """An entry describing a particular language.""",
133
+ }, # row
134
+ "smLangIndex" : {
135
+ "nodetype" : "column",
136
+ "moduleName" : "DISMAN-SCRIPT-MIB",
137
+ "oid" : "1.3.6.1.2.1.64.1.1.1.1",
138
+ "status" : "current",
139
+ "syntax" : {
140
+ "type" : {
141
+ "basetype" : "Integer32",
142
+ "ranges" : [
143
+ {
144
+ "min" : "1",
145
+ "max" : "2147483647"
146
+ },
147
+ ],
148
+ "range" : {
149
+ "min" : "1",
150
+ "max" : "2147483647"
151
+ },
152
+ },
153
+ },
154
+ "access" : "noaccess",
155
+ "description" :
156
+ """The locally arbitrary, but unique identifier associated
157
+ with this language entry.
158
+
159
+ The value is expected to remain constant at least from one
160
+ re-initialization of the entity's network management system
161
+ to the next re-initialization.
162
+
163
+ Note that the data type and the range of this object must
164
+ be consistent with the definition of smScriptLanguage.""",
165
+ }, # column
166
+ "smLangLanguage" : {
167
+ "nodetype" : "column",
168
+ "moduleName" : "DISMAN-SCRIPT-MIB",
169
+ "oid" : "1.3.6.1.2.1.64.1.1.1.2",
170
+ "status" : "current",
171
+ "syntax" : {
172
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
173
+ },
174
+ "access" : "readonly",
175
+ "description" :
176
+ """The globally unique identification of the language.""",
177
+ }, # column
178
+ "smLangVersion" : {
179
+ "nodetype" : "column",
180
+ "moduleName" : "DISMAN-SCRIPT-MIB",
181
+ "oid" : "1.3.6.1.2.1.64.1.1.1.3",
182
+ "status" : "current",
183
+ "syntax" : {
184
+ "type" : {
185
+ "basetype" : "OctetString",
186
+ "parent module" : {
187
+ "name" : "SNMP-FRAMEWORK-MIB",
188
+ "type" : "SnmpAdminString",
189
+ },
190
+ "ranges" : [
191
+ {
192
+ "min" : "0",
193
+ "max" : "32"
194
+ },
195
+ ],
196
+ "range" : {
197
+ "min" : "0",
198
+ "max" : "32"
199
+ },
200
+ },
201
+ },
202
+ "access" : "readonly",
203
+ "description" :
204
+ """The version number of the language. The zero-length string
205
+ shall be used if the language does not have a version
206
+ number.
207
+
208
+ It is suggested that the version number consist of one or
209
+ more decimal numbers separated by dots, where the first
210
+ number is called the major version number.""",
211
+ }, # column
212
+ "smLangVendor" : {
213
+ "nodetype" : "column",
214
+ "moduleName" : "DISMAN-SCRIPT-MIB",
215
+ "oid" : "1.3.6.1.2.1.64.1.1.1.4",
216
+ "status" : "current",
217
+ "syntax" : {
218
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
219
+ },
220
+ "access" : "readonly",
221
+ "description" :
222
+ """An object identifier which identifies the vendor who
223
+ provides the implementation of the language. This object
224
+ identifier SHALL point to the object identifier directly
225
+ below the enterprise object identifier {1 3 6 1 4 1}
226
+ allocated for the vendor. The value must be the object
227
+ identifier {0 0} if the vendor is not known.""",
228
+ }, # column
229
+ "smLangRevision" : {
230
+ "nodetype" : "column",
231
+ "moduleName" : "DISMAN-SCRIPT-MIB",
232
+ "oid" : "1.3.6.1.2.1.64.1.1.1.5",
233
+ "status" : "current",
234
+ "syntax" : {
235
+ "type" : {
236
+ "basetype" : "OctetString",
237
+ "parent module" : {
238
+ "name" : "SNMP-FRAMEWORK-MIB",
239
+ "type" : "SnmpAdminString",
240
+ },
241
+ "ranges" : [
242
+ {
243
+ "min" : "0",
244
+ "max" : "32"
245
+ },
246
+ ],
247
+ "range" : {
248
+ "min" : "0",
249
+ "max" : "32"
250
+ },
251
+ },
252
+ },
253
+ "access" : "readonly",
254
+ "description" :
255
+ """The version number of the language implementation.
256
+ The value of this object must be an empty string if
257
+ version number of the implementation is unknown.
258
+
259
+ It is suggested that the value consist of one or more
260
+ decimal numbers separated by dots, where the first
261
+ number is called the major version number.""",
262
+ }, # column
263
+ "smLangDescr" : {
264
+ "nodetype" : "column",
265
+ "moduleName" : "DISMAN-SCRIPT-MIB",
266
+ "oid" : "1.3.6.1.2.1.64.1.1.1.6",
267
+ "status" : "current",
268
+ "syntax" : {
269
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
270
+ },
271
+ "access" : "readonly",
272
+ "description" :
273
+ """A textual description of the language.""",
274
+ }, # column
275
+ "smExtsnTable" : {
276
+ "nodetype" : "table",
277
+ "moduleName" : "DISMAN-SCRIPT-MIB",
278
+ "oid" : "1.3.6.1.2.1.64.1.2",
279
+ "status" : "current",
280
+ "description" :
281
+ """This table lists supported language extensions.""",
282
+ }, # table
283
+ "smExtsnEntry" : {
284
+ "nodetype" : "row",
285
+ "moduleName" : "DISMAN-SCRIPT-MIB",
286
+ "oid" : "1.3.6.1.2.1.64.1.2.1",
287
+ "status" : "current",
288
+ "linkage" : [
289
+ "smLangIndex",
290
+ "smExtsnIndex",
291
+ ],
292
+ "description" :
293
+ """An entry describing a particular language extension.""",
294
+ }, # row
295
+ "smExtsnIndex" : {
296
+ "nodetype" : "column",
297
+ "moduleName" : "DISMAN-SCRIPT-MIB",
298
+ "oid" : "1.3.6.1.2.1.64.1.2.1.1",
299
+ "status" : "current",
300
+ "syntax" : {
301
+ "type" : {
302
+ "basetype" : "Integer32",
303
+ "ranges" : [
304
+ {
305
+ "min" : "1",
306
+ "max" : "2147483647"
307
+ },
308
+ ],
309
+ "range" : {
310
+ "min" : "1",
311
+ "max" : "2147483647"
312
+ },
313
+ },
314
+ },
315
+ "access" : "noaccess",
316
+ "description" :
317
+ """The locally arbitrary, but unique identifier associated
318
+ with this language extension entry.
319
+
320
+ The value is expected to remain constant at least from one
321
+ re-initialization of the entity's network management system
322
+ to the next re-initialization.""",
323
+ }, # column
324
+ "smExtsnExtension" : {
325
+ "nodetype" : "column",
326
+ "moduleName" : "DISMAN-SCRIPT-MIB",
327
+ "oid" : "1.3.6.1.2.1.64.1.2.1.2",
328
+ "status" : "current",
329
+ "syntax" : {
330
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
331
+ },
332
+ "access" : "readonly",
333
+ "description" :
334
+ """The globally unique identification of the language
335
+ extension.""",
336
+ }, # column
337
+ "smExtsnVersion" : {
338
+ "nodetype" : "column",
339
+ "moduleName" : "DISMAN-SCRIPT-MIB",
340
+ "oid" : "1.3.6.1.2.1.64.1.2.1.3",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : {
344
+ "basetype" : "OctetString",
345
+ "parent module" : {
346
+ "name" : "SNMP-FRAMEWORK-MIB",
347
+ "type" : "SnmpAdminString",
348
+ },
349
+ "ranges" : [
350
+ {
351
+ "min" : "0",
352
+ "max" : "32"
353
+ },
354
+ ],
355
+ "range" : {
356
+ "min" : "0",
357
+ "max" : "32"
358
+ },
359
+ },
360
+ },
361
+ "access" : "readonly",
362
+ "description" :
363
+ """The version number of the language extension.
364
+ It is suggested that the version number consist of one or
365
+ more decimal numbers separated by dots, where the first
366
+ number is called the major version number.""",
367
+ }, # column
368
+ "smExtsnVendor" : {
369
+ "nodetype" : "column",
370
+ "moduleName" : "DISMAN-SCRIPT-MIB",
371
+ "oid" : "1.3.6.1.2.1.64.1.2.1.4",
372
+ "status" : "current",
373
+ "syntax" : {
374
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
375
+ },
376
+ "access" : "readonly",
377
+ "description" :
378
+ """An object identifier which identifies the vendor who
379
+ provides the implementation of the extension. The
380
+ object identifier value should point to the OID node
381
+ directly below the enterprise OID {1 3 6 1 4 1}
382
+ allocated for the vendor. The value must by the object
383
+ identifier {0 0} if the vendor is not known.""",
384
+ }, # column
385
+ "smExtsnRevision" : {
386
+ "nodetype" : "column",
387
+ "moduleName" : "DISMAN-SCRIPT-MIB",
388
+ "oid" : "1.3.6.1.2.1.64.1.2.1.5",
389
+ "status" : "current",
390
+ "syntax" : {
391
+ "type" : {
392
+ "basetype" : "OctetString",
393
+ "parent module" : {
394
+ "name" : "SNMP-FRAMEWORK-MIB",
395
+ "type" : "SnmpAdminString",
396
+ },
397
+ "ranges" : [
398
+ {
399
+ "min" : "0",
400
+ "max" : "32"
401
+ },
402
+ ],
403
+ "range" : {
404
+ "min" : "0",
405
+ "max" : "32"
406
+ },
407
+ },
408
+ },
409
+ "access" : "readonly",
410
+ "description" :
411
+ """The version number of the extension implementation.
412
+ The value of this object must be an empty string if
413
+ version number of the implementation is unknown.
414
+
415
+ It is suggested that the value consist of one or more
416
+ decimal numbers separated by dots, where the first
417
+ number is called the major version number.""",
418
+ }, # column
419
+ "smExtsnDescr" : {
420
+ "nodetype" : "column",
421
+ "moduleName" : "DISMAN-SCRIPT-MIB",
422
+ "oid" : "1.3.6.1.2.1.64.1.2.1.6",
423
+ "status" : "current",
424
+ "syntax" : {
425
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
426
+ },
427
+ "access" : "readonly",
428
+ "description" :
429
+ """A textual description of the language extension.""",
430
+ }, # column
431
+ "smScriptObjects" : {
432
+ "nodetype" : "node",
433
+ "moduleName" : "DISMAN-SCRIPT-MIB",
434
+ "oid" : "1.3.6.1.2.1.64.1.3",
435
+ }, # node
436
+ "smScriptTable" : {
437
+ "nodetype" : "table",
438
+ "moduleName" : "DISMAN-SCRIPT-MIB",
439
+ "oid" : "1.3.6.1.2.1.64.1.3.1",
440
+ "status" : "current",
441
+ "description" :
442
+ """This table lists and describes locally known scripts.""",
443
+ }, # table
444
+ "smScriptEntry" : {
445
+ "nodetype" : "row",
446
+ "moduleName" : "DISMAN-SCRIPT-MIB",
447
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1",
448
+ "create" : "true",
449
+ "status" : "current",
450
+ "linkage" : [
451
+ "smScriptOwner",
452
+ "smScriptName",
453
+ ],
454
+ "description" :
455
+ """An entry describing a particular script. Every script that
456
+ is stored in non-volatile memory is required to appear in
457
+ this script table.""",
458
+ }, # row
459
+ "smScriptOwner" : {
460
+ "nodetype" : "column",
461
+ "moduleName" : "DISMAN-SCRIPT-MIB",
462
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.1",
463
+ "status" : "current",
464
+ "syntax" : {
465
+ "type" : {
466
+ "basetype" : "OctetString",
467
+ "parent module" : {
468
+ "name" : "SNMP-FRAMEWORK-MIB",
469
+ "type" : "SnmpAdminString",
470
+ },
471
+ "ranges" : [
472
+ {
473
+ "min" : "0",
474
+ "max" : "32"
475
+ },
476
+ ],
477
+ "range" : {
478
+ "min" : "0",
479
+ "max" : "32"
480
+ },
481
+ },
482
+ },
483
+ "access" : "noaccess",
484
+ "description" :
485
+ """The manager who owns this row in the smScriptTable.""",
486
+ }, # column
487
+ "smScriptName" : {
488
+ "nodetype" : "column",
489
+ "moduleName" : "DISMAN-SCRIPT-MIB",
490
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.2",
491
+ "status" : "current",
492
+ "syntax" : {
493
+ "type" : {
494
+ "basetype" : "OctetString",
495
+ "parent module" : {
496
+ "name" : "SNMP-FRAMEWORK-MIB",
497
+ "type" : "SnmpAdminString",
498
+ },
499
+ "ranges" : [
500
+ {
501
+ "min" : "1",
502
+ "max" : "32"
503
+ },
504
+ ],
505
+ "range" : {
506
+ "min" : "1",
507
+ "max" : "32"
508
+ },
509
+ },
510
+ },
511
+ "access" : "noaccess",
512
+ "description" :
513
+ """The locally-unique, administratively assigned name for this
514
+ script. This object allows an smScriptOwner to have multiple
515
+ entries in the smScriptTable.
516
+
517
+ This value of this object may be used to derive the name
518
+ (e.g. a file name) which is used by the Script MIB
519
+ implementation to access the script in non-volatile
520
+ storage. The details of this mapping are implementation
521
+ specific. However, the mapping needs to ensure that scripts
522
+ created by different owners with the same script name do not
523
+ map to the same name in non-volatile storage.""",
524
+ }, # column
525
+ "smScriptDescr" : {
526
+ "nodetype" : "column",
527
+ "moduleName" : "DISMAN-SCRIPT-MIB",
528
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.3",
529
+ "status" : "current",
530
+ "syntax" : {
531
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
532
+ },
533
+ "access" : "readwrite",
534
+ "description" :
535
+ """A description of the purpose of the script.""",
536
+ }, # column
537
+ "smScriptLanguage" : {
538
+ "nodetype" : "column",
539
+ "moduleName" : "DISMAN-SCRIPT-MIB",
540
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.4",
541
+ "status" : "current",
542
+ "syntax" : {
543
+ "type" : {
544
+ "basetype" : "Integer32",
545
+ "ranges" : [
546
+ {
547
+ "min" : "0",
548
+ "max" : "2147483647"
549
+ },
550
+ ],
551
+ "range" : {
552
+ "min" : "0",
553
+ "max" : "2147483647"
554
+ },
555
+ },
556
+ },
557
+ "access" : "readwrite",
558
+ "description" :
559
+ """The value of this object type identifies an entry in the
560
+ smLangTable which is used to execute this script.
561
+ The special value 0 may be used by hard-wired scripts
562
+ that can not be modified and that are executed by
563
+ internal functions.
564
+
565
+ Set requests to change this object are invalid if the
566
+ value of smScriptOperStatus is `enabled' or `compiling'
567
+ and will result in an inconsistentValue error.
568
+
569
+ Note that the data type and the range of this object must
570
+ be consistent with the definition of smLangIndex.""",
571
+ }, # column
572
+ "smScriptSource" : {
573
+ "nodetype" : "column",
574
+ "moduleName" : "DISMAN-SCRIPT-MIB",
575
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.5",
576
+ "status" : "current",
577
+ "syntax" : {
578
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
579
+ },
580
+ "access" : "readwrite",
581
+ "default" : "",
582
+ "description" :
583
+ """This object either contains a reference to the script
584
+ source or an empty string. A reference must be given
585
+ in the form of a Uniform Resource Locator (URL) as
586
+ defined in RFC 2396. The allowed character sets and the
587
+ encoding rules defined in RFC 2396 section 2 apply.
588
+
589
+ When the smScriptAdminStatus object is set to `enabled',
590
+ the Script MIB implementation will `pull' the script
591
+ source from the URL contained in this object if the URL
592
+ is not empty.
593
+
594
+ An empty URL indicates that the script source is loaded
595
+ from local storage. The script is read from the smCodeTable
596
+ if the value of smScriptStorageType is volatile. Otherwise,
597
+ the script is read from non-volatile storage.
598
+
599
+ Note: This document does not mandate implementation of any
600
+ specific URL scheme. An attempt to load a script from a
601
+ nonsupported URL scheme will cause the smScriptOperStatus
602
+ to report an `unknownProtocol' error.
603
+
604
+
605
+
606
+ Set requests to change this object are invalid if the
607
+ value of smScriptOperStatus is `enabled', `editing',
608
+ `retrieving' or `compiling' and will result in an
609
+ inconsistentValue error.""",
610
+ }, # column
611
+ "smScriptAdminStatus" : {
612
+ "nodetype" : "column",
613
+ "moduleName" : "DISMAN-SCRIPT-MIB",
614
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.6",
615
+ "status" : "current",
616
+ "syntax" : {
617
+ "type" : {
618
+ "basetype" : "Enumeration",
619
+ "enabled" : {
620
+ "nodetype" : "namednumber",
621
+ "number" : "1"
622
+ },
623
+ "disabled" : {
624
+ "nodetype" : "namednumber",
625
+ "number" : "2"
626
+ },
627
+ "editing" : {
628
+ "nodetype" : "namednumber",
629
+ "number" : "3"
630
+ },
631
+ },
632
+ },
633
+ "access" : "readwrite",
634
+ "default" : "disabled",
635
+ "description" :
636
+ """The value of this object indicates the desired status of
637
+ the script. See the definition of smScriptOperStatus for
638
+ a description of the values.
639
+
640
+ When the smScriptAdminStatus object is set to `enabled' and
641
+ the smScriptOperStatus is `disabled' or one of the error
642
+ states, the Script MIB implementation will `pull' the script
643
+ source from the URL contained in the smScriptSource object
644
+ if the URL is not empty.""",
645
+ }, # column
646
+ "smScriptOperStatus" : {
647
+ "nodetype" : "column",
648
+ "moduleName" : "DISMAN-SCRIPT-MIB",
649
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.7",
650
+ "status" : "current",
651
+ "syntax" : {
652
+ "type" : {
653
+ "basetype" : "Enumeration",
654
+ "enabled" : {
655
+ "nodetype" : "namednumber",
656
+ "number" : "1"
657
+ },
658
+ "disabled" : {
659
+ "nodetype" : "namednumber",
660
+ "number" : "2"
661
+ },
662
+ "editing" : {
663
+ "nodetype" : "namednumber",
664
+ "number" : "3"
665
+ },
666
+ "retrieving" : {
667
+ "nodetype" : "namednumber",
668
+ "number" : "4"
669
+ },
670
+ "compiling" : {
671
+ "nodetype" : "namednumber",
672
+ "number" : "5"
673
+ },
674
+ "noSuchScript" : {
675
+ "nodetype" : "namednumber",
676
+ "number" : "6"
677
+ },
678
+ "accessDenied" : {
679
+ "nodetype" : "namednumber",
680
+ "number" : "7"
681
+ },
682
+ "wrongLanguage" : {
683
+ "nodetype" : "namednumber",
684
+ "number" : "8"
685
+ },
686
+ "wrongVersion" : {
687
+ "nodetype" : "namednumber",
688
+ "number" : "9"
689
+ },
690
+ "compilationFailed" : {
691
+ "nodetype" : "namednumber",
692
+ "number" : "10"
693
+ },
694
+ "noResourcesLeft" : {
695
+ "nodetype" : "namednumber",
696
+ "number" : "11"
697
+ },
698
+ "unknownProtocol" : {
699
+ "nodetype" : "namednumber",
700
+ "number" : "12"
701
+ },
702
+ "protocolFailure" : {
703
+ "nodetype" : "namednumber",
704
+ "number" : "13"
705
+ },
706
+ "genericError" : {
707
+ "nodetype" : "namednumber",
708
+ "number" : "14"
709
+ },
710
+ },
711
+ },
712
+ "access" : "readonly",
713
+ "default" : "disabled",
714
+ "description" :
715
+ """The actual status of the script in the runtime system. The
716
+ value of this object is only meaningful when the value of
717
+ the smScriptRowStatus object is `active'.
718
+
719
+ The smScriptOperStatus object may have the following values:
720
+
721
+ - `enabled' indicates that the script is available and can
722
+ be started by a launch table entry.
723
+
724
+ - `disabled' indicates that the script can not be used.
725
+
726
+ - `editing' indicates that the script can be modified in the
727
+ smCodeTable.
728
+
729
+ - `retrieving' indicates that the script is currently being
730
+ loaded from non-volatile storage or a remote system.
731
+
732
+ - `compiling' indicates that the script is currently being
733
+ compiled by the runtime system.
734
+
735
+ - `noSuchScript' indicates that the script does not exist
736
+ at the smScriptSource.
737
+
738
+ - `accessDenied' indicates that the script can not be loaded
739
+ from the smScriptSource due to a lack of permissions.
740
+
741
+ - `wrongLanguage' indicates that the script can not be
742
+ loaded from the smScriptSource because of a language
743
+ mismatch.
744
+
745
+ - `wrongVersion' indicates that the script can not be loaded
746
+ from the smScriptSource because of a language version
747
+ mismatch.
748
+
749
+ - `compilationFailed' indicates that the compilation failed.
750
+
751
+ - `noResourcesLeft' indicates that the runtime system does
752
+ not have enough resources to load the script.
753
+
754
+ - `unknownProtocol' indicates that the script could not be
755
+ loaded from the smScriptSource because the requested
756
+ protocol is not supported.
757
+
758
+ - `protocolFailure' indicates that the script could not be
759
+ loaded from the smScriptSource because of a protocol
760
+ failure.
761
+
762
+ - `genericError' indicates that the script could not be
763
+
764
+
765
+ loaded due to an error condition not listed above.
766
+
767
+ The `retrieving' and `compiling' states are transient states
768
+ which will either lead to one of the error states or the
769
+ `enabled' state. The `disabled' and `editing' states are
770
+ administrative states which are only reached by explicit
771
+ management operations.
772
+
773
+ All launch table entries that refer to this script table
774
+ entry shall have an smLaunchOperStatus value of `disabled'
775
+ when the value of this object is not `enabled'.""",
776
+ }, # column
777
+ "smScriptStorageType" : {
778
+ "nodetype" : "column",
779
+ "moduleName" : "DISMAN-SCRIPT-MIB",
780
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.8",
781
+ "status" : "current",
782
+ "syntax" : {
783
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
784
+ },
785
+ "access" : "readwrite",
786
+ "default" : "volatile",
787
+ "description" :
788
+ """This object defines whether this row and the script
789
+ controlled by this row are kept in volatile storage and
790
+ lost upon reboot or if this row is backed up by
791
+ non-volatile or permanent storage.
792
+
793
+ The storage type of this row always complies with the value
794
+ of this entry if the value of the corresponding RowStatus
795
+ object is `active'.
796
+
797
+ However, the storage type of the script controlled by this
798
+ row may be different, if the value of this entry is
799
+ `non-volatile'. The script controlled by this row is written
800
+ into local non-volatile storage if the following condition
801
+ becomes true:
802
+
803
+ (a) the URL contained in the smScriptSource object is empty
804
+ and
805
+ (b) the smScriptStorageType is `nonVolatile'
806
+ and
807
+ (c) the smScriptOperStatus is `enabled'
808
+
809
+ Setting this object to `volatile' removes a script from
810
+ non-volatile storage if the script controlled by this row
811
+ has been in non-volatile storage before. Attempts to set
812
+ this object to permanent will always fail with an
813
+ inconsistentValue error.
814
+
815
+ The value of smScriptStorageType is only meaningful if the
816
+ value of the corresponding RowStatus object is `active'.
817
+
818
+
819
+ If smScriptStorageType has the value permanent(4), then all
820
+ objects whose MAX-ACCESS value is read-create must be
821
+ writable, with the exception of the smScriptStorageType and
822
+ smScriptRowStatus objects, which shall be read-only.""",
823
+ }, # column
824
+ "smScriptRowStatus" : {
825
+ "nodetype" : "column",
826
+ "moduleName" : "DISMAN-SCRIPT-MIB",
827
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.9",
828
+ "status" : "current",
829
+ "syntax" : {
830
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
831
+ },
832
+ "access" : "readwrite",
833
+ "description" :
834
+ """A control that allows entries to be added and removed from
835
+ this table.
836
+
837
+ Changing the smScriptRowStatus from `active' to
838
+ `notInService' will remove the associated script from the
839
+ runtime system.
840
+
841
+ Deleting conceptual rows from this table may affect the
842
+ deletion of other resources associated with this row. For
843
+ example, a script stored in non-volatile storage may be
844
+ removed from non-volatile storage.
845
+
846
+ An entry may not exist in the `active' state unless all
847
+ required objects in the entry have appropriate values. Rows
848
+ that are not complete or not in service are not known by the
849
+ script runtime system.
850
+
851
+ Attempts to `destroy' a row or to set a row `notInService'
852
+ while the smScriptOperStatus is `enabled' will result in an
853
+ inconsistentValue error.
854
+
855
+ Attempts to `destroy' a row or to set a row `notInService'
856
+ where the value of the smScriptStorageType object is
857
+ `permanent' or `readOnly' will result in an
858
+ inconsistentValue error.
859
+
860
+ The value of this object has no effect on whether other
861
+ objects in this conceptual row can be modified.""",
862
+ }, # column
863
+ "smScriptError" : {
864
+ "nodetype" : "column",
865
+ "moduleName" : "DISMAN-SCRIPT-MIB",
866
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.10",
867
+ "status" : "current",
868
+ "syntax" : {
869
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
870
+ },
871
+ "access" : "readonly",
872
+ "default" : "",
873
+ "description" :
874
+ """This object contains a descriptive error message if the
875
+
876
+
877
+ transition into the operational status `enabled' failed.
878
+ Implementations must reset the error message to a
879
+ zero-length string when a new attempt to change the
880
+ script status to `enabled' is started.""",
881
+ }, # column
882
+ "smScriptLastChange" : {
883
+ "nodetype" : "column",
884
+ "moduleName" : "DISMAN-SCRIPT-MIB",
885
+ "oid" : "1.3.6.1.2.1.64.1.3.1.1.11",
886
+ "status" : "current",
887
+ "syntax" : {
888
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
889
+ },
890
+ "access" : "readonly",
891
+ "default" : "0x0000000000000000",
892
+ "description" :
893
+ """The date and time when this script table entry was last
894
+ modified. The value '0000000000000000'H is returned if
895
+ the script table entry has not yet been modified.
896
+
897
+ Note that the resetting of smScriptError is not considered
898
+ a change of the script table entry.""",
899
+ }, # column
900
+ "smCodeTable" : {
901
+ "nodetype" : "table",
902
+ "moduleName" : "DISMAN-SCRIPT-MIB",
903
+ "oid" : "1.3.6.1.2.1.64.1.3.2",
904
+ "status" : "current",
905
+ "description" :
906
+ """This table contains the script code for scripts that are
907
+ written via SNMP write operations.""",
908
+ }, # table
909
+ "smCodeEntry" : {
910
+ "nodetype" : "row",
911
+ "moduleName" : "DISMAN-SCRIPT-MIB",
912
+ "oid" : "1.3.6.1.2.1.64.1.3.2.1",
913
+ "create" : "true",
914
+ "status" : "current",
915
+ "linkage" : [
916
+ "smScriptOwner",
917
+ "smScriptName",
918
+ "smCodeIndex",
919
+ ],
920
+ "description" :
921
+ """An entry describing a particular fragment of a script.""",
922
+ }, # row
923
+ "smCodeIndex" : {
924
+ "nodetype" : "column",
925
+ "moduleName" : "DISMAN-SCRIPT-MIB",
926
+ "oid" : "1.3.6.1.2.1.64.1.3.2.1.1",
927
+ "status" : "current",
928
+ "syntax" : {
929
+ "type" : {
930
+ "basetype" : "Unsigned32",
931
+ "ranges" : [
932
+ {
933
+ "min" : "1",
934
+ "max" : "4294967295"
935
+ },
936
+ ],
937
+ "range" : {
938
+ "min" : "1",
939
+ "max" : "4294967295"
940
+ },
941
+ },
942
+ },
943
+ "access" : "noaccess",
944
+ "description" :
945
+ """The index value identifying this code fragment.""",
946
+ }, # column
947
+ "smCodeText" : {
948
+ "nodetype" : "column",
949
+ "moduleName" : "DISMAN-SCRIPT-MIB",
950
+ "oid" : "1.3.6.1.2.1.64.1.3.2.1.2",
951
+ "status" : "current",
952
+ "syntax" : {
953
+ "type" : {
954
+ "basetype" : "OctetString",
955
+ "ranges" : [
956
+ {
957
+ "min" : "1",
958
+ "max" : "1024"
959
+ },
960
+ ],
961
+ "range" : {
962
+ "min" : "1",
963
+ "max" : "1024"
964
+ },
965
+ },
966
+ },
967
+ "access" : "readwrite",
968
+ "description" :
969
+ """The code that makes up a fragment of a script. The format
970
+ of this code fragment depends on the script language which
971
+ is identified by the associated smScriptLanguage object.""",
972
+ }, # column
973
+ "smCodeRowStatus" : {
974
+ "nodetype" : "column",
975
+ "moduleName" : "DISMAN-SCRIPT-MIB",
976
+ "oid" : "1.3.6.1.2.1.64.1.3.2.1.3",
977
+ "status" : "current",
978
+ "syntax" : {
979
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
980
+ },
981
+ "access" : "readwrite",
982
+ "description" :
983
+ """A control that allows entries to be added and removed from
984
+ this table.
985
+
986
+ The value of this object has no effect on whether other
987
+ objects in this conceptual row can be modified.""",
988
+ }, # column
989
+ "smRunObjects" : {
990
+ "nodetype" : "node",
991
+ "moduleName" : "DISMAN-SCRIPT-MIB",
992
+ "oid" : "1.3.6.1.2.1.64.1.4",
993
+ }, # node
994
+ "smLaunchTable" : {
995
+ "nodetype" : "table",
996
+ "moduleName" : "DISMAN-SCRIPT-MIB",
997
+ "oid" : "1.3.6.1.2.1.64.1.4.1",
998
+ "status" : "current",
999
+ "description" :
1000
+ """This table lists and describes scripts that are ready
1001
+ to be executed together with their parameters.""",
1002
+ }, # table
1003
+ "smLaunchEntry" : {
1004
+ "nodetype" : "row",
1005
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1006
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1",
1007
+ "create" : "true",
1008
+ "status" : "current",
1009
+ "linkage" : [
1010
+ "smLaunchOwner",
1011
+ "smLaunchName",
1012
+ ],
1013
+ "description" :
1014
+ """An entry describing a particular executable script.""",
1015
+ }, # row
1016
+ "smLaunchOwner" : {
1017
+ "nodetype" : "column",
1018
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1019
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.1",
1020
+ "status" : "current",
1021
+ "syntax" : {
1022
+ "type" : {
1023
+ "basetype" : "OctetString",
1024
+ "parent module" : {
1025
+ "name" : "SNMP-FRAMEWORK-MIB",
1026
+ "type" : "SnmpAdminString",
1027
+ },
1028
+ "ranges" : [
1029
+ {
1030
+ "min" : "0",
1031
+ "max" : "32"
1032
+ },
1033
+ ],
1034
+ "range" : {
1035
+ "min" : "0",
1036
+ "max" : "32"
1037
+ },
1038
+ },
1039
+ },
1040
+ "access" : "noaccess",
1041
+ "description" :
1042
+ """The manager who owns this row in the smLaunchTable. Every
1043
+ instance of a running script started from a particular entry
1044
+ in the smLaunchTable (i.e. entries in the smRunTable) will
1045
+ be owned by the same smLaunchOwner used to index the entry
1046
+ in the smLaunchTable. This owner is not necessarily the same
1047
+ as the owner of the script itself (smLaunchScriptOwner).""",
1048
+ }, # column
1049
+ "smLaunchName" : {
1050
+ "nodetype" : "column",
1051
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1052
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.2",
1053
+ "status" : "current",
1054
+ "syntax" : {
1055
+ "type" : {
1056
+ "basetype" : "OctetString",
1057
+ "parent module" : {
1058
+ "name" : "SNMP-FRAMEWORK-MIB",
1059
+ "type" : "SnmpAdminString",
1060
+ },
1061
+ "ranges" : [
1062
+ {
1063
+ "min" : "1",
1064
+ "max" : "32"
1065
+ },
1066
+ ],
1067
+ "range" : {
1068
+ "min" : "1",
1069
+ "max" : "32"
1070
+ },
1071
+ },
1072
+ },
1073
+ "access" : "noaccess",
1074
+ "description" :
1075
+ """The locally-unique, administratively assigned name for this
1076
+ launch table entry. This object allows an smLaunchOwner to
1077
+ have multiple entries in the smLaunchTable. The smLaunchName
1078
+ is an arbitrary name that must be different from any other
1079
+ smLaunchTable entries with the same smLaunchOwner but can be
1080
+ the same as other entries in the smLaunchTable with
1081
+ different smLaunchOwner values. Note that the value of
1082
+ smLaunchName is not related in any way to the name of the
1083
+ script being launched.""",
1084
+ }, # column
1085
+ "smLaunchScriptOwner" : {
1086
+ "nodetype" : "column",
1087
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1088
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.3",
1089
+ "status" : "current",
1090
+ "syntax" : {
1091
+ "type" : {
1092
+ "basetype" : "OctetString",
1093
+ "parent module" : {
1094
+ "name" : "SNMP-FRAMEWORK-MIB",
1095
+ "type" : "SnmpAdminString",
1096
+ },
1097
+ "ranges" : [
1098
+ {
1099
+ "min" : "0",
1100
+ "max" : "32"
1101
+ },
1102
+ ],
1103
+ "range" : {
1104
+ "min" : "0",
1105
+ "max" : "32"
1106
+ },
1107
+ },
1108
+ },
1109
+ "access" : "readwrite",
1110
+ "description" :
1111
+ """The value of this object in combination with the value of
1112
+ smLaunchScriptName identifies the script that can be
1113
+ launched from this smLaunchTable entry. Attempts to write
1114
+ this object will fail with an inconsistentValue error if
1115
+ the value of smLaunchOperStatus is `enabled'.""",
1116
+ }, # column
1117
+ "smLaunchScriptName" : {
1118
+ "nodetype" : "column",
1119
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1120
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.4",
1121
+ "status" : "current",
1122
+ "syntax" : {
1123
+ "type" : {
1124
+ "basetype" : "OctetString",
1125
+ "parent module" : {
1126
+ "name" : "SNMP-FRAMEWORK-MIB",
1127
+ "type" : "SnmpAdminString",
1128
+ },
1129
+ "ranges" : [
1130
+ {
1131
+ "min" : "0",
1132
+ "max" : "32"
1133
+ },
1134
+ ],
1135
+ "range" : {
1136
+ "min" : "0",
1137
+ "max" : "32"
1138
+ },
1139
+ },
1140
+ },
1141
+ "access" : "readwrite",
1142
+ "default" : "",
1143
+ "description" :
1144
+ """The value of this object in combination with the value of
1145
+ the smLaunchScriptOwner identifies the script that can be
1146
+ launched from this smLaunchTable entry. The zero-length
1147
+ string may be used to point to a non-existing script.
1148
+
1149
+ Attempts to write this object will fail with an
1150
+ inconsistentValue error if the value of smLaunchOperStatus
1151
+ is `enabled'.""",
1152
+ }, # column
1153
+ "smLaunchArgument" : {
1154
+ "nodetype" : "column",
1155
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1156
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.5",
1157
+ "status" : "current",
1158
+ "syntax" : {
1159
+ "type" : { "module" :"", "name" : "OctetString"},
1160
+ },
1161
+ "access" : "readwrite",
1162
+ "default" : "",
1163
+ "description" :
1164
+ """The argument supplied to the script. When a script is
1165
+ invoked, the value of this object is used to initialize
1166
+ the smRunArgument object.""",
1167
+ }, # column
1168
+ "smLaunchMaxRunning" : {
1169
+ "nodetype" : "column",
1170
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1171
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.6",
1172
+ "status" : "current",
1173
+ "syntax" : {
1174
+ "type" : {
1175
+ "basetype" : "Unsigned32",
1176
+ "ranges" : [
1177
+ {
1178
+ "min" : "1",
1179
+ "max" : "4294967295"
1180
+ },
1181
+ ],
1182
+ "range" : {
1183
+ "min" : "1",
1184
+ "max" : "4294967295"
1185
+ },
1186
+ },
1187
+ },
1188
+ "access" : "readwrite",
1189
+ "default" : "1",
1190
+ "description" :
1191
+ """The maximum number of concurrently running scripts that may
1192
+ be invoked from this entry in the smLaunchTable. Lowering
1193
+ the current value of this object does not affect any scripts
1194
+ that are already executing.""",
1195
+ }, # column
1196
+ "smLaunchMaxCompleted" : {
1197
+ "nodetype" : "column",
1198
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1199
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.7",
1200
+ "status" : "current",
1201
+ "syntax" : {
1202
+ "type" : {
1203
+ "basetype" : "Unsigned32",
1204
+ "ranges" : [
1205
+ {
1206
+ "min" : "1",
1207
+ "max" : "4294967295"
1208
+ },
1209
+ ],
1210
+ "range" : {
1211
+ "min" : "1",
1212
+ "max" : "4294967295"
1213
+ },
1214
+ },
1215
+ },
1216
+ "access" : "readwrite",
1217
+ "default" : "1",
1218
+ "description" :
1219
+ """The maximum number of finished scripts invoked from this
1220
+ entry in the smLaunchTable allowed to be retained in the
1221
+ smRunTable. Whenever the value of this object is changed
1222
+ and whenever a script terminates, entries in the smRunTable
1223
+ are deleted if necessary until the number of completed
1224
+ scripts is smaller than the value of this object. Scripts
1225
+ whose smRunEndTime value indicates the oldest completion
1226
+ time are deleted first.""",
1227
+ }, # column
1228
+ "smLaunchLifeTime" : {
1229
+ "nodetype" : "column",
1230
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1231
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.8",
1232
+ "status" : "current",
1233
+ "syntax" : {
1234
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1235
+ },
1236
+ "access" : "readwrite",
1237
+ "default" : "360000",
1238
+ "units" : "centi-seconds",
1239
+ "description" :
1240
+ """The default maximum amount of time a script launched
1241
+ from this entry may run. The value of this object is used
1242
+ to initialize the smRunLifeTime object when a script is
1243
+ launched. Changing the value of an smLaunchLifeTime
1244
+ instance does not affect scripts previously launched from
1245
+
1246
+
1247
+ this entry.""",
1248
+ }, # column
1249
+ "smLaunchExpireTime" : {
1250
+ "nodetype" : "column",
1251
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1252
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.9",
1253
+ "status" : "current",
1254
+ "syntax" : {
1255
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1256
+ },
1257
+ "access" : "readwrite",
1258
+ "default" : "360000",
1259
+ "units" : "centi-seconds",
1260
+ "description" :
1261
+ """The default maximum amount of time information about a
1262
+ script launched from this entry is kept in the smRunTable
1263
+ after the script has completed execution. The value of
1264
+ this object is used to initialize the smRunExpireTime
1265
+ object when a script is launched. Changing the value of an
1266
+ smLaunchExpireTime instance does not affect scripts
1267
+ previously launched from this entry.""",
1268
+ }, # column
1269
+ "smLaunchStart" : {
1270
+ "nodetype" : "column",
1271
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1272
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.10",
1273
+ "status" : "current",
1274
+ "syntax" : {
1275
+ "type" : {
1276
+ "basetype" : "Integer32",
1277
+ "ranges" : [
1278
+ {
1279
+ "min" : "0",
1280
+ "max" : "2147483647"
1281
+ },
1282
+ ],
1283
+ "range" : {
1284
+ "min" : "0",
1285
+ "max" : "2147483647"
1286
+ },
1287
+ },
1288
+ },
1289
+ "access" : "readwrite",
1290
+ "default" : "0",
1291
+ "description" :
1292
+ """This object is used to start the execution of scripts.
1293
+ When retrieved, the value will be the value of smRunIndex
1294
+ for the last script that started execution by manipulating
1295
+ this object. The value will be zero if no script started
1296
+ execution yet.
1297
+
1298
+ A script is started by setting this object to an unused
1299
+ smRunIndex value. A new row in the smRunTable will be
1300
+ created which is indexed by the value supplied by the
1301
+ set-request in addition to the value of smLaunchOwner and
1302
+ smLaunchName. An unused value can be obtained by reading
1303
+ the smLaunchRunIndexNext object.
1304
+
1305
+ Setting this object to the special value 0 will start
1306
+ the script with a self-generated smRunIndex value. The
1307
+ consequence is that the script invoker has no reliable
1308
+ way to determine the smRunIndex value for this script
1309
+ invocation and that the invoker has therefore no way
1310
+ to obtain the results from this script invocation. The
1311
+ special value 0 is however useful for scheduled script
1312
+ invocations.
1313
+
1314
+ If this object is set, the following checks must be
1315
+
1316
+
1317
+ performed:
1318
+
1319
+ 1) The value of the smLaunchOperStatus object in this
1320
+ entry of the smLaunchTable must be `enabled'.
1321
+ 2) The values of smLaunchScriptOwner and
1322
+ smLaunchScriptName of this row must identify an
1323
+ existing entry in the smScriptTable.
1324
+ 3) The value of smScriptOperStatus of this entry must
1325
+ be `enabled'.
1326
+ 4) The principal performing the set operation must have
1327
+ read access to the script. This must be checked by
1328
+ calling the isAccessAllowed abstract service interface
1329
+ defined in RFC 2271 on the row in the smScriptTable
1330
+ identified by smLaunchScriptOwner and smLaunchScriptName.
1331
+ The isAccessAllowed abstract service interface must be
1332
+ called on all columnar objects in the smScriptTable with
1333
+ a MAX-ACCESS value different than `not-accessible'. The
1334
+ test fails as soon as a call indicates that access is
1335
+ not allowed.
1336
+ 5) If the value provided by the set operation is not 0,
1337
+ a check must be made that the value is currently not
1338
+ in use. Otherwise, if the value provided by the set
1339
+ operation is 0, a suitable unused value must be
1340
+ generated.
1341
+ 6) The number of currently executing scripts invoked
1342
+ from this smLaunchTable entry must be less than
1343
+ smLaunchMaxRunning.
1344
+
1345
+ Attempts to start a script will fail with an
1346
+ inconsistentValue error if one of the checks described
1347
+ above fails.
1348
+
1349
+ Otherwise, if all checks have been passed, a new entry
1350
+ in the smRunTable will be created indexed by smLaunchOwner,
1351
+ smLaunchName and the new value for smRunIndex. The value
1352
+ of smLaunchArgument will be copied into smRunArgument,
1353
+ the value of smLaunchLifeTime will be copied to
1354
+ smRunLifeTime, and the value of smLaunchExpireTime
1355
+ will be copied to smRunExpireTime.
1356
+
1357
+ The smRunStartTime will be set to the current time and
1358
+ the smRunState will be set to `initializing' before the
1359
+ script execution is initiated in the appropriate runtime
1360
+ system.
1361
+
1362
+ Note that the data type and the range of this object must
1363
+ be consistent with the smRunIndex object. Since this
1364
+ object might be written from the scheduling MIB, the
1365
+
1366
+
1367
+ data type Integer32 rather than Unsigned32 is used.""",
1368
+ }, # column
1369
+ "smLaunchControl" : {
1370
+ "nodetype" : "column",
1371
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1372
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.11",
1373
+ "status" : "current",
1374
+ "syntax" : {
1375
+ "type" : {
1376
+ "basetype" : "Enumeration",
1377
+ "abort" : {
1378
+ "nodetype" : "namednumber",
1379
+ "number" : "1"
1380
+ },
1381
+ "suspend" : {
1382
+ "nodetype" : "namednumber",
1383
+ "number" : "2"
1384
+ },
1385
+ "resume" : {
1386
+ "nodetype" : "namednumber",
1387
+ "number" : "3"
1388
+ },
1389
+ "nop" : {
1390
+ "nodetype" : "namednumber",
1391
+ "number" : "4"
1392
+ },
1393
+ },
1394
+ },
1395
+ "access" : "readwrite",
1396
+ "default" : "nop",
1397
+ "description" :
1398
+ """This object is used to request a state change for all
1399
+ running scripts in the smRunTable that were started from
1400
+ this row in the smLaunchTable.
1401
+
1402
+ Setting this object to abort(1), suspend(2) or resume(3)
1403
+ will set the smRunControl object of all applicable rows
1404
+ in the smRunTable to abort(1), suspend(2) or resume(3)
1405
+ respectively. The phrase `applicable rows' means the set of
1406
+ rows which were created from this entry in the smLaunchTable
1407
+ and whose value of smRunState allows the corresponding
1408
+ state change as described in the definition of the
1409
+ smRunControl object. Setting this object to nop(4) has no
1410
+ effect.
1411
+
1412
+ Attempts to set this object lead to an inconsistentValue
1413
+ error only if all implicated sets on all the applicable
1414
+ rows lead to inconsistentValue errors. It is not allowed
1415
+ to return an inconsistentValue error if at least one state
1416
+ change on one of the applicable rows was successful.""",
1417
+ }, # column
1418
+ "smLaunchAdminStatus" : {
1419
+ "nodetype" : "column",
1420
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1421
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.12",
1422
+ "status" : "current",
1423
+ "syntax" : {
1424
+ "type" : {
1425
+ "basetype" : "Enumeration",
1426
+ "enabled" : {
1427
+ "nodetype" : "namednumber",
1428
+ "number" : "1"
1429
+ },
1430
+ "disabled" : {
1431
+ "nodetype" : "namednumber",
1432
+ "number" : "2"
1433
+ },
1434
+ "autostart" : {
1435
+ "nodetype" : "namednumber",
1436
+ "number" : "3"
1437
+ },
1438
+ },
1439
+ },
1440
+ "access" : "readwrite",
1441
+ "default" : "disabled",
1442
+ "description" :
1443
+ """The value of this object indicates the desired status of
1444
+ this launch table entry. The values enabled(1) and
1445
+ autostart(3) both indicate that the launch table entry
1446
+
1447
+
1448
+ should transition into the operational enabled(1) state as
1449
+ soon as the associated script table entry is enabled(1).
1450
+
1451
+ The value autostart(3) further indicates that the script
1452
+ is started automatically by conceptually writing the
1453
+ value 0 into the associated smLaunchStart object during
1454
+ the transition from the `disabled' into the `enabled'
1455
+ operational state. This is useful for scripts that are
1456
+ to be launched on system start-up.""",
1457
+ }, # column
1458
+ "smLaunchOperStatus" : {
1459
+ "nodetype" : "column",
1460
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1461
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.13",
1462
+ "status" : "current",
1463
+ "syntax" : {
1464
+ "type" : {
1465
+ "basetype" : "Enumeration",
1466
+ "enabled" : {
1467
+ "nodetype" : "namednumber",
1468
+ "number" : "1"
1469
+ },
1470
+ "disabled" : {
1471
+ "nodetype" : "namednumber",
1472
+ "number" : "2"
1473
+ },
1474
+ "expired" : {
1475
+ "nodetype" : "namednumber",
1476
+ "number" : "3"
1477
+ },
1478
+ },
1479
+ },
1480
+ "access" : "readonly",
1481
+ "default" : "disabled",
1482
+ "description" :
1483
+ """The value of this object indicates the actual status of
1484
+ this launch table entry. The smLaunchOperStatus object
1485
+ may have the following values:
1486
+
1487
+ - `enabled' indicates that the launch table entry is
1488
+ available and can be used to start scripts.
1489
+
1490
+ - `disabled' indicates that the launch table entry can
1491
+ not be used to start scripts.
1492
+
1493
+ - `expired' indicates that the launch table entry can
1494
+ not be used to start scripts and will disappear as
1495
+ soon as all smRunTable entries associated with this
1496
+ launch table entry have disappeared.
1497
+
1498
+ The value `enabled' requires that the smLaunchRowStatus
1499
+ object is active. The value `disabled' requires that there
1500
+ are no entries in the smRunTable associated with this
1501
+ smLaunchTable entry.""",
1502
+ }, # column
1503
+ "smLaunchRunIndexNext" : {
1504
+ "nodetype" : "column",
1505
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1506
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.14",
1507
+ "status" : "current",
1508
+ "syntax" : {
1509
+ "type" : {
1510
+ "basetype" : "Integer32",
1511
+ "ranges" : [
1512
+ {
1513
+ "min" : "1",
1514
+ "max" : "2147483647"
1515
+ },
1516
+ ],
1517
+ "range" : {
1518
+ "min" : "1",
1519
+ "max" : "2147483647"
1520
+ },
1521
+ },
1522
+ },
1523
+ "access" : "readonly",
1524
+ "description" :
1525
+ """This variable is used for creating rows in the smRunTable.
1526
+ The value of this variable is a currently unused value
1527
+ for smRunIndex, which can be written into the smLaunchStart
1528
+ object associated with this row to launch a script.
1529
+
1530
+ The value returned when reading this variable must be unique
1531
+ for the smLaunchOwner and smLaunchName associated with this
1532
+ row. Subsequent attempts to read this variable must return
1533
+ different values.
1534
+
1535
+ This variable will return the special value 0 if no new rows
1536
+ can be created.
1537
+
1538
+ Note that the data type and the range of this object must be
1539
+ consistent with the definition of smRunIndex.""",
1540
+ }, # column
1541
+ "smLaunchStorageType" : {
1542
+ "nodetype" : "column",
1543
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1544
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.15",
1545
+ "status" : "current",
1546
+ "syntax" : {
1547
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1548
+ },
1549
+ "access" : "readwrite",
1550
+ "default" : "volatile",
1551
+ "description" :
1552
+ """This object defines if this row is kept in volatile storage
1553
+ and lost upon reboot or if this row is backed up by stable
1554
+ storage.
1555
+
1556
+ The value of smLaunchStorageType is only meaningful if the
1557
+ value of the corresponding RowStatus object is active.
1558
+
1559
+ If smLaunchStorageType has the value permanent(4), then all
1560
+ objects whose MAX-ACCESS value is read-create must be
1561
+ writable, with the exception of the smLaunchStorageType and
1562
+ smLaunchRowStatus objects, which shall be read-only.""",
1563
+ }, # column
1564
+ "smLaunchRowStatus" : {
1565
+ "nodetype" : "column",
1566
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1567
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.16",
1568
+ "status" : "current",
1569
+ "syntax" : {
1570
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1571
+ },
1572
+ "access" : "readwrite",
1573
+ "description" :
1574
+ """A control that allows entries to be added and removed from
1575
+ this table.
1576
+
1577
+ Attempts to `destroy' a row or to set a row `notInService'
1578
+ while the smLaunchOperStatus is `enabled' will result in
1579
+ an inconsistentValue error.
1580
+
1581
+
1582
+
1583
+ Attempts to `destroy' a row or to set a row `notInService'
1584
+ where the value of the smLaunchStorageType object is
1585
+ `permanent' or `readOnly' will result in an
1586
+ inconsistentValue error.
1587
+
1588
+ The value of this object has no effect on whether other
1589
+ objects in this conceptual row can be modified.""",
1590
+ }, # column
1591
+ "smLaunchError" : {
1592
+ "nodetype" : "column",
1593
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1594
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.17",
1595
+ "status" : "current",
1596
+ "syntax" : {
1597
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1598
+ },
1599
+ "access" : "readonly",
1600
+ "default" : "",
1601
+ "description" :
1602
+ """This object contains a descriptive error message if an
1603
+ attempt to launch a script fails. Implementations must reset
1604
+ the error message to a zero-length string when a new attempt
1605
+ to launch a script is started.""",
1606
+ }, # column
1607
+ "smLaunchLastChange" : {
1608
+ "nodetype" : "column",
1609
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1610
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.18",
1611
+ "status" : "current",
1612
+ "syntax" : {
1613
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1614
+ },
1615
+ "access" : "readonly",
1616
+ "default" : "0x0000000000000000",
1617
+ "description" :
1618
+ """The date and time when this launch table entry was last
1619
+ modified. The value '0000000000000000'H is returned if
1620
+ the launch table entry has not yet been modified.
1621
+
1622
+ Note that a change of smLaunchStart, smLaunchControl,
1623
+ smLaunchRunIndexNext, smLaunchRowExpireTime, or the
1624
+ resetting of smLaunchError is not considered a change
1625
+ of this launch table entry.""",
1626
+ }, # column
1627
+ "smLaunchRowExpireTime" : {
1628
+ "nodetype" : "column",
1629
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1630
+ "oid" : "1.3.6.1.2.1.64.1.4.1.1.19",
1631
+ "status" : "current",
1632
+ "syntax" : {
1633
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1634
+ },
1635
+ "access" : "readwrite",
1636
+ "default" : "2147483647",
1637
+ "units" : "centi-seconds",
1638
+ "description" :
1639
+ """The value of this object specifies how long this row remains
1640
+ in the `enabled' or `disabled' operational state. The value
1641
+ reported by this object ticks backwards. When the value
1642
+ reaches 0, it stops ticking backward and the row is
1643
+ deleted if there are no smRunTable entries associated with
1644
+
1645
+
1646
+ this smLaunchTable entry. Otherwise, the smLaunchOperStatus
1647
+ changes to `expired' and the row deletion is deferred
1648
+ until there are no smRunTable entries associated with this
1649
+ smLaunchTable entry.
1650
+
1651
+ The smLaunchRowExpireTime will not tick backwards if it is
1652
+ set to its maximum value (2147483647). In other words,
1653
+ setting this object to its maximum value turns the timer
1654
+ off.
1655
+
1656
+ The value of this object may be set in order to increase
1657
+ or reduce the remaining time that the launch table entry
1658
+ may be used. Setting the value to 0 will cause an immediate
1659
+ row deletion or transition into the `expired' operational
1660
+ state.
1661
+
1662
+ It is not possible to set this object while the operational
1663
+ status is `expired'. Attempts to modify this object while
1664
+ the operational status is `expired' leads to an
1665
+ inconsistentValue error.
1666
+
1667
+ Note that the timer ticks backwards independent of the
1668
+ operational state of the launch table entry.""",
1669
+ }, # column
1670
+ "smRunTable" : {
1671
+ "nodetype" : "table",
1672
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1673
+ "oid" : "1.3.6.1.2.1.64.1.4.2",
1674
+ "status" : "current",
1675
+ "description" :
1676
+ """This table lists and describes scripts that are currently
1677
+ running or have been running in the past.""",
1678
+ }, # table
1679
+ "smRunEntry" : {
1680
+ "nodetype" : "row",
1681
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1682
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1",
1683
+ "status" : "current",
1684
+ "linkage" : [
1685
+ "smLaunchOwner",
1686
+ "smLaunchName",
1687
+ "smRunIndex",
1688
+ ],
1689
+ "description" :
1690
+ """An entry describing a particular running or finished
1691
+ script.""",
1692
+ }, # row
1693
+ "smRunIndex" : {
1694
+ "nodetype" : "column",
1695
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1696
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.1",
1697
+ "status" : "current",
1698
+ "syntax" : {
1699
+ "type" : {
1700
+ "basetype" : "Integer32",
1701
+ "ranges" : [
1702
+ {
1703
+ "min" : "1",
1704
+ "max" : "2147483647"
1705
+ },
1706
+ ],
1707
+ "range" : {
1708
+ "min" : "1",
1709
+ "max" : "2147483647"
1710
+ },
1711
+ },
1712
+ },
1713
+ "access" : "noaccess",
1714
+ "description" :
1715
+ """The locally arbitrary, but unique identifier associated
1716
+ with this running or finished script. This value must be
1717
+ unique for all rows in the smRunTable with the same
1718
+ smLaunchOwner and smLaunchName.
1719
+
1720
+ Note that the data type and the range of this object must
1721
+ be consistent with the definition of smLaunchRunIndexNext
1722
+ and smLaunchStart.""",
1723
+ }, # column
1724
+ "smRunArgument" : {
1725
+ "nodetype" : "column",
1726
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1727
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.2",
1728
+ "status" : "current",
1729
+ "syntax" : {
1730
+ "type" : { "module" :"", "name" : "OctetString"},
1731
+ },
1732
+ "access" : "readonly",
1733
+ "default" : "",
1734
+ "description" :
1735
+ """The argument supplied to the script when it started.""",
1736
+ }, # column
1737
+ "smRunStartTime" : {
1738
+ "nodetype" : "column",
1739
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1740
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.3",
1741
+ "status" : "current",
1742
+ "syntax" : {
1743
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1744
+ },
1745
+ "access" : "readonly",
1746
+ "default" : "0x0000000000000000",
1747
+ "description" :
1748
+ """The date and time when the execution started. The value
1749
+ '0000000000000000'H is returned if the script has not
1750
+ started yet.""",
1751
+ }, # column
1752
+ "smRunEndTime" : {
1753
+ "nodetype" : "column",
1754
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1755
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.4",
1756
+ "status" : "current",
1757
+ "syntax" : {
1758
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1759
+ },
1760
+ "access" : "readonly",
1761
+ "default" : "0x0000000000000000",
1762
+ "description" :
1763
+ """The date and time when the execution terminated. The value
1764
+ '0000000000000000'H is returned if the script has not
1765
+ terminated yet.""",
1766
+ }, # column
1767
+ "smRunLifeTime" : {
1768
+ "nodetype" : "column",
1769
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1770
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.5",
1771
+ "status" : "current",
1772
+ "syntax" : {
1773
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1774
+ },
1775
+ "access" : "readwrite",
1776
+ "units" : "centi-seconds",
1777
+ "description" :
1778
+ """This object specifies how long the script can execute.
1779
+ This object returns the remaining time that the script
1780
+ may run. The object is initialized with the value of the
1781
+ associated smLaunchLifeTime object and ticks backwards.
1782
+ The script is aborted immediately when the value reaches 0.
1783
+
1784
+ The value of this object may be set in order to increase or
1785
+ reduce the remaining time that the script may run. Setting
1786
+ this value to 0 will abort script execution immediately,
1787
+ and, if the value of smRunExpireTime is also 0, will remove
1788
+ this entry from the smRunTable once it has terminated.
1789
+
1790
+ If smRunLifeTime is set to its maximum value (2147483647),
1791
+ either by a set operation or by its initialization from the
1792
+ smLaunchLifeTime object, then it will not tick backwards.
1793
+ A running script with a maximum smRunLifeTime value will
1794
+ thus never be terminated with a `lifeTimeExceeded' exit
1795
+ code.
1796
+
1797
+ The value of smRunLifeTime reflects the real-time execution
1798
+ time as seen by the outside world. The value of this object
1799
+ will always be 0 for a script that finished execution, that
1800
+ is smRunState has the value `terminated'.
1801
+
1802
+ The value of smRunLifeTime does not change while a script
1803
+ is suspended, that is smRunState has the value `suspended'.
1804
+ Note that this does not affect set operations. It is legal
1805
+ to modify smRunLifeTime via set operations while a script
1806
+ is suspended.""",
1807
+ }, # column
1808
+ "smRunExpireTime" : {
1809
+ "nodetype" : "column",
1810
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1811
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.6",
1812
+ "status" : "current",
1813
+ "syntax" : {
1814
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1815
+ },
1816
+ "access" : "readwrite",
1817
+ "units" : "centi-seconds",
1818
+ "description" :
1819
+ """The value of this object specifies how long this row can
1820
+ exist in the smRunTable after the script has terminated.
1821
+ This object returns the remaining time that the row may
1822
+ exist before it is aged out. The object is initialized with
1823
+ the value of the associated smLaunchExpireTime object and
1824
+ ticks backwards. The entry in the smRunTable is destroyed
1825
+ when the value reaches 0 and the smRunState has the value
1826
+ `terminated'.
1827
+
1828
+ The value of this object may be set in order to increase or
1829
+ reduce the remaining time that the row may exist. Setting
1830
+ the value to 0 will destroy this entry as soon as the
1831
+ smRunState has the value `terminated'.""",
1832
+ }, # column
1833
+ "smRunExitCode" : {
1834
+ "nodetype" : "column",
1835
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1836
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.7",
1837
+ "status" : "current",
1838
+ "syntax" : {
1839
+ "type" : {
1840
+ "basetype" : "Enumeration",
1841
+ "noError" : {
1842
+ "nodetype" : "namednumber",
1843
+ "number" : "1"
1844
+ },
1845
+ "halted" : {
1846
+ "nodetype" : "namednumber",
1847
+ "number" : "2"
1848
+ },
1849
+ "lifeTimeExceeded" : {
1850
+ "nodetype" : "namednumber",
1851
+ "number" : "3"
1852
+ },
1853
+ "noResourcesLeft" : {
1854
+ "nodetype" : "namednumber",
1855
+ "number" : "4"
1856
+ },
1857
+ "languageError" : {
1858
+ "nodetype" : "namednumber",
1859
+ "number" : "5"
1860
+ },
1861
+ "runtimeError" : {
1862
+ "nodetype" : "namednumber",
1863
+ "number" : "6"
1864
+ },
1865
+ "invalidArgument" : {
1866
+ "nodetype" : "namednumber",
1867
+ "number" : "7"
1868
+ },
1869
+ "securityViolation" : {
1870
+ "nodetype" : "namednumber",
1871
+ "number" : "8"
1872
+ },
1873
+ "genericError" : {
1874
+ "nodetype" : "namednumber",
1875
+ "number" : "9"
1876
+ },
1877
+ },
1878
+ },
1879
+ "access" : "readonly",
1880
+ "default" : "noError",
1881
+ "description" :
1882
+ """The value of this object indicates the reason why a
1883
+ script finished execution. The smRunExitCode code may have
1884
+ one of the following values:
1885
+
1886
+ - `noError', which indicates that the script completed
1887
+ successfully without errors;
1888
+
1889
+ - `halted', which indicates that the script was halted
1890
+ by a request from an authorized manager;
1891
+
1892
+ - `lifeTimeExceeded', which indicates that the script
1893
+ exited because a time limit was exceeded;
1894
+
1895
+
1896
+ - `noResourcesLeft', which indicates that the script
1897
+ exited because it ran out of resources (e.g. memory);
1898
+
1899
+ - `languageError', which indicates that the script exited
1900
+ because of a language error (e.g. a syntax error in an
1901
+ interpreted language);
1902
+
1903
+ - `runtimeError', which indicates that the script exited
1904
+ due to a runtime error (e.g. a division by zero);
1905
+
1906
+ - `invalidArgument', which indicates that the script could
1907
+ not be run because of invalid script arguments;
1908
+
1909
+ - `securityViolation', which indicates that the script
1910
+ exited due to a security violation;
1911
+
1912
+ - `genericError', which indicates that the script exited
1913
+ for an unspecified reason.
1914
+
1915
+ If the script has not yet begun running, or is currently
1916
+ running, the value will be `noError'.""",
1917
+ }, # column
1918
+ "smRunResult" : {
1919
+ "nodetype" : "column",
1920
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1921
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.8",
1922
+ "status" : "current",
1923
+ "syntax" : {
1924
+ "type" : { "module" :"", "name" : "OctetString"},
1925
+ },
1926
+ "access" : "readonly",
1927
+ "default" : "",
1928
+ "description" :
1929
+ """The result value produced by the running script. Note that
1930
+ the result may change while the script is executing.""",
1931
+ }, # column
1932
+ "smRunControl" : {
1933
+ "nodetype" : "column",
1934
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1935
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.9",
1936
+ "status" : "current",
1937
+ "syntax" : {
1938
+ "type" : {
1939
+ "basetype" : "Enumeration",
1940
+ "abort" : {
1941
+ "nodetype" : "namednumber",
1942
+ "number" : "1"
1943
+ },
1944
+ "suspend" : {
1945
+ "nodetype" : "namednumber",
1946
+ "number" : "2"
1947
+ },
1948
+ "resume" : {
1949
+ "nodetype" : "namednumber",
1950
+ "number" : "3"
1951
+ },
1952
+ "nop" : {
1953
+ "nodetype" : "namednumber",
1954
+ "number" : "4"
1955
+ },
1956
+ },
1957
+ },
1958
+ "access" : "readwrite",
1959
+ "default" : "nop",
1960
+ "description" :
1961
+ """The value of this object indicates the desired status of the
1962
+ script execution defined by this row.
1963
+
1964
+ Setting this object to `abort' will abort execution if the
1965
+
1966
+
1967
+ value of smRunState is `initializing', `executing',
1968
+ `suspending', `suspended' or `resuming'. Setting this object
1969
+ to `abort' when the value of smRunState is `aborting' or
1970
+ `terminated', or if the implementation can determine that
1971
+ the attempt to abort the execution would fail, will result
1972
+ in an inconsistentValue error.
1973
+
1974
+ Setting this object to `suspend' will suspend execution
1975
+ if the value of smRunState is `executing'. Setting this
1976
+ object to `suspend' will cause an inconsistentValue error
1977
+ if the value of smRunState is not `executing' or if the
1978
+ implementation can determine that the attempt to suspend
1979
+ the execution would fail.
1980
+
1981
+ Setting this object to `resume' will resume execution
1982
+ if the value of smRunState is `suspending' or
1983
+ `suspended'. Setting this object to `resume' will cause an
1984
+ inconsistentValue error if the value of smRunState is
1985
+ not `suspended' or if the implementation can determine
1986
+ that the attempt to resume the execution would fail.
1987
+
1988
+ Setting this object to nop(4) has no effect.""",
1989
+ }, # column
1990
+ "smRunState" : {
1991
+ "nodetype" : "column",
1992
+ "moduleName" : "DISMAN-SCRIPT-MIB",
1993
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.10",
1994
+ "status" : "current",
1995
+ "syntax" : {
1996
+ "type" : {
1997
+ "basetype" : "Enumeration",
1998
+ "initializing" : {
1999
+ "nodetype" : "namednumber",
2000
+ "number" : "1"
2001
+ },
2002
+ "executing" : {
2003
+ "nodetype" : "namednumber",
2004
+ "number" : "2"
2005
+ },
2006
+ "suspending" : {
2007
+ "nodetype" : "namednumber",
2008
+ "number" : "3"
2009
+ },
2010
+ "suspended" : {
2011
+ "nodetype" : "namednumber",
2012
+ "number" : "4"
2013
+ },
2014
+ "resuming" : {
2015
+ "nodetype" : "namednumber",
2016
+ "number" : "5"
2017
+ },
2018
+ "aborting" : {
2019
+ "nodetype" : "namednumber",
2020
+ "number" : "6"
2021
+ },
2022
+ "terminated" : {
2023
+ "nodetype" : "namednumber",
2024
+ "number" : "7"
2025
+ },
2026
+ },
2027
+ },
2028
+ "access" : "readonly",
2029
+ "description" :
2030
+ """The value of this object indicates the script's execution
2031
+ state. If the script has been invoked but has not yet
2032
+ begun execution, the value will be `initializing'. If the
2033
+ script is running, the value will be `executing'.
2034
+
2035
+ A running script which received a request to suspend
2036
+ execution first transitions into a temporary `suspending'
2037
+ state. The temporary `suspending' state changes to
2038
+ `suspended' when the script has actually been suspended. The
2039
+ temporary `suspending' state changes back to `executing' if
2040
+
2041
+
2042
+ the attempt to suspend the running script fails.
2043
+
2044
+ A suspended script which received a request to resume
2045
+ execution first transitions into a temporary `resuming'
2046
+ state. The temporary `resuming' state changes to `running'
2047
+ when the script has actually been resumed. The temporary
2048
+ `resuming' state changes back to `suspended' if the attempt
2049
+ to resume the suspended script fails.
2050
+
2051
+ A script which received a request to abort execution but
2052
+ which is still running first transitions into a temporary
2053
+ `aborting' state.
2054
+
2055
+ A script which has finished its execution is `terminated'.""",
2056
+ }, # column
2057
+ "smRunError" : {
2058
+ "nodetype" : "column",
2059
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2060
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.11",
2061
+ "status" : "current",
2062
+ "syntax" : {
2063
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2064
+ },
2065
+ "access" : "readonly",
2066
+ "default" : "",
2067
+ "description" :
2068
+ """This object contains a descriptive error message if the
2069
+ script startup or execution raised an abnormal condition.
2070
+ An implementation must store a descriptive error message
2071
+ in this object if the script exits with the smRunExitCode
2072
+ `genericError'.""",
2073
+ }, # column
2074
+ "smRunResultTime" : {
2075
+ "nodetype" : "column",
2076
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2077
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.12",
2078
+ "status" : "current",
2079
+ "syntax" : {
2080
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
2081
+ },
2082
+ "access" : "readonly",
2083
+ "default" : "0x0000000000000000",
2084
+ "description" :
2085
+ """The date and time when the smRunResult was last updated.
2086
+ The value '0000000000000000'H is returned if smRunResult
2087
+ has not yet been updated after the creation of this
2088
+ smRunTable entry.""",
2089
+ }, # column
2090
+ "smRunErrorTime" : {
2091
+ "nodetype" : "column",
2092
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2093
+ "oid" : "1.3.6.1.2.1.64.1.4.2.1.13",
2094
+ "status" : "current",
2095
+ "syntax" : {
2096
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
2097
+ },
2098
+ "access" : "readonly",
2099
+ "default" : "0x0000000000000000",
2100
+ "description" :
2101
+ """The date and time when the smRunError was last updated.
2102
+ The value '0000000000000000'H is returned if smRunError
2103
+
2104
+
2105
+ has not yet been updated after the creation of this
2106
+ smRunTable entry.""",
2107
+ }, # column
2108
+ "smNotifications" : {
2109
+ "nodetype" : "node",
2110
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2111
+ "oid" : "1.3.6.1.2.1.64.2",
2112
+ }, # node
2113
+ "smTraps" : {
2114
+ "nodetype" : "node",
2115
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2116
+ "oid" : "1.3.6.1.2.1.64.2.0",
2117
+ }, # node
2118
+ "smConformance" : {
2119
+ "nodetype" : "node",
2120
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2121
+ "oid" : "1.3.6.1.2.1.64.3",
2122
+ }, # node
2123
+ "smCompliances" : {
2124
+ "nodetype" : "node",
2125
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2126
+ "oid" : "1.3.6.1.2.1.64.3.1",
2127
+ }, # node
2128
+ "smGroups" : {
2129
+ "nodetype" : "node",
2130
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2131
+ "oid" : "1.3.6.1.2.1.64.3.2",
2132
+ }, # node
2133
+ }, # nodes
2134
+
2135
+ "notifications" : {
2136
+ "smScriptAbort" : {
2137
+ "nodetype" : "notification",
2138
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2139
+ "oid" : "1.3.6.1.2.1.64.2.0.1",
2140
+ "status" : "current",
2141
+ "objects" : {
2142
+ "smRunExitCode" : {
2143
+ "nodetype" : "object",
2144
+ "module" : "DISMAN-SCRIPT-MIB"
2145
+ },
2146
+ "smRunEndTime" : {
2147
+ "nodetype" : "object",
2148
+ "module" : "DISMAN-SCRIPT-MIB"
2149
+ },
2150
+ "smRunError" : {
2151
+ "nodetype" : "object",
2152
+ "module" : "DISMAN-SCRIPT-MIB"
2153
+ },
2154
+ },
2155
+ "description" :
2156
+ """This notification is generated whenever a running script
2157
+ terminates with an smRunExitCode unequal to `noError'.""",
2158
+ }, # notification
2159
+ "smScriptResult" : {
2160
+ "nodetype" : "notification",
2161
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2162
+ "oid" : "1.3.6.1.2.1.64.2.0.2",
2163
+ "status" : "current",
2164
+ "objects" : {
2165
+ "smRunResult" : {
2166
+ "nodetype" : "object",
2167
+ "module" : "DISMAN-SCRIPT-MIB"
2168
+ },
2169
+ },
2170
+ "description" :
2171
+ """This notification can be used by scripts to notify other
2172
+ management applications about results produced by the
2173
+ script.
2174
+
2175
+ This notification is not automatically generated by the
2176
+ Script MIB implementation. It is the responsibility of
2177
+ the executing script to emit this notification where it
2178
+ is appropriate to do so.""",
2179
+ }, # notification
2180
+ "smScriptException" : {
2181
+ "nodetype" : "notification",
2182
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2183
+ "oid" : "1.3.6.1.2.1.64.2.0.3",
2184
+ "status" : "current",
2185
+ "objects" : {
2186
+ "smRunError" : {
2187
+ "nodetype" : "object",
2188
+ "module" : "DISMAN-SCRIPT-MIB"
2189
+ },
2190
+ },
2191
+ "description" :
2192
+ """This notification can be used by scripts to notify other
2193
+ management applications about script errors.
2194
+
2195
+ This notification is not automatically generated by the
2196
+ Script MIB implementation. It is the responsibility of
2197
+ the executing script or the runtime system to emit this
2198
+ notification where it is appropriate to do so.""",
2199
+ }, # notification
2200
+ }, # notifications
2201
+
2202
+ "groups" : {
2203
+ "smLanguageGroup" : {
2204
+ "nodetype" : "group",
2205
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2206
+ "oid" : "1.3.6.1.2.1.64.3.2.1",
2207
+ "status" : "current",
2208
+ "members" : {
2209
+ "smLangLanguage" : {
2210
+ "nodetype" : "member",
2211
+ "module" : "DISMAN-SCRIPT-MIB"
2212
+ },
2213
+ "smLangVersion" : {
2214
+ "nodetype" : "member",
2215
+ "module" : "DISMAN-SCRIPT-MIB"
2216
+ },
2217
+ "smLangVendor" : {
2218
+ "nodetype" : "member",
2219
+ "module" : "DISMAN-SCRIPT-MIB"
2220
+ },
2221
+ "smLangRevision" : {
2222
+ "nodetype" : "member",
2223
+ "module" : "DISMAN-SCRIPT-MIB"
2224
+ },
2225
+ "smLangDescr" : {
2226
+ "nodetype" : "member",
2227
+ "module" : "DISMAN-SCRIPT-MIB"
2228
+ },
2229
+ "smExtsnExtension" : {
2230
+ "nodetype" : "member",
2231
+ "module" : "DISMAN-SCRIPT-MIB"
2232
+ },
2233
+ "smExtsnVersion" : {
2234
+ "nodetype" : "member",
2235
+ "module" : "DISMAN-SCRIPT-MIB"
2236
+ },
2237
+ "smExtsnVendor" : {
2238
+ "nodetype" : "member",
2239
+ "module" : "DISMAN-SCRIPT-MIB"
2240
+ },
2241
+ "smExtsnRevision" : {
2242
+ "nodetype" : "member",
2243
+ "module" : "DISMAN-SCRIPT-MIB"
2244
+ },
2245
+ "smExtsnDescr" : {
2246
+ "nodetype" : "member",
2247
+ "module" : "DISMAN-SCRIPT-MIB"
2248
+ },
2249
+ }, # members
2250
+ "description" :
2251
+ """A collection of objects providing information about the
2252
+ capabilities of the scripting engine.""",
2253
+ }, # group
2254
+ "smScriptGroup" : {
2255
+ "nodetype" : "group",
2256
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2257
+ "oid" : "1.3.6.1.2.1.64.3.2.2",
2258
+ "status" : "deprecated",
2259
+ "members" : {
2260
+ "smScriptDescr" : {
2261
+ "nodetype" : "member",
2262
+ "module" : "DISMAN-SCRIPT-MIB"
2263
+ },
2264
+ "smScriptLanguage" : {
2265
+ "nodetype" : "member",
2266
+ "module" : "DISMAN-SCRIPT-MIB"
2267
+ },
2268
+ "smScriptSource" : {
2269
+ "nodetype" : "member",
2270
+ "module" : "DISMAN-SCRIPT-MIB"
2271
+ },
2272
+ "smScriptAdminStatus" : {
2273
+ "nodetype" : "member",
2274
+ "module" : "DISMAN-SCRIPT-MIB"
2275
+ },
2276
+ "smScriptOperStatus" : {
2277
+ "nodetype" : "member",
2278
+ "module" : "DISMAN-SCRIPT-MIB"
2279
+ },
2280
+ "smScriptStorageType" : {
2281
+ "nodetype" : "member",
2282
+ "module" : "DISMAN-SCRIPT-MIB"
2283
+ },
2284
+ "smScriptRowStatus" : {
2285
+ "nodetype" : "member",
2286
+ "module" : "DISMAN-SCRIPT-MIB"
2287
+ },
2288
+ }, # members
2289
+ "description" :
2290
+ """A collection of objects providing information about
2291
+ installed scripts.""",
2292
+ }, # group
2293
+ "smCodeGroup" : {
2294
+ "nodetype" : "group",
2295
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2296
+ "oid" : "1.3.6.1.2.1.64.3.2.3",
2297
+ "status" : "current",
2298
+ "members" : {
2299
+ "smCodeText" : {
2300
+ "nodetype" : "member",
2301
+ "module" : "DISMAN-SCRIPT-MIB"
2302
+ },
2303
+ "smCodeRowStatus" : {
2304
+ "nodetype" : "member",
2305
+ "module" : "DISMAN-SCRIPT-MIB"
2306
+ },
2307
+ }, # members
2308
+ "description" :
2309
+ """A collection of objects used to download or modify scripts
2310
+ by using SNMP set requests.""",
2311
+ }, # group
2312
+ "smLaunchGroup" : {
2313
+ "nodetype" : "group",
2314
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2315
+ "oid" : "1.3.6.1.2.1.64.3.2.4",
2316
+ "status" : "deprecated",
2317
+ "members" : {
2318
+ "smLaunchScriptOwner" : {
2319
+ "nodetype" : "member",
2320
+ "module" : "DISMAN-SCRIPT-MIB"
2321
+ },
2322
+ "smLaunchScriptName" : {
2323
+ "nodetype" : "member",
2324
+ "module" : "DISMAN-SCRIPT-MIB"
2325
+ },
2326
+ "smLaunchArgument" : {
2327
+ "nodetype" : "member",
2328
+ "module" : "DISMAN-SCRIPT-MIB"
2329
+ },
2330
+ "smLaunchMaxRunning" : {
2331
+ "nodetype" : "member",
2332
+ "module" : "DISMAN-SCRIPT-MIB"
2333
+ },
2334
+ "smLaunchMaxCompleted" : {
2335
+ "nodetype" : "member",
2336
+ "module" : "DISMAN-SCRIPT-MIB"
2337
+ },
2338
+ "smLaunchLifeTime" : {
2339
+ "nodetype" : "member",
2340
+ "module" : "DISMAN-SCRIPT-MIB"
2341
+ },
2342
+ "smLaunchExpireTime" : {
2343
+ "nodetype" : "member",
2344
+ "module" : "DISMAN-SCRIPT-MIB"
2345
+ },
2346
+ "smLaunchStart" : {
2347
+ "nodetype" : "member",
2348
+ "module" : "DISMAN-SCRIPT-MIB"
2349
+ },
2350
+ "smLaunchControl" : {
2351
+ "nodetype" : "member",
2352
+ "module" : "DISMAN-SCRIPT-MIB"
2353
+ },
2354
+ "smLaunchAdminStatus" : {
2355
+ "nodetype" : "member",
2356
+ "module" : "DISMAN-SCRIPT-MIB"
2357
+ },
2358
+ "smLaunchOperStatus" : {
2359
+ "nodetype" : "member",
2360
+ "module" : "DISMAN-SCRIPT-MIB"
2361
+ },
2362
+ "smLaunchRunIndexNext" : {
2363
+ "nodetype" : "member",
2364
+ "module" : "DISMAN-SCRIPT-MIB"
2365
+ },
2366
+ "smLaunchStorageType" : {
2367
+ "nodetype" : "member",
2368
+ "module" : "DISMAN-SCRIPT-MIB"
2369
+ },
2370
+ "smLaunchRowStatus" : {
2371
+ "nodetype" : "member",
2372
+ "module" : "DISMAN-SCRIPT-MIB"
2373
+ },
2374
+ }, # members
2375
+ "description" :
2376
+ """A collection of objects providing information about scripts
2377
+ that can be launched.""",
2378
+ }, # group
2379
+ "smRunGroup" : {
2380
+ "nodetype" : "group",
2381
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2382
+ "oid" : "1.3.6.1.2.1.64.3.2.5",
2383
+ "status" : "deprecated",
2384
+ "members" : {
2385
+ "smRunArgument" : {
2386
+ "nodetype" : "member",
2387
+ "module" : "DISMAN-SCRIPT-MIB"
2388
+ },
2389
+ "smRunStartTime" : {
2390
+ "nodetype" : "member",
2391
+ "module" : "DISMAN-SCRIPT-MIB"
2392
+ },
2393
+ "smRunEndTime" : {
2394
+ "nodetype" : "member",
2395
+ "module" : "DISMAN-SCRIPT-MIB"
2396
+ },
2397
+ "smRunLifeTime" : {
2398
+ "nodetype" : "member",
2399
+ "module" : "DISMAN-SCRIPT-MIB"
2400
+ },
2401
+ "smRunExpireTime" : {
2402
+ "nodetype" : "member",
2403
+ "module" : "DISMAN-SCRIPT-MIB"
2404
+ },
2405
+ "smRunExitCode" : {
2406
+ "nodetype" : "member",
2407
+ "module" : "DISMAN-SCRIPT-MIB"
2408
+ },
2409
+ "smRunResult" : {
2410
+ "nodetype" : "member",
2411
+ "module" : "DISMAN-SCRIPT-MIB"
2412
+ },
2413
+ "smRunState" : {
2414
+ "nodetype" : "member",
2415
+ "module" : "DISMAN-SCRIPT-MIB"
2416
+ },
2417
+ "smRunControl" : {
2418
+ "nodetype" : "member",
2419
+ "module" : "DISMAN-SCRIPT-MIB"
2420
+ },
2421
+ "smRunError" : {
2422
+ "nodetype" : "member",
2423
+ "module" : "DISMAN-SCRIPT-MIB"
2424
+ },
2425
+ }, # members
2426
+ "description" :
2427
+ """A collection of objects providing information about running
2428
+ scripts.""",
2429
+ }, # group
2430
+ "smNotificationsGroup" : {
2431
+ "nodetype" : "group",
2432
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2433
+ "oid" : "1.3.6.1.2.1.64.3.2.6",
2434
+ "status" : "deprecated",
2435
+ "members" : {
2436
+ "smScriptAbort" : {
2437
+ "nodetype" : "member",
2438
+ "module" : "DISMAN-SCRIPT-MIB"
2439
+ },
2440
+ "smScriptResult" : {
2441
+ "nodetype" : "member",
2442
+ "module" : "DISMAN-SCRIPT-MIB"
2443
+ },
2444
+ }, # members
2445
+ "description" :
2446
+ """The notifications emitted by the Script MIB.""",
2447
+ }, # group
2448
+ "smScriptGroup2" : {
2449
+ "nodetype" : "group",
2450
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2451
+ "oid" : "1.3.6.1.2.1.64.3.2.7",
2452
+ "status" : "current",
2453
+ "members" : {
2454
+ "smScriptDescr" : {
2455
+ "nodetype" : "member",
2456
+ "module" : "DISMAN-SCRIPT-MIB"
2457
+ },
2458
+ "smScriptLanguage" : {
2459
+ "nodetype" : "member",
2460
+ "module" : "DISMAN-SCRIPT-MIB"
2461
+ },
2462
+ "smScriptSource" : {
2463
+ "nodetype" : "member",
2464
+ "module" : "DISMAN-SCRIPT-MIB"
2465
+ },
2466
+ "smScriptAdminStatus" : {
2467
+ "nodetype" : "member",
2468
+ "module" : "DISMAN-SCRIPT-MIB"
2469
+ },
2470
+ "smScriptOperStatus" : {
2471
+ "nodetype" : "member",
2472
+ "module" : "DISMAN-SCRIPT-MIB"
2473
+ },
2474
+ "smScriptStorageType" : {
2475
+ "nodetype" : "member",
2476
+ "module" : "DISMAN-SCRIPT-MIB"
2477
+ },
2478
+ "smScriptRowStatus" : {
2479
+ "nodetype" : "member",
2480
+ "module" : "DISMAN-SCRIPT-MIB"
2481
+ },
2482
+ "smScriptError" : {
2483
+ "nodetype" : "member",
2484
+ "module" : "DISMAN-SCRIPT-MIB"
2485
+ },
2486
+ "smScriptLastChange" : {
2487
+ "nodetype" : "member",
2488
+ "module" : "DISMAN-SCRIPT-MIB"
2489
+ },
2490
+ }, # members
2491
+ "description" :
2492
+ """A collection of objects providing information about
2493
+ installed scripts.""",
2494
+ }, # group
2495
+ "smLaunchGroup2" : {
2496
+ "nodetype" : "group",
2497
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2498
+ "oid" : "1.3.6.1.2.1.64.3.2.8",
2499
+ "status" : "current",
2500
+ "members" : {
2501
+ "smLaunchScriptOwner" : {
2502
+ "nodetype" : "member",
2503
+ "module" : "DISMAN-SCRIPT-MIB"
2504
+ },
2505
+ "smLaunchScriptName" : {
2506
+ "nodetype" : "member",
2507
+ "module" : "DISMAN-SCRIPT-MIB"
2508
+ },
2509
+ "smLaunchArgument" : {
2510
+ "nodetype" : "member",
2511
+ "module" : "DISMAN-SCRIPT-MIB"
2512
+ },
2513
+ "smLaunchMaxRunning" : {
2514
+ "nodetype" : "member",
2515
+ "module" : "DISMAN-SCRIPT-MIB"
2516
+ },
2517
+ "smLaunchMaxCompleted" : {
2518
+ "nodetype" : "member",
2519
+ "module" : "DISMAN-SCRIPT-MIB"
2520
+ },
2521
+ "smLaunchLifeTime" : {
2522
+ "nodetype" : "member",
2523
+ "module" : "DISMAN-SCRIPT-MIB"
2524
+ },
2525
+ "smLaunchExpireTime" : {
2526
+ "nodetype" : "member",
2527
+ "module" : "DISMAN-SCRIPT-MIB"
2528
+ },
2529
+ "smLaunchStart" : {
2530
+ "nodetype" : "member",
2531
+ "module" : "DISMAN-SCRIPT-MIB"
2532
+ },
2533
+ "smLaunchControl" : {
2534
+ "nodetype" : "member",
2535
+ "module" : "DISMAN-SCRIPT-MIB"
2536
+ },
2537
+ "smLaunchAdminStatus" : {
2538
+ "nodetype" : "member",
2539
+ "module" : "DISMAN-SCRIPT-MIB"
2540
+ },
2541
+ "smLaunchOperStatus" : {
2542
+ "nodetype" : "member",
2543
+ "module" : "DISMAN-SCRIPT-MIB"
2544
+ },
2545
+ "smLaunchRunIndexNext" : {
2546
+ "nodetype" : "member",
2547
+ "module" : "DISMAN-SCRIPT-MIB"
2548
+ },
2549
+ "smLaunchStorageType" : {
2550
+ "nodetype" : "member",
2551
+ "module" : "DISMAN-SCRIPT-MIB"
2552
+ },
2553
+ "smLaunchRowStatus" : {
2554
+ "nodetype" : "member",
2555
+ "module" : "DISMAN-SCRIPT-MIB"
2556
+ },
2557
+ "smLaunchError" : {
2558
+ "nodetype" : "member",
2559
+ "module" : "DISMAN-SCRIPT-MIB"
2560
+ },
2561
+ "smLaunchLastChange" : {
2562
+ "nodetype" : "member",
2563
+ "module" : "DISMAN-SCRIPT-MIB"
2564
+ },
2565
+ "smLaunchRowExpireTime" : {
2566
+ "nodetype" : "member",
2567
+ "module" : "DISMAN-SCRIPT-MIB"
2568
+ },
2569
+ }, # members
2570
+ "description" :
2571
+ """A collection of objects providing information about scripts
2572
+ that can be launched.""",
2573
+ }, # group
2574
+ "smRunGroup2" : {
2575
+ "nodetype" : "group",
2576
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2577
+ "oid" : "1.3.6.1.2.1.64.3.2.9",
2578
+ "status" : "current",
2579
+ "members" : {
2580
+ "smRunArgument" : {
2581
+ "nodetype" : "member",
2582
+ "module" : "DISMAN-SCRIPT-MIB"
2583
+ },
2584
+ "smRunStartTime" : {
2585
+ "nodetype" : "member",
2586
+ "module" : "DISMAN-SCRIPT-MIB"
2587
+ },
2588
+ "smRunEndTime" : {
2589
+ "nodetype" : "member",
2590
+ "module" : "DISMAN-SCRIPT-MIB"
2591
+ },
2592
+ "smRunLifeTime" : {
2593
+ "nodetype" : "member",
2594
+ "module" : "DISMAN-SCRIPT-MIB"
2595
+ },
2596
+ "smRunExpireTime" : {
2597
+ "nodetype" : "member",
2598
+ "module" : "DISMAN-SCRIPT-MIB"
2599
+ },
2600
+ "smRunExitCode" : {
2601
+ "nodetype" : "member",
2602
+ "module" : "DISMAN-SCRIPT-MIB"
2603
+ },
2604
+ "smRunResult" : {
2605
+ "nodetype" : "member",
2606
+ "module" : "DISMAN-SCRIPT-MIB"
2607
+ },
2608
+ "smRunState" : {
2609
+ "nodetype" : "member",
2610
+ "module" : "DISMAN-SCRIPT-MIB"
2611
+ },
2612
+ "smRunControl" : {
2613
+ "nodetype" : "member",
2614
+ "module" : "DISMAN-SCRIPT-MIB"
2615
+ },
2616
+ "smRunError" : {
2617
+ "nodetype" : "member",
2618
+ "module" : "DISMAN-SCRIPT-MIB"
2619
+ },
2620
+ "smRunResultTime" : {
2621
+ "nodetype" : "member",
2622
+ "module" : "DISMAN-SCRIPT-MIB"
2623
+ },
2624
+ "smRunErrorTime" : {
2625
+ "nodetype" : "member",
2626
+ "module" : "DISMAN-SCRIPT-MIB"
2627
+ },
2628
+ }, # members
2629
+ "description" :
2630
+ """A collection of objects providing information about running
2631
+ scripts.""",
2632
+ }, # group
2633
+ "smNotificationsGroup2" : {
2634
+ "nodetype" : "group",
2635
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2636
+ "oid" : "1.3.6.1.2.1.64.3.2.10",
2637
+ "status" : "current",
2638
+ "members" : {
2639
+ "smScriptAbort" : {
2640
+ "nodetype" : "member",
2641
+ "module" : "DISMAN-SCRIPT-MIB"
2642
+ },
2643
+ "smScriptResult" : {
2644
+ "nodetype" : "member",
2645
+ "module" : "DISMAN-SCRIPT-MIB"
2646
+ },
2647
+ "smScriptException" : {
2648
+ "nodetype" : "member",
2649
+ "module" : "DISMAN-SCRIPT-MIB"
2650
+ },
2651
+ }, # members
2652
+ "description" :
2653
+ """The notifications emitted by the Script MIB.""",
2654
+ }, # group
2655
+ }, # groups
2656
+
2657
+ "compliances" : {
2658
+ "smCompliance" : {
2659
+ "nodetype" : "compliance",
2660
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2661
+ "oid" : "1.3.6.1.2.1.64.3.1.1",
2662
+ "status" : "deprecated",
2663
+ "description" :
2664
+ """The compliance statement for SNMP entities which implement
2665
+ the Script MIB.""",
2666
+ "requires" : {
2667
+ "smLanguageGroup" : {
2668
+ "nodetype" : "mandatory",
2669
+ "module" : "DISMAN-SCRIPT-MIB"
2670
+ },
2671
+ "smScriptGroup" : {
2672
+ "nodetype" : "mandatory",
2673
+ "module" : "DISMAN-SCRIPT-MIB"
2674
+ },
2675
+ "smLaunchGroup" : {
2676
+ "nodetype" : "mandatory",
2677
+ "module" : "DISMAN-SCRIPT-MIB"
2678
+ },
2679
+ "smRunGroup" : {
2680
+ "nodetype" : "mandatory",
2681
+ "module" : "DISMAN-SCRIPT-MIB"
2682
+ },
2683
+ "smCodeGroup" : {
2684
+ "nodetype" : "optional",
2685
+ "module" : "DISMAN-SCRIPT-MIB",
2686
+ "description" :
2687
+ """The smCodeGroup is mandatory only for those implementations
2688
+ that support the downloading of scripts via SNMP.""",
2689
+ },
2690
+ }, # requires
2691
+ "refinements" : {
2692
+ "smScriptSource" : {
2693
+ "module" : "DISMAN-SCRIPT-MIB",
2694
+ "access" : "readonly",
2695
+ "description" :
2696
+ """The smScriptSource object is read-only for implementations
2697
+ that are not able to download script code from a URL.""",
2698
+ },
2699
+ "smCodeText" : {
2700
+ "module" : "DISMAN-SCRIPT-MIB",
2701
+ "description" :
2702
+ """A compliant implementation need only support write access
2703
+ to the smCodeText object during row creation.""",
2704
+ },
2705
+ "smLaunchArgument" : {
2706
+ "module" : "DISMAN-SCRIPT-MIB",
2707
+ "description" :
2708
+ """A compliant implementation has to support a minimum size
2709
+ for smLaunchArgument of 255 octets.""",
2710
+ },
2711
+ "smRunArgument" : {
2712
+ "module" : "DISMAN-SCRIPT-MIB",
2713
+ "description" :
2714
+ """A compliant implementation has to support a minimum size
2715
+ for smRunArgument of 255 octets.""",
2716
+ },
2717
+ "smRunResult" : {
2718
+ "module" : "DISMAN-SCRIPT-MIB",
2719
+ "description" :
2720
+ """A compliant implementation has to support a minimum size
2721
+ for smRunResult of 255 octets.""",
2722
+ },
2723
+ "smRunState" : {
2724
+ "module" : "DISMAN-SCRIPT-MIB",
2725
+ "description" :
2726
+ """A compliant implementation does not have to support script
2727
+ suspension and the smRunState `suspended'. Such an
2728
+ implementation will change into the `suspending' state
2729
+ when the smRunControl is set to `suspend' and remain in this
2730
+ state until smRunControl is set to `resume' or the script
2731
+ terminates.""",
2732
+ },
2733
+ }, # refinements
2734
+
2735
+ }, # compliance
2736
+ "smCompliance2" : {
2737
+ "nodetype" : "compliance",
2738
+ "moduleName" : "DISMAN-SCRIPT-MIB",
2739
+ "oid" : "1.3.6.1.2.1.64.3.1.2",
2740
+ "status" : "current",
2741
+ "description" :
2742
+ """The compliance statement for SNMP entities which implement
2743
+ the Script MIB.""",
2744
+ "requires" : {
2745
+ "smLanguageGroup" : {
2746
+ "nodetype" : "mandatory",
2747
+ "module" : "DISMAN-SCRIPT-MIB"
2748
+ },
2749
+ "smScriptGroup2" : {
2750
+ "nodetype" : "mandatory",
2751
+ "module" : "DISMAN-SCRIPT-MIB"
2752
+ },
2753
+ "smLaunchGroup2" : {
2754
+ "nodetype" : "mandatory",
2755
+ "module" : "DISMAN-SCRIPT-MIB"
2756
+ },
2757
+ "smRunGroup2" : {
2758
+ "nodetype" : "mandatory",
2759
+ "module" : "DISMAN-SCRIPT-MIB"
2760
+ },
2761
+ "smNotificationsGroup2" : {
2762
+ "nodetype" : "mandatory",
2763
+ "module" : "DISMAN-SCRIPT-MIB"
2764
+ },
2765
+ "smCodeGroup" : {
2766
+ "nodetype" : "optional",
2767
+ "module" : "DISMAN-SCRIPT-MIB",
2768
+ "description" :
2769
+ """The smCodeGroup is mandatory only for those implementations
2770
+ that support the downloading of scripts via SNMP.""",
2771
+ },
2772
+ }, # requires
2773
+ "refinements" : {
2774
+ "smScriptSource" : {
2775
+ "module" : "DISMAN-SCRIPT-MIB",
2776
+ "access" : "readonly",
2777
+ "description" :
2778
+ """The smScriptSource object is read-only for implementations
2779
+ that are not able to download script code from a URL.""",
2780
+ },
2781
+ "smCodeText" : {
2782
+ "module" : "DISMAN-SCRIPT-MIB",
2783
+ "description" :
2784
+ """A compliant implementation need only support write access to
2785
+ the smCodeText object only during row creation.""",
2786
+ },
2787
+ "smLaunchArgument" : {
2788
+ "module" : "DISMAN-SCRIPT-MIB",
2789
+ "description" :
2790
+ """A compliant implementation has to support a minimum size
2791
+ for smLaunchArgument of 255 octets.""",
2792
+ },
2793
+ "smRunArgument" : {
2794
+ "module" : "DISMAN-SCRIPT-MIB",
2795
+ "description" :
2796
+ """A compliant implementation has to support a minimum size
2797
+ for smRunArgument of 255 octets.""",
2798
+ },
2799
+ "smRunResult" : {
2800
+ "module" : "DISMAN-SCRIPT-MIB",
2801
+ "description" :
2802
+ """A compliant implementation has to support a minimum size
2803
+ for smRunResult of 255 octets.""",
2804
+ },
2805
+ "smRunState" : {
2806
+ "module" : "DISMAN-SCRIPT-MIB",
2807
+ "description" :
2808
+ """A compliant implementation does not have to support script
2809
+ suspension and the smRunState `suspended'. Such an
2810
+ implementation will change into the `suspending' state
2811
+ when the smRunControl is set to `suspend' and remain in this
2812
+ state until smRunControl is set to `resume' or the script
2813
+ terminates.""",
2814
+ },
2815
+ }, # refinements
2816
+
2817
+ }, # compliance
2818
+ }, # compliances
2819
+
2820
+ }