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,1705 @@
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 INTERFACETOPN-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/INTERFACETOPN-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "INTERFACETOPN-MIB",
11
+
12
+ "INTERFACETOPN-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RMON MIB Working Group""",
17
+ "contact" :
18
+ """
19
+
20
+ Dan Romascanu
21
+ Avaya Inc.
22
+ Tel: +972-3-645-8414
23
+ Email: dromasca@avaya.com""",
24
+ "description" :
25
+ """The MIB module for sorting device interfaces for RMON and
26
+ SMON monitoring in a multiple device implementation.""",
27
+ "revisions" : (
28
+ {
29
+ "date" : "2001-03-27 00:00",
30
+ "description" :
31
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
32
+ },
33
+ ),
34
+ "identity node" : "interfaceTopNMIB",
35
+ },
36
+
37
+ "imports" : (
38
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
39
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
40
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
41
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
42
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
43
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
44
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
45
+ {"module" : "RMON-MIB", "name" : "rmon"},
46
+ {"module" : "RMON-MIB", "name" : "OwnerString"},
47
+ {"module" : "HCNUM-TC", "name" : "CounterBasedGauge64"},
48
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
49
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
50
+ ),
51
+
52
+ "nodes" : {
53
+ "interfaceTopNMIB" : {
54
+ "nodetype" : "node",
55
+ "moduleName" : "INTERFACETOPN-MIB",
56
+ "oid" : "1.3.6.1.2.1.16.27",
57
+ "status" : "current",
58
+ }, # node
59
+ "interfaceTopNObjects" : {
60
+ "nodetype" : "node",
61
+ "moduleName" : "INTERFACETOPN-MIB",
62
+ "oid" : "1.3.6.1.2.1.16.27.1",
63
+ }, # node
64
+ "interfaceTopNCaps" : {
65
+ "nodetype" : "scalar",
66
+ "moduleName" : "INTERFACETOPN-MIB",
67
+ "oid" : "1.3.6.1.2.1.16.27.1.1",
68
+ "status" : "current",
69
+ "syntax" : {
70
+ "type" : {
71
+ "basetype" : "Bits",
72
+ "ifInOctets" : {
73
+ "nodetype" : "namednumber",
74
+ "number" : "0"
75
+ },
76
+ "ifInUcastPkts" : {
77
+ "nodetype" : "namednumber",
78
+ "number" : "1"
79
+ },
80
+ "ifInNUcastPkts" : {
81
+ "nodetype" : "namednumber",
82
+ "number" : "2"
83
+ },
84
+ "ifInDiscards" : {
85
+ "nodetype" : "namednumber",
86
+ "number" : "3"
87
+ },
88
+ "ifInErrors" : {
89
+ "nodetype" : "namednumber",
90
+ "number" : "4"
91
+ },
92
+ "ifInUnknownProtos" : {
93
+ "nodetype" : "namednumber",
94
+ "number" : "5"
95
+ },
96
+ "ifOutOctets" : {
97
+ "nodetype" : "namednumber",
98
+ "number" : "6"
99
+ },
100
+ "ifOutUcastPkts" : {
101
+ "nodetype" : "namednumber",
102
+ "number" : "7"
103
+ },
104
+ "ifOutNUcastPkts" : {
105
+ "nodetype" : "namednumber",
106
+ "number" : "8"
107
+ },
108
+ "ifOutDiscards" : {
109
+ "nodetype" : "namednumber",
110
+ "number" : "9"
111
+ },
112
+ "ifOutErrors" : {
113
+ "nodetype" : "namednumber",
114
+ "number" : "10"
115
+ },
116
+ "ifInMulticastPkts" : {
117
+ "nodetype" : "namednumber",
118
+ "number" : "11"
119
+ },
120
+ "ifInBroadcastPkts" : {
121
+ "nodetype" : "namednumber",
122
+ "number" : "12"
123
+ },
124
+ "ifOutMulticastPkts" : {
125
+ "nodetype" : "namednumber",
126
+ "number" : "13"
127
+ },
128
+ "ifOutBroadcastPkts" : {
129
+ "nodetype" : "namednumber",
130
+ "number" : "14"
131
+ },
132
+ "ifHCInOctets" : {
133
+ "nodetype" : "namednumber",
134
+ "number" : "15"
135
+ },
136
+ "ifHCInUcastPkts" : {
137
+ "nodetype" : "namednumber",
138
+ "number" : "16"
139
+ },
140
+ "ifHCInMulticastPkts" : {
141
+ "nodetype" : "namednumber",
142
+ "number" : "17"
143
+ },
144
+ "ifHCInBroadcastPkts" : {
145
+ "nodetype" : "namednumber",
146
+ "number" : "18"
147
+ },
148
+ "ifHCOutOctets" : {
149
+ "nodetype" : "namednumber",
150
+ "number" : "19"
151
+ },
152
+ "ifHCOutUcastPkts" : {
153
+ "nodetype" : "namednumber",
154
+ "number" : "20"
155
+ },
156
+ "ifHCOutMulticastPkts" : {
157
+ "nodetype" : "namednumber",
158
+ "number" : "21"
159
+ },
160
+ "ifHCOutBroadcastPkts" : {
161
+ "nodetype" : "namednumber",
162
+ "number" : "22"
163
+ },
164
+ "dot3StatsAlignmentErrors" : {
165
+ "nodetype" : "namednumber",
166
+ "number" : "23"
167
+ },
168
+ "dot3StatsFCSErrors" : {
169
+ "nodetype" : "namednumber",
170
+ "number" : "24"
171
+ },
172
+ "dot3StatsSingleCollisionFrames" : {
173
+ "nodetype" : "namednumber",
174
+ "number" : "25"
175
+ },
176
+ "dot3StatsMultipleCollisionFrames" : {
177
+ "nodetype" : "namednumber",
178
+ "number" : "26"
179
+ },
180
+ "dot3StatsSQETestErrors" : {
181
+ "nodetype" : "namednumber",
182
+ "number" : "27"
183
+ },
184
+ "dot3StatsDeferredTransmissions" : {
185
+ "nodetype" : "namednumber",
186
+ "number" : "28"
187
+ },
188
+ "dot3StatsLateCollisions" : {
189
+ "nodetype" : "namednumber",
190
+ "number" : "29"
191
+ },
192
+ "dot3StatsExcessiveCollisions" : {
193
+ "nodetype" : "namednumber",
194
+ "number" : "30"
195
+ },
196
+ "dot3StatsInternalMacTxErrors" : {
197
+ "nodetype" : "namednumber",
198
+ "number" : "31"
199
+ },
200
+ "dot3StatsCarrierSenseErrors" : {
201
+ "nodetype" : "namednumber",
202
+ "number" : "32"
203
+ },
204
+ "dot3StatsFrameTooLongs" : {
205
+ "nodetype" : "namednumber",
206
+ "number" : "33"
207
+ },
208
+ "dot3StatsInternalMacRxErrors" : {
209
+ "nodetype" : "namednumber",
210
+ "number" : "34"
211
+ },
212
+ "dot3StatsSymbolErrors" : {
213
+ "nodetype" : "namednumber",
214
+ "number" : "35"
215
+ },
216
+ "dot3InPauseFrames" : {
217
+ "nodetype" : "namednumber",
218
+ "number" : "36"
219
+ },
220
+ "dot3OutPauseFrames" : {
221
+ "nodetype" : "namednumber",
222
+ "number" : "37"
223
+ },
224
+ "dot5StatsLineErrors" : {
225
+ "nodetype" : "namednumber",
226
+ "number" : "38"
227
+ },
228
+ "dot5StatsBurstErrors" : {
229
+ "nodetype" : "namednumber",
230
+ "number" : "39"
231
+ },
232
+ "dot5StatsACErrors" : {
233
+ "nodetype" : "namednumber",
234
+ "number" : "40"
235
+ },
236
+ "dot5StatsAbortTransErrors" : {
237
+ "nodetype" : "namednumber",
238
+ "number" : "41"
239
+ },
240
+ "dot5StatsInternalErrors" : {
241
+ "nodetype" : "namednumber",
242
+ "number" : "42"
243
+ },
244
+ "dot5StatsLostFrameErrors" : {
245
+ "nodetype" : "namednumber",
246
+ "number" : "43"
247
+ },
248
+ "dot5StatsReceiveCongestions" : {
249
+ "nodetype" : "namednumber",
250
+ "number" : "44"
251
+ },
252
+ "dot5StatsFrameCopiedErrors" : {
253
+ "nodetype" : "namednumber",
254
+ "number" : "45"
255
+ },
256
+ "dot5StatsTokenErrors" : {
257
+ "nodetype" : "namednumber",
258
+ "number" : "46"
259
+ },
260
+ "dot5StatsSoftErrors" : {
261
+ "nodetype" : "namednumber",
262
+ "number" : "47"
263
+ },
264
+ "dot5StatsHardErrors" : {
265
+ "nodetype" : "namednumber",
266
+ "number" : "48"
267
+ },
268
+ "dot5StatsSignalLoss" : {
269
+ "nodetype" : "namednumber",
270
+ "number" : "49"
271
+ },
272
+ "dot5StatsTransmitBeacons" : {
273
+ "nodetype" : "namednumber",
274
+ "number" : "50"
275
+ },
276
+ "dot5StatsRecoverys" : {
277
+ "nodetype" : "namednumber",
278
+ "number" : "51"
279
+ },
280
+ "dot5StatsLobeWires" : {
281
+ "nodetype" : "namednumber",
282
+ "number" : "52"
283
+ },
284
+ "dot5StatsRemoves" : {
285
+ "nodetype" : "namednumber",
286
+ "number" : "53"
287
+ },
288
+ "dot5StatsSingles" : {
289
+ "nodetype" : "namednumber",
290
+ "number" : "54"
291
+ },
292
+ "dot5StatsFreqErrors" : {
293
+ "nodetype" : "namednumber",
294
+ "number" : "55"
295
+ },
296
+ "etherStatsDropEvents" : {
297
+ "nodetype" : "namednumber",
298
+ "number" : "56"
299
+ },
300
+ "etherStatsOctets" : {
301
+ "nodetype" : "namednumber",
302
+ "number" : "57"
303
+ },
304
+ "etherStatsPkts" : {
305
+ "nodetype" : "namednumber",
306
+ "number" : "58"
307
+ },
308
+ "etherStatsBroadcastPkts" : {
309
+ "nodetype" : "namednumber",
310
+ "number" : "59"
311
+ },
312
+ "etherStatsMulticastPkts" : {
313
+ "nodetype" : "namednumber",
314
+ "number" : "60"
315
+ },
316
+ "etherStatsCRCAlignErrors" : {
317
+ "nodetype" : "namednumber",
318
+ "number" : "61"
319
+ },
320
+ "etherStatsUndersizePkts" : {
321
+ "nodetype" : "namednumber",
322
+ "number" : "62"
323
+ },
324
+ "etherStatsOversizePkts" : {
325
+ "nodetype" : "namednumber",
326
+ "number" : "63"
327
+ },
328
+ "etherStatsFragments" : {
329
+ "nodetype" : "namednumber",
330
+ "number" : "64"
331
+ },
332
+ "etherStatsJabbers" : {
333
+ "nodetype" : "namednumber",
334
+ "number" : "65"
335
+ },
336
+ "etherStatsCollisions" : {
337
+ "nodetype" : "namednumber",
338
+ "number" : "66"
339
+ },
340
+ "etherStatsPkts64Octets" : {
341
+ "nodetype" : "namednumber",
342
+ "number" : "67"
343
+ },
344
+ "etherStatsPkts65to127Octets" : {
345
+ "nodetype" : "namednumber",
346
+ "number" : "68"
347
+ },
348
+ "etherStatsPkts128to255Octets" : {
349
+ "nodetype" : "namednumber",
350
+ "number" : "69"
351
+ },
352
+ "etherStatsPkts256to511Octets" : {
353
+ "nodetype" : "namednumber",
354
+ "number" : "70"
355
+ },
356
+ "etherStatsPkts512to1023Octets" : {
357
+ "nodetype" : "namednumber",
358
+ "number" : "71"
359
+ },
360
+ "etherStatsPkts1024to1518Octets" : {
361
+ "nodetype" : "namednumber",
362
+ "number" : "72"
363
+ },
364
+ "dot1dTpPortInFrames" : {
365
+ "nodetype" : "namednumber",
366
+ "number" : "73"
367
+ },
368
+ "dot1dTpPortOutFrames" : {
369
+ "nodetype" : "namednumber",
370
+ "number" : "74"
371
+ },
372
+ "dot1dTpPortInDiscards" : {
373
+ "nodetype" : "namednumber",
374
+ "number" : "75"
375
+ },
376
+ },
377
+ },
378
+ "access" : "readonly",
379
+ "description" :
380
+ """The type(s) of sorting capabilities supported by the agent.
381
+
382
+ If the agent can perform sorting of interfaces according to the
383
+ values of ifInOctets, as defined in [RFC2863],
384
+ then the 'ifInOctets' bit will be set.
385
+
386
+ If the agent can perform sorting of interfaces according to the
387
+ values of ifInUcastPkts, as defined in [RFC2863],
388
+ then the 'ifInUcastPkts' bit will be set.
389
+
390
+ If the agent can perform sorting of interfaces according to the
391
+ values of ifInNUcastPkts, as defined in [RFC2863],
392
+ then the 'ifInNUcastPkts' bit will be set.
393
+
394
+ If the agent can perform sorting of interfaces according to the
395
+ values of ifInDiscards, as defined in [RFC2863],
396
+ then the 'ifInDiscards' bit will be set.
397
+
398
+ If the agent can perform sorting of interfaces according to the
399
+ values of ifInErrors, as defined in [RFC2863],
400
+ then the 'ifInErrors' bit will be set.
401
+
402
+ If the agent can perform sorting of interfaces according to the
403
+ values of ifInUnknownProtocols, as defined in [RFC2863],
404
+ then the 'ifInUnknownProtocols' bit will be set.
405
+
406
+ If the agent can perform sorting of interfaces according to the
407
+ values of ifOutOctets, as defined in [RFC2863],
408
+ then the 'ifOutOctets' bit will be set.
409
+
410
+ If the agent can perform sorting of interfaces according to the
411
+ values of ifOutUcastPackets, as defined in [RFC2863],
412
+ then the 'ifOutUcastPackets' bit will be set.
413
+
414
+ If the agent can perform sorting of interfaces according to the
415
+ values of ifOutNUcastPackets, as defined in [RFC2863],
416
+ then the 'ifOutNUcastPackets' bit will be set.
417
+
418
+ If the agent can perform sorting of interfaces according to the
419
+ values of ifOutDiscards, as defined in [RFC2863],
420
+ then the 'ifOutDiscards' bit will be set.
421
+
422
+ If the agent can perform sorting of interfaces according to the
423
+ values of ifOutErrors, as defined in [RFC2863],
424
+ then the 'ifOutErrors' bit will be set.
425
+
426
+ If the agent can perform sorting of interfaces according to the
427
+ values of ifInMulticastPkts, as defined in [RFC2863],
428
+
429
+
430
+ then the 'ifInMulticastPkts' bit will be set.
431
+
432
+ If the agent can perform sorting of interfaces according to the
433
+ values of ifInBroadcastPkts, as defined in [RFC2863],
434
+ then the 'ifInBroadcastPkts' bit will be set.
435
+
436
+ If the agent can perform sorting of interfaces according to the
437
+ values of ifOutMulticastPkts, as defined in [RFC2863],
438
+ then the 'ifOutMulticastPkts' bit will be set.
439
+
440
+ If the agent can perform sorting of interfaces according to the
441
+ values of ifOutBroadcastPkts, as defined in [RFC2863],
442
+ then the 'ifOutBroadcastPkts' bit will be set.
443
+
444
+ If the agent can perform sorting of interfaces according to the
445
+ values of ifHCInOctets, as defined in [RFC2863],
446
+ then the 'ifHCInOctets' bit will be set.
447
+
448
+ If the agent can perform sorting of interfaces according to the
449
+ values of ifHCInMulticastPkts, as defined in [RFC2863],
450
+ then the 'ifHCInMulticastPkts' bit will be set.
451
+
452
+ If the agent can perform sorting of interfaces according to the
453
+ values of ifHCInBroadcastPkts, as defined in [RFC2863],
454
+ then the 'ifHCInBroadcastPkts' bit will be set.
455
+
456
+ If the agent can perform sorting of interfaces according to the
457
+ values of ifHCOutOctets, as defined in [RFC2863],
458
+ then the 'ifHCOutOctets' bit will be set.
459
+
460
+ If the agent can perform sorting of interfaces according to the
461
+ values of ifHCOutUcastPkts, as defined in [RFC2863],
462
+ then the 'ifHCOutUcastPkts' bit will be set.
463
+
464
+ If the agent can perform sorting of interfaces according to the
465
+ values of ifHCOutMulticastPkts, as defined in [RFC2863],
466
+ then the 'ifHCOutMulticastPkts' bit will be set.
467
+
468
+ If the agent can perform sorting of interfaces according to the
469
+ values of ifHCOutBroadcastPkts, as defined in [RFC2863],
470
+ then the 'ifHCOutBroadcastPkts' bit will be set.
471
+
472
+ If the agent can perform sorting of interfaces according to the
473
+ values of dot3StatsAlignmentErrors, as defined in [RFC2665],
474
+ then the 'dot3StatsAlignmentErrors' bit will be set.
475
+
476
+ If the agent can perform sorting of interfaces according to the
477
+ values of dot3StatsFCSErrors, as defined in [RFC2665],
478
+
479
+
480
+ then the 'dot3StatsFCSErrors' bit will be set.
481
+
482
+ If the agent can perform sorting of interfaces according to the
483
+ values of dot3StatsSingleCollisionFrames, as defined in
484
+ [RFC2665],then the 'dot3StatsSingleCollisionFrames' bit will
485
+ be set.
486
+
487
+ If the agent can perform sorting of interfaces according to the
488
+ values of dot3StatsSQETestErrors, as defined in [RFC2665],
489
+ then the 'dot3StatsSQETestErrors' bit will be set.
490
+
491
+ If the agent can perform sorting of interfaces according to the
492
+ values of dot3StatsDeferredTransmissions, as defined in
493
+ [RFC2665], then the 'dot3StatsDeferredTransmissions' bit
494
+ will be set.
495
+
496
+ If the agent can perform sorting of interfaces according to the
497
+ values of dot3StatsLateCollisions, as defined in [RFC2665],
498
+ then the 'dot3StatsLateCollisions' bit will be set.
499
+
500
+ If the agent can perform sorting of interfaces according to the
501
+ values of dot3StatsExcessiveCollisions, as defined in [RFC2665],
502
+ then the 'dot3StatsExcessiveCollisions' bit will be set.
503
+
504
+ If the agent can perform sorting of interfaces according to the
505
+ values of dot3StatsInternalMacTxErrors, as defined in
506
+ [RFC2665],then the 'dot3StatsInternalMacTxErrors' bit
507
+ will be set.
508
+
509
+ If the agent can perform sorting of interfaces according to the
510
+ values of dot3StatsCarrierSenseErrors, as defined in [RFC2665],
511
+ then the 'dot3StatsCarrierSenseErrors' bit will be set.
512
+
513
+ If the agent can perform sorting of interfaces according to the
514
+ values of dot3StatsFrameTooLongs, as defined in [RFC2665],
515
+ then the 'dot3StatsFrameTooLongs' bit will be set.
516
+
517
+ If the agent can perform sorting of interfaces according to the
518
+ values of dot3StatsInternalMacRxErrors, as defined in
519
+ [RFC2665], then the 'dot3StatsInternalMacRxErrors' bit
520
+ will be set.
521
+
522
+ If the agent can perform sorting of interfaces according to the
523
+ values of dot3StatsSymbolErrors, as defined in [RFC2665],
524
+ then the 'dot3StatsSymbolErrors' bit will be set.
525
+
526
+ If the agent can perform sorting of interfaces according to the
527
+ values of dot3InPauseFrames, as defined in [RFC2665],
528
+
529
+
530
+ then the 'dot3InPauseFrames' bit will be set.
531
+
532
+ If the agent can perform sorting of interfaces according to the
533
+ values of dot3OutPauseFrames, as defined in [RFC2665],
534
+ then the 'dot3OutPauseFrames' bit will be set.
535
+
536
+ If the agent can perform sorting of interfaces according to the
537
+ values of dot5StatsLineErrors, as defined in [RFC1748],
538
+ then the 'dot5StatsLineErrors' bit will be set.
539
+
540
+ If the agent can perform sorting of interfaces according to the
541
+ values of dot5StatsBurstErrors, as defined in [RFC1748],
542
+ then the 'dot5StatsBurstErrors' bit will be set.
543
+
544
+ If the agent can perform sorting of interfaces according to the
545
+ values of dot5StatsACErrors, as defined in [RFC1748],
546
+ then the 'dot5StatsACErrors' bit will be set.
547
+
548
+ If the agent can perform sorting of interfaces according to the
549
+ values of dot5StatsAbortTransErrors, as defined in [RFC1748],
550
+ then the 'dot5StatsAbortTransErrors' bit will be set.
551
+
552
+ If the agent can perform sorting of interfaces according to the
553
+ values of dot5StatsInternalErrors, as defined in [RFC1748],
554
+ then the 'dot5StatsInternalErrors' bit will be set.
555
+
556
+ If the agent can perform sorting of interfaces according to the
557
+ values of dot5StatsLostFrameErrors, as defined in [RFC1748],
558
+ then the 'dot5StatsLostFrameErrors' bit will be set.
559
+
560
+ If the agent can perform sorting of interfaces according to the
561
+ values of dot5StatsReceiveCongestionErrors, as defined in
562
+ [RFC1748], then the 'dot5StatsReceiveCongestionErrors' bit will
563
+ be set.
564
+
565
+ If the agent can perform sorting of interfaces according to the
566
+ values of dot5StatsFrameCopiedErrors, as defined in [RFC1748],
567
+ then the 'dot5StatsFrameCopiedErrors' bit will be set.
568
+
569
+ If the agent can perform sorting of interfaces according to the
570
+ values of dot5StatsTokenErrors, as defined in [RFC1748],
571
+ then the 'dot5StatsTokenErrors' bit will be set.
572
+
573
+ If the agent can perform sorting of interfaces according to the
574
+ values of dot5StatsSoftErrors, as defined in [RFC1748],
575
+ then the 'dot5StatsSoftErrors' bit will be set.
576
+
577
+ If the agent can perform sorting of interfaces according to the
578
+
579
+
580
+ values of dot5StatsHardErrors, as defined in [RFC1748],
581
+ then the 'dot5StatsHardErrors' bit will be set.
582
+
583
+ If the agent can perform sorting of interfaces according to the
584
+ values of dot5StatsSignalLoss, as defined in [RFC1748],
585
+ then the 'dot5StatsSignalLoss' bit will be set.
586
+
587
+ If the agent can perform sorting of interfaces according to the
588
+ values of dot5StatsTransmitBeacons, as defined in [RFC1748],
589
+ then the 'dot5StatsTransmitBeacons' bit will be set.
590
+
591
+ If the agent can perform sorting of interfaces according to the
592
+ values of dot5StatsRecoverys, as defined in [RFC1748],
593
+ then the 'dot5StatsRecoverys' bit will be set.
594
+
595
+ If the agent can perform sorting of interfaces according to the
596
+ values of dot5StatsLobeWires, as defined in [RFC1748],
597
+ then the 'dot5StatsLobeWires' bit will be set.
598
+
599
+ If the agent can perform sorting of interfaces according to the
600
+ values of dot5StatsRemoves, as defined in [RFC1748],
601
+ then the 'dot5StatsRemoves' bit will be set.
602
+
603
+ If the agent can perform sorting of interfaces according to the
604
+ values of dot5StatsSingles, as defined in [RFC1748],
605
+ then the 'dot5StatsSingles' bit will be set.
606
+
607
+ If the agent can perform sorting of interfaces according to the
608
+ values of dot5StatsFreqErrors, as defined in [RFC1748],
609
+ then the 'dot5StatsFreqErrors' bit will be set.
610
+
611
+ If the agent can perform sorting of interfaces according to the
612
+ values of etherStatsDropEvents, as defined in [RFC2819],
613
+ then the 'etherStatsDropEvents' bit will be set.
614
+
615
+ If the agent can perform sorting of interfaces according to the
616
+ values of etherStatsOctets, as defined in [RFC2819],
617
+ then the 'etherStatsOctets' bit will be set.
618
+
619
+ If the agent can perform sorting of interfaces according to the
620
+ values of etherStatsPkts, as defined in [RFC2819],
621
+ then the 'etherStatsPkts' bit will be set.
622
+
623
+ If the agent can perform sorting of interfaces according to the
624
+ values of etherStatsBroadcastPkts, as defined in [RFC2819],
625
+ then the 'etherStatsBroadcastPkts' bit will be set.
626
+
627
+ If the agent can perform sorting of interfaces according to the
628
+
629
+
630
+ values of etherStatsMulticastPkts, as defined in [RFC2819],
631
+ then the 'etherStatsMulticastPkts' bit will be set.
632
+
633
+ If the agent can perform sorting of interfaces according to the
634
+ values of etherStatsCRCAlignErrors, as defined in [RFC2819],
635
+ then the 'etherStatsCRCAlignErrors' bit will be set.
636
+
637
+ If the agent can perform sorting of interfaces according to the
638
+ values of etherStatsUndersizePkts, as defined in [RFC2819],
639
+ then the 'etherStatsUndersizePkts' bit will be set.
640
+
641
+ If the agent can perform sorting of interfaces according to the
642
+ values of etherStatsOversizePkts, as defined in [RFC2819],
643
+ then the 'etherStatsOversizePkts' bit will be set.
644
+
645
+ If the agent can perform sorting of interfaces according to the
646
+ values of etherStatsFragments, as defined in [RFC2819],
647
+ then the 'etherStatsFragments' bit will be set.
648
+
649
+ If the agent can perform sorting of interfaces according to the
650
+ values of etherStatsJabbers, as defined in [RFC2819],
651
+ then the 'etherStatsJabbers' bit will be set.
652
+
653
+ If the agent can perform sorting of interfaces according to the
654
+ values of etherStatsCollisions, as defined in [RFC2819],
655
+ then the 'etherStatsCollisions' bit will be set.
656
+
657
+ If the agent can perform sorting of interfaces according to the
658
+ values of etherStatsPkts64Octets, as defined in [RFC2819],
659
+ then the 'etherStatsPkts64Octets' bit will be set.
660
+
661
+ If the agent can perform sorting of interfaces according to the
662
+ values of etherStatsPkts65to127Octets, as defined in [RFC2819],
663
+ then the 'etherStatsPkts65to127Octets' bit will be set.
664
+
665
+ If the agent can perform sorting of interfaces according to the
666
+ values of etherStatsPkts128to255Octets, as defined in [RFC2819],
667
+ then the 'etherStatsPkts128to255Octets' bit will be set.
668
+
669
+ If the agent can perform sorting of interfaces according to the
670
+ values of etherStatsPkts256to511Octets, as defined in [RFC2819],
671
+ then the 'etherStatsPkts256to511Octets' bit will be set.
672
+
673
+ If the agent can perform sorting of interfaces according to the
674
+ values of etherStatsPkts512to1023Octets, as defined in [RFC2819],
675
+ then the 'etherStatsPkts512to1023Octets' bit will be set.
676
+
677
+ If the agent can perform sorting of interfaces according to the
678
+
679
+
680
+ values of etherStatsPkts1024to1518Octets, as defined in
681
+ [RFC2819], then the 'etherStatsPkts1024to1518Octets' bit will
682
+ be set.
683
+
684
+
685
+ If the agent can perform sorting of interfaces according to the
686
+ values of dot1dTpPortInFrames, as defined in [RFC1493],
687
+ then the 'dot1dTpPortInFrames' bit will be set.
688
+
689
+ If the agent can perform sorting of interfaces according to the
690
+ values of dot1dTpPortOutFrames, as defined in [RFC1493],
691
+ then the 'dot1dTpPortOutFrames' bit will be set.
692
+
693
+ If the agent can perform sorting of interfaces according to the
694
+ values of dot1dTpPortInDiscards, as defined in [RFC1493],
695
+ then the 'dot1dTpPortInDiscards' bit will be set.""",
696
+ }, # scalar
697
+ "interfaceTopNControlTable" : {
698
+ "nodetype" : "table",
699
+ "moduleName" : "INTERFACETOPN-MIB",
700
+ "oid" : "1.3.6.1.2.1.16.27.1.2",
701
+ "status" : "current",
702
+ "description" :
703
+ """A table of control records for reports on the top `N'
704
+ interfaces for the value or rate of a selected object.
705
+ The number of entries depends on the configuration of the agent.
706
+ The maximum number of entries is implementation
707
+ dependent.""",
708
+ }, # table
709
+ "interfaceTopNControlEntry" : {
710
+ "nodetype" : "row",
711
+ "moduleName" : "INTERFACETOPN-MIB",
712
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1",
713
+ "create" : "true",
714
+ "status" : "current",
715
+ "linkage" : [
716
+ "interfaceTopNControlIndex",
717
+ ],
718
+ "description" :
719
+ """A set of parameters that control the creation of a
720
+ report of the top N ports according to several metrics.""",
721
+ }, # row
722
+ "interfaceTopNControlIndex" : {
723
+ "nodetype" : "column",
724
+ "moduleName" : "INTERFACETOPN-MIB",
725
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.1",
726
+ "status" : "current",
727
+ "syntax" : {
728
+ "type" : {
729
+ "basetype" : "Integer32",
730
+ "ranges" : [
731
+ {
732
+ "min" : "1",
733
+ "max" : "65535"
734
+ },
735
+ ],
736
+ "range" : {
737
+ "min" : "1",
738
+ "max" : "65535"
739
+ },
740
+ },
741
+ },
742
+ "access" : "noaccess",
743
+ "description" :
744
+ """An index that uniquely identifies an entry in the
745
+ interfaceTopNControl table. Each such entry defines
746
+ one top N report prepared for a probe.""",
747
+ }, # column
748
+ "interfaceTopNObjectVariable" : {
749
+ "nodetype" : "column",
750
+ "moduleName" : "INTERFACETOPN-MIB",
751
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.2",
752
+ "status" : "current",
753
+ "syntax" : {
754
+ "type" : {
755
+ "basetype" : "Enumeration",
756
+ "ifInOctets" : {
757
+ "nodetype" : "namednumber",
758
+ "number" : "0"
759
+ },
760
+ "ifInUcastPkts" : {
761
+ "nodetype" : "namednumber",
762
+ "number" : "1"
763
+ },
764
+ "ifInNUcastPkts" : {
765
+ "nodetype" : "namednumber",
766
+ "number" : "2"
767
+ },
768
+ "ifInDiscards" : {
769
+ "nodetype" : "namednumber",
770
+ "number" : "3"
771
+ },
772
+ "ifInErrors" : {
773
+ "nodetype" : "namednumber",
774
+ "number" : "4"
775
+ },
776
+ "ifInUnknownProtos" : {
777
+ "nodetype" : "namednumber",
778
+ "number" : "5"
779
+ },
780
+ "ifOutOctets" : {
781
+ "nodetype" : "namednumber",
782
+ "number" : "6"
783
+ },
784
+ "ifOutUcastPkts" : {
785
+ "nodetype" : "namednumber",
786
+ "number" : "7"
787
+ },
788
+ "ifOutNUcastPkts" : {
789
+ "nodetype" : "namednumber",
790
+ "number" : "8"
791
+ },
792
+ "ifOutDiscards" : {
793
+ "nodetype" : "namednumber",
794
+ "number" : "9"
795
+ },
796
+ "ifOutErrors" : {
797
+ "nodetype" : "namednumber",
798
+ "number" : "10"
799
+ },
800
+ "ifInMulticastPkts" : {
801
+ "nodetype" : "namednumber",
802
+ "number" : "11"
803
+ },
804
+ "ifInBroadcastPkts" : {
805
+ "nodetype" : "namednumber",
806
+ "number" : "12"
807
+ },
808
+ "ifOutMulticastPkts" : {
809
+ "nodetype" : "namednumber",
810
+ "number" : "13"
811
+ },
812
+ "ifOutBroadcastPkts" : {
813
+ "nodetype" : "namednumber",
814
+ "number" : "14"
815
+ },
816
+ "ifHCInOctets" : {
817
+ "nodetype" : "namednumber",
818
+ "number" : "15"
819
+ },
820
+ "ifHCInUcastPkts" : {
821
+ "nodetype" : "namednumber",
822
+ "number" : "16"
823
+ },
824
+ "ifHCInMulticastPkts" : {
825
+ "nodetype" : "namednumber",
826
+ "number" : "17"
827
+ },
828
+ "ifHCInBroadcastPkts" : {
829
+ "nodetype" : "namednumber",
830
+ "number" : "18"
831
+ },
832
+ "ifHCOutOctets" : {
833
+ "nodetype" : "namednumber",
834
+ "number" : "19"
835
+ },
836
+ "ifHCOutUcastPkts" : {
837
+ "nodetype" : "namednumber",
838
+ "number" : "20"
839
+ },
840
+ "ifHCOutMulticastPkts" : {
841
+ "nodetype" : "namednumber",
842
+ "number" : "21"
843
+ },
844
+ "ifHCOutBroadcastPkts" : {
845
+ "nodetype" : "namednumber",
846
+ "number" : "22"
847
+ },
848
+ "dot3StatsAlignmentErrors" : {
849
+ "nodetype" : "namednumber",
850
+ "number" : "23"
851
+ },
852
+ "dot3StatsFCSErrors" : {
853
+ "nodetype" : "namednumber",
854
+ "number" : "24"
855
+ },
856
+ "dot3StatsSingleCollisionFrames" : {
857
+ "nodetype" : "namednumber",
858
+ "number" : "25"
859
+ },
860
+ "dot3StatsMultipleCollisionFrames" : {
861
+ "nodetype" : "namednumber",
862
+ "number" : "26"
863
+ },
864
+ "dot3StatsSQETestErrors" : {
865
+ "nodetype" : "namednumber",
866
+ "number" : "27"
867
+ },
868
+ "dot3StatsDeferredTransmissions" : {
869
+ "nodetype" : "namednumber",
870
+ "number" : "28"
871
+ },
872
+ "dot3StatsLateCollisions" : {
873
+ "nodetype" : "namednumber",
874
+ "number" : "29"
875
+ },
876
+ "dot3StatsExcessiveCollisions" : {
877
+ "nodetype" : "namednumber",
878
+ "number" : "30"
879
+ },
880
+ "dot3StatsInternalMacTxErrors" : {
881
+ "nodetype" : "namednumber",
882
+ "number" : "31"
883
+ },
884
+ "dot3StatsCarrierSenseErrors" : {
885
+ "nodetype" : "namednumber",
886
+ "number" : "32"
887
+ },
888
+ "dot3StatsFrameTooLongs" : {
889
+ "nodetype" : "namednumber",
890
+ "number" : "33"
891
+ },
892
+ "dot3StatsInternalMacRxErrors" : {
893
+ "nodetype" : "namednumber",
894
+ "number" : "34"
895
+ },
896
+ "dot3StatsSymbolErrors" : {
897
+ "nodetype" : "namednumber",
898
+ "number" : "35"
899
+ },
900
+ "dot3InPauseFrames" : {
901
+ "nodetype" : "namednumber",
902
+ "number" : "36"
903
+ },
904
+ "dot3OutPauseFrames" : {
905
+ "nodetype" : "namednumber",
906
+ "number" : "37"
907
+ },
908
+ "dot5StatsLineErrors" : {
909
+ "nodetype" : "namednumber",
910
+ "number" : "38"
911
+ },
912
+ "dot5StatsBurstErrors" : {
913
+ "nodetype" : "namednumber",
914
+ "number" : "39"
915
+ },
916
+ "dot5StatsACErrors" : {
917
+ "nodetype" : "namednumber",
918
+ "number" : "40"
919
+ },
920
+ "dot5StatsAbortTransErrors" : {
921
+ "nodetype" : "namednumber",
922
+ "number" : "41"
923
+ },
924
+ "dot5StatsInternalErrors" : {
925
+ "nodetype" : "namednumber",
926
+ "number" : "42"
927
+ },
928
+ "dot5StatsLostFrameErrors" : {
929
+ "nodetype" : "namednumber",
930
+ "number" : "43"
931
+ },
932
+ "dot5StatsReceiveCongestions" : {
933
+ "nodetype" : "namednumber",
934
+ "number" : "44"
935
+ },
936
+ "dot5StatsFrameCopiedErrors" : {
937
+ "nodetype" : "namednumber",
938
+ "number" : "45"
939
+ },
940
+ "dot5StatsTokenErrors" : {
941
+ "nodetype" : "namednumber",
942
+ "number" : "46"
943
+ },
944
+ "dot5StatsSoftErrors" : {
945
+ "nodetype" : "namednumber",
946
+ "number" : "47"
947
+ },
948
+ "dot5StatsHardErrors" : {
949
+ "nodetype" : "namednumber",
950
+ "number" : "48"
951
+ },
952
+ "dot5StatsSignalLoss" : {
953
+ "nodetype" : "namednumber",
954
+ "number" : "49"
955
+ },
956
+ "dot5StatsTransmitBeacons" : {
957
+ "nodetype" : "namednumber",
958
+ "number" : "50"
959
+ },
960
+ "dot5StatsRecoverys" : {
961
+ "nodetype" : "namednumber",
962
+ "number" : "51"
963
+ },
964
+ "dot5StatsLobeWires" : {
965
+ "nodetype" : "namednumber",
966
+ "number" : "52"
967
+ },
968
+ "dot5StatsRemoves" : {
969
+ "nodetype" : "namednumber",
970
+ "number" : "53"
971
+ },
972
+ "dot5StatsSingles" : {
973
+ "nodetype" : "namednumber",
974
+ "number" : "54"
975
+ },
976
+ "dot5StatsFreqErrors" : {
977
+ "nodetype" : "namednumber",
978
+ "number" : "55"
979
+ },
980
+ "etherStatsDropEvents" : {
981
+ "nodetype" : "namednumber",
982
+ "number" : "56"
983
+ },
984
+ "etherStatsOctets" : {
985
+ "nodetype" : "namednumber",
986
+ "number" : "57"
987
+ },
988
+ "etherStatsPkts" : {
989
+ "nodetype" : "namednumber",
990
+ "number" : "58"
991
+ },
992
+ "etherStatsBroadcastPkts" : {
993
+ "nodetype" : "namednumber",
994
+ "number" : "59"
995
+ },
996
+ "etherStatsMulticastPkts" : {
997
+ "nodetype" : "namednumber",
998
+ "number" : "60"
999
+ },
1000
+ "etherStatsCRCAlignErrors" : {
1001
+ "nodetype" : "namednumber",
1002
+ "number" : "61"
1003
+ },
1004
+ "etherStatsUndersizePkts" : {
1005
+ "nodetype" : "namednumber",
1006
+ "number" : "62"
1007
+ },
1008
+ "etherStatsOversizePkts" : {
1009
+ "nodetype" : "namednumber",
1010
+ "number" : "63"
1011
+ },
1012
+ "etherStatsFragments" : {
1013
+ "nodetype" : "namednumber",
1014
+ "number" : "64"
1015
+ },
1016
+ "etherStatsJabbers" : {
1017
+ "nodetype" : "namednumber",
1018
+ "number" : "65"
1019
+ },
1020
+ "etherStatsCollisions" : {
1021
+ "nodetype" : "namednumber",
1022
+ "number" : "66"
1023
+ },
1024
+ "etherStatsPkts64Octets" : {
1025
+ "nodetype" : "namednumber",
1026
+ "number" : "67"
1027
+ },
1028
+ "etherStatsPkts65to127Octets" : {
1029
+ "nodetype" : "namednumber",
1030
+ "number" : "68"
1031
+ },
1032
+ "etherStatsPkts128to255Octets" : {
1033
+ "nodetype" : "namednumber",
1034
+ "number" : "69"
1035
+ },
1036
+ "etherStatsPkts256to511Octets" : {
1037
+ "nodetype" : "namednumber",
1038
+ "number" : "70"
1039
+ },
1040
+ "etherStatsPkts512to1023Octets" : {
1041
+ "nodetype" : "namednumber",
1042
+ "number" : "71"
1043
+ },
1044
+ "etherStatsPkts1024to1518Octets" : {
1045
+ "nodetype" : "namednumber",
1046
+ "number" : "72"
1047
+ },
1048
+ "dot1dTpPortInFrames" : {
1049
+ "nodetype" : "namednumber",
1050
+ "number" : "73"
1051
+ },
1052
+ "dot1dTpPortOutFrames" : {
1053
+ "nodetype" : "namednumber",
1054
+ "number" : "74"
1055
+ },
1056
+ "dot1dTpPortInDiscards" : {
1057
+ "nodetype" : "namednumber",
1058
+ "number" : "75"
1059
+ },
1060
+ },
1061
+ },
1062
+ "access" : "readwrite",
1063
+ "description" :
1064
+ """The particular variable to be sampled.
1065
+
1066
+ Values between 0 and 22, point to MIB objects defined in
1067
+ IF-MIB [RFC2863].
1068
+
1069
+ Values between 23 and 37, point to MIB objects defined in
1070
+ EtherLike-MIB [RFC2665].
1071
+
1072
+ Values between 38 and 55, point to MIB objects defined in
1073
+ TOKENRING-MIB [RFC1748].
1074
+
1075
+ Values between 56 and 72, point to MIB objects defined in
1076
+ RMON-MIB [RFC2819].
1077
+
1078
+ Values between 73 and 75, point to MIB objects defined in
1079
+ BRIDGE-MIB [RFC1493].
1080
+
1081
+ Because SNMP access control is articulated entirely in terms
1082
+ of the contents of MIB views, no access control mechanism
1083
+ exists that can restrict the value of this object to identify
1084
+ only those objects that exist in a particular MIB view.
1085
+ Because there is thus no acceptable means of restricting the
1086
+ read access that could be obtained through the TopN
1087
+ mechanism, the probe must only grant write access to this
1088
+ object in those views that have read access to all objects on
1089
+ the probe.
1090
+
1091
+
1092
+
1093
+ During a set operation, if the supplied variable name is not
1094
+ available in the selected MIB view, or does not conform the
1095
+ other conditions mentioned above, a badValue error must be
1096
+ returned.
1097
+
1098
+ This object may not be modified if the associated
1099
+ interfaceTopNControlStatus object is equal to active(1).""",
1100
+ }, # column
1101
+ "interfaceTopNObjectSampleType" : {
1102
+ "nodetype" : "column",
1103
+ "moduleName" : "INTERFACETOPN-MIB",
1104
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.3",
1105
+ "status" : "current",
1106
+ "syntax" : {
1107
+ "type" : {
1108
+ "basetype" : "Enumeration",
1109
+ "absoluteValue" : {
1110
+ "nodetype" : "namednumber",
1111
+ "number" : "1"
1112
+ },
1113
+ "deltaValue" : {
1114
+ "nodetype" : "namednumber",
1115
+ "number" : "2"
1116
+ },
1117
+ "bandwidthPercentage" : {
1118
+ "nodetype" : "namednumber",
1119
+ "number" : "3"
1120
+ },
1121
+ },
1122
+ },
1123
+ "access" : "readwrite",
1124
+ "description" :
1125
+ """The method of sampling the selected variable for storage in
1126
+ the interfaceTopNTable.
1127
+
1128
+ If the value of this object is absoluteValue(1), the value of
1129
+ the selected variable will be copied directly into the topNValue.
1130
+
1131
+ If the value of this object is deltaValue(2), the value of the
1132
+ selected variable at the last sample will be subtracted from
1133
+ the current value, and the difference will be stored in topNValue.
1134
+
1135
+ If the value of this object is bandwidthPercentage(3), the agent
1136
+ records the total number of octets sent over an interval divided
1137
+ by the total number of octets that represent '100% bandwidth'
1138
+ for that interface. This ratio is multiplied by 1000 to
1139
+ retain a 3 digit integer (0..1000) in units of
1140
+ 'tenth of one percent'. This type of computation is accurate for
1141
+ the octet counters. The usage of this option with respect to
1142
+ packets or error counters is not recommended.
1143
+
1144
+ This object may not be modified if the associated
1145
+ interfaceTopNControlStatus object is equal to active(1).""",
1146
+ }, # column
1147
+ "interfaceTopNNormalizationReq" : {
1148
+ "nodetype" : "column",
1149
+ "moduleName" : "INTERFACETOPN-MIB",
1150
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.4",
1151
+ "status" : "current",
1152
+ "syntax" : {
1153
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1154
+ },
1155
+ "access" : "readwrite",
1156
+ "description" :
1157
+ """This object indicates whether normalization is required in the
1158
+
1159
+
1160
+ computation of the selected value.
1161
+
1162
+ If the value of this object is 'true', the value of
1163
+ the selected variable will be multiplied by a factor equal to the
1164
+ interfaceTopNNormalizationFactor divided by the value of
1165
+ effective speed of the interface
1166
+
1167
+ If the value of this object is 'false',
1168
+ the value of the selected variable will be taken 'as is' in
1169
+ the TopN computation.
1170
+
1171
+ If the value of the object interfaceTopNSampleType is
1172
+ bandwidthPercentage(3), the object
1173
+ interfaceTopNNormalizationReq cannot take the value 'true'.
1174
+
1175
+ The value of this object MUST be false if the effective speed of
1176
+ the interface sub-layer as determined from ifSpeed is zero. This
1177
+ conforms to the ifSpeed definition in [RFC2863]for a sub-layer
1178
+ that has no concept of bandwidth.
1179
+
1180
+ This object may not be modified if the associated
1181
+ interfaceTopNControlStatus object is equal to active(1).""",
1182
+ }, # column
1183
+ "interfaceTopNNormalizationFactor" : {
1184
+ "nodetype" : "column",
1185
+ "moduleName" : "INTERFACETOPN-MIB",
1186
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.5",
1187
+ "status" : "current",
1188
+ "syntax" : {
1189
+ "type" : {
1190
+ "basetype" : "Integer32",
1191
+ "ranges" : [
1192
+ {
1193
+ "min" : "1",
1194
+ "max" : "2147483647"
1195
+ },
1196
+ ],
1197
+ "range" : {
1198
+ "min" : "1",
1199
+ "max" : "2147483647"
1200
+ },
1201
+ },
1202
+ },
1203
+ "access" : "readwrite",
1204
+ "description" :
1205
+ """The value used for normalization if
1206
+ interfaceTopNNormalizationReq has the value 'true'.
1207
+
1208
+ Example:
1209
+ The following set of values is applied to a device with multiple
1210
+ Ethernet interfaces running at 10 Mbps, 100 Mbps, and 1 Gbps.
1211
+ interfaceTopNObjectVariable = 'ifInOctets'
1212
+ interfaceTopNObjectSampleType = 'deltaValue'
1213
+ interfaceTopNNormalizationReq = 'true'
1214
+ interfaceTopNNormalizationFactor = 1000000000
1215
+ Applying this set of values will result in the sampled delta values
1216
+ to be multiplied by 100 for the 10 Mbps interfaces, and by 10 for
1217
+ the 100 Mbps interfaces, while the sample values for the 1 Gbps
1218
+ interface are left unchanged. The effective speed of the interface is
1219
+ taken from the value of ifSpeed for each interface, if ifSpeed is
1220
+ less than 4,294,967,295, or from ifHighSpeed multiplied by
1221
+ 1,000,000 otherwise.
1222
+
1223
+ At row creation the agent SHOULD set the value of this object to
1224
+
1225
+
1226
+ the effective speed of the interface.""",
1227
+ }, # column
1228
+ "interfaceTopNTimeRemaining" : {
1229
+ "nodetype" : "column",
1230
+ "moduleName" : "INTERFACETOPN-MIB",
1231
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.6",
1232
+ "status" : "current",
1233
+ "syntax" : {
1234
+ "type" : {
1235
+ "basetype" : "Integer32",
1236
+ "ranges" : [
1237
+ {
1238
+ "min" : "0",
1239
+ "max" : "2147483647"
1240
+ },
1241
+ ],
1242
+ "range" : {
1243
+ "min" : "0",
1244
+ "max" : "2147483647"
1245
+ },
1246
+ },
1247
+ },
1248
+ "access" : "readwrite",
1249
+ "default" : "0",
1250
+ "description" :
1251
+ """The number of seconds left in the report
1252
+ currently being collected. When this object
1253
+ is modified by the management station, a new
1254
+ collection is started, possibly aborting a
1255
+ currently running report. The new value is
1256
+ used as the requested duration of this report,
1257
+ which is loaded into the associated
1258
+ interfaceTopNDuration object.
1259
+
1260
+ When this object is set to a non-zero value,
1261
+ any associated interfaceTopNEntries shall be
1262
+ made inaccessible by the agent. While the value
1263
+ of this object is non-zero, it decrements by one
1264
+ per second until it reaches zero. During this
1265
+ time, all associated interfaceTopNEntries shall
1266
+ remain inaccessible. At the time that this object
1267
+ decrements to zero, the report is made accessible
1268
+ in the interfaceTopNTable. Thus, the interfaceTopN
1269
+ table needs to be created only at the end of the
1270
+ collection interval.
1271
+
1272
+ If the value of this object is set to zero
1273
+ while the associated report is running, the
1274
+ running report is aborted and no associated
1275
+ interfaceTopNEntries are created.""",
1276
+ }, # column
1277
+ "interfaceTopNDuration" : {
1278
+ "nodetype" : "column",
1279
+ "moduleName" : "INTERFACETOPN-MIB",
1280
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.7",
1281
+ "status" : "current",
1282
+ "syntax" : {
1283
+ "type" : {
1284
+ "basetype" : "Integer32",
1285
+ "ranges" : [
1286
+ {
1287
+ "min" : "0",
1288
+ "max" : "2147483647"
1289
+ },
1290
+ ],
1291
+ "range" : {
1292
+ "min" : "0",
1293
+ "max" : "2147483647"
1294
+ },
1295
+ },
1296
+ },
1297
+ "access" : "readonly",
1298
+ "description" :
1299
+ """The number of seconds that this report has
1300
+ collected during the last sampling interval,
1301
+ or if this report is currently being collected,
1302
+ the number of seconds that this report is being
1303
+ collected during this sampling interval.
1304
+
1305
+ When the associated interfaceTopNTimeRemaining
1306
+
1307
+
1308
+ object is set, this object shall be set by the
1309
+ agent to the same value and shall not be modified
1310
+ until the next time the interfaceTopNTimeRemaining
1311
+ is set.
1312
+
1313
+ This value shall be zero if no reports have been
1314
+ requested for this interfaceTopNControlEntry.""",
1315
+ }, # column
1316
+ "interfaceTopNRequestedSize" : {
1317
+ "nodetype" : "column",
1318
+ "moduleName" : "INTERFACETOPN-MIB",
1319
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.8",
1320
+ "status" : "current",
1321
+ "syntax" : {
1322
+ "type" : { "module" :"", "name" : "Integer32"},
1323
+ },
1324
+ "access" : "readwrite",
1325
+ "default" : "10",
1326
+ "description" :
1327
+ """The maximum number of interfaces requested
1328
+ for the Top N Table.
1329
+
1330
+ When this object is created or modified, the
1331
+ agent should set interfaceTopNGrantedSize as close
1332
+ to this object as is possible for the particular
1333
+ implementation and available resources.""",
1334
+ }, # column
1335
+ "interfaceTopNGrantedSize" : {
1336
+ "nodetype" : "column",
1337
+ "moduleName" : "INTERFACETOPN-MIB",
1338
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.9",
1339
+ "status" : "current",
1340
+ "syntax" : {
1341
+ "type" : {
1342
+ "basetype" : "Integer32",
1343
+ "ranges" : [
1344
+ {
1345
+ "min" : "0",
1346
+ "max" : "2147483647"
1347
+ },
1348
+ ],
1349
+ "range" : {
1350
+ "min" : "0",
1351
+ "max" : "2147483647"
1352
+ },
1353
+ },
1354
+ },
1355
+ "access" : "readonly",
1356
+ "description" :
1357
+ """The maximum number of interfaces in the
1358
+ top N table.
1359
+
1360
+ When the associated interfaceTopNRequestedSize object is
1361
+ created or modified, the agent should set this object as
1362
+ closely to the requested value as is possible for the
1363
+ particular implementation and available resources. The
1364
+ agent must not lower this value except as a result of a
1365
+ set to the associated interfaceTopNRequestedSize object.""",
1366
+ }, # column
1367
+ "interfaceTopNStartTime" : {
1368
+ "nodetype" : "column",
1369
+ "moduleName" : "INTERFACETOPN-MIB",
1370
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.10",
1371
+ "status" : "current",
1372
+ "syntax" : {
1373
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1374
+ },
1375
+ "access" : "readonly",
1376
+ "description" :
1377
+ """The value of sysUpTime when this top N report was
1378
+ last started. In other words, this is the time that
1379
+ the associated interfaceTopNTimeRemaining object was
1380
+
1381
+
1382
+ modified to start the requested report.
1383
+
1384
+ If the report has not yet been started, the value
1385
+ of this object is zero.""",
1386
+ }, # column
1387
+ "interfaceTopNOwner" : {
1388
+ "nodetype" : "column",
1389
+ "moduleName" : "INTERFACETOPN-MIB",
1390
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.11",
1391
+ "status" : "current",
1392
+ "syntax" : {
1393
+ "type" : { "module" :"RMON-MIB", "name" : "OwnerString"},
1394
+ },
1395
+ "access" : "readwrite",
1396
+ "description" :
1397
+ """The entity that configured this entry and is
1398
+ using the resources assigned to it.""",
1399
+ }, # column
1400
+ "interfaceTopNLastCompletionTime" : {
1401
+ "nodetype" : "column",
1402
+ "moduleName" : "INTERFACETOPN-MIB",
1403
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.12",
1404
+ "status" : "current",
1405
+ "syntax" : {
1406
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1407
+ },
1408
+ "access" : "readonly",
1409
+ "description" :
1410
+ """The value of sysUpTime when this top N report was
1411
+ last completed. If no report was yet completed, the value
1412
+ of this object is zero.""",
1413
+ }, # column
1414
+ "interfaceTopNRowStatus" : {
1415
+ "nodetype" : "column",
1416
+ "moduleName" : "INTERFACETOPN-MIB",
1417
+ "oid" : "1.3.6.1.2.1.16.27.1.2.1.13",
1418
+ "status" : "current",
1419
+ "syntax" : {
1420
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1421
+ },
1422
+ "access" : "readwrite",
1423
+ "description" :
1424
+ """The status of this row.
1425
+
1426
+ If the value of this object is not equal to
1427
+ active(1), all associated entries in the
1428
+ interfaceTopNTable shall be deleted by the
1429
+ agent.""",
1430
+ }, # column
1431
+ "interfaceTopNTable" : {
1432
+ "nodetype" : "table",
1433
+ "moduleName" : "INTERFACETOPN-MIB",
1434
+ "oid" : "1.3.6.1.2.1.16.27.1.3",
1435
+ "status" : "current",
1436
+ "description" :
1437
+ """A table of reports for the top `N' ports based on
1438
+
1439
+
1440
+ setting of associated control table entries. The
1441
+ maximum number of entries depends on the number
1442
+ of entries in table interfaceTopNControlTable and
1443
+ the value of object interfaceTopNGrantedSize for
1444
+ each entry.
1445
+
1446
+ For each entry in the interfaceTopNControlTable,
1447
+ interfaces with the highest value of
1448
+ interfaceTopNValue shall be placed in this table
1449
+ in decreasing order of that rate until there is
1450
+ no more room or until there are no more ports.""",
1451
+ }, # table
1452
+ "interfaceTopNEntry" : {
1453
+ "nodetype" : "row",
1454
+ "moduleName" : "INTERFACETOPN-MIB",
1455
+ "oid" : "1.3.6.1.2.1.16.27.1.3.1",
1456
+ "status" : "current",
1457
+ "linkage" : [
1458
+ "interfaceTopNControlIndex",
1459
+ "interfaceTopNIndex",
1460
+ ],
1461
+ "description" :
1462
+ """A set of statistics for an interface that is
1463
+ part of a top N report.""",
1464
+ }, # row
1465
+ "interfaceTopNIndex" : {
1466
+ "nodetype" : "column",
1467
+ "moduleName" : "INTERFACETOPN-MIB",
1468
+ "oid" : "1.3.6.1.2.1.16.27.1.3.1.1",
1469
+ "status" : "current",
1470
+ "syntax" : {
1471
+ "type" : {
1472
+ "basetype" : "Integer32",
1473
+ "ranges" : [
1474
+ {
1475
+ "min" : "1",
1476
+ "max" : "65535"
1477
+ },
1478
+ ],
1479
+ "range" : {
1480
+ "min" : "1",
1481
+ "max" : "65535"
1482
+ },
1483
+ },
1484
+ },
1485
+ "access" : "noaccess",
1486
+ "description" :
1487
+ """An index that uniquely identifies an entry in
1488
+ the interfaceTopN table among those in the same
1489
+ report. This index is between 1 and N, where N
1490
+ is the number of entries in this report. Increasing
1491
+ values of interfaceTopNIndex shall be assigned to
1492
+ entries with decreasing values of interfaceTopNValue
1493
+ or interfaceTopNValue64, whichever applies,
1494
+ until index N is assigned to the entry with the
1495
+
1496
+
1497
+ lowest value of interfaceTopNValue /
1498
+ interfaceTopNValue64 or there are no
1499
+ more interfaceTopNEntries.
1500
+
1501
+ No ports are included in a report where their
1502
+ value of interfaceTopNValue would be zero.""",
1503
+ }, # column
1504
+ "interfaceTopNDataSourceIndex" : {
1505
+ "nodetype" : "column",
1506
+ "moduleName" : "INTERFACETOPN-MIB",
1507
+ "oid" : "1.3.6.1.2.1.16.27.1.3.1.2",
1508
+ "status" : "current",
1509
+ "syntax" : {
1510
+ "type" : {
1511
+ "basetype" : "Integer32",
1512
+ "ranges" : [
1513
+ {
1514
+ "min" : "1",
1515
+ "max" : "2147483647"
1516
+ },
1517
+ ],
1518
+ "range" : {
1519
+ "min" : "1",
1520
+ "max" : "2147483647"
1521
+ },
1522
+ },
1523
+ },
1524
+ "access" : "readonly",
1525
+ "description" :
1526
+ """This object identifies the index corresponding
1527
+ to the dataSource for this entry.
1528
+
1529
+ For sorted values of variables belonging to the
1530
+ IF-MIB, EtherLike-MIB or TOKENRING-MIB, this value
1531
+ equals the ifIndex of the interface.
1532
+
1533
+ For sorted values of variables belonging to the
1534
+ RMON-MIB, this value equals the interface corresponding
1535
+ to the data source, pointed to by the value
1536
+ of etherStatsDataSource.
1537
+
1538
+ For sorted values of variables belonging to the
1539
+ BRIDGE-MIB, this value equals the interface corresponding
1540
+ to the bridge port, pointed to by the value
1541
+ of dot1dBasePortIfIndex.""",
1542
+ }, # column
1543
+ "interfaceTopNValue" : {
1544
+ "nodetype" : "column",
1545
+ "moduleName" : "INTERFACETOPN-MIB",
1546
+ "oid" : "1.3.6.1.2.1.16.27.1.3.1.3",
1547
+ "status" : "current",
1548
+ "syntax" : {
1549
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1550
+ },
1551
+ "access" : "readonly",
1552
+ "description" :
1553
+ """The value at the end of the sampling interval, or
1554
+ the amount of change in the selected variable
1555
+ during this sampling interval for the identified
1556
+ interface. The selected variable is that interfaces's
1557
+ instance of the object selected by
1558
+ interfaceTopNObjectVariable. This value may be normalized
1559
+ if interfaceTopNNormalization required equals 'true'.
1560
+ This value of this object will be computed for all
1561
+ cases when interfaceTopNObjectVariable points to a
1562
+ 32-bit counter or Gauge or when
1563
+ interfaceTopNObjectSampleType equals bandwidthPercentage(3),
1564
+ and will be zero for all other cases.""",
1565
+ }, # column
1566
+ "interfaceTopNValue64" : {
1567
+ "nodetype" : "column",
1568
+ "moduleName" : "INTERFACETOPN-MIB",
1569
+ "oid" : "1.3.6.1.2.1.16.27.1.3.1.4",
1570
+ "status" : "current",
1571
+ "syntax" : {
1572
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
1573
+ },
1574
+ "access" : "readonly",
1575
+ "description" :
1576
+ """The value at the end of the sampling interval, or
1577
+ the amount of change in the selected variable
1578
+ during this sampling interval for the identified
1579
+ interface. The selected variable is that interfaces's
1580
+ instance of the object selected by
1581
+ interfaceTopNObjectVariable. This value may be normalized
1582
+ if interfaceTopNNormalization required equals 'true'.
1583
+ This value of this object will be computed for all
1584
+ cases when interfaceTopNObjectVariable points to
1585
+ a 64-bit counter, and will be zero for all other cases.""",
1586
+ }, # column
1587
+ "interfaceTopNNotifications" : {
1588
+ "nodetype" : "node",
1589
+ "moduleName" : "INTERFACETOPN-MIB",
1590
+ "oid" : "1.3.6.1.2.1.16.27.2",
1591
+ }, # node
1592
+ "interfaceTopNConformance" : {
1593
+ "nodetype" : "node",
1594
+ "moduleName" : "INTERFACETOPN-MIB",
1595
+ "oid" : "1.3.6.1.2.1.16.27.3",
1596
+ }, # node
1597
+ "interfaceTopNCompliances" : {
1598
+ "nodetype" : "node",
1599
+ "moduleName" : "INTERFACETOPN-MIB",
1600
+ "oid" : "1.3.6.1.2.1.16.27.3.1",
1601
+ }, # node
1602
+ "interfaceTopNGroups" : {
1603
+ "nodetype" : "node",
1604
+ "moduleName" : "INTERFACETOPN-MIB",
1605
+ "oid" : "1.3.6.1.2.1.16.27.3.2",
1606
+ }, # node
1607
+ }, # nodes
1608
+
1609
+ "groups" : {
1610
+ "interfaceTopNGroup" : {
1611
+ "nodetype" : "group",
1612
+ "moduleName" : "INTERFACETOPN-MIB",
1613
+ "oid" : "1.3.6.1.2.1.16.27.3.2.1",
1614
+ "status" : "current",
1615
+ "members" : {
1616
+ "interfaceTopNCaps" : {
1617
+ "nodetype" : "member",
1618
+ "module" : "INTERFACETOPN-MIB"
1619
+ },
1620
+ "interfaceTopNObjectVariable" : {
1621
+ "nodetype" : "member",
1622
+ "module" : "INTERFACETOPN-MIB"
1623
+ },
1624
+ "interfaceTopNObjectSampleType" : {
1625
+ "nodetype" : "member",
1626
+ "module" : "INTERFACETOPN-MIB"
1627
+ },
1628
+ "interfaceTopNNormalizationReq" : {
1629
+ "nodetype" : "member",
1630
+ "module" : "INTERFACETOPN-MIB"
1631
+ },
1632
+ "interfaceTopNNormalizationFactor" : {
1633
+ "nodetype" : "member",
1634
+ "module" : "INTERFACETOPN-MIB"
1635
+ },
1636
+ "interfaceTopNTimeRemaining" : {
1637
+ "nodetype" : "member",
1638
+ "module" : "INTERFACETOPN-MIB"
1639
+ },
1640
+ "interfaceTopNDuration" : {
1641
+ "nodetype" : "member",
1642
+ "module" : "INTERFACETOPN-MIB"
1643
+ },
1644
+ "interfaceTopNRequestedSize" : {
1645
+ "nodetype" : "member",
1646
+ "module" : "INTERFACETOPN-MIB"
1647
+ },
1648
+ "interfaceTopNGrantedSize" : {
1649
+ "nodetype" : "member",
1650
+ "module" : "INTERFACETOPN-MIB"
1651
+ },
1652
+ "interfaceTopNStartTime" : {
1653
+ "nodetype" : "member",
1654
+ "module" : "INTERFACETOPN-MIB"
1655
+ },
1656
+ "interfaceTopNOwner" : {
1657
+ "nodetype" : "member",
1658
+ "module" : "INTERFACETOPN-MIB"
1659
+ },
1660
+ "interfaceTopNLastCompletionTime" : {
1661
+ "nodetype" : "member",
1662
+ "module" : "INTERFACETOPN-MIB"
1663
+ },
1664
+ "interfaceTopNRowStatus" : {
1665
+ "nodetype" : "member",
1666
+ "module" : "INTERFACETOPN-MIB"
1667
+ },
1668
+ "interfaceTopNDataSourceIndex" : {
1669
+ "nodetype" : "member",
1670
+ "module" : "INTERFACETOPN-MIB"
1671
+ },
1672
+ "interfaceTopNValue" : {
1673
+ "nodetype" : "member",
1674
+ "module" : "INTERFACETOPN-MIB"
1675
+ },
1676
+ "interfaceTopNValue64" : {
1677
+ "nodetype" : "member",
1678
+ "module" : "INTERFACETOPN-MIB"
1679
+ },
1680
+ }, # members
1681
+ "description" :
1682
+ """A collection of objects providing interfaceTopN data for
1683
+ a multiple interfaces device.""",
1684
+ }, # group
1685
+ }, # groups
1686
+
1687
+ "compliances" : {
1688
+ "interfaceTopNCompliance" : {
1689
+ "nodetype" : "compliance",
1690
+ "moduleName" : "INTERFACETOPN-MIB",
1691
+ "oid" : "1.3.6.1.2.1.16.27.3.1.1",
1692
+ "status" : "current",
1693
+ "description" :
1694
+ """Describes the requirements for conformance to the
1695
+ InterfaceTopN MIB.""",
1696
+ "requires" : {
1697
+ "interfaceTopNGroup" : {
1698
+ "nodetype" : "mandatory",
1699
+ "module" : "INTERFACETOPN-MIB"
1700
+ },
1701
+ }, # requires
1702
+ }, # compliance
1703
+ }, # compliances
1704
+
1705
+ }