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,2054 @@
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 Modem-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/Modem-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "Modem-MIB",
11
+
12
+ "Modem-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Modem Management Working Group""",
17
+ "contact" :
18
+ """ Steven Waldbusser
19
+ Postal: Carnegie Mellon University
20
+ 5000 Forbes Ave
21
+ Pittsburgh, PA, 15213
22
+ US
23
+
24
+ Tel: +1 412 268 6628
25
+ Fax: +1 412 268 4987
26
+ E-mail: waldbusser@cmu.edu""",
27
+ "description" :
28
+ """The MIB module for management of dial-up modems.""",
29
+ "revisions" : (
30
+ {
31
+ "date" : "1994-06-12 00:00",
32
+ "description" :
33
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
34
+ },
35
+ ),
36
+ "identity node" : "mdmMIB",
37
+ },
38
+
39
+ "imports" : (
40
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
41
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
42
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
43
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
44
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
45
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
46
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
47
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
48
+ {"module" : "RFC1213-MIB", "name" : "mib-2"},
49
+ ),
50
+
51
+ "nodes" : {
52
+ "mdmMib" : {
53
+ "nodetype" : "node",
54
+ "moduleName" : "Modem-MIB",
55
+ "oid" : "1.3.6.1.2.1.38",
56
+ }, # node
57
+ "mdmMIB" : {
58
+ "nodetype" : "node",
59
+ "moduleName" : "Modem-MIB",
60
+ "oid" : "1.3.6.1.2.1.38.1",
61
+ "status" : "current",
62
+ }, # node
63
+ "mdmMIBObjects" : {
64
+ "nodetype" : "node",
65
+ "moduleName" : "Modem-MIB",
66
+ "oid" : "1.3.6.1.2.1.38.1.1",
67
+ }, # node
68
+ "mdmNumber" : {
69
+ "nodetype" : "scalar",
70
+ "moduleName" : "Modem-MIB",
71
+ "oid" : "1.3.6.1.2.1.38.1.1.1",
72
+ "status" : "current",
73
+ "syntax" : {
74
+ "type" : { "module" :"", "name" : "Integer32"},
75
+ },
76
+ "access" : "readonly",
77
+ "description" :
78
+ """The number of modem rows in the modem table. This value
79
+ defines the maximum value of the mdmIndex object.""",
80
+ }, # scalar
81
+ "mdmIDTable" : {
82
+ "nodetype" : "table",
83
+ "moduleName" : "Modem-MIB",
84
+ "oid" : "1.3.6.1.2.1.38.1.1.2",
85
+ "status" : "current",
86
+ "description" :
87
+ """The base table for the modems managed by this MIB. The
88
+ mdmLineTable, mdmDTEInterfaceTable, mdmCallControlTable, and
89
+ mdmStatsTable all augment the rows defined in this table.""",
90
+ }, # table
91
+ "mdmIDEntry" : {
92
+ "nodetype" : "row",
93
+ "moduleName" : "Modem-MIB",
94
+ "oid" : "1.3.6.1.2.1.38.1.1.2.1",
95
+ "status" : "current",
96
+ "linkage" : [
97
+ "mdmIndex",
98
+ ],
99
+ "description" :
100
+ """Entries in this table are created only by the agent. One
101
+ entry exists for each modem managed by the agent.""",
102
+ }, # row
103
+ "mdmIndex" : {
104
+ "nodetype" : "column",
105
+ "moduleName" : "Modem-MIB",
106
+ "oid" : "1.3.6.1.2.1.38.1.1.2.1.1",
107
+ "status" : "current",
108
+ "syntax" : {
109
+ "type" : {
110
+ "basetype" : "Integer32",
111
+ "ranges" : [
112
+ {
113
+ "min" : "1",
114
+ "max" : "65535"
115
+ },
116
+ ],
117
+ "range" : {
118
+ "min" : "1",
119
+ "max" : "65535"
120
+ },
121
+ },
122
+ },
123
+ "access" : "noaccess",
124
+ "description" :
125
+ """A unique number for each modem that ranges from 1 to
126
+ mdmNumber. The value must remain constant at least from one
127
+ re-initialization of the network management agent to the
128
+ next.""",
129
+ }, # column
130
+ "mdmIDManufacturerOID" : {
131
+ "nodetype" : "column",
132
+ "moduleName" : "Modem-MIB",
133
+ "oid" : "1.3.6.1.2.1.38.1.1.2.1.2",
134
+ "status" : "current",
135
+ "syntax" : {
136
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
137
+ },
138
+ "access" : "readonly",
139
+ "description" :
140
+ """This value is intended to identify the manufacturer, model,
141
+ and version of this modem. This may be used to identify the
142
+ existance of enterprise-specific functions and behaviours.""",
143
+ "reference" :
144
+ """V.58 attribute manufacturerID subfield ManufacturerOI""",
145
+ }, # column
146
+ "mdmIDProductDetails" : {
147
+ "nodetype" : "column",
148
+ "moduleName" : "Modem-MIB",
149
+ "oid" : "1.3.6.1.2.1.38.1.1.2.1.3",
150
+ "status" : "current",
151
+ "syntax" : {
152
+ "type" : {
153
+ "basetype" : "OctetString",
154
+ "parent module" : {
155
+ "name" : "SNMPv2-TC",
156
+ "type" : "DisplayString",
157
+ },
158
+ "ranges" : [
159
+ {
160
+ "min" : "0",
161
+ "max" : "79"
162
+ },
163
+ ],
164
+ "range" : {
165
+ "min" : "0",
166
+ "max" : "79"
167
+ },
168
+ },
169
+ },
170
+ "access" : "readonly",
171
+ "description" :
172
+ """A textual description of this device, including the
173
+ manufacturer's name, modem model name, hardware revision,
174
+ firmware revision, and optionally, its serial number. The
175
+ exact format of this description is defined by the vendor.
176
+ This description may only contain characters from the NVT
177
+ ASCII character set.""",
178
+ "reference" :
179
+ """V.58 attribute manufacturerID subfield productDetails""",
180
+ }, # column
181
+ "mdmLineTable" : {
182
+ "nodetype" : "table",
183
+ "moduleName" : "Modem-MIB",
184
+ "oid" : "1.3.6.1.2.1.38.1.1.3",
185
+ "status" : "current",
186
+ "description" :
187
+ """The modem Line Table augments the modem ID table.""",
188
+ }, # table
189
+ "mdmLineEntry" : {
190
+ "nodetype" : "row",
191
+ "moduleName" : "Modem-MIB",
192
+ "oid" : "1.3.6.1.2.1.38.1.1.3.1",
193
+ "status" : "current",
194
+ "linkage" : [
195
+ { "Modem-MIB" : {
196
+ "indexkind" : "augments",
197
+ "relatedNode" : "mdmIDEntry",
198
+ }},
199
+ ],
200
+ "description" :
201
+ """Entries in this table are created only by the agent. One
202
+ entry exists for each modem managed by the agent.""",
203
+ }, # row
204
+ "mdmLineCarrierLossTime" : {
205
+ "nodetype" : "column",
206
+ "moduleName" : "Modem-MIB",
207
+ "oid" : "1.3.6.1.2.1.38.1.1.3.1.1",
208
+ "status" : "current",
209
+ "syntax" : {
210
+ "type" : {
211
+ "basetype" : "Integer32",
212
+ "ranges" : [
213
+ {
214
+ "min" : "1",
215
+ "max" : "255"
216
+ },
217
+ ],
218
+ "range" : {
219
+ "min" : "1",
220
+ "max" : "255"
221
+ },
222
+ },
223
+ },
224
+ "access" : "readwrite",
225
+ "description" :
226
+ """Duration in 10ths of a second the modem waits after loss of
227
+ carrier before hanging up. If this value is set to `255',
228
+ the modem will not hang up upon loss of carrier. This
229
+ allows the modem to distinguish between a momentary lapse in
230
+ line quality and a true disconnect and can be useful to tune
231
+ the tolerance of the modem to lines of poor quality.""",
232
+ "reference" :
233
+ """V.58 lineSignalFailDisconnectTimer""",
234
+ }, # column
235
+ "mdmLineState" : {
236
+ "nodetype" : "column",
237
+ "moduleName" : "Modem-MIB",
238
+ "oid" : "1.3.6.1.2.1.38.1.1.3.1.2",
239
+ "status" : "current",
240
+ "syntax" : {
241
+ "type" : {
242
+ "basetype" : "Enumeration",
243
+ "unknown" : {
244
+ "nodetype" : "namednumber",
245
+ "number" : "1"
246
+ },
247
+ "onHook" : {
248
+ "nodetype" : "namednumber",
249
+ "number" : "2"
250
+ },
251
+ "offHook" : {
252
+ "nodetype" : "namednumber",
253
+ "number" : "3"
254
+ },
255
+ "connected" : {
256
+ "nodetype" : "namednumber",
257
+ "number" : "4"
258
+ },
259
+ "busiedOut" : {
260
+ "nodetype" : "namednumber",
261
+ "number" : "5"
262
+ },
263
+ "reset" : {
264
+ "nodetype" : "namednumber",
265
+ "number" : "6"
266
+ },
267
+ },
268
+ },
269
+ "access" : "readwrite",
270
+ "description" :
271
+ """Allows the inspection and alteration of the state of the
272
+ modem. Management commands may change the state to `on-
273
+ hook', `busied-out', or `reset' from any state. No other
274
+ alterations are permitted from the management protocol.
275
+ When this object is set to reset, the modem shall be reset
276
+ and the value will change to the modem's new, implementation
277
+ dependent state.""",
278
+ }, # column
279
+ "mdmLineCapabilitiesTable" : {
280
+ "nodetype" : "table",
281
+ "moduleName" : "Modem-MIB",
282
+ "oid" : "1.3.6.1.2.1.38.1.1.4",
283
+ "status" : "current",
284
+ "description" :
285
+ """A list of protocol capabilities for this modem.""",
286
+ }, # table
287
+ "mdmLineCapabilitiesEntry" : {
288
+ "nodetype" : "row",
289
+ "moduleName" : "Modem-MIB",
290
+ "oid" : "1.3.6.1.2.1.38.1.1.4.1",
291
+ "status" : "current",
292
+ "linkage" : [
293
+ "mdmIndex",
294
+ "mdmLineCapabilitiesIndex",
295
+ ],
296
+ "description" :
297
+ """A listing of the protocol(s) that this modem is capable of.
298
+ Entries in this table are created only by the agent. One
299
+ entry exists for each protocol that the modem is capable of,
300
+ regardless of whether that protocol is enabled or not.
301
+
302
+ This table is useful for providing an inventory of the
303
+ capabilities on a modem, and allowing the manager to enable
304
+ or disable capabilities from the menu of available
305
+ possibilities. Row creation is not required to enable or
306
+ disable capabilities.""",
307
+ }, # row
308
+ "mdmLineCapabilitiesIndex" : {
309
+ "nodetype" : "column",
310
+ "moduleName" : "Modem-MIB",
311
+ "oid" : "1.3.6.1.2.1.38.1.1.4.1.1",
312
+ "status" : "current",
313
+ "syntax" : {
314
+ "type" : { "module" :"", "name" : "Integer32"},
315
+ },
316
+ "access" : "noaccess",
317
+ "description" :
318
+ """A unique index for this capabilities entry.""",
319
+ }, # column
320
+ "mdmLineCapabilitiesID" : {
321
+ "nodetype" : "column",
322
+ "moduleName" : "Modem-MIB",
323
+ "oid" : "1.3.6.1.2.1.38.1.1.4.1.2",
324
+ "status" : "current",
325
+ "syntax" : {
326
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
327
+ },
328
+ "access" : "readonly",
329
+ "description" :
330
+ """An identifier for this capability. Standard protocol
331
+ capabilities will have identifiers registered in this
332
+ document or other companion standards documents.
333
+ Proprietary protocol capabilities will be registered by
334
+ their respective organization. All capabilities, standard
335
+ or vendor-specific, shall be registered in this table.""",
336
+ }, # column
337
+ "mdmLineCapabilitiesEnableRequested" : {
338
+ "nodetype" : "column",
339
+ "moduleName" : "Modem-MIB",
340
+ "oid" : "1.3.6.1.2.1.38.1.1.4.1.3",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : {
344
+ "basetype" : "Enumeration",
345
+ "disabled" : {
346
+ "nodetype" : "namednumber",
347
+ "number" : "1"
348
+ },
349
+ "optional" : {
350
+ "nodetype" : "namednumber",
351
+ "number" : "2"
352
+ },
353
+ "preferred" : {
354
+ "nodetype" : "namednumber",
355
+ "number" : "3"
356
+ },
357
+ },
358
+ },
359
+ "access" : "readwrite",
360
+ "default" : "preferred",
361
+ "description" :
362
+ """The requested configuration of this capability. If this
363
+ value is 'disabled(1)', this is a request to disable this
364
+ protocol. If this value is 'preferred(3)', this is a
365
+ request to enable this protocol, and to prefer it in any
366
+ negotiation over other appropriate protocols that have a
367
+ value of 'optional(2)'.""",
368
+ }, # column
369
+ "mdmLineCapabilitiesEnableGranted" : {
370
+ "nodetype" : "column",
371
+ "moduleName" : "Modem-MIB",
372
+ "oid" : "1.3.6.1.2.1.38.1.1.4.1.4",
373
+ "status" : "current",
374
+ "syntax" : {
375
+ "type" : {
376
+ "basetype" : "Enumeration",
377
+ "disabled" : {
378
+ "nodetype" : "namednumber",
379
+ "number" : "1"
380
+ },
381
+ "optional" : {
382
+ "nodetype" : "namednumber",
383
+ "number" : "2"
384
+ },
385
+ "preferred" : {
386
+ "nodetype" : "namednumber",
387
+ "number" : "3"
388
+ },
389
+ },
390
+ },
391
+ "access" : "readonly",
392
+ "description" :
393
+ """The actual configuration of this capability. The agent
394
+ shall attempt to set this as close as possible to the
395
+ associated mdmLineCapabilitiesEnableRequested value. The
396
+ agent shall make this determination in an implementation-
397
+ specific manner that may take into account the configuration
398
+ of other capabilities or other considerations. The modem
399
+ will choose in an implementation-specific manner between
400
+ multiple mutually-exclusive capabilities that each have the
401
+ same (non-disabled) value. However, the modem must prefer
402
+ all capabilities with a value of 'preferred(3)' over all
403
+ capabilities with a value of 'optional(2)'.
404
+
405
+ In other words, if there are one or more mutually-exclusive
406
+ capabilities (e.g. V.32 and V.32bis) that are set to
407
+ `preferred', the agent must choose one in an
408
+ implementation-specific manner. Otherwise, if there are one
409
+ or more mutually-exclusive capabilities that are set to
410
+ `optional', the agent must choose one in an implementation-
411
+ specific manner.""",
412
+ }, # column
413
+ "mdmLineCapabilities" : {
414
+ "nodetype" : "node",
415
+ "moduleName" : "Modem-MIB",
416
+ "oid" : "1.3.6.1.2.1.38.1.1.5",
417
+ }, # node
418
+ "mdmLineCapabilitiesV21" : {
419
+ "nodetype" : "node",
420
+ "moduleName" : "Modem-MIB",
421
+ "oid" : "1.3.6.1.2.1.38.1.1.5.1",
422
+ "status" : "current",
423
+ "description" :
424
+ """ITU V.21""",
425
+ }, # node
426
+ "mdmLineCapabilitiesV22" : {
427
+ "nodetype" : "node",
428
+ "moduleName" : "Modem-MIB",
429
+ "oid" : "1.3.6.1.2.1.38.1.1.5.2",
430
+ "status" : "current",
431
+ "description" :
432
+ """ITU V.22""",
433
+ }, # node
434
+ "mdmLineCapabilitiesV22bis" : {
435
+ "nodetype" : "node",
436
+ "moduleName" : "Modem-MIB",
437
+ "oid" : "1.3.6.1.2.1.38.1.1.5.3",
438
+ "status" : "current",
439
+ "description" :
440
+ """ITU V.22bis""",
441
+ }, # node
442
+ "mdmLineCapabilitiesV23CC" : {
443
+ "nodetype" : "node",
444
+ "moduleName" : "Modem-MIB",
445
+ "oid" : "1.3.6.1.2.1.38.1.1.5.4",
446
+ "status" : "current",
447
+ "description" :
448
+ """ITU V.23CC""",
449
+ }, # node
450
+ "mdmLineCapabilitiesV23SC" : {
451
+ "nodetype" : "node",
452
+ "moduleName" : "Modem-MIB",
453
+ "oid" : "1.3.6.1.2.1.38.1.1.5.5",
454
+ "status" : "current",
455
+ "description" :
456
+ """ITU V.23SC""",
457
+ }, # node
458
+ "mdmLineCapabilitiesV25bis" : {
459
+ "nodetype" : "node",
460
+ "moduleName" : "Modem-MIB",
461
+ "oid" : "1.3.6.1.2.1.38.1.1.5.6",
462
+ "status" : "current",
463
+ "description" :
464
+ """ITU V.25bis""",
465
+ }, # node
466
+ "mdmLineCapabilitiesV26bis" : {
467
+ "nodetype" : "node",
468
+ "moduleName" : "Modem-MIB",
469
+ "oid" : "1.3.6.1.2.1.38.1.1.5.7",
470
+ "status" : "current",
471
+ "description" :
472
+ """ITU V.26bis""",
473
+ }, # node
474
+ "mdmLineCapabilitiesV26ter" : {
475
+ "nodetype" : "node",
476
+ "moduleName" : "Modem-MIB",
477
+ "oid" : "1.3.6.1.2.1.38.1.1.5.8",
478
+ "status" : "current",
479
+ "description" :
480
+ """ITU V.26ter""",
481
+ }, # node
482
+ "mdmLineCapabilitiesV27ter" : {
483
+ "nodetype" : "node",
484
+ "moduleName" : "Modem-MIB",
485
+ "oid" : "1.3.6.1.2.1.38.1.1.5.9",
486
+ "status" : "current",
487
+ "description" :
488
+ """ITU V.27ter""",
489
+ }, # node
490
+ "mdmLineCapabilitiesV32" : {
491
+ "nodetype" : "node",
492
+ "moduleName" : "Modem-MIB",
493
+ "oid" : "1.3.6.1.2.1.38.1.1.5.10",
494
+ "status" : "current",
495
+ "description" :
496
+ """ITU V.32""",
497
+ }, # node
498
+ "mdmLineCapabilitiesV32bis" : {
499
+ "nodetype" : "node",
500
+ "moduleName" : "Modem-MIB",
501
+ "oid" : "1.3.6.1.2.1.38.1.1.5.11",
502
+ "status" : "current",
503
+ "description" :
504
+ """ITU V.32bis""",
505
+ }, # node
506
+ "mdmLineCapabilitiesV32terbo" : {
507
+ "nodetype" : "node",
508
+ "moduleName" : "Modem-MIB",
509
+ "oid" : "1.3.6.1.2.1.38.1.1.5.12",
510
+ "status" : "current",
511
+ "description" :
512
+ """ITU V.32terbo""",
513
+ }, # node
514
+ "mdmLineCapabilitiesVFC" : {
515
+ "nodetype" : "node",
516
+ "moduleName" : "Modem-MIB",
517
+ "oid" : "1.3.6.1.2.1.38.1.1.5.13",
518
+ "status" : "current",
519
+ "description" :
520
+ """ITU V.FC""",
521
+ }, # node
522
+ "mdmLineCapabilitiesV34" : {
523
+ "nodetype" : "node",
524
+ "moduleName" : "Modem-MIB",
525
+ "oid" : "1.3.6.1.2.1.38.1.1.5.14",
526
+ "status" : "current",
527
+ "description" :
528
+ """ITU V.34""",
529
+ }, # node
530
+ "mdmLineCapabilitiesV42" : {
531
+ "nodetype" : "node",
532
+ "moduleName" : "Modem-MIB",
533
+ "oid" : "1.3.6.1.2.1.38.1.1.5.15",
534
+ "status" : "current",
535
+ "description" :
536
+ """ITU V.42""",
537
+ }, # node
538
+ "mdmLineCapabilitiesV42bis" : {
539
+ "nodetype" : "node",
540
+ "moduleName" : "Modem-MIB",
541
+ "oid" : "1.3.6.1.2.1.38.1.1.5.16",
542
+ "status" : "current",
543
+ "description" :
544
+ """ITU V.42bis""",
545
+ }, # node
546
+ "mdmLineCapabilitiesMNP1" : {
547
+ "nodetype" : "node",
548
+ "moduleName" : "Modem-MIB",
549
+ "oid" : "1.3.6.1.2.1.38.1.1.5.17",
550
+ "status" : "current",
551
+ "description" :
552
+ """MNP1""",
553
+ }, # node
554
+ "mdmLineCapabilitiesMNP2" : {
555
+ "nodetype" : "node",
556
+ "moduleName" : "Modem-MIB",
557
+ "oid" : "1.3.6.1.2.1.38.1.1.5.18",
558
+ "status" : "current",
559
+ "description" :
560
+ """MNP2""",
561
+ }, # node
562
+ "mdmLineCapabilitiesMNP3" : {
563
+ "nodetype" : "node",
564
+ "moduleName" : "Modem-MIB",
565
+ "oid" : "1.3.6.1.2.1.38.1.1.5.19",
566
+ "status" : "current",
567
+ "description" :
568
+ """MNP3""",
569
+ }, # node
570
+ "mdmLineCapabilitiesMNP4" : {
571
+ "nodetype" : "node",
572
+ "moduleName" : "Modem-MIB",
573
+ "oid" : "1.3.6.1.2.1.38.1.1.5.20",
574
+ "status" : "current",
575
+ "description" :
576
+ """MNP4""",
577
+ }, # node
578
+ "mdmLineCapabilitiesMNP5" : {
579
+ "nodetype" : "node",
580
+ "moduleName" : "Modem-MIB",
581
+ "oid" : "1.3.6.1.2.1.38.1.1.5.21",
582
+ "status" : "current",
583
+ "description" :
584
+ """MNP5""",
585
+ }, # node
586
+ "mdmLineCapabilitiesMNP6" : {
587
+ "nodetype" : "node",
588
+ "moduleName" : "Modem-MIB",
589
+ "oid" : "1.3.6.1.2.1.38.1.1.5.22",
590
+ "status" : "current",
591
+ "description" :
592
+ """MNP6""",
593
+ }, # node
594
+ "mdmLineCapabilitiesMNP7" : {
595
+ "nodetype" : "node",
596
+ "moduleName" : "Modem-MIB",
597
+ "oid" : "1.3.6.1.2.1.38.1.1.5.23",
598
+ "status" : "current",
599
+ "description" :
600
+ """MNP7""",
601
+ }, # node
602
+ "mdmLineCapabilitiesMNP8" : {
603
+ "nodetype" : "node",
604
+ "moduleName" : "Modem-MIB",
605
+ "oid" : "1.3.6.1.2.1.38.1.1.5.24",
606
+ "status" : "current",
607
+ "description" :
608
+ """MNP8""",
609
+ }, # node
610
+ "mdmLineCapabilitiesMNP9" : {
611
+ "nodetype" : "node",
612
+ "moduleName" : "Modem-MIB",
613
+ "oid" : "1.3.6.1.2.1.38.1.1.5.25",
614
+ "status" : "current",
615
+ "description" :
616
+ """MNP9""",
617
+ }, # node
618
+ "mdmLineCapabilitiesMNP10" : {
619
+ "nodetype" : "node",
620
+ "moduleName" : "Modem-MIB",
621
+ "oid" : "1.3.6.1.2.1.38.1.1.5.26",
622
+ "status" : "current",
623
+ "description" :
624
+ """MNP10""",
625
+ }, # node
626
+ "mdmLineCapabilitiesV29" : {
627
+ "nodetype" : "node",
628
+ "moduleName" : "Modem-MIB",
629
+ "oid" : "1.3.6.1.2.1.38.1.1.5.27",
630
+ "status" : "current",
631
+ "description" :
632
+ """ITU V.29""",
633
+ }, # node
634
+ "mdmLineCapabilitiesV33" : {
635
+ "nodetype" : "node",
636
+ "moduleName" : "Modem-MIB",
637
+ "oid" : "1.3.6.1.2.1.38.1.1.5.28",
638
+ "status" : "current",
639
+ "description" :
640
+ """ITU V.33""",
641
+ }, # node
642
+ "mdmLineCapabilitiesBell208" : {
643
+ "nodetype" : "node",
644
+ "moduleName" : "Modem-MIB",
645
+ "oid" : "1.3.6.1.2.1.38.1.1.5.29",
646
+ "status" : "current",
647
+ "description" :
648
+ """Bell 208""",
649
+ }, # node
650
+ "mdmDTEInterfaceTable" : {
651
+ "nodetype" : "table",
652
+ "moduleName" : "Modem-MIB",
653
+ "oid" : "1.3.6.1.2.1.38.1.1.6",
654
+ "status" : "current",
655
+ "description" :
656
+ """The modem DTE Interface Table augments the modem ID table.""",
657
+ }, # table
658
+ "mdmDTEInterfaceEntry" : {
659
+ "nodetype" : "row",
660
+ "moduleName" : "Modem-MIB",
661
+ "oid" : "1.3.6.1.2.1.38.1.1.6.1",
662
+ "status" : "current",
663
+ "linkage" : [
664
+ { "Modem-MIB" : {
665
+ "indexkind" : "augments",
666
+ "relatedNode" : "mdmIDEntry",
667
+ }},
668
+ ],
669
+ "description" :
670
+ """Entries in this table are created only by the agent. One
671
+ entry exists for each modem managed by the agent.""",
672
+ }, # row
673
+ "mdmDTEActionDTROnToOff" : {
674
+ "nodetype" : "column",
675
+ "moduleName" : "Modem-MIB",
676
+ "oid" : "1.3.6.1.2.1.38.1.1.6.1.1",
677
+ "status" : "current",
678
+ "syntax" : {
679
+ "type" : {
680
+ "basetype" : "Enumeration",
681
+ "ignore" : {
682
+ "nodetype" : "namednumber",
683
+ "number" : "1"
684
+ },
685
+ "escapeToCommandMode" : {
686
+ "nodetype" : "namednumber",
687
+ "number" : "2"
688
+ },
689
+ "disconnectCall" : {
690
+ "nodetype" : "namednumber",
691
+ "number" : "3"
692
+ },
693
+ "resetModem" : {
694
+ "nodetype" : "namednumber",
695
+ "number" : "4"
696
+ },
697
+ },
698
+ },
699
+ "access" : "readwrite",
700
+ "default" : "disconnectCall",
701
+ "description" :
702
+ """Defines the action the modem will take when DTR drops.
703
+
704
+ If the value is set to ignore(1), the modem takes no action
705
+ when DTR drops. Typically, mdmDTEActionDTROffToOn would
706
+ also be set to ignore(1) if this object is set to ignore(1).
707
+
708
+ If the value is escapeToCommandMode(2), the modem remains
709
+ connected and enters command mode. If the value is
710
+ disconnectCall(3), the current call (if any) is terminated
711
+ and the modem will not auto-answer while DTR is off. If the
712
+ value is resetModem(4), the current call (if any) is
713
+ terminated and the modem is reset.""",
714
+ }, # column
715
+ "mdmDTEActionDTROffToOn" : {
716
+ "nodetype" : "column",
717
+ "moduleName" : "Modem-MIB",
718
+ "oid" : "1.3.6.1.2.1.38.1.1.6.1.2",
719
+ "status" : "current",
720
+ "syntax" : {
721
+ "type" : {
722
+ "basetype" : "Enumeration",
723
+ "ignore" : {
724
+ "nodetype" : "namednumber",
725
+ "number" : "1"
726
+ },
727
+ "enableDial" : {
728
+ "nodetype" : "namednumber",
729
+ "number" : "2"
730
+ },
731
+ "autoAnswerEnable" : {
732
+ "nodetype" : "namednumber",
733
+ "number" : "3"
734
+ },
735
+ "establishConnection" : {
736
+ "nodetype" : "namednumber",
737
+ "number" : "4"
738
+ },
739
+ },
740
+ },
741
+ "access" : "readwrite",
742
+ "default" : "autoAnswerEnable",
743
+ "description" :
744
+ """Defines the action the modem will take when DTR is raised.
745
+
746
+ If the value is set to ignore(1), the modem takes no action
747
+ when DTR is raised. Typically, mdmDTEActionDTROnToOff would
748
+ also be set to ignore(1) if this object is set to ignore(1).
749
+
750
+ If the value is set to enableDial(2), the modem prepares to
751
+ dial an outgoing call. If the value is set to
752
+ autoAnswerEnable(3), the modem will be configured to answer
753
+ any incoming call. If the value is set to
754
+ establishConnection(4), the modem dials an implementation
755
+ specific number.
756
+
757
+ Immediately after any reset or power-on of the modem, if the
758
+ DTR is high, the action specified here will be executed.""",
759
+ }, # column
760
+ "mdmDTESyncTimingSource" : {
761
+ "nodetype" : "column",
762
+ "moduleName" : "Modem-MIB",
763
+ "oid" : "1.3.6.1.2.1.38.1.1.6.1.3",
764
+ "status" : "current",
765
+ "syntax" : {
766
+ "type" : {
767
+ "basetype" : "Enumeration",
768
+ "internal" : {
769
+ "nodetype" : "namednumber",
770
+ "number" : "1"
771
+ },
772
+ "external" : {
773
+ "nodetype" : "namednumber",
774
+ "number" : "2"
775
+ },
776
+ "loopback" : {
777
+ "nodetype" : "namednumber",
778
+ "number" : "3"
779
+ },
780
+ "network" : {
781
+ "nodetype" : "namednumber",
782
+ "number" : "4"
783
+ },
784
+ },
785
+ },
786
+ "access" : "readwrite",
787
+ "default" : "internal",
788
+ "description" :
789
+ """The clock source for synchronous transmissions. If set to
790
+ internal(1), the modem is the clock source and sends the
791
+ clock signals to the DTE. If set to external(2), the
792
+ transmit clock signals are provided by the DTE. If
793
+ loopback(3), the modem receiver clock is used for the
794
+ transmit clock. If network(4), the clock signals are
795
+ supplied by the DCE interface.
796
+
797
+ If the modem is not in synchronous mode, setting this object
798
+ will have no effect on the current operations of the modem.""",
799
+ "reference" :
800
+ """V.58 transmitClockSource""",
801
+ }, # column
802
+ "mdmDTESyncAsyncMode" : {
803
+ "nodetype" : "column",
804
+ "moduleName" : "Modem-MIB",
805
+ "oid" : "1.3.6.1.2.1.38.1.1.6.1.4",
806
+ "status" : "current",
807
+ "syntax" : {
808
+ "type" : {
809
+ "basetype" : "Enumeration",
810
+ "async" : {
811
+ "nodetype" : "namednumber",
812
+ "number" : "1"
813
+ },
814
+ "sync" : {
815
+ "nodetype" : "namednumber",
816
+ "number" : "2"
817
+ },
818
+ "syncAfterDial" : {
819
+ "nodetype" : "namednumber",
820
+ "number" : "3"
821
+ },
822
+ },
823
+ },
824
+ "access" : "readwrite",
825
+ "default" : "async",
826
+ "description" :
827
+ """The operational mode of the modem. If the value is
828
+ syncAfterDial(3), the modem will accept commands in
829
+ asynchronous mode and change to synchronous mode to pass
830
+ data after a dial sequence has been executed.""",
831
+ }, # column
832
+ "mdmDTEInactivityTimeout" : {
833
+ "nodetype" : "column",
834
+ "moduleName" : "Modem-MIB",
835
+ "oid" : "1.3.6.1.2.1.38.1.1.6.1.5",
836
+ "status" : "current",
837
+ "syntax" : {
838
+ "type" : {
839
+ "basetype" : "Integer32",
840
+ "ranges" : [
841
+ {
842
+ "min" : "0",
843
+ "max" : "65535"
844
+ },
845
+ ],
846
+ "range" : {
847
+ "min" : "0",
848
+ "max" : "65535"
849
+ },
850
+ },
851
+ },
852
+ "access" : "readwrite",
853
+ "default" : "0",
854
+ "description" :
855
+ """The amount of idle time in minutes that the modem will wait
856
+ before disconnecting a connection. When a call is connected
857
+ and no data is transferred (continuous marking condition) on
858
+ both circuits 103 and 104 for the specified time, the DCE
859
+ disconnects the call. If the value is 0, no idle disconnect
860
+ will occur. This function applies to asynchronous dial
861
+ operations only and is intended for administrative control
862
+ over idle connections.""",
863
+ "reference" :
864
+ """V.58 inactivityTimerSelect""",
865
+ }, # column
866
+ "mdmCallControlTable" : {
867
+ "nodetype" : "table",
868
+ "moduleName" : "Modem-MIB",
869
+ "oid" : "1.3.6.1.2.1.38.1.1.7",
870
+ "status" : "current",
871
+ "description" :
872
+ """The modem Call Control Table augments the modem ID table.""",
873
+ }, # table
874
+ "mdmCallControlEntry" : {
875
+ "nodetype" : "row",
876
+ "moduleName" : "Modem-MIB",
877
+ "oid" : "1.3.6.1.2.1.38.1.1.7.1",
878
+ "status" : "current",
879
+ "linkage" : [
880
+ { "Modem-MIB" : {
881
+ "indexkind" : "augments",
882
+ "relatedNode" : "mdmIDEntry",
883
+ }},
884
+ ],
885
+ "description" :
886
+ """Entries in this table are created only by the agent. One
887
+ entry exists for each modem managed by the agent.""",
888
+ }, # row
889
+ "mdmCCRingsBeforeAnswer" : {
890
+ "nodetype" : "column",
891
+ "moduleName" : "Modem-MIB",
892
+ "oid" : "1.3.6.1.2.1.38.1.1.7.1.1",
893
+ "status" : "current",
894
+ "syntax" : {
895
+ "type" : { "module" :"", "name" : "Integer32"},
896
+ },
897
+ "access" : "readwrite",
898
+ "default" : "1",
899
+ "description" :
900
+ """Determines which ring the modem will wait to answer the
901
+ phone on. If this value is `0', the modem will not go
902
+ offhook and answer a call when a ring signal is detected.""",
903
+ "reference" :
904
+ """V.58 ringsBeforeAnswer""",
905
+ }, # column
906
+ "mdmCCCallSetUpFailTimer" : {
907
+ "nodetype" : "column",
908
+ "moduleName" : "Modem-MIB",
909
+ "oid" : "1.3.6.1.2.1.38.1.1.7.1.2",
910
+ "status" : "current",
911
+ "syntax" : {
912
+ "type" : {
913
+ "basetype" : "Integer32",
914
+ "ranges" : [
915
+ {
916
+ "min" : "0",
917
+ "max" : "255"
918
+ },
919
+ ],
920
+ "range" : {
921
+ "min" : "0",
922
+ "max" : "255"
923
+ },
924
+ },
925
+ },
926
+ "access" : "readwrite",
927
+ "default" : "30",
928
+ "description" :
929
+ """This parameter specifies the amount of time, in seconds,
930
+ that the modem shall allow between either answering a call
931
+ (automatically or manually) or completion of dialing, and
932
+ establishment of a connection with the remote modem. If no
933
+ connection is established during this time, the modem
934
+ disconnects from the line and returns a result code
935
+ indicating the cause of the disconnection. In TIA-602, this
936
+ is controlled by the value in the S7 register.""",
937
+ "reference" :
938
+ """V.58 callSetUpFailTimer""",
939
+ }, # column
940
+ "mdmCCResultCodeEnable" : {
941
+ "nodetype" : "column",
942
+ "moduleName" : "Modem-MIB",
943
+ "oid" : "1.3.6.1.2.1.38.1.1.7.1.3",
944
+ "status" : "current",
945
+ "syntax" : {
946
+ "type" : {
947
+ "basetype" : "Enumeration",
948
+ "disabled" : {
949
+ "nodetype" : "namednumber",
950
+ "number" : "1"
951
+ },
952
+ "numericEnabled" : {
953
+ "nodetype" : "namednumber",
954
+ "number" : "2"
955
+ },
956
+ "verboseEnabled" : {
957
+ "nodetype" : "namednumber",
958
+ "number" : "3"
959
+ },
960
+ },
961
+ },
962
+ "access" : "readwrite",
963
+ "default" : "verboseEnabled",
964
+ "description" :
965
+ """When disabled, the DCE shall issue no 'result codes' of any
966
+ kind to the DTE either in response to unsolicited events
967
+ (eg. ring signal), or commands. In TIA-602, this is
968
+ controlled by the ATQ command. When numericEnabled, the DCE
969
+ shall issue result codes in numeric form. When
970
+ verboseEnabled, the DCE shall issue result codes in a
971
+ verbose, textual form.""",
972
+ "reference" :
973
+ """V.58 responseModeSelect""",
974
+ }, # column
975
+ "mdmCCEscapeAction" : {
976
+ "nodetype" : "column",
977
+ "moduleName" : "Modem-MIB",
978
+ "oid" : "1.3.6.1.2.1.38.1.1.7.1.4",
979
+ "status" : "current",
980
+ "syntax" : {
981
+ "type" : {
982
+ "basetype" : "Enumeration",
983
+ "ignoreEscape" : {
984
+ "nodetype" : "namednumber",
985
+ "number" : "1"
986
+ },
987
+ "hangUp" : {
988
+ "nodetype" : "namednumber",
989
+ "number" : "2"
990
+ },
991
+ "enterCommandMode" : {
992
+ "nodetype" : "namednumber",
993
+ "number" : "3"
994
+ },
995
+ },
996
+ },
997
+ "access" : "readwrite",
998
+ "default" : "ignoreEscape",
999
+ "description" :
1000
+ """The modem's action upon successfully recognizing the
1001
+ 'escape to command mode' character sequence.""",
1002
+ }, # column
1003
+ "mdmCCCallDuration" : {
1004
+ "nodetype" : "column",
1005
+ "moduleName" : "Modem-MIB",
1006
+ "oid" : "1.3.6.1.2.1.38.1.1.7.1.5",
1007
+ "status" : "current",
1008
+ "syntax" : {
1009
+ "type" : { "module" :"", "name" : "Integer32"},
1010
+ },
1011
+ "access" : "readonly",
1012
+ "description" :
1013
+ """Present or last completed connection time in seconds. If
1014
+ there have been no previous connections, this value should
1015
+ be -1.""",
1016
+ }, # column
1017
+ "mdmCCConnectionFailReason" : {
1018
+ "nodetype" : "column",
1019
+ "moduleName" : "Modem-MIB",
1020
+ "oid" : "1.3.6.1.2.1.38.1.1.7.1.6",
1021
+ "status" : "current",
1022
+ "syntax" : {
1023
+ "type" : {
1024
+ "basetype" : "Enumeration",
1025
+ "unknown" : {
1026
+ "nodetype" : "namednumber",
1027
+ "number" : "1"
1028
+ },
1029
+ "other" : {
1030
+ "nodetype" : "namednumber",
1031
+ "number" : "2"
1032
+ },
1033
+ "managementCommand" : {
1034
+ "nodetype" : "namednumber",
1035
+ "number" : "3"
1036
+ },
1037
+ "inactivityTimeout" : {
1038
+ "nodetype" : "namednumber",
1039
+ "number" : "4"
1040
+ },
1041
+ "mnpIncompatibility" : {
1042
+ "nodetype" : "namednumber",
1043
+ "number" : "5"
1044
+ },
1045
+ "protocolError" : {
1046
+ "nodetype" : "namednumber",
1047
+ "number" : "6"
1048
+ },
1049
+ "powerLoss" : {
1050
+ "nodetype" : "namednumber",
1051
+ "number" : "10"
1052
+ },
1053
+ "equipmentFailure" : {
1054
+ "nodetype" : "namednumber",
1055
+ "number" : "11"
1056
+ },
1057
+ "dtrDrop" : {
1058
+ "nodetype" : "namednumber",
1059
+ "number" : "20"
1060
+ },
1061
+ "noDialTone" : {
1062
+ "nodetype" : "namednumber",
1063
+ "number" : "30"
1064
+ },
1065
+ "lineBusy" : {
1066
+ "nodetype" : "namednumber",
1067
+ "number" : "31"
1068
+ },
1069
+ "noAnswer" : {
1070
+ "nodetype" : "namednumber",
1071
+ "number" : "32"
1072
+ },
1073
+ "voiceDetected" : {
1074
+ "nodetype" : "namednumber",
1075
+ "number" : "33"
1076
+ },
1077
+ "carrierLost" : {
1078
+ "nodetype" : "namednumber",
1079
+ "number" : "40"
1080
+ },
1081
+ "trainingFailed" : {
1082
+ "nodetype" : "namednumber",
1083
+ "number" : "41"
1084
+ },
1085
+ "faxDetected" : {
1086
+ "nodetype" : "namednumber",
1087
+ "number" : "42"
1088
+ },
1089
+ },
1090
+ },
1091
+ "access" : "readonly",
1092
+ "description" :
1093
+ """Indicates the reason that the last connection or attempt
1094
+ failed. The meaning of each reason code is explained below.
1095
+
1096
+ unknown:
1097
+ This code means the failure reason is unknown or
1098
+ there has been no previous call.
1099
+
1100
+ other:
1101
+ This code used when no other code is applicable.
1102
+ Additional vendor information may be available
1103
+ elsewhere.
1104
+
1105
+ managementCommand:
1106
+ A management command terminated the call. These
1107
+ commands include escaping to command mode, initiating
1108
+ dialing, restoring lines, and disconnecting.
1109
+
1110
+ inactivityTimeout:
1111
+ The call was terminated because it was inactive for
1112
+ at the minimum duration specified.
1113
+
1114
+ mnpIncompatibility:
1115
+ The modems are unable to resolve MNP protocol
1116
+ differences.
1117
+
1118
+ protocolError:
1119
+ An error occured in one of protocol in use. Further
1120
+ information is required to determine in which
1121
+ protocol the error occurred, and the exact nature of
1122
+ the error.
1123
+
1124
+ powerLoss:
1125
+ The modem lost power and disconnected the call.
1126
+
1127
+ equipmentFailure:
1128
+ The modem equipment failed.
1129
+
1130
+ dtrDrop:
1131
+ DTR has been turned off while the modem is to
1132
+ disconnect on DTR drop. (Ref: V.58 cct108TurnedOff)
1133
+
1134
+ noDialTone:
1135
+ If the modem is to monitor for call progress tones,
1136
+ but the modem has failed to detect dial tone while
1137
+ attempting to dial a number.
1138
+
1139
+ lineBusy:
1140
+ Busy signal is detected while busy signal detection
1141
+ is enabled, or while the 'W' or '@' dial modifier is
1142
+ used. (Ref: V.58 engagedTone)
1143
+
1144
+ noAnswer:
1145
+ The call was not answered.
1146
+
1147
+ voiceDetected:
1148
+ A voice was detected on the call.
1149
+
1150
+ carrierLost:
1151
+ Indicates that the modem has disconnected due to
1152
+ detection of loss of carrier. In TIA-602, the S10
1153
+ register determines the time that loss of carrier
1154
+ must be detected before the modem disconnects.
1155
+
1156
+ trainingFailed:
1157
+ Indicates that the modems did not successfully train
1158
+ and reach data mode on the previous connection.
1159
+
1160
+ faxDetected:
1161
+ A fax was detected on the call.""",
1162
+ "reference" :
1163
+ """V.58 callCleared""",
1164
+ }, # column
1165
+ "mdmCCStoredDialStringTable" : {
1166
+ "nodetype" : "table",
1167
+ "moduleName" : "Modem-MIB",
1168
+ "oid" : "1.3.6.1.2.1.38.1.1.8",
1169
+ "status" : "current",
1170
+ "description" :
1171
+ """The table of stored dial strings.""",
1172
+ "reference" :
1173
+ """V.58 telephoneNumbers""",
1174
+ }, # table
1175
+ "mdmCCStoredDialStringEntry" : {
1176
+ "nodetype" : "row",
1177
+ "moduleName" : "Modem-MIB",
1178
+ "oid" : "1.3.6.1.2.1.38.1.1.8.1",
1179
+ "status" : "current",
1180
+ "linkage" : [
1181
+ "mdmIndex",
1182
+ "mdmCCStoredDialStringIndex",
1183
+ ],
1184
+ "description" :
1185
+ """A stored dial string.""",
1186
+ }, # row
1187
+ "mdmCCStoredDialStringIndex" : {
1188
+ "nodetype" : "column",
1189
+ "moduleName" : "Modem-MIB",
1190
+ "oid" : "1.3.6.1.2.1.38.1.1.8.1.1",
1191
+ "status" : "current",
1192
+ "syntax" : {
1193
+ "type" : {
1194
+ "basetype" : "Integer32",
1195
+ "ranges" : [
1196
+ {
1197
+ "min" : "0",
1198
+ "max" : "65535"
1199
+ },
1200
+ ],
1201
+ "range" : {
1202
+ "min" : "0",
1203
+ "max" : "65535"
1204
+ },
1205
+ },
1206
+ },
1207
+ "access" : "noaccess",
1208
+ "description" :
1209
+ """The unique index of a particular dial string.""",
1210
+ }, # column
1211
+ "mdmCCStoredDialString" : {
1212
+ "nodetype" : "column",
1213
+ "moduleName" : "Modem-MIB",
1214
+ "oid" : "1.3.6.1.2.1.38.1.1.8.1.2",
1215
+ "status" : "current",
1216
+ "syntax" : {
1217
+ "type" : {
1218
+ "basetype" : "OctetString",
1219
+ "parent module" : {
1220
+ "name" : "SNMPv2-TC",
1221
+ "type" : "DisplayString",
1222
+ },
1223
+ "ranges" : [
1224
+ {
1225
+ "min" : "0",
1226
+ "max" : "64"
1227
+ },
1228
+ ],
1229
+ "range" : {
1230
+ "min" : "0",
1231
+ "max" : "64"
1232
+ },
1233
+ },
1234
+ },
1235
+ "access" : "readwrite",
1236
+ "description" :
1237
+ """A dial string stored in the modem.""",
1238
+ }, # column
1239
+ "mdmECTable" : {
1240
+ "nodetype" : "table",
1241
+ "moduleName" : "Modem-MIB",
1242
+ "oid" : "1.3.6.1.2.1.38.1.1.9",
1243
+ "status" : "current",
1244
+ "description" :
1245
+ """The modem error correcting table augments the modem ID
1246
+ table.""",
1247
+ }, # table
1248
+ "mdmECEntry" : {
1249
+ "nodetype" : "row",
1250
+ "moduleName" : "Modem-MIB",
1251
+ "oid" : "1.3.6.1.2.1.38.1.1.9.1",
1252
+ "status" : "current",
1253
+ "linkage" : [
1254
+ { "Modem-MIB" : {
1255
+ "indexkind" : "augments",
1256
+ "relatedNode" : "mdmIDEntry",
1257
+ }},
1258
+ ],
1259
+ "description" :
1260
+ """Entries in this table are created only by the agent. One
1261
+ entry exists for each modem managed by the agent.""",
1262
+ }, # row
1263
+ "mdmECErrorControlUsed" : {
1264
+ "nodetype" : "column",
1265
+ "moduleName" : "Modem-MIB",
1266
+ "oid" : "1.3.6.1.2.1.38.1.1.9.1.1",
1267
+ "status" : "current",
1268
+ "syntax" : {
1269
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1270
+ },
1271
+ "access" : "readonly",
1272
+ "description" :
1273
+ """Indicates the error control method used during the current
1274
+ or previous call. This shall be one of the values for error
1275
+ control protocols registered in the capabilities table for
1276
+ this modem. If no error control protocol is in use, this
1277
+ object shall have the value '{0 0}'.""",
1278
+ "reference" :
1279
+ """V.58 errorControlActive""",
1280
+ }, # column
1281
+ "mdmDCTable" : {
1282
+ "nodetype" : "table",
1283
+ "moduleName" : "Modem-MIB",
1284
+ "oid" : "1.3.6.1.2.1.38.1.1.10",
1285
+ "status" : "current",
1286
+ "description" :
1287
+ """The modem data compression table augments the modem ID
1288
+ table.""",
1289
+ }, # table
1290
+ "mdmDCEntry" : {
1291
+ "nodetype" : "row",
1292
+ "moduleName" : "Modem-MIB",
1293
+ "oid" : "1.3.6.1.2.1.38.1.1.10.1",
1294
+ "status" : "current",
1295
+ "linkage" : [
1296
+ { "Modem-MIB" : {
1297
+ "indexkind" : "augments",
1298
+ "relatedNode" : "mdmIDEntry",
1299
+ }},
1300
+ ],
1301
+ "description" :
1302
+ """Entries in this table are created only by the agent. One
1303
+ entry exists for each modem managed by the agent.""",
1304
+ }, # row
1305
+ "mdmDCCompressionTypeUsed" : {
1306
+ "nodetype" : "column",
1307
+ "moduleName" : "Modem-MIB",
1308
+ "oid" : "1.3.6.1.2.1.38.1.1.10.1.1",
1309
+ "status" : "current",
1310
+ "syntax" : {
1311
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1312
+ },
1313
+ "access" : "readonly",
1314
+ "description" :
1315
+ """Indicates the data compression method used during the
1316
+ current or previous call. This shall be one of the values
1317
+ for compression protocols registered in the capabilities
1318
+ table for this modem. If no compression protocol is in use,
1319
+ this object shall have the value '{0 0}'.""",
1320
+ }, # column
1321
+ "mdmSCTable" : {
1322
+ "nodetype" : "table",
1323
+ "moduleName" : "Modem-MIB",
1324
+ "oid" : "1.3.6.1.2.1.38.1.1.11",
1325
+ "status" : "current",
1326
+ "description" :
1327
+ """The modem signal convertor table augments the modem ID
1328
+ table.""",
1329
+ }, # table
1330
+ "mdmSCEntry" : {
1331
+ "nodetype" : "row",
1332
+ "moduleName" : "Modem-MIB",
1333
+ "oid" : "1.3.6.1.2.1.38.1.1.11.1",
1334
+ "status" : "current",
1335
+ "linkage" : [
1336
+ { "Modem-MIB" : {
1337
+ "indexkind" : "augments",
1338
+ "relatedNode" : "mdmIDEntry",
1339
+ }},
1340
+ ],
1341
+ "description" :
1342
+ """Entries in this table are created only by the agent. One
1343
+ entry exists for each modem managed by the agent.""",
1344
+ }, # row
1345
+ "mdmSCCurrentLineTransmitRate" : {
1346
+ "nodetype" : "column",
1347
+ "moduleName" : "Modem-MIB",
1348
+ "oid" : "1.3.6.1.2.1.38.1.1.11.1.1",
1349
+ "status" : "current",
1350
+ "syntax" : {
1351
+ "type" : { "module" :"", "name" : "Integer32"},
1352
+ },
1353
+ "access" : "readonly",
1354
+ "description" :
1355
+ """The current link transmit rate of a connection, or the last
1356
+ link transmit rate of the last connection in bits per
1357
+ second.""",
1358
+ "reference" :
1359
+ """V.58 transmissionSignallingRateActive""",
1360
+ }, # column
1361
+ "mdmSCCurrentLineReceiveRate" : {
1362
+ "nodetype" : "column",
1363
+ "moduleName" : "Modem-MIB",
1364
+ "oid" : "1.3.6.1.2.1.38.1.1.11.1.2",
1365
+ "status" : "current",
1366
+ "syntax" : {
1367
+ "type" : { "module" :"", "name" : "Integer32"},
1368
+ },
1369
+ "access" : "readonly",
1370
+ "description" :
1371
+ """The current link receive rate of a connection, or the last
1372
+ link receive rate of the last connection in bits per
1373
+ second.""",
1374
+ "reference" :
1375
+ """V.58 transmissionSignallingRateActive""",
1376
+ }, # column
1377
+ "mdmSCInitialLineTransmitRate" : {
1378
+ "nodetype" : "column",
1379
+ "moduleName" : "Modem-MIB",
1380
+ "oid" : "1.3.6.1.2.1.38.1.1.11.1.3",
1381
+ "status" : "current",
1382
+ "syntax" : {
1383
+ "type" : { "module" :"", "name" : "Integer32"},
1384
+ },
1385
+ "access" : "readonly",
1386
+ "description" :
1387
+ """The initial link transmit rate of the current connection,
1388
+ or the initial link transmit rate of the last connection in
1389
+ bits per second.""",
1390
+ }, # column
1391
+ "mdmSCInitialLineReceiveRate" : {
1392
+ "nodetype" : "column",
1393
+ "moduleName" : "Modem-MIB",
1394
+ "oid" : "1.3.6.1.2.1.38.1.1.11.1.4",
1395
+ "status" : "current",
1396
+ "syntax" : {
1397
+ "type" : { "module" :"", "name" : "Integer32"},
1398
+ },
1399
+ "access" : "readonly",
1400
+ "description" :
1401
+ """The initial link receive rate of the current connection, or
1402
+ the initial link receive rate of the last connection in bits
1403
+ per second.""",
1404
+ }, # column
1405
+ "mdmSCModulationSchemeUsed" : {
1406
+ "nodetype" : "column",
1407
+ "moduleName" : "Modem-MIB",
1408
+ "oid" : "1.3.6.1.2.1.38.1.1.11.1.5",
1409
+ "status" : "current",
1410
+ "syntax" : {
1411
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1412
+ },
1413
+ "access" : "readonly",
1414
+ "description" :
1415
+ """The modulation scheme of the current or previous call.
1416
+ This shall be one of the values for modulation protocols
1417
+ registered in the capabilities table for this modem.""",
1418
+ "reference" :
1419
+ """V.58 gstnModulationSchemeActive""",
1420
+ }, # column
1421
+ "mdmStatsTable" : {
1422
+ "nodetype" : "table",
1423
+ "moduleName" : "Modem-MIB",
1424
+ "oid" : "1.3.6.1.2.1.38.1.1.12",
1425
+ "status" : "current",
1426
+ "description" :
1427
+ """The modem statistics Table augments the modem ID table.""",
1428
+ }, # table
1429
+ "mdmStatsEntry" : {
1430
+ "nodetype" : "row",
1431
+ "moduleName" : "Modem-MIB",
1432
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1",
1433
+ "status" : "current",
1434
+ "linkage" : [
1435
+ { "Modem-MIB" : {
1436
+ "indexkind" : "augments",
1437
+ "relatedNode" : "mdmIDEntry",
1438
+ }},
1439
+ ],
1440
+ "description" :
1441
+ """Entries in this table are created only by the agent. One
1442
+ entry exists for each modem managed by the agent.""",
1443
+ }, # row
1444
+ "mdmStatsRingNoAnswers" : {
1445
+ "nodetype" : "column",
1446
+ "moduleName" : "Modem-MIB",
1447
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.1",
1448
+ "status" : "current",
1449
+ "syntax" : {
1450
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1451
+ },
1452
+ "access" : "readonly",
1453
+ "description" :
1454
+ """The number of events in which ringing was detected but the
1455
+ call was not answered.""",
1456
+ }, # column
1457
+ "mdmStatsIncomingConnectionFailures" : {
1458
+ "nodetype" : "column",
1459
+ "moduleName" : "Modem-MIB",
1460
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.2",
1461
+ "status" : "current",
1462
+ "syntax" : {
1463
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1464
+ },
1465
+ "access" : "readonly",
1466
+ "description" :
1467
+ """The number of incoming connection requests that this modem
1468
+ answered in which it could not train with the other DCE.""",
1469
+ }, # column
1470
+ "mdmStatsIncomingConnectionCompletions" : {
1471
+ "nodetype" : "column",
1472
+ "moduleName" : "Modem-MIB",
1473
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.3",
1474
+ "status" : "current",
1475
+ "syntax" : {
1476
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1477
+ },
1478
+ "access" : "readonly",
1479
+ "description" :
1480
+ """The number of incoming connection requests that this modem
1481
+ answered and successfully trained with the other DCE.""",
1482
+ }, # column
1483
+ "mdmStatsFailedDialAttempts" : {
1484
+ "nodetype" : "column",
1485
+ "moduleName" : "Modem-MIB",
1486
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.4",
1487
+ "status" : "current",
1488
+ "syntax" : {
1489
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1490
+ },
1491
+ "access" : "readonly",
1492
+ "description" :
1493
+ """The number of call attempts that failed because the modem
1494
+ didn't go off hook, or there was no dialtone.""",
1495
+ }, # column
1496
+ "mdmStatsOutgoingConnectionFailures" : {
1497
+ "nodetype" : "column",
1498
+ "moduleName" : "Modem-MIB",
1499
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.5",
1500
+ "status" : "current",
1501
+ "syntax" : {
1502
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1503
+ },
1504
+ "access" : "readonly",
1505
+ "description" :
1506
+ """The number of outgoing calls from this modem which
1507
+ sucessfully went off hook and dialed, in which it could not
1508
+ train with the other DCE.""",
1509
+ }, # column
1510
+ "mdmStatsOutgoingConnectionCompletions" : {
1511
+ "nodetype" : "column",
1512
+ "moduleName" : "Modem-MIB",
1513
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.6",
1514
+ "status" : "current",
1515
+ "syntax" : {
1516
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1517
+ },
1518
+ "access" : "readonly",
1519
+ "description" :
1520
+ """The number of outgoing calls from this modem which resulted
1521
+ in successfully training with the other DCE.""",
1522
+ }, # column
1523
+ "mdmStatsRetrains" : {
1524
+ "nodetype" : "column",
1525
+ "moduleName" : "Modem-MIB",
1526
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.7",
1527
+ "status" : "current",
1528
+ "syntax" : {
1529
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1530
+ },
1531
+ "access" : "readonly",
1532
+ "description" :
1533
+ """The number of retrains experienced on connections on this
1534
+ line.""",
1535
+ }, # column
1536
+ "mdmStats2400OrLessConnections" : {
1537
+ "nodetype" : "column",
1538
+ "moduleName" : "Modem-MIB",
1539
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.8",
1540
+ "status" : "current",
1541
+ "syntax" : {
1542
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1543
+ },
1544
+ "access" : "readonly",
1545
+ "description" :
1546
+ """The number of connections initially established at a
1547
+ modulation speed of 2400 bits per second or less.""",
1548
+ }, # column
1549
+ "mdmStats2400To14400Connections" : {
1550
+ "nodetype" : "column",
1551
+ "moduleName" : "Modem-MIB",
1552
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.9",
1553
+ "status" : "current",
1554
+ "syntax" : {
1555
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1556
+ },
1557
+ "access" : "readonly",
1558
+ "description" :
1559
+ """The number of connections initially established at a
1560
+ modulation speed of greater than 2400 bits per second and
1561
+ less than 14400 bits per second.""",
1562
+ }, # column
1563
+ "mdmStatsGreaterThan14400Connections" : {
1564
+ "nodetype" : "column",
1565
+ "moduleName" : "Modem-MIB",
1566
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.10",
1567
+ "status" : "current",
1568
+ "syntax" : {
1569
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1570
+ },
1571
+ "access" : "readonly",
1572
+ "description" :
1573
+ """The number of connections initially established at a
1574
+ modulation speed of greater than 14400 bits per second.""",
1575
+ }, # column
1576
+ "mdmStatsErrorControlledConnections" : {
1577
+ "nodetype" : "column",
1578
+ "moduleName" : "Modem-MIB",
1579
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.11",
1580
+ "status" : "current",
1581
+ "syntax" : {
1582
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1583
+ },
1584
+ "access" : "readonly",
1585
+ "description" :
1586
+ """The number of established connections using an error
1587
+ control protocol.""",
1588
+ }, # column
1589
+ "mdmStatsCompressedConnections" : {
1590
+ "nodetype" : "column",
1591
+ "moduleName" : "Modem-MIB",
1592
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.12",
1593
+ "status" : "current",
1594
+ "syntax" : {
1595
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1596
+ },
1597
+ "access" : "readonly",
1598
+ "description" :
1599
+ """The number of established connections using a compression
1600
+ protocol.""",
1601
+ }, # column
1602
+ "mdmStatsCompressionEfficiency" : {
1603
+ "nodetype" : "column",
1604
+ "moduleName" : "Modem-MIB",
1605
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.13",
1606
+ "status" : "current",
1607
+ "syntax" : {
1608
+ "type" : {
1609
+ "basetype" : "Integer32",
1610
+ "ranges" : [
1611
+ {
1612
+ "min" : "0",
1613
+ "max" : "65535"
1614
+ },
1615
+ ],
1616
+ "range" : {
1617
+ "min" : "0",
1618
+ "max" : "65535"
1619
+ },
1620
+ },
1621
+ },
1622
+ "access" : "readonly",
1623
+ "description" :
1624
+ """The number of bytes transferred into the compression
1625
+ encoder divided by the number of bytes transferred out of
1626
+ the encoder, multiplied by 100 for either the current or
1627
+ last call. If a data compression protocol is not in use,
1628
+ this value shall be `100'.""",
1629
+ "reference" :
1630
+ """V.58 compressionEfficiency""",
1631
+ }, # column
1632
+ "mdmStatsSentOctets" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "Modem-MIB",
1635
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.14",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1639
+ },
1640
+ "access" : "readonly",
1641
+ "description" :
1642
+ """The number of octets presented to the modem by the DTE.""",
1643
+ }, # column
1644
+ "mdmStatsReceivedOctets" : {
1645
+ "nodetype" : "column",
1646
+ "moduleName" : "Modem-MIB",
1647
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.15",
1648
+ "status" : "current",
1649
+ "syntax" : {
1650
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1651
+ },
1652
+ "access" : "readonly",
1653
+ "description" :
1654
+ """The number of octets presented to the DTE by the modem.""",
1655
+ }, # column
1656
+ "mdmStatsSentDataFrames" : {
1657
+ "nodetype" : "column",
1658
+ "moduleName" : "Modem-MIB",
1659
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.16",
1660
+ "status" : "current",
1661
+ "syntax" : {
1662
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1663
+ },
1664
+ "access" : "readonly",
1665
+ "description" :
1666
+ """The number of data frames sent on the line interface. If
1667
+ there is no frame-oriented protocol in use on the line
1668
+ interface, this counter shall not increment.""",
1669
+ }, # column
1670
+ "mdmStatsReceivedDataFrames" : {
1671
+ "nodetype" : "column",
1672
+ "moduleName" : "Modem-MIB",
1673
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.17",
1674
+ "status" : "current",
1675
+ "syntax" : {
1676
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1677
+ },
1678
+ "access" : "readonly",
1679
+ "description" :
1680
+ """The number of data frames received on the line interface.
1681
+ If there is no frame-oriented protocol in use on the line
1682
+ interface, this counter shall not increment.""",
1683
+ }, # column
1684
+ "mdmStatsResentFrames" : {
1685
+ "nodetype" : "column",
1686
+ "moduleName" : "Modem-MIB",
1687
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.18",
1688
+ "status" : "current",
1689
+ "syntax" : {
1690
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1691
+ },
1692
+ "access" : "readonly",
1693
+ "description" :
1694
+ """The number of times this modem retransmits frames on the
1695
+ line interface. If there is no frame-oriented protocol in
1696
+ use on the line interface, this counter shall not
1697
+ increment.""",
1698
+ }, # column
1699
+ "mdmStatsErrorFrames" : {
1700
+ "nodetype" : "column",
1701
+ "moduleName" : "Modem-MIB",
1702
+ "oid" : "1.3.6.1.2.1.38.1.1.12.1.19",
1703
+ "status" : "current",
1704
+ "syntax" : {
1705
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1706
+ },
1707
+ "access" : "readonly",
1708
+ "description" :
1709
+ """The number of block errors received on the link. If there
1710
+ is no frame-oriented protocol in use on the line interface,
1711
+ this counter shall not increment.""",
1712
+ }, # column
1713
+ "mdmConformance" : {
1714
+ "nodetype" : "node",
1715
+ "moduleName" : "Modem-MIB",
1716
+ "oid" : "1.3.6.1.2.1.38.1.2",
1717
+ }, # node
1718
+ "mdmCompliances" : {
1719
+ "nodetype" : "node",
1720
+ "moduleName" : "Modem-MIB",
1721
+ "oid" : "1.3.6.1.2.1.38.1.2.1",
1722
+ }, # node
1723
+ "mdmGroups" : {
1724
+ "nodetype" : "node",
1725
+ "moduleName" : "Modem-MIB",
1726
+ "oid" : "1.3.6.1.2.1.38.1.2.2",
1727
+ }, # node
1728
+ }, # nodes
1729
+
1730
+ "groups" : {
1731
+ "mdmIDGroup" : {
1732
+ "nodetype" : "group",
1733
+ "moduleName" : "Modem-MIB",
1734
+ "oid" : "1.3.6.1.2.1.38.1.2.2.1",
1735
+ "status" : "current",
1736
+ "members" : {
1737
+ "mdmIDManufacturerOID" : {
1738
+ "nodetype" : "member",
1739
+ "module" : "Modem-MIB"
1740
+ },
1741
+ "mdmIDProductDetails" : {
1742
+ "nodetype" : "member",
1743
+ "module" : "Modem-MIB"
1744
+ },
1745
+ }, # members
1746
+ "description" :
1747
+ """A collection of objects that identify the manufacturer and
1748
+ model information for a modem.""",
1749
+ }, # group
1750
+ "mdmLineInterfaceGroup" : {
1751
+ "nodetype" : "group",
1752
+ "moduleName" : "Modem-MIB",
1753
+ "oid" : "1.3.6.1.2.1.38.1.2.2.2",
1754
+ "status" : "current",
1755
+ "members" : {
1756
+ "mdmLineCarrierLossTime" : {
1757
+ "nodetype" : "member",
1758
+ "module" : "Modem-MIB"
1759
+ },
1760
+ "mdmLineState" : {
1761
+ "nodetype" : "member",
1762
+ "module" : "Modem-MIB"
1763
+ },
1764
+ "mdmLineCapabilitiesID" : {
1765
+ "nodetype" : "member",
1766
+ "module" : "Modem-MIB"
1767
+ },
1768
+ "mdmLineCapabilitiesEnableRequested" : {
1769
+ "nodetype" : "member",
1770
+ "module" : "Modem-MIB"
1771
+ },
1772
+ "mdmLineCapabilitiesEnableGranted" : {
1773
+ "nodetype" : "member",
1774
+ "module" : "Modem-MIB"
1775
+ },
1776
+ }, # members
1777
+ "description" :
1778
+ """A collection of objects that describe the configuration and
1779
+ state of the modem's line interface.""",
1780
+ }, # group
1781
+ "mdmDTEInterfaceGroup" : {
1782
+ "nodetype" : "group",
1783
+ "moduleName" : "Modem-MIB",
1784
+ "oid" : "1.3.6.1.2.1.38.1.2.2.3",
1785
+ "status" : "current",
1786
+ "members" : {
1787
+ "mdmDTEActionDTROnToOff" : {
1788
+ "nodetype" : "member",
1789
+ "module" : "Modem-MIB"
1790
+ },
1791
+ "mdmDTEActionDTROffToOn" : {
1792
+ "nodetype" : "member",
1793
+ "module" : "Modem-MIB"
1794
+ },
1795
+ "mdmDTESyncTimingSource" : {
1796
+ "nodetype" : "member",
1797
+ "module" : "Modem-MIB"
1798
+ },
1799
+ "mdmDTESyncAsyncMode" : {
1800
+ "nodetype" : "member",
1801
+ "module" : "Modem-MIB"
1802
+ },
1803
+ "mdmDTEInactivityTimeout" : {
1804
+ "nodetype" : "member",
1805
+ "module" : "Modem-MIB"
1806
+ },
1807
+ }, # members
1808
+ "description" :
1809
+ """A collection of objects that describe the configuration and
1810
+ state of the modem's DTE interface.""",
1811
+ }, # group
1812
+ "mdmCallControlGroup" : {
1813
+ "nodetype" : "group",
1814
+ "moduleName" : "Modem-MIB",
1815
+ "oid" : "1.3.6.1.2.1.38.1.2.2.4",
1816
+ "status" : "current",
1817
+ "members" : {
1818
+ "mdmCCRingsBeforeAnswer" : {
1819
+ "nodetype" : "member",
1820
+ "module" : "Modem-MIB"
1821
+ },
1822
+ "mdmCCCallSetUpFailTimer" : {
1823
+ "nodetype" : "member",
1824
+ "module" : "Modem-MIB"
1825
+ },
1826
+ "mdmCCResultCodeEnable" : {
1827
+ "nodetype" : "member",
1828
+ "module" : "Modem-MIB"
1829
+ },
1830
+ "mdmCCEscapeAction" : {
1831
+ "nodetype" : "member",
1832
+ "module" : "Modem-MIB"
1833
+ },
1834
+ "mdmCCCallDuration" : {
1835
+ "nodetype" : "member",
1836
+ "module" : "Modem-MIB"
1837
+ },
1838
+ "mdmCCConnectionFailReason" : {
1839
+ "nodetype" : "member",
1840
+ "module" : "Modem-MIB"
1841
+ },
1842
+ "mdmCCStoredDialString" : {
1843
+ "nodetype" : "member",
1844
+ "module" : "Modem-MIB"
1845
+ },
1846
+ }, # members
1847
+ "description" :
1848
+ """A collection of objects that describe the configuration of
1849
+ call control capabilities on the modem and the status of
1850
+ calls placed with this modem.""",
1851
+ }, # group
1852
+ "mdmErrorControlGroup" : {
1853
+ "nodetype" : "group",
1854
+ "moduleName" : "Modem-MIB",
1855
+ "oid" : "1.3.6.1.2.1.38.1.2.2.5",
1856
+ "status" : "current",
1857
+ "members" : {
1858
+ "mdmECErrorControlUsed" : {
1859
+ "nodetype" : "member",
1860
+ "module" : "Modem-MIB"
1861
+ },
1862
+ }, # members
1863
+ "description" :
1864
+ """A collection of objects that describe the configuration and
1865
+ state of error control on a modem.""",
1866
+ }, # group
1867
+ "mdmDataCompressionGroup" : {
1868
+ "nodetype" : "group",
1869
+ "moduleName" : "Modem-MIB",
1870
+ "oid" : "1.3.6.1.2.1.38.1.2.2.6",
1871
+ "status" : "current",
1872
+ "members" : {
1873
+ "mdmDCCompressionTypeUsed" : {
1874
+ "nodetype" : "member",
1875
+ "module" : "Modem-MIB"
1876
+ },
1877
+ }, # members
1878
+ "description" :
1879
+ """A collection of objects that describe the configuration and
1880
+ state of data compression on a modem.""",
1881
+ }, # group
1882
+ "mdmSignalConvertorGroup" : {
1883
+ "nodetype" : "group",
1884
+ "moduleName" : "Modem-MIB",
1885
+ "oid" : "1.3.6.1.2.1.38.1.2.2.7",
1886
+ "status" : "current",
1887
+ "members" : {
1888
+ "mdmSCCurrentLineReceiveRate" : {
1889
+ "nodetype" : "member",
1890
+ "module" : "Modem-MIB"
1891
+ },
1892
+ "mdmSCCurrentLineTransmitRate" : {
1893
+ "nodetype" : "member",
1894
+ "module" : "Modem-MIB"
1895
+ },
1896
+ "mdmSCInitialLineReceiveRate" : {
1897
+ "nodetype" : "member",
1898
+ "module" : "Modem-MIB"
1899
+ },
1900
+ "mdmSCInitialLineTransmitRate" : {
1901
+ "nodetype" : "member",
1902
+ "module" : "Modem-MIB"
1903
+ },
1904
+ "mdmSCModulationSchemeUsed" : {
1905
+ "nodetype" : "member",
1906
+ "module" : "Modem-MIB"
1907
+ },
1908
+ }, # members
1909
+ "description" :
1910
+ """A collection of objects that describe the configuration and
1911
+ state of error control on a modem.""",
1912
+ }, # group
1913
+ "mdmStatisticsGroup" : {
1914
+ "nodetype" : "group",
1915
+ "moduleName" : "Modem-MIB",
1916
+ "oid" : "1.3.6.1.2.1.38.1.2.2.8",
1917
+ "status" : "current",
1918
+ "members" : {
1919
+ "mdmStatsRingNoAnswers" : {
1920
+ "nodetype" : "member",
1921
+ "module" : "Modem-MIB"
1922
+ },
1923
+ "mdmStatsIncomingConnectionFailures" : {
1924
+ "nodetype" : "member",
1925
+ "module" : "Modem-MIB"
1926
+ },
1927
+ "mdmStatsIncomingConnectionCompletions" : {
1928
+ "nodetype" : "member",
1929
+ "module" : "Modem-MIB"
1930
+ },
1931
+ "mdmStatsFailedDialAttempts" : {
1932
+ "nodetype" : "member",
1933
+ "module" : "Modem-MIB"
1934
+ },
1935
+ "mdmStatsOutgoingConnectionFailures" : {
1936
+ "nodetype" : "member",
1937
+ "module" : "Modem-MIB"
1938
+ },
1939
+ "mdmStatsOutgoingConnectionCompletions" : {
1940
+ "nodetype" : "member",
1941
+ "module" : "Modem-MIB"
1942
+ },
1943
+ "mdmStatsRetrains" : {
1944
+ "nodetype" : "member",
1945
+ "module" : "Modem-MIB"
1946
+ },
1947
+ "mdmStats2400OrLessConnections" : {
1948
+ "nodetype" : "member",
1949
+ "module" : "Modem-MIB"
1950
+ },
1951
+ "mdmStats2400To14400Connections" : {
1952
+ "nodetype" : "member",
1953
+ "module" : "Modem-MIB"
1954
+ },
1955
+ "mdmStatsGreaterThan14400Connections" : {
1956
+ "nodetype" : "member",
1957
+ "module" : "Modem-MIB"
1958
+ },
1959
+ "mdmStatsErrorControlledConnections" : {
1960
+ "nodetype" : "member",
1961
+ "module" : "Modem-MIB"
1962
+ },
1963
+ "mdmStatsCompressedConnections" : {
1964
+ "nodetype" : "member",
1965
+ "module" : "Modem-MIB"
1966
+ },
1967
+ "mdmStatsCompressionEfficiency" : {
1968
+ "nodetype" : "member",
1969
+ "module" : "Modem-MIB"
1970
+ },
1971
+ "mdmStatsSentOctets" : {
1972
+ "nodetype" : "member",
1973
+ "module" : "Modem-MIB"
1974
+ },
1975
+ "mdmStatsReceivedOctets" : {
1976
+ "nodetype" : "member",
1977
+ "module" : "Modem-MIB"
1978
+ },
1979
+ "mdmStatsSentDataFrames" : {
1980
+ "nodetype" : "member",
1981
+ "module" : "Modem-MIB"
1982
+ },
1983
+ "mdmStatsReceivedDataFrames" : {
1984
+ "nodetype" : "member",
1985
+ "module" : "Modem-MIB"
1986
+ },
1987
+ "mdmStatsResentFrames" : {
1988
+ "nodetype" : "member",
1989
+ "module" : "Modem-MIB"
1990
+ },
1991
+ "mdmStatsErrorFrames" : {
1992
+ "nodetype" : "member",
1993
+ "module" : "Modem-MIB"
1994
+ },
1995
+ }, # members
1996
+ "description" :
1997
+ """A collection of objects that describe the state of calls on
1998
+ this modem.""",
1999
+ }, # group
2000
+ }, # groups
2001
+
2002
+ "compliances" : {
2003
+ "mdmCompliance" : {
2004
+ "nodetype" : "compliance",
2005
+ "moduleName" : "Modem-MIB",
2006
+ "oid" : "1.3.6.1.2.1.38.1.2.1.1",
2007
+ "status" : "current",
2008
+ "description" :
2009
+ """The compliance statement for SNMPv2 entities which
2010
+ implement the modem MIB.""",
2011
+ "requires" : {
2012
+ "mdmIDGroup" : {
2013
+ "nodetype" : "mandatory",
2014
+ "module" : "Modem-MIB"
2015
+ },
2016
+ "mdmLineInterfaceGroup" : {
2017
+ "nodetype" : "mandatory",
2018
+ "module" : "Modem-MIB"
2019
+ },
2020
+ "mdmDTEInterfaceGroup" : {
2021
+ "nodetype" : "mandatory",
2022
+ "module" : "Modem-MIB"
2023
+ },
2024
+ "mdmCallControlGroup" : {
2025
+ "nodetype" : "mandatory",
2026
+ "module" : "Modem-MIB"
2027
+ },
2028
+ "mdmSignalConvertorGroup" : {
2029
+ "nodetype" : "mandatory",
2030
+ "module" : "Modem-MIB"
2031
+ },
2032
+ "mdmStatisticsGroup" : {
2033
+ "nodetype" : "mandatory",
2034
+ "module" : "Modem-MIB"
2035
+ },
2036
+ "mdmErrorControlGroup" : {
2037
+ "nodetype" : "optional",
2038
+ "module" : "Modem-MIB",
2039
+ "description" :
2040
+ """This group is mandatory only for those modems that
2041
+ implement an error correction protocol.""",
2042
+ },
2043
+ "mdmDataCompressionGroup" : {
2044
+ "nodetype" : "optional",
2045
+ "module" : "Modem-MIB",
2046
+ "description" :
2047
+ """This group is mandatory only for those modems that
2048
+ implement a data compression protocol.""",
2049
+ },
2050
+ }, # requires
2051
+ }, # compliance
2052
+ }, # compliances
2053
+
2054
+ }