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,1416 @@
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 Finisher-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/Finisher-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "Finisher-MIB",
11
+
12
+ "Finisher-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """PWG IEEE/ISTO Printer Working Group""",
17
+ "contact" :
18
+ """Harry Lewis
19
+ IBM
20
+ Phone (303) 924-5337
21
+ Email: harryl@us.ibm.com
22
+
23
+ Send comments to the printmib WG using the Finisher MIB
24
+ Project (FIN) Mailing List: fin@pwg.org
25
+
26
+ For further information, access the PWG web page under 'Finisher
27
+ MIB': http://www.pwg.org/
28
+
29
+ Implementers of this specification are encouraged to join the
30
+ fin mailing list in order to participate in discussions on any
31
+ clarifications needed and registration proposals being reviewed
32
+ in order to achieve consensus.""",
33
+ "description" :
34
+ """The MIB module for management of printers.
35
+ Copyright (C) The Internet Society (2004). This
36
+ version of this MIB module was published
37
+
38
+
39
+
40
+ in RFC 3806. For full legal notices see the RFC itself.""",
41
+ "revisions" : (
42
+ {
43
+ "date" : "2004-06-02 00:00",
44
+ "description" :
45
+ """The original version of this MIB.""",
46
+ },
47
+ ),
48
+ "identity node" : "finisherMIB",
49
+ },
50
+
51
+ "imports" : (
52
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
53
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
56
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
57
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
58
+ {"module" : "HOST-RESOURCES-MIB", "name" : "hrDeviceIndex"},
59
+ {"module" : "IANA-PRINTER-MIB", "name" : "PrtInputTypeTC"},
60
+ {"module" : "IANA-PRINTER-MIB", "name" : "PrtMarkerSuppliesTypeTC"},
61
+ {"module" : "Printer-MIB", "name" : "printmib"},
62
+ {"module" : "Printer-MIB", "name" : "PrtSubUnitStatusTC"},
63
+ {"module" : "Printer-MIB", "name" : "PrtLocalizedDescriptionStringTC"},
64
+ {"module" : "Printer-MIB", "name" : "PrtMarkerSuppliesSupplyUnitTC"},
65
+ {"module" : "Printer-MIB", "name" : "PrtMediaUnitTC"},
66
+ {"module" : "Printer-MIB", "name" : "PrtCapacityUnitTC"},
67
+ {"module" : "Printer-MIB", "name" : "PrtMarkerSuppliesClassTC"},
68
+ {"module" : "Printer-MIB", "name" : "PresentOnOff"},
69
+ {"module" : "Printer-MIB", "name" : "prtMIBConformance"},
70
+ {"module" : "IANA-FINISHER-MIB", "name" : "FinDeviceTypeTC"},
71
+ {"module" : "IANA-FINISHER-MIB", "name" : "FinAttributeTypeTC"},
72
+ ),
73
+
74
+ "nodes" : {
75
+ "finMIBGroups" : {
76
+ "nodetype" : "node",
77
+ "moduleName" : "Finisher-MIB",
78
+ "oid" : "1.3.6.1.2.1.43.2.6",
79
+ }, # node
80
+ "finDevice" : {
81
+ "nodetype" : "node",
82
+ "moduleName" : "Finisher-MIB",
83
+ "oid" : "1.3.6.1.2.1.43.30",
84
+ }, # node
85
+ "finDeviceTable" : {
86
+ "nodetype" : "table",
87
+ "moduleName" : "Finisher-MIB",
88
+ "oid" : "1.3.6.1.2.1.43.30.1",
89
+ "status" : "current",
90
+ "description" :
91
+ """This table defines the finishing device subunits,
92
+ including information regarding possible configuration
93
+ options and the status for each finisher device subunit.""",
94
+ }, # table
95
+ "finDeviceEntry" : {
96
+ "nodetype" : "row",
97
+ "moduleName" : "Finisher-MIB",
98
+ "oid" : "1.3.6.1.2.1.43.30.1.1",
99
+ "status" : "current",
100
+ "linkage" : [
101
+ "hrDeviceIndex",
102
+ "finDeviceIndex",
103
+ ],
104
+ "description" :
105
+ """There is an entry in the finishing device table for each
106
+ possible finisher process. Each individual finisher process is
107
+ implemented by a finishing device represented in this table.""",
108
+ }, # row
109
+ "finDeviceIndex" : {
110
+ "nodetype" : "column",
111
+ "moduleName" : "Finisher-MIB",
112
+ "oid" : "1.3.6.1.2.1.43.30.1.1.1",
113
+ "status" : "current",
114
+ "syntax" : {
115
+ "type" : {
116
+ "basetype" : "Integer32",
117
+ "ranges" : [
118
+ {
119
+ "min" : "1",
120
+ "max" : "65535"
121
+ },
122
+ ],
123
+ "range" : {
124
+ "min" : "1",
125
+ "max" : "65535"
126
+ },
127
+ },
128
+ },
129
+ "access" : "noaccess",
130
+ "description" :
131
+ """A unique value used to identify a finisher process.
132
+ Although these values may change due to a major
133
+ reconfiguration of the printer system (e.g., the addition
134
+ of new finishing processes), the values are normally
135
+ expected to remain stable across successive power cycles.""",
136
+ }, # column
137
+ "finDeviceType" : {
138
+ "nodetype" : "column",
139
+ "moduleName" : "Finisher-MIB",
140
+ "oid" : "1.3.6.1.2.1.43.30.1.1.2",
141
+ "status" : "current",
142
+ "syntax" : {
143
+ "type" : { "module" :"IANA-FINISHER-MIB", "name" : "FinDeviceTypeTC"},
144
+ },
145
+ "access" : "readonly",
146
+ "description" :
147
+ """Defines the type of finishing process associated with this
148
+ table row entry.""",
149
+ }, # column
150
+ "finDevicePresentOnOff" : {
151
+ "nodetype" : "column",
152
+ "moduleName" : "Finisher-MIB",
153
+ "oid" : "1.3.6.1.2.1.43.30.1.1.3",
154
+ "status" : "current",
155
+ "syntax" : {
156
+ "type" : { "module" :"Printer-MIB", "name" : "PresentOnOff"},
157
+ },
158
+ "access" : "readwrite",
159
+ "default" : "notPresent",
160
+ "description" :
161
+ """Indicates if this finishing device subunit is available
162
+ and whether the device subunit is enabled.""",
163
+ }, # column
164
+ "finDeviceCapacityUnit" : {
165
+ "nodetype" : "column",
166
+ "moduleName" : "Finisher-MIB",
167
+ "oid" : "1.3.6.1.2.1.43.30.1.1.4",
168
+ "status" : "current",
169
+ "syntax" : {
170
+ "type" : { "module" :"Printer-MIB", "name" : "PrtCapacityUnitTC"},
171
+ },
172
+ "access" : "readonly",
173
+ "description" :
174
+ """The unit of measure for specifying the capacity of this
175
+ finisher device subunit.""",
176
+ }, # column
177
+ "finDeviceMaxCapacity" : {
178
+ "nodetype" : "column",
179
+ "moduleName" : "Finisher-MIB",
180
+ "oid" : "1.3.6.1.2.1.43.30.1.1.5",
181
+ "status" : "current",
182
+ "syntax" : {
183
+ "type" : {
184
+ "basetype" : "Integer32",
185
+ "ranges" : [
186
+ {
187
+ "min" : "-2",
188
+ "max" : "2147483647"
189
+ },
190
+ ],
191
+ "range" : {
192
+ "min" : "-2",
193
+ "max" : "2147483647"
194
+ },
195
+ },
196
+ },
197
+ "access" : "readwrite",
198
+ "default" : "-2",
199
+ "description" :
200
+ """The maximum capacity of this finisher device subunit in
201
+ finDeviceCapacityUnits. If the device can reliably sense
202
+ this value, the value is sensed by the finisher device
203
+
204
+
205
+ and is read-only: otherwise the value may be written by a
206
+ management or control console application. The value (-1)
207
+ means other and specifically indicates that the device
208
+ places no restrictions on this parameter. The value (-2)
209
+ means unknown.""",
210
+ }, # column
211
+ "finDeviceCurrentCapacity" : {
212
+ "nodetype" : "column",
213
+ "moduleName" : "Finisher-MIB",
214
+ "oid" : "1.3.6.1.2.1.43.30.1.1.6",
215
+ "status" : "current",
216
+ "syntax" : {
217
+ "type" : {
218
+ "basetype" : "Integer32",
219
+ "ranges" : [
220
+ {
221
+ "min" : "-2",
222
+ "max" : "2147483647"
223
+ },
224
+ ],
225
+ "range" : {
226
+ "min" : "-2",
227
+ "max" : "2147483647"
228
+ },
229
+ },
230
+ },
231
+ "access" : "readwrite",
232
+ "default" : "-2",
233
+ "description" :
234
+ """The current capacity of this finisher device subunit in
235
+ finDeviceCapacityUnits. If the device can reliably sense
236
+ this value, the value is sensed by the finisher and is
237
+ read-only: otherwise the value may be written by a
238
+ management or control console application. The value (-1)
239
+ means other and specifically indicates that the device
240
+ places no restrictions on this parameter. The value (-2)
241
+ means unknown.""",
242
+ }, # column
243
+ "finDeviceAssociatedMediaPaths" : {
244
+ "nodetype" : "column",
245
+ "moduleName" : "Finisher-MIB",
246
+ "oid" : "1.3.6.1.2.1.43.30.1.1.7",
247
+ "status" : "current",
248
+ "syntax" : {
249
+ "type" : {
250
+ "basetype" : "OctetString",
251
+ "ranges" : [
252
+ {
253
+ "min" : "1",
254
+ "max" : "63"
255
+ },
256
+ ],
257
+ "range" : {
258
+ "min" : "1",
259
+ "max" : "63"
260
+ },
261
+ },
262
+ },
263
+ "access" : "readonly",
264
+ "description" :
265
+ """Indicates the media paths which can supply media for this
266
+ finisher device. The value of this object is a bit map in an
267
+ octet string with each position representing the value of a
268
+ prtMediaPathIndex. For a media path that can be a source
269
+ for this finisher device subunit, the bit position equal
270
+ to one less than the value of prtMediaPathIndex will be set.
271
+ The bits are numbered starting with the most significant bit of
272
+ the first byte being bit 0, the least significant bit of the
273
+ first byte being bit 7, the most significant of the second byte
274
+ being bit 8, and so on.""",
275
+ }, # column
276
+ "finDeviceAssociatedOutputs" : {
277
+ "nodetype" : "column",
278
+ "moduleName" : "Finisher-MIB",
279
+ "oid" : "1.3.6.1.2.1.43.30.1.1.8",
280
+ "status" : "current",
281
+ "syntax" : {
282
+ "type" : {
283
+ "basetype" : "OctetString",
284
+ "ranges" : [
285
+ {
286
+ "min" : "1",
287
+ "max" : "63"
288
+ },
289
+ ],
290
+ "range" : {
291
+ "min" : "1",
292
+ "max" : "63"
293
+ },
294
+ },
295
+ },
296
+ "access" : "readonly",
297
+ "description" :
298
+ """Indicates the printer output subunits this finisher device
299
+ subunit services. The value of this object is a bit map in an
300
+
301
+
302
+ octet string with each position representing the value of a
303
+ prtOutputIndex. For an output subunit that is serviced
304
+ by this finisher device subunit, the bit position equal
305
+ to one less than the value of prtOutputIndex will be set.
306
+ The bits are numbered starting with the most significant bit of
307
+ the first byte being bit 0, the least significant bit of the
308
+ first byte being bit 7, the most significant of the second byte
309
+ being bit 8, and so on.""",
310
+ }, # column
311
+ "finDeviceStatus" : {
312
+ "nodetype" : "column",
313
+ "moduleName" : "Finisher-MIB",
314
+ "oid" : "1.3.6.1.2.1.43.30.1.1.9",
315
+ "status" : "current",
316
+ "syntax" : {
317
+ "type" : { "module" :"Printer-MIB", "name" : "PrtSubUnitStatusTC"},
318
+ },
319
+ "access" : "readonly",
320
+ "default" : "5",
321
+ "description" :
322
+ """Indicates the current status of this finisher device
323
+ subunit.""",
324
+ }, # column
325
+ "finDeviceDescription" : {
326
+ "nodetype" : "column",
327
+ "moduleName" : "Finisher-MIB",
328
+ "oid" : "1.3.6.1.2.1.43.30.1.1.10",
329
+ "status" : "current",
330
+ "syntax" : {
331
+ "type" : { "module" :"Printer-MIB", "name" : "PrtLocalizedDescriptionStringTC"},
332
+ },
333
+ "access" : "readonly",
334
+ "description" :
335
+ """A free form text description of this device subunit in the
336
+ localization specified by prtGeneralCurrentLocalization.""",
337
+ }, # column
338
+ "finSupply" : {
339
+ "nodetype" : "node",
340
+ "moduleName" : "Finisher-MIB",
341
+ "oid" : "1.3.6.1.2.1.43.31",
342
+ }, # node
343
+ "finSupplyTable" : {
344
+ "nodetype" : "table",
345
+ "moduleName" : "Finisher-MIB",
346
+ "oid" : "1.3.6.1.2.1.43.31.1",
347
+ "status" : "current",
348
+ "description" :
349
+ """Each unique source of supply is an entry in the finisher
350
+ supply table. Each supply entry has its own
351
+ characteristics associated with it such as colorant and
352
+
353
+
354
+ current supply level.""",
355
+ }, # table
356
+ "finSupplyEntry" : {
357
+ "nodetype" : "row",
358
+ "moduleName" : "Finisher-MIB",
359
+ "oid" : "1.3.6.1.2.1.43.31.1.1",
360
+ "status" : "current",
361
+ "linkage" : [
362
+ "hrDeviceIndex",
363
+ "finSupplyIndex",
364
+ ],
365
+ "description" :
366
+ """A list of finisher devices, with their associated
367
+ supplies and supplies characteristics.""",
368
+ }, # row
369
+ "finSupplyIndex" : {
370
+ "nodetype" : "column",
371
+ "moduleName" : "Finisher-MIB",
372
+ "oid" : "1.3.6.1.2.1.43.31.1.1.1",
373
+ "status" : "current",
374
+ "syntax" : {
375
+ "type" : {
376
+ "basetype" : "Integer32",
377
+ "ranges" : [
378
+ {
379
+ "min" : "1",
380
+ "max" : "65535"
381
+ },
382
+ ],
383
+ "range" : {
384
+ "min" : "1",
385
+ "max" : "65535"
386
+ },
387
+ },
388
+ },
389
+ "access" : "noaccess",
390
+ "description" :
391
+ """A unique value used by a finisher to identify this supply
392
+ container/receptacle. Although these values may change
393
+ due to a major reconfiguration of the finisher (e.g., the
394
+ addition of new supply sources to the finisher), values
395
+ are normally expected to remain stable across successive
396
+ power cycles.""",
397
+ }, # column
398
+ "finSupplyDeviceIndex" : {
399
+ "nodetype" : "column",
400
+ "moduleName" : "Finisher-MIB",
401
+ "oid" : "1.3.6.1.2.1.43.31.1.1.2",
402
+ "status" : "current",
403
+ "syntax" : {
404
+ "type" : {
405
+ "basetype" : "Integer32",
406
+ "ranges" : [
407
+ {
408
+ "min" : "0",
409
+ "max" : "65535"
410
+ },
411
+ ],
412
+ "range" : {
413
+ "min" : "0",
414
+ "max" : "65535"
415
+ },
416
+ },
417
+ },
418
+ "access" : "readonly",
419
+ "description" :
420
+ """The value of finDeviceIndex corresponding to the finishing
421
+ device subunit with which this finisher supply is associated.
422
+ The value zero indicates the associated finishing device is
423
+ Unknown.""",
424
+ }, # column
425
+ "finSupplyClass" : {
426
+ "nodetype" : "column",
427
+ "moduleName" : "Finisher-MIB",
428
+ "oid" : "1.3.6.1.2.1.43.31.1.1.3",
429
+ "status" : "current",
430
+ "syntax" : {
431
+ "type" : { "module" :"Printer-MIB", "name" : "PrtMarkerSuppliesClassTC"},
432
+ },
433
+ "access" : "readonly",
434
+ "description" :
435
+ """This value indicates whether this supply entity
436
+ represents a supply that is consumed or a container that
437
+ is filled.""",
438
+ }, # column
439
+ "finSupplyType" : {
440
+ "nodetype" : "column",
441
+ "moduleName" : "Finisher-MIB",
442
+ "oid" : "1.3.6.1.2.1.43.31.1.1.4",
443
+ "status" : "current",
444
+ "syntax" : {
445
+ "type" : { "module" :"IANA-PRINTER-MIB", "name" : "PrtMarkerSuppliesTypeTC"},
446
+ },
447
+ "access" : "readonly",
448
+ "description" :
449
+ """The type of this supply.""",
450
+ }, # column
451
+ "finSupplyDescription" : {
452
+ "nodetype" : "column",
453
+ "moduleName" : "Finisher-MIB",
454
+ "oid" : "1.3.6.1.2.1.43.31.1.1.5",
455
+ "status" : "current",
456
+ "syntax" : {
457
+ "type" : { "module" :"Printer-MIB", "name" : "PrtLocalizedDescriptionStringTC"},
458
+ },
459
+ "access" : "readonly",
460
+ "description" :
461
+ """The description of this supply/receptacle in text useful
462
+ for operators and management applications and in the
463
+ localization specified by prtGeneralCurrentLocalization.""",
464
+ }, # column
465
+ "finSupplyUnit" : {
466
+ "nodetype" : "column",
467
+ "moduleName" : "Finisher-MIB",
468
+ "oid" : "1.3.6.1.2.1.43.31.1.1.6",
469
+ "status" : "current",
470
+ "syntax" : {
471
+ "type" : { "module" :"Printer-MIB", "name" : "PrtMarkerSuppliesSupplyUnitTC"},
472
+ },
473
+ "access" : "readonly",
474
+ "description" :
475
+ """Unit of measure of this finisher supply container or
476
+ receptacle.""",
477
+ }, # column
478
+ "finSupplyMaxCapacity" : {
479
+ "nodetype" : "column",
480
+ "moduleName" : "Finisher-MIB",
481
+ "oid" : "1.3.6.1.2.1.43.31.1.1.7",
482
+ "status" : "current",
483
+ "syntax" : {
484
+ "type" : {
485
+ "basetype" : "Integer32",
486
+ "ranges" : [
487
+ {
488
+ "min" : "-2",
489
+ "max" : "2147483647"
490
+ },
491
+ ],
492
+ "range" : {
493
+ "min" : "-2",
494
+ "max" : "2147483647"
495
+ },
496
+ },
497
+ },
498
+ "access" : "readwrite",
499
+ "default" : "-2",
500
+ "description" :
501
+ """The maximum capacity of this supply container/receptacle
502
+ expressed in Supply Units. If this supply container/
503
+ receptacle can reliably sense this value, the value is
504
+ sensed and is read-only; otherwise the value may be
505
+ written by a control panel or management application. The
506
+ value (-1) means other and places no restrictions on this
507
+
508
+
509
+
510
+ parameter. The value (-2) means unknown.""",
511
+ }, # column
512
+ "finSupplyCurrentLevel" : {
513
+ "nodetype" : "column",
514
+ "moduleName" : "Finisher-MIB",
515
+ "oid" : "1.3.6.1.2.1.43.31.1.1.8",
516
+ "status" : "current",
517
+ "syntax" : {
518
+ "type" : {
519
+ "basetype" : "Integer32",
520
+ "ranges" : [
521
+ {
522
+ "min" : "-3",
523
+ "max" : "2147483647"
524
+ },
525
+ ],
526
+ "range" : {
527
+ "min" : "-3",
528
+ "max" : "2147483647"
529
+ },
530
+ },
531
+ },
532
+ "access" : "readwrite",
533
+ "default" : "-2",
534
+ "description" :
535
+ """The current level if this supply is a container; the
536
+ remaining space if this supply is a receptacle. If this
537
+ supply container/receptacle can reliably sense this value,
538
+ the value is sensed and is read-only; otherwise the value
539
+ may be written by a control panel or management
540
+ application. The value (-1) means other and places no
541
+ restrictions on this parameter. The value (-2) means
542
+ unknown. A value of (-3) means that the printer knows there
543
+ is some supply or remaining space.""",
544
+ }, # column
545
+ "finSupplyColorName" : {
546
+ "nodetype" : "column",
547
+ "moduleName" : "Finisher-MIB",
548
+ "oid" : "1.3.6.1.2.1.43.31.1.1.9",
549
+ "status" : "current",
550
+ "syntax" : {
551
+ "type" : {
552
+ "basetype" : "OctetString",
553
+ "ranges" : [
554
+ {
555
+ "min" : "0",
556
+ "max" : "63"
557
+ },
558
+ ],
559
+ "range" : {
560
+ "min" : "0",
561
+ "max" : "63"
562
+ },
563
+ },
564
+ },
565
+ "access" : "readonly",
566
+ "description" :
567
+ """The name of the color associated with this supply.""",
568
+ "reference" :
569
+ """The PWG Standardized Media Names specification [PWGMEDIA],
570
+ section 4 Media Color Names, contains the recommended values
571
+
572
+
573
+
574
+ for this object. Implementers may add additional string values.
575
+ The naming conventions in ISO 9070 are recommended in order to
576
+ avoid potential name clashes.""",
577
+ }, # column
578
+ "finSupplyMediaInput" : {
579
+ "nodetype" : "node",
580
+ "moduleName" : "Finisher-MIB",
581
+ "oid" : "1.3.6.1.2.1.43.32",
582
+ }, # node
583
+ "finSupplyMediaInputTable" : {
584
+ "nodetype" : "table",
585
+ "moduleName" : "Finisher-MIB",
586
+ "oid" : "1.3.6.1.2.1.43.32.1",
587
+ "status" : "current",
588
+ "description" :
589
+ """The input subunits associated with a finisher supply media
590
+ are each represented by an entry in this table.""",
591
+ }, # table
592
+ "finSupplyMediaInputEntry" : {
593
+ "nodetype" : "row",
594
+ "moduleName" : "Finisher-MIB",
595
+ "oid" : "1.3.6.1.2.1.43.32.1.1",
596
+ "status" : "current",
597
+ "linkage" : [
598
+ "hrDeviceIndex",
599
+ "finSupplyMediaInputIndex",
600
+ ],
601
+ "description" :
602
+ """A list of finisher supply media input subunit features and
603
+ characteristics.""",
604
+ }, # row
605
+ "finSupplyMediaInputIndex" : {
606
+ "nodetype" : "column",
607
+ "moduleName" : "Finisher-MIB",
608
+ "oid" : "1.3.6.1.2.1.43.32.1.1.1",
609
+ "status" : "current",
610
+ "syntax" : {
611
+ "type" : {
612
+ "basetype" : "Integer32",
613
+ "ranges" : [
614
+ {
615
+ "min" : "1",
616
+ "max" : "65535"
617
+ },
618
+ ],
619
+ "range" : {
620
+ "min" : "1",
621
+ "max" : "65535"
622
+ },
623
+ },
624
+ },
625
+ "access" : "noaccess",
626
+ "description" :
627
+ """A unique value used by a finisher to identify this supply
628
+ media input subunit. Although these values may change
629
+ due to a major reconfiguration of the finisher (e.g., the
630
+ addition of new supply media input sources to the
631
+ finisher), values are normally expected to remain stable
632
+ across successive power cycles.""",
633
+ }, # column
634
+ "finSupplyMediaInputDeviceIndex" : {
635
+ "nodetype" : "column",
636
+ "moduleName" : "Finisher-MIB",
637
+ "oid" : "1.3.6.1.2.1.43.32.1.1.2",
638
+ "status" : "current",
639
+ "syntax" : {
640
+ "type" : {
641
+ "basetype" : "Integer32",
642
+ "ranges" : [
643
+ {
644
+ "min" : "0",
645
+ "max" : "65535"
646
+ },
647
+ ],
648
+ "range" : {
649
+ "min" : "0",
650
+ "max" : "65535"
651
+ },
652
+ },
653
+ },
654
+ "access" : "readonly",
655
+ "description" :
656
+ """The value of finDeviceIndex corresponding to the finishing
657
+ device subunit with which this finisher media supply is
658
+ associated. The value zero indicates the associated device
659
+ is unknown.""",
660
+ }, # column
661
+ "finSupplyMediaInputSupplyIndex" : {
662
+ "nodetype" : "column",
663
+ "moduleName" : "Finisher-MIB",
664
+ "oid" : "1.3.6.1.2.1.43.32.1.1.3",
665
+ "status" : "current",
666
+ "syntax" : {
667
+ "type" : {
668
+ "basetype" : "Integer32",
669
+ "ranges" : [
670
+ {
671
+ "min" : "0",
672
+ "max" : "65535"
673
+ },
674
+ ],
675
+ "range" : {
676
+ "min" : "0",
677
+ "max" : "65535"
678
+ },
679
+ },
680
+ },
681
+ "access" : "readonly",
682
+ "description" :
683
+ """The value of finSupplyIndex corresponding to the finishing
684
+ supply subunit with which this finisher media supply is
685
+ associated. The value zero indicates the associated finishing
686
+ supply is unknown or there is no applicable finisher supply
687
+ table entry.""",
688
+ }, # column
689
+ "finSupplyMediaInputType" : {
690
+ "nodetype" : "column",
691
+ "moduleName" : "Finisher-MIB",
692
+ "oid" : "1.3.6.1.2.1.43.32.1.1.4",
693
+ "status" : "current",
694
+ "syntax" : {
695
+ "type" : { "module" :"IANA-PRINTER-MIB", "name" : "PrtInputTypeTC"},
696
+ },
697
+ "access" : "readonly",
698
+ "description" :
699
+ """The type of technology (discriminated primarily according
700
+ to the feeder mechanism type) employed by the input
701
+ subunit.""",
702
+ }, # column
703
+ "finSupplyMediaInputDimUnit" : {
704
+ "nodetype" : "column",
705
+ "moduleName" : "Finisher-MIB",
706
+ "oid" : "1.3.6.1.2.1.43.32.1.1.5",
707
+ "status" : "current",
708
+ "syntax" : {
709
+ "type" : { "module" :"Printer-MIB", "name" : "PrtMediaUnitTC"},
710
+ },
711
+ "access" : "readonly",
712
+ "description" :
713
+ """The unit of measure for specifying dimensional values for
714
+ this input device.""",
715
+ }, # column
716
+ "finSupplyMediaInputMediaDimFeedDir" : {
717
+ "nodetype" : "column",
718
+ "moduleName" : "Finisher-MIB",
719
+ "oid" : "1.3.6.1.2.1.43.32.1.1.6",
720
+ "status" : "current",
721
+ "syntax" : {
722
+ "type" : {
723
+ "basetype" : "Integer32",
724
+ "ranges" : [
725
+ {
726
+ "min" : "-2",
727
+ "max" : "2147483647"
728
+ },
729
+ ],
730
+ "range" : {
731
+ "min" : "-2",
732
+ "max" : "2147483647"
733
+ },
734
+ },
735
+ },
736
+ "access" : "readwrite",
737
+ "description" :
738
+ """This object provides the value of the dimension in the
739
+ feed direction of the media that is placed or will be
740
+ placed in this input device. Feed dimension measurements
741
+ are taken parallel to the feed direction of the device and
742
+ measured in finSupplyMediaInputDimUnits. If this input
743
+ device can reliably sense this value, the value is sensed
744
+ and is read-only access. Otherwise the value is read-write
745
+ access and may be written by management or control panel
746
+ applications. The value (-1) means other and specifically
747
+ indicates that this device places no restrictions on this
748
+ parameter. The value (-2) indicates unknown. """,
749
+ }, # column
750
+ "finSupplyMediaInputMediaDimXFeedDir" : {
751
+ "nodetype" : "column",
752
+ "moduleName" : "Finisher-MIB",
753
+ "oid" : "1.3.6.1.2.1.43.32.1.1.7",
754
+ "status" : "current",
755
+ "syntax" : {
756
+ "type" : {
757
+ "basetype" : "Integer32",
758
+ "ranges" : [
759
+ {
760
+ "min" : "-2",
761
+ "max" : "2147483647"
762
+ },
763
+ ],
764
+ "range" : {
765
+ "min" : "-2",
766
+ "max" : "2147483647"
767
+ },
768
+ },
769
+ },
770
+ "access" : "readwrite",
771
+ "description" :
772
+ """This object provides the value of the dimension across the
773
+ feed direction of the media that is placed or will be
774
+ placed in this input device. The cross feed direction is
775
+ ninety degrees relative to the feed direction on this
776
+ device and measured in finSupplyMediaInputDimUnits. If
777
+ this input device can reliably sense this value, the value
778
+ is sensed and is read-only access. Otherwise the value is
779
+ read-write access and may be written by management or
780
+ control panel applications. The value (-1) means other and
781
+ specifically indicates that this device places no
782
+
783
+
784
+
785
+ restrictions on this parameter. The value (-2) indicates
786
+ unknown. """,
787
+ }, # column
788
+ "finSupplyMediaInputStatus" : {
789
+ "nodetype" : "column",
790
+ "moduleName" : "Finisher-MIB",
791
+ "oid" : "1.3.6.1.2.1.43.32.1.1.8",
792
+ "status" : "current",
793
+ "syntax" : {
794
+ "type" : { "module" :"Printer-MIB", "name" : "PrtSubUnitStatusTC"},
795
+ },
796
+ "access" : "readonly",
797
+ "default" : "5",
798
+ "description" :
799
+ """This value indicates the current status of this input
800
+ device.""",
801
+ }, # column
802
+ "finSupplyMediaInputMediaName" : {
803
+ "nodetype" : "column",
804
+ "moduleName" : "Finisher-MIB",
805
+ "oid" : "1.3.6.1.2.1.43.32.1.1.9",
806
+ "status" : "current",
807
+ "syntax" : {
808
+ "type" : {
809
+ "basetype" : "OctetString",
810
+ "ranges" : [
811
+ {
812
+ "min" : "0",
813
+ "max" : "63"
814
+ },
815
+ ],
816
+ "range" : {
817
+ "min" : "0",
818
+ "max" : "63"
819
+ },
820
+ },
821
+ },
822
+ "access" : "readwrite",
823
+ "description" :
824
+ """The name of the current media contained in this input
825
+ device. Examples are Engineering Manual Cover, Section A Tab
826
+ Divider or any ISO standard names.""",
827
+ }, # column
828
+ "finSupplyMediaInputName" : {
829
+ "nodetype" : "column",
830
+ "moduleName" : "Finisher-MIB",
831
+ "oid" : "1.3.6.1.2.1.43.32.1.1.10",
832
+ "status" : "current",
833
+ "syntax" : {
834
+ "type" : {
835
+ "basetype" : "OctetString",
836
+ "ranges" : [
837
+ {
838
+ "min" : "0",
839
+ "max" : "63"
840
+ },
841
+ ],
842
+ "range" : {
843
+ "min" : "0",
844
+ "max" : "63"
845
+ },
846
+ },
847
+ },
848
+ "access" : "readwrite",
849
+ "description" :
850
+ """The name assigned to this input subunit.""",
851
+ }, # column
852
+ "finSupplyMediaInputDescription" : {
853
+ "nodetype" : "column",
854
+ "moduleName" : "Finisher-MIB",
855
+ "oid" : "1.3.6.1.2.1.43.32.1.1.11",
856
+ "status" : "current",
857
+ "syntax" : {
858
+ "type" : { "module" :"Printer-MIB", "name" : "PrtLocalizedDescriptionStringTC"},
859
+ },
860
+ "access" : "readonly",
861
+ "description" :
862
+ """A free form text description of this input subunit in the
863
+ localization specified by prtGeneralCurrentLocalization.""",
864
+ }, # column
865
+ "finSupplyMediaInputSecurity" : {
866
+ "nodetype" : "column",
867
+ "moduleName" : "Finisher-MIB",
868
+ "oid" : "1.3.6.1.2.1.43.32.1.1.12",
869
+ "status" : "current",
870
+ "syntax" : {
871
+ "type" : { "module" :"Printer-MIB", "name" : "PresentOnOff"},
872
+ },
873
+ "access" : "readwrite",
874
+ "description" :
875
+ """Indicates if this subunit has some security associated
876
+ with it.""",
877
+ }, # column
878
+ "finSupplyMediaInputMediaWeight" : {
879
+ "nodetype" : "column",
880
+ "moduleName" : "Finisher-MIB",
881
+ "oid" : "1.3.6.1.2.1.43.32.1.1.13",
882
+ "status" : "current",
883
+ "syntax" : {
884
+ "type" : { "module" :"", "name" : "Integer32"},
885
+ },
886
+ "access" : "readwrite",
887
+ "description" :
888
+ """The weight of the media associated with this Input device
889
+ in grams per meter squared. The value (-1) means other
890
+ and specifically indicates that the device places no
891
+ restriction on this parameter. The value (-2) means
892
+ unknown. This object can be used to calculate the weight
893
+ of individual pages processed by the document finisher.
894
+ This value, when multiplied by the number of pages in a
895
+ finished set, can be used to calculate the weight of a set
896
+ before it is inserted into a mailing envelope.""",
897
+ }, # column
898
+ "finSupplyMediaInputMediaThickness" : {
899
+ "nodetype" : "column",
900
+ "moduleName" : "Finisher-MIB",
901
+ "oid" : "1.3.6.1.2.1.43.32.1.1.14",
902
+ "status" : "current",
903
+ "syntax" : {
904
+ "type" : {
905
+ "basetype" : "Integer32",
906
+ "ranges" : [
907
+ {
908
+ "min" : "-2",
909
+ "max" : "2147483647"
910
+ },
911
+ ],
912
+ "range" : {
913
+ "min" : "-2",
914
+ "max" : "2147483647"
915
+ },
916
+ },
917
+ },
918
+ "access" : "readwrite",
919
+ "description" :
920
+ """This object identifies the thickness of the input media
921
+ processed by this document input subunit measured in
922
+ micrometers. This value may be used by devices (or
923
+ operators) to set up proper machine tolerances for the
924
+ feeder operation. The value (-2) indicates that the media
925
+ thickness is unknown or not used in the setup for this
926
+ input subunit.""",
927
+ }, # column
928
+ "finSupplyMediaInputMediaType" : {
929
+ "nodetype" : "column",
930
+ "moduleName" : "Finisher-MIB",
931
+ "oid" : "1.3.6.1.2.1.43.32.1.1.15",
932
+ "status" : "current",
933
+ "syntax" : {
934
+ "type" : {
935
+ "basetype" : "OctetString",
936
+ "ranges" : [
937
+ {
938
+ "min" : "0",
939
+ "max" : "63"
940
+ },
941
+ ],
942
+ "range" : {
943
+ "min" : "0",
944
+ "max" : "63"
945
+ },
946
+ },
947
+ },
948
+ "access" : "readwrite",
949
+ "description" :
950
+ """The name of the type of medium associated with this input
951
+ subunit. """,
952
+ "reference" :
953
+ """The PWG Standardized Media Names specification [PWGMEDIA],
954
+ section 3 Media Type Names, contains the recommended values
955
+ for this object. Implementers may add additional string values.
956
+ The naming conventions in ISO 9070 are recommended in order to
957
+ avoid potential name clashes.""",
958
+ }, # column
959
+ "finDeviceAttribute" : {
960
+ "nodetype" : "node",
961
+ "moduleName" : "Finisher-MIB",
962
+ "oid" : "1.3.6.1.2.1.43.33",
963
+ }, # node
964
+ "finDeviceAttributeTable" : {
965
+ "nodetype" : "table",
966
+ "moduleName" : "Finisher-MIB",
967
+ "oid" : "1.3.6.1.2.1.43.33.1",
968
+ "status" : "current",
969
+ "description" :
970
+ """The attribute table defines special parameters that are
971
+ applicable only to a minority of the finisher devices.
972
+ An attribute table entry is used, rather than unique
973
+ objects, to minimize the number of MIB objects and to
974
+ allow for expansion without the addition of MIB objects.
975
+ Each finisher device is represented by a separate row
976
+ in the device subunit attribute table.""",
977
+ }, # table
978
+ "finDeviceAttributeEntry" : {
979
+ "nodetype" : "row",
980
+ "moduleName" : "Finisher-MIB",
981
+ "oid" : "1.3.6.1.2.1.43.33.1.1",
982
+ "status" : "current",
983
+ "linkage" : [
984
+ "hrDeviceIndex",
985
+ "finDeviceIndex",
986
+ "finDeviceAttributeTypeIndex",
987
+ "finDeviceAttributeInstanceIndex",
988
+ ],
989
+ "description" :
990
+ """Each entry defines a finisher function parameter that
991
+ cannot be represented by an object in the finisher
992
+ device subunit table.""",
993
+ }, # row
994
+ "finDeviceAttributeTypeIndex" : {
995
+ "nodetype" : "column",
996
+ "moduleName" : "Finisher-MIB",
997
+ "oid" : "1.3.6.1.2.1.43.33.1.1.1",
998
+ "status" : "current",
999
+ "syntax" : {
1000
+ "type" : { "module" :"IANA-FINISHER-MIB", "name" : "FinAttributeTypeTC"},
1001
+ },
1002
+ "access" : "noaccess",
1003
+ "description" :
1004
+ """Defines the attribute type represented by this row.""",
1005
+ }, # column
1006
+ "finDeviceAttributeInstanceIndex" : {
1007
+ "nodetype" : "column",
1008
+ "moduleName" : "Finisher-MIB",
1009
+ "oid" : "1.3.6.1.2.1.43.33.1.1.2",
1010
+ "status" : "current",
1011
+ "syntax" : {
1012
+ "type" : {
1013
+ "basetype" : "Integer32",
1014
+ "ranges" : [
1015
+ {
1016
+ "min" : "1",
1017
+ "max" : "65535"
1018
+ },
1019
+ ],
1020
+ "range" : {
1021
+ "min" : "1",
1022
+ "max" : "65535"
1023
+ },
1024
+ },
1025
+ },
1026
+ "access" : "noaccess",
1027
+ "description" :
1028
+ """An index that allows the discrimination of an attribute
1029
+ instance when the same attribute occurs multiple times for
1030
+ a specific instance of a finisher function. The value of
1031
+ this index shall be 1 if only a single instance of the
1032
+ attribute occurs for the specific finisher function.
1033
+ Additional values shall be assigned in a contiguous manner.""",
1034
+ }, # column
1035
+ "finDeviceAttributeValueAsInteger" : {
1036
+ "nodetype" : "column",
1037
+ "moduleName" : "Finisher-MIB",
1038
+ "oid" : "1.3.6.1.2.1.43.33.1.1.3",
1039
+ "status" : "current",
1040
+ "syntax" : {
1041
+ "type" : {
1042
+ "basetype" : "Integer32",
1043
+ "ranges" : [
1044
+ {
1045
+ "min" : "-2",
1046
+ "max" : "2147483647"
1047
+ },
1048
+ ],
1049
+ "range" : {
1050
+ "min" : "-2",
1051
+ "max" : "2147483647"
1052
+ },
1053
+ },
1054
+ },
1055
+ "access" : "readwrite",
1056
+ "default" : "-2",
1057
+ "description" :
1058
+ """Defines the integer value of the attribute. The value of
1059
+ the attribute is represented as an integer if the
1060
+ finAttributeTypeTC description for the attribute has the
1061
+ tag 'INTEGER:'.
1062
+
1063
+ Depending upon the attribute enum definition, this object
1064
+ may be either an integer, a counter, an index, or an enum.
1065
+ Attributes for which the concept of an integer value is
1066
+ not meaningful SHALL return a value of -1 for this
1067
+ attribute.""",
1068
+ }, # column
1069
+ "finDeviceAttributeValueAsOctets" : {
1070
+ "nodetype" : "column",
1071
+ "moduleName" : "Finisher-MIB",
1072
+ "oid" : "1.3.6.1.2.1.43.33.1.1.4",
1073
+ "status" : "current",
1074
+ "syntax" : {
1075
+ "type" : {
1076
+ "basetype" : "OctetString",
1077
+ "ranges" : [
1078
+ {
1079
+ "min" : "0",
1080
+ "max" : "63"
1081
+ },
1082
+ ],
1083
+ "range" : {
1084
+ "min" : "0",
1085
+ "max" : "63"
1086
+ },
1087
+ },
1088
+ },
1089
+ "access" : "readwrite",
1090
+ "default" : "",
1091
+ "description" :
1092
+ """Contains the octet string value of the attribute. The
1093
+ value of the attribute is represented as a string if the
1094
+ finAttributeTypeTC description for the attribute has the
1095
+ tag 'OCTETS:'.
1096
+
1097
+
1098
+
1099
+ Depending upon the attribute enum definition, this object
1100
+ may be either a coded character set string (text) or a
1101
+ binary octet string. Attributes for which the concept of
1102
+ an octet string value is not meaningful SHALL contain a
1103
+ zero length string.""",
1104
+ }, # column
1105
+ "finisherMIB" : {
1106
+ "nodetype" : "node",
1107
+ "moduleName" : "Finisher-MIB",
1108
+ "oid" : "1.3.6.1.2.1.111",
1109
+ "status" : "current",
1110
+ }, # node
1111
+ }, # nodes
1112
+
1113
+ "groups" : {
1114
+ "finDeviceGroup" : {
1115
+ "nodetype" : "group",
1116
+ "moduleName" : "Finisher-MIB",
1117
+ "oid" : "1.3.6.1.2.1.43.2.6.1",
1118
+ "status" : "current",
1119
+ "members" : {
1120
+ "finDeviceType" : {
1121
+ "nodetype" : "member",
1122
+ "module" : "Finisher-MIB"
1123
+ },
1124
+ "finDevicePresentOnOff" : {
1125
+ "nodetype" : "member",
1126
+ "module" : "Finisher-MIB"
1127
+ },
1128
+ "finDeviceCapacityUnit" : {
1129
+ "nodetype" : "member",
1130
+ "module" : "Finisher-MIB"
1131
+ },
1132
+ "finDeviceMaxCapacity" : {
1133
+ "nodetype" : "member",
1134
+ "module" : "Finisher-MIB"
1135
+ },
1136
+ "finDeviceCurrentCapacity" : {
1137
+ "nodetype" : "member",
1138
+ "module" : "Finisher-MIB"
1139
+ },
1140
+ "finDeviceAssociatedMediaPaths" : {
1141
+ "nodetype" : "member",
1142
+ "module" : "Finisher-MIB"
1143
+ },
1144
+ "finDeviceAssociatedOutputs" : {
1145
+ "nodetype" : "member",
1146
+ "module" : "Finisher-MIB"
1147
+ },
1148
+ "finDeviceStatus" : {
1149
+ "nodetype" : "member",
1150
+ "module" : "Finisher-MIB"
1151
+ },
1152
+ "finDeviceDescription" : {
1153
+ "nodetype" : "member",
1154
+ "module" : "Finisher-MIB"
1155
+ },
1156
+ }, # members
1157
+ "description" :
1158
+ """The finisher device group.""",
1159
+ }, # group
1160
+ "finSupplyGroup" : {
1161
+ "nodetype" : "group",
1162
+ "moduleName" : "Finisher-MIB",
1163
+ "oid" : "1.3.6.1.2.1.43.2.6.2",
1164
+ "status" : "current",
1165
+ "members" : {
1166
+ "finSupplyDeviceIndex" : {
1167
+ "nodetype" : "member",
1168
+ "module" : "Finisher-MIB"
1169
+ },
1170
+ "finSupplyClass" : {
1171
+ "nodetype" : "member",
1172
+ "module" : "Finisher-MIB"
1173
+ },
1174
+ "finSupplyType" : {
1175
+ "nodetype" : "member",
1176
+ "module" : "Finisher-MIB"
1177
+ },
1178
+ "finSupplyDescription" : {
1179
+ "nodetype" : "member",
1180
+ "module" : "Finisher-MIB"
1181
+ },
1182
+ "finSupplyUnit" : {
1183
+ "nodetype" : "member",
1184
+ "module" : "Finisher-MIB"
1185
+ },
1186
+ "finSupplyMaxCapacity" : {
1187
+ "nodetype" : "member",
1188
+ "module" : "Finisher-MIB"
1189
+ },
1190
+ "finSupplyCurrentLevel" : {
1191
+ "nodetype" : "member",
1192
+ "module" : "Finisher-MIB"
1193
+ },
1194
+ "finSupplyColorName" : {
1195
+ "nodetype" : "member",
1196
+ "module" : "Finisher-MIB"
1197
+ },
1198
+ }, # members
1199
+ "description" :
1200
+ """The finisher supply group.""",
1201
+ }, # group
1202
+ "finSupplyMediaInputGroup" : {
1203
+ "nodetype" : "group",
1204
+ "moduleName" : "Finisher-MIB",
1205
+ "oid" : "1.3.6.1.2.1.43.2.6.3",
1206
+ "status" : "current",
1207
+ "members" : {
1208
+ "finSupplyMediaInputDeviceIndex" : {
1209
+ "nodetype" : "member",
1210
+ "module" : "Finisher-MIB"
1211
+ },
1212
+ "finSupplyMediaInputSupplyIndex" : {
1213
+ "nodetype" : "member",
1214
+ "module" : "Finisher-MIB"
1215
+ },
1216
+ "finSupplyMediaInputType" : {
1217
+ "nodetype" : "member",
1218
+ "module" : "Finisher-MIB"
1219
+ },
1220
+ "finSupplyMediaInputDimUnit" : {
1221
+ "nodetype" : "member",
1222
+ "module" : "Finisher-MIB"
1223
+ },
1224
+ "finSupplyMediaInputMediaDimFeedDir" : {
1225
+ "nodetype" : "member",
1226
+ "module" : "Finisher-MIB"
1227
+ },
1228
+ "finSupplyMediaInputMediaDimXFeedDir" : {
1229
+ "nodetype" : "member",
1230
+ "module" : "Finisher-MIB"
1231
+ },
1232
+ "finSupplyMediaInputStatus" : {
1233
+ "nodetype" : "member",
1234
+ "module" : "Finisher-MIB"
1235
+ },
1236
+ "finSupplyMediaInputMediaName" : {
1237
+ "nodetype" : "member",
1238
+ "module" : "Finisher-MIB"
1239
+ },
1240
+ "finSupplyMediaInputName" : {
1241
+ "nodetype" : "member",
1242
+ "module" : "Finisher-MIB"
1243
+ },
1244
+ "finSupplyMediaInputDescription" : {
1245
+ "nodetype" : "member",
1246
+ "module" : "Finisher-MIB"
1247
+ },
1248
+ "finSupplyMediaInputSecurity" : {
1249
+ "nodetype" : "member",
1250
+ "module" : "Finisher-MIB"
1251
+ },
1252
+ "finSupplyMediaInputMediaWeight" : {
1253
+ "nodetype" : "member",
1254
+ "module" : "Finisher-MIB"
1255
+ },
1256
+ "finSupplyMediaInputMediaThickness" : {
1257
+ "nodetype" : "member",
1258
+ "module" : "Finisher-MIB"
1259
+ },
1260
+ "finSupplyMediaInputMediaType" : {
1261
+ "nodetype" : "member",
1262
+ "module" : "Finisher-MIB"
1263
+ },
1264
+ }, # members
1265
+ "description" :
1266
+ """The finisher supply, media input group.""",
1267
+ }, # group
1268
+ "finDeviceAttributeGroup" : {
1269
+ "nodetype" : "group",
1270
+ "moduleName" : "Finisher-MIB",
1271
+ "oid" : "1.3.6.1.2.1.43.2.6.4",
1272
+ "status" : "current",
1273
+ "members" : {
1274
+ "finDeviceAttributeValueAsInteger" : {
1275
+ "nodetype" : "member",
1276
+ "module" : "Finisher-MIB"
1277
+ },
1278
+ "finDeviceAttributeValueAsOctets" : {
1279
+ "nodetype" : "member",
1280
+ "module" : "Finisher-MIB"
1281
+ },
1282
+ }, # members
1283
+ "description" :
1284
+ """The finisher device attribute group. This group is mandatory
1285
+ for a finisher device that contains an inserter subunit.""",
1286
+ }, # group
1287
+ }, # groups
1288
+
1289
+ "compliances" : {
1290
+ "finMIBCompliance" : {
1291
+ "nodetype" : "compliance",
1292
+ "moduleName" : "Finisher-MIB",
1293
+ "oid" : "1.3.6.1.2.1.43.2.5",
1294
+ "status" : "current",
1295
+ "description" :
1296
+ """The compliance statement for agents that implement the
1297
+ finisher MIB.""",
1298
+ "requires" : {
1299
+ "finDeviceGroup" : {
1300
+ "nodetype" : "mandatory",
1301
+ "module" : "Finisher-MIB"
1302
+ },
1303
+ "finSupplyGroup" : {
1304
+ "nodetype" : "mandatory",
1305
+ "module" : "Finisher-MIB"
1306
+ },
1307
+ "finDeviceAttributeGroup" : {
1308
+ "nodetype" : "mandatory",
1309
+ "module" : "Finisher-MIB"
1310
+ },
1311
+ "finSupplyMediaInputGroup" : {
1312
+ "nodetype" : "optional",
1313
+ "module" : "Finisher-MIB",
1314
+ "description" :
1315
+ """This group is conditionally mandatory and must be included
1316
+ if a finisher device requires a media supply that is used
1317
+ exclusively by a finishing process.""",
1318
+ },
1319
+ }, # requires
1320
+ "refinements" : {
1321
+ "finDevicePresentOnOff" : {
1322
+ "module" : "Finisher-MIB",
1323
+ "access" : "readonly",
1324
+ "description" :
1325
+ """It is conformant to implement this object as read-only.""",
1326
+ },
1327
+ "finDeviceMaxCapacity" : {
1328
+ "module" : "Finisher-MIB",
1329
+ "access" : "readonly",
1330
+ "description" :
1331
+ """It is conformant to implement this object as read-only.""",
1332
+ },
1333
+ "finDeviceCurrentCapacity" : {
1334
+ "module" : "Finisher-MIB",
1335
+ "access" : "readonly",
1336
+ "description" :
1337
+ """It is conformant to implement this object as read-only.""",
1338
+ },
1339
+ "finSupplyMaxCapacity" : {
1340
+ "module" : "Finisher-MIB",
1341
+ "access" : "readonly",
1342
+ "description" :
1343
+ """It is conformant to implement this object as read-only.""",
1344
+ },
1345
+ "finSupplyCurrentLevel" : {
1346
+ "module" : "Finisher-MIB",
1347
+ "access" : "readonly",
1348
+ "description" :
1349
+ """It is conformant to implement this object as read-only.""",
1350
+ },
1351
+ "finSupplyMediaInputMediaDimFeedDir" : {
1352
+ "module" : "Finisher-MIB",
1353
+ "access" : "readonly",
1354
+ "description" :
1355
+ """It is conformant to implement this object as read-only.""",
1356
+ },
1357
+ "finSupplyMediaInputMediaDimXFeedDir" : {
1358
+ "module" : "Finisher-MIB",
1359
+ "access" : "readonly",
1360
+ "description" :
1361
+ """It is conformant to implement this object as read-only.""",
1362
+ },
1363
+ "finSupplyMediaInputMediaName" : {
1364
+ "module" : "Finisher-MIB",
1365
+ "access" : "readonly",
1366
+ "description" :
1367
+ """It is conformant to implement this object as read-only.""",
1368
+ },
1369
+ "finSupplyMediaInputName" : {
1370
+ "module" : "Finisher-MIB",
1371
+ "access" : "readonly",
1372
+ "description" :
1373
+ """It is conformant to implement this object as read-only.""",
1374
+ },
1375
+ "finSupplyMediaInputSecurity" : {
1376
+ "module" : "Finisher-MIB",
1377
+ "access" : "readonly",
1378
+ "description" :
1379
+ """It is conformant to implement this object as read-only.""",
1380
+ },
1381
+ "finSupplyMediaInputMediaWeight" : {
1382
+ "module" : "Finisher-MIB",
1383
+ "access" : "readonly",
1384
+ "description" :
1385
+ """It is conformant to implement this object as read-only.""",
1386
+ },
1387
+ "finSupplyMediaInputMediaThickness" : {
1388
+ "module" : "Finisher-MIB",
1389
+ "access" : "readonly",
1390
+ "description" :
1391
+ """It is conformant to implement this object as read-only.""",
1392
+ },
1393
+ "finSupplyMediaInputMediaType" : {
1394
+ "module" : "Finisher-MIB",
1395
+ "access" : "readonly",
1396
+ "description" :
1397
+ """It is conformant to implement this object as read-only.""",
1398
+ },
1399
+ "finDeviceAttributeValueAsInteger" : {
1400
+ "module" : "Finisher-MIB",
1401
+ "access" : "readonly",
1402
+ "description" :
1403
+ """It is conformant to implement this object as read-only.""",
1404
+ },
1405
+ "finDeviceAttributeValueAsOctets" : {
1406
+ "module" : "Finisher-MIB",
1407
+ "access" : "readonly",
1408
+ "description" :
1409
+ """It is conformant to implement this object as read-only.""",
1410
+ },
1411
+ }, # refinements
1412
+
1413
+ }, # compliance
1414
+ }, # compliances
1415
+
1416
+ }