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,2334 @@
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 IPFIX-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/IPFIX-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "IPFIX-MIB",
11
+
12
+ "IPFIX-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPFIX Working Group""",
17
+ "contact" :
18
+ """WG charter:
19
+ http://www.ietf.org/html.charters/ipfix-charter.html
20
+
21
+ Mailing Lists:
22
+ General Discussion: ipfix@ietf.org
23
+ To Subscribe: http://www1.ietf.org/mailman/listinfo/ipfix
24
+ Archive:
25
+ http://www1.ietf.org/mail-archive/web/ipfix/current/index.html
26
+
27
+ Editor:
28
+ Thomas Dietz
29
+ NEC Europe Ltd.
30
+ NEC Laboratories Europe
31
+ Network Research Division
32
+ Kurfuersten-Anlage 36
33
+ Heidelberg 69115
34
+ Germany
35
+
36
+
37
+
38
+
39
+ Phone: +49 6221 4342-128
40
+ Email: Thomas.Dietz@neclab.eu
41
+
42
+ Atsushi Kobayashi
43
+ NTT Information Sharing Platform Laboratories
44
+ 3-9-11 Midori-cho
45
+ Musashino-shi, Tokyo 180-8585
46
+ Japan
47
+ Phone: +81-422-59-3978
48
+ Email: akoba@nttv6.net
49
+
50
+ Benoit Claise
51
+ Cisco Systems, Inc.
52
+ De Kleetlaan 6a b1
53
+ Diegem 1831
54
+ Belgium
55
+ Phone: +32 2 704 5622
56
+ Email: bclaise@cisco.com
57
+
58
+ Gerhard Muenz
59
+ Technische Universitaet Muenchen
60
+ Department of Informatics
61
+ Chair for Network Architectures and Services (I8)
62
+ Boltzmannstr. 3
63
+ Garching 85748
64
+ Germany
65
+ Email: muenz@net.in.tum.de""",
66
+ "description" :
67
+ """The IPFIX MIB defines managed objects for IP Flow
68
+ Information eXport. These objects provide information about
69
+ managed nodes supporting the IPFIX protocol,
70
+ for Exporters as well as for Collectors.
71
+
72
+ Copyright (c) 2012 IETF Trust and the persons identified as
73
+ authors of the code. All rights reserved.
74
+
75
+ Redistribution and use in source and binary forms, with or
76
+ without modification, is permitted pursuant to, and subject
77
+ to the license terms contained in, the Simplified BSD
78
+ License set forth in Section 4.c of the IETF Trust's
79
+ Legal Provisions Relating to IETF Documents
80
+ (http://trustee.ietf.org/license-info).""",
81
+ "revisions" : (
82
+ {
83
+ "date" : "2012-06-11 00:00",
84
+ "description" :
85
+ """Fixed errata from RFC 5815. Published as RFC 6615.""",
86
+ },
87
+ {
88
+ "date" : "2010-04-19 00:00",
89
+ "description" :
90
+ """Initial version, published as RFC 5815.""",
91
+ },
92
+ ),
93
+ "identity node" : "ipfixMIB",
94
+ },
95
+
96
+ "imports" : (
97
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
98
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
99
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
100
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
101
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
102
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
103
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
104
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
105
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
106
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
107
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
108
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
109
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
110
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
111
+ {"module" : "ENTITY-MIB", "name" : "PhysicalIndexOrZero"},
112
+ ),
113
+
114
+ "nodes" : {
115
+ "ipfixMIB" : {
116
+ "nodetype" : "node",
117
+ "moduleName" : "IPFIX-MIB",
118
+ "oid" : "1.3.6.1.2.1.193",
119
+ "status" : "current",
120
+ }, # node
121
+ "ipfixObjects" : {
122
+ "nodetype" : "node",
123
+ "moduleName" : "IPFIX-MIB",
124
+ "oid" : "1.3.6.1.2.1.193.1",
125
+ }, # node
126
+ "ipfixMainObjects" : {
127
+ "nodetype" : "node",
128
+ "moduleName" : "IPFIX-MIB",
129
+ "oid" : "1.3.6.1.2.1.193.1.1",
130
+ }, # node
131
+ "ipfixTransportSessionTable" : {
132
+ "nodetype" : "table",
133
+ "moduleName" : "IPFIX-MIB",
134
+ "oid" : "1.3.6.1.2.1.193.1.1.1",
135
+ "status" : "current",
136
+ "description" :
137
+ """This table lists the currently established Transport
138
+ Sessions between an Exporting Process and a Collecting
139
+ Process.""",
140
+ }, # table
141
+ "ipfixTransportSessionEntry" : {
142
+ "nodetype" : "row",
143
+ "moduleName" : "IPFIX-MIB",
144
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1",
145
+ "status" : "current",
146
+ "linkage" : [
147
+ "ipfixTransportSessionIndex",
148
+ ],
149
+ "description" :
150
+ """Defines an entry in the ipfixTransportSessionTable.""",
151
+ }, # row
152
+ "ipfixTransportSessionIndex" : {
153
+ "nodetype" : "column",
154
+ "moduleName" : "IPFIX-MIB",
155
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.1",
156
+ "status" : "current",
157
+ "syntax" : {
158
+ "type" : {
159
+ "basetype" : "Unsigned32",
160
+ "ranges" : [
161
+ {
162
+ "min" : "1",
163
+ "max" : "4294967295"
164
+ },
165
+ ],
166
+ "range" : {
167
+ "min" : "1",
168
+ "max" : "4294967295"
169
+ },
170
+ },
171
+ },
172
+ "access" : "noaccess",
173
+ "description" :
174
+ """Locally arbitrary, but unique identifier of an entry in
175
+ the ipfixTransportSessionTable. The value is expected to
176
+ remain constant from a re-initialization of the entity's
177
+ network management agent to the next re-initialization.""",
178
+ }, # column
179
+ "ipfixTransportSessionProtocol" : {
180
+ "nodetype" : "column",
181
+ "moduleName" : "IPFIX-MIB",
182
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.2",
183
+ "status" : "current",
184
+ "syntax" : {
185
+ "type" : {
186
+ "basetype" : "Unsigned32",
187
+ "ranges" : [
188
+ {
189
+ "min" : "1",
190
+ "max" : "255"
191
+ },
192
+ ],
193
+ "range" : {
194
+ "min" : "1",
195
+ "max" : "255"
196
+ },
197
+ },
198
+ },
199
+ "access" : "readonly",
200
+ "description" :
201
+ """The transport protocol used for receiving or transmitting
202
+ IPFIX Messages. Protocol numbers are assigned by IANA. A
203
+ current list of all assignments is available from
204
+ <http://www.iana.org/assignments/protocol-numbers/>.""",
205
+ "reference" :
206
+ """RFC 5101, Specification of the IP Flow Information Export
207
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
208
+ Information, Section 10.""",
209
+ }, # column
210
+ "ipfixTransportSessionSourceAddressType" : {
211
+ "nodetype" : "column",
212
+ "moduleName" : "IPFIX-MIB",
213
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.3",
214
+ "status" : "current",
215
+ "syntax" : {
216
+ "type" : {
217
+ "basetype" : "Enumeration",
218
+ "parent module" : {
219
+ "name" : "INET-ADDRESS-MIB",
220
+ "type" : "InetAddressType",
221
+ },
222
+ "unknown" : {
223
+ "nodetype" : "namednumber",
224
+ "number" : "0"
225
+ },
226
+ "ipv4" : {
227
+ "nodetype" : "namednumber",
228
+ "number" : "1"
229
+ },
230
+ "ipv6" : {
231
+ "nodetype" : "namednumber",
232
+ "number" : "2"
233
+ },
234
+ },
235
+ },
236
+ "access" : "readonly",
237
+ "description" :
238
+ """The type of address used for the source address,
239
+ as specified in RFC 4001. The InetAddressType supported
240
+
241
+
242
+
243
+ values are ipv4(1) and ipv6(2). This object is used with
244
+ protocols (specified in ipfixTransportSessionProtocol) like
245
+ TCP (6) and UDP (17) that have the notion of addresses.
246
+ SCTP (132) should use the ipfixTransportSessionSctpAssocId
247
+ instead. If SCTP (132) or any other protocol without the
248
+ notion of addresses is used, the object MUST be set to
249
+ unknown(0).""",
250
+ }, # column
251
+ "ipfixTransportSessionSourceAddress" : {
252
+ "nodetype" : "column",
253
+ "moduleName" : "IPFIX-MIB",
254
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.4",
255
+ "status" : "current",
256
+ "syntax" : {
257
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
258
+ },
259
+ "access" : "readonly",
260
+ "description" :
261
+ """The source address of the Exporter of the IPFIX Transport
262
+ Session. This value is interpreted according to the value of
263
+ ipfixTransportSessionAddressType, as specified in RFC 4001.
264
+ This object is used with protocols (specified in
265
+ ipfixTransportSessionProtocol) like TCP (6) and UDP (17) that
266
+ have the notion of addresses. SCTP (132) should use the
267
+ ipfixTransportSessionSctpAssocId instead. If SCTP (132) or
268
+ any other protocol without the notion of addresses is used,
269
+ the object MUST be set to a zero-length string.""",
270
+ }, # column
271
+ "ipfixTransportSessionDestinationAddressType" : {
272
+ "nodetype" : "column",
273
+ "moduleName" : "IPFIX-MIB",
274
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.5",
275
+ "status" : "current",
276
+ "syntax" : {
277
+ "type" : {
278
+ "basetype" : "Enumeration",
279
+ "parent module" : {
280
+ "name" : "INET-ADDRESS-MIB",
281
+ "type" : "InetAddressType",
282
+ },
283
+ "unknown" : {
284
+ "nodetype" : "namednumber",
285
+ "number" : "0"
286
+ },
287
+ "ipv4" : {
288
+ "nodetype" : "namednumber",
289
+ "number" : "1"
290
+ },
291
+ "ipv6" : {
292
+ "nodetype" : "namednumber",
293
+ "number" : "2"
294
+ },
295
+ },
296
+ },
297
+ "access" : "readonly",
298
+ "description" :
299
+ """The type of address used for the destination address,
300
+ as specified in RFC 4001. The InetAddressType supported
301
+ values are ipv4(1) and ipv6(2). This object is used with
302
+ protocols (specified in ipfixTransportSessionProtocol) like
303
+ TCP (6) and UDP (17) that have the notion of addresses.
304
+ SCTP (132) should use the ipfixTransportSessionSctpAssocId
305
+ instead. If SCTP (132) or any other protocol without the
306
+ notion of addresses is used, the object MUST be set to
307
+ unknown(0).""",
308
+ }, # column
309
+ "ipfixTransportSessionDestinationAddress" : {
310
+ "nodetype" : "column",
311
+ "moduleName" : "IPFIX-MIB",
312
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.6",
313
+ "status" : "current",
314
+ "syntax" : {
315
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
316
+ },
317
+ "access" : "readonly",
318
+ "description" :
319
+ """The destination address of the Collector of the IPFIX
320
+ Transport Session. This value is interpreted according to
321
+
322
+
323
+
324
+ the value of ipfixTransportSessionAddressType, as specified
325
+ in RFC 4001. This object is used with protocols
326
+ (specified in ipfixTransportSessionProtocol) like TCP (6)
327
+ and UDP (17) that have the notion of addresses. SCTP (132)
328
+ should use the ipfixTransportSessionSctpAssocId instead.
329
+ If SCTP (132) or any other protocol without the notion of
330
+ addresses is used, the object MUST be set to a zero-length
331
+ string.""",
332
+ }, # column
333
+ "ipfixTransportSessionSourcePort" : {
334
+ "nodetype" : "column",
335
+ "moduleName" : "IPFIX-MIB",
336
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.7",
337
+ "status" : "current",
338
+ "syntax" : {
339
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
340
+ },
341
+ "access" : "readonly",
342
+ "description" :
343
+ """The transport protocol port number of the Exporter.
344
+ This object is used with protocols (specified in
345
+ ipfixTransportSessionProtocol) like TCP (6)
346
+ and UDP (17) that have the notion of ports. SCTP (132)
347
+ should copy the value of sctpAssocLocalPort if the
348
+ Transport Session is in collecting mode or
349
+ sctpAssocRemPort if the Transport Session is in
350
+ exporting mode. The association is referenced
351
+ by the ipfixTransportSessionSctpAssocId.
352
+ If any other protocol without the notion of
353
+ ports is used, the object MUST be set to zero.""",
354
+ }, # column
355
+ "ipfixTransportSessionDestinationPort" : {
356
+ "nodetype" : "column",
357
+ "moduleName" : "IPFIX-MIB",
358
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.8",
359
+ "status" : "current",
360
+ "syntax" : {
361
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
362
+ },
363
+ "access" : "readonly",
364
+ "description" :
365
+ """The transport protocol port number of the Collector. The
366
+ default value is 4739 for all currently defined transport
367
+ protocol types. This object is used with protocols
368
+ (specified in ipfixTransportSessionProtocol) like TCP (6)
369
+ and UDP (17) that have the notion of ports. SCTP (132)
370
+ should copy the value of sctpAssocRemPort if the
371
+ Transport Session is in collecting mode or
372
+ sctpAssocLocalPort if the Transport Session is in
373
+ exporting mode. The association is referenced
374
+ by the ipfixTransportSessionSctpAssocId.
375
+ If any other protocol without the notion of
376
+ ports is used, the object MUST be set to zero.""",
377
+ }, # column
378
+ "ipfixTransportSessionSctpAssocId" : {
379
+ "nodetype" : "column",
380
+ "moduleName" : "IPFIX-MIB",
381
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.9",
382
+ "status" : "current",
383
+ "syntax" : {
384
+ "type" : { "module" :"", "name" : "Unsigned32"},
385
+ },
386
+ "access" : "readonly",
387
+ "description" :
388
+ """The association ID used for the SCTP session between the
389
+ Exporter and the Collector of the IPFIX Transport Session.
390
+ It is equal to the sctpAssocId entry in the sctpAssocTable
391
+ defined in the SCTP MIB. This object is only valid if
392
+ ipfixTransportSessionProtocol has the value 132 (SCTP). In
393
+ all other cases, the value MUST be zero.""",
394
+ "reference" :
395
+ """RFC 3873, Stream Control Transmission Protocol (SCTP)
396
+ Management Information Base (MIB).""",
397
+ }, # column
398
+ "ipfixTransportSessionDeviceMode" : {
399
+ "nodetype" : "column",
400
+ "moduleName" : "IPFIX-MIB",
401
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.10",
402
+ "status" : "current",
403
+ "syntax" : {
404
+ "type" : {
405
+ "basetype" : "Enumeration",
406
+ "exporting" : {
407
+ "nodetype" : "namednumber",
408
+ "number" : "1"
409
+ },
410
+ "collecting" : {
411
+ "nodetype" : "namednumber",
412
+ "number" : "2"
413
+ },
414
+ },
415
+ },
416
+ "access" : "readonly",
417
+ "description" :
418
+ """The mode of operation of the device for the given Transport
419
+ Session. This object can have the following values:
420
+
421
+ exporting(1)
422
+ This value MUST be used if the Transport Session is
423
+ used for exporting Records to other IPFIX Devices;
424
+ i.e., this device acts as Exporter.
425
+
426
+ collecting(2)
427
+ This value MUST be used if the Transport Session is
428
+ used for collecting Records from other IPFIX Devices;
429
+ i.e., this device acts as Collector.""",
430
+ }, # column
431
+ "ipfixTransportSessionTemplateRefreshTimeout" : {
432
+ "nodetype" : "column",
433
+ "moduleName" : "IPFIX-MIB",
434
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.11",
435
+ "status" : "current",
436
+ "syntax" : {
437
+ "type" : { "module" :"", "name" : "Unsigned32"},
438
+ },
439
+ "access" : "readonly",
440
+ "units" : "seconds",
441
+ "description" :
442
+ """On Exporters, this object contains the time in seconds
443
+ after which IPFIX Templates are resent by the
444
+ Exporter.
445
+
446
+
447
+
448
+
449
+ On Collectors, this object contains the lifetime in seconds
450
+ after which a Template becomes invalid when it is not
451
+ received again within this lifetime.
452
+
453
+ This object is only valid if ipfixTransportSessionProtocol
454
+ has the value 17 (UDP). In all other cases, the value MUST
455
+ be zero.""",
456
+ "reference" :
457
+ """RFC 5101, Specification of the IP Flow Information Export
458
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
459
+ Information, Sections 10.3.6 and 10.3.7.""",
460
+ }, # column
461
+ "ipfixTransportSessionOptionsTemplateRefreshTimeout" : {
462
+ "nodetype" : "column",
463
+ "moduleName" : "IPFIX-MIB",
464
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.12",
465
+ "status" : "current",
466
+ "syntax" : {
467
+ "type" : { "module" :"", "name" : "Unsigned32"},
468
+ },
469
+ "access" : "readonly",
470
+ "units" : "seconds",
471
+ "description" :
472
+ """On Exporters, this object contains the time in seconds
473
+ after which IPFIX Options Templates are resent by the
474
+ Exporter.
475
+
476
+ On Collectors, this object contains the lifetime in seconds
477
+ after which an Options Template becomes invalid when it is
478
+ not received again within this lifetime.
479
+
480
+ This object is only valid if ipfixTransportSessionProtocol
481
+ has the value 17 (UDP). In all other cases, the value MUST
482
+ be zero.""",
483
+ "reference" :
484
+ """RFC 5101, Specification of the IP Flow Information Export
485
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
486
+ Information, Sections 10.3.6 and 10.3.7.""",
487
+ }, # column
488
+ "ipfixTransportSessionTemplateRefreshPacket" : {
489
+ "nodetype" : "column",
490
+ "moduleName" : "IPFIX-MIB",
491
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.13",
492
+ "status" : "current",
493
+ "syntax" : {
494
+ "type" : { "module" :"", "name" : "Unsigned32"},
495
+ },
496
+ "access" : "readonly",
497
+ "units" : "packets",
498
+ "description" :
499
+ """On Exporters, this object contains the number of exported
500
+ IPFIX Messages after which IPFIX Templates are resent
501
+ by the Exporter.
502
+
503
+
504
+
505
+
506
+
507
+
508
+ On Collectors, this object contains the lifetime in number
509
+ of exported IPFIX Messages after which a Template becomes
510
+ invalid when it is not received again within this lifetime.
511
+
512
+ This object is only valid if ipfixTransportSessionProtocol
513
+ has the value 17 (UDP). In all other cases, the value MUST
514
+ be zero.""",
515
+ "reference" :
516
+ """RFC 5101, Specification of the IP Flow Information Export
517
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
518
+ Information, Sections 10.3.6 and 10.3.7.""",
519
+ }, # column
520
+ "ipfixTransportSessionOptionsTemplateRefreshPacket" : {
521
+ "nodetype" : "column",
522
+ "moduleName" : "IPFIX-MIB",
523
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.14",
524
+ "status" : "current",
525
+ "syntax" : {
526
+ "type" : { "module" :"", "name" : "Unsigned32"},
527
+ },
528
+ "access" : "readonly",
529
+ "units" : "packets",
530
+ "description" :
531
+ """On Exporters, this object contains the number of exported
532
+ IPFIX Messages after which IPFIX Options Templates are
533
+ resent by the Exporter.
534
+
535
+ On Collectors, this object contains the lifetime in number
536
+ of exported IPFIX Messages after which an Options Template
537
+ becomes invalid when it is not received again within this
538
+ lifetime.
539
+
540
+ This object is only valid if ipfixTransportSessionProtocol
541
+ has the value 17 (UDP). In all other cases, the value MUST
542
+ be zero.""",
543
+ "reference" :
544
+ """RFC 5101, Specification of the IP Flow Information Export
545
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
546
+ Information, Sections 10.3.6 and 10.3.7.""",
547
+ }, # column
548
+ "ipfixTransportSessionIpfixVersion" : {
549
+ "nodetype" : "column",
550
+ "moduleName" : "IPFIX-MIB",
551
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.15",
552
+ "status" : "current",
553
+ "syntax" : {
554
+ "type" : {
555
+ "basetype" : "Unsigned32",
556
+ "ranges" : [
557
+ {
558
+ "min" : "0",
559
+ "max" : "65535"
560
+ },
561
+ ],
562
+ "range" : {
563
+ "min" : "0",
564
+ "max" : "65535"
565
+ },
566
+ },
567
+ },
568
+ "access" : "readonly",
569
+ "description" :
570
+ """On Exporters, the object contains the version number of the
571
+ IPFIX protocol that the Exporter uses to export its data in
572
+ this Transport Session.
573
+
574
+ On Collectors, the object contains the version number of the
575
+ IPFIX protocol it receives for this Transport Session.
576
+
577
+
578
+
579
+ If IPFIX Messages of different IPFIX protocol versions are
580
+ transmitted or received in this Transport Session, this
581
+ object contains the maximum version number.""",
582
+ "reference" :
583
+ """RFC 5101, Specification of the IP Flow Information Export
584
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
585
+ Information, Section 3.1.""",
586
+ }, # column
587
+ "ipfixTransportSessionStatus" : {
588
+ "nodetype" : "column",
589
+ "moduleName" : "IPFIX-MIB",
590
+ "oid" : "1.3.6.1.2.1.193.1.1.1.1.16",
591
+ "status" : "current",
592
+ "syntax" : {
593
+ "type" : {
594
+ "basetype" : "Enumeration",
595
+ "unknown" : {
596
+ "nodetype" : "namednumber",
597
+ "number" : "0"
598
+ },
599
+ "inactive" : {
600
+ "nodetype" : "namednumber",
601
+ "number" : "1"
602
+ },
603
+ "active" : {
604
+ "nodetype" : "namednumber",
605
+ "number" : "2"
606
+ },
607
+ },
608
+ },
609
+ "access" : "readonly",
610
+ "description" :
611
+ """The status of a Transport Session. This object can have the
612
+ following values:
613
+
614
+ unknown(0)
615
+ This value MUST be used if the status of the
616
+ Transport Session cannot be detected by the equipment.
617
+ This value should be avoided as far as possible.
618
+
619
+ inactive(1)
620
+ This value MUST be used for Transport Sessions that
621
+ are specified in the system but are not currently active.
622
+ The value can be used, for example, for Transport
623
+ Sessions that are backup (secondary) sessions in a
624
+ Transport Session group.
625
+
626
+ active(2)
627
+ This value MUST be used for Transport Sessions that are
628
+ currently active and transmitting or receiving data.""",
629
+ }, # column
630
+ "ipfixTemplateTable" : {
631
+ "nodetype" : "table",
632
+ "moduleName" : "IPFIX-MIB",
633
+ "oid" : "1.3.6.1.2.1.193.1.1.2",
634
+ "status" : "current",
635
+ "description" :
636
+ """This table lists the Templates and Options Templates that
637
+ are transmitted by the Exporting Process or received by the
638
+ Collecting Process.
639
+
640
+ The table contains the Templates and Options Templates that
641
+ are received or used for exporting data for a given
642
+ Transport Session group and Observation Domain.
643
+
644
+ Withdrawn or invalidated (Options) Templates MUST be removed
645
+ from this table.""",
646
+ }, # table
647
+ "ipfixTemplateEntry" : {
648
+ "nodetype" : "row",
649
+ "moduleName" : "IPFIX-MIB",
650
+ "oid" : "1.3.6.1.2.1.193.1.1.2.1",
651
+ "status" : "current",
652
+ "linkage" : [
653
+ "ipfixTransportSessionIndex",
654
+ "ipfixTemplateObservationDomainId",
655
+ "ipfixTemplateId",
656
+ ],
657
+ "description" :
658
+ """Defines an entry in the ipfixTemplateTable.""",
659
+ }, # row
660
+ "ipfixTemplateObservationDomainId" : {
661
+ "nodetype" : "column",
662
+ "moduleName" : "IPFIX-MIB",
663
+ "oid" : "1.3.6.1.2.1.193.1.1.2.1.1",
664
+ "status" : "current",
665
+ "syntax" : {
666
+ "type" : {
667
+ "basetype" : "Unsigned32",
668
+ "ranges" : [
669
+ {
670
+ "min" : "0",
671
+ "max" : "4294967295"
672
+ },
673
+ ],
674
+ "range" : {
675
+ "min" : "0",
676
+ "max" : "4294967295"
677
+ },
678
+ },
679
+ },
680
+ "access" : "noaccess",
681
+ "description" :
682
+ """The ID of the Observation Domain for which this Template
683
+ is defined. This value is used when sending IPFIX Messages.
684
+
685
+
686
+
687
+ The special value of 0 indicates that the Data Records
688
+ exported with this (Options Template) cannot be applied to a
689
+ single Observation Domain.""",
690
+ "reference" :
691
+ """RFC 5101, Specification of the IP Flow Information Export
692
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
693
+ Information, Section 3.1.""",
694
+ }, # column
695
+ "ipfixTemplateId" : {
696
+ "nodetype" : "column",
697
+ "moduleName" : "IPFIX-MIB",
698
+ "oid" : "1.3.6.1.2.1.193.1.1.2.1.2",
699
+ "status" : "current",
700
+ "syntax" : {
701
+ "type" : {
702
+ "basetype" : "Unsigned32",
703
+ "ranges" : [
704
+ {
705
+ "min" : "256",
706
+ "max" : "65535"
707
+ },
708
+ ],
709
+ "range" : {
710
+ "min" : "256",
711
+ "max" : "65535"
712
+ },
713
+ },
714
+ },
715
+ "access" : "noaccess",
716
+ "description" :
717
+ """This number indicates the Template ID in the IPFIX
718
+ Message. Values from 0 to 255 are not allowed for Template
719
+ IDs.""",
720
+ "reference" :
721
+ """RFC 5101, Specification of the IP Flow Information Export
722
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
723
+ Information, Section 3.4.1.""",
724
+ }, # column
725
+ "ipfixTemplateSetId" : {
726
+ "nodetype" : "column",
727
+ "moduleName" : "IPFIX-MIB",
728
+ "oid" : "1.3.6.1.2.1.193.1.1.2.1.3",
729
+ "status" : "current",
730
+ "syntax" : {
731
+ "type" : {
732
+ "basetype" : "Unsigned32",
733
+ "ranges" : [
734
+ {
735
+ "min" : "1",
736
+ "max" : "65535"
737
+ },
738
+ ],
739
+ "range" : {
740
+ "min" : "1",
741
+ "max" : "65535"
742
+ },
743
+ },
744
+ },
745
+ "access" : "readonly",
746
+ "description" :
747
+ """This number indicates the Set ID of the Template. This
748
+ object allows the Template type to be easily retrieved.
749
+
750
+ Currently, there are two values defined. The value 2 is
751
+ used for Sets containing Template definitions. The value 3
752
+ is used for Sets containing Options Template definitions.""",
753
+ "reference" :
754
+ """RFC 5101, Specification of the IP Flow Information Export
755
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
756
+ Information, Section 3.3.2.""",
757
+ }, # column
758
+ "ipfixTemplateAccessTime" : {
759
+ "nodetype" : "column",
760
+ "moduleName" : "IPFIX-MIB",
761
+ "oid" : "1.3.6.1.2.1.193.1.1.2.1.4",
762
+ "status" : "current",
763
+ "syntax" : {
764
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
765
+ },
766
+ "access" : "readonly",
767
+ "description" :
768
+ """If the Transport Session is in exporting mode
769
+ (ipfixTransportSessionDeviceMode) the time when this
770
+ (Options) Template was last sent to the Collector(s).
771
+
772
+
773
+
774
+ In the specific case of UDP as transport protocol, this
775
+ time is used to know when a retransmission of the
776
+ (Options) Template is needed.
777
+
778
+ If the Transport Session is in collecting mode, this object
779
+ contains the time when this (Options) Template was last
780
+ received from the Exporter. In the specific case of UDP as
781
+ transport protocol, this time is used to know when this
782
+ (Options) Template times out and thus is no longer valid.""",
783
+ }, # column
784
+ "ipfixTemplateDefinitionTable" : {
785
+ "nodetype" : "table",
786
+ "moduleName" : "IPFIX-MIB",
787
+ "oid" : "1.3.6.1.2.1.193.1.1.3",
788
+ "status" : "current",
789
+ "description" :
790
+ """On Exporters, this table lists the (Options) Template fields
791
+ of which a (Options) Template is defined. It defines the
792
+ (Options) Template given in the ipfixTemplateId specified in
793
+ the ipfixTemplateTable.
794
+
795
+ On Collectors, this table lists the (Options) Template fields
796
+ of which a (Options) Template is defined. It defines the
797
+ (Options) Template given in the ipfixTemplateId specified in
798
+ the ipfixTemplateTable.""",
799
+ }, # table
800
+ "ipfixTemplateDefinitionEntry" : {
801
+ "nodetype" : "row",
802
+ "moduleName" : "IPFIX-MIB",
803
+ "oid" : "1.3.6.1.2.1.193.1.1.3.1",
804
+ "status" : "current",
805
+ "linkage" : [
806
+ "ipfixTransportSessionIndex",
807
+ "ipfixTemplateObservationDomainId",
808
+ "ipfixTemplateId",
809
+ "ipfixTemplateDefinitionIndex",
810
+ ],
811
+ "description" :
812
+ """Defines an entry in the ipfixTemplateDefinitionTable.""",
813
+ }, # row
814
+ "ipfixTemplateDefinitionIndex" : {
815
+ "nodetype" : "column",
816
+ "moduleName" : "IPFIX-MIB",
817
+ "oid" : "1.3.6.1.2.1.193.1.1.3.1.1",
818
+ "status" : "current",
819
+ "syntax" : {
820
+ "type" : {
821
+ "basetype" : "Unsigned32",
822
+ "ranges" : [
823
+ {
824
+ "min" : "1",
825
+ "max" : "65535"
826
+ },
827
+ ],
828
+ "range" : {
829
+ "min" : "1",
830
+ "max" : "65535"
831
+ },
832
+ },
833
+ },
834
+ "access" : "noaccess",
835
+ "description" :
836
+ """The ipfixTemplateDefinitionIndex specifies the order in
837
+ which the Information Elements are used in the (Options)
838
+ Template Record.
839
+
840
+ Since a Template Record can contain a maximum of 65535
841
+ Information Elements, the index is limited to this value.""",
842
+ "reference" :
843
+ """RFC 5101, Specification of the IP Flow Information Export
844
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
845
+ Information, Sections 3.4.1 and 3.4.2.""",
846
+ }, # column
847
+ "ipfixTemplateDefinitionIeId" : {
848
+ "nodetype" : "column",
849
+ "moduleName" : "IPFIX-MIB",
850
+ "oid" : "1.3.6.1.2.1.193.1.1.3.1.2",
851
+ "status" : "current",
852
+ "syntax" : {
853
+ "type" : {
854
+ "basetype" : "Unsigned32",
855
+ "ranges" : [
856
+ {
857
+ "min" : "1",
858
+ "max" : "65535"
859
+ },
860
+ ],
861
+ "range" : {
862
+ "min" : "1",
863
+ "max" : "65535"
864
+ },
865
+ },
866
+ },
867
+ "access" : "readonly",
868
+ "description" :
869
+ """This indicates the Information Element ID at position
870
+ ipfixTemplateDefinitionIndex in the (Options) Template
871
+ ipfixTemplateId. This implicitly specifies the data type
872
+ of the Information Element. The elements are registered
873
+ at IANA. A current list of assignments can be found at
874
+ <http://www.iana.org/assignments/ipfix/>.""",
875
+ "reference" :
876
+ """RFC 5101, Specification of the IP Flow Information Export
877
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
878
+ Information, Section 3.2.
879
+
880
+ RFC 5102, Information Model for IP Flow Information Export.""",
881
+ }, # column
882
+ "ipfixTemplateDefinitionIeLength" : {
883
+ "nodetype" : "column",
884
+ "moduleName" : "IPFIX-MIB",
885
+ "oid" : "1.3.6.1.2.1.193.1.1.3.1.3",
886
+ "status" : "current",
887
+ "syntax" : {
888
+ "type" : {
889
+ "basetype" : "Unsigned32",
890
+ "ranges" : [
891
+ {
892
+ "min" : "0",
893
+ "max" : "65535"
894
+ },
895
+ ],
896
+ "range" : {
897
+ "min" : "0",
898
+ "max" : "65535"
899
+ },
900
+ },
901
+ },
902
+ "access" : "readonly",
903
+ "description" :
904
+ """This indicates the length of the Information Element ID at
905
+ position ipfixTemplateDefinitionIndex in the (Options)
906
+ Template ipfixTemplateId.""",
907
+ "reference" :
908
+ """RFC 5101, Specification of the IP Flow Information Export
909
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
910
+ Information, Section 3.2.
911
+
912
+ RFC 5102, Information Model for IP Flow Information Export.""",
913
+ }, # column
914
+ "ipfixTemplateDefinitionEnterpriseNumber" : {
915
+ "nodetype" : "column",
916
+ "moduleName" : "IPFIX-MIB",
917
+ "oid" : "1.3.6.1.2.1.193.1.1.3.1.4",
918
+ "status" : "current",
919
+ "syntax" : {
920
+ "type" : { "module" :"", "name" : "Unsigned32"},
921
+ },
922
+ "access" : "readonly",
923
+ "description" :
924
+ """IANA enterprise number of the authority defining the
925
+ Information Element identifier in this Template Record.
926
+ Enterprise numbers are assigned by IANA. A current list of
927
+ all assignments is available from
928
+ <http://www.iana.org/assignments/enterprise-numbers/>.
929
+
930
+ This object must be zero(0) for all standard Information
931
+ Elements registered with IANA. A current list of these
932
+ elements is available from
933
+ <http://www.iana.org/assignments/ipfix/>.""",
934
+ "reference" :
935
+ """RFC 5101, Specification of the IP Flow Information Export
936
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
937
+ Information, Section 3.2.
938
+
939
+ RFC 5102, Information Model for IP Flow Information Export.""",
940
+ }, # column
941
+ "ipfixTemplateDefinitionFlags" : {
942
+ "nodetype" : "column",
943
+ "moduleName" : "IPFIX-MIB",
944
+ "oid" : "1.3.6.1.2.1.193.1.1.3.1.5",
945
+ "status" : "current",
946
+ "syntax" : {
947
+ "type" : {
948
+ "basetype" : "Bits",
949
+ "scope" : {
950
+ "nodetype" : "namednumber",
951
+ "number" : "0"
952
+ },
953
+ "flowKey" : {
954
+ "nodetype" : "namednumber",
955
+ "number" : "1"
956
+ },
957
+ },
958
+ },
959
+ "access" : "readonly",
960
+ "description" :
961
+ """This bitmask indicates special attributes for the
962
+ Information Element:
963
+
964
+ scope(0)
965
+ This Information Element is used for scope.
966
+
967
+
968
+
969
+ flowKey(1)
970
+ This Information Element is a Flow Key.
971
+
972
+ Thus, we get the following values for an Information Element:
973
+
974
+ If neither bit scope(0) nor bit flowKey(1) is set
975
+ The Information Element is neither used for scoping nor
976
+ as Flow Key.
977
+ If only bit scope(0) is set
978
+ The Information Element is used for scoping.
979
+ If only bit flowKey(1) is set
980
+ The Information Element is used as Flow Key.
981
+
982
+ Both bit scope(0) and flowKey(1) MUST NOT be set at the same
983
+ time. This combination is not allowed.""",
984
+ "reference" :
985
+ """RFC 5101, Specification of the IP Flow Information Export
986
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
987
+ Information, Sections 2 and 3.4.2.1.
988
+
989
+ RFC 5102, Information Model for IP Flow Information Export.""",
990
+ }, # column
991
+ "ipfixExportTable" : {
992
+ "nodetype" : "table",
993
+ "moduleName" : "IPFIX-MIB",
994
+ "oid" : "1.3.6.1.2.1.193.1.1.4",
995
+ "status" : "current",
996
+ "description" :
997
+ """This table lists all exports of an IPFIX Device.
998
+
999
+ On Exporters, this table contains all exports grouped by
1000
+ Transport Session, Observation Domain ID, Template ID, and
1001
+ Metering Process represented by the
1002
+ ipfixMeteringProcessCacheId. Thanks to the ipfixExportIndex,
1003
+ the exports can group one or more Transport Sessions to
1004
+ achieve a special functionality like failover management,
1005
+ load-balancing, etc. The entries with the same
1006
+ ipfixExportIndex, ipfixObservationDomainId,
1007
+ and ipfixMeteringProcessCacheId define a Transport
1008
+ Session group. If the Exporter does not use Transport
1009
+ Session grouping, then each ipfixExportIndex contains a
1010
+ single ipfixMeteringProcessCacheId, and thus a single
1011
+ Transport Session; this session MUST have a member type
1012
+
1013
+
1014
+
1015
+
1016
+
1017
+ value of primary(1). Transport Sessions referenced in this
1018
+ table MUST have a ipfixTransportSessionDeviceMode value of
1019
+ exporting(1).
1020
+
1021
+ On Collectors, this table is not needed.""",
1022
+ }, # table
1023
+ "ipfixExportEntry" : {
1024
+ "nodetype" : "row",
1025
+ "moduleName" : "IPFIX-MIB",
1026
+ "oid" : "1.3.6.1.2.1.193.1.1.4.1",
1027
+ "status" : "current",
1028
+ "linkage" : [
1029
+ "ipfixExportIndex",
1030
+ "ipfixMeteringProcessCacheId",
1031
+ "ipfixTransportSessionIndex",
1032
+ ],
1033
+ "description" :
1034
+ """Defines an entry in the ipfixExportTable.""",
1035
+ }, # row
1036
+ "ipfixExportIndex" : {
1037
+ "nodetype" : "column",
1038
+ "moduleName" : "IPFIX-MIB",
1039
+ "oid" : "1.3.6.1.2.1.193.1.1.4.1.1",
1040
+ "status" : "current",
1041
+ "syntax" : {
1042
+ "type" : {
1043
+ "basetype" : "Unsigned32",
1044
+ "ranges" : [
1045
+ {
1046
+ "min" : "1",
1047
+ "max" : "4294967295"
1048
+ },
1049
+ ],
1050
+ "range" : {
1051
+ "min" : "1",
1052
+ "max" : "4294967295"
1053
+ },
1054
+ },
1055
+ },
1056
+ "access" : "noaccess",
1057
+ "description" :
1058
+ """Locally arbitrary, but unique identifier of an entry in
1059
+ the ipfixExportTable. The value is expected
1060
+ to remain constant from a re-initialization of the entity's
1061
+ network management agent to the next re-initialization.
1062
+
1063
+ A common ipfixExportIndex between two entries from this
1064
+ table indicates that there is a relationship between the
1065
+ Transport Sessions in ipfixTransportSessionIndex. The type
1066
+ of relationship is expressed by the value of
1067
+ ipfixExportMemberType.""",
1068
+ }, # column
1069
+ "ipfixExportMemberType" : {
1070
+ "nodetype" : "column",
1071
+ "moduleName" : "IPFIX-MIB",
1072
+ "oid" : "1.3.6.1.2.1.193.1.1.4.1.2",
1073
+ "status" : "current",
1074
+ "syntax" : {
1075
+ "type" : {
1076
+ "basetype" : "Enumeration",
1077
+ "unknown" : {
1078
+ "nodetype" : "namednumber",
1079
+ "number" : "0"
1080
+ },
1081
+ "primary" : {
1082
+ "nodetype" : "namednumber",
1083
+ "number" : "1"
1084
+ },
1085
+ "secondary" : {
1086
+ "nodetype" : "namednumber",
1087
+ "number" : "2"
1088
+ },
1089
+ "parallel" : {
1090
+ "nodetype" : "namednumber",
1091
+ "number" : "3"
1092
+ },
1093
+ "loadBalancing" : {
1094
+ "nodetype" : "namednumber",
1095
+ "number" : "4"
1096
+ },
1097
+ },
1098
+ },
1099
+ "access" : "readonly",
1100
+ "description" :
1101
+ """The type of member Transport Session in a Transport
1102
+ Session group (identified by the value of ipfixExportIndex,
1103
+ ipfixObservationDomainId, and ipfixMeteringProcessCacheId).
1104
+ The following values are valid:
1105
+
1106
+ unknown(0)
1107
+ This value MUST be used if the status of the group
1108
+ membership cannot be detected by the equipment. This
1109
+ value should be avoided as far as possible.
1110
+
1111
+ primary(1)
1112
+ This value is used for a group member that is used as
1113
+ the primary target of an Exporter. Other group members
1114
+ (with the same ipfixExportIndex and
1115
+ ipfixMeteringProcessCacheId) MUST NOT have the value
1116
+ primary(1) but MUST have the value secondary(2).
1117
+ This value MUST also be specified if the Exporter does
1118
+ not support Transport Session grouping. In this case,
1119
+ the group contains only one Transport Session.
1120
+
1121
+ secondary(2)
1122
+ This value is used for a group member that is used as a
1123
+ secondary target of an Exporter. The Exporter will use
1124
+ one of the targets specified as secondary(2) within the
1125
+ same Transport Session group when the primary target is
1126
+ not reachable.
1127
+
1128
+ parallel(3)
1129
+ This value is used for a group member that is used for
1130
+ duplicate exporting (i.e., all group members identified
1131
+ by the ipfixExportIndex are exporting the same Records
1132
+ in parallel). This implies that all group members MUST
1133
+ have the same member type (i.e., parallel(3)).
1134
+
1135
+ loadBalancing(4)
1136
+ This value is used for a group member that is used
1137
+ as one target for load-balancing. This means that a
1138
+ Record is sent to one of the group members in this
1139
+ group identified by ipfixExportIndex.
1140
+ This implies that all group members MUST have the same
1141
+ member type (i.e., loadBalancing(4)).""",
1142
+ }, # column
1143
+ "ipfixMeteringProcessTable" : {
1144
+ "nodetype" : "table",
1145
+ "moduleName" : "IPFIX-MIB",
1146
+ "oid" : "1.3.6.1.2.1.193.1.1.5",
1147
+ "status" : "current",
1148
+ "description" :
1149
+ """This table lists so-called caches used at the Metering
1150
+ Process to store the metering data of Flows observed at
1151
+ the Observation Points given in the
1152
+ ipfixObservationPointGroupReference. The table lists the
1153
+ timeouts that specify when the cached metering data is
1154
+ expired.
1155
+
1156
+ On Collectors, the table is not needed.""",
1157
+ }, # table
1158
+ "ipfixMeteringProcessEntry" : {
1159
+ "nodetype" : "row",
1160
+ "moduleName" : "IPFIX-MIB",
1161
+ "oid" : "1.3.6.1.2.1.193.1.1.5.1",
1162
+ "status" : "current",
1163
+ "linkage" : [
1164
+ "ipfixMeteringProcessCacheId",
1165
+ ],
1166
+ "description" :
1167
+ """Defines an entry in the ipfixMeteringProcessTable.""",
1168
+ }, # row
1169
+ "ipfixMeteringProcessCacheId" : {
1170
+ "nodetype" : "column",
1171
+ "moduleName" : "IPFIX-MIB",
1172
+ "oid" : "1.3.6.1.2.1.193.1.1.5.1.1",
1173
+ "status" : "current",
1174
+ "syntax" : {
1175
+ "type" : {
1176
+ "basetype" : "Unsigned32",
1177
+ "ranges" : [
1178
+ {
1179
+ "min" : "1",
1180
+ "max" : "4294967295"
1181
+ },
1182
+ ],
1183
+ "range" : {
1184
+ "min" : "1",
1185
+ "max" : "4294967295"
1186
+ },
1187
+ },
1188
+ },
1189
+ "access" : "noaccess",
1190
+ "description" :
1191
+ """Locally arbitrary, but unique identifier of an entry in the
1192
+ ipfixMeteringProcessTable. The value is expected to remain
1193
+ constant from a re-initialization of the entity's network
1194
+ management agent to the next re-initialization.""",
1195
+ }, # column
1196
+ "ipfixMeteringProcessObservationPointGroupRef" : {
1197
+ "nodetype" : "column",
1198
+ "moduleName" : "IPFIX-MIB",
1199
+ "oid" : "1.3.6.1.2.1.193.1.1.5.1.2",
1200
+ "status" : "current",
1201
+ "syntax" : {
1202
+ "type" : { "module" :"", "name" : "Unsigned32"},
1203
+ },
1204
+ "access" : "readonly",
1205
+ "description" :
1206
+ """The Observation Point Group ID that links this table entry
1207
+ to the ipfixObservationPointTable. The matching
1208
+ ipfixObservationPointGroupId in that table gives the
1209
+ Observation Points used in that cache. If the Observation
1210
+ Points are unknown, the
1211
+ ipfixMeteringProcessObservationPointGroupRef MUST be zero.""",
1212
+ }, # column
1213
+ "ipfixMeteringProcessCacheActiveTimeout" : {
1214
+ "nodetype" : "column",
1215
+ "moduleName" : "IPFIX-MIB",
1216
+ "oid" : "1.3.6.1.2.1.193.1.1.5.1.3",
1217
+ "status" : "current",
1218
+ "syntax" : {
1219
+ "type" : { "module" :"", "name" : "Unsigned32"},
1220
+ },
1221
+ "access" : "readonly",
1222
+ "units" : "seconds",
1223
+ "description" :
1224
+ """On the Exporter, this object contains the time after which a
1225
+ Flow is expired (and a Data Record for the Template is sent),
1226
+ even though packets matching this Flow are still received by
1227
+ the Metering Process. If this value is 0, the Flow is not
1228
+ prematurely expired.""",
1229
+ "reference" :
1230
+ """RFC 5470, Architecture for IP Flow Information Export,
1231
+ Section 5.1.1, item 3.""",
1232
+ }, # column
1233
+ "ipfixMeteringProcessCacheIdleTimeout" : {
1234
+ "nodetype" : "column",
1235
+ "moduleName" : "IPFIX-MIB",
1236
+ "oid" : "1.3.6.1.2.1.193.1.1.5.1.4",
1237
+ "status" : "current",
1238
+ "syntax" : {
1239
+ "type" : { "module" :"", "name" : "Unsigned32"},
1240
+ },
1241
+ "access" : "readonly",
1242
+ "units" : "seconds",
1243
+ "description" :
1244
+ """On the Exporter, this object contains the time after which a
1245
+ Flow is expired (and a Data Record for the Template is sent)
1246
+ when no packets matching this Flow are received by the
1247
+ Metering Process for the given number of seconds. If this
1248
+ value is zero, the Flow is expired immediately; i.e., a Data
1249
+ Record is sent for every packet received by the Metering
1250
+ Process.""",
1251
+ "reference" :
1252
+ """RFC 5470, Architecture for IP Flow Information Export,
1253
+ Section 5.1.1, item 1""",
1254
+ }, # column
1255
+ "ipfixObservationPointTable" : {
1256
+ "nodetype" : "table",
1257
+ "moduleName" : "IPFIX-MIB",
1258
+ "oid" : "1.3.6.1.2.1.193.1.1.6",
1259
+ "status" : "current",
1260
+ "description" :
1261
+ """This table lists the Observation Points used within an
1262
+ Exporter by the Metering Process. The index
1263
+ ipfixObservationPointGroupId groups Observation Points
1264
+ and is referenced in the Metering Process table.
1265
+
1266
+ On Collectors, this table is not needed.""",
1267
+ }, # table
1268
+ "ipfixObservationPointEntry" : {
1269
+ "nodetype" : "row",
1270
+ "moduleName" : "IPFIX-MIB",
1271
+ "oid" : "1.3.6.1.2.1.193.1.1.6.1",
1272
+ "status" : "current",
1273
+ "linkage" : [
1274
+ "ipfixObservationPointGroupId",
1275
+ "ipfixObservationPointIndex",
1276
+ ],
1277
+ "description" :
1278
+ """Defines an entry in the ipfixObservationPointTable.""",
1279
+ }, # row
1280
+ "ipfixObservationPointGroupId" : {
1281
+ "nodetype" : "column",
1282
+ "moduleName" : "IPFIX-MIB",
1283
+ "oid" : "1.3.6.1.2.1.193.1.1.6.1.1",
1284
+ "status" : "current",
1285
+ "syntax" : {
1286
+ "type" : {
1287
+ "basetype" : "Unsigned32",
1288
+ "ranges" : [
1289
+ {
1290
+ "min" : "1",
1291
+ "max" : "4294967295"
1292
+ },
1293
+ ],
1294
+ "range" : {
1295
+ "min" : "1",
1296
+ "max" : "4294967295"
1297
+ },
1298
+ },
1299
+ },
1300
+ "access" : "noaccess",
1301
+ "description" :
1302
+ """Locally arbitrary, but unique identifier of an entry in the
1303
+ ipfixObservationPointTable. The value is expected to remain
1304
+ constant from a re-initialization of the entity's network
1305
+ management agent to the next re-initialization.
1306
+
1307
+
1308
+
1309
+
1310
+ This index represents a group of Observation Points.
1311
+
1312
+ The special value of 0 MUST NOT be used within this table
1313
+ but is reserved for usage in the ipfixMeteringProcessTable.
1314
+ An index of 0 for the ipfixObservationPointGroupReference
1315
+ index in that table indicates that an Observation Point is
1316
+ unknown or unspecified for a Metering Process cache.""",
1317
+ }, # column
1318
+ "ipfixObservationPointIndex" : {
1319
+ "nodetype" : "column",
1320
+ "moduleName" : "IPFIX-MIB",
1321
+ "oid" : "1.3.6.1.2.1.193.1.1.6.1.2",
1322
+ "status" : "current",
1323
+ "syntax" : {
1324
+ "type" : {
1325
+ "basetype" : "Unsigned32",
1326
+ "ranges" : [
1327
+ {
1328
+ "min" : "1",
1329
+ "max" : "4294967295"
1330
+ },
1331
+ ],
1332
+ "range" : {
1333
+ "min" : "1",
1334
+ "max" : "4294967295"
1335
+ },
1336
+ },
1337
+ },
1338
+ "access" : "noaccess",
1339
+ "description" :
1340
+ """Locally arbitrary, but unique identifier of an entry in the
1341
+ ipfixObservationPointTable. The value is expected to remain
1342
+ constant from a re-initialization of the entity's network
1343
+ management agent to the next re-initialization.
1344
+
1345
+ This index represents a single Observation Point in an
1346
+ Observation Point group.""",
1347
+ }, # column
1348
+ "ipfixObservationPointObservationDomainId" : {
1349
+ "nodetype" : "column",
1350
+ "moduleName" : "IPFIX-MIB",
1351
+ "oid" : "1.3.6.1.2.1.193.1.1.6.1.3",
1352
+ "status" : "current",
1353
+ "syntax" : {
1354
+ "type" : { "module" :"", "name" : "Unsigned32"},
1355
+ },
1356
+ "access" : "readonly",
1357
+ "description" :
1358
+ """The ID of the Observation Domain in which this
1359
+ Observation Point is included.
1360
+
1361
+ The special value of 0 indicates that the Observation
1362
+ Points within this group cannot be applied to a single
1363
+ Observation Domain.""",
1364
+ "reference" :
1365
+ """RFC 5101, Specification of the IP Flow Information Export
1366
+ (IPFIX) Protocol for the Exchange of IP Traffic Flow
1367
+ Information, Section 3.1.""",
1368
+ }, # column
1369
+ "ipfixObservationPointPhysicalEntity" : {
1370
+ "nodetype" : "column",
1371
+ "moduleName" : "IPFIX-MIB",
1372
+ "oid" : "1.3.6.1.2.1.193.1.1.6.1.4",
1373
+ "status" : "current",
1374
+ "syntax" : {
1375
+ "type" : { "module" :"ENTITY-MIB", "name" : "PhysicalIndexOrZero"},
1376
+ },
1377
+ "access" : "readonly",
1378
+ "description" :
1379
+ """This object contains the index of a physical entity in
1380
+ the ENTITY MIB. This physical entity is the given
1381
+ Observation Point. If such a physical entity cannot be
1382
+
1383
+
1384
+
1385
+ specified or is not known, then the object is zero.""",
1386
+ }, # column
1387
+ "ipfixObservationPointPhysicalInterface" : {
1388
+ "nodetype" : "column",
1389
+ "moduleName" : "IPFIX-MIB",
1390
+ "oid" : "1.3.6.1.2.1.193.1.1.6.1.5",
1391
+ "status" : "current",
1392
+ "syntax" : {
1393
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
1394
+ },
1395
+ "access" : "readonly",
1396
+ "description" :
1397
+ """This object contains the index of a physical interface in
1398
+ the Interfaces MIB. This physical interface is the given
1399
+ Observation Point. If such a physical interface cannot be
1400
+ specified or is not known, then the object is zero.
1401
+
1402
+ This object MAY be used alone or in addition to
1403
+ ipfixObservationPointPhysicalEntity. If
1404
+ ipfixObservationPointPhysicalEntity is not zero, this
1405
+ object MUST point to the same physical interface that is
1406
+ referenced in ipfixObservationPointPhysicalEntity.
1407
+ Otherwise, it may reference any interface in the
1408
+ Interfaces MIB.""",
1409
+ }, # column
1410
+ "ipfixObservationPointPhysicalEntityDirection" : {
1411
+ "nodetype" : "column",
1412
+ "moduleName" : "IPFIX-MIB",
1413
+ "oid" : "1.3.6.1.2.1.193.1.1.6.1.6",
1414
+ "status" : "current",
1415
+ "syntax" : {
1416
+ "type" : {
1417
+ "basetype" : "Enumeration",
1418
+ "unknown" : {
1419
+ "nodetype" : "namednumber",
1420
+ "number" : "0"
1421
+ },
1422
+ "ingress" : {
1423
+ "nodetype" : "namednumber",
1424
+ "number" : "1"
1425
+ },
1426
+ "egress" : {
1427
+ "nodetype" : "namednumber",
1428
+ "number" : "2"
1429
+ },
1430
+ "both" : {
1431
+ "nodetype" : "namednumber",
1432
+ "number" : "3"
1433
+ },
1434
+ },
1435
+ },
1436
+ "access" : "readonly",
1437
+ "description" :
1438
+ """The direction of the Flow that is monitored on the given
1439
+ physical entity. The following values are valid:
1440
+
1441
+ unknown(0)
1442
+ This value MUST be used if a direction is not known for
1443
+ the given physical entity.
1444
+
1445
+ ingress(1)
1446
+ This value is used for monitoring incoming Flows on the
1447
+ given physical entity.
1448
+
1449
+ egress(2)
1450
+ This value is used for monitoring outgoing Flows on the
1451
+ given physical entity.
1452
+
1453
+ both(3)
1454
+
1455
+
1456
+
1457
+ This value is used for monitoring incoming and outgoing
1458
+ Flows on the given physical entity.""",
1459
+ }, # column
1460
+ "ipfixSelectionProcessTable" : {
1461
+ "nodetype" : "table",
1462
+ "moduleName" : "IPFIX-MIB",
1463
+ "oid" : "1.3.6.1.2.1.193.1.1.7",
1464
+ "status" : "current",
1465
+ "description" :
1466
+ """This table contains Selector Functions connected to a
1467
+ Metering Process by the index ipfixMeteringProcessCacheId.
1468
+ The Selector Functions are grouped into Selection Processes
1469
+ by the ipfixSelectionProcessIndex. The Selector Functions
1470
+ are applied within the Selection Process to the packets
1471
+ observed for the given Metering Process cache in increasing
1472
+ order as indicated by the ipfixSelectionProcessSelectorIndex.
1473
+ This means Selector Functions with a lower
1474
+ ipfixSelectionProcessSelectorIndex are applied first.
1475
+ The remaining packets are accounted for in Flow Records.
1476
+
1477
+ Since IPFIX does not define any Selector Function (except
1478
+ selecting every packet), this is a placeholder for future
1479
+ use and a guideline for implementing enterprise-specific
1480
+ Selector Function objects.
1481
+
1482
+ The following object tree should help the reader visualize
1483
+ how the Selector Function objects should be implemented:
1484
+
1485
+ ipfixSelectorFunctions
1486
+ |
1487
+ +- ipfixFuncSelectAll
1488
+ | |
1489
+ | +- ipfixFuncSelectAllAvail (is the function available?)
1490
+ |
1491
+ +- ipfixFuncF2
1492
+ | |
1493
+ | +- ipfixFuncF2Avail (is the function F2 available?)
1494
+ | |
1495
+ | +- ipfixFuncF2Parameters (a table with parameters)
1496
+ ...
1497
+ |
1498
+ +- ipfixFuncFn...
1499
+
1500
+
1501
+
1502
+
1503
+
1504
+
1505
+ If a Selector Function takes parameters, the MIB should
1506
+ contain a table with an entry for each set of parameters
1507
+ used at the Exporter.""",
1508
+ }, # table
1509
+ "ipfixSelectionProcessEntry" : {
1510
+ "nodetype" : "row",
1511
+ "moduleName" : "IPFIX-MIB",
1512
+ "oid" : "1.3.6.1.2.1.193.1.1.7.1",
1513
+ "status" : "current",
1514
+ "linkage" : [
1515
+ "ipfixMeteringProcessCacheId",
1516
+ "ipfixSelectionProcessIndex",
1517
+ "ipfixSelectionProcessSelectorIndex",
1518
+ ],
1519
+ "description" :
1520
+ """Defines an entry in the ipfixSelectionProcessTable.""",
1521
+ }, # row
1522
+ "ipfixSelectionProcessIndex" : {
1523
+ "nodetype" : "column",
1524
+ "moduleName" : "IPFIX-MIB",
1525
+ "oid" : "1.3.6.1.2.1.193.1.1.7.1.1",
1526
+ "status" : "current",
1527
+ "syntax" : {
1528
+ "type" : {
1529
+ "basetype" : "Unsigned32",
1530
+ "ranges" : [
1531
+ {
1532
+ "min" : "1",
1533
+ "max" : "4294967295"
1534
+ },
1535
+ ],
1536
+ "range" : {
1537
+ "min" : "1",
1538
+ "max" : "4294967295"
1539
+ },
1540
+ },
1541
+ },
1542
+ "access" : "noaccess",
1543
+ "description" :
1544
+ """Locally arbitrary, but unique identifier of an entry in the
1545
+ ipfixSelectionProcessTable. The value is expected to remain
1546
+ constant from a re-initialization of the entity's network
1547
+ management agent to the next re-initialization.""",
1548
+ }, # column
1549
+ "ipfixSelectionProcessSelectorIndex" : {
1550
+ "nodetype" : "column",
1551
+ "moduleName" : "IPFIX-MIB",
1552
+ "oid" : "1.3.6.1.2.1.193.1.1.7.1.2",
1553
+ "status" : "current",
1554
+ "syntax" : {
1555
+ "type" : {
1556
+ "basetype" : "Unsigned32",
1557
+ "ranges" : [
1558
+ {
1559
+ "min" : "1",
1560
+ "max" : "4294967295"
1561
+ },
1562
+ ],
1563
+ "range" : {
1564
+ "min" : "1",
1565
+ "max" : "4294967295"
1566
+ },
1567
+ },
1568
+ },
1569
+ "access" : "noaccess",
1570
+ "description" :
1571
+ """Index specifying the order in which the referenced
1572
+ ipfixSelectionProcessSelectorFunctions are applied to the
1573
+ observed packet stream within the given Selection Process
1574
+ (identified by the ipfixSelectionProcessIndex). The
1575
+ Selector Functions are applied in increasing order; i.e.,
1576
+ Selector Functions with a lower index are applied first.""",
1577
+ }, # column
1578
+ "ipfixSelectionProcessSelectorFunction" : {
1579
+ "nodetype" : "column",
1580
+ "moduleName" : "IPFIX-MIB",
1581
+ "oid" : "1.3.6.1.2.1.193.1.1.7.1.3",
1582
+ "status" : "current",
1583
+ "syntax" : {
1584
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1585
+ },
1586
+ "access" : "readonly",
1587
+ "description" :
1588
+ """The pointer to the Selector Function used at position
1589
+ ipfixSelectionProcessSelectorIndex in the list of Selector
1590
+ Functions for the Metering Process cache specified by the
1591
+ index ipfixMeteringProcessCacheId and for the given
1592
+ Selection Process (identified by the
1593
+ ipfixSelectionProcessIndex).
1594
+
1595
+ This usually points to an object in the IPFIX SELECTOR MIB.
1596
+ If the Selector Function does not take parameters, then it
1597
+ MUST point to the root of the function subtree. If the
1598
+ function takes parameters, then it MUST point to an entry
1599
+ in the parameter table of the Selector Function.""",
1600
+ }, # column
1601
+ "ipfixStatistics" : {
1602
+ "nodetype" : "node",
1603
+ "moduleName" : "IPFIX-MIB",
1604
+ "oid" : "1.3.6.1.2.1.193.1.2",
1605
+ }, # node
1606
+ "ipfixTransportSessionStatsTable" : {
1607
+ "nodetype" : "table",
1608
+ "moduleName" : "IPFIX-MIB",
1609
+ "oid" : "1.3.6.1.2.1.193.1.2.1",
1610
+ "status" : "current",
1611
+ "description" :
1612
+ """This table lists Transport Session statistics between
1613
+ Exporting Processes and Collecting Processes.""",
1614
+ }, # table
1615
+ "ipfixTransportSessionStatsEntry" : {
1616
+ "nodetype" : "row",
1617
+ "moduleName" : "IPFIX-MIB",
1618
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1",
1619
+ "status" : "current",
1620
+ "linkage" : [
1621
+ { "IPFIX-MIB" : {
1622
+ "indexkind" : "augments",
1623
+ "relatedNode" : "ipfixTransportSessionEntry",
1624
+ }},
1625
+ ],
1626
+ "description" :
1627
+ """Defines an entry in the ipfixTransportSessionStatsTable.""",
1628
+ }, # row
1629
+ "ipfixTransportSessionRate" : {
1630
+ "nodetype" : "column",
1631
+ "moduleName" : "IPFIX-MIB",
1632
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1.1",
1633
+ "status" : "current",
1634
+ "syntax" : {
1635
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1636
+ },
1637
+ "access" : "readonly",
1638
+ "units" : "bytes/second",
1639
+ "description" :
1640
+ """The number of bytes per second received by the
1641
+ Collector or transmitted by the Exporter. A
1642
+ value of zero (0) means that no packets were sent or
1643
+ received yet. This object is updated every second.""",
1644
+ }, # column
1645
+ "ipfixTransportSessionPackets" : {
1646
+ "nodetype" : "column",
1647
+ "moduleName" : "IPFIX-MIB",
1648
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1.2",
1649
+ "status" : "current",
1650
+ "syntax" : {
1651
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1652
+ },
1653
+ "access" : "readonly",
1654
+ "units" : "packets",
1655
+ "description" :
1656
+ """The number of packets received by the Collector
1657
+ or transmitted by the Exporter.
1658
+ Discontinuities in the value of this counter can occur at
1659
+ re-initialization of the management system and at other
1660
+ times as indicated by the value of
1661
+ ipfixTransportSessionDiscontinuityTime.""",
1662
+ }, # column
1663
+ "ipfixTransportSessionBytes" : {
1664
+ "nodetype" : "column",
1665
+ "moduleName" : "IPFIX-MIB",
1666
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1.3",
1667
+ "status" : "current",
1668
+ "syntax" : {
1669
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1670
+ },
1671
+ "access" : "readonly",
1672
+ "units" : "bytes",
1673
+ "description" :
1674
+ """The number of bytes received by the Collector
1675
+ or transmitted by the Exporter.
1676
+ Discontinuities in the value of this counter can occur at
1677
+ re-initialization of the management system and at other
1678
+ times as indicated by the value of
1679
+ ipfixTransportSessionDiscontinuityTime.""",
1680
+ }, # column
1681
+ "ipfixTransportSessionMessages" : {
1682
+ "nodetype" : "column",
1683
+ "moduleName" : "IPFIX-MIB",
1684
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1.4",
1685
+ "status" : "current",
1686
+ "syntax" : {
1687
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1688
+ },
1689
+ "access" : "readonly",
1690
+ "description" :
1691
+ """The number of IPFIX Messages received by the
1692
+ Collector or transmitted by the Exporter.
1693
+ Discontinuities in the value of this counter can occur at
1694
+ re-initialization of the management system and at other
1695
+ times as indicated by the value of
1696
+ ipfixTransportSessionDiscontinuityTime.""",
1697
+ }, # column
1698
+ "ipfixTransportSessionDiscardedMessages" : {
1699
+ "nodetype" : "column",
1700
+ "moduleName" : "IPFIX-MIB",
1701
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1.5",
1702
+ "status" : "current",
1703
+ "syntax" : {
1704
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1705
+ },
1706
+ "access" : "readonly",
1707
+ "description" :
1708
+ """The number of received IPFIX Messages that are malformed,
1709
+ cannot be decoded, are received in the wrong order, or are
1710
+ missing according to the sequence number.
1711
+
1712
+ If used at the Exporter, the number of messages that could
1713
+ not be sent due to, for example, internal buffer overflows,
1714
+ network congestion, or routing issues.
1715
+ Discontinuities in the value of this counter can occur at
1716
+ re-initialization of the management system and at other
1717
+ times as indicated by the value of
1718
+ ipfixTransportSessionDiscontinuityTime.""",
1719
+ }, # column
1720
+ "ipfixTransportSessionRecords" : {
1721
+ "nodetype" : "column",
1722
+ "moduleName" : "IPFIX-MIB",
1723
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1.6",
1724
+ "status" : "current",
1725
+ "syntax" : {
1726
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1727
+ },
1728
+ "access" : "readonly",
1729
+ "description" :
1730
+ """The number of Data Records received by the Collector or
1731
+ transmitted by the Exporter.
1732
+ Discontinuities in the value of this counter can occur at
1733
+ re-initialization of the management system and at other
1734
+ times as indicated by the value of
1735
+ ipfixTransportSessionDiscontinuityTime.""",
1736
+ }, # column
1737
+ "ipfixTransportSessionTemplates" : {
1738
+ "nodetype" : "column",
1739
+ "moduleName" : "IPFIX-MIB",
1740
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1.7",
1741
+ "status" : "current",
1742
+ "syntax" : {
1743
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1744
+ },
1745
+ "access" : "readonly",
1746
+ "description" :
1747
+ """The number of Templates received or transmitted.
1748
+ Discontinuities in the value of this counter can occur at
1749
+
1750
+
1751
+
1752
+ re-initialization of the management system and at other
1753
+ times as indicated by the value of
1754
+ ipfixTransportSessionDiscontinuityTime.""",
1755
+ }, # column
1756
+ "ipfixTransportSessionOptionsTemplates" : {
1757
+ "nodetype" : "column",
1758
+ "moduleName" : "IPFIX-MIB",
1759
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1.8",
1760
+ "status" : "current",
1761
+ "syntax" : {
1762
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1763
+ },
1764
+ "access" : "readonly",
1765
+ "description" :
1766
+ """The number of Options Templates received or transmitted.
1767
+ Discontinuities in the value of this counter can occur at
1768
+ re-initialization of the management system and at other
1769
+ times as indicated by the value of
1770
+ ipfixTransportSessionDiscontinuityTime.""",
1771
+ }, # column
1772
+ "ipfixTransportSessionDiscontinuityTime" : {
1773
+ "nodetype" : "column",
1774
+ "moduleName" : "IPFIX-MIB",
1775
+ "oid" : "1.3.6.1.2.1.193.1.2.1.1.9",
1776
+ "status" : "current",
1777
+ "syntax" : {
1778
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1779
+ },
1780
+ "access" : "readonly",
1781
+ "description" :
1782
+ """The value of sysUpTime at the most recent occasion at which
1783
+ one or more of the Transport Session counters suffered a
1784
+ discontinuity.
1785
+ A value of zero indicates that no such discontinuity has
1786
+ occurred since the last re-initialization of the local
1787
+ management subsystem.""",
1788
+ }, # column
1789
+ "ipfixTemplateStatsTable" : {
1790
+ "nodetype" : "table",
1791
+ "moduleName" : "IPFIX-MIB",
1792
+ "oid" : "1.3.6.1.2.1.193.1.2.2",
1793
+ "status" : "current",
1794
+ "description" :
1795
+ """This table lists statistics objects per Template.""",
1796
+ }, # table
1797
+ "ipfixTemplateStatsEntry" : {
1798
+ "nodetype" : "row",
1799
+ "moduleName" : "IPFIX-MIB",
1800
+ "oid" : "1.3.6.1.2.1.193.1.2.2.1",
1801
+ "status" : "current",
1802
+ "linkage" : [
1803
+ { "IPFIX-MIB" : {
1804
+ "indexkind" : "augments",
1805
+ "relatedNode" : "ipfixTemplateEntry",
1806
+ }},
1807
+ ],
1808
+ "description" :
1809
+ """Defines an entry in the ipfixTemplateStatsTable.""",
1810
+ }, # row
1811
+ "ipfixTemplateDataRecords" : {
1812
+ "nodetype" : "column",
1813
+ "moduleName" : "IPFIX-MIB",
1814
+ "oid" : "1.3.6.1.2.1.193.1.2.2.1.1",
1815
+ "status" : "current",
1816
+ "syntax" : {
1817
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1818
+ },
1819
+ "access" : "readonly",
1820
+ "description" :
1821
+ """The number of Data Records that are transmitted or received
1822
+ per Template.
1823
+ Discontinuities in the value of this counter can occur at
1824
+ re-initialization of the management system and at other
1825
+ times as indicated by the value of
1826
+ ipfixTemplateDiscontinuityTime.""",
1827
+ }, # column
1828
+ "ipfixTemplateDiscontinuityTime" : {
1829
+ "nodetype" : "column",
1830
+ "moduleName" : "IPFIX-MIB",
1831
+ "oid" : "1.3.6.1.2.1.193.1.2.2.1.2",
1832
+ "status" : "current",
1833
+ "syntax" : {
1834
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1835
+ },
1836
+ "access" : "readonly",
1837
+ "description" :
1838
+ """The value of sysUpTime at the most recent occasion at which
1839
+ the Template counter suffered a discontinuity.
1840
+ A value of zero indicates that no such discontinuity has
1841
+ occurred since the last re-initialization of the local
1842
+ management subsystem.""",
1843
+ }, # column
1844
+ "ipfixMeteringProcessStatsTable" : {
1845
+ "nodetype" : "table",
1846
+ "moduleName" : "IPFIX-MIB",
1847
+ "oid" : "1.3.6.1.2.1.193.1.2.3",
1848
+ "status" : "current",
1849
+ "description" :
1850
+ """This table lists statistics objects that have data per
1851
+ Metering Process cache.
1852
+
1853
+ On Collectors, this table is not needed.""",
1854
+ }, # table
1855
+ "ipfixMeteringProcessStatsEntry" : {
1856
+ "nodetype" : "row",
1857
+ "moduleName" : "IPFIX-MIB",
1858
+ "oid" : "1.3.6.1.2.1.193.1.2.3.1",
1859
+ "status" : "current",
1860
+ "linkage" : [
1861
+ { "IPFIX-MIB" : {
1862
+ "indexkind" : "augments",
1863
+ "relatedNode" : "ipfixMeteringProcessEntry",
1864
+ }},
1865
+ ],
1866
+ "description" :
1867
+ """Defines an entry in the ipfixMeteringProcessStatsTable.""",
1868
+ }, # row
1869
+ "ipfixMeteringProcessCacheActiveFlows" : {
1870
+ "nodetype" : "column",
1871
+ "moduleName" : "IPFIX-MIB",
1872
+ "oid" : "1.3.6.1.2.1.193.1.2.3.1.1",
1873
+ "status" : "current",
1874
+ "syntax" : {
1875
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1876
+ },
1877
+ "access" : "readonly",
1878
+ "description" :
1879
+ """The number of Flows currently active at this cache.""",
1880
+ }, # column
1881
+ "ipfixMeteringProcessCacheUnusedCacheEntries" : {
1882
+ "nodetype" : "column",
1883
+ "moduleName" : "IPFIX-MIB",
1884
+ "oid" : "1.3.6.1.2.1.193.1.2.3.1.2",
1885
+ "status" : "current",
1886
+ "syntax" : {
1887
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1888
+ },
1889
+ "access" : "readonly",
1890
+ "description" :
1891
+ """The number of unused cache entries.""",
1892
+ }, # column
1893
+ "ipfixMeteringProcessCacheDataRecords" : {
1894
+ "nodetype" : "column",
1895
+ "moduleName" : "IPFIX-MIB",
1896
+ "oid" : "1.3.6.1.2.1.193.1.2.3.1.3",
1897
+ "status" : "current",
1898
+ "syntax" : {
1899
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1900
+ },
1901
+ "access" : "readonly",
1902
+ "description" :
1903
+ """The number of Data Records generated.
1904
+ Discontinuities in the value of this counter can occur at
1905
+ re-initialization of the management system and at other
1906
+ times as indicated by the value of
1907
+ ipfixMeteringProcessCacheDiscontinuityTime.""",
1908
+ }, # column
1909
+ "ipfixMeteringProcessCacheDiscontinuityTime" : {
1910
+ "nodetype" : "column",
1911
+ "moduleName" : "IPFIX-MIB",
1912
+ "oid" : "1.3.6.1.2.1.193.1.2.3.1.4",
1913
+ "status" : "current",
1914
+ "syntax" : {
1915
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1916
+ },
1917
+ "access" : "readonly",
1918
+ "description" :
1919
+ """The value of sysUpTime at the most recent occasion at which
1920
+ the Metering Process counter suffered a discontinuity.
1921
+ A value of zero indicates that no such discontinuity has
1922
+ occurred since the last re-initialization of the local
1923
+ management subsystem.""",
1924
+ }, # column
1925
+ "ipfixSelectionProcessStatsTable" : {
1926
+ "nodetype" : "table",
1927
+ "moduleName" : "IPFIX-MIB",
1928
+ "oid" : "1.3.6.1.2.1.193.1.2.4",
1929
+ "status" : "current",
1930
+ "description" :
1931
+ """This table contains statistics for the Selector Functions
1932
+ connected to a Metering Process by the index
1933
+ ipfixMeteringProcessCacheId.
1934
+
1935
+ The indexes MUST match an entry in the
1936
+ ipfixSelectionProcessTable.""",
1937
+ }, # table
1938
+ "ipfixSelectionProcessStatsEntry" : {
1939
+ "nodetype" : "row",
1940
+ "moduleName" : "IPFIX-MIB",
1941
+ "oid" : "1.3.6.1.2.1.193.1.2.4.1",
1942
+ "status" : "current",
1943
+ "linkage" : [
1944
+ { "IPFIX-MIB" : {
1945
+ "indexkind" : "augments",
1946
+ "relatedNode" : "ipfixSelectionProcessEntry",
1947
+ }},
1948
+ ],
1949
+ "description" :
1950
+ """Defines an entry in the ipfixSelectionProcessStatsTable.""",
1951
+ }, # row
1952
+ "ipfixSelectionProcessStatsPacketsObserved" : {
1953
+ "nodetype" : "column",
1954
+ "moduleName" : "IPFIX-MIB",
1955
+ "oid" : "1.3.6.1.2.1.193.1.2.4.1.1",
1956
+ "status" : "current",
1957
+ "syntax" : {
1958
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1959
+ },
1960
+ "access" : "readonly",
1961
+ "description" :
1962
+ """The number of packets observed at the entry point of the
1963
+ function. The entry point may be the Observation Point or
1964
+ the exit point of another Selector Function.
1965
+
1966
+
1967
+
1968
+ Discontinuities in the value of this counter can occur at
1969
+ re-initialization of the management system and at other
1970
+ times as indicated by the value of
1971
+ ipfixSelectionProcessStatsDiscontinuityTime.""",
1972
+ }, # column
1973
+ "ipfixSelectionProcessStatsPacketsDropped" : {
1974
+ "nodetype" : "column",
1975
+ "moduleName" : "IPFIX-MIB",
1976
+ "oid" : "1.3.6.1.2.1.193.1.2.4.1.2",
1977
+ "status" : "current",
1978
+ "syntax" : {
1979
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1980
+ },
1981
+ "access" : "readonly",
1982
+ "description" :
1983
+ """The number of packets dropped while selecting packets.
1984
+ Discontinuities in the value of this counter can occur at
1985
+ re-initialization of the management system and at other
1986
+ times as indicated by the value of
1987
+ ipfixSelectionProcessStatsDiscontinuityTime.""",
1988
+ }, # column
1989
+ "ipfixSelectionProcessStatsDiscontinuityTime" : {
1990
+ "nodetype" : "column",
1991
+ "moduleName" : "IPFIX-MIB",
1992
+ "oid" : "1.3.6.1.2.1.193.1.2.4.1.3",
1993
+ "status" : "current",
1994
+ "syntax" : {
1995
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1996
+ },
1997
+ "access" : "readonly",
1998
+ "description" :
1999
+ """The value of sysUpTime at the most recent occasion at which
2000
+ one or more of the Selector counters suffered a
2001
+ discontinuity.
2002
+ A value of zero indicates that no such discontinuity has
2003
+ occurred since the last re-initialization of the local
2004
+ management subsystem.""",
2005
+ }, # column
2006
+ "ipfixConformance" : {
2007
+ "nodetype" : "node",
2008
+ "moduleName" : "IPFIX-MIB",
2009
+ "oid" : "1.3.6.1.2.1.193.2",
2010
+ }, # node
2011
+ "ipfixCompliances" : {
2012
+ "nodetype" : "node",
2013
+ "moduleName" : "IPFIX-MIB",
2014
+ "oid" : "1.3.6.1.2.1.193.2.1",
2015
+ }, # node
2016
+ "ipfixGroups" : {
2017
+ "nodetype" : "node",
2018
+ "moduleName" : "IPFIX-MIB",
2019
+ "oid" : "1.3.6.1.2.1.193.2.2",
2020
+ }, # node
2021
+ }, # nodes
2022
+
2023
+ "groups" : {
2024
+ "ipfixCommonGroup" : {
2025
+ "nodetype" : "group",
2026
+ "moduleName" : "IPFIX-MIB",
2027
+ "oid" : "1.3.6.1.2.1.193.2.2.1",
2028
+ "status" : "current",
2029
+ "members" : {
2030
+ "ipfixTransportSessionProtocol" : {
2031
+ "nodetype" : "member",
2032
+ "module" : "IPFIX-MIB"
2033
+ },
2034
+ "ipfixTransportSessionSourceAddressType" : {
2035
+ "nodetype" : "member",
2036
+ "module" : "IPFIX-MIB"
2037
+ },
2038
+ "ipfixTransportSessionSourceAddress" : {
2039
+ "nodetype" : "member",
2040
+ "module" : "IPFIX-MIB"
2041
+ },
2042
+ "ipfixTransportSessionDestinationAddressType" : {
2043
+ "nodetype" : "member",
2044
+ "module" : "IPFIX-MIB"
2045
+ },
2046
+ "ipfixTransportSessionDestinationAddress" : {
2047
+ "nodetype" : "member",
2048
+ "module" : "IPFIX-MIB"
2049
+ },
2050
+ "ipfixTransportSessionSourcePort" : {
2051
+ "nodetype" : "member",
2052
+ "module" : "IPFIX-MIB"
2053
+ },
2054
+ "ipfixTransportSessionDestinationPort" : {
2055
+ "nodetype" : "member",
2056
+ "module" : "IPFIX-MIB"
2057
+ },
2058
+ "ipfixTransportSessionSctpAssocId" : {
2059
+ "nodetype" : "member",
2060
+ "module" : "IPFIX-MIB"
2061
+ },
2062
+ "ipfixTransportSessionDeviceMode" : {
2063
+ "nodetype" : "member",
2064
+ "module" : "IPFIX-MIB"
2065
+ },
2066
+ "ipfixTransportSessionTemplateRefreshTimeout" : {
2067
+ "nodetype" : "member",
2068
+ "module" : "IPFIX-MIB"
2069
+ },
2070
+ "ipfixTransportSessionOptionsTemplateRefreshTimeout" : {
2071
+ "nodetype" : "member",
2072
+ "module" : "IPFIX-MIB"
2073
+ },
2074
+ "ipfixTransportSessionTemplateRefreshPacket" : {
2075
+ "nodetype" : "member",
2076
+ "module" : "IPFIX-MIB"
2077
+ },
2078
+ "ipfixTransportSessionOptionsTemplateRefreshPacket" : {
2079
+ "nodetype" : "member",
2080
+ "module" : "IPFIX-MIB"
2081
+ },
2082
+ "ipfixTransportSessionIpfixVersion" : {
2083
+ "nodetype" : "member",
2084
+ "module" : "IPFIX-MIB"
2085
+ },
2086
+ "ipfixTransportSessionStatus" : {
2087
+ "nodetype" : "member",
2088
+ "module" : "IPFIX-MIB"
2089
+ },
2090
+ "ipfixTemplateSetId" : {
2091
+ "nodetype" : "member",
2092
+ "module" : "IPFIX-MIB"
2093
+ },
2094
+ "ipfixTemplateAccessTime" : {
2095
+ "nodetype" : "member",
2096
+ "module" : "IPFIX-MIB"
2097
+ },
2098
+ "ipfixTemplateDefinitionIeId" : {
2099
+ "nodetype" : "member",
2100
+ "module" : "IPFIX-MIB"
2101
+ },
2102
+ "ipfixTemplateDefinitionIeLength" : {
2103
+ "nodetype" : "member",
2104
+ "module" : "IPFIX-MIB"
2105
+ },
2106
+ "ipfixTemplateDefinitionEnterpriseNumber" : {
2107
+ "nodetype" : "member",
2108
+ "module" : "IPFIX-MIB"
2109
+ },
2110
+ "ipfixTemplateDefinitionFlags" : {
2111
+ "nodetype" : "member",
2112
+ "module" : "IPFIX-MIB"
2113
+ },
2114
+ }, # members
2115
+ "description" :
2116
+ """The main IPFIX objects.""",
2117
+ }, # group
2118
+ "ipfixCommonStatsGroup" : {
2119
+ "nodetype" : "group",
2120
+ "moduleName" : "IPFIX-MIB",
2121
+ "oid" : "1.3.6.1.2.1.193.2.2.2",
2122
+ "status" : "current",
2123
+ "members" : {
2124
+ "ipfixTransportSessionRate" : {
2125
+ "nodetype" : "member",
2126
+ "module" : "IPFIX-MIB"
2127
+ },
2128
+ "ipfixTransportSessionPackets" : {
2129
+ "nodetype" : "member",
2130
+ "module" : "IPFIX-MIB"
2131
+ },
2132
+ "ipfixTransportSessionBytes" : {
2133
+ "nodetype" : "member",
2134
+ "module" : "IPFIX-MIB"
2135
+ },
2136
+ "ipfixTransportSessionMessages" : {
2137
+ "nodetype" : "member",
2138
+ "module" : "IPFIX-MIB"
2139
+ },
2140
+ "ipfixTransportSessionDiscardedMessages" : {
2141
+ "nodetype" : "member",
2142
+ "module" : "IPFIX-MIB"
2143
+ },
2144
+ "ipfixTransportSessionRecords" : {
2145
+ "nodetype" : "member",
2146
+ "module" : "IPFIX-MIB"
2147
+ },
2148
+ "ipfixTransportSessionTemplates" : {
2149
+ "nodetype" : "member",
2150
+ "module" : "IPFIX-MIB"
2151
+ },
2152
+ "ipfixTransportSessionOptionsTemplates" : {
2153
+ "nodetype" : "member",
2154
+ "module" : "IPFIX-MIB"
2155
+ },
2156
+ "ipfixTransportSessionDiscontinuityTime" : {
2157
+ "nodetype" : "member",
2158
+ "module" : "IPFIX-MIB"
2159
+ },
2160
+ "ipfixTemplateDataRecords" : {
2161
+ "nodetype" : "member",
2162
+ "module" : "IPFIX-MIB"
2163
+ },
2164
+ "ipfixTemplateDiscontinuityTime" : {
2165
+ "nodetype" : "member",
2166
+ "module" : "IPFIX-MIB"
2167
+ },
2168
+ }, # members
2169
+ "description" :
2170
+ """Common statistical objects.""",
2171
+ }, # group
2172
+ "ipfixExporterGroup" : {
2173
+ "nodetype" : "group",
2174
+ "moduleName" : "IPFIX-MIB",
2175
+ "oid" : "1.3.6.1.2.1.193.2.2.3",
2176
+ "status" : "current",
2177
+ "members" : {
2178
+ "ipfixExportMemberType" : {
2179
+ "nodetype" : "member",
2180
+ "module" : "IPFIX-MIB"
2181
+ },
2182
+ "ipfixMeteringProcessObservationPointGroupRef" : {
2183
+ "nodetype" : "member",
2184
+ "module" : "IPFIX-MIB"
2185
+ },
2186
+ "ipfixMeteringProcessCacheActiveTimeout" : {
2187
+ "nodetype" : "member",
2188
+ "module" : "IPFIX-MIB"
2189
+ },
2190
+ "ipfixMeteringProcessCacheIdleTimeout" : {
2191
+ "nodetype" : "member",
2192
+ "module" : "IPFIX-MIB"
2193
+ },
2194
+ "ipfixObservationPointObservationDomainId" : {
2195
+ "nodetype" : "member",
2196
+ "module" : "IPFIX-MIB"
2197
+ },
2198
+ "ipfixObservationPointPhysicalEntity" : {
2199
+ "nodetype" : "member",
2200
+ "module" : "IPFIX-MIB"
2201
+ },
2202
+ "ipfixObservationPointPhysicalInterface" : {
2203
+ "nodetype" : "member",
2204
+ "module" : "IPFIX-MIB"
2205
+ },
2206
+ "ipfixObservationPointPhysicalEntityDirection" : {
2207
+ "nodetype" : "member",
2208
+ "module" : "IPFIX-MIB"
2209
+ },
2210
+ "ipfixSelectionProcessSelectorFunction" : {
2211
+ "nodetype" : "member",
2212
+ "module" : "IPFIX-MIB"
2213
+ },
2214
+ }, # members
2215
+ "description" :
2216
+ """The main objects for Exporters.""",
2217
+ }, # group
2218
+ "ipfixExporterStatsGroup" : {
2219
+ "nodetype" : "group",
2220
+ "moduleName" : "IPFIX-MIB",
2221
+ "oid" : "1.3.6.1.2.1.193.2.2.4",
2222
+ "status" : "current",
2223
+ "members" : {
2224
+ "ipfixMeteringProcessCacheActiveFlows" : {
2225
+ "nodetype" : "member",
2226
+ "module" : "IPFIX-MIB"
2227
+ },
2228
+ "ipfixMeteringProcessCacheUnusedCacheEntries" : {
2229
+ "nodetype" : "member",
2230
+ "module" : "IPFIX-MIB"
2231
+ },
2232
+ "ipfixMeteringProcessCacheDataRecords" : {
2233
+ "nodetype" : "member",
2234
+ "module" : "IPFIX-MIB"
2235
+ },
2236
+ "ipfixMeteringProcessCacheDiscontinuityTime" : {
2237
+ "nodetype" : "member",
2238
+ "module" : "IPFIX-MIB"
2239
+ },
2240
+ "ipfixSelectionProcessStatsPacketsObserved" : {
2241
+ "nodetype" : "member",
2242
+ "module" : "IPFIX-MIB"
2243
+ },
2244
+ "ipfixSelectionProcessStatsPacketsDropped" : {
2245
+ "nodetype" : "member",
2246
+ "module" : "IPFIX-MIB"
2247
+ },
2248
+ "ipfixSelectionProcessStatsDiscontinuityTime" : {
2249
+ "nodetype" : "member",
2250
+ "module" : "IPFIX-MIB"
2251
+ },
2252
+ }, # members
2253
+ "description" :
2254
+ """The statistical objects for Exporters.""",
2255
+ }, # group
2256
+ }, # groups
2257
+
2258
+ "compliances" : {
2259
+ "ipfixCollectorCompliance" : {
2260
+ "nodetype" : "compliance",
2261
+ "moduleName" : "IPFIX-MIB",
2262
+ "oid" : "1.3.6.1.2.1.193.2.1.1",
2263
+ "status" : "current",
2264
+ "description" :
2265
+ """An implementation that builds an IPFIX Collector
2266
+ that complies with this module MUST implement the objects
2267
+ defined in the mandatory group ipfixCommonGroup.
2268
+
2269
+
2270
+
2271
+
2272
+
2273
+ The implementation of all objects in the other groups is
2274
+ optional and depends on the corresponding functionality
2275
+ implemented in the equipment.
2276
+
2277
+ An implementation that is compliant with this MIB module
2278
+ is limited to using only the values TCP (6), UDP (17), and
2279
+ SCTP (132) in the ipfixTransportSessionProtocol object
2280
+ because these are the only protocols currently specified
2281
+ for usage within IPFIX (see RFC 5101).""",
2282
+ "requires" : {
2283
+ "ipfixCommonGroup" : {
2284
+ "nodetype" : "mandatory",
2285
+ "module" : "IPFIX-MIB"
2286
+ },
2287
+ "ipfixCommonStatsGroup" : {
2288
+ "nodetype" : "optional",
2289
+ "module" : "IPFIX-MIB",
2290
+ "description" :
2291
+ """These objects should be implemented if the statistics
2292
+ function is implemented in the equipment.""",
2293
+ },
2294
+ }, # requires
2295
+ }, # compliance
2296
+ "ipfixExporterCompliance" : {
2297
+ "nodetype" : "compliance",
2298
+ "moduleName" : "IPFIX-MIB",
2299
+ "oid" : "1.3.6.1.2.1.193.2.1.2",
2300
+ "status" : "current",
2301
+ "description" :
2302
+ """An implementation that builds an IPFIX Exporter that
2303
+ complies with this module MUST implement the objects defined
2304
+ in the mandatory group ipfixCommonGroup. The implementation
2305
+ of all other objects depends on the implementation of the
2306
+ corresponding functionality in the equipment.""",
2307
+ "requires" : {
2308
+ "ipfixCommonGroup" : {
2309
+ "nodetype" : "mandatory",
2310
+ "module" : "IPFIX-MIB"
2311
+ },
2312
+ "ipfixExporterGroup" : {
2313
+ "nodetype" : "mandatory",
2314
+ "module" : "IPFIX-MIB"
2315
+ },
2316
+ "ipfixCommonStatsGroup" : {
2317
+ "nodetype" : "optional",
2318
+ "module" : "IPFIX-MIB",
2319
+ "description" :
2320
+ """These objects should be implemented if the statistics
2321
+ function is implemented in the equipment.""",
2322
+ },
2323
+ "ipfixExporterStatsGroup" : {
2324
+ "nodetype" : "optional",
2325
+ "module" : "IPFIX-MIB",
2326
+ "description" :
2327
+ """These objects MUST be implemented if statistics functions
2328
+ are implemented in the equipment.""",
2329
+ },
2330
+ }, # requires
2331
+ }, # compliance
2332
+ }, # compliances
2333
+
2334
+ }