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,1596 @@
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 FCIP-MGMT-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/FCIP-MGMT-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "FCIP-MGMT-MIB",
11
+
12
+ "FCIP-MGMT-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPFC Working Group""",
17
+ "contact" :
18
+ """Anil Rijhsinghani
19
+ Accton Technology Corporation
20
+ 5 Mount Royal Ave
21
+ Marlboro, MA 01752 USA.
22
+
23
+
24
+
25
+ Ravi Natarajan
26
+ F5 Networks
27
+ 2460 North First Street, Suite 100
28
+ San Jose, CA 95131 USA.""",
29
+ "description" :
30
+ """The module defines management information specific to
31
+ FCIP devices.
32
+
33
+ Copyright(C) The Internet Society (2006). This version
34
+ of this MIB module is part of RFC 4404; see the RFC
35
+ itself for full legal notices.""",
36
+ "revisions" : (
37
+ {
38
+ "date" : "2006-02-06 00:00",
39
+ "description" :
40
+ """Initial version of this module, published as RFC 4404.""",
41
+ },
42
+ ),
43
+ "identity node" : "fcipMIB",
44
+ },
45
+
46
+ "imports" : (
47
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
48
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
50
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
51
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
52
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
53
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
54
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
55
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
56
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
57
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
58
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
59
+ {"module" : "FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
60
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
61
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
62
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
63
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
64
+ ),
65
+
66
+ "typedefs" : {
67
+ "FcipDomainIdInOctetForm" : {
68
+ "basetype" : "OctetString",
69
+ "status" : "current",
70
+ "ranges" : [
71
+ {
72
+ "min" : "1",
73
+ "max" : "1"
74
+ },
75
+ ],
76
+ "range" : {
77
+ "min" : "1",
78
+ "max" : "1"
79
+ },
80
+ "description" :
81
+ """The Domain ID of a FC entity in octet form
82
+ to support the concatenation(000000h||Domain_ID)
83
+ format defined in the FSPF routing protocol.""",
84
+ "reference" :
85
+ """FC-SW-3 section 4.8""",
86
+ },
87
+ "FcipEntityMode" : {
88
+ "basetype" : "Enumeration",
89
+ "status" : "current",
90
+ "ePortMode" : {
91
+ "nodetype" : "namednumber",
92
+ "number" : "1"
93
+ },
94
+ "bPortMode" : {
95
+ "nodetype" : "namednumber",
96
+ "number" : "2"
97
+ },
98
+ "description" :
99
+ """The type of port mode provided by an FCIP Entity
100
+ for an FCIP Link. An FCIP Entity can be an E-Port
101
+ mode for one of its FCIP Link Endpoints or a B-Port
102
+ mode for another of its FCIP Link Endpoints.""",
103
+ "reference" :
104
+ """FC-BB, rev 4.7, 2 May 1997, section 3.""",
105
+ },
106
+ "FcipEntityId" : {
107
+ "basetype" : "OctetString",
108
+ "status" : "current",
109
+ "ranges" : [
110
+ {
111
+ "min" : "8",
112
+ "max" : "8"
113
+ },
114
+ ],
115
+ "range" : {
116
+ "min" : "8",
117
+ "max" : "8"
118
+ },
119
+ "description" :
120
+ """The FCIP entity identifier as defined in RFC 3821.""",
121
+ "reference" :
122
+ """RFC 3821, Section 7.1, FCIP Special Frame Format""",
123
+ },
124
+ }, # typedefs
125
+
126
+ "nodes" : {
127
+ "fcipMIB" : {
128
+ "nodetype" : "node",
129
+ "moduleName" : "FCIP-MGMT-MIB",
130
+ "oid" : "1.3.6.1.2.1.224",
131
+ "status" : "current",
132
+ }, # node
133
+ "fcipObjects" : {
134
+ "nodetype" : "node",
135
+ "moduleName" : "FCIP-MGMT-MIB",
136
+ "oid" : "1.3.6.1.2.1.224.1",
137
+ }, # node
138
+ "fcipConfig" : {
139
+ "nodetype" : "node",
140
+ "moduleName" : "FCIP-MGMT-MIB",
141
+ "oid" : "1.3.6.1.2.1.224.1.1",
142
+ }, # node
143
+ "fcipDynIpConfType" : {
144
+ "nodetype" : "scalar",
145
+ "moduleName" : "FCIP-MGMT-MIB",
146
+ "oid" : "1.3.6.1.2.1.224.1.1.1",
147
+ "status" : "current",
148
+ "syntax" : {
149
+ "type" : {
150
+ "basetype" : "Enumeration",
151
+ "slpv2" : {
152
+ "nodetype" : "namednumber",
153
+ "number" : "1"
154
+ },
155
+ "none" : {
156
+ "nodetype" : "namednumber",
157
+ "number" : "2"
158
+ },
159
+ },
160
+ },
161
+ "access" : "readwrite",
162
+ "description" :
163
+ """The type of discovery protocol used to discover remote
164
+ FCIP entities. The value of this object is persistent
165
+ across system restarts.""",
166
+ }, # scalar
167
+ "fcipDeviceWWN" : {
168
+ "nodetype" : "scalar",
169
+ "moduleName" : "FCIP-MGMT-MIB",
170
+ "oid" : "1.3.6.1.2.1.224.1.1.2",
171
+ "status" : "current",
172
+ "syntax" : {
173
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
174
+ },
175
+ "access" : "readonly",
176
+ "description" :
177
+ """The World Wide Name of this FCIP device.""",
178
+ }, # scalar
179
+ "fcipEntitySACKOption" : {
180
+ "nodetype" : "scalar",
181
+ "moduleName" : "FCIP-MGMT-MIB",
182
+ "oid" : "1.3.6.1.2.1.224.1.1.3",
183
+ "status" : "current",
184
+ "syntax" : {
185
+ "type" : {
186
+ "basetype" : "Enumeration",
187
+ "enabled" : {
188
+ "nodetype" : "namednumber",
189
+ "number" : "1"
190
+ },
191
+ "disabled" : {
192
+ "nodetype" : "namednumber",
193
+ "number" : "2"
194
+ },
195
+ },
196
+ },
197
+ "access" : "readonly",
198
+ "description" :
199
+ """Indication of whether the TCP Selective Acknowledgement
200
+ Option is enabled at this FCIP device to let the receiver
201
+ acknowledge multiple lost packets in a single ACK for faster
202
+
203
+
204
+
205
+ recovery.""",
206
+ "reference" :
207
+ """The Selective Ack option is defined in RFC 2883.""",
208
+ }, # scalar
209
+ "fcipEntityInstanceTable" : {
210
+ "nodetype" : "table",
211
+ "moduleName" : "FCIP-MGMT-MIB",
212
+ "oid" : "1.3.6.1.2.1.224.1.1.4",
213
+ "status" : "current",
214
+ "description" :
215
+ """Information about this FCIP device's existing instances of
216
+ FCIP entities.""",
217
+ "reference" :
218
+ """RFC 3821, Section 5.4, FCIP Entity""",
219
+ }, # table
220
+ "fcipEntityInstanceEntry" : {
221
+ "nodetype" : "row",
222
+ "moduleName" : "FCIP-MGMT-MIB",
223
+ "oid" : "1.3.6.1.2.1.224.1.1.4.1",
224
+ "create" : "true",
225
+ "status" : "current",
226
+ "linkage" : [
227
+ "fcipEntityId",
228
+ ],
229
+ "description" :
230
+ """A conceptual row of the FCIP entity table with information
231
+ about a particular FCIP entity. Once a row has been
232
+ created, it is non-volatile across agent restarts until it
233
+ is deleted.""",
234
+ }, # row
235
+ "fcipEntityId" : {
236
+ "nodetype" : "column",
237
+ "moduleName" : "FCIP-MGMT-MIB",
238
+ "oid" : "1.3.6.1.2.1.224.1.1.4.1.1",
239
+ "status" : "current",
240
+ "syntax" : {
241
+ "type" : { "module" :"FCIP-MGMT-MIB", "name" : "FcipEntityId"},
242
+ },
243
+ "access" : "noaccess",
244
+ "description" :
245
+ """The FCIP entity identifier.""",
246
+ "reference" :
247
+ """RFC 3821, Section 7.1, FCIP Special Frame Format""",
248
+ }, # column
249
+ "fcipEntityName" : {
250
+ "nodetype" : "column",
251
+ "moduleName" : "FCIP-MGMT-MIB",
252
+ "oid" : "1.3.6.1.2.1.224.1.1.4.1.2",
253
+ "status" : "current",
254
+ "syntax" : {
255
+ "type" : {
256
+ "basetype" : "OctetString",
257
+ "parent module" : {
258
+ "name" : "SNMP-FRAMEWORK-MIB",
259
+ "type" : "SnmpAdminString",
260
+ },
261
+ "ranges" : [
262
+ {
263
+ "min" : "0",
264
+ "max" : "32"
265
+ },
266
+ ],
267
+ "range" : {
268
+ "min" : "0",
269
+ "max" : "32"
270
+ },
271
+ },
272
+ },
273
+ "access" : "readwrite",
274
+ "description" :
275
+ """An administratively-assigned name for this FCIP entity.""",
276
+ }, # column
277
+ "fcipEntityAddressType" : {
278
+ "nodetype" : "column",
279
+ "moduleName" : "FCIP-MGMT-MIB",
280
+ "oid" : "1.3.6.1.2.1.224.1.1.4.1.3",
281
+ "status" : "current",
282
+ "syntax" : {
283
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
284
+ },
285
+ "access" : "readwrite",
286
+ "description" :
287
+ """The type of Internet address by which the entity is
288
+ reachable. Only address types IPv4 and IPv6 are supported.""",
289
+ }, # column
290
+ "fcipEntityAddress" : {
291
+ "nodetype" : "column",
292
+ "moduleName" : "FCIP-MGMT-MIB",
293
+ "oid" : "1.3.6.1.2.1.224.1.1.4.1.4",
294
+ "status" : "current",
295
+ "syntax" : {
296
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
297
+ },
298
+ "access" : "readwrite",
299
+ "description" :
300
+ """The Internet address for the entity, if configured. The
301
+ format of this address is determined by the value of the
302
+ fcipEntityAddressType object.""",
303
+ }, # column
304
+ "fcipEntityTcpConnPort" : {
305
+ "nodetype" : "column",
306
+ "moduleName" : "FCIP-MGMT-MIB",
307
+ "oid" : "1.3.6.1.2.1.224.1.1.4.1.5",
308
+ "status" : "current",
309
+ "syntax" : {
310
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
311
+ },
312
+ "access" : "readwrite",
313
+ "default" : "0",
314
+ "description" :
315
+ """A TCP port other than the FCIP Well-Known port on which the
316
+ FCIP entity listens for new TCP connection requests. It
317
+ contains the value zero(0) if the FCIP Entity only listens
318
+ on the Well-Known port.""",
319
+ }, # column
320
+ "fcipEntitySeqNumWrap" : {
321
+ "nodetype" : "column",
322
+ "moduleName" : "FCIP-MGMT-MIB",
323
+ "oid" : "1.3.6.1.2.1.224.1.1.4.1.6",
324
+ "status" : "current",
325
+ "syntax" : {
326
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
327
+ },
328
+ "access" : "readonly",
329
+ "description" :
330
+ """An indication of whether the FCIP Entity supports protection
331
+ against sequence number wrap.""",
332
+ "reference" :
333
+ """The PAWS option is defined in RFC 1323.""",
334
+ }, # column
335
+ "fcipEntityPHBSupport" : {
336
+ "nodetype" : "column",
337
+ "moduleName" : "FCIP-MGMT-MIB",
338
+ "oid" : "1.3.6.1.2.1.224.1.1.4.1.7",
339
+ "status" : "current",
340
+ "syntax" : {
341
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
342
+ },
343
+ "access" : "readonly",
344
+ "description" :
345
+ """An indication of whether the FCIP Entity supports PHB IP
346
+ quality of service (QoS).""",
347
+ "reference" :
348
+ """Per hop behavior is defined in RFC 2474, definition of the
349
+ Differentiated Services Field.""",
350
+ }, # column
351
+ "fcipEntityStatus" : {
352
+ "nodetype" : "column",
353
+ "moduleName" : "FCIP-MGMT-MIB",
354
+ "oid" : "1.3.6.1.2.1.224.1.1.4.1.8",
355
+ "status" : "current",
356
+ "syntax" : {
357
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
358
+ },
359
+ "access" : "readwrite",
360
+ "description" :
361
+ """This object specifies the operational status of the row.
362
+
363
+ When a management station sets the status to active(1), then
364
+ the values for the objects fcipEntityName,
365
+ fcipEntityAddressType, and fcipEntityAddress should be
366
+ supplied as part of the set request. The values of the
367
+ objects fcipEntityName, fcipEntityAddressType, and
368
+ fcipEntityAddress can be changed if the row status is in
369
+ active state. The object fcipEntityTcpConnPort takes the
370
+ default value zero(0), if no value is supplied at the time
371
+ of row creation.
372
+
373
+ Setting the status to destroy(6) deletes the specified FCIP
374
+ entity instance row from the table. It also deletes all the
375
+ rows corresponding to the specified FCIP entity from the
376
+ fcipLinkTable and fcipTcpConnTable tables.""",
377
+ }, # column
378
+ "fcipLinkTable" : {
379
+ "nodetype" : "table",
380
+ "moduleName" : "FCIP-MGMT-MIB",
381
+ "oid" : "1.3.6.1.2.1.224.1.1.5",
382
+ "status" : "current",
383
+ "description" :
384
+ """Information about FCIP links that exist on this device.""",
385
+ }, # table
386
+ "fcipLinkEntry" : {
387
+ "nodetype" : "row",
388
+ "moduleName" : "FCIP-MGMT-MIB",
389
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1",
390
+ "create" : "true",
391
+ "status" : "current",
392
+ "linkage" : [
393
+ "fcipEntityId",
394
+ "fcipLinkIndex",
395
+ ],
396
+ "description" :
397
+ """A conceptual row of the FCIP link table containing
398
+ information about a particular FCIP link. The values of the
399
+ read-create objects in this table are persistent across
400
+ system restarts.""",
401
+ }, # row
402
+ "fcipLinkIndex" : {
403
+ "nodetype" : "column",
404
+ "moduleName" : "FCIP-MGMT-MIB",
405
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.1",
406
+ "status" : "current",
407
+ "syntax" : {
408
+ "type" : {
409
+ "basetype" : "Unsigned32",
410
+ "ranges" : [
411
+ {
412
+ "min" : "1",
413
+ "max" : "4294967295"
414
+ },
415
+ ],
416
+ "range" : {
417
+ "min" : "1",
418
+ "max" : "4294967295"
419
+ },
420
+ },
421
+ },
422
+ "access" : "noaccess",
423
+ "description" :
424
+ """An arbitrary integer that uniquely identifies one FCIP link
425
+ within an FCIP entity.""",
426
+ }, # column
427
+ "fcipLinkIfIndex" : {
428
+ "nodetype" : "column",
429
+ "moduleName" : "FCIP-MGMT-MIB",
430
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.2",
431
+ "status" : "current",
432
+ "syntax" : {
433
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
434
+ },
435
+ "access" : "readonly",
436
+ "description" :
437
+ """The ifIndex value of the virtual interface corresponding to
438
+ the FCIP Link running over TCP/IP.""",
439
+ }, # column
440
+ "fcipLinkCost" : {
441
+ "nodetype" : "column",
442
+ "moduleName" : "FCIP-MGMT-MIB",
443
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.3",
444
+ "status" : "current",
445
+ "syntax" : {
446
+ "type" : { "module" :"", "name" : "Unsigned32"},
447
+ },
448
+ "access" : "readwrite",
449
+ "default" : "0",
450
+ "description" :
451
+ """The FSPF cost associated with this FCIP Link.""",
452
+ }, # column
453
+ "fcipLinkLocalFcipEntityMode" : {
454
+ "nodetype" : "column",
455
+ "moduleName" : "FCIP-MGMT-MIB",
456
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.4",
457
+ "status" : "current",
458
+ "syntax" : {
459
+ "type" : { "module" :"FCIP-MGMT-MIB", "name" : "FcipEntityMode"},
460
+ },
461
+ "access" : "readonly",
462
+ "description" :
463
+ """The mode of the local end of the FCIP link.""",
464
+ }, # column
465
+ "fcipLinkLocalFcipEntityAddressType" : {
466
+ "nodetype" : "column",
467
+ "moduleName" : "FCIP-MGMT-MIB",
468
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.5",
469
+ "status" : "current",
470
+ "syntax" : {
471
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
472
+ },
473
+ "access" : "readwrite",
474
+ "description" :
475
+ """The type of Internet address contained in the corresponding
476
+ instance of fcipLinkLocalFcipEntityAddress. Only address
477
+ types IPv4 and IPv6 are supported.""",
478
+ }, # column
479
+ "fcipLinkLocalFcipEntityAddress" : {
480
+ "nodetype" : "column",
481
+ "moduleName" : "FCIP-MGMT-MIB",
482
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.6",
483
+ "status" : "current",
484
+ "syntax" : {
485
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
486
+ },
487
+ "access" : "readwrite",
488
+ "description" :
489
+ """The Internet address for the local end of this FCIP Link.
490
+ The format of this object is determined by the value of the
491
+ fcipLinkLocalFcipEntityAddressType object.""",
492
+ }, # column
493
+ "fcipLinkRemFcipEntityWWN" : {
494
+ "nodetype" : "column",
495
+ "moduleName" : "FCIP-MGMT-MIB",
496
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.7",
497
+ "status" : "current",
498
+ "syntax" : {
499
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
500
+ },
501
+ "access" : "readwrite",
502
+ "description" :
503
+ """The World Wide Name of the remote FC Fabric Entity.""",
504
+ "reference" :
505
+ """RFC 3821, Section 7.1, FCIP Special Frame Format""",
506
+ }, # column
507
+ "fcipLinkRemFcipEntityId" : {
508
+ "nodetype" : "column",
509
+ "moduleName" : "FCIP-MGMT-MIB",
510
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.8",
511
+ "status" : "current",
512
+ "syntax" : {
513
+ "type" : { "module" :"FCIP-MGMT-MIB", "name" : "FcipEntityId"},
514
+ },
515
+ "access" : "readwrite",
516
+ "description" :
517
+ """The remote FCIP entity's identifier.""",
518
+ "reference" :
519
+ """RFC 3821, Section 7.1, FCIP Special Frame Format""",
520
+ }, # column
521
+ "fcipLinkRemFcipEntityAddressType" : {
522
+ "nodetype" : "column",
523
+ "moduleName" : "FCIP-MGMT-MIB",
524
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.9",
525
+ "status" : "current",
526
+ "syntax" : {
527
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
528
+ },
529
+ "access" : "readwrite",
530
+ "description" :
531
+ """The type of Internet address contained in the corresponding
532
+ instance of fcipLinkRemFcipEntityAddress. Only address
533
+ types IPv4 and IPv6 are supported.""",
534
+ }, # column
535
+ "fcipLinkRemFcipEntityAddress" : {
536
+ "nodetype" : "column",
537
+ "moduleName" : "FCIP-MGMT-MIB",
538
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.10",
539
+ "status" : "current",
540
+ "syntax" : {
541
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
542
+ },
543
+ "access" : "readwrite",
544
+ "description" :
545
+ """The Internet address for the remote end of this FCIP Link.
546
+ The format of this object is determined by the value of the
547
+ fcipLinkRemFcipEntityAddressType object.""",
548
+ }, # column
549
+ "fcipLinkStatus" : {
550
+ "nodetype" : "column",
551
+ "moduleName" : "FCIP-MGMT-MIB",
552
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.11",
553
+ "status" : "current",
554
+ "syntax" : {
555
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
556
+ },
557
+ "access" : "readwrite",
558
+ "description" :
559
+ """This object specifies the operational status of the row.
560
+
561
+ The values of objects fcipLinkLocalFcipEntityAddressType,
562
+ fcipLinkLocalFcipEntityAddress, fcipLinkRemFcipEntityWWN,
563
+ fcipLinkRemFcipEntityId, fcipLinkRemFcipEntityAddressType,
564
+
565
+
566
+
567
+ and fcipLinkRemFcipEntityAddress can be changed if the row
568
+ is in active(1) state. The object fcipLinkCost is set to
569
+ the value zero(0) if no value is supplied at the time of row
570
+ creation.
571
+
572
+ Setting the status to destroy(6) deletes the specified FCIP
573
+ link from the table. It also deletes all rows corresponding
574
+ to the specified FCIP link from the fcipTcpConnTable table.""",
575
+ }, # column
576
+ "fcipLinkCreateTime" : {
577
+ "nodetype" : "column",
578
+ "moduleName" : "FCIP-MGMT-MIB",
579
+ "oid" : "1.3.6.1.2.1.224.1.1.5.1.12",
580
+ "status" : "current",
581
+ "syntax" : {
582
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
583
+ },
584
+ "access" : "readonly",
585
+ "description" :
586
+ """The value of sysUpTime when this entry was last created.""",
587
+ }, # column
588
+ "fcipTcpConnTable" : {
589
+ "nodetype" : "table",
590
+ "moduleName" : "FCIP-MGMT-MIB",
591
+ "oid" : "1.3.6.1.2.1.224.1.1.6",
592
+ "status" : "current",
593
+ "description" :
594
+ """Information about existing TCP connections. Each FCIP link
595
+ within an FCIP entity manages one or more TCP connections.
596
+ The FCIP entity employs a Data Engine for each TCP
597
+ connection for handling FC frame encapsulation,
598
+ de-encapsulation, and transmission of FCIP frames on the
599
+ connection.""",
600
+ }, # table
601
+ "fcipTcpConnEntry" : {
602
+ "nodetype" : "row",
603
+ "moduleName" : "FCIP-MGMT-MIB",
604
+ "oid" : "1.3.6.1.2.1.224.1.1.6.1",
605
+ "status" : "current",
606
+ "linkage" : [
607
+ "fcipEntityId",
608
+ "fcipLinkIndex",
609
+ "fcipTcpConnLocalPort",
610
+ "fcipTcpConnRemPort",
611
+ ],
612
+ "description" :
613
+ """A conceptual row of the FCIP TCP Connection table containing
614
+ information about a particular TCP connection.""",
615
+ }, # row
616
+ "fcipTcpConnLocalPort" : {
617
+ "nodetype" : "column",
618
+ "moduleName" : "FCIP-MGMT-MIB",
619
+ "oid" : "1.3.6.1.2.1.224.1.1.6.1.1",
620
+ "status" : "current",
621
+ "syntax" : {
622
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
623
+ },
624
+ "access" : "noaccess",
625
+ "description" :
626
+ """The local port number for this TCP connection.""",
627
+ }, # column
628
+ "fcipTcpConnRemPort" : {
629
+ "nodetype" : "column",
630
+ "moduleName" : "FCIP-MGMT-MIB",
631
+ "oid" : "1.3.6.1.2.1.224.1.1.6.1.2",
632
+ "status" : "current",
633
+ "syntax" : {
634
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
635
+ },
636
+ "access" : "noaccess",
637
+ "description" :
638
+ """The remote port number for this TCP connection.""",
639
+ }, # column
640
+ "fcipTcpConnRWSize" : {
641
+ "nodetype" : "column",
642
+ "moduleName" : "FCIP-MGMT-MIB",
643
+ "oid" : "1.3.6.1.2.1.224.1.1.6.1.3",
644
+ "status" : "current",
645
+ "syntax" : {
646
+ "type" : { "module" :"", "name" : "Unsigned32"},
647
+ },
648
+ "access" : "readonly",
649
+ "description" :
650
+ """The default maximum TCP Receiver Window size for this TCP
651
+ connection.""",
652
+ }, # column
653
+ "fcipTcpConnMSS" : {
654
+ "nodetype" : "column",
655
+ "moduleName" : "FCIP-MGMT-MIB",
656
+ "oid" : "1.3.6.1.2.1.224.1.1.6.1.4",
657
+ "status" : "current",
658
+ "syntax" : {
659
+ "type" : { "module" :"", "name" : "Unsigned32"},
660
+ },
661
+ "access" : "readonly",
662
+ "description" :
663
+ """The TCP Maximum Segment Size (MSS) for this TCP connection.""",
664
+ }, # column
665
+ "fcipDynamicRouteTable" : {
666
+ "nodetype" : "table",
667
+ "moduleName" : "FCIP-MGMT-MIB",
668
+ "oid" : "1.3.6.1.2.1.224.1.1.7",
669
+ "status" : "current",
670
+ "description" :
671
+ """Information about dynamically discovered routing
672
+ information. The FCIP device may use the SLPv2 protocol in
673
+ conjunction with other protocols (say, FSPF) for dynamically
674
+ discovering other FCIP entities and may populate this table
675
+ with FCIP link information for each Destination Address
676
+ Identifier.""",
677
+ }, # table
678
+ "fcipDynamicRouteEntry" : {
679
+ "nodetype" : "row",
680
+ "moduleName" : "FCIP-MGMT-MIB",
681
+ "oid" : "1.3.6.1.2.1.224.1.1.7.1",
682
+ "status" : "current",
683
+ "linkage" : [
684
+ "fcipEntityId",
685
+ "fcipDynamicRouteDID",
686
+ ],
687
+ "description" :
688
+ """A conceptual row of the FCIP Dynamic Route Table containing
689
+ information about a particular FCIP route.""",
690
+ }, # row
691
+ "fcipDynamicRouteDID" : {
692
+ "nodetype" : "column",
693
+ "moduleName" : "FCIP-MGMT-MIB",
694
+ "oid" : "1.3.6.1.2.1.224.1.1.7.1.1",
695
+ "status" : "current",
696
+ "syntax" : {
697
+ "type" : { "module" :"FCIP-MGMT-MIB", "name" : "FcipDomainIdInOctetForm"},
698
+ },
699
+ "access" : "noaccess",
700
+ "description" :
701
+ """8-bit ID of a Fibre Channel Domain that is reachable from
702
+ this FCIP device.""",
703
+ }, # column
704
+ "fcipDynamicRouteLinkIndex" : {
705
+ "nodetype" : "column",
706
+ "moduleName" : "FCIP-MGMT-MIB",
707
+ "oid" : "1.3.6.1.2.1.224.1.1.7.1.2",
708
+ "status" : "current",
709
+ "syntax" : {
710
+ "type" : {
711
+ "basetype" : "Unsigned32",
712
+ "ranges" : [
713
+ {
714
+ "min" : "1",
715
+ "max" : "4294967295"
716
+ },
717
+ ],
718
+ "range" : {
719
+ "min" : "1",
720
+ "max" : "4294967295"
721
+ },
722
+ },
723
+ },
724
+ "access" : "readonly",
725
+ "description" :
726
+ """The FCIP Link used to reach the domain specified by the
727
+
728
+
729
+
730
+ corresponding instance of fcipDynamicRouteDID. The link
731
+ identified by a value of this object is the same FCIP link
732
+ as identified by the same value of fcipLinkIndex for the
733
+ same FCIP entity.""",
734
+ }, # column
735
+ "fcipStaticRouteTable" : {
736
+ "nodetype" : "table",
737
+ "moduleName" : "FCIP-MGMT-MIB",
738
+ "oid" : "1.3.6.1.2.1.224.1.1.8",
739
+ "status" : "current",
740
+ "description" :
741
+ """Information about static route entries configured by the
742
+ Network Admin. In the absence of dynamic discovery of
743
+ remote FCIP entities, the Network Manager will figure out
744
+ all remote FCIP devices that are reachable from this device
745
+ and populate this table with FCIP link information for each
746
+ Domain ID. At any time, both static and dynamic routing
747
+ can be active, and an entry in the static route table for a
748
+ given DID takes precedence over the entry in the dynamic
749
+ route table for the same Domain ID.""",
750
+ }, # table
751
+ "fcipStaticRouteEntry" : {
752
+ "nodetype" : "row",
753
+ "moduleName" : "FCIP-MGMT-MIB",
754
+ "oid" : "1.3.6.1.2.1.224.1.1.8.1",
755
+ "create" : "true",
756
+ "status" : "current",
757
+ "linkage" : [
758
+ "fcipEntityId",
759
+ "fcipStaticRouteDID",
760
+ ],
761
+ "description" :
762
+ """A conceptual row of the FCIP Static Route Table containing
763
+ information about a particular FCIP route. The values of
764
+ the read-create objects in this table are persistent across
765
+ system restarts.""",
766
+ }, # row
767
+ "fcipStaticRouteDID" : {
768
+ "nodetype" : "column",
769
+ "moduleName" : "FCIP-MGMT-MIB",
770
+ "oid" : "1.3.6.1.2.1.224.1.1.8.1.1",
771
+ "status" : "current",
772
+ "syntax" : {
773
+ "type" : { "module" :"FCIP-MGMT-MIB", "name" : "FcipDomainIdInOctetForm"},
774
+ },
775
+ "access" : "noaccess",
776
+ "description" :
777
+ """8-bit ID of a Fibre Channel Domain that is reachable from
778
+ this FCIP device.""",
779
+ }, # column
780
+ "fcipStaticRouteLinkIndex" : {
781
+ "nodetype" : "column",
782
+ "moduleName" : "FCIP-MGMT-MIB",
783
+ "oid" : "1.3.6.1.2.1.224.1.1.8.1.2",
784
+ "status" : "current",
785
+ "syntax" : {
786
+ "type" : {
787
+ "basetype" : "Unsigned32",
788
+ "ranges" : [
789
+ {
790
+ "min" : "1",
791
+ "max" : "4294967295"
792
+ },
793
+ ],
794
+ "range" : {
795
+ "min" : "1",
796
+ "max" : "4294967295"
797
+ },
798
+ },
799
+ },
800
+ "access" : "readwrite",
801
+ "description" :
802
+ """The FCIP Link used to reach the domain specified by the
803
+ corresponding instance of fcipStaticRouteDID. The link
804
+ identified by a value of this object is the same FCIP link
805
+ as identified by the same value of fcipLinkIndex for the
806
+ same FCIP entity.""",
807
+ }, # column
808
+ "fcipStaticRouteStatus" : {
809
+ "nodetype" : "column",
810
+ "moduleName" : "FCIP-MGMT-MIB",
811
+ "oid" : "1.3.6.1.2.1.224.1.1.8.1.3",
812
+ "status" : "current",
813
+ "syntax" : {
814
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
815
+ },
816
+ "access" : "readwrite",
817
+ "description" :
818
+ """This object specifies the operational status of the row.
819
+
820
+ When a management station sets the status to active(1),
821
+ the values for the object fcipStaticRouteLinkIndex should be
822
+ supplied as part of the set request.
823
+
824
+ Setting the status to destroy(6) deletes the specified FCIP
825
+ static route entry from the table.""",
826
+ }, # column
827
+ "fcipDiscoveryDomainTable" : {
828
+ "nodetype" : "table",
829
+ "moduleName" : "FCIP-MGMT-MIB",
830
+ "oid" : "1.3.6.1.2.1.224.1.1.9",
831
+ "status" : "current",
832
+ "description" :
833
+ """Information about FCIP Discovery Domains. Each FCIP
834
+ Discovery Domain is associated with one or more FCIP
835
+ entities.""",
836
+ }, # table
837
+ "fcipDiscoveryDomainEntry" : {
838
+ "nodetype" : "row",
839
+ "moduleName" : "FCIP-MGMT-MIB",
840
+ "oid" : "1.3.6.1.2.1.224.1.1.9.1",
841
+ "status" : "current",
842
+ "linkage" : [
843
+ "fcipEntityId",
844
+ "fcipDiscoveryDomainIndex",
845
+ ],
846
+ "description" :
847
+ """A conceptual row of the FCIP Discovery Domain Table
848
+ containing information about a particular FCIP Discovery
849
+ Domain that is associated with one or more FCIP entities.
850
+ The values of the read-write object fcipDiscoveryDomainName
851
+ are persistent across system restarts.""",
852
+ }, # row
853
+ "fcipDiscoveryDomainIndex" : {
854
+ "nodetype" : "column",
855
+ "moduleName" : "FCIP-MGMT-MIB",
856
+ "oid" : "1.3.6.1.2.1.224.1.1.9.1.1",
857
+ "status" : "current",
858
+ "syntax" : {
859
+ "type" : {
860
+ "basetype" : "Unsigned32",
861
+ "ranges" : [
862
+ {
863
+ "min" : "1",
864
+ "max" : "4294967295"
865
+ },
866
+ ],
867
+ "range" : {
868
+ "min" : "1",
869
+ "max" : "4294967295"
870
+ },
871
+ },
872
+ },
873
+ "access" : "noaccess",
874
+ "description" :
875
+ """An integer that uniquely identifies an FCIP Discovery Domain
876
+ associated with this FCIP entity.""",
877
+ }, # column
878
+ "fcipDiscoveryDomainName" : {
879
+ "nodetype" : "column",
880
+ "moduleName" : "FCIP-MGMT-MIB",
881
+ "oid" : "1.3.6.1.2.1.224.1.1.9.1.2",
882
+ "status" : "current",
883
+ "syntax" : {
884
+ "type" : {
885
+ "basetype" : "OctetString",
886
+ "parent module" : {
887
+ "name" : "SNMP-FRAMEWORK-MIB",
888
+ "type" : "SnmpAdminString",
889
+ },
890
+ "ranges" : [
891
+ {
892
+ "min" : "0",
893
+ "max" : "128"
894
+ },
895
+ ],
896
+ "range" : {
897
+ "min" : "0",
898
+ "max" : "128"
899
+ },
900
+ },
901
+ },
902
+ "access" : "readwrite",
903
+ "description" :
904
+ """The name of this FCIP Discovery Domain.""",
905
+ "reference" :
906
+ """RFC 3822, Section 4.1.1, FCIP Discovery Domains""",
907
+ }, # column
908
+ "fcipLinkErrorsTable" : {
909
+ "nodetype" : "table",
910
+ "moduleName" : "FCIP-MGMT-MIB",
911
+ "oid" : "1.3.6.1.2.1.224.1.1.10",
912
+ "status" : "current",
913
+ "description" :
914
+ """A list of error counters for FCIP Links. Each counter
915
+ records the number of times a particular error happened that
916
+ caused a TCP connection to close down.""",
917
+ "reference" :
918
+ """RFC 3821, Section 5.2, FCIP Link""",
919
+ }, # table
920
+ "fcipLinkErrorsEntry" : {
921
+ "nodetype" : "row",
922
+ "moduleName" : "FCIP-MGMT-MIB",
923
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1",
924
+ "status" : "current",
925
+ "linkage" : [
926
+ "fcipEntityId",
927
+ "fcipLinkIndex",
928
+ ],
929
+ "description" :
930
+ """A conceptual row of the FCIP Link Errors Table containing
931
+ error counters for an FCIP Link.""",
932
+ }, # row
933
+ "fcipLinkFcipLossofFcSynchs" : {
934
+ "nodetype" : "column",
935
+ "moduleName" : "FCIP-MGMT-MIB",
936
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.1",
937
+ "status" : "current",
938
+ "syntax" : {
939
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
940
+ },
941
+ "access" : "readonly",
942
+ "description" :
943
+ """The number of times FC synchronization was lost on this FCIP
944
+
945
+
946
+
947
+ Link. The last discontinuity of this counter is indicated
948
+ by fcipLinkCreateTime.""",
949
+ }, # column
950
+ "fcipLinkFcipEncapErrors" : {
951
+ "nodetype" : "column",
952
+ "moduleName" : "FCIP-MGMT-MIB",
953
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.2",
954
+ "status" : "current",
955
+ "syntax" : {
956
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
957
+ },
958
+ "access" : "readonly",
959
+ "description" :
960
+ """The number of FCIP frames received with encapsulation errors
961
+ such as improper header, format, or length. The last
962
+ discontinuity of this counter is indicated by
963
+ fcipLinkCreateTime.""",
964
+ }, # column
965
+ "fcipLinkFcipNotReceivedSfResps" : {
966
+ "nodetype" : "column",
967
+ "moduleName" : "FCIP-MGMT-MIB",
968
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.3",
969
+ "status" : "current",
970
+ "syntax" : {
971
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
972
+ },
973
+ "access" : "readonly",
974
+ "description" :
975
+ """The number of times an FCIP Special Frame Response was
976
+ expected but not received on this FCIP Link. The last
977
+ discontinuity of this counter is indicated by
978
+ fcipLinkCreateTime.""",
979
+ }, # column
980
+ "fcipLinkFcipSfRespMismatches" : {
981
+ "nodetype" : "column",
982
+ "moduleName" : "FCIP-MGMT-MIB",
983
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.4",
984
+ "status" : "current",
985
+ "syntax" : {
986
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
987
+ },
988
+ "access" : "readonly",
989
+ "description" :
990
+ """The number of times FCIP Special Frame Bytes mismatch
991
+ happened on this FCIP Link. The last discontinuity of this
992
+ counter is indicated by fcipLinkCreateTime.""",
993
+ }, # column
994
+ "fcipLinkFcipSfInvalidNonces" : {
995
+ "nodetype" : "column",
996
+ "moduleName" : "FCIP-MGMT-MIB",
997
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.5",
998
+ "status" : "current",
999
+ "syntax" : {
1000
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1001
+ },
1002
+ "access" : "readonly",
1003
+ "description" :
1004
+ """The number of times FCIP Special Frame Invalid Connection
1005
+ Nonce happened on this FCIP Link. The last discontinuity
1006
+ of this counter is indicated by fcipLinkCreateTime.""",
1007
+ }, # column
1008
+ "fcipLinkFcipReceivedSfDuplicates" : {
1009
+ "nodetype" : "column",
1010
+ "moduleName" : "FCIP-MGMT-MIB",
1011
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.6",
1012
+ "status" : "current",
1013
+ "syntax" : {
1014
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1015
+ },
1016
+ "access" : "readonly",
1017
+ "description" :
1018
+ """The number of times duplicate FCIP Special Frames were
1019
+ received on this FCIP Link. The last discontinuity of this
1020
+ counter is indicated by fcipLinkCreateTime.""",
1021
+ }, # column
1022
+ "fcipLinkFcipSfInvalidWWNs" : {
1023
+ "nodetype" : "column",
1024
+ "moduleName" : "FCIP-MGMT-MIB",
1025
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.7",
1026
+ "status" : "current",
1027
+ "syntax" : {
1028
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1029
+ },
1030
+ "access" : "readonly",
1031
+ "description" :
1032
+ """The number of times FCIP Special Frames with invalid
1033
+ destination FC Fabric Entity WWN were received on this FCIP
1034
+ Link. The last discontinuity of this counter is indicated
1035
+ by fcipLinkCreateTime.""",
1036
+ }, # column
1037
+ "fcipLinkFcipBB2LkaTimeOuts" : {
1038
+ "nodetype" : "column",
1039
+ "moduleName" : "FCIP-MGMT-MIB",
1040
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.8",
1041
+ "status" : "current",
1042
+ "syntax" : {
1043
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1044
+ },
1045
+ "access" : "readonly",
1046
+ "description" :
1047
+ """The number of FC Keep Alive Time-outs that occurred on
1048
+ this FCIP Link. The last discontinuity of this counter
1049
+ is indicated by fcipLinkCreateTime.""",
1050
+ }, # column
1051
+ "fcipLinkFcipSntpExpiredTimeStamps" : {
1052
+ "nodetype" : "column",
1053
+ "moduleName" : "FCIP-MGMT-MIB",
1054
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.9",
1055
+ "status" : "current",
1056
+ "syntax" : {
1057
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1058
+ },
1059
+ "access" : "readonly",
1060
+ "description" :
1061
+ """The number of frames discarded due to an expired Simple
1062
+ Network Time Protocol (SNTP) timestamp on this FCIP Link.
1063
+ The last discontinuity of this counter is indicated by
1064
+ fcipLinkCreateTime.""",
1065
+ }, # column
1066
+ "fcipLinkTcpTooManyErrors" : {
1067
+ "nodetype" : "column",
1068
+ "moduleName" : "FCIP-MGMT-MIB",
1069
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.10",
1070
+ "status" : "current",
1071
+ "syntax" : {
1072
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1073
+ },
1074
+ "access" : "readonly",
1075
+ "description" :
1076
+ """The number of TCP connections that closed down on this
1077
+ FCIP Link due to too many errors on the connection. The
1078
+ last discontinuity of this counter is indicated by
1079
+
1080
+
1081
+
1082
+ fcipLinkCreateTime.""",
1083
+ }, # column
1084
+ "fcipLinkTcpExcessiveDroppedDatagrams" : {
1085
+ "nodetype" : "column",
1086
+ "moduleName" : "FCIP-MGMT-MIB",
1087
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.11",
1088
+ "status" : "current",
1089
+ "syntax" : {
1090
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1091
+ },
1092
+ "access" : "readonly",
1093
+ "description" :
1094
+ """The number of TCP connections that closed down on this
1095
+ FCIP Link due to an excessive number of dropped FCIP
1096
+ packets. The last discontinuity of this counter is
1097
+ indicated by fcipLinkCreateTime.""",
1098
+ }, # column
1099
+ "fcipLinkTcpSaParamMismatches" : {
1100
+ "nodetype" : "column",
1101
+ "moduleName" : "FCIP-MGMT-MIB",
1102
+ "oid" : "1.3.6.1.2.1.224.1.1.10.1.12",
1103
+ "status" : "current",
1104
+ "syntax" : {
1105
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1106
+ },
1107
+ "access" : "readonly",
1108
+ "description" :
1109
+ """The number of times TCP connections with Security
1110
+ Association parameter mismatches were closed down on this
1111
+ FCIP Link. The last discontinuity of this counter is
1112
+ indicated by fcipLinkCreateTime.""",
1113
+ "reference" :
1114
+ """RFC 3821, Section 9.4.2, TCP Connection Security
1115
+ Associations (SAs)""",
1116
+ }, # column
1117
+ "fcipConformance" : {
1118
+ "nodetype" : "node",
1119
+ "moduleName" : "FCIP-MGMT-MIB",
1120
+ "oid" : "1.3.6.1.2.1.224.2",
1121
+ }, # node
1122
+ "fcipCompliances" : {
1123
+ "nodetype" : "node",
1124
+ "moduleName" : "FCIP-MGMT-MIB",
1125
+ "oid" : "1.3.6.1.2.1.224.2.1",
1126
+ }, # node
1127
+ "fcipGroups" : {
1128
+ "nodetype" : "node",
1129
+ "moduleName" : "FCIP-MGMT-MIB",
1130
+ "oid" : "1.3.6.1.2.1.224.2.2",
1131
+ }, # node
1132
+ }, # nodes
1133
+
1134
+ "groups" : {
1135
+ "fcipEntityScalarGroup" : {
1136
+ "nodetype" : "group",
1137
+ "moduleName" : "FCIP-MGMT-MIB",
1138
+ "oid" : "1.3.6.1.2.1.224.2.2.1",
1139
+ "status" : "current",
1140
+ "members" : {
1141
+ "fcipDynIpConfType" : {
1142
+ "nodetype" : "member",
1143
+ "module" : "FCIP-MGMT-MIB"
1144
+ },
1145
+ "fcipDeviceWWN" : {
1146
+ "nodetype" : "member",
1147
+ "module" : "FCIP-MGMT-MIB"
1148
+ },
1149
+ "fcipEntitySACKOption" : {
1150
+ "nodetype" : "member",
1151
+ "module" : "FCIP-MGMT-MIB"
1152
+ },
1153
+ }, # members
1154
+ "description" :
1155
+ """Collection of scalar objects applicable to all FCIP
1156
+ instances.""",
1157
+ }, # group
1158
+ "fcipEntityInstanceGroup" : {
1159
+ "nodetype" : "group",
1160
+ "moduleName" : "FCIP-MGMT-MIB",
1161
+ "oid" : "1.3.6.1.2.1.224.2.2.2",
1162
+ "status" : "current",
1163
+ "members" : {
1164
+ "fcipEntityName" : {
1165
+ "nodetype" : "member",
1166
+ "module" : "FCIP-MGMT-MIB"
1167
+ },
1168
+ "fcipEntityAddressType" : {
1169
+ "nodetype" : "member",
1170
+ "module" : "FCIP-MGMT-MIB"
1171
+ },
1172
+ "fcipEntityAddress" : {
1173
+ "nodetype" : "member",
1174
+ "module" : "FCIP-MGMT-MIB"
1175
+ },
1176
+ "fcipEntityTcpConnPort" : {
1177
+ "nodetype" : "member",
1178
+ "module" : "FCIP-MGMT-MIB"
1179
+ },
1180
+ "fcipEntitySeqNumWrap" : {
1181
+ "nodetype" : "member",
1182
+ "module" : "FCIP-MGMT-MIB"
1183
+ },
1184
+ "fcipEntityPHBSupport" : {
1185
+ "nodetype" : "member",
1186
+ "module" : "FCIP-MGMT-MIB"
1187
+ },
1188
+ "fcipEntityStatus" : {
1189
+ "nodetype" : "member",
1190
+ "module" : "FCIP-MGMT-MIB"
1191
+ },
1192
+ }, # members
1193
+ "description" :
1194
+ """A collection of objects providing information about FCIP
1195
+ instances.""",
1196
+ }, # group
1197
+ "fcipLinkGroup" : {
1198
+ "nodetype" : "group",
1199
+ "moduleName" : "FCIP-MGMT-MIB",
1200
+ "oid" : "1.3.6.1.2.1.224.2.2.3",
1201
+ "status" : "current",
1202
+ "members" : {
1203
+ "fcipLinkIfIndex" : {
1204
+ "nodetype" : "member",
1205
+ "module" : "FCIP-MGMT-MIB"
1206
+ },
1207
+ "fcipLinkCost" : {
1208
+ "nodetype" : "member",
1209
+ "module" : "FCIP-MGMT-MIB"
1210
+ },
1211
+ "fcipLinkLocalFcipEntityMode" : {
1212
+ "nodetype" : "member",
1213
+ "module" : "FCIP-MGMT-MIB"
1214
+ },
1215
+ "fcipLinkLocalFcipEntityAddressType" : {
1216
+ "nodetype" : "member",
1217
+ "module" : "FCIP-MGMT-MIB"
1218
+ },
1219
+ "fcipLinkLocalFcipEntityAddress" : {
1220
+ "nodetype" : "member",
1221
+ "module" : "FCIP-MGMT-MIB"
1222
+ },
1223
+ "fcipLinkRemFcipEntityWWN" : {
1224
+ "nodetype" : "member",
1225
+ "module" : "FCIP-MGMT-MIB"
1226
+ },
1227
+ "fcipLinkRemFcipEntityId" : {
1228
+ "nodetype" : "member",
1229
+ "module" : "FCIP-MGMT-MIB"
1230
+ },
1231
+ "fcipLinkRemFcipEntityAddressType" : {
1232
+ "nodetype" : "member",
1233
+ "module" : "FCIP-MGMT-MIB"
1234
+ },
1235
+ "fcipLinkRemFcipEntityAddress" : {
1236
+ "nodetype" : "member",
1237
+ "module" : "FCIP-MGMT-MIB"
1238
+ },
1239
+ "fcipLinkStatus" : {
1240
+ "nodetype" : "member",
1241
+ "module" : "FCIP-MGMT-MIB"
1242
+ },
1243
+ "fcipLinkCreateTime" : {
1244
+ "nodetype" : "member",
1245
+ "module" : "FCIP-MGMT-MIB"
1246
+ },
1247
+ }, # members
1248
+ "description" :
1249
+ """A collection of objects providing information about FCIP
1250
+ Links.""",
1251
+ }, # group
1252
+ "fcipTcpConnGroup" : {
1253
+ "nodetype" : "group",
1254
+ "moduleName" : "FCIP-MGMT-MIB",
1255
+ "oid" : "1.3.6.1.2.1.224.2.2.4",
1256
+ "status" : "current",
1257
+ "members" : {
1258
+ "fcipTcpConnRWSize" : {
1259
+ "nodetype" : "member",
1260
+ "module" : "FCIP-MGMT-MIB"
1261
+ },
1262
+ "fcipTcpConnMSS" : {
1263
+ "nodetype" : "member",
1264
+ "module" : "FCIP-MGMT-MIB"
1265
+ },
1266
+ }, # members
1267
+ "description" :
1268
+ """A collection of objects providing information about FCIP
1269
+ TCP connections.""",
1270
+ }, # group
1271
+ "fcipDiscoveryDomainGroup" : {
1272
+ "nodetype" : "group",
1273
+ "moduleName" : "FCIP-MGMT-MIB",
1274
+ "oid" : "1.3.6.1.2.1.224.2.2.5",
1275
+ "status" : "current",
1276
+ "members" : {
1277
+ "fcipDiscoveryDomainName" : {
1278
+ "nodetype" : "member",
1279
+ "module" : "FCIP-MGMT-MIB"
1280
+ },
1281
+ }, # members
1282
+ "description" :
1283
+ """A collection of objects providing information about FCIP
1284
+ Discovery Domains.""",
1285
+ }, # group
1286
+ "fcipLinkErrorsGroup" : {
1287
+ "nodetype" : "group",
1288
+ "moduleName" : "FCIP-MGMT-MIB",
1289
+ "oid" : "1.3.6.1.2.1.224.2.2.6",
1290
+ "status" : "current",
1291
+ "members" : {
1292
+ "fcipLinkFcipLossofFcSynchs" : {
1293
+ "nodetype" : "member",
1294
+ "module" : "FCIP-MGMT-MIB"
1295
+ },
1296
+ "fcipLinkFcipEncapErrors" : {
1297
+ "nodetype" : "member",
1298
+ "module" : "FCIP-MGMT-MIB"
1299
+ },
1300
+ "fcipLinkFcipNotReceivedSfResps" : {
1301
+ "nodetype" : "member",
1302
+ "module" : "FCIP-MGMT-MIB"
1303
+ },
1304
+ "fcipLinkFcipSfRespMismatches" : {
1305
+ "nodetype" : "member",
1306
+ "module" : "FCIP-MGMT-MIB"
1307
+ },
1308
+ "fcipLinkFcipSfInvalidNonces" : {
1309
+ "nodetype" : "member",
1310
+ "module" : "FCIP-MGMT-MIB"
1311
+ },
1312
+ "fcipLinkFcipReceivedSfDuplicates" : {
1313
+ "nodetype" : "member",
1314
+ "module" : "FCIP-MGMT-MIB"
1315
+ },
1316
+ "fcipLinkFcipSfInvalidWWNs" : {
1317
+ "nodetype" : "member",
1318
+ "module" : "FCIP-MGMT-MIB"
1319
+ },
1320
+ "fcipLinkFcipBB2LkaTimeOuts" : {
1321
+ "nodetype" : "member",
1322
+ "module" : "FCIP-MGMT-MIB"
1323
+ },
1324
+ "fcipLinkFcipSntpExpiredTimeStamps" : {
1325
+ "nodetype" : "member",
1326
+ "module" : "FCIP-MGMT-MIB"
1327
+ },
1328
+ "fcipLinkTcpTooManyErrors" : {
1329
+ "nodetype" : "member",
1330
+ "module" : "FCIP-MGMT-MIB"
1331
+ },
1332
+ "fcipLinkTcpExcessiveDroppedDatagrams" : {
1333
+ "nodetype" : "member",
1334
+ "module" : "FCIP-MGMT-MIB"
1335
+ },
1336
+ "fcipLinkTcpSaParamMismatches" : {
1337
+ "nodetype" : "member",
1338
+ "module" : "FCIP-MGMT-MIB"
1339
+ },
1340
+ }, # members
1341
+ "description" :
1342
+ """A collection of objects providing information about FCIP
1343
+ link errors.""",
1344
+ }, # group
1345
+ "fcipDynamicRouteGroup" : {
1346
+ "nodetype" : "group",
1347
+ "moduleName" : "FCIP-MGMT-MIB",
1348
+ "oid" : "1.3.6.1.2.1.224.2.2.7",
1349
+ "status" : "current",
1350
+ "members" : {
1351
+ "fcipDynamicRouteLinkIndex" : {
1352
+ "nodetype" : "member",
1353
+ "module" : "FCIP-MGMT-MIB"
1354
+ },
1355
+ }, # members
1356
+ "description" :
1357
+ """A collection of objects providing information about FCIP
1358
+ dynamic routes.""",
1359
+ }, # group
1360
+ "fcipStaticRouteGroup" : {
1361
+ "nodetype" : "group",
1362
+ "moduleName" : "FCIP-MGMT-MIB",
1363
+ "oid" : "1.3.6.1.2.1.224.2.2.8",
1364
+ "status" : "current",
1365
+ "members" : {
1366
+ "fcipStaticRouteLinkIndex" : {
1367
+ "nodetype" : "member",
1368
+ "module" : "FCIP-MGMT-MIB"
1369
+ },
1370
+ "fcipStaticRouteStatus" : {
1371
+ "nodetype" : "member",
1372
+ "module" : "FCIP-MGMT-MIB"
1373
+ },
1374
+ }, # members
1375
+ "description" :
1376
+ """A collection of objects providing information about FCIP
1377
+ static routes.""",
1378
+ }, # group
1379
+ }, # groups
1380
+
1381
+ "compliances" : {
1382
+ "fcipCompliance" : {
1383
+ "nodetype" : "compliance",
1384
+ "moduleName" : "FCIP-MGMT-MIB",
1385
+ "oid" : "1.3.6.1.2.1.224.2.1.1",
1386
+ "status" : "current",
1387
+ "description" :
1388
+ """Compliance statement for FCIP MIB.""",
1389
+ "requires" : {
1390
+ "fcipEntityScalarGroup" : {
1391
+ "nodetype" : "mandatory",
1392
+ "module" : "FCIP-MGMT-MIB"
1393
+ },
1394
+ "fcipEntityInstanceGroup" : {
1395
+ "nodetype" : "mandatory",
1396
+ "module" : "FCIP-MGMT-MIB"
1397
+ },
1398
+ "fcipLinkGroup" : {
1399
+ "nodetype" : "mandatory",
1400
+ "module" : "FCIP-MGMT-MIB"
1401
+ },
1402
+ "fcipTcpConnGroup" : {
1403
+ "nodetype" : "mandatory",
1404
+ "module" : "FCIP-MGMT-MIB"
1405
+ },
1406
+ "fcipDiscoveryDomainGroup" : {
1407
+ "nodetype" : "mandatory",
1408
+ "module" : "FCIP-MGMT-MIB"
1409
+ },
1410
+ "fcipLinkErrorsGroup" : {
1411
+ "nodetype" : "mandatory",
1412
+ "module" : "FCIP-MGMT-MIB"
1413
+ },
1414
+ "fcipDynamicRouteGroup" : {
1415
+ "nodetype" : "optional",
1416
+ "module" : "FCIP-MGMT-MIB",
1417
+ "description" :
1418
+ """This group is mandatory only for systems that do not
1419
+ have these objects in any other FC MIB. It may be
1420
+ implemented even in that case for convenience.""",
1421
+ },
1422
+ "fcipStaticRouteGroup" : {
1423
+ "nodetype" : "optional",
1424
+ "module" : "FCIP-MGMT-MIB",
1425
+ "description" :
1426
+ """This group is mandatory only for systems that do not
1427
+ have these objects in any other FC MIB. It may be
1428
+ implemented even in that case for convenience.""",
1429
+ },
1430
+ }, # requires
1431
+ "refinements" : {
1432
+ "fcipEntityAddressType" : {
1433
+ "module" : "FCIP-MGMT-MIB",
1434
+ "syntax" : {
1435
+ "type" : {
1436
+ "basetype" : "Enumeration",
1437
+ "parent module" : {
1438
+ "name" : "INET-ADDRESS-MIB",
1439
+ "type" : "InetAddressType",
1440
+ },
1441
+ "ipv4" : {
1442
+ "nodetype" : "namednumber",
1443
+ "number" : "1"
1444
+ },
1445
+ "ipv6" : {
1446
+ "nodetype" : "namednumber",
1447
+ "number" : "2"
1448
+ },
1449
+ },
1450
+ }, # syntax
1451
+ "description" :
1452
+ """Only IPv4 and IPv6 address types need to be supported for
1453
+ addressing FCIP entities.""",
1454
+ },
1455
+ "fcipEntityAddress" : {
1456
+ "module" : "FCIP-MGMT-MIB",
1457
+ "syntax" : {
1458
+ "type" : {
1459
+ "basetype" : "OctetString",
1460
+ "parent module" : {
1461
+ "name" : "INET-ADDRESS-MIB",
1462
+ "type" : "InetAddress",
1463
+ },
1464
+ "ranges" : [
1465
+ {
1466
+ "min" : "4",
1467
+ "max" : "4"
1468
+ },
1469
+ {
1470
+ "min" : "16",
1471
+ "max" : "16"
1472
+ },
1473
+ ],
1474
+ "range" : {
1475
+ "min" : "4",
1476
+ "max" : "16"
1477
+ },
1478
+ },
1479
+ }, # syntax
1480
+ "description" :
1481
+ """Size of FCIP entity's IP address depends on address type.
1482
+ FCIP entity address size is four if the IP address is
1483
+ IPv4 and sixteen if the IP address type is IPv6.""",
1484
+ },
1485
+ "fcipLinkLocalFcipEntityAddressType" : {
1486
+ "module" : "FCIP-MGMT-MIB",
1487
+ "syntax" : {
1488
+ "type" : {
1489
+ "basetype" : "Enumeration",
1490
+ "parent module" : {
1491
+ "name" : "INET-ADDRESS-MIB",
1492
+ "type" : "InetAddressType",
1493
+ },
1494
+ "ipv4" : {
1495
+ "nodetype" : "namednumber",
1496
+ "number" : "1"
1497
+ },
1498
+ "ipv6" : {
1499
+ "nodetype" : "namednumber",
1500
+ "number" : "2"
1501
+ },
1502
+ },
1503
+ }, # syntax
1504
+ "description" :
1505
+ """Only IPv4 and IPv6 address types need to be supported for
1506
+ addressing the local FCIP entities.""",
1507
+ },
1508
+ "fcipLinkLocalFcipEntityAddress" : {
1509
+ "module" : "FCIP-MGMT-MIB",
1510
+ "syntax" : {
1511
+ "type" : {
1512
+ "basetype" : "OctetString",
1513
+ "parent module" : {
1514
+ "name" : "INET-ADDRESS-MIB",
1515
+ "type" : "InetAddress",
1516
+ },
1517
+ "ranges" : [
1518
+ {
1519
+ "min" : "4",
1520
+ "max" : "4"
1521
+ },
1522
+ {
1523
+ "min" : "16",
1524
+ "max" : "16"
1525
+ },
1526
+ ],
1527
+ "range" : {
1528
+ "min" : "4",
1529
+ "max" : "16"
1530
+ },
1531
+ },
1532
+ }, # syntax
1533
+ "description" :
1534
+ """Size of FCIP entity's IP address depends on address type.
1535
+ FCIP entity address size is four if the IP address is
1536
+ IPv4 and sixteen if the IP address type is IPv6.""",
1537
+ },
1538
+ "fcipLinkRemFcipEntityAddressType" : {
1539
+ "module" : "FCIP-MGMT-MIB",
1540
+ "syntax" : {
1541
+ "type" : {
1542
+ "basetype" : "Enumeration",
1543
+ "parent module" : {
1544
+ "name" : "INET-ADDRESS-MIB",
1545
+ "type" : "InetAddressType",
1546
+ },
1547
+ "ipv4" : {
1548
+ "nodetype" : "namednumber",
1549
+ "number" : "1"
1550
+ },
1551
+ "ipv6" : {
1552
+ "nodetype" : "namednumber",
1553
+ "number" : "2"
1554
+ },
1555
+ },
1556
+ }, # syntax
1557
+ "description" :
1558
+ """Only IPv4 and IPv6 address types need to be supported for
1559
+ addressing the remote FCIP entities.""",
1560
+ },
1561
+ "fcipLinkRemFcipEntityAddress" : {
1562
+ "module" : "FCIP-MGMT-MIB",
1563
+ "syntax" : {
1564
+ "type" : {
1565
+ "basetype" : "OctetString",
1566
+ "parent module" : {
1567
+ "name" : "INET-ADDRESS-MIB",
1568
+ "type" : "InetAddress",
1569
+ },
1570
+ "ranges" : [
1571
+ {
1572
+ "min" : "4",
1573
+ "max" : "4"
1574
+ },
1575
+ {
1576
+ "min" : "16",
1577
+ "max" : "16"
1578
+ },
1579
+ ],
1580
+ "range" : {
1581
+ "min" : "4",
1582
+ "max" : "16"
1583
+ },
1584
+ },
1585
+ }, # syntax
1586
+ "description" :
1587
+ """Size of FCIP entity's IP address depends on the address
1588
+ type. FCIP entity address size is four if the IP address
1589
+ is IPv4 and sixteen if the IP address type is IPv6.""",
1590
+ },
1591
+ }, # refinements
1592
+
1593
+ }, # compliance
1594
+ }, # compliances
1595
+
1596
+ }