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,994 @@
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 PPP-LCP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/PPP-LCP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "PPP-LCP-MIB",
11
+
12
+ "PPP-LCP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv1",
15
+ },
16
+
17
+ "imports" : (
18
+ {"module" : "RFC1155-SMI", "name" : "Counter"},
19
+ {"module" : "RFC1213-MIB", "name" : "ifIndex"},
20
+ {"module" : "RFC1213-MIB", "name" : "transmission"},
21
+ {"module" : "RFC-1212", "name" : "OBJECT-TYPE"},
22
+ ),
23
+
24
+ "nodes" : {
25
+ "ppp" : {
26
+ "nodetype" : "node",
27
+ "moduleName" : "PPP-LCP-MIB",
28
+ "oid" : "1.3.6.1.2.1.10.23",
29
+ }, # node
30
+ "pppLcp" : {
31
+ "nodetype" : "node",
32
+ "moduleName" : "PPP-LCP-MIB",
33
+ "oid" : "1.3.6.1.2.1.10.23.1",
34
+ }, # node
35
+ "pppLink" : {
36
+ "nodetype" : "node",
37
+ "moduleName" : "PPP-LCP-MIB",
38
+ "oid" : "1.3.6.1.2.1.10.23.1.1",
39
+ }, # node
40
+ "pppLinkStatusTable" : {
41
+ "nodetype" : "table",
42
+ "moduleName" : "PPP-LCP-MIB",
43
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1",
44
+ "status" : "current",
45
+ "description" :
46
+ """A table containing PPP-link specific variables
47
+ for this PPP implementation.""",
48
+ }, # table
49
+ "pppLinkStatusEntry" : {
50
+ "nodetype" : "row",
51
+ "moduleName" : "PPP-LCP-MIB",
52
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1",
53
+ "status" : "current",
54
+ "linkage" : [
55
+ "ifIndex",
56
+ ],
57
+ "description" :
58
+ """Management information about a particular PPP
59
+ Link.""",
60
+ }, # row
61
+ "pppLinkStatusPhysicalIndex" : {
62
+ "nodetype" : "column",
63
+ "moduleName" : "PPP-LCP-MIB",
64
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.1",
65
+ "status" : "current",
66
+ "syntax" : {
67
+ "type" : {
68
+ "basetype" : "Integer32",
69
+ "ranges" : [
70
+ {
71
+ "min" : "0",
72
+ "max" : "2147483647"
73
+ },
74
+ ],
75
+ "range" : {
76
+ "min" : "0",
77
+ "max" : "2147483647"
78
+ },
79
+ },
80
+ },
81
+ "access" : "readonly",
82
+ "description" :
83
+ """The value of ifIndex that identifies the
84
+ lower-level interface over which this PPP Link
85
+ is operating. This interface would usually be
86
+ an HDLC or RS-232 type of interface. If there
87
+ is no lower-layer interface element, or there
88
+ is no ifEntry for the element, or the element
89
+ can not be identified, then the value of this
90
+ object is 0. For example, suppose that PPP is
91
+ operating over a serial port. This would use
92
+ two entries in the ifTable. The PPP could be
93
+ running over `interface' number 123 and the
94
+ serial port could be running over `interface'
95
+ number 987. Therefore, ifSpecific.123 would
96
+ contain the OBJECT IDENTIFIER ppp
97
+ pppLinkStatusPhysicalIndex.123 would contain
98
+ 987, and ifSpecific.987 would contain the
99
+ OBJECT IDENTIFIER for the serial-port's media-
100
+ specific MIB.""",
101
+ }, # column
102
+ "pppLinkStatusBadAddresses" : {
103
+ "nodetype" : "column",
104
+ "moduleName" : "PPP-LCP-MIB",
105
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.2",
106
+ "status" : "current",
107
+ "syntax" : {
108
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
109
+ },
110
+ "access" : "readonly",
111
+ "description" :
112
+ """The number of packets received with an
113
+ incorrect Address Field. This counter is a
114
+ component of the ifInErrors variable that is
115
+ associated with the interface that represents
116
+ this PPP Link.""",
117
+ "reference" :
118
+ """Section 3.1, Address Field, of RFC1331.""",
119
+ }, # column
120
+ "pppLinkStatusBadControls" : {
121
+ "nodetype" : "column",
122
+ "moduleName" : "PPP-LCP-MIB",
123
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.3",
124
+ "status" : "current",
125
+ "syntax" : {
126
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
127
+ },
128
+ "access" : "readonly",
129
+ "description" :
130
+ """The number of packets received on this link
131
+ with an incorrect Control Field. This counter
132
+ is a component of the ifInErrors variable that
133
+ is associated with the interface that
134
+ represents this PPP Link.""",
135
+ "reference" :
136
+ """Section 3.1, Control Field, of RFC1331.""",
137
+ }, # column
138
+ "pppLinkStatusPacketTooLongs" : {
139
+ "nodetype" : "column",
140
+ "moduleName" : "PPP-LCP-MIB",
141
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.4",
142
+ "status" : "current",
143
+ "syntax" : {
144
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
145
+ },
146
+ "access" : "readonly",
147
+ "description" :
148
+ """The number of received packets that have been
149
+ discarded because their length exceeded the
150
+ MRU. This counter is a component of the
151
+ ifInErrors variable that is associated with the
152
+ interface that represents this PPP Link. NOTE,
153
+ packets which are longer than the MRU but which
154
+ are successfully received and processed are NOT
155
+ included in this count.""",
156
+ }, # column
157
+ "pppLinkStatusBadFCSs" : {
158
+ "nodetype" : "column",
159
+ "moduleName" : "PPP-LCP-MIB",
160
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.5",
161
+ "status" : "current",
162
+ "syntax" : {
163
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
164
+ },
165
+ "access" : "readonly",
166
+ "description" :
167
+ """The number of received packets that have been
168
+ discarded due to having an incorrect FCS. This
169
+ counter is a component of the ifInErrors
170
+ variable that is associated with the interface
171
+ that represents this PPP Link.""",
172
+ }, # column
173
+ "pppLinkStatusLocalMRU" : {
174
+ "nodetype" : "column",
175
+ "moduleName" : "PPP-LCP-MIB",
176
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.6",
177
+ "status" : "current",
178
+ "syntax" : {
179
+ "type" : {
180
+ "basetype" : "Integer32",
181
+ "ranges" : [
182
+ {
183
+ "min" : "1",
184
+ "max" : "2147483647"
185
+ },
186
+ ],
187
+ "range" : {
188
+ "min" : "1",
189
+ "max" : "2147483647"
190
+ },
191
+ },
192
+ },
193
+ "access" : "readonly",
194
+ "description" :
195
+ """The current value of the MRU for the local PPP
196
+ Entity. This value is the MRU that the remote
197
+ entity is using when sending packets to the
198
+ local PPP entity. The value of this object is
199
+ meaningful only when the link has reached the
200
+ open state (ifOperStatus is up).""",
201
+ }, # column
202
+ "pppLinkStatusRemoteMRU" : {
203
+ "nodetype" : "column",
204
+ "moduleName" : "PPP-LCP-MIB",
205
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.7",
206
+ "status" : "current",
207
+ "syntax" : {
208
+ "type" : {
209
+ "basetype" : "Integer32",
210
+ "ranges" : [
211
+ {
212
+ "min" : "1",
213
+ "max" : "2147483647"
214
+ },
215
+ ],
216
+ "range" : {
217
+ "min" : "1",
218
+ "max" : "2147483647"
219
+ },
220
+ },
221
+ },
222
+ "access" : "readonly",
223
+ "description" :
224
+ """The current value of the MRU for the remote
225
+ PPP Entity. This value is the MRU that the
226
+ local entity is using when sending packets to
227
+ the remote PPP entity. The value of this object
228
+ is meaningful only when the link has reached
229
+ the open state (ifOperStatus is up).""",
230
+ }, # column
231
+ "pppLinkStatusLocalToPeerACCMap" : {
232
+ "nodetype" : "column",
233
+ "moduleName" : "PPP-LCP-MIB",
234
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.8",
235
+ "status" : "current",
236
+ "syntax" : {
237
+ "type" : {
238
+ "basetype" : "OctetString",
239
+ "ranges" : [
240
+ {
241
+ "min" : "4",
242
+ "max" : "4"
243
+ },
244
+ ],
245
+ "range" : {
246
+ "min" : "4",
247
+ "max" : "4"
248
+ },
249
+ },
250
+ },
251
+ "access" : "readonly",
252
+ "description" :
253
+ """The current value of the ACC Map used for
254
+ sending packets from the local PPP entity to
255
+ the remote PPP entity. The value of this object
256
+ is meaningful only when the link has reached
257
+ the open state (ifOperStatus is up).""",
258
+ }, # column
259
+ "pppLinkStatusPeerToLocalACCMap" : {
260
+ "nodetype" : "column",
261
+ "moduleName" : "PPP-LCP-MIB",
262
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.9",
263
+ "status" : "current",
264
+ "syntax" : {
265
+ "type" : {
266
+ "basetype" : "OctetString",
267
+ "ranges" : [
268
+ {
269
+ "min" : "4",
270
+ "max" : "4"
271
+ },
272
+ ],
273
+ "range" : {
274
+ "min" : "4",
275
+ "max" : "4"
276
+ },
277
+ },
278
+ },
279
+ "access" : "readonly",
280
+ "description" :
281
+ """The ACC Map used by the remote PPP entity when
282
+ transmitting packets to the local PPP entity.
283
+ The value of this object is meaningful only
284
+ when the link has reached the open state
285
+ (ifOperStatus is up).""",
286
+ }, # column
287
+ "pppLinkStatusLocalToRemoteProtocolCompression" : {
288
+ "nodetype" : "column",
289
+ "moduleName" : "PPP-LCP-MIB",
290
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.10",
291
+ "status" : "current",
292
+ "syntax" : {
293
+ "type" : {
294
+ "basetype" : "Enumeration",
295
+ "enabled" : {
296
+ "nodetype" : "namednumber",
297
+ "number" : "1"
298
+ },
299
+ "disabled" : {
300
+ "nodetype" : "namednumber",
301
+ "number" : "2"
302
+ },
303
+ },
304
+ },
305
+ "access" : "readonly",
306
+ "description" :
307
+ """Indicates whether the local PPP entity will
308
+ use Protocol Compression when transmitting
309
+ packets to the remote PPP entity. The value of
310
+ this object is meaningful only when the link
311
+ has reached the open state (ifOperStatus is
312
+ up).""",
313
+ }, # column
314
+ "pppLinkStatusRemoteToLocalProtocolCompression" : {
315
+ "nodetype" : "column",
316
+ "moduleName" : "PPP-LCP-MIB",
317
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.11",
318
+ "status" : "current",
319
+ "syntax" : {
320
+ "type" : {
321
+ "basetype" : "Enumeration",
322
+ "enabled" : {
323
+ "nodetype" : "namednumber",
324
+ "number" : "1"
325
+ },
326
+ "disabled" : {
327
+ "nodetype" : "namednumber",
328
+ "number" : "2"
329
+ },
330
+ },
331
+ },
332
+ "access" : "readonly",
333
+ "description" :
334
+ """Indicates whether the remote PPP entity will
335
+ use Protocol Compression when transmitting
336
+ packets to the local PPP entity. The value of
337
+ this object is meaningful only when the link
338
+ has reached the open state (ifOperStatus is
339
+ up).""",
340
+ }, # column
341
+ "pppLinkStatusLocalToRemoteACCompression" : {
342
+ "nodetype" : "column",
343
+ "moduleName" : "PPP-LCP-MIB",
344
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.12",
345
+ "status" : "current",
346
+ "syntax" : {
347
+ "type" : {
348
+ "basetype" : "Enumeration",
349
+ "enabled" : {
350
+ "nodetype" : "namednumber",
351
+ "number" : "1"
352
+ },
353
+ "disabled" : {
354
+ "nodetype" : "namednumber",
355
+ "number" : "2"
356
+ },
357
+ },
358
+ },
359
+ "access" : "readonly",
360
+ "description" :
361
+ """Indicates whether the local PPP entity will
362
+ use Address and Control Compression when
363
+ transmitting packets to the remote PPP entity.
364
+ The value of this object is meaningful only
365
+ when the link has reached the open state
366
+ (ifOperStatus is up).""",
367
+ }, # column
368
+ "pppLinkStatusRemoteToLocalACCompression" : {
369
+ "nodetype" : "column",
370
+ "moduleName" : "PPP-LCP-MIB",
371
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.13",
372
+ "status" : "current",
373
+ "syntax" : {
374
+ "type" : {
375
+ "basetype" : "Enumeration",
376
+ "enabled" : {
377
+ "nodetype" : "namednumber",
378
+ "number" : "1"
379
+ },
380
+ "disabled" : {
381
+ "nodetype" : "namednumber",
382
+ "number" : "2"
383
+ },
384
+ },
385
+ },
386
+ "access" : "readonly",
387
+ "description" :
388
+ """Indicates whether the remote PPP entity will
389
+ use Address and Control Compression when
390
+ transmitting packets to the local PPP entity.
391
+ The value of this object is meaningful only
392
+ when the link has reached the open state
393
+ (ifOperStatus is up).""",
394
+ }, # column
395
+ "pppLinkStatusTransmitFcsSize" : {
396
+ "nodetype" : "column",
397
+ "moduleName" : "PPP-LCP-MIB",
398
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.14",
399
+ "status" : "current",
400
+ "syntax" : {
401
+ "type" : {
402
+ "basetype" : "Integer32",
403
+ "ranges" : [
404
+ {
405
+ "min" : "0",
406
+ "max" : "128"
407
+ },
408
+ ],
409
+ "range" : {
410
+ "min" : "0",
411
+ "max" : "128"
412
+ },
413
+ },
414
+ },
415
+ "access" : "readonly",
416
+ "description" :
417
+ """The size of the Frame Check Sequence (FCS) in
418
+ bits that the local node will generate when
419
+ sending packets to the remote node. The value
420
+ of this object is meaningful only when the link
421
+ has reached the open state (ifOperStatus is
422
+ up).""",
423
+ }, # column
424
+ "pppLinkStatusReceiveFcsSize" : {
425
+ "nodetype" : "column",
426
+ "moduleName" : "PPP-LCP-MIB",
427
+ "oid" : "1.3.6.1.2.1.10.23.1.1.1.1.15",
428
+ "status" : "current",
429
+ "syntax" : {
430
+ "type" : {
431
+ "basetype" : "Integer32",
432
+ "ranges" : [
433
+ {
434
+ "min" : "0",
435
+ "max" : "128"
436
+ },
437
+ ],
438
+ "range" : {
439
+ "min" : "0",
440
+ "max" : "128"
441
+ },
442
+ },
443
+ },
444
+ "access" : "readonly",
445
+ "description" :
446
+ """The size of the Frame Check Sequence (FCS) in
447
+ bits that the remote node will generate when
448
+ sending packets to the local node. The value of
449
+ this object is meaningful only when the link
450
+ has reached the open state (ifOperStatus is
451
+ up).""",
452
+ }, # column
453
+ "pppLinkConfigTable" : {
454
+ "nodetype" : "table",
455
+ "moduleName" : "PPP-LCP-MIB",
456
+ "oid" : "1.3.6.1.2.1.10.23.1.1.2",
457
+ "status" : "current",
458
+ "description" :
459
+ """A table containing the LCP configuration
460
+ parameters for this PPP Link. These variables
461
+ represent the initial configuration of the PPP
462
+ Link. The actual values of the parameters may
463
+ be changed when the link is brought up via the
464
+ LCP options negotiation mechanism.""",
465
+ }, # table
466
+ "pppLinkConfigEntry" : {
467
+ "nodetype" : "row",
468
+ "moduleName" : "PPP-LCP-MIB",
469
+ "oid" : "1.3.6.1.2.1.10.23.1.1.2.1",
470
+ "status" : "current",
471
+ "linkage" : [
472
+ "ifIndex",
473
+ ],
474
+ "description" :
475
+ """Configuration information about a particular
476
+ PPP Link.""",
477
+ }, # row
478
+ "pppLinkConfigInitialMRU" : {
479
+ "nodetype" : "column",
480
+ "moduleName" : "PPP-LCP-MIB",
481
+ "oid" : "1.3.6.1.2.1.10.23.1.1.2.1.1",
482
+ "status" : "current",
483
+ "syntax" : {
484
+ "type" : {
485
+ "basetype" : "Integer32",
486
+ "ranges" : [
487
+ {
488
+ "min" : "0",
489
+ "max" : "2147483647"
490
+ },
491
+ ],
492
+ "range" : {
493
+ "min" : "0",
494
+ "max" : "2147483647"
495
+ },
496
+ },
497
+ },
498
+ "access" : "readwrite",
499
+ "default" : "1500",
500
+ "description" :
501
+ """The initial Maximum Receive Unit (MRU) that
502
+ the local PPP entity will advertise to the
503
+ remote entity. If the value of this variable is
504
+ 0 then the local PPP entity will not advertise
505
+ any MRU to the remote entity and the default
506
+ MRU will be assumed. Changing this object will
507
+ have effect when the link is next restarted.""",
508
+ "reference" :
509
+ """Section 7.2, Maximum Receive Unit of RFC1331.""",
510
+ }, # column
511
+ "pppLinkConfigReceiveACCMap" : {
512
+ "nodetype" : "column",
513
+ "moduleName" : "PPP-LCP-MIB",
514
+ "oid" : "1.3.6.1.2.1.10.23.1.1.2.1.2",
515
+ "status" : "current",
516
+ "syntax" : {
517
+ "type" : {
518
+ "basetype" : "OctetString",
519
+ "ranges" : [
520
+ {
521
+ "min" : "4",
522
+ "max" : "4"
523
+ },
524
+ ],
525
+ "range" : {
526
+ "min" : "4",
527
+ "max" : "4"
528
+ },
529
+ },
530
+ },
531
+ "access" : "readwrite",
532
+ "default" : "0xffffffff",
533
+ "description" :
534
+ """The Asynchronous-Control-Character-Map (ACC)
535
+ that the local PPP entity requires for use on
536
+ its receive side. In effect, this is the ACC
537
+ Map that is required in order to ensure that
538
+ the local modem will successfully receive all
539
+ characters. The actual ACC map used on the
540
+ receive side of the link will be a combination
541
+ of the local node's pppLinkConfigReceiveACCMap
542
+ and the remote node's
543
+ pppLinkConfigTransmitACCMap. Changing this
544
+ object will have effect when the link is next
545
+ restarted.""",
546
+ "reference" :
547
+ """Section 7.3, page 4, Async-Control-Character-
548
+ Map of RFC1331.""",
549
+ }, # column
550
+ "pppLinkConfigTransmitACCMap" : {
551
+ "nodetype" : "column",
552
+ "moduleName" : "PPP-LCP-MIB",
553
+ "oid" : "1.3.6.1.2.1.10.23.1.1.2.1.3",
554
+ "status" : "current",
555
+ "syntax" : {
556
+ "type" : {
557
+ "basetype" : "OctetString",
558
+ "ranges" : [
559
+ {
560
+ "min" : "4",
561
+ "max" : "4"
562
+ },
563
+ ],
564
+ "range" : {
565
+ "min" : "4",
566
+ "max" : "4"
567
+ },
568
+ },
569
+ },
570
+ "access" : "readwrite",
571
+ "default" : "0xffffffff",
572
+ "description" :
573
+ """The Asynchronous-Control-Character-Map (ACC)
574
+ that the local PPP entity requires for use on
575
+ its transmit side. In effect, this is the ACC
576
+ Map that is required in order to ensure that
577
+ all characters can be successfully transmitted
578
+ through the local modem. The actual ACC map
579
+ used on the transmit side of the link will be a
580
+ combination of the local node's
581
+ pppLinkConfigTransmitACCMap and the remote
582
+ node's pppLinkConfigReceiveACCMap. Changing
583
+ this object will have effect when the link is
584
+ next restarted.""",
585
+ "reference" :
586
+ """Section 7.3, page 4, Async-Control-Character-
587
+ Map of RFC1331.""",
588
+ }, # column
589
+ "pppLinkConfigMagicNumber" : {
590
+ "nodetype" : "column",
591
+ "moduleName" : "PPP-LCP-MIB",
592
+ "oid" : "1.3.6.1.2.1.10.23.1.1.2.1.4",
593
+ "status" : "current",
594
+ "syntax" : {
595
+ "type" : {
596
+ "basetype" : "Enumeration",
597
+ "false" : {
598
+ "nodetype" : "namednumber",
599
+ "number" : "1"
600
+ },
601
+ "true" : {
602
+ "nodetype" : "namednumber",
603
+ "number" : "2"
604
+ },
605
+ },
606
+ },
607
+ "access" : "readwrite",
608
+ "default" : "false",
609
+ "description" :
610
+ """If true(2) then the local node will attempt to
611
+ perform Magic Number negotiation with the
612
+ remote node. If false(1) then this negotiation
613
+ is not performed. In any event, the local node
614
+ will comply with any magic number negotiations
615
+ attempted by the remote node, per the PPP
616
+ specification. Changing this object will have
617
+ effect when the link is next restarted.""",
618
+ "reference" :
619
+ """Section 7.6, Magic Number, of RFC1331.""",
620
+ }, # column
621
+ "pppLinkConfigFcsSize" : {
622
+ "nodetype" : "column",
623
+ "moduleName" : "PPP-LCP-MIB",
624
+ "oid" : "1.3.6.1.2.1.10.23.1.1.2.1.5",
625
+ "status" : "current",
626
+ "syntax" : {
627
+ "type" : {
628
+ "basetype" : "Integer32",
629
+ "ranges" : [
630
+ {
631
+ "min" : "0",
632
+ "max" : "128"
633
+ },
634
+ ],
635
+ "range" : {
636
+ "min" : "0",
637
+ "max" : "128"
638
+ },
639
+ },
640
+ },
641
+ "access" : "readwrite",
642
+ "default" : "16",
643
+ "description" :
644
+ """The size of the FCS, in bits, the local node
645
+ will attempt to negotiate for use with the
646
+ remote node. Regardless of the value of this
647
+ object, the local node will comply with any FCS
648
+ size negotiations initiated by the remote node,
649
+ per the PPP specification. Changing this object
650
+ will have effect when the link is next
651
+ restarted.""",
652
+ }, # column
653
+ "pppLqr" : {
654
+ "nodetype" : "node",
655
+ "moduleName" : "PPP-LCP-MIB",
656
+ "oid" : "1.3.6.1.2.1.10.23.1.2",
657
+ }, # node
658
+ "pppLqrTable" : {
659
+ "nodetype" : "table",
660
+ "moduleName" : "PPP-LCP-MIB",
661
+ "oid" : "1.3.6.1.2.1.10.23.1.2.1",
662
+ "status" : "current",
663
+ "description" :
664
+ """Table containing the LQR parameters and
665
+ statistics for the local PPP entity.""",
666
+ }, # table
667
+ "pppLqrEntry" : {
668
+ "nodetype" : "row",
669
+ "moduleName" : "PPP-LCP-MIB",
670
+ "oid" : "1.3.6.1.2.1.10.23.1.2.1.1",
671
+ "status" : "current",
672
+ "linkage" : [
673
+ "ifIndex",
674
+ ],
675
+ "description" :
676
+ """LQR information for a particular PPP link. A
677
+ PPP link will have an entry in this table if
678
+ and only if LQR Quality Monitoring has been
679
+ successfully negotiated for said link.""",
680
+ }, # row
681
+ "pppLqrQuality" : {
682
+ "nodetype" : "column",
683
+ "moduleName" : "PPP-LCP-MIB",
684
+ "oid" : "1.3.6.1.2.1.10.23.1.2.1.1.1",
685
+ "status" : "current",
686
+ "syntax" : {
687
+ "type" : {
688
+ "basetype" : "Enumeration",
689
+ "good" : {
690
+ "nodetype" : "namednumber",
691
+ "number" : "1"
692
+ },
693
+ "bad" : {
694
+ "nodetype" : "namednumber",
695
+ "number" : "2"
696
+ },
697
+ "not-determined" : {
698
+ "nodetype" : "namednumber",
699
+ "number" : "3"
700
+ },
701
+ },
702
+ },
703
+ "access" : "readonly",
704
+ "description" :
705
+ """The current quality of the link as declared by
706
+ the local PPP entity's Link-Quality Management
707
+ modules. No effort is made to define good or
708
+ bad, nor the policy used to determine it. The
709
+ not-determined value indicates that the entity
710
+ does not actually evaluate the link's quality.
711
+ This value is used to disambiguate the
712
+ `determined to be good' case from the `no
713
+ determination made and presumed to be good'
714
+ case.""",
715
+ }, # column
716
+ "pppLqrInGoodOctets" : {
717
+ "nodetype" : "column",
718
+ "moduleName" : "PPP-LCP-MIB",
719
+ "oid" : "1.3.6.1.2.1.10.23.1.2.1.1.2",
720
+ "status" : "current",
721
+ "syntax" : {
722
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
723
+ },
724
+ "access" : "readonly",
725
+ "description" :
726
+ """The LQR InGoodOctets counter for this link.""",
727
+ "reference" :
728
+ """Section 2.2, Counters, of RFC1333.""",
729
+ }, # column
730
+ "pppLqrLocalPeriod" : {
731
+ "nodetype" : "column",
732
+ "moduleName" : "PPP-LCP-MIB",
733
+ "oid" : "1.3.6.1.2.1.10.23.1.2.1.1.3",
734
+ "status" : "current",
735
+ "syntax" : {
736
+ "type" : {
737
+ "basetype" : "Integer32",
738
+ "ranges" : [
739
+ {
740
+ "min" : "1",
741
+ "max" : "2147483647"
742
+ },
743
+ ],
744
+ "range" : {
745
+ "min" : "1",
746
+ "max" : "2147483647"
747
+ },
748
+ },
749
+ },
750
+ "access" : "readonly",
751
+ "description" :
752
+ """The LQR reporting period, in hundredths of a
753
+ second that is in effect for the local PPP
754
+ entity.""",
755
+ "reference" :
756
+ """Section 2.5, Configuration Option Format, of
757
+ RFC1333.""",
758
+ }, # column
759
+ "pppLqrRemotePeriod" : {
760
+ "nodetype" : "column",
761
+ "moduleName" : "PPP-LCP-MIB",
762
+ "oid" : "1.3.6.1.2.1.10.23.1.2.1.1.4",
763
+ "status" : "current",
764
+ "syntax" : {
765
+ "type" : {
766
+ "basetype" : "Integer32",
767
+ "ranges" : [
768
+ {
769
+ "min" : "1",
770
+ "max" : "2147483647"
771
+ },
772
+ ],
773
+ "range" : {
774
+ "min" : "1",
775
+ "max" : "2147483647"
776
+ },
777
+ },
778
+ },
779
+ "access" : "readonly",
780
+ "description" :
781
+ """The LQR reporting period, in hundredths of a
782
+ second, that is in effect for the remote PPP
783
+ entity.""",
784
+ "reference" :
785
+ """Section 2.5, Configuration Option Format, of
786
+ RFC1333.""",
787
+ }, # column
788
+ "pppLqrOutLQRs" : {
789
+ "nodetype" : "column",
790
+ "moduleName" : "PPP-LCP-MIB",
791
+ "oid" : "1.3.6.1.2.1.10.23.1.2.1.1.5",
792
+ "status" : "current",
793
+ "syntax" : {
794
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
795
+ },
796
+ "access" : "readonly",
797
+ "description" :
798
+ """The value of the OutLQRs counter on the local
799
+ node for the link identified by ifIndex.""",
800
+ "reference" :
801
+ """Section 2.2, Counters, of RFC1333.""",
802
+ }, # column
803
+ "pppLqrInLQRs" : {
804
+ "nodetype" : "column",
805
+ "moduleName" : "PPP-LCP-MIB",
806
+ "oid" : "1.3.6.1.2.1.10.23.1.2.1.1.6",
807
+ "status" : "current",
808
+ "syntax" : {
809
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
810
+ },
811
+ "access" : "readonly",
812
+ "description" :
813
+ """The value of the InLQRs counter on the local
814
+ node for the link identified by ifIndex.""",
815
+ "reference" :
816
+ """Section 2.2, Counters, of RFC1333.""",
817
+ }, # column
818
+ "pppLqrConfigTable" : {
819
+ "nodetype" : "table",
820
+ "moduleName" : "PPP-LCP-MIB",
821
+ "oid" : "1.3.6.1.2.1.10.23.1.2.2",
822
+ "status" : "current",
823
+ "description" :
824
+ """Table containing the LQR Configuration
825
+ parameters for the local PPP entity.""",
826
+ }, # table
827
+ "pppLqrConfigEntry" : {
828
+ "nodetype" : "row",
829
+ "moduleName" : "PPP-LCP-MIB",
830
+ "oid" : "1.3.6.1.2.1.10.23.1.2.2.1",
831
+ "status" : "current",
832
+ "linkage" : [
833
+ "ifIndex",
834
+ ],
835
+ "description" :
836
+ """LQR configuration information for a particular
837
+ PPP link.""",
838
+ }, # row
839
+ "pppLqrConfigPeriod" : {
840
+ "nodetype" : "column",
841
+ "moduleName" : "PPP-LCP-MIB",
842
+ "oid" : "1.3.6.1.2.1.10.23.1.2.2.1.1",
843
+ "status" : "current",
844
+ "syntax" : {
845
+ "type" : {
846
+ "basetype" : "Integer32",
847
+ "ranges" : [
848
+ {
849
+ "min" : "0",
850
+ "max" : "2147483647"
851
+ },
852
+ ],
853
+ "range" : {
854
+ "min" : "0",
855
+ "max" : "2147483647"
856
+ },
857
+ },
858
+ },
859
+ "access" : "readwrite",
860
+ "default" : "0",
861
+ "description" :
862
+ """The LQR Reporting Period that the local PPP
863
+ entity will attempt to negotiate with the
864
+ remote entity, in units of hundredths of a
865
+ second. Changing this object will have effect
866
+ when the link is next restarted.""",
867
+ "reference" :
868
+ """Section 2.5, Configuration Option Format, of
869
+ RFC1333.""",
870
+ }, # column
871
+ "pppLqrConfigStatus" : {
872
+ "nodetype" : "column",
873
+ "moduleName" : "PPP-LCP-MIB",
874
+ "oid" : "1.3.6.1.2.1.10.23.1.2.2.1.2",
875
+ "status" : "current",
876
+ "syntax" : {
877
+ "type" : {
878
+ "basetype" : "Enumeration",
879
+ "disabled" : {
880
+ "nodetype" : "namednumber",
881
+ "number" : "1"
882
+ },
883
+ "enabled" : {
884
+ "nodetype" : "namednumber",
885
+ "number" : "2"
886
+ },
887
+ },
888
+ },
889
+ "access" : "readwrite",
890
+ "default" : "enabled",
891
+ "description" :
892
+ """If enabled(2) then the local node will attempt
893
+ to perform LQR negotiation with the remote
894
+ node. If disabled(1) then this negotiation is
895
+ not performed. In any event, the local node
896
+ will comply with any magic number negotiations
897
+ attempted by the remote node, per the PPP
898
+ specification. Changing this object will have
899
+ effect when the link is next restarted.
900
+ Setting this object to the value disabled(1)
901
+ has the effect of invalidating the
902
+ corresponding entry in the pppLqrConfigTable
903
+ object. It is an implementation-specific matter
904
+ as to whether the agent removes an invalidated
905
+ entry from the table. Accordingly, management
906
+ stations must be prepared to receive tabular
907
+ information from agents that corresponds to
908
+ entries not currently in use.""",
909
+ "reference" :
910
+ """Section 7.6, Magic Number, of RFC1331.""",
911
+ }, # column
912
+ "pppLqrExtnsTable" : {
913
+ "nodetype" : "table",
914
+ "moduleName" : "PPP-LCP-MIB",
915
+ "oid" : "1.3.6.1.2.1.10.23.1.2.3",
916
+ "status" : "current",
917
+ "description" :
918
+ """Table containing additional LQR information
919
+ for the local PPP entity.""",
920
+ }, # table
921
+ "pppLqrExtnsEntry" : {
922
+ "nodetype" : "row",
923
+ "moduleName" : "PPP-LCP-MIB",
924
+ "oid" : "1.3.6.1.2.1.10.23.1.2.3.1",
925
+ "status" : "current",
926
+ "linkage" : [
927
+ "ifIndex",
928
+ ],
929
+ "description" :
930
+ """Extended LQR information for a particular PPP
931
+ link. Assuming that this group has been
932
+ implemented, a PPP link will have an entry in
933
+ this table if and only if LQR Quality
934
+ Monitoring has been successfully negotiated for
935
+ said link.""",
936
+ }, # row
937
+ "pppLqrExtnsLastReceivedLqrPacket" : {
938
+ "nodetype" : "column",
939
+ "moduleName" : "PPP-LCP-MIB",
940
+ "oid" : "1.3.6.1.2.1.10.23.1.2.3.1.1",
941
+ "status" : "current",
942
+ "syntax" : {
943
+ "type" : {
944
+ "basetype" : "OctetString",
945
+ "ranges" : [
946
+ {
947
+ "min" : "68",
948
+ "max" : "68"
949
+ },
950
+ ],
951
+ "range" : {
952
+ "min" : "68",
953
+ "max" : "68"
954
+ },
955
+ },
956
+ },
957
+ "access" : "readonly",
958
+ "description" :
959
+ """This object contains the most recently
960
+ received LQR packet. The format of the packet
961
+ is as described in the LQM Protocol
962
+ specificiation. All fields of the packet,
963
+ including the `save' fields, are stored in this
964
+ object.
965
+
966
+ The LQR packet is stored in network byte order.
967
+ The LAP-B and PPP headers are not stored in
968
+ this object; the first four octets of this
969
+ variable contain the Magic-Number field, the
970
+ second four octets contain the LastOutLQRs
971
+ field and so on. The last four octets of this
972
+ object contain the SaveInOctets field of the
973
+ LQR packet.""",
974
+ "reference" :
975
+ """Section 2.6, Packet Format, of RFC1333""",
976
+ }, # column
977
+ "pppTests" : {
978
+ "nodetype" : "node",
979
+ "moduleName" : "PPP-LCP-MIB",
980
+ "oid" : "1.3.6.1.2.1.10.23.1.3",
981
+ }, # node
982
+ "pppEchoTest" : {
983
+ "nodetype" : "node",
984
+ "moduleName" : "PPP-LCP-MIB",
985
+ "oid" : "1.3.6.1.2.1.10.23.1.3.1",
986
+ }, # node
987
+ "pppDiscardTest" : {
988
+ "nodetype" : "node",
989
+ "moduleName" : "PPP-LCP-MIB",
990
+ "oid" : "1.3.6.1.2.1.10.23.1.3.2",
991
+ }, # node
992
+ }, # nodes
993
+
994
+ }