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,1898 @@
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 MTA-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MTA-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MTA-MIB",
11
+
12
+ "MTA-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Mail and Directory Management Working Group""",
17
+ "contact" :
18
+ """ Ned Freed
19
+
20
+ Postal: Innosoft International, Inc.
21
+ 1050 Lakes Drive
22
+ West Covina, CA 91790
23
+ US
24
+
25
+ Tel: +1 626 919 3600
26
+ Fax: +1 626 919 3614
27
+
28
+ E-Mail: ned.freed@innosoft.com""",
29
+ "description" :
30
+ """The MIB module describing Message Transfer Agents (MTAs)""",
31
+ "revisions" : (
32
+ {
33
+ "date" : "2000-03-03 00:00",
34
+ "description" :
35
+ """This revision, published in RFC 2789, changes a number of
36
+ DisplayStrings to SnmpAdminStrings. Note that this change
37
+ is not strictly supported by SMIv2. However, the alternative
38
+ of deprecating the old objects and defining new objects
39
+ would have a more adverse impact on backward compatibility
40
+ and interoperability, given the particular semantics of
41
+ these objects. The defining reference for distinguished
42
+ names has also been updated from RFC 1779 to RFC 2253.""",
43
+ },
44
+ {
45
+ "date" : "1999-05-12 00:00",
46
+ "description" :
47
+ """This revision fixes a number of technical problems found in
48
+ previous versions: The conformance groups for different
49
+ versions of this MIB have been corrected, the recommendation
50
+ that an empty string be returned if the last operation was
51
+ successful has been removed from
52
+ mtaGroupInboundRejectionReason and
53
+ mtaGroupOutboundConnectFailureReason as it conflicts
54
+ with the stated purpose of these variables, and the
55
+ required mtaStatusCode entry has been added to
56
+ MtaGroupErrorEntry. It should be noted that this last
57
+ change in no way affects the bits on the wire.""",
58
+ },
59
+ {
60
+ "date" : "1997-08-17 00:00",
61
+ "description" :
62
+ """This revision, published in RFC 2249, adds the
63
+ mtaGroupDescription and mtaGroupURL fields, conversion
64
+ operation counters, a group hierarchy description mechanism,
65
+ counters for specific errors, oldest message IDs, per-MTA
66
+ and per-group loop counters, and a new table for tracking
67
+ any errors an MTA encounters.""",
68
+ },
69
+ {
70
+ "date" : "1993-11-28 00:00",
71
+ "description" :
72
+ """The original version of this MIB was published in RFC 1566""",
73
+ },
74
+ ),
75
+ "identity node" : "mta",
76
+ },
77
+
78
+ "imports" : (
79
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
80
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
81
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
82
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
83
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
84
+ {"module" : "SNMPv2-TC", "name" : "TimeInterval"},
85
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
86
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
87
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
88
+ {"module" : "NETWORK-SERVICES-MIB", "name" : "applIndex"},
89
+ {"module" : "NETWORK-SERVICES-MIB", "name" : "URLString"},
90
+ ),
91
+
92
+ "nodes" : {
93
+ "mta" : {
94
+ "nodetype" : "node",
95
+ "moduleName" : "MTA-MIB",
96
+ "oid" : "1.3.6.1.2.1.28",
97
+ "status" : "current",
98
+ }, # node
99
+ "mtaTable" : {
100
+ "nodetype" : "table",
101
+ "moduleName" : "MTA-MIB",
102
+ "oid" : "1.3.6.1.2.1.28.1",
103
+ "status" : "current",
104
+ "description" :
105
+ """The table holding information specific to an MTA.""",
106
+ }, # table
107
+ "mtaEntry" : {
108
+ "nodetype" : "row",
109
+ "moduleName" : "MTA-MIB",
110
+ "oid" : "1.3.6.1.2.1.28.1.1",
111
+ "status" : "current",
112
+ "linkage" : [
113
+ "applIndex",
114
+ ],
115
+ "description" :
116
+ """The entry associated with each MTA.""",
117
+ }, # row
118
+ "mtaReceivedMessages" : {
119
+ "nodetype" : "column",
120
+ "moduleName" : "MTA-MIB",
121
+ "oid" : "1.3.6.1.2.1.28.1.1.1",
122
+ "status" : "current",
123
+ "syntax" : {
124
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
125
+ },
126
+ "access" : "readonly",
127
+ "description" :
128
+ """The number of messages received since MTA initialization.
129
+ This includes messages transmitted to this MTA from other
130
+ MTAs as well as messages that have been submitted to the
131
+ MTA directly by end-users or applications.""",
132
+ }, # column
133
+ "mtaStoredMessages" : {
134
+ "nodetype" : "column",
135
+ "moduleName" : "MTA-MIB",
136
+ "oid" : "1.3.6.1.2.1.28.1.1.2",
137
+ "status" : "current",
138
+ "syntax" : {
139
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
140
+ },
141
+ "access" : "readonly",
142
+ "description" :
143
+ """The total number of messages currently stored in the MTA.
144
+ This includes messages that are awaiting transmission to
145
+ some other MTA or are waiting for delivery to an end-user
146
+ or application.""",
147
+ }, # column
148
+ "mtaTransmittedMessages" : {
149
+ "nodetype" : "column",
150
+ "moduleName" : "MTA-MIB",
151
+ "oid" : "1.3.6.1.2.1.28.1.1.3",
152
+ "status" : "current",
153
+ "syntax" : {
154
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
155
+ },
156
+ "access" : "readonly",
157
+ "description" :
158
+ """The number of messages transmitted since MTA initialization.
159
+ This includes messages that were transmitted to some other
160
+ MTA or are waiting for delivery to an end-user or
161
+ application.""",
162
+ }, # column
163
+ "mtaReceivedVolume" : {
164
+ "nodetype" : "column",
165
+ "moduleName" : "MTA-MIB",
166
+ "oid" : "1.3.6.1.2.1.28.1.1.4",
167
+ "status" : "current",
168
+ "syntax" : {
169
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
170
+ },
171
+ "access" : "readonly",
172
+ "units" : "K-octets",
173
+ "description" :
174
+ """The total volume of messages received since MTA
175
+ initialization, measured in kilo-octets. This volume should
176
+ include all transferred data that is logically above the mail
177
+ transport protocol level. For example, an SMTP-based MTA
178
+ should use the number of kilo-octets in the message header
179
+ and body, while an X.400-based MTA should use the number of
180
+ kilo-octets of P2 data. This includes messages transmitted
181
+ to this MTA from other MTAs as well as messages that have
182
+ been submitted to the MTA directly by end-users or
183
+ applications.""",
184
+ }, # column
185
+ "mtaStoredVolume" : {
186
+ "nodetype" : "column",
187
+ "moduleName" : "MTA-MIB",
188
+ "oid" : "1.3.6.1.2.1.28.1.1.5",
189
+ "status" : "current",
190
+ "syntax" : {
191
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
192
+ },
193
+ "access" : "readonly",
194
+ "units" : "K-octets",
195
+ "description" :
196
+ """The total volume of messages currently stored in the MTA,
197
+ measured in kilo-octets. This volume should include all
198
+ stored data that is logically above the mail transport
199
+ protocol level. For example, an SMTP-based MTA should
200
+ use the number of kilo-octets in the message header and
201
+ body, while an X.400-based MTA would use the number of
202
+ kilo-octets of P2 data. This includes messages that are
203
+ awaiting transmission to some other MTA or are waiting
204
+ for delivery to an end-user or application.""",
205
+ }, # column
206
+ "mtaTransmittedVolume" : {
207
+ "nodetype" : "column",
208
+ "moduleName" : "MTA-MIB",
209
+ "oid" : "1.3.6.1.2.1.28.1.1.6",
210
+ "status" : "current",
211
+ "syntax" : {
212
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
213
+ },
214
+ "access" : "readonly",
215
+ "units" : "K-octets",
216
+ "description" :
217
+ """The total volume of messages transmitted since MTA
218
+ initialization, measured in kilo-octets. This volume should
219
+ include all transferred data that is logically above the mail
220
+ transport protocol level. For example, an SMTP-based MTA
221
+ should use the number of kilo-octets in the message header
222
+ and body, while an X.400-based MTA should use the number of
223
+ kilo-octets of P2 data. This includes messages that were
224
+ transmitted to some other MTA or are waiting for delivery
225
+ to an end-user or application.""",
226
+ }, # column
227
+ "mtaReceivedRecipients" : {
228
+ "nodetype" : "column",
229
+ "moduleName" : "MTA-MIB",
230
+ "oid" : "1.3.6.1.2.1.28.1.1.7",
231
+ "status" : "current",
232
+ "syntax" : {
233
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
234
+ },
235
+ "access" : "readonly",
236
+ "description" :
237
+ """The total number of recipients specified in all messages
238
+ received since MTA initialization. Recipients this MTA
239
+ has no responsibility for, i.e. inactive envelope
240
+ recipients or ones referred to in message headers,
241
+ should not be counted even if information about such
242
+ recipients is available. This includes messages
243
+ transmitted to this MTA from other MTAs as well as
244
+ messages that have been submitted to the MTA directly
245
+ by end-users or applications.""",
246
+ }, # column
247
+ "mtaStoredRecipients" : {
248
+ "nodetype" : "column",
249
+ "moduleName" : "MTA-MIB",
250
+ "oid" : "1.3.6.1.2.1.28.1.1.8",
251
+ "status" : "current",
252
+ "syntax" : {
253
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
254
+ },
255
+ "access" : "readonly",
256
+ "description" :
257
+ """The total number of recipients specified in all messages
258
+ currently stored in the MTA. Recipients this MTA has no
259
+ responsibility for, i.e. inactive envelope recipients or
260
+ ones referred to in message headers, should not be
261
+ counted. This includes messages that are awaiting
262
+ transmission to some other MTA or are waiting for
263
+ delivery to an end-user or application.""",
264
+ }, # column
265
+ "mtaTransmittedRecipients" : {
266
+ "nodetype" : "column",
267
+ "moduleName" : "MTA-MIB",
268
+ "oid" : "1.3.6.1.2.1.28.1.1.9",
269
+ "status" : "current",
270
+ "syntax" : {
271
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
272
+ },
273
+ "access" : "readonly",
274
+ "description" :
275
+ """The total number of recipients specified in all messages
276
+ transmitted since MTA initialization. Recipients this
277
+ MTA had no responsibility for, i.e. inactive envelope
278
+ recipients or ones referred to in message headers,
279
+ should not be counted. This includes messages that were
280
+ transmitted to some other MTA or are waiting for
281
+ delivery to an end-user or application.""",
282
+ }, # column
283
+ "mtaSuccessfulConvertedMessages" : {
284
+ "nodetype" : "column",
285
+ "moduleName" : "MTA-MIB",
286
+ "oid" : "1.3.6.1.2.1.28.1.1.10",
287
+ "status" : "current",
288
+ "syntax" : {
289
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
290
+ },
291
+ "access" : "readonly",
292
+ "description" :
293
+ """The number of messages that have been successfully
294
+ converted from one form to another since MTA
295
+ initialization.""",
296
+ }, # column
297
+ "mtaFailedConvertedMessages" : {
298
+ "nodetype" : "column",
299
+ "moduleName" : "MTA-MIB",
300
+ "oid" : "1.3.6.1.2.1.28.1.1.11",
301
+ "status" : "current",
302
+ "syntax" : {
303
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
304
+ },
305
+ "access" : "readonly",
306
+ "description" :
307
+ """The number of messages for which an unsuccessful
308
+ attempt was made to convert them from one form to
309
+ another since MTA initialization.""",
310
+ }, # column
311
+ "mtaLoopsDetected" : {
312
+ "nodetype" : "column",
313
+ "moduleName" : "MTA-MIB",
314
+ "oid" : "1.3.6.1.2.1.28.1.1.12",
315
+ "status" : "current",
316
+ "syntax" : {
317
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
318
+ },
319
+ "access" : "readonly",
320
+ "description" :
321
+ """A message loop is defined as a situation where the MTA
322
+ decides that a given message will never be delivered to
323
+ one or more recipients and instead will continue to
324
+ loop endlessly through one or more MTAs. This variable
325
+ counts the number of times the MTA has detected such a
326
+ situation since MTA initialization. Note that the
327
+ mechanism MTAs use to detect loops (e.g., trace field
328
+ counting, count of references to this MTA in a trace
329
+ field, examination of DNS or other directory information,
330
+ etc.), the level at which loops are detected (e.g., per
331
+ message, per recipient, per directory entry, etc.), and
332
+ the handling of a loop once it is detected (e.g., looping
333
+ messages are held, looping messages are bounced or sent
334
+ to the postmaster, messages that the MTA knows will loop
335
+ won't be accepted, etc.) vary widely from one MTA to the
336
+ next and cannot be inferred from this variable.""",
337
+ }, # column
338
+ "mtaGroupTable" : {
339
+ "nodetype" : "table",
340
+ "moduleName" : "MTA-MIB",
341
+ "oid" : "1.3.6.1.2.1.28.2",
342
+ "status" : "current",
343
+ "description" :
344
+ """The table holding information specific to each MTA group.""",
345
+ }, # table
346
+ "mtaGroupEntry" : {
347
+ "nodetype" : "row",
348
+ "moduleName" : "MTA-MIB",
349
+ "oid" : "1.3.6.1.2.1.28.2.1",
350
+ "status" : "current",
351
+ "linkage" : [
352
+ "applIndex",
353
+ "mtaGroupIndex",
354
+ ],
355
+ "description" :
356
+ """The entry associated with each MTA group.""",
357
+ }, # row
358
+ "mtaGroupIndex" : {
359
+ "nodetype" : "column",
360
+ "moduleName" : "MTA-MIB",
361
+ "oid" : "1.3.6.1.2.1.28.2.1.1",
362
+ "status" : "current",
363
+ "syntax" : {
364
+ "type" : {
365
+ "basetype" : "Integer32",
366
+ "ranges" : [
367
+ {
368
+ "min" : "1",
369
+ "max" : "2147483647"
370
+ },
371
+ ],
372
+ "range" : {
373
+ "min" : "1",
374
+ "max" : "2147483647"
375
+ },
376
+ },
377
+ },
378
+ "access" : "noaccess",
379
+ "description" :
380
+ """The index associated with a group for a given MTA.""",
381
+ }, # column
382
+ "mtaGroupReceivedMessages" : {
383
+ "nodetype" : "column",
384
+ "moduleName" : "MTA-MIB",
385
+ "oid" : "1.3.6.1.2.1.28.2.1.2",
386
+ "status" : "current",
387
+ "syntax" : {
388
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
389
+ },
390
+ "access" : "readonly",
391
+ "description" :
392
+ """The number of messages received to this group since
393
+ group creation.""",
394
+ }, # column
395
+ "mtaGroupRejectedMessages" : {
396
+ "nodetype" : "column",
397
+ "moduleName" : "MTA-MIB",
398
+ "oid" : "1.3.6.1.2.1.28.2.1.3",
399
+ "status" : "current",
400
+ "syntax" : {
401
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
402
+ },
403
+ "access" : "readonly",
404
+ "description" :
405
+ """The number of messages rejected by this group since
406
+ group creation.""",
407
+ }, # column
408
+ "mtaGroupStoredMessages" : {
409
+ "nodetype" : "column",
410
+ "moduleName" : "MTA-MIB",
411
+ "oid" : "1.3.6.1.2.1.28.2.1.4",
412
+ "status" : "current",
413
+ "syntax" : {
414
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
415
+ },
416
+ "access" : "readonly",
417
+ "description" :
418
+ """The total number of messages currently stored in this
419
+ group's queue.""",
420
+ }, # column
421
+ "mtaGroupTransmittedMessages" : {
422
+ "nodetype" : "column",
423
+ "moduleName" : "MTA-MIB",
424
+ "oid" : "1.3.6.1.2.1.28.2.1.5",
425
+ "status" : "current",
426
+ "syntax" : {
427
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
428
+ },
429
+ "access" : "readonly",
430
+ "description" :
431
+ """The number of messages transmitted by this group since
432
+ group creation.""",
433
+ }, # column
434
+ "mtaGroupReceivedVolume" : {
435
+ "nodetype" : "column",
436
+ "moduleName" : "MTA-MIB",
437
+ "oid" : "1.3.6.1.2.1.28.2.1.6",
438
+ "status" : "current",
439
+ "syntax" : {
440
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
441
+ },
442
+ "access" : "readonly",
443
+ "units" : "K-octets",
444
+ "description" :
445
+ """The total volume of messages received to this group since
446
+ group creation, measured in kilo-octets. This volume
447
+ should include all transferred data that is logically above
448
+ the mail transport protocol level. For example, an
449
+ SMTP-based MTA should use the number of kilo-octets in the
450
+ message header and body, while an X.400-based MTA should use
451
+ the number of kilo-octets of P2 data.""",
452
+ }, # column
453
+ "mtaGroupStoredVolume" : {
454
+ "nodetype" : "column",
455
+ "moduleName" : "MTA-MIB",
456
+ "oid" : "1.3.6.1.2.1.28.2.1.7",
457
+ "status" : "current",
458
+ "syntax" : {
459
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
460
+ },
461
+ "access" : "readonly",
462
+ "units" : "K-octets",
463
+ "description" :
464
+ """The total volume of messages currently stored in this
465
+ group's queue, measured in kilo-octets. This volume should
466
+ include all stored data that is logically above the mail
467
+ transport protocol level. For example, an SMTP-based
468
+ MTA should use the number of kilo-octets in the message
469
+ header and body, while an X.400-based MTA would use the
470
+ number of kilo-octets of P2 data.""",
471
+ }, # column
472
+ "mtaGroupTransmittedVolume" : {
473
+ "nodetype" : "column",
474
+ "moduleName" : "MTA-MIB",
475
+ "oid" : "1.3.6.1.2.1.28.2.1.8",
476
+ "status" : "current",
477
+ "syntax" : {
478
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
479
+ },
480
+ "access" : "readonly",
481
+ "units" : "K-octets",
482
+ "description" :
483
+ """The total volume of messages transmitted by this group
484
+ since group creation, measured in kilo-octets. This
485
+ volume should include all transferred data that is logically
486
+ above the mail transport protocol level. For example, an
487
+ SMTP-based MTA should use the number of kilo-octets in the
488
+ message header and body, while an X.400-based MTA should use
489
+ the number of kilo-octets of P2 data.""",
490
+ }, # column
491
+ "mtaGroupReceivedRecipients" : {
492
+ "nodetype" : "column",
493
+ "moduleName" : "MTA-MIB",
494
+ "oid" : "1.3.6.1.2.1.28.2.1.9",
495
+ "status" : "current",
496
+ "syntax" : {
497
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
498
+ },
499
+ "access" : "readonly",
500
+ "description" :
501
+ """The total number of recipients specified in all messages
502
+ received to this group since group creation.
503
+ Recipients this MTA has no responsibility for should not
504
+ be counted.""",
505
+ }, # column
506
+ "mtaGroupStoredRecipients" : {
507
+ "nodetype" : "column",
508
+ "moduleName" : "MTA-MIB",
509
+ "oid" : "1.3.6.1.2.1.28.2.1.10",
510
+ "status" : "current",
511
+ "syntax" : {
512
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
513
+ },
514
+ "access" : "readonly",
515
+ "description" :
516
+ """The total number of recipients specified in all messages
517
+ currently stored in this group's queue. Recipients this
518
+ MTA has no responsibility for should not be counted.""",
519
+ }, # column
520
+ "mtaGroupTransmittedRecipients" : {
521
+ "nodetype" : "column",
522
+ "moduleName" : "MTA-MIB",
523
+ "oid" : "1.3.6.1.2.1.28.2.1.11",
524
+ "status" : "current",
525
+ "syntax" : {
526
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
527
+ },
528
+ "access" : "readonly",
529
+ "description" :
530
+ """The total number of recipients specified in all messages
531
+ transmitted by this group since group creation.
532
+ Recipients this MTA had no responsibility for should not
533
+ be counted.""",
534
+ }, # column
535
+ "mtaGroupOldestMessageStored" : {
536
+ "nodetype" : "column",
537
+ "moduleName" : "MTA-MIB",
538
+ "oid" : "1.3.6.1.2.1.28.2.1.12",
539
+ "status" : "current",
540
+ "syntax" : {
541
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
542
+ },
543
+ "access" : "readonly",
544
+ "description" :
545
+ """Time since the oldest message in this group's queue was
546
+ placed in the queue.""",
547
+ }, # column
548
+ "mtaGroupInboundAssociations" : {
549
+ "nodetype" : "column",
550
+ "moduleName" : "MTA-MIB",
551
+ "oid" : "1.3.6.1.2.1.28.2.1.13",
552
+ "status" : "current",
553
+ "syntax" : {
554
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
555
+ },
556
+ "access" : "readonly",
557
+ "description" :
558
+ """The number of current associations to the group, where the
559
+ group is the responder.""",
560
+ }, # column
561
+ "mtaGroupOutboundAssociations" : {
562
+ "nodetype" : "column",
563
+ "moduleName" : "MTA-MIB",
564
+ "oid" : "1.3.6.1.2.1.28.2.1.14",
565
+ "status" : "current",
566
+ "syntax" : {
567
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
568
+ },
569
+ "access" : "readonly",
570
+ "description" :
571
+ """The number of current associations to the group, where the
572
+ group is the initiator.""",
573
+ }, # column
574
+ "mtaGroupAccumulatedInboundAssociations" : {
575
+ "nodetype" : "column",
576
+ "moduleName" : "MTA-MIB",
577
+ "oid" : "1.3.6.1.2.1.28.2.1.15",
578
+ "status" : "current",
579
+ "syntax" : {
580
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
581
+ },
582
+ "access" : "readonly",
583
+ "description" :
584
+ """The total number of associations to the group since
585
+ group creation, where the MTA was the responder.""",
586
+ }, # column
587
+ "mtaGroupAccumulatedOutboundAssociations" : {
588
+ "nodetype" : "column",
589
+ "moduleName" : "MTA-MIB",
590
+ "oid" : "1.3.6.1.2.1.28.2.1.16",
591
+ "status" : "current",
592
+ "syntax" : {
593
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
594
+ },
595
+ "access" : "readonly",
596
+ "description" :
597
+ """The total number of associations from the group since
598
+ group creation, where the MTA was the initiator.""",
599
+ }, # column
600
+ "mtaGroupLastInboundActivity" : {
601
+ "nodetype" : "column",
602
+ "moduleName" : "MTA-MIB",
603
+ "oid" : "1.3.6.1.2.1.28.2.1.17",
604
+ "status" : "current",
605
+ "syntax" : {
606
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
607
+ },
608
+ "access" : "readonly",
609
+ "description" :
610
+ """Time since the last time that this group had an active
611
+ inbound association for purposes of message reception.""",
612
+ }, # column
613
+ "mtaGroupLastOutboundActivity" : {
614
+ "nodetype" : "column",
615
+ "moduleName" : "MTA-MIB",
616
+ "oid" : "1.3.6.1.2.1.28.2.1.18",
617
+ "status" : "current",
618
+ "syntax" : {
619
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
620
+ },
621
+ "access" : "readonly",
622
+ "description" :
623
+ """Time since the last time that this group had a
624
+ successful outbound association for purposes of
625
+ message delivery.""",
626
+ }, # column
627
+ "mtaGroupRejectedInboundAssociations" : {
628
+ "nodetype" : "column",
629
+ "moduleName" : "MTA-MIB",
630
+ "oid" : "1.3.6.1.2.1.28.2.1.19",
631
+ "status" : "current",
632
+ "syntax" : {
633
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
634
+ },
635
+ "access" : "readonly",
636
+ "description" :
637
+ """The total number of inbound associations the group has
638
+ rejected, since group creation. Rejected associations
639
+ are not counted in the accumulated association totals.""",
640
+ }, # column
641
+ "mtaGroupFailedOutboundAssociations" : {
642
+ "nodetype" : "column",
643
+ "moduleName" : "MTA-MIB",
644
+ "oid" : "1.3.6.1.2.1.28.2.1.20",
645
+ "status" : "current",
646
+ "syntax" : {
647
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
648
+ },
649
+ "access" : "readonly",
650
+ "description" :
651
+ """The total number associations where the group was the
652
+ initiator and association establishment has failed,
653
+ since group creation. Failed associations are
654
+ not counted in the accumulated association totals.""",
655
+ }, # column
656
+ "mtaGroupInboundRejectionReason" : {
657
+ "nodetype" : "column",
658
+ "moduleName" : "MTA-MIB",
659
+ "oid" : "1.3.6.1.2.1.28.2.1.21",
660
+ "status" : "current",
661
+ "syntax" : {
662
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
663
+ },
664
+ "access" : "readonly",
665
+ "description" :
666
+ """The failure reason, if any, for the last association this
667
+ group refused to respond to. If no association attempt
668
+ has been made since the MTA was initialized the value
669
+ should be 'never'.""",
670
+ }, # column
671
+ "mtaGroupOutboundConnectFailureReason" : {
672
+ "nodetype" : "column",
673
+ "moduleName" : "MTA-MIB",
674
+ "oid" : "1.3.6.1.2.1.28.2.1.22",
675
+ "status" : "current",
676
+ "syntax" : {
677
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
678
+ },
679
+ "access" : "readonly",
680
+ "description" :
681
+ """The failure reason, if any, for the last association attempt
682
+ this group initiated. If no association attempt has been
683
+ made since the MTA was initialized the value should be
684
+ 'never'.""",
685
+ }, # column
686
+ "mtaGroupScheduledRetry" : {
687
+ "nodetype" : "column",
688
+ "moduleName" : "MTA-MIB",
689
+ "oid" : "1.3.6.1.2.1.28.2.1.23",
690
+ "status" : "current",
691
+ "syntax" : {
692
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
693
+ },
694
+ "access" : "readonly",
695
+ "description" :
696
+ """The amount of time until this group is next scheduled to
697
+ attempt to make an association.""",
698
+ }, # column
699
+ "mtaGroupMailProtocol" : {
700
+ "nodetype" : "column",
701
+ "moduleName" : "MTA-MIB",
702
+ "oid" : "1.3.6.1.2.1.28.2.1.24",
703
+ "status" : "current",
704
+ "syntax" : {
705
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
706
+ },
707
+ "access" : "readonly",
708
+ "description" :
709
+ """An identification of the protocol being used by this group.
710
+ For an group employing OSI protocols, this will be the
711
+ Application Context. For Internet applications, OID
712
+ values of the form {applTCPProtoID port} or {applUDPProtoID
713
+ port} are used for TCP-based and UDP-based protocols,
714
+ respectively. In either case 'port' corresponds to the
715
+ primary port number being used by the protocol. The
716
+ usual IANA procedures may be used to register ports for
717
+ new protocols. applTCPProtoID and applUDPProtoID are
718
+ defined in the NETWORK-SERVICES-MIB, RFC 2788.""",
719
+ }, # column
720
+ "mtaGroupName" : {
721
+ "nodetype" : "column",
722
+ "moduleName" : "MTA-MIB",
723
+ "oid" : "1.3.6.1.2.1.28.2.1.25",
724
+ "status" : "current",
725
+ "syntax" : {
726
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
727
+ },
728
+ "access" : "readonly",
729
+ "description" :
730
+ """A descriptive name for the group. If this group connects to
731
+ a single remote MTA this should be the name of that MTA. If
732
+ this in turn is an Internet MTA this should be the domain
733
+ name. For an OSI MTA it should be the string encoded
734
+ distinguished name of the managed object using the format
735
+ defined in RFC 2253. For X.400(1984) MTAs which do not
736
+ have a Distinguished Name, the RFC 2156 syntax
737
+ 'mta in globalid' used in X400-Received: fields can be
738
+ used.""",
739
+ }, # column
740
+ "mtaGroupSuccessfulConvertedMessages" : {
741
+ "nodetype" : "column",
742
+ "moduleName" : "MTA-MIB",
743
+ "oid" : "1.3.6.1.2.1.28.2.1.26",
744
+ "status" : "current",
745
+ "syntax" : {
746
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
747
+ },
748
+ "access" : "readonly",
749
+ "description" :
750
+ """The number of messages that have been successfully
751
+ converted from one form to another in this group
752
+ since group creation.""",
753
+ }, # column
754
+ "mtaGroupFailedConvertedMessages" : {
755
+ "nodetype" : "column",
756
+ "moduleName" : "MTA-MIB",
757
+ "oid" : "1.3.6.1.2.1.28.2.1.27",
758
+ "status" : "current",
759
+ "syntax" : {
760
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
761
+ },
762
+ "access" : "readonly",
763
+ "description" :
764
+ """The number of messages for which an unsuccessful
765
+ attempt was made to convert them from one form to
766
+ another in this group since group creation.""",
767
+ }, # column
768
+ "mtaGroupDescription" : {
769
+ "nodetype" : "column",
770
+ "moduleName" : "MTA-MIB",
771
+ "oid" : "1.3.6.1.2.1.28.2.1.28",
772
+ "status" : "current",
773
+ "syntax" : {
774
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
775
+ },
776
+ "access" : "readonly",
777
+ "description" :
778
+ """A description of the group's purpose. This information is
779
+ intended to identify the group in a status display.""",
780
+ }, # column
781
+ "mtaGroupURL" : {
782
+ "nodetype" : "column",
783
+ "moduleName" : "MTA-MIB",
784
+ "oid" : "1.3.6.1.2.1.28.2.1.29",
785
+ "status" : "current",
786
+ "syntax" : {
787
+ "type" : { "module" :"NETWORK-SERVICES-MIB", "name" : "URLString"},
788
+ },
789
+ "access" : "readonly",
790
+ "description" :
791
+ """A URL pointing to a description of the group. This
792
+ information is intended to identify and briefly describe
793
+ the group in a status display.""",
794
+ }, # column
795
+ "mtaGroupCreationTime" : {
796
+ "nodetype" : "column",
797
+ "moduleName" : "MTA-MIB",
798
+ "oid" : "1.3.6.1.2.1.28.2.1.30",
799
+ "status" : "current",
800
+ "syntax" : {
801
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
802
+ },
803
+ "access" : "readonly",
804
+ "description" :
805
+ """Time since this group was first created.""",
806
+ }, # column
807
+ "mtaGroupHierarchy" : {
808
+ "nodetype" : "column",
809
+ "moduleName" : "MTA-MIB",
810
+ "oid" : "1.3.6.1.2.1.28.2.1.31",
811
+ "status" : "current",
812
+ "syntax" : {
813
+ "type" : {
814
+ "basetype" : "Integer32",
815
+ "ranges" : [
816
+ {
817
+ "min" : "-2147483648",
818
+ "max" : "2147483647"
819
+ },
820
+ ],
821
+ "range" : {
822
+ "min" : "-2147483648",
823
+ "max" : "2147483647"
824
+ },
825
+ },
826
+ },
827
+ "access" : "readonly",
828
+ "description" :
829
+ """Describes how this group fits into the hierarchy. A
830
+ positive value is interpreted as an mtaGroupIndex
831
+ value for some other group whose variables include
832
+ those of this group (and usually others). A negative
833
+ value is interpreted as a group collection code: Groups
834
+ with common negative hierarchy values comprise one
835
+ particular breakdown of MTA activity as a whole. A
836
+ zero value means that this MIB implementation doesn't
837
+ implement hierarchy indicators and thus the overall
838
+ group hierarchy cannot be determined.""",
839
+ }, # column
840
+ "mtaGroupOldestMessageId" : {
841
+ "nodetype" : "column",
842
+ "moduleName" : "MTA-MIB",
843
+ "oid" : "1.3.6.1.2.1.28.2.1.32",
844
+ "status" : "current",
845
+ "syntax" : {
846
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
847
+ },
848
+ "access" : "readonly",
849
+ "description" :
850
+ """Message ID of the oldest message in the group's queue.
851
+ Whenever possible this should be in the form of an
852
+ RFC 822 msg-id; X.400 may convert X.400 message
853
+ identifiers to this form by following the rules laid
854
+ out in RFC2156.""",
855
+ }, # column
856
+ "mtaGroupLoopsDetected" : {
857
+ "nodetype" : "column",
858
+ "moduleName" : "MTA-MIB",
859
+ "oid" : "1.3.6.1.2.1.28.2.1.33",
860
+ "status" : "current",
861
+ "syntax" : {
862
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
863
+ },
864
+ "access" : "readonly",
865
+ "description" :
866
+ """A message loop is defined as a situation where the MTA
867
+ decides that a given message will never be delivered to
868
+ one or more recipients and instead will continue to
869
+ loop endlessly through one or more MTAs. This variable
870
+ counts the number of times the MTA has detected such a
871
+ situation in conjunction with something associated with
872
+ this group since group creation. Note that the
873
+ mechanism MTAs use to detect loops (e.g., trace field
874
+ counting, count of references to this MTA in a trace
875
+ field, examination of DNS or other directory information,
876
+ etc.), the level at which loops are detected (e.g., per
877
+ message, per recipient, per directory entry, etc.), and
878
+ the handling of a loop once it is detected (e.g., looping
879
+ messages are held, looping messages are bounced or sent
880
+ to the postmaster, messages that the MTA knows will loop
881
+ won't be accepted, etc.) vary widely from one MTA to the
882
+ next and cannot be inferred from this variable.""",
883
+ }, # column
884
+ "mtaGroupLastOutboundAssociationAttempt" : {
885
+ "nodetype" : "column",
886
+ "moduleName" : "MTA-MIB",
887
+ "oid" : "1.3.6.1.2.1.28.2.1.34",
888
+ "status" : "current",
889
+ "syntax" : {
890
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
891
+ },
892
+ "access" : "readonly",
893
+ "description" :
894
+ """Time since the last time that this group attempted
895
+ to make an outbound association for purposes of
896
+ message delivery.""",
897
+ }, # column
898
+ "mtaGroupAssociationTable" : {
899
+ "nodetype" : "table",
900
+ "moduleName" : "MTA-MIB",
901
+ "oid" : "1.3.6.1.2.1.28.3",
902
+ "status" : "current",
903
+ "description" :
904
+ """The table holding information regarding the associations
905
+ for each MTA group.""",
906
+ }, # table
907
+ "mtaGroupAssociationEntry" : {
908
+ "nodetype" : "row",
909
+ "moduleName" : "MTA-MIB",
910
+ "oid" : "1.3.6.1.2.1.28.3.1",
911
+ "status" : "current",
912
+ "linkage" : [
913
+ "applIndex",
914
+ "mtaGroupIndex",
915
+ "mtaGroupAssociationIndex",
916
+ ],
917
+ "description" :
918
+ """The entry holding information regarding the associations
919
+ for each MTA group.""",
920
+ }, # row
921
+ "mtaGroupAssociationIndex" : {
922
+ "nodetype" : "column",
923
+ "moduleName" : "MTA-MIB",
924
+ "oid" : "1.3.6.1.2.1.28.3.1.1",
925
+ "status" : "current",
926
+ "syntax" : {
927
+ "type" : {
928
+ "basetype" : "Integer32",
929
+ "ranges" : [
930
+ {
931
+ "min" : "1",
932
+ "max" : "2147483647"
933
+ },
934
+ ],
935
+ "range" : {
936
+ "min" : "1",
937
+ "max" : "2147483647"
938
+ },
939
+ },
940
+ },
941
+ "access" : "readonly",
942
+ "description" :
943
+ """Reference into association table to allow correlation of
944
+ this group's active associations with the association table.""",
945
+ }, # column
946
+ "mtaConformance" : {
947
+ "nodetype" : "node",
948
+ "moduleName" : "MTA-MIB",
949
+ "oid" : "1.3.6.1.2.1.28.4",
950
+ }, # node
951
+ "mtaGroups" : {
952
+ "nodetype" : "node",
953
+ "moduleName" : "MTA-MIB",
954
+ "oid" : "1.3.6.1.2.1.28.4.1",
955
+ }, # node
956
+ "mtaCompliances" : {
957
+ "nodetype" : "node",
958
+ "moduleName" : "MTA-MIB",
959
+ "oid" : "1.3.6.1.2.1.28.4.2",
960
+ }, # node
961
+ "mtaGroupErrorTable" : {
962
+ "nodetype" : "table",
963
+ "moduleName" : "MTA-MIB",
964
+ "oid" : "1.3.6.1.2.1.28.5",
965
+ "status" : "current",
966
+ "description" :
967
+ """The table holding information regarding accumulated errors
968
+ for each MTA group.""",
969
+ }, # table
970
+ "mtaGroupErrorEntry" : {
971
+ "nodetype" : "row",
972
+ "moduleName" : "MTA-MIB",
973
+ "oid" : "1.3.6.1.2.1.28.5.1",
974
+ "status" : "current",
975
+ "linkage" : [
976
+ "applIndex",
977
+ "mtaGroupIndex",
978
+ "mtaStatusCode",
979
+ ],
980
+ "description" :
981
+ """The entry holding information regarding accumulated
982
+ errors for each MTA group.""",
983
+ }, # row
984
+ "mtaGroupInboundErrorCount" : {
985
+ "nodetype" : "column",
986
+ "moduleName" : "MTA-MIB",
987
+ "oid" : "1.3.6.1.2.1.28.5.1.1",
988
+ "status" : "current",
989
+ "syntax" : {
990
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
991
+ },
992
+ "access" : "readonly",
993
+ "description" :
994
+ """Count of the number of errors of a given type that have
995
+ been accumulated in association with a particular group
996
+ while processing incoming messages. In the case of SMTP
997
+ these will typically be errors reporting by an SMTP
998
+ server to the remote client; in the case of X.400
999
+ these will typically be errors encountered while
1000
+ processing an incoming message.""",
1001
+ }, # column
1002
+ "mtaGroupInternalErrorCount" : {
1003
+ "nodetype" : "column",
1004
+ "moduleName" : "MTA-MIB",
1005
+ "oid" : "1.3.6.1.2.1.28.5.1.2",
1006
+ "status" : "current",
1007
+ "syntax" : {
1008
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1009
+ },
1010
+ "access" : "readonly",
1011
+ "description" :
1012
+ """Count of the number of errors of a given type that have
1013
+ been accumulated in association with a particular group
1014
+ during internal MTA processing.""",
1015
+ }, # column
1016
+ "mtaGroupOutboundErrorCount" : {
1017
+ "nodetype" : "column",
1018
+ "moduleName" : "MTA-MIB",
1019
+ "oid" : "1.3.6.1.2.1.28.5.1.3",
1020
+ "status" : "current",
1021
+ "syntax" : {
1022
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1023
+ },
1024
+ "access" : "readonly",
1025
+ "description" :
1026
+ """Count of the number of errors of a given type that have
1027
+ been accumulated in association with a particular group's
1028
+ outbound connection activities. In the case of an SMTP
1029
+ client these will typically be errors reported while
1030
+ attempting to contact or while communicating with the
1031
+ remote SMTP server. In the case of X.400 these will
1032
+ typically be errors encountered while constructing
1033
+ or attempting to deliver an outgoing message.""",
1034
+ }, # column
1035
+ "mtaStatusCode" : {
1036
+ "nodetype" : "column",
1037
+ "moduleName" : "MTA-MIB",
1038
+ "oid" : "1.3.6.1.2.1.28.5.1.4",
1039
+ "status" : "current",
1040
+ "syntax" : {
1041
+ "type" : {
1042
+ "basetype" : "Integer32",
1043
+ "ranges" : [
1044
+ {
1045
+ "min" : "4000000",
1046
+ "max" : "5999999"
1047
+ },
1048
+ ],
1049
+ "range" : {
1050
+ "min" : "4000000",
1051
+ "max" : "5999999"
1052
+ },
1053
+ },
1054
+ },
1055
+ "access" : "noaccess",
1056
+ "description" :
1057
+ """An index capable of representing an Enhanced Mail System
1058
+ Status Code. Enhanced Mail System Status Codes are
1059
+ defined in RFC 1893. These codes have the form
1060
+
1061
+ class.subject.detail
1062
+
1063
+ Here 'class' is either 2, 4, or 5 and both 'subject' and
1064
+ 'detail' are integers in the range 0..999. Given a status
1065
+ code the corresponding index value is defined to be
1066
+ ((class * 1000) + subject) * 1000 + detail. Both SMTP
1067
+ error response codes and X.400 reason and diagnostic codes
1068
+ can be mapped into these codes, resulting in a namespace
1069
+ capable of describing most error conditions a mail system
1070
+ encounters in a generic yet detailed way.""",
1071
+ }, # column
1072
+ }, # nodes
1073
+
1074
+ "groups" : {
1075
+ "mtaRFC2249Group" : {
1076
+ "nodetype" : "group",
1077
+ "moduleName" : "MTA-MIB",
1078
+ "oid" : "1.3.6.1.2.1.28.4.1.4",
1079
+ "status" : "current",
1080
+ "members" : {
1081
+ "mtaReceivedMessages" : {
1082
+ "nodetype" : "member",
1083
+ "module" : "MTA-MIB"
1084
+ },
1085
+ "mtaStoredMessages" : {
1086
+ "nodetype" : "member",
1087
+ "module" : "MTA-MIB"
1088
+ },
1089
+ "mtaTransmittedMessages" : {
1090
+ "nodetype" : "member",
1091
+ "module" : "MTA-MIB"
1092
+ },
1093
+ "mtaReceivedVolume" : {
1094
+ "nodetype" : "member",
1095
+ "module" : "MTA-MIB"
1096
+ },
1097
+ "mtaStoredVolume" : {
1098
+ "nodetype" : "member",
1099
+ "module" : "MTA-MIB"
1100
+ },
1101
+ "mtaTransmittedVolume" : {
1102
+ "nodetype" : "member",
1103
+ "module" : "MTA-MIB"
1104
+ },
1105
+ "mtaReceivedRecipients" : {
1106
+ "nodetype" : "member",
1107
+ "module" : "MTA-MIB"
1108
+ },
1109
+ "mtaStoredRecipients" : {
1110
+ "nodetype" : "member",
1111
+ "module" : "MTA-MIB"
1112
+ },
1113
+ "mtaTransmittedRecipients" : {
1114
+ "nodetype" : "member",
1115
+ "module" : "MTA-MIB"
1116
+ },
1117
+ "mtaSuccessfulConvertedMessages" : {
1118
+ "nodetype" : "member",
1119
+ "module" : "MTA-MIB"
1120
+ },
1121
+ "mtaFailedConvertedMessages" : {
1122
+ "nodetype" : "member",
1123
+ "module" : "MTA-MIB"
1124
+ },
1125
+ "mtaGroupReceivedMessages" : {
1126
+ "nodetype" : "member",
1127
+ "module" : "MTA-MIB"
1128
+ },
1129
+ "mtaGroupRejectedMessages" : {
1130
+ "nodetype" : "member",
1131
+ "module" : "MTA-MIB"
1132
+ },
1133
+ "mtaGroupStoredMessages" : {
1134
+ "nodetype" : "member",
1135
+ "module" : "MTA-MIB"
1136
+ },
1137
+ "mtaGroupTransmittedMessages" : {
1138
+ "nodetype" : "member",
1139
+ "module" : "MTA-MIB"
1140
+ },
1141
+ "mtaGroupReceivedVolume" : {
1142
+ "nodetype" : "member",
1143
+ "module" : "MTA-MIB"
1144
+ },
1145
+ "mtaGroupStoredVolume" : {
1146
+ "nodetype" : "member",
1147
+ "module" : "MTA-MIB"
1148
+ },
1149
+ "mtaGroupTransmittedVolume" : {
1150
+ "nodetype" : "member",
1151
+ "module" : "MTA-MIB"
1152
+ },
1153
+ "mtaGroupReceivedRecipients" : {
1154
+ "nodetype" : "member",
1155
+ "module" : "MTA-MIB"
1156
+ },
1157
+ "mtaGroupStoredRecipients" : {
1158
+ "nodetype" : "member",
1159
+ "module" : "MTA-MIB"
1160
+ },
1161
+ "mtaGroupTransmittedRecipients" : {
1162
+ "nodetype" : "member",
1163
+ "module" : "MTA-MIB"
1164
+ },
1165
+ "mtaGroupOldestMessageStored" : {
1166
+ "nodetype" : "member",
1167
+ "module" : "MTA-MIB"
1168
+ },
1169
+ "mtaGroupInboundAssociations" : {
1170
+ "nodetype" : "member",
1171
+ "module" : "MTA-MIB"
1172
+ },
1173
+ "mtaGroupOutboundAssociations" : {
1174
+ "nodetype" : "member",
1175
+ "module" : "MTA-MIB"
1176
+ },
1177
+ "mtaLoopsDetected" : {
1178
+ "nodetype" : "member",
1179
+ "module" : "MTA-MIB"
1180
+ },
1181
+ "mtaGroupAccumulatedInboundAssociations" : {
1182
+ "nodetype" : "member",
1183
+ "module" : "MTA-MIB"
1184
+ },
1185
+ "mtaGroupAccumulatedOutboundAssociations" : {
1186
+ "nodetype" : "member",
1187
+ "module" : "MTA-MIB"
1188
+ },
1189
+ "mtaGroupLastInboundActivity" : {
1190
+ "nodetype" : "member",
1191
+ "module" : "MTA-MIB"
1192
+ },
1193
+ "mtaGroupLastOutboundActivity" : {
1194
+ "nodetype" : "member",
1195
+ "module" : "MTA-MIB"
1196
+ },
1197
+ "mtaGroupLastOutboundAssociationAttempt" : {
1198
+ "nodetype" : "member",
1199
+ "module" : "MTA-MIB"
1200
+ },
1201
+ "mtaGroupRejectedInboundAssociations" : {
1202
+ "nodetype" : "member",
1203
+ "module" : "MTA-MIB"
1204
+ },
1205
+ "mtaGroupFailedOutboundAssociations" : {
1206
+ "nodetype" : "member",
1207
+ "module" : "MTA-MIB"
1208
+ },
1209
+ "mtaGroupInboundRejectionReason" : {
1210
+ "nodetype" : "member",
1211
+ "module" : "MTA-MIB"
1212
+ },
1213
+ "mtaGroupOutboundConnectFailureReason" : {
1214
+ "nodetype" : "member",
1215
+ "module" : "MTA-MIB"
1216
+ },
1217
+ "mtaGroupScheduledRetry" : {
1218
+ "nodetype" : "member",
1219
+ "module" : "MTA-MIB"
1220
+ },
1221
+ "mtaGroupMailProtocol" : {
1222
+ "nodetype" : "member",
1223
+ "module" : "MTA-MIB"
1224
+ },
1225
+ "mtaGroupName" : {
1226
+ "nodetype" : "member",
1227
+ "module" : "MTA-MIB"
1228
+ },
1229
+ "mtaGroupSuccessfulConvertedMessages" : {
1230
+ "nodetype" : "member",
1231
+ "module" : "MTA-MIB"
1232
+ },
1233
+ "mtaGroupFailedConvertedMessages" : {
1234
+ "nodetype" : "member",
1235
+ "module" : "MTA-MIB"
1236
+ },
1237
+ "mtaGroupDescription" : {
1238
+ "nodetype" : "member",
1239
+ "module" : "MTA-MIB"
1240
+ },
1241
+ "mtaGroupURL" : {
1242
+ "nodetype" : "member",
1243
+ "module" : "MTA-MIB"
1244
+ },
1245
+ "mtaGroupCreationTime" : {
1246
+ "nodetype" : "member",
1247
+ "module" : "MTA-MIB"
1248
+ },
1249
+ "mtaGroupHierarchy" : {
1250
+ "nodetype" : "member",
1251
+ "module" : "MTA-MIB"
1252
+ },
1253
+ "mtaGroupOldestMessageId" : {
1254
+ "nodetype" : "member",
1255
+ "module" : "MTA-MIB"
1256
+ },
1257
+ "mtaGroupLoopsDetected" : {
1258
+ "nodetype" : "member",
1259
+ "module" : "MTA-MIB"
1260
+ },
1261
+ }, # members
1262
+ "description" :
1263
+ """A collection of objects providing basic monitoring of MTAs.
1264
+ This group was originally defined in RFC 2249.""",
1265
+ }, # group
1266
+ "mtaRFC2249AssocGroup" : {
1267
+ "nodetype" : "group",
1268
+ "moduleName" : "MTA-MIB",
1269
+ "oid" : "1.3.6.1.2.1.28.4.1.5",
1270
+ "status" : "current",
1271
+ "members" : {
1272
+ "mtaGroupAssociationIndex" : {
1273
+ "nodetype" : "member",
1274
+ "module" : "MTA-MIB"
1275
+ },
1276
+ }, # members
1277
+ "description" :
1278
+ """A collection of objects providing monitoring of MTA
1279
+ associations. This group was originally defined in RFC
1280
+ 2249.""",
1281
+ }, # group
1282
+ "mtaRFC2249ErrorGroup" : {
1283
+ "nodetype" : "group",
1284
+ "moduleName" : "MTA-MIB",
1285
+ "oid" : "1.3.6.1.2.1.28.4.1.6",
1286
+ "status" : "current",
1287
+ "members" : {
1288
+ "mtaGroupInboundErrorCount" : {
1289
+ "nodetype" : "member",
1290
+ "module" : "MTA-MIB"
1291
+ },
1292
+ "mtaGroupInternalErrorCount" : {
1293
+ "nodetype" : "member",
1294
+ "module" : "MTA-MIB"
1295
+ },
1296
+ "mtaGroupOutboundErrorCount" : {
1297
+ "nodetype" : "member",
1298
+ "module" : "MTA-MIB"
1299
+ },
1300
+ }, # members
1301
+ "description" :
1302
+ """A collection of objects providing monitoring of
1303
+ detailed MTA errors. This group was originally defined
1304
+ in RFC 2249.""",
1305
+ }, # group
1306
+ "mtaRFC2789Group" : {
1307
+ "nodetype" : "group",
1308
+ "moduleName" : "MTA-MIB",
1309
+ "oid" : "1.3.6.1.2.1.28.4.1.7",
1310
+ "status" : "current",
1311
+ "members" : {
1312
+ "mtaReceivedMessages" : {
1313
+ "nodetype" : "member",
1314
+ "module" : "MTA-MIB"
1315
+ },
1316
+ "mtaStoredMessages" : {
1317
+ "nodetype" : "member",
1318
+ "module" : "MTA-MIB"
1319
+ },
1320
+ "mtaTransmittedMessages" : {
1321
+ "nodetype" : "member",
1322
+ "module" : "MTA-MIB"
1323
+ },
1324
+ "mtaReceivedVolume" : {
1325
+ "nodetype" : "member",
1326
+ "module" : "MTA-MIB"
1327
+ },
1328
+ "mtaStoredVolume" : {
1329
+ "nodetype" : "member",
1330
+ "module" : "MTA-MIB"
1331
+ },
1332
+ "mtaTransmittedVolume" : {
1333
+ "nodetype" : "member",
1334
+ "module" : "MTA-MIB"
1335
+ },
1336
+ "mtaReceivedRecipients" : {
1337
+ "nodetype" : "member",
1338
+ "module" : "MTA-MIB"
1339
+ },
1340
+ "mtaStoredRecipients" : {
1341
+ "nodetype" : "member",
1342
+ "module" : "MTA-MIB"
1343
+ },
1344
+ "mtaTransmittedRecipients" : {
1345
+ "nodetype" : "member",
1346
+ "module" : "MTA-MIB"
1347
+ },
1348
+ "mtaSuccessfulConvertedMessages" : {
1349
+ "nodetype" : "member",
1350
+ "module" : "MTA-MIB"
1351
+ },
1352
+ "mtaFailedConvertedMessages" : {
1353
+ "nodetype" : "member",
1354
+ "module" : "MTA-MIB"
1355
+ },
1356
+ "mtaGroupReceivedMessages" : {
1357
+ "nodetype" : "member",
1358
+ "module" : "MTA-MIB"
1359
+ },
1360
+ "mtaGroupRejectedMessages" : {
1361
+ "nodetype" : "member",
1362
+ "module" : "MTA-MIB"
1363
+ },
1364
+ "mtaGroupStoredMessages" : {
1365
+ "nodetype" : "member",
1366
+ "module" : "MTA-MIB"
1367
+ },
1368
+ "mtaGroupTransmittedMessages" : {
1369
+ "nodetype" : "member",
1370
+ "module" : "MTA-MIB"
1371
+ },
1372
+ "mtaGroupReceivedVolume" : {
1373
+ "nodetype" : "member",
1374
+ "module" : "MTA-MIB"
1375
+ },
1376
+ "mtaGroupStoredVolume" : {
1377
+ "nodetype" : "member",
1378
+ "module" : "MTA-MIB"
1379
+ },
1380
+ "mtaGroupTransmittedVolume" : {
1381
+ "nodetype" : "member",
1382
+ "module" : "MTA-MIB"
1383
+ },
1384
+ "mtaGroupReceivedRecipients" : {
1385
+ "nodetype" : "member",
1386
+ "module" : "MTA-MIB"
1387
+ },
1388
+ "mtaGroupStoredRecipients" : {
1389
+ "nodetype" : "member",
1390
+ "module" : "MTA-MIB"
1391
+ },
1392
+ "mtaGroupTransmittedRecipients" : {
1393
+ "nodetype" : "member",
1394
+ "module" : "MTA-MIB"
1395
+ },
1396
+ "mtaGroupOldestMessageStored" : {
1397
+ "nodetype" : "member",
1398
+ "module" : "MTA-MIB"
1399
+ },
1400
+ "mtaGroupInboundAssociations" : {
1401
+ "nodetype" : "member",
1402
+ "module" : "MTA-MIB"
1403
+ },
1404
+ "mtaGroupOutboundAssociations" : {
1405
+ "nodetype" : "member",
1406
+ "module" : "MTA-MIB"
1407
+ },
1408
+ "mtaLoopsDetected" : {
1409
+ "nodetype" : "member",
1410
+ "module" : "MTA-MIB"
1411
+ },
1412
+ "mtaGroupAccumulatedInboundAssociations" : {
1413
+ "nodetype" : "member",
1414
+ "module" : "MTA-MIB"
1415
+ },
1416
+ "mtaGroupAccumulatedOutboundAssociations" : {
1417
+ "nodetype" : "member",
1418
+ "module" : "MTA-MIB"
1419
+ },
1420
+ "mtaGroupLastInboundActivity" : {
1421
+ "nodetype" : "member",
1422
+ "module" : "MTA-MIB"
1423
+ },
1424
+ "mtaGroupLastOutboundActivity" : {
1425
+ "nodetype" : "member",
1426
+ "module" : "MTA-MIB"
1427
+ },
1428
+ "mtaGroupLastOutboundAssociationAttempt" : {
1429
+ "nodetype" : "member",
1430
+ "module" : "MTA-MIB"
1431
+ },
1432
+ "mtaGroupRejectedInboundAssociations" : {
1433
+ "nodetype" : "member",
1434
+ "module" : "MTA-MIB"
1435
+ },
1436
+ "mtaGroupFailedOutboundAssociations" : {
1437
+ "nodetype" : "member",
1438
+ "module" : "MTA-MIB"
1439
+ },
1440
+ "mtaGroupInboundRejectionReason" : {
1441
+ "nodetype" : "member",
1442
+ "module" : "MTA-MIB"
1443
+ },
1444
+ "mtaGroupOutboundConnectFailureReason" : {
1445
+ "nodetype" : "member",
1446
+ "module" : "MTA-MIB"
1447
+ },
1448
+ "mtaGroupScheduledRetry" : {
1449
+ "nodetype" : "member",
1450
+ "module" : "MTA-MIB"
1451
+ },
1452
+ "mtaGroupMailProtocol" : {
1453
+ "nodetype" : "member",
1454
+ "module" : "MTA-MIB"
1455
+ },
1456
+ "mtaGroupName" : {
1457
+ "nodetype" : "member",
1458
+ "module" : "MTA-MIB"
1459
+ },
1460
+ "mtaGroupSuccessfulConvertedMessages" : {
1461
+ "nodetype" : "member",
1462
+ "module" : "MTA-MIB"
1463
+ },
1464
+ "mtaGroupFailedConvertedMessages" : {
1465
+ "nodetype" : "member",
1466
+ "module" : "MTA-MIB"
1467
+ },
1468
+ "mtaGroupDescription" : {
1469
+ "nodetype" : "member",
1470
+ "module" : "MTA-MIB"
1471
+ },
1472
+ "mtaGroupURL" : {
1473
+ "nodetype" : "member",
1474
+ "module" : "MTA-MIB"
1475
+ },
1476
+ "mtaGroupCreationTime" : {
1477
+ "nodetype" : "member",
1478
+ "module" : "MTA-MIB"
1479
+ },
1480
+ "mtaGroupHierarchy" : {
1481
+ "nodetype" : "member",
1482
+ "module" : "MTA-MIB"
1483
+ },
1484
+ "mtaGroupOldestMessageId" : {
1485
+ "nodetype" : "member",
1486
+ "module" : "MTA-MIB"
1487
+ },
1488
+ "mtaGroupLoopsDetected" : {
1489
+ "nodetype" : "member",
1490
+ "module" : "MTA-MIB"
1491
+ },
1492
+ }, # members
1493
+ "description" :
1494
+ """A collection of objects providing basic monitoring of MTAs.
1495
+ This is the appropriate group for RFC 2789.""",
1496
+ }, # group
1497
+ "mtaRFC2789AssocGroup" : {
1498
+ "nodetype" : "group",
1499
+ "moduleName" : "MTA-MIB",
1500
+ "oid" : "1.3.6.1.2.1.28.4.1.8",
1501
+ "status" : "current",
1502
+ "members" : {
1503
+ "mtaGroupAssociationIndex" : {
1504
+ "nodetype" : "member",
1505
+ "module" : "MTA-MIB"
1506
+ },
1507
+ }, # members
1508
+ "description" :
1509
+ """A collection of objects providing monitoring of MTA
1510
+ associations. This is the appropriate group for RFC
1511
+ 2789 association monitoring.""",
1512
+ }, # group
1513
+ "mtaRFC2789ErrorGroup" : {
1514
+ "nodetype" : "group",
1515
+ "moduleName" : "MTA-MIB",
1516
+ "oid" : "1.3.6.1.2.1.28.4.1.9",
1517
+ "status" : "current",
1518
+ "members" : {
1519
+ "mtaGroupInboundErrorCount" : {
1520
+ "nodetype" : "member",
1521
+ "module" : "MTA-MIB"
1522
+ },
1523
+ "mtaGroupInternalErrorCount" : {
1524
+ "nodetype" : "member",
1525
+ "module" : "MTA-MIB"
1526
+ },
1527
+ "mtaGroupOutboundErrorCount" : {
1528
+ "nodetype" : "member",
1529
+ "module" : "MTA-MIB"
1530
+ },
1531
+ }, # members
1532
+ "description" :
1533
+ """A collection of objects providing monitoring of
1534
+ detailed MTA errors. This is the appropriate group
1535
+ for RFC 2789 error monitoring.""",
1536
+ }, # group
1537
+ "mtaRFC1566Group" : {
1538
+ "nodetype" : "group",
1539
+ "moduleName" : "MTA-MIB",
1540
+ "oid" : "1.3.6.1.2.1.28.4.1.10",
1541
+ "status" : "current",
1542
+ "members" : {
1543
+ "mtaReceivedMessages" : {
1544
+ "nodetype" : "member",
1545
+ "module" : "MTA-MIB"
1546
+ },
1547
+ "mtaStoredMessages" : {
1548
+ "nodetype" : "member",
1549
+ "module" : "MTA-MIB"
1550
+ },
1551
+ "mtaTransmittedMessages" : {
1552
+ "nodetype" : "member",
1553
+ "module" : "MTA-MIB"
1554
+ },
1555
+ "mtaReceivedVolume" : {
1556
+ "nodetype" : "member",
1557
+ "module" : "MTA-MIB"
1558
+ },
1559
+ "mtaStoredVolume" : {
1560
+ "nodetype" : "member",
1561
+ "module" : "MTA-MIB"
1562
+ },
1563
+ "mtaTransmittedVolume" : {
1564
+ "nodetype" : "member",
1565
+ "module" : "MTA-MIB"
1566
+ },
1567
+ "mtaReceivedRecipients" : {
1568
+ "nodetype" : "member",
1569
+ "module" : "MTA-MIB"
1570
+ },
1571
+ "mtaStoredRecipients" : {
1572
+ "nodetype" : "member",
1573
+ "module" : "MTA-MIB"
1574
+ },
1575
+ "mtaTransmittedRecipients" : {
1576
+ "nodetype" : "member",
1577
+ "module" : "MTA-MIB"
1578
+ },
1579
+ "mtaGroupReceivedMessages" : {
1580
+ "nodetype" : "member",
1581
+ "module" : "MTA-MIB"
1582
+ },
1583
+ "mtaGroupRejectedMessages" : {
1584
+ "nodetype" : "member",
1585
+ "module" : "MTA-MIB"
1586
+ },
1587
+ "mtaGroupStoredMessages" : {
1588
+ "nodetype" : "member",
1589
+ "module" : "MTA-MIB"
1590
+ },
1591
+ "mtaGroupTransmittedMessages" : {
1592
+ "nodetype" : "member",
1593
+ "module" : "MTA-MIB"
1594
+ },
1595
+ "mtaGroupReceivedVolume" : {
1596
+ "nodetype" : "member",
1597
+ "module" : "MTA-MIB"
1598
+ },
1599
+ "mtaGroupStoredVolume" : {
1600
+ "nodetype" : "member",
1601
+ "module" : "MTA-MIB"
1602
+ },
1603
+ "mtaGroupTransmittedVolume" : {
1604
+ "nodetype" : "member",
1605
+ "module" : "MTA-MIB"
1606
+ },
1607
+ "mtaGroupReceivedRecipients" : {
1608
+ "nodetype" : "member",
1609
+ "module" : "MTA-MIB"
1610
+ },
1611
+ "mtaGroupStoredRecipients" : {
1612
+ "nodetype" : "member",
1613
+ "module" : "MTA-MIB"
1614
+ },
1615
+ "mtaGroupTransmittedRecipients" : {
1616
+ "nodetype" : "member",
1617
+ "module" : "MTA-MIB"
1618
+ },
1619
+ "mtaGroupOldestMessageStored" : {
1620
+ "nodetype" : "member",
1621
+ "module" : "MTA-MIB"
1622
+ },
1623
+ "mtaGroupInboundAssociations" : {
1624
+ "nodetype" : "member",
1625
+ "module" : "MTA-MIB"
1626
+ },
1627
+ "mtaGroupOutboundAssociations" : {
1628
+ "nodetype" : "member",
1629
+ "module" : "MTA-MIB"
1630
+ },
1631
+ "mtaGroupAccumulatedInboundAssociations" : {
1632
+ "nodetype" : "member",
1633
+ "module" : "MTA-MIB"
1634
+ },
1635
+ "mtaGroupAccumulatedOutboundAssociations" : {
1636
+ "nodetype" : "member",
1637
+ "module" : "MTA-MIB"
1638
+ },
1639
+ "mtaGroupLastInboundActivity" : {
1640
+ "nodetype" : "member",
1641
+ "module" : "MTA-MIB"
1642
+ },
1643
+ "mtaGroupLastOutboundActivity" : {
1644
+ "nodetype" : "member",
1645
+ "module" : "MTA-MIB"
1646
+ },
1647
+ "mtaGroupRejectedInboundAssociations" : {
1648
+ "nodetype" : "member",
1649
+ "module" : "MTA-MIB"
1650
+ },
1651
+ "mtaGroupFailedOutboundAssociations" : {
1652
+ "nodetype" : "member",
1653
+ "module" : "MTA-MIB"
1654
+ },
1655
+ "mtaGroupInboundRejectionReason" : {
1656
+ "nodetype" : "member",
1657
+ "module" : "MTA-MIB"
1658
+ },
1659
+ "mtaGroupOutboundConnectFailureReason" : {
1660
+ "nodetype" : "member",
1661
+ "module" : "MTA-MIB"
1662
+ },
1663
+ "mtaGroupScheduledRetry" : {
1664
+ "nodetype" : "member",
1665
+ "module" : "MTA-MIB"
1666
+ },
1667
+ "mtaGroupMailProtocol" : {
1668
+ "nodetype" : "member",
1669
+ "module" : "MTA-MIB"
1670
+ },
1671
+ "mtaGroupName" : {
1672
+ "nodetype" : "member",
1673
+ "module" : "MTA-MIB"
1674
+ },
1675
+ }, # members
1676
+ "description" :
1677
+ """A collection of objects providing basic monitoring of MTAs.
1678
+ This is the original set of such objects defined in RFC
1679
+ 1566.""",
1680
+ }, # group
1681
+ "mtaRFC1566AssocGroup" : {
1682
+ "nodetype" : "group",
1683
+ "moduleName" : "MTA-MIB",
1684
+ "oid" : "1.3.6.1.2.1.28.4.1.11",
1685
+ "status" : "current",
1686
+ "members" : {
1687
+ "mtaGroupAssociationIndex" : {
1688
+ "nodetype" : "member",
1689
+ "module" : "MTA-MIB"
1690
+ },
1691
+ }, # members
1692
+ "description" :
1693
+ """A collection of objects providing monitoring of MTA
1694
+ associations. This is the original set of such objects
1695
+ defined in RFC 1566.""",
1696
+ }, # group
1697
+ }, # groups
1698
+
1699
+ "compliances" : {
1700
+ "mtaCompliance" : {
1701
+ "nodetype" : "compliance",
1702
+ "moduleName" : "MTA-MIB",
1703
+ "oid" : "1.3.6.1.2.1.28.4.2.1",
1704
+ "status" : "current",
1705
+ "description" :
1706
+ """The compliance statement for RFC 1566 implementations
1707
+ which support the Mail Monitoring MIB for basic
1708
+ monitoring of MTAs.""",
1709
+ "requires" : {
1710
+ "mtaRFC1566Group" : {
1711
+ "nodetype" : "mandatory",
1712
+ "module" : "MTA-MIB"
1713
+ },
1714
+ }, # requires
1715
+ }, # compliance
1716
+ "mtaAssocCompliance" : {
1717
+ "nodetype" : "compliance",
1718
+ "moduleName" : "MTA-MIB",
1719
+ "oid" : "1.3.6.1.2.1.28.4.2.2",
1720
+ "status" : "current",
1721
+ "description" :
1722
+ """The compliance statement for RFC 1566 implementations
1723
+ which support the Mail Monitoring MIB for monitoring
1724
+ of MTAs and their associations.""",
1725
+ "requires" : {
1726
+ "mtaRFC1566Group" : {
1727
+ "nodetype" : "mandatory",
1728
+ "module" : "MTA-MIB"
1729
+ },
1730
+ "mtaRFC1566AssocGroup" : {
1731
+ "nodetype" : "mandatory",
1732
+ "module" : "MTA-MIB"
1733
+ },
1734
+ }, # requires
1735
+ }, # compliance
1736
+ "mtaRFC2249Compliance" : {
1737
+ "nodetype" : "compliance",
1738
+ "moduleName" : "MTA-MIB",
1739
+ "oid" : "1.3.6.1.2.1.28.4.2.5",
1740
+ "status" : "current",
1741
+ "description" :
1742
+ """The compliance statement for RFC 2249 implementations
1743
+ which support the Mail Monitoring MIB for basic
1744
+ monitoring of MTAs.""",
1745
+ "requires" : {
1746
+ "mtaRFC2249Group" : {
1747
+ "nodetype" : "mandatory",
1748
+ "module" : "MTA-MIB"
1749
+ },
1750
+ }, # requires
1751
+ }, # compliance
1752
+ "mtaRFC2249AssocCompliance" : {
1753
+ "nodetype" : "compliance",
1754
+ "moduleName" : "MTA-MIB",
1755
+ "oid" : "1.3.6.1.2.1.28.4.2.6",
1756
+ "status" : "current",
1757
+ "description" :
1758
+ """The compliance statement for RFC 2249 implementations
1759
+ which support the Mail Monitoring MIB for monitoring of
1760
+ MTAs and their associations.""",
1761
+ "requires" : {
1762
+ "mtaRFC2249Group" : {
1763
+ "nodetype" : "mandatory",
1764
+ "module" : "MTA-MIB"
1765
+ },
1766
+ "mtaRFC2249AssocGroup" : {
1767
+ "nodetype" : "mandatory",
1768
+ "module" : "MTA-MIB"
1769
+ },
1770
+ }, # requires
1771
+ }, # compliance
1772
+ "mtaRFC2249ErrorCompliance" : {
1773
+ "nodetype" : "compliance",
1774
+ "moduleName" : "MTA-MIB",
1775
+ "oid" : "1.3.6.1.2.1.28.4.2.7",
1776
+ "status" : "current",
1777
+ "description" :
1778
+ """The compliance statement for RFC 2249 implementations
1779
+ which support the Mail Monitoring MIB for monitoring of
1780
+ MTAs and detailed errors.""",
1781
+ "requires" : {
1782
+ "mtaRFC2249Group" : {
1783
+ "nodetype" : "mandatory",
1784
+ "module" : "MTA-MIB"
1785
+ },
1786
+ "mtaRFC2249ErrorGroup" : {
1787
+ "nodetype" : "mandatory",
1788
+ "module" : "MTA-MIB"
1789
+ },
1790
+ }, # requires
1791
+ }, # compliance
1792
+ "mtaRFC2249FullCompliance" : {
1793
+ "nodetype" : "compliance",
1794
+ "moduleName" : "MTA-MIB",
1795
+ "oid" : "1.3.6.1.2.1.28.4.2.8",
1796
+ "status" : "current",
1797
+ "description" :
1798
+ """The compliance statement for RFC 2249 implementations
1799
+ which support the full Mail Monitoring MIB for
1800
+ monitoring of MTAs, associations, and detailed errors.""",
1801
+ "requires" : {
1802
+ "mtaRFC2249Group" : {
1803
+ "nodetype" : "mandatory",
1804
+ "module" : "MTA-MIB"
1805
+ },
1806
+ "mtaRFC2249AssocGroup" : {
1807
+ "nodetype" : "mandatory",
1808
+ "module" : "MTA-MIB"
1809
+ },
1810
+ "mtaRFC2249ErrorGroup" : {
1811
+ "nodetype" : "mandatory",
1812
+ "module" : "MTA-MIB"
1813
+ },
1814
+ }, # requires
1815
+ }, # compliance
1816
+ "mtaRFC2789Compliance" : {
1817
+ "nodetype" : "compliance",
1818
+ "moduleName" : "MTA-MIB",
1819
+ "oid" : "1.3.6.1.2.1.28.4.2.9",
1820
+ "status" : "current",
1821
+ "description" :
1822
+ """The compliance statement for RFC 2789 implementations
1823
+ which support the Mail Monitoring MIB for basic
1824
+ monitoring of MTAs.""",
1825
+ "requires" : {
1826
+ "mtaRFC2789Group" : {
1827
+ "nodetype" : "mandatory",
1828
+ "module" : "MTA-MIB"
1829
+ },
1830
+ }, # requires
1831
+ }, # compliance
1832
+ "mtaRFC2789AssocCompliance" : {
1833
+ "nodetype" : "compliance",
1834
+ "moduleName" : "MTA-MIB",
1835
+ "oid" : "1.3.6.1.2.1.28.4.2.10",
1836
+ "status" : "current",
1837
+ "description" :
1838
+ """The compliance statement for RFC 2789 implementations
1839
+ which support the Mail Monitoring MIB for monitoring of
1840
+ MTAs and their associations.""",
1841
+ "requires" : {
1842
+ "mtaRFC2789Group" : {
1843
+ "nodetype" : "mandatory",
1844
+ "module" : "MTA-MIB"
1845
+ },
1846
+ "mtaRFC2789AssocGroup" : {
1847
+ "nodetype" : "mandatory",
1848
+ "module" : "MTA-MIB"
1849
+ },
1850
+ }, # requires
1851
+ }, # compliance
1852
+ "mtaRFC2789ErrorCompliance" : {
1853
+ "nodetype" : "compliance",
1854
+ "moduleName" : "MTA-MIB",
1855
+ "oid" : "1.3.6.1.2.1.28.4.2.11",
1856
+ "status" : "current",
1857
+ "description" :
1858
+ """The compliance statement for RFC 2789 implementations
1859
+ which support the Mail Monitoring MIB for monitoring of
1860
+ MTAs and detailed errors.""",
1861
+ "requires" : {
1862
+ "mtaRFC2789Group" : {
1863
+ "nodetype" : "mandatory",
1864
+ "module" : "MTA-MIB"
1865
+ },
1866
+ "mtaRFC2789ErrorGroup" : {
1867
+ "nodetype" : "mandatory",
1868
+ "module" : "MTA-MIB"
1869
+ },
1870
+ }, # requires
1871
+ }, # compliance
1872
+ "mtaRFC2789FullCompliance" : {
1873
+ "nodetype" : "compliance",
1874
+ "moduleName" : "MTA-MIB",
1875
+ "oid" : "1.3.6.1.2.1.28.4.2.12",
1876
+ "status" : "current",
1877
+ "description" :
1878
+ """The compliance statement for RFC 2789 implementations
1879
+ which support the full Mail Monitoring MIB for
1880
+ monitoring of MTAs, associations, and detailed errors.""",
1881
+ "requires" : {
1882
+ "mtaRFC2789Group" : {
1883
+ "nodetype" : "mandatory",
1884
+ "module" : "MTA-MIB"
1885
+ },
1886
+ "mtaRFC2789AssocGroup" : {
1887
+ "nodetype" : "mandatory",
1888
+ "module" : "MTA-MIB"
1889
+ },
1890
+ "mtaRFC2789ErrorGroup" : {
1891
+ "nodetype" : "mandatory",
1892
+ "module" : "MTA-MIB"
1893
+ },
1894
+ }, # requires
1895
+ }, # compliance
1896
+ }, # compliances
1897
+
1898
+ }