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,3201 @@
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 FLOW-METER-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/FLOW-METER-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "FLOW-METER-MIB",
11
+
12
+ "FLOW-METER-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Realtime Traffic Flow Measurement Working Group""",
17
+ "contact" :
18
+ """Nevil Brownlee, The University of Auckland
19
+
20
+ Postal: Information Technology Sytems & Services
21
+ The University of Auckland
22
+ Private Bag 92-019
23
+ Auckland, New Zealand
24
+
25
+ Phone: +64 9 373 7599 x8941
26
+ E-mail: n.brownlee@auckland.ac.nz""",
27
+ "description" :
28
+ """MIB for the RTFM Traffic Flow Meter.""",
29
+ "revisions" : (
30
+ {
31
+ "date" : "1999-10-25 00:00",
32
+ "description" :
33
+ """Initial Version, published as RFC 2720.""",
34
+ },
35
+ {
36
+ "date" : "1999-08-30 12:50",
37
+ "description" :
38
+ """UTF8OwnerString Textual Convention added, and used to
39
+ replace OwnerString. Conceptually the same as OwnerString,
40
+ but facilitating internationalisation by using UTF-8
41
+ encoding for its characters rather than US-ASCII.""",
42
+ },
43
+ {
44
+ "date" : "1999-08-19 10:10",
45
+ "description" :
46
+ """Changes to SIZE specification for two variables:
47
+ - flowRuleInfoName SIZE specified as (0..127)
48
+ - flowRuleIndex SIZE increased to (1..2147483647)""",
49
+ },
50
+ {
51
+ "date" : "1997-12-23 09:37",
52
+ "description" :
53
+ """Two further variables deprecated:
54
+ - flowRuleInfoRulesReady (use flowRuleInfoStatus intead)
55
+ - flowDataStatus (contains no useful information)""",
56
+ },
57
+ {
58
+ "date" : "1997-07-07 17:15",
59
+ "description" :
60
+ """Significant changes since RFC 2064 include:
61
+ - flowDataPackageTable added
62
+ - flowColumnActivityTable deprecated
63
+ - flowManagerCounterWrap deprecated""",
64
+ },
65
+ {
66
+ "date" : "1996-03-08 02:08",
67
+ "description" :
68
+ """Initial version of this MIB (RFC 2064)""",
69
+ },
70
+ ),
71
+ "identity node" : "flowMIB",
72
+ },
73
+
74
+ "imports" : (
75
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
76
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
77
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
78
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
79
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
80
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
81
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
82
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
83
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
84
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
85
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
86
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
87
+ {"module" : "IF-MIB", "name" : "ifIndex"},
88
+ {"module" : "RMON2-MIB", "name" : "TimeFilter"},
89
+ ),
90
+
91
+ "typedefs" : {
92
+ "UTF8OwnerString" : {
93
+ "basetype" : "OctetString",
94
+ "status" : "current",
95
+ "ranges" : [
96
+ {
97
+ "min" : "0",
98
+ "max" : "127"
99
+ },
100
+ ],
101
+ "range" : {
102
+ "min" : "0",
103
+ "max" : "127"
104
+ },
105
+ "format" : "127t",
106
+ "description" :
107
+ """An administratively assigned name for the owner of a
108
+ resource, conceptually the same as OwnerString in the RMON
109
+ MIB [RMON-MIB].
110
+
111
+ To facilitate internationalisation, this name information
112
+ is represented using the ISO/IEC IS 10646-1 character set,
113
+ encoded as an octet string using the UTF-8 transformation
114
+ format described in the UTF-8 standard [UTF-8].""",
115
+ },
116
+ "PeerType" : {
117
+ "basetype" : "Enumeration",
118
+ "status" : "current",
119
+ "ipv4" : {
120
+ "nodetype" : "namednumber",
121
+ "number" : "1"
122
+ },
123
+ "ipv6" : {
124
+ "nodetype" : "namednumber",
125
+ "number" : "2"
126
+ },
127
+ "nsap" : {
128
+ "nodetype" : "namednumber",
129
+ "number" : "3"
130
+ },
131
+ "ipx" : {
132
+ "nodetype" : "namednumber",
133
+ "number" : "11"
134
+ },
135
+ "appletalk" : {
136
+ "nodetype" : "namednumber",
137
+ "number" : "12"
138
+ },
139
+ "decnet" : {
140
+ "nodetype" : "namednumber",
141
+ "number" : "13"
142
+ },
143
+ "description" :
144
+ """Indicates the type of a PeerAddress (see below). The values
145
+ used are from the 'Address Family Numbers' section of the
146
+ Assigned Numbers RFC [ASG-NBR]. Peer types from other address
147
+ families may also be used, provided only that they are
148
+ identified by their assigned Address Family numbers.""",
149
+ },
150
+ "PeerAddress" : {
151
+ "basetype" : "OctetString",
152
+ "status" : "current",
153
+ "ranges" : [
154
+ {
155
+ "min" : "3",
156
+ "max" : "20"
157
+ },
158
+ ],
159
+ "range" : {
160
+ "min" : "3",
161
+ "max" : "20"
162
+ },
163
+ "description" :
164
+ """Specifies the value of a peer address for various network
165
+ protocols. Address format depends on the actual protocol,
166
+ as indicated below:
167
+
168
+ IPv4: ipv4(1)
169
+ 4-octet IpAddress (defined in the SNMPv2 SMI [RFC2578])
170
+
171
+ IPv6: ipv6(2)
172
+ 16-octet IpAddress (defined in the
173
+ IPv6 Addressing RFC [V6-ADDR])
174
+
175
+ CLNS: nsap(3)
176
+ NsapAddress (defined in the SNMPv2 SMI [RFC2578])
177
+
178
+ Novell: ipx(11)
179
+ 4-octet Network number,
180
+ 6-octet Host number (MAC address)
181
+
182
+ AppleTalk: appletalk(12)
183
+ 2-octet Network number (sixteen bits),
184
+ 1-octet Host number (eight bits)
185
+
186
+ DECnet: decnet(13)
187
+ 1-octet Area number (in low-order six bits),
188
+ 2-octet Host number (in low-order ten bits)""",
189
+ },
190
+ "AdjacentType" : {
191
+ "basetype" : "Enumeration",
192
+ "status" : "current",
193
+ "ip" : {
194
+ "nodetype" : "namednumber",
195
+ "number" : "1"
196
+ },
197
+ "nsap" : {
198
+ "nodetype" : "namednumber",
199
+ "number" : "3"
200
+ },
201
+ "ethernet" : {
202
+ "nodetype" : "namednumber",
203
+ "number" : "7"
204
+ },
205
+ "tokenring" : {
206
+ "nodetype" : "namednumber",
207
+ "number" : "9"
208
+ },
209
+ "ipx" : {
210
+ "nodetype" : "namednumber",
211
+ "number" : "11"
212
+ },
213
+ "appletalk" : {
214
+ "nodetype" : "namednumber",
215
+ "number" : "12"
216
+ },
217
+ "decnet" : {
218
+ "nodetype" : "namednumber",
219
+ "number" : "13"
220
+ },
221
+ "fddi" : {
222
+ "nodetype" : "namednumber",
223
+ "number" : "15"
224
+ },
225
+ "description" :
226
+ """Indicates the type of an adjacent address. May be a medium
227
+ type or (if metering is taking place inside a tunnel) a
228
+ PeerType (see above).
229
+
230
+ The values used for IEEE 802 medium types are from the 'Network
231
+ Management Parameters (ifType definitions)' section of the
232
+ Assigned Numbers RFC [ASG-NBR]. Other medium types may also
233
+ be used, provided only that they are identified by their
234
+ assigned ifType numbers.""",
235
+ },
236
+ "AdjacentAddress" : {
237
+ "basetype" : "OctetString",
238
+ "status" : "current",
239
+ "ranges" : [
240
+ {
241
+ "min" : "3",
242
+ "max" : "20"
243
+ },
244
+ ],
245
+ "range" : {
246
+ "min" : "3",
247
+ "max" : "20"
248
+ },
249
+ "description" :
250
+ """Specifies the value of an adjacent address. May be a Medium
251
+ Access Control (MAC) address or (if metering is taking place
252
+ inside a tunnel) a PeerAddress (see above).
253
+
254
+ MAC Address format depends on the actual medium, as follows:
255
+
256
+ Ethernet: ethernet(7)
257
+ 6-octet 802.3 MAC address in 'canonical' order
258
+ Token Ring: tokenring(9)
259
+ 6-octet 802.5 MAC address in 'canonical' order
260
+
261
+ FDDI: fddi(15)
262
+ FddiMACLongAddress, i.e. a 6-octet MAC address
263
+ in 'canonical' order (defined in [FDDI-MIB])""",
264
+ },
265
+ "TransportType" : {
266
+ "basetype" : "Integer32",
267
+ "status" : "current",
268
+ "ranges" : [
269
+ {
270
+ "min" : "1",
271
+ "max" : "255"
272
+ },
273
+ ],
274
+ "range" : {
275
+ "min" : "1",
276
+ "max" : "255"
277
+ },
278
+ "description" :
279
+ """Indicates the type of a TransportAddress (see below). Values
280
+ will depend on the actual protocol; for IP they will be those
281
+ given in the 'Protocol Numbers' section of the Assigned Numbers
282
+ RFC [ASG-NBR], including icmp(1), tcp(6) and udp(17).""",
283
+ },
284
+ "TransportAddress" : {
285
+ "basetype" : "OctetString",
286
+ "status" : "current",
287
+ "ranges" : [
288
+ {
289
+ "min" : "2",
290
+ "max" : "2"
291
+ },
292
+ ],
293
+ "range" : {
294
+ "min" : "2",
295
+ "max" : "2"
296
+ },
297
+ "description" :
298
+ """Specifies the value of a transport address for various
299
+ network protocols. Format as follows:
300
+
301
+ IP:
302
+ 2-octet UDP or TCP port number
303
+
304
+ Other protocols:
305
+ 2-octet port number""",
306
+ },
307
+ "RuleAddress" : {
308
+ "basetype" : "OctetString",
309
+ "status" : "current",
310
+ "ranges" : [
311
+ {
312
+ "min" : "2",
313
+ "max" : "20"
314
+ },
315
+ ],
316
+ "range" : {
317
+ "min" : "2",
318
+ "max" : "20"
319
+ },
320
+ "description" :
321
+ """Specifies the value of an address. Is a superset of
322
+ MediumAddress, PeerAddress and TransportAddress.""",
323
+ },
324
+ "FlowAttributeNumber" : {
325
+ "basetype" : "Enumeration",
326
+ "status" : "current",
327
+ "flowIndex" : {
328
+ "nodetype" : "namednumber",
329
+ "number" : "1"
330
+ },
331
+ "flowStatus" : {
332
+ "nodetype" : "namednumber",
333
+ "number" : "2"
334
+ },
335
+ "flowTimeMark" : {
336
+ "nodetype" : "namednumber",
337
+ "number" : "3"
338
+ },
339
+ "sourceInterface" : {
340
+ "nodetype" : "namednumber",
341
+ "number" : "4"
342
+ },
343
+ "sourceAdjacentType" : {
344
+ "nodetype" : "namednumber",
345
+ "number" : "5"
346
+ },
347
+ "sourceAdjacentAddress" : {
348
+ "nodetype" : "namednumber",
349
+ "number" : "6"
350
+ },
351
+ "sourceAdjacentMask" : {
352
+ "nodetype" : "namednumber",
353
+ "number" : "7"
354
+ },
355
+ "sourcePeerType" : {
356
+ "nodetype" : "namednumber",
357
+ "number" : "8"
358
+ },
359
+ "sourcePeerAddress" : {
360
+ "nodetype" : "namednumber",
361
+ "number" : "9"
362
+ },
363
+ "sourcePeerMask" : {
364
+ "nodetype" : "namednumber",
365
+ "number" : "10"
366
+ },
367
+ "sourceTransType" : {
368
+ "nodetype" : "namednumber",
369
+ "number" : "11"
370
+ },
371
+ "sourceTransAddress" : {
372
+ "nodetype" : "namednumber",
373
+ "number" : "12"
374
+ },
375
+ "sourceTransMask" : {
376
+ "nodetype" : "namednumber",
377
+ "number" : "13"
378
+ },
379
+ "destInterface" : {
380
+ "nodetype" : "namednumber",
381
+ "number" : "14"
382
+ },
383
+ "destAdjacentType" : {
384
+ "nodetype" : "namednumber",
385
+ "number" : "15"
386
+ },
387
+ "destAdjacentAddress" : {
388
+ "nodetype" : "namednumber",
389
+ "number" : "16"
390
+ },
391
+ "destAdjacentMask" : {
392
+ "nodetype" : "namednumber",
393
+ "number" : "17"
394
+ },
395
+ "destPeerType" : {
396
+ "nodetype" : "namednumber",
397
+ "number" : "18"
398
+ },
399
+ "destPeerAddress" : {
400
+ "nodetype" : "namednumber",
401
+ "number" : "19"
402
+ },
403
+ "destPeerMask" : {
404
+ "nodetype" : "namednumber",
405
+ "number" : "20"
406
+ },
407
+ "destTransType" : {
408
+ "nodetype" : "namednumber",
409
+ "number" : "21"
410
+ },
411
+ "destTransAddress" : {
412
+ "nodetype" : "namednumber",
413
+ "number" : "22"
414
+ },
415
+ "destTransMask" : {
416
+ "nodetype" : "namednumber",
417
+ "number" : "23"
418
+ },
419
+ "pduScale" : {
420
+ "nodetype" : "namednumber",
421
+ "number" : "24"
422
+ },
423
+ "octetScale" : {
424
+ "nodetype" : "namednumber",
425
+ "number" : "25"
426
+ },
427
+ "ruleSet" : {
428
+ "nodetype" : "namednumber",
429
+ "number" : "26"
430
+ },
431
+ "toOctets" : {
432
+ "nodetype" : "namednumber",
433
+ "number" : "27"
434
+ },
435
+ "toPDUs" : {
436
+ "nodetype" : "namednumber",
437
+ "number" : "28"
438
+ },
439
+ "fromOctets" : {
440
+ "nodetype" : "namednumber",
441
+ "number" : "29"
442
+ },
443
+ "fromPDUs" : {
444
+ "nodetype" : "namednumber",
445
+ "number" : "30"
446
+ },
447
+ "firstTime" : {
448
+ "nodetype" : "namednumber",
449
+ "number" : "31"
450
+ },
451
+ "lastActiveTime" : {
452
+ "nodetype" : "namednumber",
453
+ "number" : "32"
454
+ },
455
+ "sourceSubscriberID" : {
456
+ "nodetype" : "namednumber",
457
+ "number" : "33"
458
+ },
459
+ "destSubscriberID" : {
460
+ "nodetype" : "namednumber",
461
+ "number" : "34"
462
+ },
463
+ "sessionID" : {
464
+ "nodetype" : "namednumber",
465
+ "number" : "35"
466
+ },
467
+ "sourceClass" : {
468
+ "nodetype" : "namednumber",
469
+ "number" : "36"
470
+ },
471
+ "destClass" : {
472
+ "nodetype" : "namednumber",
473
+ "number" : "37"
474
+ },
475
+ "flowClass" : {
476
+ "nodetype" : "namednumber",
477
+ "number" : "38"
478
+ },
479
+ "sourceKind" : {
480
+ "nodetype" : "namednumber",
481
+ "number" : "39"
482
+ },
483
+ "destKind" : {
484
+ "nodetype" : "namednumber",
485
+ "number" : "40"
486
+ },
487
+ "flowKind" : {
488
+ "nodetype" : "namednumber",
489
+ "number" : "41"
490
+ },
491
+ "description" :
492
+ """Uniquely identifies an attribute within a flow data record.""",
493
+ },
494
+ "RuleAttributeNumber" : {
495
+ "basetype" : "Enumeration",
496
+ "status" : "current",
497
+ "null" : {
498
+ "nodetype" : "namednumber",
499
+ "number" : "0"
500
+ },
501
+ "sourceInterface" : {
502
+ "nodetype" : "namednumber",
503
+ "number" : "4"
504
+ },
505
+ "sourceAdjacentType" : {
506
+ "nodetype" : "namednumber",
507
+ "number" : "5"
508
+ },
509
+ "sourceAdjacentAddress" : {
510
+ "nodetype" : "namednumber",
511
+ "number" : "6"
512
+ },
513
+ "sourcePeerType" : {
514
+ "nodetype" : "namednumber",
515
+ "number" : "8"
516
+ },
517
+ "sourcePeerAddress" : {
518
+ "nodetype" : "namednumber",
519
+ "number" : "9"
520
+ },
521
+ "sourceTransType" : {
522
+ "nodetype" : "namednumber",
523
+ "number" : "11"
524
+ },
525
+ "sourceTransAddress" : {
526
+ "nodetype" : "namednumber",
527
+ "number" : "12"
528
+ },
529
+ "destInterface" : {
530
+ "nodetype" : "namednumber",
531
+ "number" : "14"
532
+ },
533
+ "destAdjacentType" : {
534
+ "nodetype" : "namednumber",
535
+ "number" : "15"
536
+ },
537
+ "destAdjacentAddress" : {
538
+ "nodetype" : "namednumber",
539
+ "number" : "16"
540
+ },
541
+ "destPeerType" : {
542
+ "nodetype" : "namednumber",
543
+ "number" : "18"
544
+ },
545
+ "destPeerAddress" : {
546
+ "nodetype" : "namednumber",
547
+ "number" : "19"
548
+ },
549
+ "destTransType" : {
550
+ "nodetype" : "namednumber",
551
+ "number" : "21"
552
+ },
553
+ "destTransAddress" : {
554
+ "nodetype" : "namednumber",
555
+ "number" : "22"
556
+ },
557
+ "sourceSubscriberID" : {
558
+ "nodetype" : "namednumber",
559
+ "number" : "33"
560
+ },
561
+ "destSubscriberID" : {
562
+ "nodetype" : "namednumber",
563
+ "number" : "34"
564
+ },
565
+ "sessionID" : {
566
+ "nodetype" : "namednumber",
567
+ "number" : "35"
568
+ },
569
+ "sourceClass" : {
570
+ "nodetype" : "namednumber",
571
+ "number" : "36"
572
+ },
573
+ "destClass" : {
574
+ "nodetype" : "namednumber",
575
+ "number" : "37"
576
+ },
577
+ "flowClass" : {
578
+ "nodetype" : "namednumber",
579
+ "number" : "38"
580
+ },
581
+ "sourceKind" : {
582
+ "nodetype" : "namednumber",
583
+ "number" : "39"
584
+ },
585
+ "destKind" : {
586
+ "nodetype" : "namednumber",
587
+ "number" : "40"
588
+ },
589
+ "flowKind" : {
590
+ "nodetype" : "namednumber",
591
+ "number" : "41"
592
+ },
593
+ "matchingStoD" : {
594
+ "nodetype" : "namednumber",
595
+ "number" : "50"
596
+ },
597
+ "v1" : {
598
+ "nodetype" : "namednumber",
599
+ "number" : "51"
600
+ },
601
+ "v2" : {
602
+ "nodetype" : "namednumber",
603
+ "number" : "52"
604
+ },
605
+ "v3" : {
606
+ "nodetype" : "namednumber",
607
+ "number" : "53"
608
+ },
609
+ "v4" : {
610
+ "nodetype" : "namednumber",
611
+ "number" : "54"
612
+ },
613
+ "v5" : {
614
+ "nodetype" : "namednumber",
615
+ "number" : "55"
616
+ },
617
+ "description" :
618
+ """Uniquely identifies an attribute which may be tested in
619
+ a rule. These include attributes whose values come directly
620
+ from (or are computed from) the flow's packets, and the five
621
+ 'meter' variables used to hold an Attribute Number.""",
622
+ },
623
+ "ActionNumber" : {
624
+ "basetype" : "Enumeration",
625
+ "status" : "current",
626
+ "ignore" : {
627
+ "nodetype" : "namednumber",
628
+ "number" : "1"
629
+ },
630
+ "noMatch" : {
631
+ "nodetype" : "namednumber",
632
+ "number" : "2"
633
+ },
634
+ "count" : {
635
+ "nodetype" : "namednumber",
636
+ "number" : "3"
637
+ },
638
+ "countPkt" : {
639
+ "nodetype" : "namednumber",
640
+ "number" : "4"
641
+ },
642
+ "return" : {
643
+ "nodetype" : "namednumber",
644
+ "number" : "5"
645
+ },
646
+ "gosub" : {
647
+ "nodetype" : "namednumber",
648
+ "number" : "6"
649
+ },
650
+ "gosubAct" : {
651
+ "nodetype" : "namednumber",
652
+ "number" : "7"
653
+ },
654
+ "assign" : {
655
+ "nodetype" : "namednumber",
656
+ "number" : "8"
657
+ },
658
+ "assignAct" : {
659
+ "nodetype" : "namednumber",
660
+ "number" : "9"
661
+ },
662
+ "goto" : {
663
+ "nodetype" : "namednumber",
664
+ "number" : "10"
665
+ },
666
+ "gotoAct" : {
667
+ "nodetype" : "namednumber",
668
+ "number" : "11"
669
+ },
670
+ "pushRuleTo" : {
671
+ "nodetype" : "namednumber",
672
+ "number" : "12"
673
+ },
674
+ "pushRuleToAct" : {
675
+ "nodetype" : "namednumber",
676
+ "number" : "13"
677
+ },
678
+ "pushPktTo" : {
679
+ "nodetype" : "namednumber",
680
+ "number" : "14"
681
+ },
682
+ "pushPktToAct" : {
683
+ "nodetype" : "namednumber",
684
+ "number" : "15"
685
+ },
686
+ "popTo" : {
687
+ "nodetype" : "namednumber",
688
+ "number" : "16"
689
+ },
690
+ "popToAct" : {
691
+ "nodetype" : "namednumber",
692
+ "number" : "17"
693
+ },
694
+ "description" :
695
+ """Uniquely identifies the action of a rule, i.e. the Pattern
696
+ Matching Engine's opcode number. Details of the opcodes
697
+ are given in the 'Traffic Flow Measurement: Architecture'
698
+ document [RTFM-ARC].""",
699
+ },
700
+ }, # typedefs
701
+
702
+ "nodes" : {
703
+ "flowMIB" : {
704
+ "nodetype" : "node",
705
+ "moduleName" : "FLOW-METER-MIB",
706
+ "oid" : "1.3.6.1.2.1.40",
707
+ "status" : "current",
708
+ }, # node
709
+ "flowControl" : {
710
+ "nodetype" : "node",
711
+ "moduleName" : "FLOW-METER-MIB",
712
+ "oid" : "1.3.6.1.2.1.40.1",
713
+ }, # node
714
+ "flowRuleSetInfoTable" : {
715
+ "nodetype" : "table",
716
+ "moduleName" : "FLOW-METER-MIB",
717
+ "oid" : "1.3.6.1.2.1.40.1.1",
718
+ "status" : "current",
719
+ "description" :
720
+ """An array of information about the RuleSets held in the
721
+ meter.
722
+
723
+ Any manager may configure a new RuleSet for the meter by
724
+ creating a row in this table with status active(1), and setting
725
+ values for all the objects in its rules. At this stage the new
726
+ RuleSet is available but not 'running', i.e. it is not being
727
+ used by the meter to produce entries in the flow table.
728
+
729
+ To actually 'run' a RuleSet a manager must create a row in
730
+ the flowManagerInfoTable, set it's flowManagerStatus to
731
+ active(1), and set either its CurrentRuleSet or StandbyRuleSet
732
+ to point to the RuleSet to be run.
733
+
734
+ Once a RuleSet is running a manager may not change any of the
735
+ objects within the RuleSet itself. Any attempt to do so should
736
+ result in a notWritable(17) SNMP error-status for such objects.
737
+
738
+ A manager may stop a RuleSet running by removing all
739
+ references to it in the flowManagerInfoTable (i.e. by setting
740
+ CurrentRuleSet and StandbyRuleSet values to 0). This provides
741
+ a way to stop RuleSets left running if a manager fails.
742
+ For example, when a manager is started, it could search the
743
+ meter's flowManager table and stop all RuleSets having a
744
+ specified value of flowRuleInfoOwner.
745
+
746
+ To prevent a manager from interfering with variables belonging
747
+ to another manager, the meter should use MIB views [RFC2575] so
748
+ as to limit each manager's access to the meter's variables,
749
+ effectively dividing the single meter into several virtual
750
+ meters, one for each independent manager.""",
751
+ }, # table
752
+ "flowRuleSetInfoEntry" : {
753
+ "nodetype" : "row",
754
+ "moduleName" : "FLOW-METER-MIB",
755
+ "oid" : "1.3.6.1.2.1.40.1.1.1",
756
+ "create" : "true",
757
+ "status" : "current",
758
+ "linkage" : [
759
+ "flowRuleInfoIndex",
760
+ ],
761
+ "description" :
762
+ """Information about a particular RuleSet.""",
763
+ }, # row
764
+ "flowRuleInfoIndex" : {
765
+ "nodetype" : "column",
766
+ "moduleName" : "FLOW-METER-MIB",
767
+ "oid" : "1.3.6.1.2.1.40.1.1.1.1",
768
+ "status" : "current",
769
+ "syntax" : {
770
+ "type" : {
771
+ "basetype" : "Integer32",
772
+ "ranges" : [
773
+ {
774
+ "min" : "1",
775
+ "max" : "2147483647"
776
+ },
777
+ ],
778
+ "range" : {
779
+ "min" : "1",
780
+ "max" : "2147483647"
781
+ },
782
+ },
783
+ },
784
+ "access" : "noaccess",
785
+ "description" :
786
+ """An index which selects an entry in the flowRuleSetInfoTable.
787
+ Each such entry contains control information for a particular
788
+ RuleSet which the meter may run.""",
789
+ }, # column
790
+ "flowRuleInfoSize" : {
791
+ "nodetype" : "column",
792
+ "moduleName" : "FLOW-METER-MIB",
793
+ "oid" : "1.3.6.1.2.1.40.1.1.1.2",
794
+ "status" : "current",
795
+ "syntax" : {
796
+ "type" : { "module" :"", "name" : "Integer32"},
797
+ },
798
+ "access" : "readwrite",
799
+ "description" :
800
+ """Number of rules in this RuleSet. Setting this variable will
801
+ cause the meter to allocate space for these rules.""",
802
+ }, # column
803
+ "flowRuleInfoOwner" : {
804
+ "nodetype" : "column",
805
+ "moduleName" : "FLOW-METER-MIB",
806
+ "oid" : "1.3.6.1.2.1.40.1.1.1.3",
807
+ "status" : "current",
808
+ "syntax" : {
809
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "UTF8OwnerString"},
810
+ },
811
+ "access" : "readwrite",
812
+ "description" :
813
+ """Identifies the manager which 'owns' this RuleSet. A manager
814
+ must set this variable when creating a row in this table.""",
815
+ }, # column
816
+ "flowRuleInfoTimeStamp" : {
817
+ "nodetype" : "column",
818
+ "moduleName" : "FLOW-METER-MIB",
819
+ "oid" : "1.3.6.1.2.1.40.1.1.1.4",
820
+ "status" : "current",
821
+ "syntax" : {
822
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
823
+ },
824
+ "access" : "readonly",
825
+ "description" :
826
+ """Time this row's associated RuleSet was last changed.""",
827
+ }, # column
828
+ "flowRuleInfoStatus" : {
829
+ "nodetype" : "column",
830
+ "moduleName" : "FLOW-METER-MIB",
831
+ "oid" : "1.3.6.1.2.1.40.1.1.1.5",
832
+ "status" : "current",
833
+ "syntax" : {
834
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
835
+ },
836
+ "access" : "readwrite",
837
+ "description" :
838
+ """The status of this flowRuleSetInfoEntry. If this value is
839
+ not active(1) the meter must not attempt to use the row's
840
+ associated RuleSet. Once its value has been set to active(1)
841
+ a manager may not change any of the other variables in the
842
+ row, nor the contents of the associated RuleSet. Any attempt
843
+ to do so should result in a notWritable(17) SNMP error-status
844
+ for such variables or objects.
845
+
846
+ To download a RuleSet, a manger could:
847
+ - Locate an open slot in the RuleSetInfoTable.
848
+ - Create a RuleSetInfoEntry by setting the status for this
849
+ open slot to createAndWait(5).
850
+ - Set flowRuleInfoSize and flowRuleInfoName as required.
851
+ - Download the rules into the row's rule table.
852
+ - Set flowRuleInfoStatus to active(1).
853
+
854
+ The RuleSet would then be ready to run. The manager is not
855
+ allowed to change the value of flowRuleInfoStatus from
856
+ active(1) if the associated RuleSet is being referenced by any
857
+ of the entries in the flowManagerInfoTable.
858
+
859
+ Setting RuleInfoStatus to destroy(6) destroys the associated
860
+ RuleSet together with any flow data collected by it.""",
861
+ }, # column
862
+ "flowRuleInfoName" : {
863
+ "nodetype" : "column",
864
+ "moduleName" : "FLOW-METER-MIB",
865
+ "oid" : "1.3.6.1.2.1.40.1.1.1.6",
866
+ "status" : "current",
867
+ "syntax" : {
868
+ "type" : {
869
+ "basetype" : "OctetString",
870
+ "ranges" : [
871
+ {
872
+ "min" : "0",
873
+ "max" : "127"
874
+ },
875
+ ],
876
+ "range" : {
877
+ "min" : "0",
878
+ "max" : "127"
879
+ },
880
+ },
881
+ },
882
+ "access" : "readwrite",
883
+ "description" :
884
+ """An alphanumeric identifier used by managers and readers to
885
+ identify a RuleSet. For example, a manager wishing to run a
886
+ RuleSet named WWW-FLOWS could search the flowRuleSetInfoTable
887
+ to see whether the WWW-FLOWS RuleSet is already available on
888
+ the meter.
889
+
890
+ Note that references to RuleSets in the flowManagerInfoTable
891
+ use indexes for their flowRuleSetInfoTable entries. These may
892
+ be different each time the RuleSet is loaded into a meter.""",
893
+ }, # column
894
+ "flowRuleInfoRulesReady" : {
895
+ "nodetype" : "column",
896
+ "moduleName" : "FLOW-METER-MIB",
897
+ "oid" : "1.3.6.1.2.1.40.1.1.1.7",
898
+ "status" : "deprecated",
899
+ "syntax" : {
900
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
901
+ },
902
+ "access" : "readwrite",
903
+ "description" :
904
+ """Indicates whether the rules for this row's associated RuleSet
905
+ are ready for use. The meter will refuse to 'run' the RuleSet
906
+ unless this variable has been set to true(1).
907
+ While RulesReady is false(2), the manager may modify the
908
+ RuleSet, for example by downloading rules into it.""",
909
+ }, # column
910
+ "flowRuleInfoFlowRecords" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "FLOW-METER-MIB",
913
+ "oid" : "1.3.6.1.2.1.40.1.1.1.8",
914
+ "status" : "current",
915
+ "syntax" : {
916
+ "type" : { "module" :"", "name" : "Integer32"},
917
+ },
918
+ "access" : "readonly",
919
+ "description" :
920
+ """The number of entries in the flow table for this RuleSet.
921
+ These may be current (waiting for collection by one or more
922
+ meter readers) or idle (waiting for the meter to recover
923
+ their memory).""",
924
+ }, # column
925
+ "flowInterfaceTable" : {
926
+ "nodetype" : "table",
927
+ "moduleName" : "FLOW-METER-MIB",
928
+ "oid" : "1.3.6.1.2.1.40.1.2",
929
+ "status" : "current",
930
+ "description" :
931
+ """An array of information specific to each meter interface.""",
932
+ }, # table
933
+ "flowInterfaceEntry" : {
934
+ "nodetype" : "row",
935
+ "moduleName" : "FLOW-METER-MIB",
936
+ "oid" : "1.3.6.1.2.1.40.1.2.1",
937
+ "status" : "current",
938
+ "linkage" : [
939
+ "ifIndex",
940
+ ],
941
+ "description" :
942
+ """Information about a particular interface.""",
943
+ }, # row
944
+ "flowInterfaceSampleRate" : {
945
+ "nodetype" : "column",
946
+ "moduleName" : "FLOW-METER-MIB",
947
+ "oid" : "1.3.6.1.2.1.40.1.2.1.1",
948
+ "status" : "current",
949
+ "syntax" : {
950
+ "type" : { "module" :"", "name" : "Integer32"},
951
+ },
952
+ "access" : "readwrite",
953
+ "default" : "1",
954
+ "description" :
955
+ """The parameter N for statistical counting on this interface.
956
+ Set to N to count 1/Nth of the packets appearing at this
957
+ interface. A sampling rate of 1 counts all packets.
958
+ A sampling rate of 0 results in the interface being ignored
959
+ by the meter.
960
+
961
+ A meter should choose its own algorithm to introduce variance
962
+ into the sampling so that exactly every Nth packet is counted.
963
+ The IPPM Working Group's RFC 'Framework for IP Performance
964
+ Metrics' [IPPM-FRM] explains why this should be done, and sets
965
+ out an algorithm for doing it.""",
966
+ }, # column
967
+ "flowInterfaceLostPackets" : {
968
+ "nodetype" : "column",
969
+ "moduleName" : "FLOW-METER-MIB",
970
+ "oid" : "1.3.6.1.2.1.40.1.2.1.2",
971
+ "status" : "current",
972
+ "syntax" : {
973
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
974
+ },
975
+ "access" : "readonly",
976
+ "description" :
977
+ """The number of packets the meter has lost for this interface.
978
+ Such losses may occur because the meter has been unable to
979
+ keep up with the traffic volume.""",
980
+ }, # column
981
+ "flowReaderInfoTable" : {
982
+ "nodetype" : "table",
983
+ "moduleName" : "FLOW-METER-MIB",
984
+ "oid" : "1.3.6.1.2.1.40.1.3",
985
+ "status" : "current",
986
+ "description" :
987
+ """An array of information about meter readers which have
988
+ registered their intent to collect flow data from this meter.""",
989
+ }, # table
990
+ "flowReaderInfoEntry" : {
991
+ "nodetype" : "row",
992
+ "moduleName" : "FLOW-METER-MIB",
993
+ "oid" : "1.3.6.1.2.1.40.1.3.1",
994
+ "create" : "true",
995
+ "status" : "current",
996
+ "linkage" : [
997
+ "flowReaderIndex",
998
+ ],
999
+ "description" :
1000
+ """Information about a particular meter reader.""",
1001
+ }, # row
1002
+ "flowReaderIndex" : {
1003
+ "nodetype" : "column",
1004
+ "moduleName" : "FLOW-METER-MIB",
1005
+ "oid" : "1.3.6.1.2.1.40.1.3.1.1",
1006
+ "status" : "current",
1007
+ "syntax" : {
1008
+ "type" : {
1009
+ "basetype" : "Integer32",
1010
+ "ranges" : [
1011
+ {
1012
+ "min" : "1",
1013
+ "max" : "2147483647"
1014
+ },
1015
+ ],
1016
+ "range" : {
1017
+ "min" : "1",
1018
+ "max" : "2147483647"
1019
+ },
1020
+ },
1021
+ },
1022
+ "access" : "noaccess",
1023
+ "description" :
1024
+ """An index which selects an entry in the flowReaderInfoTable.""",
1025
+ }, # column
1026
+ "flowReaderTimeout" : {
1027
+ "nodetype" : "column",
1028
+ "moduleName" : "FLOW-METER-MIB",
1029
+ "oid" : "1.3.6.1.2.1.40.1.3.1.2",
1030
+ "status" : "current",
1031
+ "syntax" : {
1032
+ "type" : { "module" :"", "name" : "Integer32"},
1033
+ },
1034
+ "access" : "readwrite",
1035
+ "description" :
1036
+ """Specifies the maximum time (in seconds) between flow data
1037
+ collections for this meter reader. If this time elapses
1038
+ without a collection, the meter should assume that this meter
1039
+ reader has stopped collecting, and delete this row from the
1040
+ table. A value of zero indicates that this row should not be
1041
+ timed out.""",
1042
+ }, # column
1043
+ "flowReaderOwner" : {
1044
+ "nodetype" : "column",
1045
+ "moduleName" : "FLOW-METER-MIB",
1046
+ "oid" : "1.3.6.1.2.1.40.1.3.1.3",
1047
+ "status" : "current",
1048
+ "syntax" : {
1049
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "UTF8OwnerString"},
1050
+ },
1051
+ "access" : "readwrite",
1052
+ "description" :
1053
+ """Identifies the meter reader which created this row.""",
1054
+ }, # column
1055
+ "flowReaderLastTime" : {
1056
+ "nodetype" : "column",
1057
+ "moduleName" : "FLOW-METER-MIB",
1058
+ "oid" : "1.3.6.1.2.1.40.1.3.1.4",
1059
+ "status" : "current",
1060
+ "syntax" : {
1061
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1062
+ },
1063
+ "access" : "readwrite",
1064
+ "description" :
1065
+ """Time this meter reader began its most recent data collection.
1066
+
1067
+ This variable should be written by a meter reader as its first
1068
+ step in reading flow data. The meter will set this LastTime
1069
+ value to its current Uptime, and set its PreviousTime value
1070
+ (below) to the old LastTime. This allows the meter to
1071
+ recover flows which have been inactive since PreviousTime,
1072
+ for these have been collected at least once.
1073
+
1074
+ If the meter reader fails to write flowLastReadTime, collection
1075
+ may still proceed but the meter may not be able to recover
1076
+ inactive flows until the flowReaderTimeout has been reached
1077
+ for this entry.""",
1078
+ }, # column
1079
+ "flowReaderPreviousTime" : {
1080
+ "nodetype" : "column",
1081
+ "moduleName" : "FLOW-METER-MIB",
1082
+ "oid" : "1.3.6.1.2.1.40.1.3.1.5",
1083
+ "status" : "current",
1084
+ "syntax" : {
1085
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1086
+ },
1087
+ "access" : "readonly",
1088
+ "description" :
1089
+ """Time this meter reader began the collection before last.""",
1090
+ }, # column
1091
+ "flowReaderStatus" : {
1092
+ "nodetype" : "column",
1093
+ "moduleName" : "FLOW-METER-MIB",
1094
+ "oid" : "1.3.6.1.2.1.40.1.3.1.6",
1095
+ "status" : "current",
1096
+ "syntax" : {
1097
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1098
+ },
1099
+ "access" : "readwrite",
1100
+ "description" :
1101
+ """The status of this FlowReaderInfoEntry. A value of active(1)
1102
+ implies that the associated reader should be collecting data
1103
+ from the meter. Once this variable has been set to active(1)
1104
+ a manager may only change this row's flowReaderLastTime and
1105
+ flowReaderTimeout variables.""",
1106
+ }, # column
1107
+ "flowReaderRuleSet" : {
1108
+ "nodetype" : "column",
1109
+ "moduleName" : "FLOW-METER-MIB",
1110
+ "oid" : "1.3.6.1.2.1.40.1.3.1.7",
1111
+ "status" : "current",
1112
+ "syntax" : {
1113
+ "type" : {
1114
+ "basetype" : "Integer32",
1115
+ "ranges" : [
1116
+ {
1117
+ "min" : "1",
1118
+ "max" : "2147483647"
1119
+ },
1120
+ ],
1121
+ "range" : {
1122
+ "min" : "1",
1123
+ "max" : "2147483647"
1124
+ },
1125
+ },
1126
+ },
1127
+ "access" : "readwrite",
1128
+ "description" :
1129
+ """An index to the array of RuleSets. Specifies a set of rules
1130
+ of interest to this meter reader. The reader will attempt to
1131
+ collect any data generated by the meter for this RuleSet, and
1132
+ the meter will not recover the memory of any of the RuleSet's
1133
+ flows until this collection has taken place. Note that a
1134
+ reader may have entries in this table for several RuleSets.""",
1135
+ }, # column
1136
+ "flowManagerInfoTable" : {
1137
+ "nodetype" : "table",
1138
+ "moduleName" : "FLOW-METER-MIB",
1139
+ "oid" : "1.3.6.1.2.1.40.1.4",
1140
+ "status" : "current",
1141
+ "description" :
1142
+ """An array of information about managers which have
1143
+ registered their intent to run RuleSets on this meter.""",
1144
+ }, # table
1145
+ "flowManagerInfoEntry" : {
1146
+ "nodetype" : "row",
1147
+ "moduleName" : "FLOW-METER-MIB",
1148
+ "oid" : "1.3.6.1.2.1.40.1.4.1",
1149
+ "create" : "true",
1150
+ "status" : "current",
1151
+ "linkage" : [
1152
+ "flowManagerIndex",
1153
+ ],
1154
+ "description" :
1155
+ """Information about a particular meter 'task.' By creating
1156
+ an entry in this table and activating it, a manager requests
1157
+ that the meter 'run' the indicated RuleSet.
1158
+
1159
+ The entry also specifies a HighWaterMark and a StandbyRuleSet.
1160
+ If the meter's flow table usage exceeds this task's
1161
+ HighWaterMark the meter will stop running the task's
1162
+ CurrentRuleSet and switch to its StandbyRuleSet.
1163
+
1164
+ If the value of the task's StandbyRuleSet is 0 when its
1165
+ HighWaterMark is exceeded, the meter simply stops running the
1166
+ task's CurrentRuleSet. By careful selection of HighWaterMarks
1167
+ for the various tasks a manager can ensure that the most
1168
+ critical RuleSets are the last to stop running as the number
1169
+ of flows increases.
1170
+
1171
+ When a manager has determined that the demand for flow table
1172
+ space has abated, it may cause the task to switch back to its
1173
+ CurrentRuleSet by setting its flowManagerRunningStandby
1174
+ variable to false(2).""",
1175
+ }, # row
1176
+ "flowManagerIndex" : {
1177
+ "nodetype" : "column",
1178
+ "moduleName" : "FLOW-METER-MIB",
1179
+ "oid" : "1.3.6.1.2.1.40.1.4.1.1",
1180
+ "status" : "current",
1181
+ "syntax" : {
1182
+ "type" : {
1183
+ "basetype" : "Integer32",
1184
+ "ranges" : [
1185
+ {
1186
+ "min" : "1",
1187
+ "max" : "2147483647"
1188
+ },
1189
+ ],
1190
+ "range" : {
1191
+ "min" : "1",
1192
+ "max" : "2147483647"
1193
+ },
1194
+ },
1195
+ },
1196
+ "access" : "noaccess",
1197
+ "description" :
1198
+ """An index which selects an entry in the flowManagerInfoTable.""",
1199
+ }, # column
1200
+ "flowManagerCurrentRuleSet" : {
1201
+ "nodetype" : "column",
1202
+ "moduleName" : "FLOW-METER-MIB",
1203
+ "oid" : "1.3.6.1.2.1.40.1.4.1.2",
1204
+ "status" : "current",
1205
+ "syntax" : {
1206
+ "type" : { "module" :"", "name" : "Integer32"},
1207
+ },
1208
+ "access" : "readwrite",
1209
+ "description" :
1210
+ """Index to the array of RuleSets. Specifies which set of
1211
+ rules is the 'current' one for this task. The meter will
1212
+ be 'running' the current RuleSet if this row's
1213
+ flowManagerRunningStandby value is false(2).
1214
+
1215
+ When the manager sets this variable the meter will stop using
1216
+ the task's old current RuleSet and start using the new one.
1217
+ Specifying RuleSet 0 (the empty set) stops flow measurement
1218
+ for this task.""",
1219
+ }, # column
1220
+ "flowManagerStandbyRuleSet" : {
1221
+ "nodetype" : "column",
1222
+ "moduleName" : "FLOW-METER-MIB",
1223
+ "oid" : "1.3.6.1.2.1.40.1.4.1.3",
1224
+ "status" : "current",
1225
+ "syntax" : {
1226
+ "type" : { "module" :"", "name" : "Integer32"},
1227
+ },
1228
+ "access" : "readwrite",
1229
+ "default" : "0",
1230
+ "description" :
1231
+ """Index to the array of RuleSets. After reaching HighWaterMark
1232
+ (see below) the manager will switch to using the task's
1233
+ StandbyRuleSet in place of its CurrentRuleSet. For this to be
1234
+ effective the designated StandbyRuleSet should have a coarser
1235
+ reporting granularity then the CurrentRuleSet. The manager may
1236
+ also need to decrease the meter reading interval so that the
1237
+ meter can recover flows measured by this task's CurrentRuleSet.""",
1238
+ }, # column
1239
+ "flowManagerHighWaterMark" : {
1240
+ "nodetype" : "column",
1241
+ "moduleName" : "FLOW-METER-MIB",
1242
+ "oid" : "1.3.6.1.2.1.40.1.4.1.4",
1243
+ "status" : "current",
1244
+ "syntax" : {
1245
+ "type" : {
1246
+ "basetype" : "Integer32",
1247
+ "ranges" : [
1248
+ {
1249
+ "min" : "0",
1250
+ "max" : "100"
1251
+ },
1252
+ ],
1253
+ "range" : {
1254
+ "min" : "0",
1255
+ "max" : "100"
1256
+ },
1257
+ },
1258
+ },
1259
+ "access" : "readwrite",
1260
+ "description" :
1261
+ """A value expressed as a percentage, interpreted by the meter
1262
+ as an indication of how full the flow table should be before
1263
+ it should switch to the standby RuleSet (if one has been
1264
+ specified) for this task. Values of 0% or 100% disable the
1265
+ checking represented by this variable.""",
1266
+ }, # column
1267
+ "flowManagerCounterWrap" : {
1268
+ "nodetype" : "column",
1269
+ "moduleName" : "FLOW-METER-MIB",
1270
+ "oid" : "1.3.6.1.2.1.40.1.4.1.5",
1271
+ "status" : "deprecated",
1272
+ "syntax" : {
1273
+ "type" : {
1274
+ "basetype" : "Enumeration",
1275
+ "wrap" : {
1276
+ "nodetype" : "namednumber",
1277
+ "number" : "1"
1278
+ },
1279
+ "scale" : {
1280
+ "nodetype" : "namednumber",
1281
+ "number" : "2"
1282
+ },
1283
+ },
1284
+ },
1285
+ "access" : "readwrite",
1286
+ "default" : "wrap",
1287
+ "description" :
1288
+ """Specifies whether PDU and octet counters should wrap when
1289
+ they reach the top of their range (normal behaviour for
1290
+ Counter64 objects), or whether their scale factors should
1291
+ be used instead. The combination of counter and scale
1292
+ factor allows counts to be returned as non-negative binary
1293
+ floating point numbers, with 64-bit mantissas and 8-bit
1294
+ exponents.""",
1295
+ }, # column
1296
+ "flowManagerOwner" : {
1297
+ "nodetype" : "column",
1298
+ "moduleName" : "FLOW-METER-MIB",
1299
+ "oid" : "1.3.6.1.2.1.40.1.4.1.6",
1300
+ "status" : "current",
1301
+ "syntax" : {
1302
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "UTF8OwnerString"},
1303
+ },
1304
+ "access" : "readwrite",
1305
+ "description" :
1306
+ """Identifies the manager which created this row.""",
1307
+ }, # column
1308
+ "flowManagerTimeStamp" : {
1309
+ "nodetype" : "column",
1310
+ "moduleName" : "FLOW-METER-MIB",
1311
+ "oid" : "1.3.6.1.2.1.40.1.4.1.7",
1312
+ "status" : "current",
1313
+ "syntax" : {
1314
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1315
+ },
1316
+ "access" : "readonly",
1317
+ "description" :
1318
+ """Time this row was last changed by its manager.""",
1319
+ }, # column
1320
+ "flowManagerStatus" : {
1321
+ "nodetype" : "column",
1322
+ "moduleName" : "FLOW-METER-MIB",
1323
+ "oid" : "1.3.6.1.2.1.40.1.4.1.8",
1324
+ "status" : "current",
1325
+ "syntax" : {
1326
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1327
+ },
1328
+ "access" : "readwrite",
1329
+ "description" :
1330
+ """The status of this row in the flowManagerInfoTable. A value
1331
+ of active(1) implies that this task may be activated, by
1332
+ setting its CurrentRuleSet and StandbyRuleSet variables.
1333
+ Its HighWaterMark and RunningStandby variables may also be
1334
+ changed.""",
1335
+ }, # column
1336
+ "flowManagerRunningStandby" : {
1337
+ "nodetype" : "column",
1338
+ "moduleName" : "FLOW-METER-MIB",
1339
+ "oid" : "1.3.6.1.2.1.40.1.4.1.9",
1340
+ "status" : "current",
1341
+ "syntax" : {
1342
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1343
+ },
1344
+ "access" : "readwrite",
1345
+ "default" : "false",
1346
+ "description" :
1347
+ """Set to true(1) by the meter to indicate that it has switched
1348
+ to runnning this task's StandbyRuleSet in place of its
1349
+ CurrentRuleSet. To switch back to the CurrentRuleSet, the
1350
+ manager may simply set this variable to false(2).""",
1351
+ }, # column
1352
+ "flowFloodMark" : {
1353
+ "nodetype" : "scalar",
1354
+ "moduleName" : "FLOW-METER-MIB",
1355
+ "oid" : "1.3.6.1.2.1.40.1.5",
1356
+ "status" : "current",
1357
+ "syntax" : {
1358
+ "type" : {
1359
+ "basetype" : "Integer32",
1360
+ "ranges" : [
1361
+ {
1362
+ "min" : "0",
1363
+ "max" : "100"
1364
+ },
1365
+ ],
1366
+ "range" : {
1367
+ "min" : "0",
1368
+ "max" : "100"
1369
+ },
1370
+ },
1371
+ },
1372
+ "access" : "readwrite",
1373
+ "default" : "95",
1374
+ "description" :
1375
+ """A value expressed as a percentage, interpreted by the meter
1376
+ as an indication of how full the flow table should be before
1377
+ it should take some action to avoid running out of resources
1378
+ to handle new flows, as discussed in section 4.6 (Handling
1379
+ Increasing Traffic Levels) of the RTFM Architecture RFC
1380
+ [RTFM-ARC].
1381
+
1382
+ Values of 0% or 100% disable the checking represented by
1383
+ this variable.""",
1384
+ }, # scalar
1385
+ "flowInactivityTimeout" : {
1386
+ "nodetype" : "scalar",
1387
+ "moduleName" : "FLOW-METER-MIB",
1388
+ "oid" : "1.3.6.1.2.1.40.1.6",
1389
+ "status" : "current",
1390
+ "syntax" : {
1391
+ "type" : { "module" :"", "name" : "Integer32"},
1392
+ },
1393
+ "access" : "readwrite",
1394
+ "default" : "600",
1395
+ "description" :
1396
+ """The time in seconds since the last packet seen, after which
1397
+ a flow becomes 'idle.' Note that although a flow may be
1398
+ idle, it will not be discarded (and its memory recovered)
1399
+ until after its data has been collected by all the meter
1400
+ readers registered for its RuleSet.""",
1401
+ }, # scalar
1402
+ "flowActiveFlows" : {
1403
+ "nodetype" : "scalar",
1404
+ "moduleName" : "FLOW-METER-MIB",
1405
+ "oid" : "1.3.6.1.2.1.40.1.7",
1406
+ "status" : "current",
1407
+ "syntax" : {
1408
+ "type" : { "module" :"", "name" : "Integer32"},
1409
+ },
1410
+ "access" : "readonly",
1411
+ "description" :
1412
+ """The number of flows which are currently in use.""",
1413
+ }, # scalar
1414
+ "flowMaxFlows" : {
1415
+ "nodetype" : "scalar",
1416
+ "moduleName" : "FLOW-METER-MIB",
1417
+ "oid" : "1.3.6.1.2.1.40.1.8",
1418
+ "status" : "current",
1419
+ "syntax" : {
1420
+ "type" : { "module" :"", "name" : "Integer32"},
1421
+ },
1422
+ "access" : "readonly",
1423
+ "description" :
1424
+ """The maximum number of flows allowed in the meter's
1425
+ flow table. At present this is determined when the meter
1426
+ is first started up.""",
1427
+ }, # scalar
1428
+ "flowFloodMode" : {
1429
+ "nodetype" : "scalar",
1430
+ "moduleName" : "FLOW-METER-MIB",
1431
+ "oid" : "1.3.6.1.2.1.40.1.9",
1432
+ "status" : "current",
1433
+ "syntax" : {
1434
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1435
+ },
1436
+ "access" : "readwrite",
1437
+ "description" :
1438
+ """Indicates that the meter has passed its FloodMark and is
1439
+ not running in its normal mode.
1440
+
1441
+ When the manager notices this it should take action to remedy
1442
+ the problem which caused the flooding. It should then monitor
1443
+ flowActiveFlows so as to determine when the flood has receded.
1444
+ At that point the manager may set flowFloodMode to false(2) to
1445
+ resume normal operation.""",
1446
+ }, # scalar
1447
+ "flowData" : {
1448
+ "nodetype" : "node",
1449
+ "moduleName" : "FLOW-METER-MIB",
1450
+ "oid" : "1.3.6.1.2.1.40.2",
1451
+ }, # node
1452
+ "flowDataTable" : {
1453
+ "nodetype" : "table",
1454
+ "moduleName" : "FLOW-METER-MIB",
1455
+ "oid" : "1.3.6.1.2.1.40.2.1",
1456
+ "status" : "current",
1457
+ "description" :
1458
+ """The list of all flows being measured.""",
1459
+ }, # table
1460
+ "flowDataEntry" : {
1461
+ "nodetype" : "row",
1462
+ "moduleName" : "FLOW-METER-MIB",
1463
+ "oid" : "1.3.6.1.2.1.40.2.1.1",
1464
+ "status" : "current",
1465
+ "linkage" : [
1466
+ "flowDataRuleSet",
1467
+ "flowDataTimeMark",
1468
+ "flowDataIndex",
1469
+ ],
1470
+ "description" :
1471
+ """The flow data record for a particular flow.""",
1472
+ }, # row
1473
+ "flowDataIndex" : {
1474
+ "nodetype" : "column",
1475
+ "moduleName" : "FLOW-METER-MIB",
1476
+ "oid" : "1.3.6.1.2.1.40.2.1.1.1",
1477
+ "status" : "current",
1478
+ "syntax" : {
1479
+ "type" : {
1480
+ "basetype" : "Integer32",
1481
+ "ranges" : [
1482
+ {
1483
+ "min" : "1",
1484
+ "max" : "2147483647"
1485
+ },
1486
+ ],
1487
+ "range" : {
1488
+ "min" : "1",
1489
+ "max" : "2147483647"
1490
+ },
1491
+ },
1492
+ },
1493
+ "access" : "noaccess",
1494
+ "description" :
1495
+ """Value of this flow data record's index within the meter's
1496
+ flow table.""",
1497
+ }, # column
1498
+ "flowDataTimeMark" : {
1499
+ "nodetype" : "column",
1500
+ "moduleName" : "FLOW-METER-MIB",
1501
+ "oid" : "1.3.6.1.2.1.40.2.1.1.2",
1502
+ "status" : "current",
1503
+ "syntax" : {
1504
+ "type" : { "module" :"RMON2-MIB", "name" : "TimeFilter"},
1505
+ },
1506
+ "access" : "noaccess",
1507
+ "description" :
1508
+ """A TimeFilter for this entry. Allows GetNext and GetBulk
1509
+ to find flow table rows which have changed since a specified
1510
+ value of the meter's Uptime.""",
1511
+ }, # column
1512
+ "flowDataStatus" : {
1513
+ "nodetype" : "column",
1514
+ "moduleName" : "FLOW-METER-MIB",
1515
+ "oid" : "1.3.6.1.2.1.40.2.1.1.3",
1516
+ "status" : "deprecated",
1517
+ "syntax" : {
1518
+ "type" : {
1519
+ "basetype" : "Enumeration",
1520
+ "inactive" : {
1521
+ "nodetype" : "namednumber",
1522
+ "number" : "1"
1523
+ },
1524
+ "current" : {
1525
+ "nodetype" : "namednumber",
1526
+ "number" : "2"
1527
+ },
1528
+ },
1529
+ },
1530
+ "access" : "readonly",
1531
+ "description" :
1532
+ """Status of this flow data record.""",
1533
+ }, # column
1534
+ "flowDataSourceInterface" : {
1535
+ "nodetype" : "column",
1536
+ "moduleName" : "FLOW-METER-MIB",
1537
+ "oid" : "1.3.6.1.2.1.40.2.1.1.4",
1538
+ "status" : "current",
1539
+ "syntax" : {
1540
+ "type" : { "module" :"", "name" : "Integer32"},
1541
+ },
1542
+ "access" : "readonly",
1543
+ "description" :
1544
+ """Index of the interface associated with the source address
1545
+ for this flow. It's value is one of those contained in the
1546
+ ifIndex field of the meter's interfaces table.""",
1547
+ }, # column
1548
+ "flowDataSourceAdjacentType" : {
1549
+ "nodetype" : "column",
1550
+ "moduleName" : "FLOW-METER-MIB",
1551
+ "oid" : "1.3.6.1.2.1.40.2.1.1.5",
1552
+ "status" : "current",
1553
+ "syntax" : {
1554
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "AdjacentType"},
1555
+ },
1556
+ "access" : "readonly",
1557
+ "description" :
1558
+ """Adjacent address type of the source for this flow.
1559
+
1560
+ If metering is being performed at the network level,
1561
+ AdjacentType will indicate the medium for the interface on
1562
+ which the flow was observed and AdjacentAddress will be the
1563
+ MAC address for that interface. This is the usual case.
1564
+
1565
+ If traffic is being metered inside a tunnel, AdjacentType will
1566
+ be the peer type of the host at the end of the tunnel and
1567
+ AdjacentAddress will be the peer address for that host.""",
1568
+ }, # column
1569
+ "flowDataSourceAdjacentAddress" : {
1570
+ "nodetype" : "column",
1571
+ "moduleName" : "FLOW-METER-MIB",
1572
+ "oid" : "1.3.6.1.2.1.40.2.1.1.6",
1573
+ "status" : "current",
1574
+ "syntax" : {
1575
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "AdjacentAddress"},
1576
+ },
1577
+ "access" : "readonly",
1578
+ "description" :
1579
+ """Address of the adjacent device on the path for the source
1580
+ for this flow.""",
1581
+ }, # column
1582
+ "flowDataSourceAdjacentMask" : {
1583
+ "nodetype" : "column",
1584
+ "moduleName" : "FLOW-METER-MIB",
1585
+ "oid" : "1.3.6.1.2.1.40.2.1.1.7",
1586
+ "status" : "current",
1587
+ "syntax" : {
1588
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "AdjacentAddress"},
1589
+ },
1590
+ "access" : "readonly",
1591
+ "description" :
1592
+ """1-bits in this mask indicate which bits must match when
1593
+ comparing the adjacent source address for this flow.""",
1594
+ }, # column
1595
+ "flowDataSourcePeerType" : {
1596
+ "nodetype" : "column",
1597
+ "moduleName" : "FLOW-METER-MIB",
1598
+ "oid" : "1.3.6.1.2.1.40.2.1.1.8",
1599
+ "status" : "current",
1600
+ "syntax" : {
1601
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "PeerType"},
1602
+ },
1603
+ "access" : "readonly",
1604
+ "description" :
1605
+ """Peer address type of the source for this flow.""",
1606
+ }, # column
1607
+ "flowDataSourcePeerAddress" : {
1608
+ "nodetype" : "column",
1609
+ "moduleName" : "FLOW-METER-MIB",
1610
+ "oid" : "1.3.6.1.2.1.40.2.1.1.9",
1611
+ "status" : "current",
1612
+ "syntax" : {
1613
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "PeerAddress"},
1614
+ },
1615
+ "access" : "readonly",
1616
+ "description" :
1617
+ """Address of the peer device for the source of this flow.""",
1618
+ }, # column
1619
+ "flowDataSourcePeerMask" : {
1620
+ "nodetype" : "column",
1621
+ "moduleName" : "FLOW-METER-MIB",
1622
+ "oid" : "1.3.6.1.2.1.40.2.1.1.10",
1623
+ "status" : "current",
1624
+ "syntax" : {
1625
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "PeerAddress"},
1626
+ },
1627
+ "access" : "readonly",
1628
+ "description" :
1629
+ """1-bits in this mask indicate which bits must match when
1630
+ comparing the source peer address for this flow.""",
1631
+ }, # column
1632
+ "flowDataSourceTransType" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "FLOW-METER-MIB",
1635
+ "oid" : "1.3.6.1.2.1.40.2.1.1.11",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "TransportType"},
1639
+ },
1640
+ "access" : "readonly",
1641
+ "description" :
1642
+ """Transport address type of the source for this flow. The
1643
+ value of this attribute will depend on the peer address type.""",
1644
+ }, # column
1645
+ "flowDataSourceTransAddress" : {
1646
+ "nodetype" : "column",
1647
+ "moduleName" : "FLOW-METER-MIB",
1648
+ "oid" : "1.3.6.1.2.1.40.2.1.1.12",
1649
+ "status" : "current",
1650
+ "syntax" : {
1651
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "TransportAddress"},
1652
+ },
1653
+ "access" : "readonly",
1654
+ "description" :
1655
+ """Transport address for the source of this flow.""",
1656
+ }, # column
1657
+ "flowDataSourceTransMask" : {
1658
+ "nodetype" : "column",
1659
+ "moduleName" : "FLOW-METER-MIB",
1660
+ "oid" : "1.3.6.1.2.1.40.2.1.1.13",
1661
+ "status" : "current",
1662
+ "syntax" : {
1663
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "TransportAddress"},
1664
+ },
1665
+ "access" : "readonly",
1666
+ "description" :
1667
+ """1-bits in this mask indicate which bits must match when
1668
+ comparing the transport source address for this flow.""",
1669
+ }, # column
1670
+ "flowDataDestInterface" : {
1671
+ "nodetype" : "column",
1672
+ "moduleName" : "FLOW-METER-MIB",
1673
+ "oid" : "1.3.6.1.2.1.40.2.1.1.14",
1674
+ "status" : "current",
1675
+ "syntax" : {
1676
+ "type" : { "module" :"", "name" : "Integer32"},
1677
+ },
1678
+ "access" : "readonly",
1679
+ "description" :
1680
+ """Index of the interface associated with the dest address for
1681
+ this flow. This value is one of the values contained in the
1682
+ ifIndex field of the interfaces table.""",
1683
+ }, # column
1684
+ "flowDataDestAdjacentType" : {
1685
+ "nodetype" : "column",
1686
+ "moduleName" : "FLOW-METER-MIB",
1687
+ "oid" : "1.3.6.1.2.1.40.2.1.1.15",
1688
+ "status" : "current",
1689
+ "syntax" : {
1690
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "AdjacentType"},
1691
+ },
1692
+ "access" : "readonly",
1693
+ "description" :
1694
+ """Adjacent address type of the destination for this flow.""",
1695
+ }, # column
1696
+ "flowDataDestAdjacentAddress" : {
1697
+ "nodetype" : "column",
1698
+ "moduleName" : "FLOW-METER-MIB",
1699
+ "oid" : "1.3.6.1.2.1.40.2.1.1.16",
1700
+ "status" : "current",
1701
+ "syntax" : {
1702
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "AdjacentAddress"},
1703
+ },
1704
+ "access" : "readonly",
1705
+ "description" :
1706
+ """Address of the adjacent device on the path for the
1707
+ destination for this flow.""",
1708
+ }, # column
1709
+ "flowDataDestAdjacentMask" : {
1710
+ "nodetype" : "column",
1711
+ "moduleName" : "FLOW-METER-MIB",
1712
+ "oid" : "1.3.6.1.2.1.40.2.1.1.17",
1713
+ "status" : "current",
1714
+ "syntax" : {
1715
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "AdjacentAddress"},
1716
+ },
1717
+ "access" : "readonly",
1718
+ "description" :
1719
+ """1-bits in this mask indicate which bits must match when
1720
+ comparing the adjacent destination address for this flow.""",
1721
+ }, # column
1722
+ "flowDataDestPeerType" : {
1723
+ "nodetype" : "column",
1724
+ "moduleName" : "FLOW-METER-MIB",
1725
+ "oid" : "1.3.6.1.2.1.40.2.1.1.18",
1726
+ "status" : "current",
1727
+ "syntax" : {
1728
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "PeerType"},
1729
+ },
1730
+ "access" : "readonly",
1731
+ "description" :
1732
+ """Peer address type of the destination for this flow.""",
1733
+ }, # column
1734
+ "flowDataDestPeerAddress" : {
1735
+ "nodetype" : "column",
1736
+ "moduleName" : "FLOW-METER-MIB",
1737
+ "oid" : "1.3.6.1.2.1.40.2.1.1.19",
1738
+ "status" : "current",
1739
+ "syntax" : {
1740
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "PeerAddress"},
1741
+ },
1742
+ "access" : "readonly",
1743
+ "description" :
1744
+ """Address of the peer device for the destination of this flow.""",
1745
+ }, # column
1746
+ "flowDataDestPeerMask" : {
1747
+ "nodetype" : "column",
1748
+ "moduleName" : "FLOW-METER-MIB",
1749
+ "oid" : "1.3.6.1.2.1.40.2.1.1.20",
1750
+ "status" : "current",
1751
+ "syntax" : {
1752
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "PeerAddress"},
1753
+ },
1754
+ "access" : "readonly",
1755
+ "description" :
1756
+ """1-bits in this mask indicate which bits must match when
1757
+ comparing the destination peer type for this flow.""",
1758
+ }, # column
1759
+ "flowDataDestTransType" : {
1760
+ "nodetype" : "column",
1761
+ "moduleName" : "FLOW-METER-MIB",
1762
+ "oid" : "1.3.6.1.2.1.40.2.1.1.21",
1763
+ "status" : "current",
1764
+ "syntax" : {
1765
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "TransportType"},
1766
+ },
1767
+ "access" : "readonly",
1768
+ "description" :
1769
+ """Transport address type of the destination for this flow. The
1770
+ value of this attribute will depend on the peer address type.""",
1771
+ }, # column
1772
+ "flowDataDestTransAddress" : {
1773
+ "nodetype" : "column",
1774
+ "moduleName" : "FLOW-METER-MIB",
1775
+ "oid" : "1.3.6.1.2.1.40.2.1.1.22",
1776
+ "status" : "current",
1777
+ "syntax" : {
1778
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "TransportAddress"},
1779
+ },
1780
+ "access" : "readonly",
1781
+ "description" :
1782
+ """Transport address for the destination of this flow.""",
1783
+ }, # column
1784
+ "flowDataDestTransMask" : {
1785
+ "nodetype" : "column",
1786
+ "moduleName" : "FLOW-METER-MIB",
1787
+ "oid" : "1.3.6.1.2.1.40.2.1.1.23",
1788
+ "status" : "current",
1789
+ "syntax" : {
1790
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "TransportAddress"},
1791
+ },
1792
+ "access" : "readonly",
1793
+ "description" :
1794
+ """1-bits in this mask indicate which bits must match when
1795
+ comparing the transport destination address for this flow.""",
1796
+ }, # column
1797
+ "flowDataPDUScale" : {
1798
+ "nodetype" : "column",
1799
+ "moduleName" : "FLOW-METER-MIB",
1800
+ "oid" : "1.3.6.1.2.1.40.2.1.1.24",
1801
+ "status" : "current",
1802
+ "syntax" : {
1803
+ "type" : {
1804
+ "basetype" : "Integer32",
1805
+ "ranges" : [
1806
+ {
1807
+ "min" : "0",
1808
+ "max" : "255"
1809
+ },
1810
+ ],
1811
+ "range" : {
1812
+ "min" : "0",
1813
+ "max" : "255"
1814
+ },
1815
+ },
1816
+ },
1817
+ "access" : "readonly",
1818
+ "description" :
1819
+ """The scale factor applied to this particular flow. Indicates
1820
+ the number of bits the PDU counter values should be moved left
1821
+ to obtain the actual values.""",
1822
+ }, # column
1823
+ "flowDataOctetScale" : {
1824
+ "nodetype" : "column",
1825
+ "moduleName" : "FLOW-METER-MIB",
1826
+ "oid" : "1.3.6.1.2.1.40.2.1.1.25",
1827
+ "status" : "current",
1828
+ "syntax" : {
1829
+ "type" : {
1830
+ "basetype" : "Integer32",
1831
+ "ranges" : [
1832
+ {
1833
+ "min" : "0",
1834
+ "max" : "255"
1835
+ },
1836
+ ],
1837
+ "range" : {
1838
+ "min" : "0",
1839
+ "max" : "255"
1840
+ },
1841
+ },
1842
+ },
1843
+ "access" : "readonly",
1844
+ "description" :
1845
+ """The scale factor applied to this particular flow. Indicates
1846
+ the number of bits the octet counter values should be moved
1847
+ left to obtain the actual values.""",
1848
+ }, # column
1849
+ "flowDataRuleSet" : {
1850
+ "nodetype" : "column",
1851
+ "moduleName" : "FLOW-METER-MIB",
1852
+ "oid" : "1.3.6.1.2.1.40.2.1.1.26",
1853
+ "status" : "current",
1854
+ "syntax" : {
1855
+ "type" : {
1856
+ "basetype" : "Integer32",
1857
+ "ranges" : [
1858
+ {
1859
+ "min" : "1",
1860
+ "max" : "255"
1861
+ },
1862
+ ],
1863
+ "range" : {
1864
+ "min" : "1",
1865
+ "max" : "255"
1866
+ },
1867
+ },
1868
+ },
1869
+ "access" : "noaccess",
1870
+ "description" :
1871
+ """The RuleSet number of the RuleSet which created this flow.
1872
+ Allows a manager to use GetNext or GetBulk requests to find
1873
+ flows belonging to a particular RuleSet.""",
1874
+ }, # column
1875
+ "flowDataToOctets" : {
1876
+ "nodetype" : "column",
1877
+ "moduleName" : "FLOW-METER-MIB",
1878
+ "oid" : "1.3.6.1.2.1.40.2.1.1.27",
1879
+ "status" : "current",
1880
+ "syntax" : {
1881
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1882
+ },
1883
+ "access" : "readonly",
1884
+ "description" :
1885
+ """The count of octets flowing from source to destination
1886
+ for this flow.""",
1887
+ }, # column
1888
+ "flowDataToPDUs" : {
1889
+ "nodetype" : "column",
1890
+ "moduleName" : "FLOW-METER-MIB",
1891
+ "oid" : "1.3.6.1.2.1.40.2.1.1.28",
1892
+ "status" : "current",
1893
+ "syntax" : {
1894
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1895
+ },
1896
+ "access" : "readonly",
1897
+ "description" :
1898
+ """The count of packets flowing from source to destination
1899
+ for this flow.""",
1900
+ }, # column
1901
+ "flowDataFromOctets" : {
1902
+ "nodetype" : "column",
1903
+ "moduleName" : "FLOW-METER-MIB",
1904
+ "oid" : "1.3.6.1.2.1.40.2.1.1.29",
1905
+ "status" : "current",
1906
+ "syntax" : {
1907
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1908
+ },
1909
+ "access" : "readonly",
1910
+ "description" :
1911
+ """The count of octets flowing from destination to source
1912
+ for this flow.""",
1913
+ }, # column
1914
+ "flowDataFromPDUs" : {
1915
+ "nodetype" : "column",
1916
+ "moduleName" : "FLOW-METER-MIB",
1917
+ "oid" : "1.3.6.1.2.1.40.2.1.1.30",
1918
+ "status" : "current",
1919
+ "syntax" : {
1920
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1921
+ },
1922
+ "access" : "readonly",
1923
+ "description" :
1924
+ """The count of packets flowing from destination to source
1925
+ for this flow.""",
1926
+ }, # column
1927
+ "flowDataFirstTime" : {
1928
+ "nodetype" : "column",
1929
+ "moduleName" : "FLOW-METER-MIB",
1930
+ "oid" : "1.3.6.1.2.1.40.2.1.1.31",
1931
+ "status" : "current",
1932
+ "syntax" : {
1933
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1934
+ },
1935
+ "access" : "readonly",
1936
+ "description" :
1937
+ """The time at which this flow was first entered in the table""",
1938
+ }, # column
1939
+ "flowDataLastActiveTime" : {
1940
+ "nodetype" : "column",
1941
+ "moduleName" : "FLOW-METER-MIB",
1942
+ "oid" : "1.3.6.1.2.1.40.2.1.1.32",
1943
+ "status" : "current",
1944
+ "syntax" : {
1945
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1946
+ },
1947
+ "access" : "readonly",
1948
+ "description" :
1949
+ """The last time this flow had activity, i.e. the time of
1950
+ arrival of the most recent PDU belonging to this flow.""",
1951
+ }, # column
1952
+ "flowDataSourceSubscriberID" : {
1953
+ "nodetype" : "column",
1954
+ "moduleName" : "FLOW-METER-MIB",
1955
+ "oid" : "1.3.6.1.2.1.40.2.1.1.33",
1956
+ "status" : "current",
1957
+ "syntax" : {
1958
+ "type" : {
1959
+ "basetype" : "OctetString",
1960
+ "ranges" : [
1961
+ {
1962
+ "min" : "4",
1963
+ "max" : "20"
1964
+ },
1965
+ ],
1966
+ "range" : {
1967
+ "min" : "4",
1968
+ "max" : "20"
1969
+ },
1970
+ },
1971
+ },
1972
+ "access" : "readonly",
1973
+ "description" :
1974
+ """Subscriber ID associated with the source address for this
1975
+ flow. A Subscriber ID is an unspecified text string, used
1976
+ to ascribe traffic flows to individual users. At this time
1977
+ the means by which a Subscriber ID may be associated with a
1978
+ flow is unspecified.""",
1979
+ }, # column
1980
+ "flowDataDestSubscriberID" : {
1981
+ "nodetype" : "column",
1982
+ "moduleName" : "FLOW-METER-MIB",
1983
+ "oid" : "1.3.6.1.2.1.40.2.1.1.34",
1984
+ "status" : "current",
1985
+ "syntax" : {
1986
+ "type" : {
1987
+ "basetype" : "OctetString",
1988
+ "ranges" : [
1989
+ {
1990
+ "min" : "4",
1991
+ "max" : "20"
1992
+ },
1993
+ ],
1994
+ "range" : {
1995
+ "min" : "4",
1996
+ "max" : "20"
1997
+ },
1998
+ },
1999
+ },
2000
+ "access" : "readonly",
2001
+ "description" :
2002
+ """Subscriber ID associated with the destination address for
2003
+ this flow. A Subscriber ID is an unspecified text string,
2004
+ used to ascribe traffic flows to individual users. At this
2005
+ time the means by which a Subscriber ID may be associated
2006
+ with a flow is unspecified.""",
2007
+ }, # column
2008
+ "flowDataSessionID" : {
2009
+ "nodetype" : "column",
2010
+ "moduleName" : "FLOW-METER-MIB",
2011
+ "oid" : "1.3.6.1.2.1.40.2.1.1.35",
2012
+ "status" : "current",
2013
+ "syntax" : {
2014
+ "type" : {
2015
+ "basetype" : "OctetString",
2016
+ "ranges" : [
2017
+ {
2018
+ "min" : "4",
2019
+ "max" : "10"
2020
+ },
2021
+ ],
2022
+ "range" : {
2023
+ "min" : "4",
2024
+ "max" : "10"
2025
+ },
2026
+ },
2027
+ },
2028
+ "access" : "readonly",
2029
+ "description" :
2030
+ """Session ID for this flow. Such an ID might be allocated
2031
+ by a network access server to distinguish a series of sessions
2032
+ between the same pair of addresses, which would otherwise
2033
+ appear to be parts of the same accounting flow.""",
2034
+ }, # column
2035
+ "flowDataSourceClass" : {
2036
+ "nodetype" : "column",
2037
+ "moduleName" : "FLOW-METER-MIB",
2038
+ "oid" : "1.3.6.1.2.1.40.2.1.1.36",
2039
+ "status" : "current",
2040
+ "syntax" : {
2041
+ "type" : {
2042
+ "basetype" : "Integer32",
2043
+ "ranges" : [
2044
+ {
2045
+ "min" : "1",
2046
+ "max" : "255"
2047
+ },
2048
+ ],
2049
+ "range" : {
2050
+ "min" : "1",
2051
+ "max" : "255"
2052
+ },
2053
+ },
2054
+ },
2055
+ "access" : "readonly",
2056
+ "description" :
2057
+ """Source class for this flow. Determined by the rules, set by
2058
+ a PushRule action when this flow was entered in the table.""",
2059
+ }, # column
2060
+ "flowDataDestClass" : {
2061
+ "nodetype" : "column",
2062
+ "moduleName" : "FLOW-METER-MIB",
2063
+ "oid" : "1.3.6.1.2.1.40.2.1.1.37",
2064
+ "status" : "current",
2065
+ "syntax" : {
2066
+ "type" : {
2067
+ "basetype" : "Integer32",
2068
+ "ranges" : [
2069
+ {
2070
+ "min" : "1",
2071
+ "max" : "255"
2072
+ },
2073
+ ],
2074
+ "range" : {
2075
+ "min" : "1",
2076
+ "max" : "255"
2077
+ },
2078
+ },
2079
+ },
2080
+ "access" : "readonly",
2081
+ "description" :
2082
+ """Destination class for this flow. Determined by the rules, set
2083
+ by a PushRule action when this flow was entered in the table.""",
2084
+ }, # column
2085
+ "flowDataClass" : {
2086
+ "nodetype" : "column",
2087
+ "moduleName" : "FLOW-METER-MIB",
2088
+ "oid" : "1.3.6.1.2.1.40.2.1.1.38",
2089
+ "status" : "current",
2090
+ "syntax" : {
2091
+ "type" : {
2092
+ "basetype" : "Integer32",
2093
+ "ranges" : [
2094
+ {
2095
+ "min" : "1",
2096
+ "max" : "255"
2097
+ },
2098
+ ],
2099
+ "range" : {
2100
+ "min" : "1",
2101
+ "max" : "255"
2102
+ },
2103
+ },
2104
+ },
2105
+ "access" : "readonly",
2106
+ "description" :
2107
+ """Class for this flow. Determined by the rules, set by a
2108
+ PushRule action when this flow was entered in the table.""",
2109
+ }, # column
2110
+ "flowDataSourceKind" : {
2111
+ "nodetype" : "column",
2112
+ "moduleName" : "FLOW-METER-MIB",
2113
+ "oid" : "1.3.6.1.2.1.40.2.1.1.39",
2114
+ "status" : "current",
2115
+ "syntax" : {
2116
+ "type" : {
2117
+ "basetype" : "Integer32",
2118
+ "ranges" : [
2119
+ {
2120
+ "min" : "1",
2121
+ "max" : "255"
2122
+ },
2123
+ ],
2124
+ "range" : {
2125
+ "min" : "1",
2126
+ "max" : "255"
2127
+ },
2128
+ },
2129
+ },
2130
+ "access" : "readonly",
2131
+ "description" :
2132
+ """Source kind for this flow. Determined by the rules, set by
2133
+ a PushRule action when this flow was entered in the table.""",
2134
+ }, # column
2135
+ "flowDataDestKind" : {
2136
+ "nodetype" : "column",
2137
+ "moduleName" : "FLOW-METER-MIB",
2138
+ "oid" : "1.3.6.1.2.1.40.2.1.1.40",
2139
+ "status" : "current",
2140
+ "syntax" : {
2141
+ "type" : {
2142
+ "basetype" : "Integer32",
2143
+ "ranges" : [
2144
+ {
2145
+ "min" : "1",
2146
+ "max" : "255"
2147
+ },
2148
+ ],
2149
+ "range" : {
2150
+ "min" : "1",
2151
+ "max" : "255"
2152
+ },
2153
+ },
2154
+ },
2155
+ "access" : "readonly",
2156
+ "description" :
2157
+ """Destination kind for this flow. Determined by the rules, set
2158
+ by a PushRule action when this flow was entered in the table.""",
2159
+ }, # column
2160
+ "flowDataKind" : {
2161
+ "nodetype" : "column",
2162
+ "moduleName" : "FLOW-METER-MIB",
2163
+ "oid" : "1.3.6.1.2.1.40.2.1.1.41",
2164
+ "status" : "current",
2165
+ "syntax" : {
2166
+ "type" : {
2167
+ "basetype" : "Integer32",
2168
+ "ranges" : [
2169
+ {
2170
+ "min" : "1",
2171
+ "max" : "255"
2172
+ },
2173
+ ],
2174
+ "range" : {
2175
+ "min" : "1",
2176
+ "max" : "255"
2177
+ },
2178
+ },
2179
+ },
2180
+ "access" : "readonly",
2181
+ "description" :
2182
+ """Class for this flow. Determined by the rules, set by a
2183
+ PushRule action when this flow was entered in the table.""",
2184
+ }, # column
2185
+ "flowColumnActivityTable" : {
2186
+ "nodetype" : "table",
2187
+ "moduleName" : "FLOW-METER-MIB",
2188
+ "oid" : "1.3.6.1.2.1.40.2.2",
2189
+ "status" : "deprecated",
2190
+ "description" :
2191
+ """Index into the Flow Table. Allows a meter reader to retrieve
2192
+ a list containing the flow table indexes of flows which were
2193
+ last active at or after a given time, together with the values
2194
+ of a specified attribute for each such flow.""",
2195
+ }, # table
2196
+ "flowColumnActivityEntry" : {
2197
+ "nodetype" : "row",
2198
+ "moduleName" : "FLOW-METER-MIB",
2199
+ "oid" : "1.3.6.1.2.1.40.2.2.1",
2200
+ "status" : "deprecated",
2201
+ "linkage" : [
2202
+ "flowColumnActivityAttribute",
2203
+ "flowColumnActivityTime",
2204
+ "flowColumnActivityIndex",
2205
+ ],
2206
+ "description" :
2207
+ """The Column Activity Entry for a particular attribute,
2208
+ activity time and flow.""",
2209
+ }, # row
2210
+ "flowColumnActivityAttribute" : {
2211
+ "nodetype" : "column",
2212
+ "moduleName" : "FLOW-METER-MIB",
2213
+ "oid" : "1.3.6.1.2.1.40.2.2.1.1",
2214
+ "status" : "deprecated",
2215
+ "syntax" : {
2216
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "FlowAttributeNumber"},
2217
+ },
2218
+ "access" : "readonly",
2219
+ "description" :
2220
+ """Specifies the attribute for which values are required from
2221
+ active flows.""",
2222
+ }, # column
2223
+ "flowColumnActivityTime" : {
2224
+ "nodetype" : "column",
2225
+ "moduleName" : "FLOW-METER-MIB",
2226
+ "oid" : "1.3.6.1.2.1.40.2.2.1.2",
2227
+ "status" : "deprecated",
2228
+ "syntax" : {
2229
+ "type" : { "module" :"RMON2-MIB", "name" : "TimeFilter"},
2230
+ },
2231
+ "access" : "readonly",
2232
+ "description" :
2233
+ """This variable is a copy of flowDataLastActiveTime in the
2234
+ flow data record identified by the flowColumnActivityIndex
2235
+ value of this flowColumnActivityTable entry.""",
2236
+ }, # column
2237
+ "flowColumnActivityIndex" : {
2238
+ "nodetype" : "column",
2239
+ "moduleName" : "FLOW-METER-MIB",
2240
+ "oid" : "1.3.6.1.2.1.40.2.2.1.3",
2241
+ "status" : "deprecated",
2242
+ "syntax" : {
2243
+ "type" : {
2244
+ "basetype" : "Integer32",
2245
+ "ranges" : [
2246
+ {
2247
+ "min" : "1",
2248
+ "max" : "2147483647"
2249
+ },
2250
+ ],
2251
+ "range" : {
2252
+ "min" : "1",
2253
+ "max" : "2147483647"
2254
+ },
2255
+ },
2256
+ },
2257
+ "access" : "readonly",
2258
+ "description" :
2259
+ """Index of a flow table entry which was active at or after
2260
+ a specified flowColumnActivityTime.""",
2261
+ }, # column
2262
+ "flowColumnActivityData" : {
2263
+ "nodetype" : "column",
2264
+ "moduleName" : "FLOW-METER-MIB",
2265
+ "oid" : "1.3.6.1.2.1.40.2.2.1.4",
2266
+ "status" : "deprecated",
2267
+ "syntax" : {
2268
+ "type" : {
2269
+ "basetype" : "OctetString",
2270
+ "ranges" : [
2271
+ {
2272
+ "min" : "3",
2273
+ "max" : "1000"
2274
+ },
2275
+ ],
2276
+ "range" : {
2277
+ "min" : "3",
2278
+ "max" : "1000"
2279
+ },
2280
+ },
2281
+ },
2282
+ "access" : "readonly",
2283
+ "description" :
2284
+ """Collection of attribute data for flows active after
2285
+ flowColumnActivityTime. Within the OCTET STRING is a
2286
+ sequence of { flow index, attribute value } pairs, one for
2287
+ each active flow. The end of the sequence is marked by a
2288
+ flow index value of 0, indicating that there are no more
2289
+ rows in this column.
2290
+
2291
+ The format of objects inside flowColumnFlowData is as follows.
2292
+ All numbers are unsigned. Numbers and strings appear with
2293
+ their high-order bytes leading. Numbers are fixed size, as
2294
+ specified by their SYNTAX in the flow table (above), i.e. one
2295
+ octet for flowAddressType and small constants, and four octets
2296
+ for Counter and TimeStamp. Strings are variable-length, with
2297
+ the length given in a single leading octet.
2298
+
2299
+ The following is an attempt at an ASN.1 definition of
2300
+ flowColumnActivityData:
2301
+
2302
+ flowColumnActivityData ::= SEQUENCE flowRowItemEntry
2303
+ flowRowItemEntry ::= SEQUENCE {
2304
+ flowRowNumber Integer32 (1..65535),
2305
+ -- 0 indicates the end of this column
2306
+ flowDataValue flowDataType -- Choice depends on attribute
2307
+ }
2308
+ flowDataType ::= CHOICE {
2309
+ flowByteValue Integer32 (1..255),
2310
+ flowShortValue Integer32 (1..65535),
2311
+ flowLongValue Integer32,
2312
+ flowStringValue OCTET STRING -- Length (n) in first byte,
2313
+ -- n+1 bytes total length, trailing zeroes truncated
2314
+ }""",
2315
+ }, # column
2316
+ "flowDataPackageTable" : {
2317
+ "nodetype" : "table",
2318
+ "moduleName" : "FLOW-METER-MIB",
2319
+ "oid" : "1.3.6.1.2.1.40.2.3",
2320
+ "status" : "current",
2321
+ "description" :
2322
+ """Index into the Flow Table. Allows a meter reader to retrieve
2323
+ a sequence containing the values of a specified set of
2324
+ attributes for a flow which came from a specified RuleSet and
2325
+ which was last active at or after a given time.""",
2326
+ }, # table
2327
+ "flowDataPackageEntry" : {
2328
+ "nodetype" : "row",
2329
+ "moduleName" : "FLOW-METER-MIB",
2330
+ "oid" : "1.3.6.1.2.1.40.2.3.1",
2331
+ "status" : "current",
2332
+ "linkage" : [
2333
+ "flowPackageSelector",
2334
+ "flowPackageRuleSet",
2335
+ "flowPackageTime",
2336
+ "flowPackageIndex",
2337
+ ],
2338
+ "description" :
2339
+ """The data package containing selected variables from
2340
+ active rows in the flow table.""",
2341
+ }, # row
2342
+ "flowPackageSelector" : {
2343
+ "nodetype" : "column",
2344
+ "moduleName" : "FLOW-METER-MIB",
2345
+ "oid" : "1.3.6.1.2.1.40.2.3.1.1",
2346
+ "status" : "current",
2347
+ "syntax" : {
2348
+ "type" : { "module" :"", "name" : "OctetString"},
2349
+ },
2350
+ "access" : "noaccess",
2351
+ "description" :
2352
+ """Specifies the attributes for which values are required from
2353
+ an active flow. These are encoded as a sequence of octets
2354
+ each containing a FlowAttribute number, preceded by an octet
2355
+ giving the length of the sequence (not including the length
2356
+ octet). For a flowPackageSelector to be valid, it must
2357
+ contain at least one attribute.""",
2358
+ }, # column
2359
+ "flowPackageRuleSet" : {
2360
+ "nodetype" : "column",
2361
+ "moduleName" : "FLOW-METER-MIB",
2362
+ "oid" : "1.3.6.1.2.1.40.2.3.1.2",
2363
+ "status" : "current",
2364
+ "syntax" : {
2365
+ "type" : {
2366
+ "basetype" : "Integer32",
2367
+ "ranges" : [
2368
+ {
2369
+ "min" : "1",
2370
+ "max" : "255"
2371
+ },
2372
+ ],
2373
+ "range" : {
2374
+ "min" : "1",
2375
+ "max" : "255"
2376
+ },
2377
+ },
2378
+ },
2379
+ "access" : "noaccess",
2380
+ "description" :
2381
+ """Specifies the index (in the flowRuleSetInfoTable) of the rule
2382
+ set which produced the required flow.""",
2383
+ }, # column
2384
+ "flowPackageTime" : {
2385
+ "nodetype" : "column",
2386
+ "moduleName" : "FLOW-METER-MIB",
2387
+ "oid" : "1.3.6.1.2.1.40.2.3.1.3",
2388
+ "status" : "current",
2389
+ "syntax" : {
2390
+ "type" : { "module" :"RMON2-MIB", "name" : "TimeFilter"},
2391
+ },
2392
+ "access" : "noaccess",
2393
+ "description" :
2394
+ """This variable is a copy of flowDataLastActiveTime in the
2395
+ flow data record identified by the flowPackageIndex
2396
+ value of this flowPackageTable entry.""",
2397
+ }, # column
2398
+ "flowPackageIndex" : {
2399
+ "nodetype" : "column",
2400
+ "moduleName" : "FLOW-METER-MIB",
2401
+ "oid" : "1.3.6.1.2.1.40.2.3.1.4",
2402
+ "status" : "current",
2403
+ "syntax" : {
2404
+ "type" : {
2405
+ "basetype" : "Integer32",
2406
+ "ranges" : [
2407
+ {
2408
+ "min" : "1",
2409
+ "max" : "2147483647"
2410
+ },
2411
+ ],
2412
+ "range" : {
2413
+ "min" : "1",
2414
+ "max" : "2147483647"
2415
+ },
2416
+ },
2417
+ },
2418
+ "access" : "noaccess",
2419
+ "description" :
2420
+ """Index of a flow table entry which was active at or after
2421
+ a specified flowPackageTime.""",
2422
+ }, # column
2423
+ "flowPackageData" : {
2424
+ "nodetype" : "column",
2425
+ "moduleName" : "FLOW-METER-MIB",
2426
+ "oid" : "1.3.6.1.2.1.40.2.3.1.5",
2427
+ "status" : "current",
2428
+ "syntax" : {
2429
+ "type" : { "module" :"", "name" : "OctetString"},
2430
+ },
2431
+ "access" : "readonly",
2432
+ "description" :
2433
+ """A collection of attribute values for a single flow, as
2434
+ specified by this row's indexes. The attribute values are
2435
+ contained within a BER-encoded sequence [ASN-1, ASN-BER],
2436
+ in the order they appear in their flowPackageSelector.
2437
+
2438
+ For example, to retrieve a flowPackage containing values for
2439
+ attributes 11, 18 and 29, for a flow in RuleSet 7, with flow
2440
+ index 3447, one would GET the package whose Object Identifier
2441
+ (OID) is
2442
+ flowPackageData . 3.11.18.29 . 7. 0 . 3447
2443
+
2444
+ To get a package for the next such flow which had been
2445
+ active since time 12345 one would GETNEXT the package whose
2446
+ Object Identifier (OID) is
2447
+ flowPackageData . 3.11.18.29 . 7. 12345 . 3447""",
2448
+ }, # column
2449
+ "flowRules" : {
2450
+ "nodetype" : "node",
2451
+ "moduleName" : "FLOW-METER-MIB",
2452
+ "oid" : "1.3.6.1.2.1.40.3",
2453
+ }, # node
2454
+ "flowRuleTable" : {
2455
+ "nodetype" : "table",
2456
+ "moduleName" : "FLOW-METER-MIB",
2457
+ "oid" : "1.3.6.1.2.1.40.3.1",
2458
+ "status" : "current",
2459
+ "description" :
2460
+ """Contains all the RuleSets which may be used by the meter.""",
2461
+ }, # table
2462
+ "flowRuleEntry" : {
2463
+ "nodetype" : "row",
2464
+ "moduleName" : "FLOW-METER-MIB",
2465
+ "oid" : "1.3.6.1.2.1.40.3.1.1",
2466
+ "status" : "current",
2467
+ "linkage" : [
2468
+ "flowRuleSet",
2469
+ "flowRuleIndex",
2470
+ ],
2471
+ "description" :
2472
+ """The rule record itself.""",
2473
+ }, # row
2474
+ "flowRuleSet" : {
2475
+ "nodetype" : "column",
2476
+ "moduleName" : "FLOW-METER-MIB",
2477
+ "oid" : "1.3.6.1.2.1.40.3.1.1.1",
2478
+ "status" : "current",
2479
+ "syntax" : {
2480
+ "type" : {
2481
+ "basetype" : "Integer32",
2482
+ "ranges" : [
2483
+ {
2484
+ "min" : "1",
2485
+ "max" : "2147483647"
2486
+ },
2487
+ ],
2488
+ "range" : {
2489
+ "min" : "1",
2490
+ "max" : "2147483647"
2491
+ },
2492
+ },
2493
+ },
2494
+ "access" : "noaccess",
2495
+ "description" :
2496
+ """Selects a RuleSet from the array of RuleSets.""",
2497
+ }, # column
2498
+ "flowRuleIndex" : {
2499
+ "nodetype" : "column",
2500
+ "moduleName" : "FLOW-METER-MIB",
2501
+ "oid" : "1.3.6.1.2.1.40.3.1.1.2",
2502
+ "status" : "current",
2503
+ "syntax" : {
2504
+ "type" : {
2505
+ "basetype" : "Integer32",
2506
+ "ranges" : [
2507
+ {
2508
+ "min" : "1",
2509
+ "max" : "2147483647"
2510
+ },
2511
+ ],
2512
+ "range" : {
2513
+ "min" : "1",
2514
+ "max" : "2147483647"
2515
+ },
2516
+ },
2517
+ },
2518
+ "access" : "noaccess",
2519
+ "description" :
2520
+ """The index into the Rule table. N.B: These values will
2521
+ normally be consecutive, given the fall-through semantics
2522
+ of processing the table.""",
2523
+ }, # column
2524
+ "flowRuleSelector" : {
2525
+ "nodetype" : "column",
2526
+ "moduleName" : "FLOW-METER-MIB",
2527
+ "oid" : "1.3.6.1.2.1.40.3.1.1.3",
2528
+ "status" : "current",
2529
+ "syntax" : {
2530
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "RuleAttributeNumber"},
2531
+ },
2532
+ "access" : "readwrite",
2533
+ "description" :
2534
+ """Indicates the attribute to be matched.
2535
+
2536
+ null(0) is a special case; null rules always succeed.
2537
+ matchingStoD(50) is set by the meter's Packet Matching Engine.
2538
+ Its value is true(1) if the PME is attempting to match the
2539
+ packet with its addresses in Source-to-Destination order (i.e.
2540
+ as they appear in the packet), and false(2) otherwise.
2541
+ Details of how packets are matched are given in the 'Traffic
2542
+ Flow Measurement: Architecture' document [RTFM-ARC].
2543
+ v1(51), v2(52), v3(53), v4(54) and v5(55) select meter
2544
+ variables, each of which can hold the name (i.e. selector
2545
+ value) of an address attribute. When one of these is used
2546
+ as a selector, its value specifies the attribute to be
2547
+ tested. Variable values are set by an Assign action.""",
2548
+ }, # column
2549
+ "flowRuleMask" : {
2550
+ "nodetype" : "column",
2551
+ "moduleName" : "FLOW-METER-MIB",
2552
+ "oid" : "1.3.6.1.2.1.40.3.1.1.4",
2553
+ "status" : "current",
2554
+ "syntax" : {
2555
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "RuleAddress"},
2556
+ },
2557
+ "access" : "readwrite",
2558
+ "description" :
2559
+ """The initial mask used to compute the desired value. If the
2560
+ mask is zero the rule's test will always succeed.""",
2561
+ }, # column
2562
+ "flowRuleMatchedValue" : {
2563
+ "nodetype" : "column",
2564
+ "moduleName" : "FLOW-METER-MIB",
2565
+ "oid" : "1.3.6.1.2.1.40.3.1.1.5",
2566
+ "status" : "current",
2567
+ "syntax" : {
2568
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "RuleAddress"},
2569
+ },
2570
+ "access" : "readwrite",
2571
+ "description" :
2572
+ """The resulting value to be matched for equality.
2573
+ Specifically, if the attribute chosen by the flowRuleSelector
2574
+ logically ANDed with the mask specified by the flowRuleMask
2575
+ equals the value specified in the flowRuleMatchedValue, then
2576
+ continue processing the table entry based on the action
2577
+ specified by the flowRuleAction entry. Otherwise, proceed to
2578
+ the next entry in the rule table.""",
2579
+ }, # column
2580
+ "flowRuleAction" : {
2581
+ "nodetype" : "column",
2582
+ "moduleName" : "FLOW-METER-MIB",
2583
+ "oid" : "1.3.6.1.2.1.40.3.1.1.6",
2584
+ "status" : "current",
2585
+ "syntax" : {
2586
+ "type" : { "module" :"FLOW-METER-MIB", "name" : "ActionNumber"},
2587
+ },
2588
+ "access" : "readwrite",
2589
+ "description" :
2590
+ """The action to be taken if this rule's test succeeds, or if
2591
+ the meter's 'test' flag is off. Actions are opcodes for the
2592
+ meter's Packet Matching Engine; details are given in the
2593
+ 'Traffic Flow Measurement: Architecture' document [RTFM-ARC].""",
2594
+ }, # column
2595
+ "flowRuleParameter" : {
2596
+ "nodetype" : "column",
2597
+ "moduleName" : "FLOW-METER-MIB",
2598
+ "oid" : "1.3.6.1.2.1.40.3.1.1.7",
2599
+ "status" : "current",
2600
+ "syntax" : {
2601
+ "type" : {
2602
+ "basetype" : "Integer32",
2603
+ "ranges" : [
2604
+ {
2605
+ "min" : "1",
2606
+ "max" : "65535"
2607
+ },
2608
+ ],
2609
+ "range" : {
2610
+ "min" : "1",
2611
+ "max" : "65535"
2612
+ },
2613
+ },
2614
+ },
2615
+ "access" : "readwrite",
2616
+ "description" :
2617
+ """A parameter value providing extra information for this rule's
2618
+ action. Most of the actions use the parameter value to specify
2619
+ which rule to execute after this rule's test has failed; details
2620
+ are given in the 'Traffic Flow Measurement: Architecture'
2621
+ document [RTFM-ARC].""",
2622
+ }, # column
2623
+ "flowMIBConformance" : {
2624
+ "nodetype" : "node",
2625
+ "moduleName" : "FLOW-METER-MIB",
2626
+ "oid" : "1.3.6.1.2.1.40.4",
2627
+ }, # node
2628
+ "flowMIBCompliances" : {
2629
+ "nodetype" : "node",
2630
+ "moduleName" : "FLOW-METER-MIB",
2631
+ "oid" : "1.3.6.1.2.1.40.4.1",
2632
+ }, # node
2633
+ "flowMIBGroups" : {
2634
+ "nodetype" : "node",
2635
+ "moduleName" : "FLOW-METER-MIB",
2636
+ "oid" : "1.3.6.1.2.1.40.4.2",
2637
+ }, # node
2638
+ }, # nodes
2639
+
2640
+ "groups" : {
2641
+ "flowControlGroup" : {
2642
+ "nodetype" : "group",
2643
+ "moduleName" : "FLOW-METER-MIB",
2644
+ "oid" : "1.3.6.1.2.1.40.4.2.1",
2645
+ "status" : "deprecated",
2646
+ "members" : {
2647
+ "flowRuleInfoSize" : {
2648
+ "nodetype" : "member",
2649
+ "module" : "FLOW-METER-MIB"
2650
+ },
2651
+ "flowRuleInfoOwner" : {
2652
+ "nodetype" : "member",
2653
+ "module" : "FLOW-METER-MIB"
2654
+ },
2655
+ "flowRuleInfoTimeStamp" : {
2656
+ "nodetype" : "member",
2657
+ "module" : "FLOW-METER-MIB"
2658
+ },
2659
+ "flowRuleInfoStatus" : {
2660
+ "nodetype" : "member",
2661
+ "module" : "FLOW-METER-MIB"
2662
+ },
2663
+ "flowRuleInfoName" : {
2664
+ "nodetype" : "member",
2665
+ "module" : "FLOW-METER-MIB"
2666
+ },
2667
+ "flowRuleInfoRulesReady" : {
2668
+ "nodetype" : "member",
2669
+ "module" : "FLOW-METER-MIB"
2670
+ },
2671
+ "flowRuleInfoFlowRecords" : {
2672
+ "nodetype" : "member",
2673
+ "module" : "FLOW-METER-MIB"
2674
+ },
2675
+ "flowInterfaceSampleRate" : {
2676
+ "nodetype" : "member",
2677
+ "module" : "FLOW-METER-MIB"
2678
+ },
2679
+ "flowInterfaceLostPackets" : {
2680
+ "nodetype" : "member",
2681
+ "module" : "FLOW-METER-MIB"
2682
+ },
2683
+ "flowReaderTimeout" : {
2684
+ "nodetype" : "member",
2685
+ "module" : "FLOW-METER-MIB"
2686
+ },
2687
+ "flowReaderOwner" : {
2688
+ "nodetype" : "member",
2689
+ "module" : "FLOW-METER-MIB"
2690
+ },
2691
+ "flowReaderLastTime" : {
2692
+ "nodetype" : "member",
2693
+ "module" : "FLOW-METER-MIB"
2694
+ },
2695
+ "flowReaderPreviousTime" : {
2696
+ "nodetype" : "member",
2697
+ "module" : "FLOW-METER-MIB"
2698
+ },
2699
+ "flowReaderStatus" : {
2700
+ "nodetype" : "member",
2701
+ "module" : "FLOW-METER-MIB"
2702
+ },
2703
+ "flowReaderRuleSet" : {
2704
+ "nodetype" : "member",
2705
+ "module" : "FLOW-METER-MIB"
2706
+ },
2707
+ "flowManagerCurrentRuleSet" : {
2708
+ "nodetype" : "member",
2709
+ "module" : "FLOW-METER-MIB"
2710
+ },
2711
+ "flowManagerStandbyRuleSet" : {
2712
+ "nodetype" : "member",
2713
+ "module" : "FLOW-METER-MIB"
2714
+ },
2715
+ "flowManagerHighWaterMark" : {
2716
+ "nodetype" : "member",
2717
+ "module" : "FLOW-METER-MIB"
2718
+ },
2719
+ "flowManagerCounterWrap" : {
2720
+ "nodetype" : "member",
2721
+ "module" : "FLOW-METER-MIB"
2722
+ },
2723
+ "flowManagerOwner" : {
2724
+ "nodetype" : "member",
2725
+ "module" : "FLOW-METER-MIB"
2726
+ },
2727
+ "flowManagerTimeStamp" : {
2728
+ "nodetype" : "member",
2729
+ "module" : "FLOW-METER-MIB"
2730
+ },
2731
+ "flowManagerStatus" : {
2732
+ "nodetype" : "member",
2733
+ "module" : "FLOW-METER-MIB"
2734
+ },
2735
+ "flowManagerRunningStandby" : {
2736
+ "nodetype" : "member",
2737
+ "module" : "FLOW-METER-MIB"
2738
+ },
2739
+ "flowFloodMark" : {
2740
+ "nodetype" : "member",
2741
+ "module" : "FLOW-METER-MIB"
2742
+ },
2743
+ "flowInactivityTimeout" : {
2744
+ "nodetype" : "member",
2745
+ "module" : "FLOW-METER-MIB"
2746
+ },
2747
+ "flowActiveFlows" : {
2748
+ "nodetype" : "member",
2749
+ "module" : "FLOW-METER-MIB"
2750
+ },
2751
+ "flowMaxFlows" : {
2752
+ "nodetype" : "member",
2753
+ "module" : "FLOW-METER-MIB"
2754
+ },
2755
+ "flowFloodMode" : {
2756
+ "nodetype" : "member",
2757
+ "module" : "FLOW-METER-MIB"
2758
+ },
2759
+ }, # members
2760
+ "description" :
2761
+ """The control group defines objects which are used to control
2762
+ an accounting meter.""",
2763
+ }, # group
2764
+ "flowDataTableGroup" : {
2765
+ "nodetype" : "group",
2766
+ "moduleName" : "FLOW-METER-MIB",
2767
+ "oid" : "1.3.6.1.2.1.40.4.2.2",
2768
+ "status" : "deprecated",
2769
+ "members" : {
2770
+ "flowDataStatus" : {
2771
+ "nodetype" : "member",
2772
+ "module" : "FLOW-METER-MIB"
2773
+ },
2774
+ "flowDataSourceInterface" : {
2775
+ "nodetype" : "member",
2776
+ "module" : "FLOW-METER-MIB"
2777
+ },
2778
+ "flowDataSourceAdjacentType" : {
2779
+ "nodetype" : "member",
2780
+ "module" : "FLOW-METER-MIB"
2781
+ },
2782
+ "flowDataSourceAdjacentAddress" : {
2783
+ "nodetype" : "member",
2784
+ "module" : "FLOW-METER-MIB"
2785
+ },
2786
+ "flowDataSourceAdjacentMask" : {
2787
+ "nodetype" : "member",
2788
+ "module" : "FLOW-METER-MIB"
2789
+ },
2790
+ "flowDataSourcePeerType" : {
2791
+ "nodetype" : "member",
2792
+ "module" : "FLOW-METER-MIB"
2793
+ },
2794
+ "flowDataSourcePeerAddress" : {
2795
+ "nodetype" : "member",
2796
+ "module" : "FLOW-METER-MIB"
2797
+ },
2798
+ "flowDataSourcePeerMask" : {
2799
+ "nodetype" : "member",
2800
+ "module" : "FLOW-METER-MIB"
2801
+ },
2802
+ "flowDataSourceTransType" : {
2803
+ "nodetype" : "member",
2804
+ "module" : "FLOW-METER-MIB"
2805
+ },
2806
+ "flowDataSourceTransAddress" : {
2807
+ "nodetype" : "member",
2808
+ "module" : "FLOW-METER-MIB"
2809
+ },
2810
+ "flowDataSourceTransMask" : {
2811
+ "nodetype" : "member",
2812
+ "module" : "FLOW-METER-MIB"
2813
+ },
2814
+ "flowDataDestInterface" : {
2815
+ "nodetype" : "member",
2816
+ "module" : "FLOW-METER-MIB"
2817
+ },
2818
+ "flowDataDestAdjacentType" : {
2819
+ "nodetype" : "member",
2820
+ "module" : "FLOW-METER-MIB"
2821
+ },
2822
+ "flowDataDestAdjacentAddress" : {
2823
+ "nodetype" : "member",
2824
+ "module" : "FLOW-METER-MIB"
2825
+ },
2826
+ "flowDataDestAdjacentMask" : {
2827
+ "nodetype" : "member",
2828
+ "module" : "FLOW-METER-MIB"
2829
+ },
2830
+ "flowDataDestPeerType" : {
2831
+ "nodetype" : "member",
2832
+ "module" : "FLOW-METER-MIB"
2833
+ },
2834
+ "flowDataDestPeerAddress" : {
2835
+ "nodetype" : "member",
2836
+ "module" : "FLOW-METER-MIB"
2837
+ },
2838
+ "flowDataDestPeerMask" : {
2839
+ "nodetype" : "member",
2840
+ "module" : "FLOW-METER-MIB"
2841
+ },
2842
+ "flowDataDestTransType" : {
2843
+ "nodetype" : "member",
2844
+ "module" : "FLOW-METER-MIB"
2845
+ },
2846
+ "flowDataDestTransAddress" : {
2847
+ "nodetype" : "member",
2848
+ "module" : "FLOW-METER-MIB"
2849
+ },
2850
+ "flowDataDestTransMask" : {
2851
+ "nodetype" : "member",
2852
+ "module" : "FLOW-METER-MIB"
2853
+ },
2854
+ "flowDataToOctets" : {
2855
+ "nodetype" : "member",
2856
+ "module" : "FLOW-METER-MIB"
2857
+ },
2858
+ "flowDataToPDUs" : {
2859
+ "nodetype" : "member",
2860
+ "module" : "FLOW-METER-MIB"
2861
+ },
2862
+ "flowDataFromOctets" : {
2863
+ "nodetype" : "member",
2864
+ "module" : "FLOW-METER-MIB"
2865
+ },
2866
+ "flowDataFromPDUs" : {
2867
+ "nodetype" : "member",
2868
+ "module" : "FLOW-METER-MIB"
2869
+ },
2870
+ "flowDataFirstTime" : {
2871
+ "nodetype" : "member",
2872
+ "module" : "FLOW-METER-MIB"
2873
+ },
2874
+ "flowDataLastActiveTime" : {
2875
+ "nodetype" : "member",
2876
+ "module" : "FLOW-METER-MIB"
2877
+ },
2878
+ "flowDataSourceClass" : {
2879
+ "nodetype" : "member",
2880
+ "module" : "FLOW-METER-MIB"
2881
+ },
2882
+ "flowDataDestClass" : {
2883
+ "nodetype" : "member",
2884
+ "module" : "FLOW-METER-MIB"
2885
+ },
2886
+ "flowDataClass" : {
2887
+ "nodetype" : "member",
2888
+ "module" : "FLOW-METER-MIB"
2889
+ },
2890
+ "flowDataSourceKind" : {
2891
+ "nodetype" : "member",
2892
+ "module" : "FLOW-METER-MIB"
2893
+ },
2894
+ "flowDataDestKind" : {
2895
+ "nodetype" : "member",
2896
+ "module" : "FLOW-METER-MIB"
2897
+ },
2898
+ "flowDataKind" : {
2899
+ "nodetype" : "member",
2900
+ "module" : "FLOW-METER-MIB"
2901
+ },
2902
+ }, # members
2903
+ "description" :
2904
+ """The flow table group defines objects which provide the
2905
+ structure for the flow table, including the creation time
2906
+ and activity time indexes into it. In addition it defines
2907
+ objects which provide a base set of flow attributes for the
2908
+ adjacent, peer and transport layers, together with a flow's
2909
+ counters and times. Finally it defines a flow's class and
2910
+ kind attributes, which are set by rule actions.""",
2911
+ }, # group
2912
+ "flowDataScaleGroup" : {
2913
+ "nodetype" : "group",
2914
+ "moduleName" : "FLOW-METER-MIB",
2915
+ "oid" : "1.3.6.1.2.1.40.4.2.3",
2916
+ "status" : "deprecated",
2917
+ "members" : {
2918
+ "flowManagerCounterWrap" : {
2919
+ "nodetype" : "member",
2920
+ "module" : "FLOW-METER-MIB"
2921
+ },
2922
+ "flowDataPDUScale" : {
2923
+ "nodetype" : "member",
2924
+ "module" : "FLOW-METER-MIB"
2925
+ },
2926
+ "flowDataOctetScale" : {
2927
+ "nodetype" : "member",
2928
+ "module" : "FLOW-METER-MIB"
2929
+ },
2930
+ }, # members
2931
+ "description" :
2932
+ """The flow scale group defines objects which specify scale
2933
+ factors for counters.""",
2934
+ }, # group
2935
+ "flowDataSubscriberGroup" : {
2936
+ "nodetype" : "group",
2937
+ "moduleName" : "FLOW-METER-MIB",
2938
+ "oid" : "1.3.6.1.2.1.40.4.2.4",
2939
+ "status" : "current",
2940
+ "members" : {
2941
+ "flowDataSourceSubscriberID" : {
2942
+ "nodetype" : "member",
2943
+ "module" : "FLOW-METER-MIB"
2944
+ },
2945
+ "flowDataDestSubscriberID" : {
2946
+ "nodetype" : "member",
2947
+ "module" : "FLOW-METER-MIB"
2948
+ },
2949
+ "flowDataSessionID" : {
2950
+ "nodetype" : "member",
2951
+ "module" : "FLOW-METER-MIB"
2952
+ },
2953
+ }, # members
2954
+ "description" :
2955
+ """The flow subscriber group defines objects which may be used
2956
+ to identify the end point(s) of a flow.""",
2957
+ }, # group
2958
+ "flowDataColumnTableGroup" : {
2959
+ "nodetype" : "group",
2960
+ "moduleName" : "FLOW-METER-MIB",
2961
+ "oid" : "1.3.6.1.2.1.40.4.2.5",
2962
+ "status" : "deprecated",
2963
+ "members" : {
2964
+ "flowColumnActivityAttribute" : {
2965
+ "nodetype" : "member",
2966
+ "module" : "FLOW-METER-MIB"
2967
+ },
2968
+ "flowColumnActivityIndex" : {
2969
+ "nodetype" : "member",
2970
+ "module" : "FLOW-METER-MIB"
2971
+ },
2972
+ "flowColumnActivityTime" : {
2973
+ "nodetype" : "member",
2974
+ "module" : "FLOW-METER-MIB"
2975
+ },
2976
+ "flowColumnActivityData" : {
2977
+ "nodetype" : "member",
2978
+ "module" : "FLOW-METER-MIB"
2979
+ },
2980
+ }, # members
2981
+ "description" :
2982
+ """The flow column table group defines objects which can be used
2983
+ to collect part of a column of attribute values from the flow
2984
+ table.""",
2985
+ }, # group
2986
+ "flowDataPackageGroup" : {
2987
+ "nodetype" : "group",
2988
+ "moduleName" : "FLOW-METER-MIB",
2989
+ "oid" : "1.3.6.1.2.1.40.4.2.6",
2990
+ "status" : "current",
2991
+ "members" : {
2992
+ "flowPackageData" : {
2993
+ "nodetype" : "member",
2994
+ "module" : "FLOW-METER-MIB"
2995
+ },
2996
+ }, # members
2997
+ "description" :
2998
+ """The data package group defines objects which can be used
2999
+ to collect a specified set of attribute values from a row of
3000
+ the flow table.""",
3001
+ }, # group
3002
+ "flowRuleTableGroup" : {
3003
+ "nodetype" : "group",
3004
+ "moduleName" : "FLOW-METER-MIB",
3005
+ "oid" : "1.3.6.1.2.1.40.4.2.7",
3006
+ "status" : "current",
3007
+ "members" : {
3008
+ "flowRuleSelector" : {
3009
+ "nodetype" : "member",
3010
+ "module" : "FLOW-METER-MIB"
3011
+ },
3012
+ "flowRuleMask" : {
3013
+ "nodetype" : "member",
3014
+ "module" : "FLOW-METER-MIB"
3015
+ },
3016
+ "flowRuleMatchedValue" : {
3017
+ "nodetype" : "member",
3018
+ "module" : "FLOW-METER-MIB"
3019
+ },
3020
+ "flowRuleAction" : {
3021
+ "nodetype" : "member",
3022
+ "module" : "FLOW-METER-MIB"
3023
+ },
3024
+ "flowRuleParameter" : {
3025
+ "nodetype" : "member",
3026
+ "module" : "FLOW-METER-MIB"
3027
+ },
3028
+ }, # members
3029
+ "description" :
3030
+ """The rule table group defines objects which hold the set(s)
3031
+ of rules specifying which traffic flows are to be accounted
3032
+ for.""",
3033
+ }, # group
3034
+ "flowDataScaleGroup2" : {
3035
+ "nodetype" : "group",
3036
+ "moduleName" : "FLOW-METER-MIB",
3037
+ "oid" : "1.3.6.1.2.1.40.4.2.8",
3038
+ "status" : "current",
3039
+ "members" : {
3040
+ "flowDataPDUScale" : {
3041
+ "nodetype" : "member",
3042
+ "module" : "FLOW-METER-MIB"
3043
+ },
3044
+ "flowDataOctetScale" : {
3045
+ "nodetype" : "member",
3046
+ "module" : "FLOW-METER-MIB"
3047
+ },
3048
+ }, # members
3049
+ "description" :
3050
+ """The flow scale group defines objects which specify scale
3051
+ factors for counters. This group replaces the earlier
3052
+ version of flowDataScaleGroup above (now deprecated).""",
3053
+ }, # group
3054
+ "flowControlGroup2" : {
3055
+ "nodetype" : "group",
3056
+ "moduleName" : "FLOW-METER-MIB",
3057
+ "oid" : "1.3.6.1.2.1.40.4.2.9",
3058
+ "status" : "current",
3059
+ "members" : {
3060
+ "flowRuleInfoSize" : {
3061
+ "nodetype" : "member",
3062
+ "module" : "FLOW-METER-MIB"
3063
+ },
3064
+ "flowRuleInfoOwner" : {
3065
+ "nodetype" : "member",
3066
+ "module" : "FLOW-METER-MIB"
3067
+ },
3068
+ "flowRuleInfoTimeStamp" : {
3069
+ "nodetype" : "member",
3070
+ "module" : "FLOW-METER-MIB"
3071
+ },
3072
+ "flowRuleInfoStatus" : {
3073
+ "nodetype" : "member",
3074
+ "module" : "FLOW-METER-MIB"
3075
+ },
3076
+ "flowRuleInfoName" : {
3077
+ "nodetype" : "member",
3078
+ "module" : "FLOW-METER-MIB"
3079
+ },
3080
+ "flowRuleInfoFlowRecords" : {
3081
+ "nodetype" : "member",
3082
+ "module" : "FLOW-METER-MIB"
3083
+ },
3084
+ "flowInterfaceSampleRate" : {
3085
+ "nodetype" : "member",
3086
+ "module" : "FLOW-METER-MIB"
3087
+ },
3088
+ "flowInterfaceLostPackets" : {
3089
+ "nodetype" : "member",
3090
+ "module" : "FLOW-METER-MIB"
3091
+ },
3092
+ "flowReaderTimeout" : {
3093
+ "nodetype" : "member",
3094
+ "module" : "FLOW-METER-MIB"
3095
+ },
3096
+ "flowReaderOwner" : {
3097
+ "nodetype" : "member",
3098
+ "module" : "FLOW-METER-MIB"
3099
+ },
3100
+ "flowReaderLastTime" : {
3101
+ "nodetype" : "member",
3102
+ "module" : "FLOW-METER-MIB"
3103
+ },
3104
+ "flowReaderPreviousTime" : {
3105
+ "nodetype" : "member",
3106
+ "module" : "FLOW-METER-MIB"
3107
+ },
3108
+ "flowReaderStatus" : {
3109
+ "nodetype" : "member",
3110
+ "module" : "FLOW-METER-MIB"
3111
+ },
3112
+ "flowReaderRuleSet" : {
3113
+ "nodetype" : "member",
3114
+ "module" : "FLOW-METER-MIB"
3115
+ },
3116
+ "flowManagerCurrentRuleSet" : {
3117
+ "nodetype" : "member",
3118
+ "module" : "FLOW-METER-MIB"
3119
+ },
3120
+ "flowManagerStandbyRuleSet" : {
3121
+ "nodetype" : "member",
3122
+ "module" : "FLOW-METER-MIB"
3123
+ },
3124
+ "flowManagerHighWaterMark" : {
3125
+ "nodetype" : "member",
3126
+ "module" : "FLOW-METER-MIB"
3127
+ },
3128
+ "flowManagerOwner" : {
3129
+ "nodetype" : "member",
3130
+ "module" : "FLOW-METER-MIB"
3131
+ },
3132
+ "flowManagerTimeStamp" : {
3133
+ "nodetype" : "member",
3134
+ "module" : "FLOW-METER-MIB"
3135
+ },
3136
+ "flowManagerStatus" : {
3137
+ "nodetype" : "member",
3138
+ "module" : "FLOW-METER-MIB"
3139
+ },
3140
+ "flowManagerRunningStandby" : {
3141
+ "nodetype" : "member",
3142
+ "module" : "FLOW-METER-MIB"
3143
+ },
3144
+ "flowFloodMark" : {
3145
+ "nodetype" : "member",
3146
+ "module" : "FLOW-METER-MIB"
3147
+ },
3148
+ "flowInactivityTimeout" : {
3149
+ "nodetype" : "member",
3150
+ "module" : "FLOW-METER-MIB"
3151
+ },
3152
+ "flowActiveFlows" : {
3153
+ "nodetype" : "member",
3154
+ "module" : "FLOW-METER-MIB"
3155
+ },
3156
+ "flowMaxFlows" : {
3157
+ "nodetype" : "member",
3158
+ "module" : "FLOW-METER-MIB"
3159
+ },
3160
+ "flowFloodMode" : {
3161
+ "nodetype" : "member",
3162
+ "module" : "FLOW-METER-MIB"
3163
+ },
3164
+ }, # members
3165
+ "description" :
3166
+ """The control group defines objects which are used to control
3167
+ an accounting meter. It replaces the earlier version of
3168
+ flowControlGroup above (now deprecated).""",
3169
+ }, # group
3170
+ }, # groups
3171
+
3172
+ "compliances" : {
3173
+ "flowMIBCompliance" : {
3174
+ "nodetype" : "compliance",
3175
+ "moduleName" : "FLOW-METER-MIB",
3176
+ "oid" : "1.3.6.1.2.1.40.4.1.1",
3177
+ "status" : "current",
3178
+ "description" :
3179
+ """The compliance statement for a Traffic Flow Meter.""",
3180
+ "requires" : {
3181
+ "flowControlGroup2" : {
3182
+ "nodetype" : "mandatory",
3183
+ "module" : "FLOW-METER-MIB"
3184
+ },
3185
+ "flowDataTableGroup" : {
3186
+ "nodetype" : "mandatory",
3187
+ "module" : "FLOW-METER-MIB"
3188
+ },
3189
+ "flowDataPackageGroup" : {
3190
+ "nodetype" : "mandatory",
3191
+ "module" : "FLOW-METER-MIB"
3192
+ },
3193
+ "flowRuleTableGroup" : {
3194
+ "nodetype" : "mandatory",
3195
+ "module" : "FLOW-METER-MIB"
3196
+ },
3197
+ }, # requires
3198
+ }, # compliance
3199
+ }, # compliances
3200
+
3201
+ }