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,1717 @@
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 IFCP-MGMT-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/IFCP-MGMT-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "IFCP-MGMT-MIB",
11
+
12
+ "IFCP-MGMT-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF STORage Maintenance (STORM) Working Group""",
17
+ "contact" :
18
+ """
19
+ Working Group Email : storm@ietf.org
20
+ Attn: Prakash Venkatesen
21
+ HCL Technologies
22
+ Email: prakashvn@hcl.com""",
23
+ "description" :
24
+ """This module defines management information specific
25
+ to Internet Fibre Channel Protocol (iFCP) gateway
26
+ management.
27
+
28
+ Copyright (c) 2011 IETF Trust and the persons
29
+ identified as authors of the code. All rights
30
+ reserved.
31
+
32
+ Redistribution and use in source and binary forms,
33
+ with or without modification, is permitted pursuant
34
+ to, and subject to the license terms contained in, the
35
+ Simplified BSD License set forth in Section 4.c of the
36
+ IETF Trust's Legal Provisions Relating to IETF
37
+ Documents (http://trustee.ietf.org/license-info).""",
38
+ "revisions" : (
39
+ {
40
+ "date" : "2011-03-09 00:00",
41
+ "description" :
42
+ """Second version of iFCP Management Module. The iFCP
43
+ address translation mode is deprecated.
44
+ This MIB module published as RFC 6173.""",
45
+ },
46
+ {
47
+ "date" : "2006-01-17 00:00",
48
+ "description" :
49
+ """Initial version of iFCP Management Module.
50
+ This MIB module published as RFC 4369.""",
51
+ },
52
+ ),
53
+ "identity node" : "ifcpMgmtMIB",
54
+ },
55
+
56
+ "imports" : (
57
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
58
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
59
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
60
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
61
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
62
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
63
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
64
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
65
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
66
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
67
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
68
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
69
+ {"module" : "RMON2-MIB", "name" : "ZeroBasedCounter32"},
70
+ {"module" : "HCNUM-TC", "name" : "ZeroBasedCounter64"},
71
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
72
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
73
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
74
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
75
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
76
+ {"module" : "FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
77
+ {"module" : "FC-MGMT-MIB", "name" : "FcAddressIdOrZero"},
78
+ {"module" : "ENTITY-MIB", "name" : "PhysicalIndexOrZero"},
79
+ ),
80
+
81
+ "typedefs" : {
82
+ "IfcpIpTOVorZero" : {
83
+ "basetype" : "Unsigned32",
84
+ "status" : "current",
85
+ "ranges" : [
86
+ {
87
+ "min" : "0",
88
+ "max" : "3600"
89
+ },
90
+ ],
91
+ "range" : {
92
+ "min" : "0",
93
+ "max" : "3600"
94
+ },
95
+ "format" : "d",
96
+ "description" :
97
+ """The maximum propagation delay, in seconds,
98
+ for an encapsulated FC frame to traverse the
99
+ IP network. A value of 0 implies fibre
100
+ channel frame lifetime limits will not be
101
+ enforced.""",
102
+ "reference" :
103
+ """RFC 4172, iFCP Protocol Specification""",
104
+ },
105
+ "IfcpLTIorZero" : {
106
+ "basetype" : "Unsigned32",
107
+ "status" : "current",
108
+ "ranges" : [
109
+ {
110
+ "min" : "0",
111
+ "max" : "65535"
112
+ },
113
+ ],
114
+ "range" : {
115
+ "min" : "0",
116
+ "max" : "65535"
117
+ },
118
+ "format" : "d",
119
+ "description" :
120
+ """The value for the Liveness Test Interval
121
+ (LTI) being used in an iFCP connection, in
122
+ seconds. A value of 0 implies no Liveness
123
+ Test Interval will be used.""",
124
+ "reference" :
125
+ """RFC 4172, iFCP Protocol Specification""",
126
+ },
127
+ "IfcpSessionStates" : {
128
+ "basetype" : "Enumeration",
129
+ "status" : "current",
130
+ "down" : {
131
+ "nodetype" : "namednumber",
132
+ "number" : "1"
133
+ },
134
+ "openPending" : {
135
+ "nodetype" : "namednumber",
136
+ "number" : "2"
137
+ },
138
+ "open" : {
139
+ "nodetype" : "namednumber",
140
+ "number" : "3"
141
+ },
142
+ "description" :
143
+ """The value for an iFCP session state.""",
144
+ },
145
+ "IfcpAddressMode" : {
146
+ "basetype" : "Enumeration",
147
+ "status" : "current",
148
+ "addressTransparent" : {
149
+ "nodetype" : "namednumber",
150
+ "number" : "1"
151
+ },
152
+ "addressTranslation" : {
153
+ "nodetype" : "namednumber",
154
+ "number" : "2"
155
+ },
156
+ "description" :
157
+ """The values for iFCP Address Translation
158
+ Mode.""",
159
+ "reference" :
160
+ """RFC 6172, Deprecation of iFCP Address
161
+ Translation Mode""",
162
+ },
163
+ }, # typedefs
164
+
165
+ "nodes" : {
166
+ "ifcpMgmtMIB" : {
167
+ "nodetype" : "node",
168
+ "moduleName" : "IFCP-MGMT-MIB",
169
+ "oid" : "1.3.6.1.2.1.10.230",
170
+ "status" : "current",
171
+ }, # node
172
+ "ifcpGatewayObjects" : {
173
+ "nodetype" : "node",
174
+ "moduleName" : "IFCP-MGMT-MIB",
175
+ "oid" : "1.3.6.1.2.1.10.230.1",
176
+ }, # node
177
+ "ifcpLclGatewayInfo" : {
178
+ "nodetype" : "node",
179
+ "moduleName" : "IFCP-MGMT-MIB",
180
+ "oid" : "1.3.6.1.2.1.10.230.1.1",
181
+ }, # node
182
+ "ifcpLclGtwyInstTable" : {
183
+ "nodetype" : "table",
184
+ "moduleName" : "IFCP-MGMT-MIB",
185
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1",
186
+ "status" : "current",
187
+ "description" :
188
+ """Information about all local iFCP gateway instances that can
189
+ be monitored and controlled. This table contains an entry
190
+ for each local iFCP gateway instance that is being managed.""",
191
+ }, # table
192
+ "ifcpLclGtwyInstEntry" : {
193
+ "nodetype" : "row",
194
+ "moduleName" : "IFCP-MGMT-MIB",
195
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1",
196
+ "status" : "current",
197
+ "linkage" : [
198
+ "ifcpLclGtwyInstIndex",
199
+ ],
200
+ "description" :
201
+ """An entry in the local iFCP gateway instance table.
202
+ Parameters and settings for the gateway are found here.""",
203
+ }, # row
204
+ "ifcpLclGtwyInstIndex" : {
205
+ "nodetype" : "column",
206
+ "moduleName" : "IFCP-MGMT-MIB",
207
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.1",
208
+ "status" : "current",
209
+ "syntax" : {
210
+ "type" : {
211
+ "basetype" : "Unsigned32",
212
+ "ranges" : [
213
+ {
214
+ "min" : "1",
215
+ "max" : "2147483647"
216
+ },
217
+ ],
218
+ "range" : {
219
+ "min" : "1",
220
+ "max" : "2147483647"
221
+ },
222
+ },
223
+ },
224
+ "access" : "noaccess",
225
+ "description" :
226
+ """An arbitrary integer value to uniquely identify this iFCP
227
+ gateway from other local gateway instances.""",
228
+ }, # column
229
+ "ifcpLclGtwyInstPhyIndex" : {
230
+ "nodetype" : "column",
231
+ "moduleName" : "IFCP-MGMT-MIB",
232
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.2",
233
+ "status" : "current",
234
+ "syntax" : {
235
+ "type" : { "module" :"ENTITY-MIB", "name" : "PhysicalIndexOrZero"},
236
+ },
237
+ "access" : "readonly",
238
+ "description" :
239
+ """An index indicating the location of this local gateway within
240
+ a larger entity, if one exists. If supported, this is the
241
+ entPhysicalIndex from the Entity MIB (Version 3), for this
242
+ iFCP gateway. If not supported, or if not related to a
243
+ physical entity, then the value of this object is 0.""",
244
+ "reference" :
245
+ """Entity MIB (Version 3)""",
246
+ }, # column
247
+ "ifcpLclGtwyInstVersionMin" : {
248
+ "nodetype" : "column",
249
+ "moduleName" : "IFCP-MGMT-MIB",
250
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.3",
251
+ "status" : "current",
252
+ "syntax" : {
253
+ "type" : {
254
+ "basetype" : "Unsigned32",
255
+ "ranges" : [
256
+ {
257
+ "min" : "0",
258
+ "max" : "255"
259
+ },
260
+ ],
261
+ "range" : {
262
+ "min" : "0",
263
+ "max" : "255"
264
+ },
265
+ },
266
+ },
267
+ "access" : "readonly",
268
+ "description" :
269
+ """The minimum iFCP protocol version supported by the local iFCP
270
+ gateway instance.""",
271
+ "reference" :
272
+ """RFC 4172, iFCP Protocol Specification""",
273
+ }, # column
274
+ "ifcpLclGtwyInstVersionMax" : {
275
+ "nodetype" : "column",
276
+ "moduleName" : "IFCP-MGMT-MIB",
277
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.4",
278
+ "status" : "current",
279
+ "syntax" : {
280
+ "type" : {
281
+ "basetype" : "Unsigned32",
282
+ "ranges" : [
283
+ {
284
+ "min" : "0",
285
+ "max" : "255"
286
+ },
287
+ ],
288
+ "range" : {
289
+ "min" : "0",
290
+ "max" : "255"
291
+ },
292
+ },
293
+ },
294
+ "access" : "readonly",
295
+ "description" :
296
+ """The maximum iFCP protocol version supported by the local iFCP
297
+ gateway instance.""",
298
+ "reference" :
299
+ """RFC 4172, iFCP Protocol Specification""",
300
+ }, # column
301
+ "ifcpLclGtwyInstAddrTransMode" : {
302
+ "nodetype" : "column",
303
+ "moduleName" : "IFCP-MGMT-MIB",
304
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.5",
305
+ "status" : "current",
306
+ "syntax" : {
307
+ "type" : { "module" :"IFCP-MGMT-MIB", "name" : "IfcpAddressMode"},
308
+ },
309
+ "access" : "readwrite",
310
+ "default" : "addressTransparent",
311
+ "description" :
312
+ """The local iFCP gateway operating mode. Changing this value
313
+ may cause existing sessions to be disrupted.""",
314
+ "reference" :
315
+ """RFC 4172, iFCP Protocol Specification;
316
+ RFC 6172, Deprecation of iFCP Address
317
+ Translation Mode""",
318
+ }, # column
319
+ "ifcpLclGtwyInstFcBrdcstSupport" : {
320
+ "nodetype" : "column",
321
+ "moduleName" : "IFCP-MGMT-MIB",
322
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.6",
323
+ "status" : "current",
324
+ "syntax" : {
325
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
326
+ },
327
+ "access" : "readwrite",
328
+ "default" : "false",
329
+ "description" :
330
+ """This value indicates whether the local iFCP gateway supports
331
+ FC Broadcast. Changing this value may cause existing sessions
332
+ to be disrupted.""",
333
+ "reference" :
334
+ """RFC 4172, iFCP Protocol Specification""",
335
+ }, # column
336
+ "ifcpLclGtwyInstDefaultIpTOV" : {
337
+ "nodetype" : "column",
338
+ "moduleName" : "IFCP-MGMT-MIB",
339
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.7",
340
+ "status" : "current",
341
+ "syntax" : {
342
+ "type" : { "module" :"IFCP-MGMT-MIB", "name" : "IfcpIpTOVorZero"},
343
+ },
344
+ "access" : "readwrite",
345
+ "default" : "6",
346
+ "units" : "seconds",
347
+ "description" :
348
+ """The default IP_TOV used for iFCP sessions at this gateway.
349
+ This is the default maximum propagation delay that will be
350
+ used for an iFCP session. The value can be changed on a
351
+ per-session basis. The valid range is 0 - 3600 seconds.
352
+ A value of 0 implies that fibre channel frame lifetime limits
353
+ will not be enforced.""",
354
+ "reference" :
355
+ """RFC 4172, iFCP Protocol Specification""",
356
+ }, # column
357
+ "ifcpLclGtwyInstDefaultLTInterval" : {
358
+ "nodetype" : "column",
359
+ "moduleName" : "IFCP-MGMT-MIB",
360
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.8",
361
+ "status" : "current",
362
+ "syntax" : {
363
+ "type" : { "module" :"IFCP-MGMT-MIB", "name" : "IfcpLTIorZero"},
364
+ },
365
+ "access" : "readwrite",
366
+ "default" : "10",
367
+ "units" : "seconds",
368
+ "description" :
369
+ """The default Liveness Test Interval (LTI), in seconds, used
370
+ for iFCP sessions at this gateway. This is the default
371
+ value for an iFCP session and can be changed on a
372
+ per-session basis. The valid range is 0 - 65535 seconds.
373
+ A value of 0 implies no Liveness Test Interval will be
374
+ performed on a session.""",
375
+ "reference" :
376
+ """RFC 4172, iFCP Protocol Specification""",
377
+ }, # column
378
+ "ifcpLclGtwyInstDescr" : {
379
+ "nodetype" : "column",
380
+ "moduleName" : "IFCP-MGMT-MIB",
381
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.9",
382
+ "status" : "current",
383
+ "syntax" : {
384
+ "type" : {
385
+ "basetype" : "OctetString",
386
+ "parent module" : {
387
+ "name" : "SNMP-FRAMEWORK-MIB",
388
+ "type" : "SnmpAdminString",
389
+ },
390
+ "ranges" : [
391
+ {
392
+ "min" : "0",
393
+ "max" : "64"
394
+ },
395
+ ],
396
+ "range" : {
397
+ "min" : "0",
398
+ "max" : "64"
399
+ },
400
+ },
401
+ },
402
+ "access" : "readwrite",
403
+ "default" : "",
404
+ "description" :
405
+ """A user-entered description for this iFCP gateway.""",
406
+ }, # column
407
+ "ifcpLclGtwyInstNumActiveSessions" : {
408
+ "nodetype" : "column",
409
+ "moduleName" : "IFCP-MGMT-MIB",
410
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.10",
411
+ "status" : "current",
412
+ "syntax" : {
413
+ "type" : {
414
+ "basetype" : "Unsigned32",
415
+ "parent module" : {
416
+ "name" : "SNMPv2-SMI",
417
+ "type" : "Gauge32",
418
+ },
419
+ "ranges" : [
420
+ {
421
+ "min" : "0",
422
+ "max" : "4294967295"
423
+ },
424
+ ],
425
+ "range" : {
426
+ "min" : "0",
427
+ "max" : "4294967295"
428
+ },
429
+ },
430
+ },
431
+ "access" : "readonly",
432
+ "description" :
433
+ """The current total number of iFCP sessions in the open or
434
+ open-pending state.""",
435
+ }, # column
436
+ "ifcpLclGtwyInstStorageType" : {
437
+ "nodetype" : "column",
438
+ "moduleName" : "IFCP-MGMT-MIB",
439
+ "oid" : "1.3.6.1.2.1.10.230.1.1.1.1.11",
440
+ "status" : "current",
441
+ "syntax" : {
442
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
443
+ },
444
+ "access" : "readonly",
445
+ "default" : "nonVolatile",
446
+ "description" :
447
+ """The storage type for this row. Parameter values defined
448
+ for a gateway are usually non-volatile, but may be volatile
449
+ or permanent in some configurations. If permanent, then
450
+ the following parameters must have read-write access:
451
+ ifcpLclGtwyInstAddrTransMode, ifcpLclGtwyInstDefaultIpTOV,
452
+ and ifcpLclGtwyInstDefaultLTInterval.""",
453
+ }, # column
454
+ "ifcpNportSessionInfo" : {
455
+ "nodetype" : "node",
456
+ "moduleName" : "IFCP-MGMT-MIB",
457
+ "oid" : "1.3.6.1.2.1.10.230.1.2",
458
+ }, # node
459
+ "ifcpSessionAttributesTable" : {
460
+ "nodetype" : "table",
461
+ "moduleName" : "IFCP-MGMT-MIB",
462
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1",
463
+ "status" : "current",
464
+ "description" :
465
+ """An iFCP session consists of the pair of N_PORTs comprising
466
+ the session endpoints joined by a single TCP/IP connection.
467
+ This table provides information on each iFCP session
468
+
469
+
470
+
471
+ currently using a local iFCP gateway instance. iFCP sessions
472
+ are created and removed by the iFCP gateway instances, which
473
+ are reflected in this table.""",
474
+ }, # table
475
+ "ifcpSessionAttributesEntry" : {
476
+ "nodetype" : "row",
477
+ "moduleName" : "IFCP-MGMT-MIB",
478
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1",
479
+ "status" : "current",
480
+ "linkage" : [
481
+ "ifcpLclGtwyInstIndex",
482
+ "ifcpSessionIndex",
483
+ ],
484
+ "description" :
485
+ """Each entry contains information about one iFCP session consisting
486
+ of a pair of N_PORTs joined by a single TCP/IP connection. This
487
+ table's INDEX includes ifcpLclGtwyInstIndex, which identifies the
488
+ local iFCP gateway instance that created the session for the
489
+ entry.
490
+
491
+ Soon after an entry is created in this table for an iFCP session, it
492
+ will correspond to an entry in the tcpConnectionTable of the TCP-MIB
493
+ (RFC 4022). The corresponding entry might represent a preexisting
494
+ TCP connection, or it might be a newly created entry. (Note that if
495
+ IPv4 is being used, an entry in RFC 2012's tcpConnTable may also
496
+ correspond.) The values of ifcpSessionLclPrtlAddrType and
497
+ ifcpSessionRmtPrtlIfAddrType in this table and the values of
498
+ tcpConnectionLocalAddressType and tcpConnectionRemAddressType used
499
+ as INDEX values for the corresponding entry in the
500
+ tcpConnectionTable should be the same; this makes it simpler to
501
+ locate a session's TCP connection in the TCP-MIB. (Of course, all
502
+ four values need to be 'ipv4' if there's a corresponding entry in
503
+ the tcpConnTable.)
504
+
505
+ If an entry is created in this table for a session, prior to
506
+ knowing which local and/or remote port numbers will be used for
507
+ the TCP connection, then ifcpSessionLclPrtlTcpPort and/or
508
+ ifcpSessionRmtPrtlTcpPort have the value zero until such time as
509
+ they can be updated to the port numbers (to be) used for the
510
+ connection. (Thus, a port value of zero should not be used to
511
+ locate a session's TCP connection in the TCP-MIB.)
512
+
513
+ When the TCP connection terminates, the entry in the
514
+ tcpConnectionTable and the entry in this table both get deleted
515
+ (and, if applicable, so does the entry in the tcpConnTable).""",
516
+ }, # row
517
+ "ifcpSessionIndex" : {
518
+ "nodetype" : "column",
519
+ "moduleName" : "IFCP-MGMT-MIB",
520
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.1",
521
+ "status" : "current",
522
+ "syntax" : {
523
+ "type" : {
524
+ "basetype" : "Integer32",
525
+ "ranges" : [
526
+ {
527
+ "min" : "1",
528
+ "max" : "2147483647"
529
+ },
530
+ ],
531
+ "range" : {
532
+ "min" : "1",
533
+ "max" : "2147483647"
534
+ },
535
+ },
536
+ },
537
+ "access" : "noaccess",
538
+ "description" :
539
+ """The iFCP session index is a unique value used as an index
540
+ to the table, along with a specific local iFCP gateway
541
+ instance. This index is used because the local N Port and
542
+ remote N Port information would create a complex index that
543
+ would be difficult to implement.""",
544
+ }, # column
545
+ "ifcpSessionLclPrtlIfIndex" : {
546
+ "nodetype" : "column",
547
+ "moduleName" : "IFCP-MGMT-MIB",
548
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.2",
549
+ "status" : "current",
550
+ "syntax" : {
551
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
552
+ },
553
+ "access" : "readonly",
554
+ "description" :
555
+ """This is the interface index in the IF-MIB ifTable being used
556
+ as the local portal in this session, as described in the
557
+ IF-MIB. If the local portal is not associated with an entry
558
+ in the ifTable, then the value is 0. The ifType of the
559
+ interface will generally be a type that supports IP, but an
560
+ implementation may support iFCP using other protocols. This
561
+ object can be used to obtain additional information about the
562
+ interface.""",
563
+ "reference" :
564
+ """RFC 2863, The Interfaces Group MIB (IF-MIB)""",
565
+ }, # column
566
+ "ifcpSessionLclPrtlAddrType" : {
567
+ "nodetype" : "column",
568
+ "moduleName" : "IFCP-MGMT-MIB",
569
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.3",
570
+ "status" : "current",
571
+ "syntax" : {
572
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
573
+ },
574
+ "access" : "readonly",
575
+ "description" :
576
+ """The type of address in ifcpSessionLclIfAddr.""",
577
+ }, # column
578
+ "ifcpSessionLclPrtlAddr" : {
579
+ "nodetype" : "column",
580
+ "moduleName" : "IFCP-MGMT-MIB",
581
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.4",
582
+ "status" : "current",
583
+ "syntax" : {
584
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
585
+ },
586
+ "access" : "readonly",
587
+ "description" :
588
+ """This is the external IP address of the interface being used
589
+ for the iFCP local portal in this session. The address type
590
+ is defined in ifcpSessionLclPrtlAddrType. If the value is a
591
+ DNS name, then the name is resolved once, during the initial
592
+ session instantiation.""",
593
+ }, # column
594
+ "ifcpSessionLclPrtlTcpPort" : {
595
+ "nodetype" : "column",
596
+ "moduleName" : "IFCP-MGMT-MIB",
597
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.5",
598
+ "status" : "current",
599
+ "syntax" : {
600
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
601
+ },
602
+ "access" : "readonly",
603
+ "description" :
604
+ """This is the TCP port number that is being used for the iFCP
605
+ local portal in this session. This is normally an ephemeral
606
+ port number selected by the gateway. The value may be 0
607
+ during an initial setup period.""",
608
+ }, # column
609
+ "ifcpSessionLclNpWwun" : {
610
+ "nodetype" : "column",
611
+ "moduleName" : "IFCP-MGMT-MIB",
612
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.6",
613
+ "status" : "current",
614
+ "syntax" : {
615
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
616
+ },
617
+ "access" : "readonly",
618
+ "default" : "",
619
+ "description" :
620
+ """World Wide Unique Name of the local N Port. For an unbound
621
+ session, this variable will be a zero-length string.""",
622
+ "reference" :
623
+ """RFC 4172, iFCP Protocol Specification""",
624
+ }, # column
625
+ "ifcpSessionLclNpFcid" : {
626
+ "nodetype" : "column",
627
+ "moduleName" : "IFCP-MGMT-MIB",
628
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.7",
629
+ "status" : "current",
630
+ "syntax" : {
631
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcAddressIdOrZero"},
632
+ },
633
+ "access" : "readonly",
634
+ "description" :
635
+ """Fibre Channel Identifier of the local N Port. For an unbound
636
+ session, this variable will be a zero-length string.""",
637
+ "reference" :
638
+ """RFC 4172, iFCP Protocol Specification""",
639
+ }, # column
640
+ "ifcpSessionRmtNpWwun" : {
641
+ "nodetype" : "column",
642
+ "moduleName" : "IFCP-MGMT-MIB",
643
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.8",
644
+ "status" : "current",
645
+ "syntax" : {
646
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
647
+ },
648
+ "access" : "readonly",
649
+ "default" : "",
650
+ "description" :
651
+ """World Wide Unique Name of the remote N Port. For an unbound
652
+ session, this variable will be a zero-length string.""",
653
+ "reference" :
654
+ """RFC 4172, iFCP Protocol Specification""",
655
+ }, # column
656
+ "ifcpSessionRmtPrtlIfAddrType" : {
657
+ "nodetype" : "column",
658
+ "moduleName" : "IFCP-MGMT-MIB",
659
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.9",
660
+ "status" : "current",
661
+ "syntax" : {
662
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
663
+ },
664
+ "access" : "readonly",
665
+ "description" :
666
+ """The type of address in ifcpSessionRmtPrtlIfAddr.""",
667
+ }, # column
668
+ "ifcpSessionRmtPrtlIfAddr" : {
669
+ "nodetype" : "column",
670
+ "moduleName" : "IFCP-MGMT-MIB",
671
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.10",
672
+ "status" : "current",
673
+ "syntax" : {
674
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
675
+ },
676
+ "access" : "readonly",
677
+ "description" :
678
+ """This is the remote gateway IP address being used for the
679
+ portal on the remote iFCP gateway. The address type is
680
+ defined in ifcpSessionRmtPrtlIfAddrType. If the value is a
681
+ DNS name, then the name is resolved once, during the initial
682
+ session instantiation.""",
683
+ }, # column
684
+ "ifcpSessionRmtPrtlTcpPort" : {
685
+ "nodetype" : "column",
686
+ "moduleName" : "IFCP-MGMT-MIB",
687
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.11",
688
+ "status" : "current",
689
+ "syntax" : {
690
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
691
+ },
692
+ "access" : "readonly",
693
+ "default" : "3420",
694
+ "description" :
695
+ """This is the TCP port number being used for the portal on the
696
+ remote iFCP gateway. Generally, this will be the iFCP
697
+ canonical port. The value may be 0 during an initial setup
698
+ period.""",
699
+ }, # column
700
+ "ifcpSessionRmtNpFcid" : {
701
+ "nodetype" : "column",
702
+ "moduleName" : "IFCP-MGMT-MIB",
703
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.12",
704
+ "status" : "current",
705
+ "syntax" : {
706
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcAddressIdOrZero"},
707
+ },
708
+ "access" : "readonly",
709
+ "description" :
710
+ """Fibre Channel Identifier of the remote N Port. For an
711
+ unbound session, this variable will be a zero-length string.""",
712
+ "reference" :
713
+ """RFC 4172, iFCP Protocol Specification""",
714
+ }, # column
715
+ "ifcpSessionRmtNpFcidAlias" : {
716
+ "nodetype" : "column",
717
+ "moduleName" : "IFCP-MGMT-MIB",
718
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.13",
719
+ "status" : "current",
720
+ "syntax" : {
721
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcAddressIdOrZero"},
722
+ },
723
+ "access" : "readonly",
724
+ "description" :
725
+ """Fibre Channel Identifier Alias assigned by the local gateway
726
+ for the remote N Port. For an unbound session, this variable
727
+ will be a zero-length string.""",
728
+ "reference" :
729
+ """RFC 4172, iFCP Protocol Specification""",
730
+ }, # column
731
+ "ifcpSessionIpTOV" : {
732
+ "nodetype" : "column",
733
+ "moduleName" : "IFCP-MGMT-MIB",
734
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.14",
735
+ "status" : "current",
736
+ "syntax" : {
737
+ "type" : { "module" :"IFCP-MGMT-MIB", "name" : "IfcpIpTOVorZero"},
738
+ },
739
+ "access" : "readwrite",
740
+ "units" : "seconds",
741
+ "description" :
742
+ """The IP_TOV being used for this iFCP session. This is the
743
+ maximum propagation delay that will be used for the iFCP
744
+ session. The value can be changed on a per-session basis
745
+ and initially defaults to ifcpLclGtwyInstDefaultIpTOV for
746
+ the local gateway instance. The valid range is 0 - 3600
747
+ seconds. A value of 0 implies fibre channel frame lifetime
748
+ limits will not be enforced.""",
749
+ "reference" :
750
+ """RFC 4172, iFCP Protocol Specification""",
751
+ }, # column
752
+ "ifcpSessionLclLTIntvl" : {
753
+ "nodetype" : "column",
754
+ "moduleName" : "IFCP-MGMT-MIB",
755
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.15",
756
+ "status" : "current",
757
+ "syntax" : {
758
+ "type" : { "module" :"IFCP-MGMT-MIB", "name" : "IfcpLTIorZero"},
759
+ },
760
+ "access" : "readonly",
761
+ "units" : "seconds",
762
+ "description" :
763
+ """The Liveness Test Interval (LTI) used for this iFCP session.
764
+ The value can be changed on a per-session basis and initially
765
+ defaults to ifcpLclGtwyInstDefaultLTInterval for the local
766
+
767
+
768
+
769
+
770
+
771
+ gateway instance. The valid range is 0 - 65535 seconds.
772
+ A value of 0 implies that the gateway will not originate
773
+ Liveness Test messages for the session.""",
774
+ "reference" :
775
+ """RFC 4172, iFCP Protocol Specification""",
776
+ }, # column
777
+ "ifcpSessionRmtLTIntvl" : {
778
+ "nodetype" : "column",
779
+ "moduleName" : "IFCP-MGMT-MIB",
780
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.16",
781
+ "status" : "current",
782
+ "syntax" : {
783
+ "type" : { "module" :"IFCP-MGMT-MIB", "name" : "IfcpLTIorZero"},
784
+ },
785
+ "access" : "readonly",
786
+ "units" : "seconds",
787
+ "description" :
788
+ """The Liveness Test Interval (LTI) as requested by the remote
789
+ gateway instance to use for this iFCP session. This value may
790
+ change over the life of the session. The valid range is 0 -
791
+ 65535 seconds. A value of 0 implies that the remote gateway
792
+ has not been requested to originate Liveness Test messages for
793
+ the session.""",
794
+ "reference" :
795
+ """RFC 4172, iFCP Protocol Specification""",
796
+ }, # column
797
+ "ifcpSessionBound" : {
798
+ "nodetype" : "column",
799
+ "moduleName" : "IFCP-MGMT-MIB",
800
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.17",
801
+ "status" : "current",
802
+ "syntax" : {
803
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
804
+ },
805
+ "access" : "readonly",
806
+ "description" :
807
+ """This value indicates whether this session is bound to a
808
+ specific local and remote N Port. Sessions by default are
809
+ unbound and ready for future assignment to a local and remote
810
+ N Port.""",
811
+ "reference" :
812
+ """RFC 4172, iFCP Protocol Specification""",
813
+ }, # column
814
+ "ifcpSessionStorageType" : {
815
+ "nodetype" : "column",
816
+ "moduleName" : "IFCP-MGMT-MIB",
817
+ "oid" : "1.3.6.1.2.1.10.230.1.2.1.1.18",
818
+ "status" : "current",
819
+ "syntax" : {
820
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
821
+ },
822
+ "access" : "readonly",
823
+ "default" : "nonVolatile",
824
+ "description" :
825
+ """The storage type for this row. Parameter values defined
826
+ for a session are usually non-volatile, but may be volatile
827
+ or permanent in some configurations. If permanent, then
828
+ ifcpSessionIpTOV must have read-write access.""",
829
+ }, # column
830
+ "ifcpSessionStatsTable" : {
831
+ "nodetype" : "table",
832
+ "moduleName" : "IFCP-MGMT-MIB",
833
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2",
834
+ "status" : "current",
835
+ "description" :
836
+ """This table provides statistics on an iFCP session.""",
837
+ }, # table
838
+ "ifcpSessionStatsEntry" : {
839
+ "nodetype" : "row",
840
+ "moduleName" : "IFCP-MGMT-MIB",
841
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1",
842
+ "status" : "current",
843
+ "linkage" : [
844
+ { "IFCP-MGMT-MIB" : {
845
+ "indexkind" : "augments",
846
+ "relatedNode" : "ifcpSessionAttributesEntry",
847
+ }},
848
+ ],
849
+ "description" :
850
+ """Provides iFCP-specific statistics per session.""",
851
+ }, # row
852
+ "ifcpSessionState" : {
853
+ "nodetype" : "column",
854
+ "moduleName" : "IFCP-MGMT-MIB",
855
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.1",
856
+ "status" : "current",
857
+ "syntax" : {
858
+ "type" : { "module" :"IFCP-MGMT-MIB", "name" : "IfcpSessionStates"},
859
+ },
860
+ "access" : "readonly",
861
+ "description" :
862
+ """The current session operating state.""",
863
+ }, # column
864
+ "ifcpSessionDuration" : {
865
+ "nodetype" : "column",
866
+ "moduleName" : "IFCP-MGMT-MIB",
867
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.2",
868
+ "status" : "current",
869
+ "syntax" : {
870
+ "type" : {
871
+ "basetype" : "Unsigned32",
872
+ "ranges" : [
873
+ {
874
+ "min" : "0",
875
+ "max" : "4294967295"
876
+ },
877
+ ],
878
+ "range" : {
879
+ "min" : "0",
880
+ "max" : "4294967295"
881
+ },
882
+ },
883
+ },
884
+ "access" : "readonly",
885
+ "description" :
886
+ """This indicates, in seconds, how long the iFCP session has
887
+ been in an open or open-pending state. When a session is
888
+ down, the value is reset to 0.""",
889
+ }, # column
890
+ "ifcpSessionTxOctets" : {
891
+ "nodetype" : "column",
892
+ "moduleName" : "IFCP-MGMT-MIB",
893
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.3",
894
+ "status" : "current",
895
+ "syntax" : {
896
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
897
+ },
898
+ "access" : "readonly",
899
+ "description" :
900
+ """The total number of octets transmitted by the iFCP gateway
901
+ for this session. Discontinuities in the value of this
902
+ counter can occur at reinitialization of the management
903
+ system, and at other times as indicated by the value of
904
+ ifcpSessionDiscontinuityTime.""",
905
+ }, # column
906
+ "ifcpSessionRxOctets" : {
907
+ "nodetype" : "column",
908
+ "moduleName" : "IFCP-MGMT-MIB",
909
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.4",
910
+ "status" : "current",
911
+ "syntax" : {
912
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
913
+ },
914
+ "access" : "readonly",
915
+ "description" :
916
+ """The total number of octets received by the iFCP gateway for
917
+ this session. Discontinuities in the value of this
918
+ counter can occur at reinitialization of the management
919
+ system, and at other times as indicated by the value of
920
+ ifcpSessionDiscontinuityTime.""",
921
+ }, # column
922
+ "ifcpSessionTxFrames" : {
923
+ "nodetype" : "column",
924
+ "moduleName" : "IFCP-MGMT-MIB",
925
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.5",
926
+ "status" : "current",
927
+ "syntax" : {
928
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
929
+ },
930
+ "access" : "readonly",
931
+ "description" :
932
+ """The total number of iFCP frames transmitted by the gateway
933
+ for this session. Discontinuities in the value of this
934
+ counter can occur at reinitialization of the management
935
+ system, and at other times as indicated by the value of
936
+ ifcpSessionDiscontinuityTime.""",
937
+ }, # column
938
+ "ifcpSessionRxFrames" : {
939
+ "nodetype" : "column",
940
+ "moduleName" : "IFCP-MGMT-MIB",
941
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.6",
942
+ "status" : "current",
943
+ "syntax" : {
944
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
945
+ },
946
+ "access" : "readonly",
947
+ "description" :
948
+ """The total number of iFCP frames received by the gateway
949
+ for this session. Discontinuities in the value of this
950
+ counter can occur at reinitialization of the management
951
+ system, and at other times as indicated by the value of
952
+ ifcpSessionDiscontinuityTime.""",
953
+ }, # column
954
+ "ifcpSessionStaleFrames" : {
955
+ "nodetype" : "column",
956
+ "moduleName" : "IFCP-MGMT-MIB",
957
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.7",
958
+ "status" : "current",
959
+ "syntax" : {
960
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
961
+ },
962
+ "access" : "readonly",
963
+ "description" :
964
+ """The total number of received iFCP frames that were stale and
965
+ discarded by the gateway for this session. Discontinuities
966
+ in the value of this counter can occur at reinitialization
967
+ of the management system, and at other times as indicated by
968
+ the value of ifcpSessionDiscontinuityTime.""",
969
+ }, # column
970
+ "ifcpSessionHeaderCRCErrors" : {
971
+ "nodetype" : "column",
972
+ "moduleName" : "IFCP-MGMT-MIB",
973
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.8",
974
+ "status" : "current",
975
+ "syntax" : {
976
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
977
+ },
978
+ "access" : "readonly",
979
+ "description" :
980
+ """The total number of Cyclic Redundancy Check (CRC) errors that
981
+ occurred in the frame header, detected by the gateway for this
982
+ session. Usually, a single Header CRC error is sufficient to
983
+ terminate an iFCP session. Discontinuities in the value of this
984
+ counter can occur at reinitialization of the management system,
985
+ and at other times as indicated by the value of
986
+ ifcpSessionDiscontinuityTime.""",
987
+ }, # column
988
+ "ifcpSessionFcPayloadCRCErrors" : {
989
+ "nodetype" : "column",
990
+ "moduleName" : "IFCP-MGMT-MIB",
991
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.9",
992
+ "status" : "current",
993
+ "syntax" : {
994
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
995
+ },
996
+ "access" : "readonly",
997
+ "description" :
998
+ """The total number of CRC errors that occurred in the Fibre
999
+ Channel frame payload, detected by the gateway for this
1000
+ session. Discontinuities in the value of this counter can
1001
+ occur at reinitialization of the management system, and
1002
+ at other times as indicated by the value of
1003
+ ifcpSessionDiscontinuityTime.""",
1004
+ }, # column
1005
+ "ifcpSessionOtherErrors" : {
1006
+ "nodetype" : "column",
1007
+ "moduleName" : "IFCP-MGMT-MIB",
1008
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.10",
1009
+ "status" : "current",
1010
+ "syntax" : {
1011
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1012
+ },
1013
+ "access" : "readonly",
1014
+ "description" :
1015
+ """The total number of errors, other than errors explicitly
1016
+ measured, detected by the gateway for this session.
1017
+
1018
+
1019
+
1020
+ Discontinuities in the value of this counter can occur at
1021
+ reinitialization of the management system, and at other
1022
+ times as indicated by the value of
1023
+ ifcpSessionDiscontinuityTime.""",
1024
+ }, # column
1025
+ "ifcpSessionDiscontinuityTime" : {
1026
+ "nodetype" : "column",
1027
+ "moduleName" : "IFCP-MGMT-MIB",
1028
+ "oid" : "1.3.6.1.2.1.10.230.1.2.2.1.11",
1029
+ "status" : "current",
1030
+ "syntax" : {
1031
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1032
+ },
1033
+ "access" : "readonly",
1034
+ "description" :
1035
+ """The value of sysUpTime on the most recent occasion at which
1036
+ any one (or more) of the ifcpSessionStatsTable counters
1037
+ suffered a discontinuity. The relevant counters are the
1038
+ specific Counter64-based instances associated with the
1039
+ ifcpSessionStatsTable: ifcpSessionTxOctets,
1040
+ ifcpSessionRxOctets, ifcpSessionTxFrames,
1041
+ ifcpSessionRxFrames, ifcpSessionStaleFrames,
1042
+ ifcpSessionHeaderCRCErrors, ifcpSessionFcPayloadCRCErrors,
1043
+ and ifcpSessionOtherErrors. If no such discontinuities have
1044
+ occurred since the last reinitialization of the local
1045
+ management subsystem, then this object contains a zero value.""",
1046
+ }, # column
1047
+ "ifcpSessionLcStatsTable" : {
1048
+ "nodetype" : "table",
1049
+ "moduleName" : "IFCP-MGMT-MIB",
1050
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3",
1051
+ "status" : "current",
1052
+ "description" :
1053
+ """This table provides low-capacity statistics for an iFCP
1054
+ session. These are provided for backward compatibility with
1055
+ systems that do not support Counter64-based objects. At
1056
+ 1-Gbps rates, a Counter32-based object can wrap as often as
1057
+ every 34 seconds. Counter32-based objects can be sufficient
1058
+ for many situations. However, when possible, it is
1059
+ recommended to use the high-capacity statistics in
1060
+ ifcpSessionStatsTable based on Counter64 objects.""",
1061
+ }, # table
1062
+ "ifcpSessionLcStatsEntry" : {
1063
+ "nodetype" : "row",
1064
+ "moduleName" : "IFCP-MGMT-MIB",
1065
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3.1",
1066
+ "status" : "current",
1067
+ "linkage" : [
1068
+ { "IFCP-MGMT-MIB" : {
1069
+ "indexkind" : "augments",
1070
+ "relatedNode" : "ifcpSessionAttributesEntry",
1071
+ }},
1072
+ ],
1073
+ "description" :
1074
+ """Provides iFCP-specific statistics per session.""",
1075
+ }, # row
1076
+ "ifcpSessionLcTxOctets" : {
1077
+ "nodetype" : "column",
1078
+ "moduleName" : "IFCP-MGMT-MIB",
1079
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3.1.1",
1080
+ "status" : "current",
1081
+ "syntax" : {
1082
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1083
+ },
1084
+ "access" : "readonly",
1085
+ "description" :
1086
+ """The total number of octets transmitted by the iFCP gateway
1087
+ for this session.""",
1088
+ }, # column
1089
+ "ifcpSessionLcRxOctets" : {
1090
+ "nodetype" : "column",
1091
+ "moduleName" : "IFCP-MGMT-MIB",
1092
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3.1.2",
1093
+ "status" : "current",
1094
+ "syntax" : {
1095
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1096
+ },
1097
+ "access" : "readonly",
1098
+ "description" :
1099
+ """The total number of octets received by the iFCP gateway for
1100
+ this session.""",
1101
+ }, # column
1102
+ "ifcpSessionLcTxFrames" : {
1103
+ "nodetype" : "column",
1104
+ "moduleName" : "IFCP-MGMT-MIB",
1105
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3.1.3",
1106
+ "status" : "current",
1107
+ "syntax" : {
1108
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1109
+ },
1110
+ "access" : "readonly",
1111
+ "description" :
1112
+ """The total number of iFCP frames transmitted by the gateway
1113
+ for this session.""",
1114
+ }, # column
1115
+ "ifcpSessionLcRxFrames" : {
1116
+ "nodetype" : "column",
1117
+ "moduleName" : "IFCP-MGMT-MIB",
1118
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3.1.4",
1119
+ "status" : "current",
1120
+ "syntax" : {
1121
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1122
+ },
1123
+ "access" : "readonly",
1124
+ "description" :
1125
+ """The total number of iFCP frames received by the gateway
1126
+ for this session.""",
1127
+ }, # column
1128
+ "ifcpSessionLcStaleFrames" : {
1129
+ "nodetype" : "column",
1130
+ "moduleName" : "IFCP-MGMT-MIB",
1131
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3.1.5",
1132
+ "status" : "current",
1133
+ "syntax" : {
1134
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1135
+ },
1136
+ "access" : "readonly",
1137
+ "description" :
1138
+ """The total number of received iFCP frames that were stale and
1139
+ discarded by the gateway for this session.""",
1140
+ }, # column
1141
+ "ifcpSessionLcHeaderCRCErrors" : {
1142
+ "nodetype" : "column",
1143
+ "moduleName" : "IFCP-MGMT-MIB",
1144
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3.1.6",
1145
+ "status" : "current",
1146
+ "syntax" : {
1147
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1148
+ },
1149
+ "access" : "readonly",
1150
+ "description" :
1151
+ """The total number of CRC errors that occurred in the frame
1152
+ header, detected by the gateway for this session. Usually,
1153
+ a single Header CRC error is sufficient to terminate an
1154
+ iFCP session.""",
1155
+ }, # column
1156
+ "ifcpSessionLcFcPayloadCRCErrors" : {
1157
+ "nodetype" : "column",
1158
+ "moduleName" : "IFCP-MGMT-MIB",
1159
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3.1.7",
1160
+ "status" : "current",
1161
+ "syntax" : {
1162
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1163
+ },
1164
+ "access" : "readonly",
1165
+ "description" :
1166
+ """The total number of CRC errors that occurred in the Fibre
1167
+ Channel frame payload, detected by the gateway for this
1168
+ session.""",
1169
+ }, # column
1170
+ "ifcpSessionLcOtherErrors" : {
1171
+ "nodetype" : "column",
1172
+ "moduleName" : "IFCP-MGMT-MIB",
1173
+ "oid" : "1.3.6.1.2.1.10.230.1.2.3.1.8",
1174
+ "status" : "current",
1175
+ "syntax" : {
1176
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1177
+ },
1178
+ "access" : "readonly",
1179
+ "description" :
1180
+ """The total number of errors, other than errors explicitly
1181
+ measured, detected by the gateway for this session.""",
1182
+ }, # column
1183
+ "ifcpGatewayConformance" : {
1184
+ "nodetype" : "node",
1185
+ "moduleName" : "IFCP-MGMT-MIB",
1186
+ "oid" : "1.3.6.1.2.1.10.230.2",
1187
+ }, # node
1188
+ "ifcpCompliances" : {
1189
+ "nodetype" : "node",
1190
+ "moduleName" : "IFCP-MGMT-MIB",
1191
+ "oid" : "1.3.6.1.2.1.10.230.2.1",
1192
+ }, # node
1193
+ "ifcpGroups" : {
1194
+ "nodetype" : "node",
1195
+ "moduleName" : "IFCP-MGMT-MIB",
1196
+ "oid" : "1.3.6.1.2.1.10.230.2.2",
1197
+ }, # node
1198
+ }, # nodes
1199
+
1200
+ "groups" : {
1201
+ "ifcpLclGatewayGroup" : {
1202
+ "nodetype" : "group",
1203
+ "moduleName" : "IFCP-MGMT-MIB",
1204
+ "oid" : "1.3.6.1.2.1.10.230.2.2.1",
1205
+ "status" : "current",
1206
+ "members" : {
1207
+ "ifcpLclGtwyInstPhyIndex" : {
1208
+ "nodetype" : "member",
1209
+ "module" : "IFCP-MGMT-MIB"
1210
+ },
1211
+ "ifcpLclGtwyInstVersionMin" : {
1212
+ "nodetype" : "member",
1213
+ "module" : "IFCP-MGMT-MIB"
1214
+ },
1215
+ "ifcpLclGtwyInstVersionMax" : {
1216
+ "nodetype" : "member",
1217
+ "module" : "IFCP-MGMT-MIB"
1218
+ },
1219
+ "ifcpLclGtwyInstAddrTransMode" : {
1220
+ "nodetype" : "member",
1221
+ "module" : "IFCP-MGMT-MIB"
1222
+ },
1223
+ "ifcpLclGtwyInstFcBrdcstSupport" : {
1224
+ "nodetype" : "member",
1225
+ "module" : "IFCP-MGMT-MIB"
1226
+ },
1227
+ "ifcpLclGtwyInstDefaultIpTOV" : {
1228
+ "nodetype" : "member",
1229
+ "module" : "IFCP-MGMT-MIB"
1230
+ },
1231
+ "ifcpLclGtwyInstDefaultLTInterval" : {
1232
+ "nodetype" : "member",
1233
+ "module" : "IFCP-MGMT-MIB"
1234
+ },
1235
+ "ifcpLclGtwyInstDescr" : {
1236
+ "nodetype" : "member",
1237
+ "module" : "IFCP-MGMT-MIB"
1238
+ },
1239
+ "ifcpLclGtwyInstNumActiveSessions" : {
1240
+ "nodetype" : "member",
1241
+ "module" : "IFCP-MGMT-MIB"
1242
+ },
1243
+ "ifcpLclGtwyInstStorageType" : {
1244
+ "nodetype" : "member",
1245
+ "module" : "IFCP-MGMT-MIB"
1246
+ },
1247
+ }, # members
1248
+ "description" :
1249
+ """iFCP local device info group. This group provides
1250
+ information about each gateway.""",
1251
+ }, # group
1252
+ "ifcpLclGatewaySessionGroup" : {
1253
+ "nodetype" : "group",
1254
+ "moduleName" : "IFCP-MGMT-MIB",
1255
+ "oid" : "1.3.6.1.2.1.10.230.2.2.4",
1256
+ "status" : "deprecated",
1257
+ "members" : {
1258
+ "ifcpSessionLclPrtlIfIndex" : {
1259
+ "nodetype" : "member",
1260
+ "module" : "IFCP-MGMT-MIB"
1261
+ },
1262
+ "ifcpSessionLclPrtlAddrType" : {
1263
+ "nodetype" : "member",
1264
+ "module" : "IFCP-MGMT-MIB"
1265
+ },
1266
+ "ifcpSessionLclPrtlAddr" : {
1267
+ "nodetype" : "member",
1268
+ "module" : "IFCP-MGMT-MIB"
1269
+ },
1270
+ "ifcpSessionLclPrtlTcpPort" : {
1271
+ "nodetype" : "member",
1272
+ "module" : "IFCP-MGMT-MIB"
1273
+ },
1274
+ "ifcpSessionLclNpWwun" : {
1275
+ "nodetype" : "member",
1276
+ "module" : "IFCP-MGMT-MIB"
1277
+ },
1278
+ "ifcpSessionLclNpFcid" : {
1279
+ "nodetype" : "member",
1280
+ "module" : "IFCP-MGMT-MIB"
1281
+ },
1282
+ "ifcpSessionRmtNpWwun" : {
1283
+ "nodetype" : "member",
1284
+ "module" : "IFCP-MGMT-MIB"
1285
+ },
1286
+ "ifcpSessionRmtPrtlIfAddrType" : {
1287
+ "nodetype" : "member",
1288
+ "module" : "IFCP-MGMT-MIB"
1289
+ },
1290
+ "ifcpSessionRmtPrtlIfAddr" : {
1291
+ "nodetype" : "member",
1292
+ "module" : "IFCP-MGMT-MIB"
1293
+ },
1294
+ "ifcpSessionRmtPrtlTcpPort" : {
1295
+ "nodetype" : "member",
1296
+ "module" : "IFCP-MGMT-MIB"
1297
+ },
1298
+ "ifcpSessionRmtNpFcid" : {
1299
+ "nodetype" : "member",
1300
+ "module" : "IFCP-MGMT-MIB"
1301
+ },
1302
+ "ifcpSessionRmtNpFcidAlias" : {
1303
+ "nodetype" : "member",
1304
+ "module" : "IFCP-MGMT-MIB"
1305
+ },
1306
+ "ifcpSessionIpTOV" : {
1307
+ "nodetype" : "member",
1308
+ "module" : "IFCP-MGMT-MIB"
1309
+ },
1310
+ "ifcpSessionLclLTIntvl" : {
1311
+ "nodetype" : "member",
1312
+ "module" : "IFCP-MGMT-MIB"
1313
+ },
1314
+ "ifcpSessionRmtLTIntvl" : {
1315
+ "nodetype" : "member",
1316
+ "module" : "IFCP-MGMT-MIB"
1317
+ },
1318
+ "ifcpSessionBound" : {
1319
+ "nodetype" : "member",
1320
+ "module" : "IFCP-MGMT-MIB"
1321
+ },
1322
+ "ifcpSessionStorageType" : {
1323
+ "nodetype" : "member",
1324
+ "module" : "IFCP-MGMT-MIB"
1325
+ },
1326
+ }, # members
1327
+ "description" :
1328
+ """This OBJECT-GROUP has been deprecated because address translation
1329
+ mode has been deprecated in the iFCP standard. iFCP Session group.
1330
+ This group provides information about each iFCP session currently
1331
+ active between iFCP gateways.""",
1332
+ }, # group
1333
+ "ifcpLclGatewaySessionStatsGroup" : {
1334
+ "nodetype" : "group",
1335
+ "moduleName" : "IFCP-MGMT-MIB",
1336
+ "oid" : "1.3.6.1.2.1.10.230.2.2.5",
1337
+ "status" : "current",
1338
+ "members" : {
1339
+ "ifcpSessionState" : {
1340
+ "nodetype" : "member",
1341
+ "module" : "IFCP-MGMT-MIB"
1342
+ },
1343
+ "ifcpSessionDuration" : {
1344
+ "nodetype" : "member",
1345
+ "module" : "IFCP-MGMT-MIB"
1346
+ },
1347
+ "ifcpSessionTxOctets" : {
1348
+ "nodetype" : "member",
1349
+ "module" : "IFCP-MGMT-MIB"
1350
+ },
1351
+ "ifcpSessionRxOctets" : {
1352
+ "nodetype" : "member",
1353
+ "module" : "IFCP-MGMT-MIB"
1354
+ },
1355
+ "ifcpSessionTxFrames" : {
1356
+ "nodetype" : "member",
1357
+ "module" : "IFCP-MGMT-MIB"
1358
+ },
1359
+ "ifcpSessionRxFrames" : {
1360
+ "nodetype" : "member",
1361
+ "module" : "IFCP-MGMT-MIB"
1362
+ },
1363
+ "ifcpSessionStaleFrames" : {
1364
+ "nodetype" : "member",
1365
+ "module" : "IFCP-MGMT-MIB"
1366
+ },
1367
+ "ifcpSessionHeaderCRCErrors" : {
1368
+ "nodetype" : "member",
1369
+ "module" : "IFCP-MGMT-MIB"
1370
+ },
1371
+ "ifcpSessionFcPayloadCRCErrors" : {
1372
+ "nodetype" : "member",
1373
+ "module" : "IFCP-MGMT-MIB"
1374
+ },
1375
+ "ifcpSessionOtherErrors" : {
1376
+ "nodetype" : "member",
1377
+ "module" : "IFCP-MGMT-MIB"
1378
+ },
1379
+ "ifcpSessionDiscontinuityTime" : {
1380
+ "nodetype" : "member",
1381
+ "module" : "IFCP-MGMT-MIB"
1382
+ },
1383
+ }, # members
1384
+ "description" :
1385
+ """iFCP Session Statistics group. This group provides
1386
+ statistics with 64-bit counters for each iFCP session
1387
+ currently active between iFCP gateways. This group
1388
+ is only required for agents that can support Counter64-
1389
+ based data types.""",
1390
+ }, # group
1391
+ "ifcpLclGatewaySessionLcStatsGroup" : {
1392
+ "nodetype" : "group",
1393
+ "moduleName" : "IFCP-MGMT-MIB",
1394
+ "oid" : "1.3.6.1.2.1.10.230.2.2.6",
1395
+ "status" : "current",
1396
+ "members" : {
1397
+ "ifcpSessionLcTxOctets" : {
1398
+ "nodetype" : "member",
1399
+ "module" : "IFCP-MGMT-MIB"
1400
+ },
1401
+ "ifcpSessionLcRxOctets" : {
1402
+ "nodetype" : "member",
1403
+ "module" : "IFCP-MGMT-MIB"
1404
+ },
1405
+ "ifcpSessionLcTxFrames" : {
1406
+ "nodetype" : "member",
1407
+ "module" : "IFCP-MGMT-MIB"
1408
+ },
1409
+ "ifcpSessionLcRxFrames" : {
1410
+ "nodetype" : "member",
1411
+ "module" : "IFCP-MGMT-MIB"
1412
+ },
1413
+ "ifcpSessionLcStaleFrames" : {
1414
+ "nodetype" : "member",
1415
+ "module" : "IFCP-MGMT-MIB"
1416
+ },
1417
+ "ifcpSessionLcHeaderCRCErrors" : {
1418
+ "nodetype" : "member",
1419
+ "module" : "IFCP-MGMT-MIB"
1420
+ },
1421
+ "ifcpSessionLcFcPayloadCRCErrors" : {
1422
+ "nodetype" : "member",
1423
+ "module" : "IFCP-MGMT-MIB"
1424
+ },
1425
+ "ifcpSessionLcOtherErrors" : {
1426
+ "nodetype" : "member",
1427
+ "module" : "IFCP-MGMT-MIB"
1428
+ },
1429
+ }, # members
1430
+ "description" :
1431
+ """iFCP Session Low-Capacity Statistics group. This group
1432
+ provides statistics with low-capacity 32-bit counters
1433
+ for each iFCP session currently active between iFCP
1434
+ gateways. This group is only required for agents that
1435
+ do not support Counter64-based data types, or that need
1436
+ to support SNMPv1 applications.""",
1437
+ }, # group
1438
+ "ifcpLclGatewaySessionGroupNoTranslation" : {
1439
+ "nodetype" : "group",
1440
+ "moduleName" : "IFCP-MGMT-MIB",
1441
+ "oid" : "1.3.6.1.2.1.10.230.2.2.7",
1442
+ "status" : "current",
1443
+ "members" : {
1444
+ "ifcpSessionLclPrtlIfIndex" : {
1445
+ "nodetype" : "member",
1446
+ "module" : "IFCP-MGMT-MIB"
1447
+ },
1448
+ "ifcpSessionLclPrtlAddrType" : {
1449
+ "nodetype" : "member",
1450
+ "module" : "IFCP-MGMT-MIB"
1451
+ },
1452
+ "ifcpSessionLclPrtlAddr" : {
1453
+ "nodetype" : "member",
1454
+ "module" : "IFCP-MGMT-MIB"
1455
+ },
1456
+ "ifcpSessionLclPrtlTcpPort" : {
1457
+ "nodetype" : "member",
1458
+ "module" : "IFCP-MGMT-MIB"
1459
+ },
1460
+ "ifcpSessionLclNpWwun" : {
1461
+ "nodetype" : "member",
1462
+ "module" : "IFCP-MGMT-MIB"
1463
+ },
1464
+ "ifcpSessionLclNpFcid" : {
1465
+ "nodetype" : "member",
1466
+ "module" : "IFCP-MGMT-MIB"
1467
+ },
1468
+ "ifcpSessionRmtNpWwun" : {
1469
+ "nodetype" : "member",
1470
+ "module" : "IFCP-MGMT-MIB"
1471
+ },
1472
+ "ifcpSessionRmtPrtlIfAddrType" : {
1473
+ "nodetype" : "member",
1474
+ "module" : "IFCP-MGMT-MIB"
1475
+ },
1476
+ "ifcpSessionRmtPrtlIfAddr" : {
1477
+ "nodetype" : "member",
1478
+ "module" : "IFCP-MGMT-MIB"
1479
+ },
1480
+ "ifcpSessionRmtPrtlTcpPort" : {
1481
+ "nodetype" : "member",
1482
+ "module" : "IFCP-MGMT-MIB"
1483
+ },
1484
+ "ifcpSessionRmtNpFcid" : {
1485
+ "nodetype" : "member",
1486
+ "module" : "IFCP-MGMT-MIB"
1487
+ },
1488
+ "ifcpSessionIpTOV" : {
1489
+ "nodetype" : "member",
1490
+ "module" : "IFCP-MGMT-MIB"
1491
+ },
1492
+ "ifcpSessionLclLTIntvl" : {
1493
+ "nodetype" : "member",
1494
+ "module" : "IFCP-MGMT-MIB"
1495
+ },
1496
+ "ifcpSessionRmtLTIntvl" : {
1497
+ "nodetype" : "member",
1498
+ "module" : "IFCP-MGMT-MIB"
1499
+ },
1500
+ "ifcpSessionBound" : {
1501
+ "nodetype" : "member",
1502
+ "module" : "IFCP-MGMT-MIB"
1503
+ },
1504
+ "ifcpSessionStorageType" : {
1505
+ "nodetype" : "member",
1506
+ "module" : "IFCP-MGMT-MIB"
1507
+ },
1508
+ }, # members
1509
+ "description" :
1510
+ """iFCP Session group. This group provides information
1511
+ about each iFCP session currently active between iFCP
1512
+ gateways.""",
1513
+ }, # group
1514
+ }, # groups
1515
+
1516
+ "compliances" : {
1517
+ "ifcpGatewayCompliance" : {
1518
+ "nodetype" : "compliance",
1519
+ "moduleName" : "IFCP-MGMT-MIB",
1520
+ "oid" : "1.3.6.1.2.1.10.230.2.1.1",
1521
+ "status" : "deprecated",
1522
+ "description" :
1523
+ """This MODULE-COMPLIANCE has been deprecated because address
1524
+ translation mode has been deprecated in the iFCP standard. It has
1525
+ the implementation requirements for iFCP MIB module compliance.""",
1526
+ "requires" : {
1527
+ "ifcpLclGatewayGroup" : {
1528
+ "nodetype" : "mandatory",
1529
+ "module" : "IFCP-MGMT-MIB"
1530
+ },
1531
+ "ifcpLclGatewaySessionGroup" : {
1532
+ "nodetype" : "mandatory",
1533
+ "module" : "IFCP-MGMT-MIB"
1534
+ },
1535
+ "ifcpLclGatewaySessionStatsGroup" : {
1536
+ "nodetype" : "mandatory",
1537
+ "module" : "IFCP-MGMT-MIB"
1538
+ },
1539
+ "ifcpLclGatewaySessionLcStatsGroup" : {
1540
+ "nodetype" : "mandatory",
1541
+ "module" : "IFCP-MGMT-MIB"
1542
+ },
1543
+ }, # requires
1544
+ "refinements" : {
1545
+ "ifcpSessionLclPrtlAddrType" : {
1546
+ "module" : "IFCP-MGMT-MIB",
1547
+ "syntax" : {
1548
+ "type" : {
1549
+ "basetype" : "Enumeration",
1550
+ "parent module" : {
1551
+ "name" : "INET-ADDRESS-MIB",
1552
+ "type" : "InetAddressType",
1553
+ },
1554
+ "ipv4" : {
1555
+ "nodetype" : "namednumber",
1556
+ "number" : "1"
1557
+ },
1558
+ "ipv6" : {
1559
+ "nodetype" : "namednumber",
1560
+ "number" : "2"
1561
+ },
1562
+ },
1563
+ }, # syntax
1564
+ "description" :
1565
+ """Support is only required for global IPv4
1566
+ and IPv6 address types.""",
1567
+ },
1568
+ "ifcpSessionRmtPrtlIfAddrType" : {
1569
+ "module" : "IFCP-MGMT-MIB",
1570
+ "syntax" : {
1571
+ "type" : {
1572
+ "basetype" : "Enumeration",
1573
+ "parent module" : {
1574
+ "name" : "INET-ADDRESS-MIB",
1575
+ "type" : "InetAddressType",
1576
+ },
1577
+ "ipv4" : {
1578
+ "nodetype" : "namednumber",
1579
+ "number" : "1"
1580
+ },
1581
+ "ipv6" : {
1582
+ "nodetype" : "namednumber",
1583
+ "number" : "2"
1584
+ },
1585
+ },
1586
+ }, # syntax
1587
+ "description" :
1588
+ """Support is only required for global IPv4
1589
+ and IPv6 address types.""",
1590
+ },
1591
+ "ifcpLclGtwyInstAddrTransMode" : {
1592
+ "module" : "IFCP-MGMT-MIB",
1593
+ "syntax" : {
1594
+ "type" : {
1595
+ "basetype" : "Enumeration",
1596
+ "parent module" : {
1597
+ "name" : "IFCP-MGMT-MIB",
1598
+ "type" : "IfcpAddressMode",
1599
+ },
1600
+ "addressTransparent" : {
1601
+ "nodetype" : "namednumber",
1602
+ "number" : "1"
1603
+ },
1604
+ "addressTranslation" : {
1605
+ "nodetype" : "namednumber",
1606
+ "number" : "2"
1607
+ },
1608
+ },
1609
+ }, # syntax
1610
+ "description" :
1611
+ """This object must support addressTransparent(1) and
1612
+ addressTranslation(2).""",
1613
+ },
1614
+ }, # refinements
1615
+
1616
+ }, # compliance
1617
+ "ifcpGatewayComplianceNoTranslation" : {
1618
+ "nodetype" : "compliance",
1619
+ "moduleName" : "IFCP-MGMT-MIB",
1620
+ "oid" : "1.3.6.1.2.1.10.230.2.1.2",
1621
+ "status" : "current",
1622
+ "description" :
1623
+ """Implementation requirements for iFCP MIB module compliance.
1624
+ Address translation mode has been deprecated in the iFCP standard.""",
1625
+ "reference" :
1626
+ """RFC 4172, iFCP Protocol Specification;
1627
+ RFC 6172, Deprecation of iFCP Address
1628
+ Translation Mode""",
1629
+ "requires" : {
1630
+ "ifcpLclGatewayGroup" : {
1631
+ "nodetype" : "mandatory",
1632
+ "module" : "IFCP-MGMT-MIB"
1633
+ },
1634
+ "ifcpLclGatewaySessionGroupNoTranslation" : {
1635
+ "nodetype" : "mandatory",
1636
+ "module" : "IFCP-MGMT-MIB"
1637
+ },
1638
+ "ifcpLclGatewaySessionStatsGroup" : {
1639
+ "nodetype" : "mandatory",
1640
+ "module" : "IFCP-MGMT-MIB"
1641
+ },
1642
+ "ifcpLclGatewaySessionLcStatsGroup" : {
1643
+ "nodetype" : "mandatory",
1644
+ "module" : "IFCP-MGMT-MIB"
1645
+ },
1646
+ }, # requires
1647
+ "refinements" : {
1648
+ "ifcpSessionLclPrtlAddrType" : {
1649
+ "module" : "IFCP-MGMT-MIB",
1650
+ "syntax" : {
1651
+ "type" : {
1652
+ "basetype" : "Enumeration",
1653
+ "parent module" : {
1654
+ "name" : "INET-ADDRESS-MIB",
1655
+ "type" : "InetAddressType",
1656
+ },
1657
+ "ipv4" : {
1658
+ "nodetype" : "namednumber",
1659
+ "number" : "1"
1660
+ },
1661
+ "ipv6" : {
1662
+ "nodetype" : "namednumber",
1663
+ "number" : "2"
1664
+ },
1665
+ },
1666
+ }, # syntax
1667
+ "description" :
1668
+ """Support is only required for global IPv4
1669
+ and IPv6 address types.""",
1670
+ },
1671
+ "ifcpSessionRmtPrtlIfAddrType" : {
1672
+ "module" : "IFCP-MGMT-MIB",
1673
+ "syntax" : {
1674
+ "type" : {
1675
+ "basetype" : "Enumeration",
1676
+ "parent module" : {
1677
+ "name" : "INET-ADDRESS-MIB",
1678
+ "type" : "InetAddressType",
1679
+ },
1680
+ "ipv4" : {
1681
+ "nodetype" : "namednumber",
1682
+ "number" : "1"
1683
+ },
1684
+ "ipv6" : {
1685
+ "nodetype" : "namednumber",
1686
+ "number" : "2"
1687
+ },
1688
+ },
1689
+ }, # syntax
1690
+ "description" :
1691
+ """Support is only required for global IPv4
1692
+ and IPv6 address types.""",
1693
+ },
1694
+ "ifcpLclGtwyInstAddrTransMode" : {
1695
+ "module" : "IFCP-MGMT-MIB",
1696
+ "syntax" : {
1697
+ "type" : {
1698
+ "basetype" : "Enumeration",
1699
+ "parent module" : {
1700
+ "name" : "IFCP-MGMT-MIB",
1701
+ "type" : "IfcpAddressMode",
1702
+ },
1703
+ "addressTransparent" : {
1704
+ "nodetype" : "namednumber",
1705
+ "number" : "1"
1706
+ },
1707
+ },
1708
+ }, # syntax
1709
+ "description" :
1710
+ """Support is only required for addressTransparent(1).""",
1711
+ },
1712
+ }, # refinements
1713
+
1714
+ }, # compliance
1715
+ }, # compliances
1716
+
1717
+ }