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,3465 @@
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 FC-MGMT-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/FC-MGMT-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "FC-MGMT-MIB",
11
+
12
+ "FC-MGMT-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPS (IP-Storage) Working Group""",
17
+ "contact" :
18
+ """ Keith McCloghrie
19
+ Cisco Systems, Inc.
20
+ Tel: +1 408 526-5260
21
+ E-mail: kzm@cisco.com
22
+ Postal: 170 West Tasman Drive
23
+ San Jose, CA USA 95134""",
24
+ "description" :
25
+ """This module defines management information specific to
26
+ Fibre Channel-attached devices.
27
+
28
+
29
+
30
+
31
+ Copyright (C) The Internet Society (2005). This version
32
+ of this MIB module is part of RFC 4044; see the RFC
33
+ itself for full legal notices.""",
34
+ "revisions" : (
35
+ {
36
+ "date" : "2005-04-26 00:00",
37
+ "description" :
38
+ """Initial version of the Fibre Channel Mgmt MIB module.""",
39
+ },
40
+ ),
41
+ "identity node" : "fcMgmtMIB",
42
+ },
43
+
44
+ "imports" : (
45
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
46
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
47
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
48
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
50
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
51
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
52
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
53
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
54
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
55
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
56
+ {"module" : "IF-MIB", "name" : "ifIndex"},
57
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
58
+ ),
59
+
60
+ "typedefs" : {
61
+ "FcNameIdOrZero" : {
62
+ "basetype" : "OctetString",
63
+ "status" : "current",
64
+ "ranges" : [
65
+ {
66
+ "min" : "0",
67
+ "max" : "0"
68
+ },
69
+ {
70
+ "min" : "8",
71
+ "max" : "8"
72
+ },
73
+ {
74
+ "min" : "16",
75
+ "max" : "16"
76
+ },
77
+ ],
78
+ "range" : {
79
+ "min" : "0",
80
+ "max" : "16"
81
+ },
82
+ "description" :
83
+ """The World Wide Name (WWN) associated with a Fibre Channel
84
+ (FC) entity. WWNs were initially defined as 64-bits in
85
+ length. The latest definition (for future use) is 128-bits
86
+ long. The zero-length string value is used in
87
+ circumstances in which the WWN is unassigned/unknown.""",
88
+ },
89
+ "FcAddressIdOrZero" : {
90
+ "basetype" : "OctetString",
91
+ "status" : "current",
92
+ "ranges" : [
93
+ {
94
+ "min" : "0",
95
+ "max" : "0"
96
+ },
97
+ {
98
+ "min" : "3",
99
+ "max" : "3"
100
+ },
101
+ ],
102
+ "range" : {
103
+ "min" : "0",
104
+ "max" : "3"
105
+ },
106
+ "description" :
107
+ """A Fibre Channel Address ID, a 24-bit value unique within
108
+ the address space of a Fabric. The zero-length string value
109
+ is used in circumstances in which the WWN is
110
+ unassigned/unknown.""",
111
+ },
112
+ "FcDomainIdOrZero" : {
113
+ "basetype" : "Integer32",
114
+ "status" : "current",
115
+ "ranges" : [
116
+ {
117
+ "min" : "0",
118
+ "max" : "239"
119
+ },
120
+ ],
121
+ "range" : {
122
+ "min" : "0",
123
+ "max" : "239"
124
+ },
125
+ "description" :
126
+ """The Domain Id (of an FC switch), or zero if the no Domain
127
+ Id has been assigned.""",
128
+ },
129
+ "FcPortType" : {
130
+ "basetype" : "Unsigned32",
131
+ "status" : "current",
132
+ "description" :
133
+ """The type of a Fibre Channel port, as indicated by the use
134
+ of the appropriate value assigned by IANA.""",
135
+ "reference" :
136
+ """The IANA-maintained registry for
137
+ Fibre Channel port types (http://www.iana.org/).""",
138
+ },
139
+ "FcClasses" : {
140
+ "basetype" : "Bits",
141
+ "status" : "current",
142
+ "classF" : {
143
+ "nodetype" : "namednumber",
144
+ "number" : "0"
145
+ },
146
+ "class1" : {
147
+ "nodetype" : "namednumber",
148
+ "number" : "1"
149
+ },
150
+ "class2" : {
151
+ "nodetype" : "namednumber",
152
+ "number" : "2"
153
+ },
154
+ "class3" : {
155
+ "nodetype" : "namednumber",
156
+ "number" : "3"
157
+ },
158
+ "class4" : {
159
+ "nodetype" : "namednumber",
160
+ "number" : "4"
161
+ },
162
+ "class5" : {
163
+ "nodetype" : "namednumber",
164
+ "number" : "5"
165
+ },
166
+ "class6" : {
167
+ "nodetype" : "namednumber",
168
+ "number" : "6"
169
+ },
170
+ "description" :
171
+ """A set of Fibre Channel classes of service.""",
172
+ "reference" :
173
+ """Classes of service are described in FC-FS Section 13.""",
174
+ },
175
+ "FcBbCredit" : {
176
+ "basetype" : "Integer32",
177
+ "status" : "current",
178
+ "ranges" : [
179
+ {
180
+ "min" : "0",
181
+ "max" : "32767"
182
+ },
183
+ ],
184
+ "range" : {
185
+ "min" : "0",
186
+ "max" : "32767"
187
+ },
188
+ "description" :
189
+ """The buffer-to-buffer credit of an FC port.""",
190
+ },
191
+ "FcBbCreditModel" : {
192
+ "basetype" : "Enumeration",
193
+ "status" : "current",
194
+ "regular" : {
195
+ "nodetype" : "namednumber",
196
+ "number" : "1"
197
+ },
198
+ "alternate" : {
199
+ "nodetype" : "namednumber",
200
+ "number" : "2"
201
+ },
202
+ "description" :
203
+ """The buffer-to-buffer credit model of an Fx_Port.""",
204
+ },
205
+ "FcDataFieldSize" : {
206
+ "basetype" : "Integer32",
207
+ "status" : "current",
208
+ "ranges" : [
209
+ {
210
+ "min" : "128",
211
+ "max" : "2112"
212
+ },
213
+ ],
214
+ "range" : {
215
+ "min" : "128",
216
+ "max" : "2112"
217
+ },
218
+ "description" :
219
+ """The Receive Data Field Size associated with an FC port.""",
220
+ },
221
+ "FcUnitFunctions" : {
222
+ "basetype" : "Bits",
223
+ "status" : "current",
224
+ "other" : {
225
+ "nodetype" : "namednumber",
226
+ "number" : "0"
227
+ },
228
+ "hub" : {
229
+ "nodetype" : "namednumber",
230
+ "number" : "1"
231
+ },
232
+ "switch" : {
233
+ "nodetype" : "namednumber",
234
+ "number" : "2"
235
+ },
236
+ "bridge" : {
237
+ "nodetype" : "namednumber",
238
+ "number" : "3"
239
+ },
240
+ "gateway" : {
241
+ "nodetype" : "namednumber",
242
+ "number" : "4"
243
+ },
244
+ "host" : {
245
+ "nodetype" : "namednumber",
246
+ "number" : "5"
247
+ },
248
+ "storageSubsys" : {
249
+ "nodetype" : "namednumber",
250
+ "number" : "6"
251
+ },
252
+ "storageAccessDev" : {
253
+ "nodetype" : "namednumber",
254
+ "number" : "7"
255
+ },
256
+ "nas" : {
257
+ "nodetype" : "namednumber",
258
+ "number" : "8"
259
+ },
260
+ "wdmux" : {
261
+ "nodetype" : "namednumber",
262
+ "number" : "9"
263
+ },
264
+ "storageDevice" : {
265
+ "nodetype" : "namednumber",
266
+ "number" : "10"
267
+ },
268
+ "description" :
269
+ """A set of functions that a Fibre Channel Interconnect
270
+ Element or Platform might perform. A value with no bits set
271
+ indicates the function(s) are unknown. The individual bits
272
+ have the following meanings:
273
+
274
+ other - none of the following.
275
+
276
+ hub - a device that interconnects L_Ports, but does not
277
+ operate as an FL_Port.
278
+
279
+ switch - a fabric element conforming to the Fibre Channel
280
+ switch fabric set of standards (e.g., [FC-SW-3]).
281
+
282
+ bridge - a device that encapsulates Fibre Channel frames
283
+ within another protocol (e.g., [FC-BB], FC-BB-2).
284
+
285
+ gateway - a device that converts an FC-4 to another protocol
286
+ (e.g., FCP to iSCSI).
287
+
288
+ host - a computer system that provides end users with
289
+ services such as computation and storage access.
290
+
291
+ storageSubsys - an integrated collection of storage
292
+ controllers, storage devices, and necessary software that
293
+ provides storage services to one or more hosts.
294
+
295
+ storageAccessDev - a device that provides storage management
296
+ and access for heterogeneous hosts and heterogeneous devices
297
+ (e.g., medium changer).
298
+
299
+ nas - a device that connects to a network and provides file
300
+ access services.
301
+
302
+ wdmux - a device that modulates/demodulates each of several
303
+ data streams (e.g., Fibre Channel protocol data streams)
304
+ onto/from a different part of the light spectrum in an
305
+ optical fiber.
306
+
307
+ storageDevice - a disk/tape/etc. device (without the
308
+ controller and/or software required for it to be a
309
+ 'storageSubsys').""",
310
+ },
311
+ }, # typedefs
312
+
313
+ "nodes" : {
314
+ "fcMgmtMIB" : {
315
+ "nodetype" : "node",
316
+ "moduleName" : "FC-MGMT-MIB",
317
+ "oid" : "1.3.6.1.2.1.10.56",
318
+ "status" : "current",
319
+ }, # node
320
+ "fcmgmtObjects" : {
321
+ "nodetype" : "node",
322
+ "moduleName" : "FC-MGMT-MIB",
323
+ "oid" : "1.3.6.1.2.1.10.56.1",
324
+ }, # node
325
+ "fcmInstanceTable" : {
326
+ "nodetype" : "table",
327
+ "moduleName" : "FC-MGMT-MIB",
328
+ "oid" : "1.3.6.1.2.1.10.56.1.1",
329
+ "status" : "current",
330
+ "description" :
331
+ """Information about the local Fibre Channel management
332
+ instances.""",
333
+ }, # table
334
+ "fcmInstanceEntry" : {
335
+ "nodetype" : "row",
336
+ "moduleName" : "FC-MGMT-MIB",
337
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1",
338
+ "status" : "current",
339
+ "linkage" : [
340
+ "fcmInstanceIndex",
341
+ ],
342
+ "description" :
343
+ """A list of attributes for a particular local Fibre Channel
344
+ management instance.""",
345
+ }, # row
346
+ "fcmInstanceIndex" : {
347
+ "nodetype" : "column",
348
+ "moduleName" : "FC-MGMT-MIB",
349
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1.1",
350
+ "status" : "current",
351
+ "syntax" : {
352
+ "type" : {
353
+ "basetype" : "Unsigned32",
354
+ "ranges" : [
355
+ {
356
+ "min" : "1",
357
+ "max" : "4294967295"
358
+ },
359
+ ],
360
+ "range" : {
361
+ "min" : "1",
362
+ "max" : "4294967295"
363
+ },
364
+ },
365
+ },
366
+ "access" : "noaccess",
367
+ "description" :
368
+ """An arbitrary integer value that uniquely identifies this
369
+ instance amongst all local Fibre Channel management
370
+ instances.
371
+
372
+ It is mandatory to keep this value constant between restarts
373
+ of the agent, and to make every possible effort to keep it
374
+ constant across restarts (but note, it is unrealistic to
375
+ expect it to remain constant across all re-configurations of
376
+ the local system, e.g., across the replacement of all non-
377
+ volatile storage).""",
378
+ }, # column
379
+ "fcmInstanceWwn" : {
380
+ "nodetype" : "column",
381
+ "moduleName" : "FC-MGMT-MIB",
382
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1.2",
383
+ "status" : "current",
384
+ "syntax" : {
385
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
386
+ },
387
+ "access" : "readonly",
388
+ "description" :
389
+ """If the instance has one (or more) WWN(s), then this object
390
+ contains that (or one of those) WWN(s).
391
+
392
+ If the instance does not have a WWN associated with it, then
393
+ this object contains the zero-length string.""",
394
+ }, # column
395
+ "fcmInstanceFunctions" : {
396
+ "nodetype" : "column",
397
+ "moduleName" : "FC-MGMT-MIB",
398
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1.3",
399
+ "status" : "current",
400
+ "syntax" : {
401
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcUnitFunctions"},
402
+ },
403
+ "access" : "readonly",
404
+ "description" :
405
+ """One (or more) Fibre Channel unit functions being performed
406
+ by this instance.""",
407
+ }, # column
408
+ "fcmInstancePhysicalIndex" : {
409
+ "nodetype" : "column",
410
+ "moduleName" : "FC-MGMT-MIB",
411
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1.4",
412
+ "status" : "current",
413
+ "syntax" : {
414
+ "type" : {
415
+ "basetype" : "Integer32",
416
+ "ranges" : [
417
+ {
418
+ "min" : "0",
419
+ "max" : "2147483647"
420
+ },
421
+ ],
422
+ "range" : {
423
+ "min" : "0",
424
+ "max" : "2147483647"
425
+ },
426
+ },
427
+ },
428
+ "access" : "readonly",
429
+ "description" :
430
+ """If this management instance corresponds to a physical
431
+ component (or to a hierarchy of physical components)
432
+ identified by the Entity-MIB, then this object's value is
433
+ the value of the entPhysicalIndex of that component (or of
434
+ the component at the root of that hierarchy). If there is
435
+
436
+
437
+
438
+ no correspondence to a physical component (or no component
439
+ that has an entPhysicalIndex value), then the value of this
440
+ object is zero.""",
441
+ "reference" :
442
+ """entPhysicalIndex is defined in the Entity MIB, RFC 2737.""",
443
+ }, # column
444
+ "fcmInstanceSoftwareIndex" : {
445
+ "nodetype" : "column",
446
+ "moduleName" : "FC-MGMT-MIB",
447
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1.5",
448
+ "status" : "current",
449
+ "syntax" : {
450
+ "type" : {
451
+ "basetype" : "Integer32",
452
+ "ranges" : [
453
+ {
454
+ "min" : "0",
455
+ "max" : "2147483647"
456
+ },
457
+ ],
458
+ "range" : {
459
+ "min" : "0",
460
+ "max" : "2147483647"
461
+ },
462
+ },
463
+ },
464
+ "access" : "readonly",
465
+ "description" :
466
+ """If this management instance corresponds to an installed
467
+ software module identified in the Host Resources MIB, then
468
+ this object's value is the value of the hrSWInstalledIndex
469
+ of that module. If there is no correspondence to an
470
+ installed software module (or no module that has a
471
+ hrSWInstalledIndex value), then the value of this object is
472
+ zero.""",
473
+ "reference" :
474
+ """hrSWInstalledIndex is defined in the Host Resources MIB,
475
+ RFC 2790""",
476
+ }, # column
477
+ "fcmInstanceStatus" : {
478
+ "nodetype" : "column",
479
+ "moduleName" : "FC-MGMT-MIB",
480
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1.6",
481
+ "status" : "current",
482
+ "syntax" : {
483
+ "type" : {
484
+ "basetype" : "Enumeration",
485
+ "unknown" : {
486
+ "nodetype" : "namednumber",
487
+ "number" : "1"
488
+ },
489
+ "ok" : {
490
+ "nodetype" : "namednumber",
491
+ "number" : "2"
492
+ },
493
+ "warning" : {
494
+ "nodetype" : "namednumber",
495
+ "number" : "3"
496
+ },
497
+ "failed" : {
498
+ "nodetype" : "namednumber",
499
+ "number" : "4"
500
+ },
501
+ },
502
+ },
503
+ "access" : "readonly",
504
+ "description" :
505
+ """Overall status of the Fibre Channel entity/entities managed
506
+ by this management instance. The value should reflect the
507
+ most serious status of such entities.""",
508
+ }, # column
509
+ "fcmInstanceTextName" : {
510
+ "nodetype" : "column",
511
+ "moduleName" : "FC-MGMT-MIB",
512
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1.7",
513
+ "status" : "current",
514
+ "syntax" : {
515
+ "type" : {
516
+ "basetype" : "OctetString",
517
+ "parent module" : {
518
+ "name" : "SNMP-FRAMEWORK-MIB",
519
+ "type" : "SnmpAdminString",
520
+ },
521
+ "ranges" : [
522
+ {
523
+ "min" : "0",
524
+ "max" : "79"
525
+ },
526
+ ],
527
+ "range" : {
528
+ "min" : "0",
529
+ "max" : "79"
530
+ },
531
+ },
532
+ },
533
+ "access" : "readwrite",
534
+ "description" :
535
+ """A textual name for this management instance and the Fibre
536
+ Channel entity/entities that it is managing.""",
537
+ }, # column
538
+ "fcmInstanceDescr" : {
539
+ "nodetype" : "column",
540
+ "moduleName" : "FC-MGMT-MIB",
541
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1.8",
542
+ "status" : "current",
543
+ "syntax" : {
544
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
545
+ },
546
+ "access" : "readwrite",
547
+ "description" :
548
+ """A textual description of this management instance and the
549
+ Fibre Channel entity/entities that it is managing.""",
550
+ }, # column
551
+ "fcmInstanceFabricId" : {
552
+ "nodetype" : "column",
553
+ "moduleName" : "FC-MGMT-MIB",
554
+ "oid" : "1.3.6.1.2.1.10.56.1.1.1.9",
555
+ "status" : "current",
556
+ "syntax" : {
557
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
558
+ },
559
+ "access" : "readonly",
560
+ "description" :
561
+ """The globally unique Fabric Identifier that identifies the
562
+ fabric to which the Fibre Channel entity/entities managed by
563
+ this management instance are connected, or, of which they
564
+ are a part. This is typically the Node WWN of the principal
565
+ switch of a Fibre Channel fabric. The zero-length string
566
+ indicates that the fabric identifier is unknown (or not
567
+ applicable).
568
+
569
+ In the event that the Fibre Channel entity/entities managed
570
+ by this management instance is/are connected to multiple
571
+ fabrics, then this object records the first (known) one.""",
572
+ }, # column
573
+ "fcmSwitchTable" : {
574
+ "nodetype" : "table",
575
+ "moduleName" : "FC-MGMT-MIB",
576
+ "oid" : "1.3.6.1.2.1.10.56.1.2",
577
+ "status" : "current",
578
+ "description" :
579
+ """A table of information about Fibre Channel switches that
580
+ are managed by Fibre Channel management instances. Each
581
+ Fibre Channel management instance can manage one or more
582
+ Fibre Channel switches.""",
583
+ }, # table
584
+ "fcmSwitchEntry" : {
585
+ "nodetype" : "row",
586
+ "moduleName" : "FC-MGMT-MIB",
587
+ "oid" : "1.3.6.1.2.1.10.56.1.2.1",
588
+ "status" : "current",
589
+ "linkage" : [
590
+ "fcmInstanceIndex",
591
+ "fcmSwitchIndex",
592
+ ],
593
+ "description" :
594
+ """Information about a particular Fibre Channel switch that is
595
+
596
+
597
+
598
+ managed by the management instance given by
599
+ fcmInstanceIndex.""",
600
+ }, # row
601
+ "fcmSwitchIndex" : {
602
+ "nodetype" : "column",
603
+ "moduleName" : "FC-MGMT-MIB",
604
+ "oid" : "1.3.6.1.2.1.10.56.1.2.1.1",
605
+ "status" : "current",
606
+ "syntax" : {
607
+ "type" : {
608
+ "basetype" : "Unsigned32",
609
+ "ranges" : [
610
+ {
611
+ "min" : "1",
612
+ "max" : "4294967295"
613
+ },
614
+ ],
615
+ "range" : {
616
+ "min" : "1",
617
+ "max" : "4294967295"
618
+ },
619
+ },
620
+ },
621
+ "access" : "noaccess",
622
+ "description" :
623
+ """An arbitrary integer that uniquely identifies a Fibre
624
+ Channel switch amongst those managed by one Fibre Channel
625
+ management instance.
626
+
627
+ It is mandatory to keep this value constant between restarts
628
+ of the agent, and to make every possible effort to keep it
629
+ constant across restarts.""",
630
+ }, # column
631
+ "fcmSwitchDomainId" : {
632
+ "nodetype" : "column",
633
+ "moduleName" : "FC-MGMT-MIB",
634
+ "oid" : "1.3.6.1.2.1.10.56.1.2.1.2",
635
+ "status" : "current",
636
+ "syntax" : {
637
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
638
+ },
639
+ "access" : "readwrite",
640
+ "description" :
641
+ """The Domain Id of this switch. A value of zero indicates
642
+ that a switch has not (yet) been assigned a Domain Id.""",
643
+ }, # column
644
+ "fcmSwitchPrincipal" : {
645
+ "nodetype" : "column",
646
+ "moduleName" : "FC-MGMT-MIB",
647
+ "oid" : "1.3.6.1.2.1.10.56.1.2.1.3",
648
+ "status" : "current",
649
+ "syntax" : {
650
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
651
+ },
652
+ "access" : "readonly",
653
+ "description" :
654
+ """An indication of whether this switch is the principal
655
+ switch within its fabric.""",
656
+ }, # column
657
+ "fcmSwitchWWN" : {
658
+ "nodetype" : "column",
659
+ "moduleName" : "FC-MGMT-MIB",
660
+ "oid" : "1.3.6.1.2.1.10.56.1.2.1.4",
661
+ "status" : "current",
662
+ "syntax" : {
663
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
664
+ },
665
+ "access" : "readonly",
666
+ "description" :
667
+ """The World Wide Name of this switch.""",
668
+ }, # column
669
+ "fcmPortTable" : {
670
+ "nodetype" : "table",
671
+ "moduleName" : "FC-MGMT-MIB",
672
+ "oid" : "1.3.6.1.2.1.10.56.1.3",
673
+ "status" : "current",
674
+ "description" :
675
+ """Information about Fibre Channel ports. Each Fibre Channel
676
+ port is represented by one entry in the IF-MIB's ifTable.""",
677
+ "reference" :
678
+ """RFC 2863, The Interfaces Group MIB, June 2000.""",
679
+ }, # table
680
+ "fcmPortEntry" : {
681
+ "nodetype" : "row",
682
+ "moduleName" : "FC-MGMT-MIB",
683
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1",
684
+ "status" : "current",
685
+ "linkage" : [
686
+ "ifIndex",
687
+ ],
688
+ "description" :
689
+ """Each entry contains information about a specific port.""",
690
+ }, # row
691
+ "fcmPortInstanceIndex" : {
692
+ "nodetype" : "column",
693
+ "moduleName" : "FC-MGMT-MIB",
694
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.1",
695
+ "status" : "current",
696
+ "syntax" : {
697
+ "type" : {
698
+ "basetype" : "Unsigned32",
699
+ "ranges" : [
700
+ {
701
+ "min" : "1",
702
+ "max" : "4294967295"
703
+ },
704
+ ],
705
+ "range" : {
706
+ "min" : "1",
707
+ "max" : "4294967295"
708
+ },
709
+ },
710
+ },
711
+ "access" : "readonly",
712
+ "description" :
713
+ """The value of fcmInstanceIndex by which the Fibre Channel
714
+ management instance, which manages this port, is identified
715
+ in the fcmInstanceTable.""",
716
+ }, # column
717
+ "fcmPortWwn" : {
718
+ "nodetype" : "column",
719
+ "moduleName" : "FC-MGMT-MIB",
720
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.2",
721
+ "status" : "current",
722
+ "syntax" : {
723
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
724
+ },
725
+ "access" : "readonly",
726
+ "description" :
727
+ """The World Wide Name of the port, or the zero-length string
728
+ if the port does not have a WWN.""",
729
+ }, # column
730
+ "fcmPortNodeWwn" : {
731
+ "nodetype" : "column",
732
+ "moduleName" : "FC-MGMT-MIB",
733
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.3",
734
+ "status" : "current",
735
+ "syntax" : {
736
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
737
+ },
738
+ "access" : "readonly",
739
+ "description" :
740
+ """The World Wide Name of the Node that contains this port, or
741
+ the zero-length string if the port does not have a node
742
+ WWN.""",
743
+ }, # column
744
+ "fcmPortAdminType" : {
745
+ "nodetype" : "column",
746
+ "moduleName" : "FC-MGMT-MIB",
747
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.4",
748
+ "status" : "current",
749
+ "syntax" : {
750
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcPortType"},
751
+ },
752
+ "access" : "readwrite",
753
+ "description" :
754
+ """The administratively desired type of this port.""",
755
+ }, # column
756
+ "fcmPortOperType" : {
757
+ "nodetype" : "column",
758
+ "moduleName" : "FC-MGMT-MIB",
759
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.5",
760
+ "status" : "current",
761
+ "syntax" : {
762
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcPortType"},
763
+ },
764
+ "access" : "readonly",
765
+ "description" :
766
+ """The current operational type of this port.""",
767
+ }, # column
768
+ "fcmPortFcCapClass" : {
769
+ "nodetype" : "column",
770
+ "moduleName" : "FC-MGMT-MIB",
771
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.6",
772
+ "status" : "current",
773
+ "syntax" : {
774
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcClasses"},
775
+ },
776
+ "access" : "readonly",
777
+ "description" :
778
+ """The classes of service capability of this port.""",
779
+ }, # column
780
+ "fcmPortFcOperClass" : {
781
+ "nodetype" : "column",
782
+ "moduleName" : "FC-MGMT-MIB",
783
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.7",
784
+ "status" : "current",
785
+ "syntax" : {
786
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcClasses"},
787
+ },
788
+ "access" : "readonly",
789
+ "description" :
790
+ """The classes of service that are currently operational on
791
+ this port. For an FL_Port, this is the union of the classes
792
+ being supported across all attached NL_Ports.""",
793
+ }, # column
794
+ "fcmPortTransmitterType" : {
795
+ "nodetype" : "column",
796
+ "moduleName" : "FC-MGMT-MIB",
797
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.8",
798
+ "status" : "current",
799
+ "syntax" : {
800
+ "type" : {
801
+ "basetype" : "Enumeration",
802
+ "unknown" : {
803
+ "nodetype" : "namednumber",
804
+ "number" : "1"
805
+ },
806
+ "other" : {
807
+ "nodetype" : "namednumber",
808
+ "number" : "2"
809
+ },
810
+ "shortwave850nm" : {
811
+ "nodetype" : "namednumber",
812
+ "number" : "3"
813
+ },
814
+ "longwave1550nm" : {
815
+ "nodetype" : "namednumber",
816
+ "number" : "4"
817
+ },
818
+ "longwave1310nm" : {
819
+ "nodetype" : "namednumber",
820
+ "number" : "5"
821
+ },
822
+ "electrical" : {
823
+ "nodetype" : "namednumber",
824
+ "number" : "6"
825
+ },
826
+ },
827
+ },
828
+ "access" : "readonly",
829
+ "description" :
830
+ """The technology of the port transceiver.""",
831
+ "reference" :
832
+ """FC-GS-3, section 6.1.2.2.3""",
833
+ }, # column
834
+ "fcmPortConnectorType" : {
835
+ "nodetype" : "column",
836
+ "moduleName" : "FC-MGMT-MIB",
837
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.9",
838
+ "status" : "current",
839
+ "syntax" : {
840
+ "type" : {
841
+ "basetype" : "Enumeration",
842
+ "unknown" : {
843
+ "nodetype" : "namednumber",
844
+ "number" : "1"
845
+ },
846
+ "other" : {
847
+ "nodetype" : "namednumber",
848
+ "number" : "2"
849
+ },
850
+ "gbic" : {
851
+ "nodetype" : "namednumber",
852
+ "number" : "3"
853
+ },
854
+ "embedded" : {
855
+ "nodetype" : "namednumber",
856
+ "number" : "4"
857
+ },
858
+ "glm" : {
859
+ "nodetype" : "namednumber",
860
+ "number" : "5"
861
+ },
862
+ "gbicSerialId" : {
863
+ "nodetype" : "namednumber",
864
+ "number" : "6"
865
+ },
866
+ "gbicNoSerialId" : {
867
+ "nodetype" : "namednumber",
868
+ "number" : "7"
869
+ },
870
+ "sfpSerialId" : {
871
+ "nodetype" : "namednumber",
872
+ "number" : "8"
873
+ },
874
+ "sfpNoSerialId" : {
875
+ "nodetype" : "namednumber",
876
+ "number" : "9"
877
+ },
878
+ },
879
+ },
880
+ "access" : "readonly",
881
+ "description" :
882
+ """The module type of the port connector. This object refers
883
+ to the hardware implementation of the port. It will be
884
+ 'embedded' if the hardware equivalent to Gigabit interface
885
+ card (GBIC) is part of the line card and is unremovable. It
886
+ will be 'glm' if it's a gigabit link module (GLM). It will
887
+ be 'gbicSerialId' if the GBIC serial id can be read, else it
888
+ will be 'gbicNoSerialId'. It will be 'sfpSerialId' if the
889
+ small form factor (SFP) pluggable GBICs serial id can be
890
+ read, else it will be 'sfpNoSerialId'.""",
891
+ "reference" :
892
+ """FC-GS-3, section 6.1.2.2.4""",
893
+ }, # column
894
+ "fcmPortSerialNumber" : {
895
+ "nodetype" : "column",
896
+ "moduleName" : "FC-MGMT-MIB",
897
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.10",
898
+ "status" : "current",
899
+ "syntax" : {
900
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
901
+ },
902
+ "access" : "readonly",
903
+ "description" :
904
+ """The serial number associated with the port (e.g., for a
905
+ GBIC). If not applicable, the object's value is a zero-
906
+ length string.""",
907
+ "reference" :
908
+ """FC-GS-3, section 6.1.2.2.4""",
909
+ }, # column
910
+ "fcmPortPhysicalNumber" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "FC-MGMT-MIB",
913
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.11",
914
+ "status" : "current",
915
+ "syntax" : {
916
+ "type" : { "module" :"", "name" : "Unsigned32"},
917
+ },
918
+ "access" : "readonly",
919
+ "description" :
920
+ """This is the port's 'Physical Port Number' as defined by
921
+ GS-3.""",
922
+ "reference" :
923
+ """FC-GS-3, section 6.1.2.2.5""",
924
+ }, # column
925
+ "fcmPortAdminSpeed" : {
926
+ "nodetype" : "column",
927
+ "moduleName" : "FC-MGMT-MIB",
928
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.12",
929
+ "status" : "current",
930
+ "syntax" : {
931
+ "type" : {
932
+ "basetype" : "Enumeration",
933
+ "auto" : {
934
+ "nodetype" : "namednumber",
935
+ "number" : "1"
936
+ },
937
+ "eighthGbs" : {
938
+ "nodetype" : "namednumber",
939
+ "number" : "2"
940
+ },
941
+ "quarterGbs" : {
942
+ "nodetype" : "namednumber",
943
+ "number" : "3"
944
+ },
945
+ "halfGbs" : {
946
+ "nodetype" : "namednumber",
947
+ "number" : "4"
948
+ },
949
+ "oneGbs" : {
950
+ "nodetype" : "namednumber",
951
+ "number" : "5"
952
+ },
953
+ "twoGbs" : {
954
+ "nodetype" : "namednumber",
955
+ "number" : "6"
956
+ },
957
+ "fourGbs" : {
958
+ "nodetype" : "namednumber",
959
+ "number" : "7"
960
+ },
961
+ "tenGbs" : {
962
+ "nodetype" : "namednumber",
963
+ "number" : "8"
964
+ },
965
+ },
966
+ },
967
+ "access" : "readwrite",
968
+ "description" :
969
+ """The speed of the interface:
970
+
971
+ 'auto' - auto-negotiation
972
+ 'tenGbs' - 10Gbs
973
+ 'fourGbs' - 4Gbs
974
+ 'twoGbs' - 2Gbs
975
+ 'oneGbs' - 1Gbs
976
+ 'halfGbs' - 500Mbs
977
+ 'quarterGbs' - 250Mbs
978
+ 'eighthGbs' - 125Mbs""",
979
+ }, # column
980
+ "fcmPortCapProtocols" : {
981
+ "nodetype" : "column",
982
+ "moduleName" : "FC-MGMT-MIB",
983
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.13",
984
+ "status" : "current",
985
+ "syntax" : {
986
+ "type" : {
987
+ "basetype" : "Bits",
988
+ "unknown" : {
989
+ "nodetype" : "namednumber",
990
+ "number" : "0"
991
+ },
992
+ "loop" : {
993
+ "nodetype" : "namednumber",
994
+ "number" : "1"
995
+ },
996
+ "fabric" : {
997
+ "nodetype" : "namednumber",
998
+ "number" : "2"
999
+ },
1000
+ "scsi" : {
1001
+ "nodetype" : "namednumber",
1002
+ "number" : "3"
1003
+ },
1004
+ "tcpIp" : {
1005
+ "nodetype" : "namednumber",
1006
+ "number" : "4"
1007
+ },
1008
+ "vi" : {
1009
+ "nodetype" : "namednumber",
1010
+ "number" : "5"
1011
+ },
1012
+ "ficon" : {
1013
+ "nodetype" : "namednumber",
1014
+ "number" : "6"
1015
+ },
1016
+ },
1017
+ },
1018
+ "access" : "readonly",
1019
+ "description" :
1020
+ """A bit mask specifying the higher level protocols that are
1021
+ capable of running over this port. Note that for generic
1022
+ Fx_Ports, E_Ports, and B_Ports, this object will indicate
1023
+ all protocols.""",
1024
+ }, # column
1025
+ "fcmPortOperProtocols" : {
1026
+ "nodetype" : "column",
1027
+ "moduleName" : "FC-MGMT-MIB",
1028
+ "oid" : "1.3.6.1.2.1.10.56.1.3.1.14",
1029
+ "status" : "current",
1030
+ "syntax" : {
1031
+ "type" : {
1032
+ "basetype" : "Bits",
1033
+ "unknown" : {
1034
+ "nodetype" : "namednumber",
1035
+ "number" : "0"
1036
+ },
1037
+ "loop" : {
1038
+ "nodetype" : "namednumber",
1039
+ "number" : "1"
1040
+ },
1041
+ "fabric" : {
1042
+ "nodetype" : "namednumber",
1043
+ "number" : "2"
1044
+ },
1045
+ "scsi" : {
1046
+ "nodetype" : "namednumber",
1047
+ "number" : "3"
1048
+ },
1049
+ "tcpIp" : {
1050
+ "nodetype" : "namednumber",
1051
+ "number" : "4"
1052
+ },
1053
+ "vi" : {
1054
+ "nodetype" : "namednumber",
1055
+ "number" : "5"
1056
+ },
1057
+ "ficon" : {
1058
+ "nodetype" : "namednumber",
1059
+ "number" : "6"
1060
+ },
1061
+ },
1062
+ },
1063
+ "access" : "readonly",
1064
+ "description" :
1065
+ """A bit mask specifying the higher level protocols that are
1066
+ currently operational on this port. For Fx_Ports, E_Ports,
1067
+ and B_Ports, this object will typically have the value
1068
+ 'unknown'.""",
1069
+ }, # column
1070
+ "fcmPortStatsTable" : {
1071
+ "nodetype" : "table",
1072
+ "moduleName" : "FC-MGMT-MIB",
1073
+ "oid" : "1.3.6.1.2.1.10.56.1.4",
1074
+ "status" : "current",
1075
+ "description" :
1076
+ """A list of statistics for Fibre Channel ports.""",
1077
+ }, # table
1078
+ "fcmPortStatsEntry" : {
1079
+ "nodetype" : "row",
1080
+ "moduleName" : "FC-MGMT-MIB",
1081
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1",
1082
+ "status" : "current",
1083
+ "linkage" : [
1084
+ { "FC-MGMT-MIB" : {
1085
+ "indexkind" : "augments",
1086
+ "relatedNode" : "fcmPortEntry",
1087
+ }},
1088
+ ],
1089
+ "description" :
1090
+ """An entry containing statistics for a Fibre Channel port.
1091
+ If any counter in this table suffers a discontinuity, the
1092
+ value of ifCounterDiscontinuityTime (defined in the IF-MIB)
1093
+ must be updated.""",
1094
+ "reference" :
1095
+ """The Interfaces Group MIB, RFC 2863, June 2000.""",
1096
+ }, # row
1097
+ "fcmPortBBCreditZeros" : {
1098
+ "nodetype" : "column",
1099
+ "moduleName" : "FC-MGMT-MIB",
1100
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.1",
1101
+ "status" : "current",
1102
+ "syntax" : {
1103
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1104
+ },
1105
+ "access" : "readonly",
1106
+ "description" :
1107
+ """The number of transitions in/out of the buffer-to-buffer
1108
+ credit zero state. The other side is not providing any
1109
+ credit.""",
1110
+ }, # column
1111
+ "fcmPortFullInputBuffers" : {
1112
+ "nodetype" : "column",
1113
+ "moduleName" : "FC-MGMT-MIB",
1114
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.2",
1115
+ "status" : "current",
1116
+ "syntax" : {
1117
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1118
+ },
1119
+ "access" : "readonly",
1120
+ "description" :
1121
+ """The number of occurrences when all input buffers of a port
1122
+ were full and outbound buffer-to-buffer credit transitioned
1123
+ to zero, i.e., there became no credit to provide to other
1124
+ side.""",
1125
+ }, # column
1126
+ "fcmPortClass2RxFrames" : {
1127
+ "nodetype" : "column",
1128
+ "moduleName" : "FC-MGMT-MIB",
1129
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.3",
1130
+ "status" : "current",
1131
+ "syntax" : {
1132
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1133
+ },
1134
+ "access" : "readonly",
1135
+ "description" :
1136
+ """The number of Class 2 frames received at this port.""",
1137
+ }, # column
1138
+ "fcmPortClass2RxOctets" : {
1139
+ "nodetype" : "column",
1140
+ "moduleName" : "FC-MGMT-MIB",
1141
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.4",
1142
+ "status" : "current",
1143
+ "syntax" : {
1144
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1145
+ },
1146
+ "access" : "readonly",
1147
+ "description" :
1148
+ """The number of octets contained in Class 2 frames received
1149
+ at this port.""",
1150
+ }, # column
1151
+ "fcmPortClass2TxFrames" : {
1152
+ "nodetype" : "column",
1153
+ "moduleName" : "FC-MGMT-MIB",
1154
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.5",
1155
+ "status" : "current",
1156
+ "syntax" : {
1157
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1158
+ },
1159
+ "access" : "readonly",
1160
+ "description" :
1161
+ """The number of Class 2 frames transmitted out of this port.""",
1162
+ }, # column
1163
+ "fcmPortClass2TxOctets" : {
1164
+ "nodetype" : "column",
1165
+ "moduleName" : "FC-MGMT-MIB",
1166
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.6",
1167
+ "status" : "current",
1168
+ "syntax" : {
1169
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1170
+ },
1171
+ "access" : "readonly",
1172
+ "description" :
1173
+ """The number of octets contained in Class 2 frames
1174
+ transmitted out of this port.""",
1175
+ }, # column
1176
+ "fcmPortClass2Discards" : {
1177
+ "nodetype" : "column",
1178
+ "moduleName" : "FC-MGMT-MIB",
1179
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.7",
1180
+ "status" : "current",
1181
+ "syntax" : {
1182
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1183
+ },
1184
+ "access" : "readonly",
1185
+ "description" :
1186
+ """The number of Class 2 frames that were discarded upon
1187
+ reception at this port.""",
1188
+ }, # column
1189
+ "fcmPortClass2RxFbsyFrames" : {
1190
+ "nodetype" : "column",
1191
+ "moduleName" : "FC-MGMT-MIB",
1192
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.8",
1193
+ "status" : "current",
1194
+ "syntax" : {
1195
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1196
+ },
1197
+ "access" : "readonly",
1198
+ "description" :
1199
+ """The number of times that F_BSY was returned to this port as
1200
+ a result of a Class 2 frame that could not be delivered to
1201
+ the other end of the link. This can occur when either the
1202
+ fabric or the destination port is temporarily busy. Note
1203
+ that this counter will never increment for an F_Port.""",
1204
+ }, # column
1205
+ "fcmPortClass2RxPbsyFrames" : {
1206
+ "nodetype" : "column",
1207
+ "moduleName" : "FC-MGMT-MIB",
1208
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.9",
1209
+ "status" : "current",
1210
+ "syntax" : {
1211
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1212
+ },
1213
+ "access" : "readonly",
1214
+ "description" :
1215
+ """The number of times that P_BSY was returned to this port as
1216
+ a result of a Class 2 frame that could not be delivered to
1217
+ the other end of the link. This can occur when the
1218
+
1219
+
1220
+
1221
+ destination port is temporarily busy.""",
1222
+ }, # column
1223
+ "fcmPortClass2RxFrjtFrames" : {
1224
+ "nodetype" : "column",
1225
+ "moduleName" : "FC-MGMT-MIB",
1226
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.10",
1227
+ "status" : "current",
1228
+ "syntax" : {
1229
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1230
+ },
1231
+ "access" : "readonly",
1232
+ "description" :
1233
+ """The number of times that F_RJT was returned to this port as
1234
+ a result of a Class 2 frame that was rejected by the fabric.
1235
+ Note that this counter will never increment for an F_Port.""",
1236
+ }, # column
1237
+ "fcmPortClass2RxPrjtFrames" : {
1238
+ "nodetype" : "column",
1239
+ "moduleName" : "FC-MGMT-MIB",
1240
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.11",
1241
+ "status" : "current",
1242
+ "syntax" : {
1243
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1244
+ },
1245
+ "access" : "readonly",
1246
+ "description" :
1247
+ """The number of times that P_RJT was returned to this port as
1248
+ a result of a Class 2 frame that was rejected at the
1249
+ destination N_Port.""",
1250
+ }, # column
1251
+ "fcmPortClass2TxFbsyFrames" : {
1252
+ "nodetype" : "column",
1253
+ "moduleName" : "FC-MGMT-MIB",
1254
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.12",
1255
+ "status" : "current",
1256
+ "syntax" : {
1257
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1258
+ },
1259
+ "access" : "readonly",
1260
+ "description" :
1261
+ """The number of times that F_BSY was generated by this port
1262
+ as a result of a Class 2 frame that could not be delivered
1263
+ because either the Fabric or the destination port was
1264
+ temporarily busy. Note that this counter will never
1265
+ increment for an N_Port.""",
1266
+ }, # column
1267
+ "fcmPortClass2TxPbsyFrames" : {
1268
+ "nodetype" : "column",
1269
+ "moduleName" : "FC-MGMT-MIB",
1270
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.13",
1271
+ "status" : "current",
1272
+ "syntax" : {
1273
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1274
+ },
1275
+ "access" : "readonly",
1276
+ "description" :
1277
+ """The number of times that P_BSY was generated by this port
1278
+ as a result of a Class 2 frame that could not be delivered
1279
+ because the destination port was temporarily busy. Note
1280
+ that this counter will never increment for an F_Port.""",
1281
+ }, # column
1282
+ "fcmPortClass2TxFrjtFrames" : {
1283
+ "nodetype" : "column",
1284
+ "moduleName" : "FC-MGMT-MIB",
1285
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.14",
1286
+ "status" : "current",
1287
+ "syntax" : {
1288
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1289
+ },
1290
+ "access" : "readonly",
1291
+ "description" :
1292
+ """The number of times that F_RJT was generated by this port
1293
+ as a result of a Class 2 frame being rejected by the fabric.
1294
+ Note that this counter will never increment for an N_Port.""",
1295
+ }, # column
1296
+ "fcmPortClass2TxPrjtFrames" : {
1297
+ "nodetype" : "column",
1298
+ "moduleName" : "FC-MGMT-MIB",
1299
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.15",
1300
+ "status" : "current",
1301
+ "syntax" : {
1302
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1303
+ },
1304
+ "access" : "readonly",
1305
+ "description" :
1306
+ """The number of times that P_RJT was generated by this port
1307
+ as a result of a Class 2 frame being rejected at the
1308
+ destination N_Port. Note that this counter will never
1309
+ increment for an F_Port.""",
1310
+ }, # column
1311
+ "fcmPortClass3RxFrames" : {
1312
+ "nodetype" : "column",
1313
+ "moduleName" : "FC-MGMT-MIB",
1314
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.16",
1315
+ "status" : "current",
1316
+ "syntax" : {
1317
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1318
+ },
1319
+ "access" : "readonly",
1320
+ "description" :
1321
+ """The number of Class 3 frames received at this port.""",
1322
+ }, # column
1323
+ "fcmPortClass3RxOctets" : {
1324
+ "nodetype" : "column",
1325
+ "moduleName" : "FC-MGMT-MIB",
1326
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.17",
1327
+ "status" : "current",
1328
+ "syntax" : {
1329
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1330
+ },
1331
+ "access" : "readonly",
1332
+ "description" :
1333
+ """The number of octets contained in Class 3 frames received
1334
+ at this port.""",
1335
+ }, # column
1336
+ "fcmPortClass3TxFrames" : {
1337
+ "nodetype" : "column",
1338
+ "moduleName" : "FC-MGMT-MIB",
1339
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.18",
1340
+ "status" : "current",
1341
+ "syntax" : {
1342
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1343
+ },
1344
+ "access" : "readonly",
1345
+ "description" :
1346
+ """The number of Class 3 frames transmitted out of this port.""",
1347
+ }, # column
1348
+ "fcmPortClass3TxOctets" : {
1349
+ "nodetype" : "column",
1350
+ "moduleName" : "FC-MGMT-MIB",
1351
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.19",
1352
+ "status" : "current",
1353
+ "syntax" : {
1354
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1355
+ },
1356
+ "access" : "readonly",
1357
+ "description" :
1358
+ """The number of octets contained in Class 3 frames
1359
+ transmitted out of this port.""",
1360
+ }, # column
1361
+ "fcmPortClass3Discards" : {
1362
+ "nodetype" : "column",
1363
+ "moduleName" : "FC-MGMT-MIB",
1364
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.20",
1365
+ "status" : "current",
1366
+ "syntax" : {
1367
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1368
+ },
1369
+ "access" : "readonly",
1370
+ "description" :
1371
+ """The number of Class 3 frames that were discarded upon
1372
+ reception at this port.""",
1373
+ }, # column
1374
+ "fcmPortClassFRxFrames" : {
1375
+ "nodetype" : "column",
1376
+ "moduleName" : "FC-MGMT-MIB",
1377
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.21",
1378
+ "status" : "current",
1379
+ "syntax" : {
1380
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1381
+ },
1382
+ "access" : "readonly",
1383
+ "description" :
1384
+ """The number of Class F frames received at this port.""",
1385
+ }, # column
1386
+ "fcmPortClassFRxOctets" : {
1387
+ "nodetype" : "column",
1388
+ "moduleName" : "FC-MGMT-MIB",
1389
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.22",
1390
+ "status" : "current",
1391
+ "syntax" : {
1392
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1393
+ },
1394
+ "access" : "readonly",
1395
+ "description" :
1396
+ """The number of octets contained in Class F frames received
1397
+ at this port.""",
1398
+ }, # column
1399
+ "fcmPortClassFTxFrames" : {
1400
+ "nodetype" : "column",
1401
+ "moduleName" : "FC-MGMT-MIB",
1402
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.23",
1403
+ "status" : "current",
1404
+ "syntax" : {
1405
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1406
+ },
1407
+ "access" : "readonly",
1408
+ "description" :
1409
+ """The number of Class F frames transmitted out of this port.""",
1410
+ }, # column
1411
+ "fcmPortClassFTxOctets" : {
1412
+ "nodetype" : "column",
1413
+ "moduleName" : "FC-MGMT-MIB",
1414
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.24",
1415
+ "status" : "current",
1416
+ "syntax" : {
1417
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1418
+ },
1419
+ "access" : "readonly",
1420
+ "description" :
1421
+ """The number of octets contained in Class F frames
1422
+ transmitted out of this port.""",
1423
+ }, # column
1424
+ "fcmPortClassFDiscards" : {
1425
+ "nodetype" : "column",
1426
+ "moduleName" : "FC-MGMT-MIB",
1427
+ "oid" : "1.3.6.1.2.1.10.56.1.4.1.25",
1428
+ "status" : "current",
1429
+ "syntax" : {
1430
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1431
+ },
1432
+ "access" : "readonly",
1433
+ "description" :
1434
+ """The number of Class F frames that were discarded upon
1435
+ reception at this port.""",
1436
+ }, # column
1437
+ "fcmPortLcStatsTable" : {
1438
+ "nodetype" : "table",
1439
+ "moduleName" : "FC-MGMT-MIB",
1440
+ "oid" : "1.3.6.1.2.1.10.56.1.5",
1441
+ "status" : "current",
1442
+ "description" :
1443
+ """A list of Counter32-based statistics for systems that do
1444
+ not support Counter64.""",
1445
+ }, # table
1446
+ "fcmPortLcStatsEntry" : {
1447
+ "nodetype" : "row",
1448
+ "moduleName" : "FC-MGMT-MIB",
1449
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1",
1450
+ "status" : "current",
1451
+ "linkage" : [
1452
+ { "FC-MGMT-MIB" : {
1453
+ "indexkind" : "augments",
1454
+ "relatedNode" : "fcmPortEntry",
1455
+ }},
1456
+ ],
1457
+ "description" :
1458
+ """An entry containing low-capacity (i.e., based on Counter32)
1459
+ statistics for a Fibre Channel port. If any counter in this
1460
+ table suffers a discontinuity, the value of
1461
+ ifCounterDiscontinuityTime (defined in the IF-MIB) must be
1462
+ updated.""",
1463
+ "reference" :
1464
+ """The Interfaces Group MIB, RFC 2863, June 2000.""",
1465
+ }, # row
1466
+ "fcmPortLcBBCreditZeros" : {
1467
+ "nodetype" : "column",
1468
+ "moduleName" : "FC-MGMT-MIB",
1469
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.1",
1470
+ "status" : "current",
1471
+ "syntax" : {
1472
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1473
+ },
1474
+ "access" : "readonly",
1475
+ "description" :
1476
+ """The number of transitions in/out of the buffer-to-buffer
1477
+ credit zero state. The other side is not providing any
1478
+ credit.""",
1479
+ }, # column
1480
+ "fcmPortLcFullInputBuffers" : {
1481
+ "nodetype" : "column",
1482
+ "moduleName" : "FC-MGMT-MIB",
1483
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.2",
1484
+ "status" : "current",
1485
+ "syntax" : {
1486
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1487
+ },
1488
+ "access" : "readonly",
1489
+ "description" :
1490
+ """The number of occurrences when all input buffers of a port
1491
+ were full and outbound buffer-to-buffer credit transitioned
1492
+ to zero, i.e., there became no credit to provide to other
1493
+ side.""",
1494
+ }, # column
1495
+ "fcmPortLcClass2RxFrames" : {
1496
+ "nodetype" : "column",
1497
+ "moduleName" : "FC-MGMT-MIB",
1498
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.3",
1499
+ "status" : "current",
1500
+ "syntax" : {
1501
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1502
+ },
1503
+ "access" : "readonly",
1504
+ "description" :
1505
+ """The number of Class 2 frames received at this port.""",
1506
+ }, # column
1507
+ "fcmPortLcClass2RxOctets" : {
1508
+ "nodetype" : "column",
1509
+ "moduleName" : "FC-MGMT-MIB",
1510
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.4",
1511
+ "status" : "current",
1512
+ "syntax" : {
1513
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1514
+ },
1515
+ "access" : "readonly",
1516
+ "description" :
1517
+ """The number of octets contained in Class 2 frames received
1518
+ at this port.""",
1519
+ }, # column
1520
+ "fcmPortLcClass2TxFrames" : {
1521
+ "nodetype" : "column",
1522
+ "moduleName" : "FC-MGMT-MIB",
1523
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.5",
1524
+ "status" : "current",
1525
+ "syntax" : {
1526
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1527
+ },
1528
+ "access" : "readonly",
1529
+ "description" :
1530
+ """The number of Class 2 frames transmitted out of this port.""",
1531
+ }, # column
1532
+ "fcmPortLcClass2TxOctets" : {
1533
+ "nodetype" : "column",
1534
+ "moduleName" : "FC-MGMT-MIB",
1535
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.6",
1536
+ "status" : "current",
1537
+ "syntax" : {
1538
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1539
+ },
1540
+ "access" : "readonly",
1541
+ "description" :
1542
+ """The number of octets contained in Class 2 frames
1543
+ transmitted out of this port.""",
1544
+ }, # column
1545
+ "fcmPortLcClass2Discards" : {
1546
+ "nodetype" : "column",
1547
+ "moduleName" : "FC-MGMT-MIB",
1548
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.7",
1549
+ "status" : "current",
1550
+ "syntax" : {
1551
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1552
+ },
1553
+ "access" : "readonly",
1554
+ "description" :
1555
+ """The number of Class 2 frames that were discarded upon
1556
+ reception at this port.""",
1557
+ }, # column
1558
+ "fcmPortLcClass2RxFbsyFrames" : {
1559
+ "nodetype" : "column",
1560
+ "moduleName" : "FC-MGMT-MIB",
1561
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.8",
1562
+ "status" : "current",
1563
+ "syntax" : {
1564
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1565
+ },
1566
+ "access" : "readonly",
1567
+ "description" :
1568
+ """The number of times that F_BSY was returned to this port as
1569
+ a result of a Class 2 frame that could not be delivered to
1570
+ the other end of the link. This can occur when either the
1571
+ fabric or the destination port is temporarily busy. Note
1572
+ that this counter will never increment for an F_Port.""",
1573
+ }, # column
1574
+ "fcmPortLcClass2RxPbsyFrames" : {
1575
+ "nodetype" : "column",
1576
+ "moduleName" : "FC-MGMT-MIB",
1577
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.9",
1578
+ "status" : "current",
1579
+ "syntax" : {
1580
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1581
+ },
1582
+ "access" : "readonly",
1583
+ "description" :
1584
+ """The number of times that P_BSY was returned to this port as
1585
+ a result of a Class 2 frame that could not be delivered to
1586
+ the other end of the link. This can occur when the
1587
+ destination port is temporarily busy.""",
1588
+ }, # column
1589
+ "fcmPortLcClass2RxFrjtFrames" : {
1590
+ "nodetype" : "column",
1591
+ "moduleName" : "FC-MGMT-MIB",
1592
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.10",
1593
+ "status" : "current",
1594
+ "syntax" : {
1595
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1596
+ },
1597
+ "access" : "readonly",
1598
+ "description" :
1599
+ """The number of times that F_RJT was returned to this port as
1600
+ a result of a Class 2 frame that was rejected by the fabric.
1601
+ Note that this counter will never increment for an F_Port.""",
1602
+ }, # column
1603
+ "fcmPortLcClass2RxPrjtFrames" : {
1604
+ "nodetype" : "column",
1605
+ "moduleName" : "FC-MGMT-MIB",
1606
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.11",
1607
+ "status" : "current",
1608
+ "syntax" : {
1609
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1610
+ },
1611
+ "access" : "readonly",
1612
+ "description" :
1613
+ """The number of times that P_RJT was returned to this port as
1614
+ a result of a Class 2 frame that was rejected at the
1615
+ destination N_Port.""",
1616
+ }, # column
1617
+ "fcmPortLcClass2TxFbsyFrames" : {
1618
+ "nodetype" : "column",
1619
+ "moduleName" : "FC-MGMT-MIB",
1620
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.12",
1621
+ "status" : "current",
1622
+ "syntax" : {
1623
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1624
+ },
1625
+ "access" : "readonly",
1626
+ "description" :
1627
+ """The number of times that F_BSY was generated by this port
1628
+ as a result of a Class 2 frame that could not be delivered
1629
+ because either the Fabric or the destination port was
1630
+ temporarily busy. Note that this counter will never
1631
+ increment for an N_Port.""",
1632
+ }, # column
1633
+ "fcmPortLcClass2TxPbsyFrames" : {
1634
+ "nodetype" : "column",
1635
+ "moduleName" : "FC-MGMT-MIB",
1636
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.13",
1637
+ "status" : "current",
1638
+ "syntax" : {
1639
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1640
+ },
1641
+ "access" : "readonly",
1642
+ "description" :
1643
+ """The number of times that P_BSY was generated by this port
1644
+ as a result of a Class 2 frame that could not be delivered
1645
+ because the destination port was temporarily busy. Note
1646
+ that this counter will never increment for an F_Port.""",
1647
+ }, # column
1648
+ "fcmPortLcClass2TxFrjtFrames" : {
1649
+ "nodetype" : "column",
1650
+ "moduleName" : "FC-MGMT-MIB",
1651
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.14",
1652
+ "status" : "current",
1653
+ "syntax" : {
1654
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1655
+ },
1656
+ "access" : "readonly",
1657
+ "description" :
1658
+ """The number of times that F_RJT was generated by this port
1659
+ as a result of a Class 2 frame being rejected by the fabric.
1660
+ Note that this counter will never increment for an N_Port.""",
1661
+ }, # column
1662
+ "fcmPortLcClass2TxPrjtFrames" : {
1663
+ "nodetype" : "column",
1664
+ "moduleName" : "FC-MGMT-MIB",
1665
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.15",
1666
+ "status" : "current",
1667
+ "syntax" : {
1668
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1669
+ },
1670
+ "access" : "readonly",
1671
+ "description" :
1672
+ """The number of times that P_RJT was generated by this port
1673
+ as a result of a Class 2 frame being rejected at the
1674
+ destination N_Port. Note that this counter will never
1675
+ increment for an F_Port.""",
1676
+ }, # column
1677
+ "fcmPortLcClass3RxFrames" : {
1678
+ "nodetype" : "column",
1679
+ "moduleName" : "FC-MGMT-MIB",
1680
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.16",
1681
+ "status" : "current",
1682
+ "syntax" : {
1683
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1684
+ },
1685
+ "access" : "readonly",
1686
+ "description" :
1687
+ """The number of Class 3 frames received at this port.""",
1688
+ }, # column
1689
+ "fcmPortLcClass3RxOctets" : {
1690
+ "nodetype" : "column",
1691
+ "moduleName" : "FC-MGMT-MIB",
1692
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.17",
1693
+ "status" : "current",
1694
+ "syntax" : {
1695
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1696
+ },
1697
+ "access" : "readonly",
1698
+ "description" :
1699
+ """The number of octets contained in Class 3 frames received
1700
+ at this port.""",
1701
+ }, # column
1702
+ "fcmPortLcClass3TxFrames" : {
1703
+ "nodetype" : "column",
1704
+ "moduleName" : "FC-MGMT-MIB",
1705
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.18",
1706
+ "status" : "current",
1707
+ "syntax" : {
1708
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1709
+ },
1710
+ "access" : "readonly",
1711
+ "description" :
1712
+ """The number of Class 3 frames transmitted out of this port.""",
1713
+ }, # column
1714
+ "fcmPortLcClass3TxOctets" : {
1715
+ "nodetype" : "column",
1716
+ "moduleName" : "FC-MGMT-MIB",
1717
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.19",
1718
+ "status" : "current",
1719
+ "syntax" : {
1720
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1721
+ },
1722
+ "access" : "readonly",
1723
+ "description" :
1724
+ """The number of octets contained in Class 3 frames
1725
+ transmitted out of this port.""",
1726
+ }, # column
1727
+ "fcmPortLcClass3Discards" : {
1728
+ "nodetype" : "column",
1729
+ "moduleName" : "FC-MGMT-MIB",
1730
+ "oid" : "1.3.6.1.2.1.10.56.1.5.1.20",
1731
+ "status" : "current",
1732
+ "syntax" : {
1733
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1734
+ },
1735
+ "access" : "readonly",
1736
+ "description" :
1737
+ """The number of Class 3 frames that were discarded upon
1738
+ reception at this port.""",
1739
+ }, # column
1740
+ "fcmPortErrorsTable" : {
1741
+ "nodetype" : "table",
1742
+ "moduleName" : "FC-MGMT-MIB",
1743
+ "oid" : "1.3.6.1.2.1.10.56.1.6",
1744
+ "status" : "current",
1745
+ "description" :
1746
+ """Error counters for Fibre Channel ports.""",
1747
+ }, # table
1748
+ "fcmPortErrorsEntry" : {
1749
+ "nodetype" : "row",
1750
+ "moduleName" : "FC-MGMT-MIB",
1751
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1",
1752
+ "status" : "current",
1753
+ "linkage" : [
1754
+ { "FC-MGMT-MIB" : {
1755
+ "indexkind" : "augments",
1756
+ "relatedNode" : "fcmPortEntry",
1757
+ }},
1758
+ ],
1759
+ "description" :
1760
+ """Error counters for a Fibre Channel port. If any counter in
1761
+ this table suffers a discontinuity, the value of
1762
+ ifCounterDiscontinuityTime (defined in the IF-MIB) must be
1763
+ updated.""",
1764
+ "reference" :
1765
+ """The Interfaces Group MIB, RFC 2863, June 2000.""",
1766
+ }, # row
1767
+ "fcmPortRxLinkResets" : {
1768
+ "nodetype" : "column",
1769
+ "moduleName" : "FC-MGMT-MIB",
1770
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.1",
1771
+ "status" : "current",
1772
+ "syntax" : {
1773
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1774
+ },
1775
+ "access" : "readonly",
1776
+ "description" :
1777
+ """The number of Link Reset (LR) Primitive Sequences
1778
+ received.""",
1779
+ }, # column
1780
+ "fcmPortTxLinkResets" : {
1781
+ "nodetype" : "column",
1782
+ "moduleName" : "FC-MGMT-MIB",
1783
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.2",
1784
+ "status" : "current",
1785
+ "syntax" : {
1786
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1787
+ },
1788
+ "access" : "readonly",
1789
+ "description" :
1790
+ """The number of Link Reset (LR) Primitive Sequences
1791
+ transmitted.""",
1792
+ }, # column
1793
+ "fcmPortLinkResets" : {
1794
+ "nodetype" : "column",
1795
+ "moduleName" : "FC-MGMT-MIB",
1796
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.3",
1797
+ "status" : "current",
1798
+ "syntax" : {
1799
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1800
+ },
1801
+ "access" : "readonly",
1802
+ "description" :
1803
+ """The number of times the reset link protocol was initiated
1804
+ on this port. This includes the number of Loop
1805
+ Initialization Primitive (LIP) events on an arbitrated loop
1806
+ port.""",
1807
+ }, # column
1808
+ "fcmPortRxOfflineSequences" : {
1809
+ "nodetype" : "column",
1810
+ "moduleName" : "FC-MGMT-MIB",
1811
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.4",
1812
+ "status" : "current",
1813
+ "syntax" : {
1814
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1815
+ },
1816
+ "access" : "readonly",
1817
+ "description" :
1818
+ """The number of Offline (OLS) Primitive Sequences received at
1819
+ this port.""",
1820
+ }, # column
1821
+ "fcmPortTxOfflineSequences" : {
1822
+ "nodetype" : "column",
1823
+ "moduleName" : "FC-MGMT-MIB",
1824
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.5",
1825
+ "status" : "current",
1826
+ "syntax" : {
1827
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1828
+ },
1829
+ "access" : "readonly",
1830
+ "description" :
1831
+ """The number of Offline (OLS) Primitive Sequences transmitted
1832
+ by this port.""",
1833
+ }, # column
1834
+ "fcmPortLinkFailures" : {
1835
+ "nodetype" : "column",
1836
+ "moduleName" : "FC-MGMT-MIB",
1837
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.6",
1838
+ "status" : "current",
1839
+ "syntax" : {
1840
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1841
+ },
1842
+ "access" : "readonly",
1843
+ "description" :
1844
+ """The number of link failures. This count is part of FC-PH's
1845
+ Link Error Status Block (LESB).""",
1846
+ "reference" :
1847
+ """FC-PH, rev 4.3, 1 June 1994, section 29.8 [FC-PH].""",
1848
+ }, # column
1849
+ "fcmPortLossofSynchs" : {
1850
+ "nodetype" : "column",
1851
+ "moduleName" : "FC-MGMT-MIB",
1852
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.7",
1853
+ "status" : "current",
1854
+ "syntax" : {
1855
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1856
+ },
1857
+ "access" : "readonly",
1858
+ "description" :
1859
+ """The number of instances of synchronization loss detected at
1860
+ this port. This count is part of FC-PH's Link Error Status
1861
+ Block (LESB).""",
1862
+ "reference" :
1863
+ """FC-PH, rev 4.3, 1 June 1994, section 29.8.""",
1864
+ }, # column
1865
+ "fcmPortLossofSignals" : {
1866
+ "nodetype" : "column",
1867
+ "moduleName" : "FC-MGMT-MIB",
1868
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.8",
1869
+ "status" : "current",
1870
+ "syntax" : {
1871
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1872
+ },
1873
+ "access" : "readonly",
1874
+ "description" :
1875
+ """The number of instances of signal loss detected at this
1876
+ port. This count is part of FC-PH's Link Error Status Block
1877
+ (LESB).""",
1878
+ "reference" :
1879
+ """FC-PH, rev 4.3, 1 June 1994, section 29.8.""",
1880
+ }, # column
1881
+ "fcmPortPrimSeqProtocolErrors" : {
1882
+ "nodetype" : "column",
1883
+ "moduleName" : "FC-MGMT-MIB",
1884
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.9",
1885
+ "status" : "current",
1886
+ "syntax" : {
1887
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1888
+ },
1889
+ "access" : "readonly",
1890
+ "description" :
1891
+ """The number of primitive sequence protocol errors detected
1892
+ at this port. This count is part of FC-PH's Link Error
1893
+ Status Block (LESB).""",
1894
+ "reference" :
1895
+ """FC-PH, rev 4.3, 1 June 1994, section 29.8.""",
1896
+ }, # column
1897
+ "fcmPortInvalidTxWords" : {
1898
+ "nodetype" : "column",
1899
+ "moduleName" : "FC-MGMT-MIB",
1900
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.10",
1901
+ "status" : "current",
1902
+ "syntax" : {
1903
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1904
+ },
1905
+ "access" : "readonly",
1906
+ "description" :
1907
+ """The number of invalid transmission words received at this
1908
+ port. This count is part of FC-PH's Link Error Status Block
1909
+ (LESB).""",
1910
+ "reference" :
1911
+ """FC-PH, rev 4.3, 1 June 1994, section 29.8.""",
1912
+ }, # column
1913
+ "fcmPortInvalidCRCs" : {
1914
+ "nodetype" : "column",
1915
+ "moduleName" : "FC-MGMT-MIB",
1916
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.11",
1917
+ "status" : "current",
1918
+ "syntax" : {
1919
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1920
+ },
1921
+ "access" : "readonly",
1922
+ "description" :
1923
+ """The number of frames received with an invalid CRC. This
1924
+ count is part of FC-PH's Link Error Status Block (LESB).""",
1925
+ "reference" :
1926
+ """FC-PH, rev 4.3, 1 June 1994, section 29.8.""",
1927
+ }, # column
1928
+ "fcmPortInvalidOrderedSets" : {
1929
+ "nodetype" : "column",
1930
+ "moduleName" : "FC-MGMT-MIB",
1931
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.12",
1932
+ "status" : "current",
1933
+ "syntax" : {
1934
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1935
+ },
1936
+ "access" : "readonly",
1937
+ "description" :
1938
+ """The number of invalid ordered sets received at this port.""",
1939
+ }, # column
1940
+ "fcmPortFrameTooLongs" : {
1941
+ "nodetype" : "column",
1942
+ "moduleName" : "FC-MGMT-MIB",
1943
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.13",
1944
+ "status" : "current",
1945
+ "syntax" : {
1946
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1947
+ },
1948
+ "access" : "readonly",
1949
+ "description" :
1950
+ """The number of frames received at this port for which the
1951
+ frame length was greater than what was agreed to in
1952
+ FLOGI/PLOGI. This could be caused by losing the end of
1953
+ frame delimiter.""",
1954
+ }, # column
1955
+ "fcmPortTruncatedFrames" : {
1956
+ "nodetype" : "column",
1957
+ "moduleName" : "FC-MGMT-MIB",
1958
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.14",
1959
+ "status" : "current",
1960
+ "syntax" : {
1961
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1962
+ },
1963
+ "access" : "readonly",
1964
+ "description" :
1965
+ """The number of frames received at this port for which the
1966
+
1967
+
1968
+
1969
+ frame length was less than the minimum indicated by the
1970
+ frame header - normally 24 bytes, but it could be more if
1971
+ the DFCTL field indicates an optional header should have
1972
+ been present.""",
1973
+ }, # column
1974
+ "fcmPortAddressErrors" : {
1975
+ "nodetype" : "column",
1976
+ "moduleName" : "FC-MGMT-MIB",
1977
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.15",
1978
+ "status" : "current",
1979
+ "syntax" : {
1980
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1981
+ },
1982
+ "access" : "readonly",
1983
+ "description" :
1984
+ """The number of frames received with unknown addressing; for
1985
+ example, an unknown SID or DID.""",
1986
+ }, # column
1987
+ "fcmPortDelimiterErrors" : {
1988
+ "nodetype" : "column",
1989
+ "moduleName" : "FC-MGMT-MIB",
1990
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.16",
1991
+ "status" : "current",
1992
+ "syntax" : {
1993
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1994
+ },
1995
+ "access" : "readonly",
1996
+ "description" :
1997
+ """The number of invalid frame delimiters received at this
1998
+ port. An example is a frame with a class 2 start and a
1999
+ class 3 at the end.""",
2000
+ }, # column
2001
+ "fcmPortEncodingDisparityErrors" : {
2002
+ "nodetype" : "column",
2003
+ "moduleName" : "FC-MGMT-MIB",
2004
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.17",
2005
+ "status" : "current",
2006
+ "syntax" : {
2007
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2008
+ },
2009
+ "access" : "readonly",
2010
+ "description" :
2011
+ """The number of encoding disparity errors received at this
2012
+ port.""",
2013
+ }, # column
2014
+ "fcmPortOtherErrors" : {
2015
+ "nodetype" : "column",
2016
+ "moduleName" : "FC-MGMT-MIB",
2017
+ "oid" : "1.3.6.1.2.1.10.56.1.6.1.18",
2018
+ "status" : "current",
2019
+ "syntax" : {
2020
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2021
+ },
2022
+ "access" : "readonly",
2023
+ "description" :
2024
+ """The number of errors that were detected on this port but
2025
+ not counted by any other error counter in this row.""",
2026
+ }, # column
2027
+ "fcmFxPortTable" : {
2028
+ "nodetype" : "table",
2029
+ "moduleName" : "FC-MGMT-MIB",
2030
+ "oid" : "1.3.6.1.2.1.10.56.1.7",
2031
+ "status" : "current",
2032
+ "description" :
2033
+ """Additional information about Fibre Channel ports that is
2034
+ specific to Fx_Ports. This table will contain one entry for
2035
+ each fcmPortTable entry that represents an Fx_Port.""",
2036
+ }, # table
2037
+ "fcmFxPortEntry" : {
2038
+ "nodetype" : "row",
2039
+ "moduleName" : "FC-MGMT-MIB",
2040
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1",
2041
+ "status" : "current",
2042
+ "linkage" : [
2043
+ "ifIndex",
2044
+ ],
2045
+ "description" :
2046
+ """Each entry contains information about a specific Fx_Port.""",
2047
+ }, # row
2048
+ "fcmFxPortRatov" : {
2049
+ "nodetype" : "column",
2050
+ "moduleName" : "FC-MGMT-MIB",
2051
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.1",
2052
+ "status" : "current",
2053
+ "syntax" : {
2054
+ "type" : { "module" :"", "name" : "Unsigned32"},
2055
+ },
2056
+ "access" : "readonly",
2057
+ "units" : "milliseconds",
2058
+ "description" :
2059
+ """The Resource_Allocation_Timeout Value configured for this
2060
+ Fx_Port. This is used as the timeout value for determining
2061
+ when to reuse an Nx_Port resource such as a
2062
+
2063
+
2064
+
2065
+ Recovery_Qualifier. It represents the Error_Detect_Timeout
2066
+ value (see fcmFxPortEdtov) plus twice the maximum time that
2067
+ a frame may be delayed within the Fabric and still be
2068
+ delivered.""",
2069
+ }, # column
2070
+ "fcmFxPortEdtov" : {
2071
+ "nodetype" : "column",
2072
+ "moduleName" : "FC-MGMT-MIB",
2073
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.2",
2074
+ "status" : "current",
2075
+ "syntax" : {
2076
+ "type" : { "module" :"", "name" : "Unsigned32"},
2077
+ },
2078
+ "access" : "readonly",
2079
+ "units" : "milliseconds",
2080
+ "description" :
2081
+ """The Error_Detect_Timeout value configured for this Fx_Port.
2082
+ This is used as the timeout value for detecting an error
2083
+ condition.""",
2084
+ }, # column
2085
+ "fcmFxPortRttov" : {
2086
+ "nodetype" : "column",
2087
+ "moduleName" : "FC-MGMT-MIB",
2088
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.3",
2089
+ "status" : "current",
2090
+ "syntax" : {
2091
+ "type" : { "module" :"", "name" : "Unsigned32"},
2092
+ },
2093
+ "access" : "readonly",
2094
+ "units" : "milliseconds",
2095
+ "description" :
2096
+ """The Receiver_Transmitter_Timeout value of this Fx_Port.
2097
+ This is used by the receiver logic to detect a Loss of
2098
+ Synchronization.""",
2099
+ }, # column
2100
+ "fcmFxPortHoldTime" : {
2101
+ "nodetype" : "column",
2102
+ "moduleName" : "FC-MGMT-MIB",
2103
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.4",
2104
+ "status" : "current",
2105
+ "syntax" : {
2106
+ "type" : { "module" :"", "name" : "Unsigned32"},
2107
+ },
2108
+ "access" : "readonly",
2109
+ "units" : "microseconds",
2110
+ "description" :
2111
+ """The maximum time that this Fx_Port shall hold a frame
2112
+ before discarding the frame if it is unable to deliver the
2113
+ frame. The value 0 means that this Fx_Port does not support
2114
+ this parameter.""",
2115
+ }, # column
2116
+ "fcmFxPortCapBbCreditMax" : {
2117
+ "nodetype" : "column",
2118
+ "moduleName" : "FC-MGMT-MIB",
2119
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.5",
2120
+ "status" : "current",
2121
+ "syntax" : {
2122
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcBbCredit"},
2123
+ },
2124
+ "access" : "readonly",
2125
+ "units" : "buffers",
2126
+ "description" :
2127
+ """The maximum number of receive buffers that this port is
2128
+ capable of making available for holding frames from attached
2129
+
2130
+
2131
+
2132
+ Nx_Port(s).""",
2133
+ }, # column
2134
+ "fcmFxPortCapBbCreditMin" : {
2135
+ "nodetype" : "column",
2136
+ "moduleName" : "FC-MGMT-MIB",
2137
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.6",
2138
+ "status" : "current",
2139
+ "syntax" : {
2140
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcBbCredit"},
2141
+ },
2142
+ "access" : "readonly",
2143
+ "units" : "buffers",
2144
+ "description" :
2145
+ """The minimum number of receive buffers that this port is
2146
+ capable of making available for holding frames from attached
2147
+ Nx_Port(s).""",
2148
+ }, # column
2149
+ "fcmFxPortCapDataFieldSizeMax" : {
2150
+ "nodetype" : "column",
2151
+ "moduleName" : "FC-MGMT-MIB",
2152
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.7",
2153
+ "status" : "current",
2154
+ "syntax" : {
2155
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDataFieldSize"},
2156
+ },
2157
+ "access" : "readonly",
2158
+ "units" : "bytes",
2159
+ "description" :
2160
+ """The maximum size in bytes of the Data Field in a frame that
2161
+ this Fx_Port is capable of receiving from an attached
2162
+ Nx_Port.""",
2163
+ }, # column
2164
+ "fcmFxPortCapDataFieldSizeMin" : {
2165
+ "nodetype" : "column",
2166
+ "moduleName" : "FC-MGMT-MIB",
2167
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.8",
2168
+ "status" : "current",
2169
+ "syntax" : {
2170
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDataFieldSize"},
2171
+ },
2172
+ "access" : "readonly",
2173
+ "units" : "bytes",
2174
+ "description" :
2175
+ """The minimum size in bytes of the Data Field in a frame that
2176
+ this Fx_Port is capable of receiving from an attached
2177
+ Nx_Port.""",
2178
+ }, # column
2179
+ "fcmFxPortCapClass2SeqDeliv" : {
2180
+ "nodetype" : "column",
2181
+ "moduleName" : "FC-MGMT-MIB",
2182
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.9",
2183
+ "status" : "current",
2184
+ "syntax" : {
2185
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2186
+ },
2187
+ "access" : "readonly",
2188
+ "description" :
2189
+ """An indication of whether this Fx_Port is capable of
2190
+ supporting Class 2 Sequential Delivery.""",
2191
+ }, # column
2192
+ "fcmFxPortCapClass3SeqDeliv" : {
2193
+ "nodetype" : "column",
2194
+ "moduleName" : "FC-MGMT-MIB",
2195
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.10",
2196
+ "status" : "current",
2197
+ "syntax" : {
2198
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2199
+ },
2200
+ "access" : "readonly",
2201
+ "description" :
2202
+ """An indication of whether this Fx_Port is capable of
2203
+ supporting Class 3 Sequential Delivery.""",
2204
+ }, # column
2205
+ "fcmFxPortCapHoldTimeMax" : {
2206
+ "nodetype" : "column",
2207
+ "moduleName" : "FC-MGMT-MIB",
2208
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.11",
2209
+ "status" : "current",
2210
+ "syntax" : {
2211
+ "type" : { "module" :"", "name" : "Unsigned32"},
2212
+ },
2213
+ "access" : "readonly",
2214
+ "units" : "microseconds",
2215
+ "description" :
2216
+ """The maximum holding time that this Fx_Port is capable of
2217
+ supporting.""",
2218
+ }, # column
2219
+ "fcmFxPortCapHoldTimeMin" : {
2220
+ "nodetype" : "column",
2221
+ "moduleName" : "FC-MGMT-MIB",
2222
+ "oid" : "1.3.6.1.2.1.10.56.1.7.1.12",
2223
+ "status" : "current",
2224
+ "syntax" : {
2225
+ "type" : { "module" :"", "name" : "Unsigned32"},
2226
+ },
2227
+ "access" : "readonly",
2228
+ "units" : "microseconds",
2229
+ "description" :
2230
+ """The minimum holding time that this Fx_Port is capable of
2231
+ supporting.""",
2232
+ }, # column
2233
+ "fcmISPortTable" : {
2234
+ "nodetype" : "table",
2235
+ "moduleName" : "FC-MGMT-MIB",
2236
+ "oid" : "1.3.6.1.2.1.10.56.1.8",
2237
+ "status" : "current",
2238
+ "description" :
2239
+ """Additional information about E_Ports, B_Ports, and any
2240
+ other type of Fibre Channel port to which inter-switch links
2241
+ can be connected. This table will contain one entry for
2242
+ each fcmPortTable entry that represents such a port.""",
2243
+ }, # table
2244
+ "fcmISPortEntry" : {
2245
+ "nodetype" : "row",
2246
+ "moduleName" : "FC-MGMT-MIB",
2247
+ "oid" : "1.3.6.1.2.1.10.56.1.8.1",
2248
+ "status" : "current",
2249
+ "linkage" : [
2250
+ "ifIndex",
2251
+ ],
2252
+ "description" :
2253
+ """Each entry contains information about a specific port
2254
+ connected to an inter-switch link.""",
2255
+ }, # row
2256
+ "fcmISPortClassFCredit" : {
2257
+ "nodetype" : "column",
2258
+ "moduleName" : "FC-MGMT-MIB",
2259
+ "oid" : "1.3.6.1.2.1.10.56.1.8.1.1",
2260
+ "status" : "current",
2261
+ "syntax" : {
2262
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcBbCredit"},
2263
+ },
2264
+ "access" : "readwrite",
2265
+ "description" :
2266
+ """The maximum number of Class F data frames that can be
2267
+ transmitted by the inter-switch port without receipt of ACK
2268
+ or Link_Response frames.""",
2269
+ }, # column
2270
+ "fcmISPortClassFDataFieldSize" : {
2271
+ "nodetype" : "column",
2272
+ "moduleName" : "FC-MGMT-MIB",
2273
+ "oid" : "1.3.6.1.2.1.10.56.1.8.1.2",
2274
+ "status" : "current",
2275
+ "syntax" : {
2276
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDataFieldSize"},
2277
+ },
2278
+ "access" : "readonly",
2279
+ "units" : "bytes",
2280
+ "description" :
2281
+ """The Receive Data Field Size that the inter-switch port has
2282
+ agreed to support for Class F frames to/from this port. The
2283
+ size specifies the largest Data Field Size for an FT_1
2284
+ frame.""",
2285
+ }, # column
2286
+ "fcmFLoginTable" : {
2287
+ "nodetype" : "table",
2288
+ "moduleName" : "FC-MGMT-MIB",
2289
+ "oid" : "1.3.6.1.2.1.10.56.1.9",
2290
+ "status" : "current",
2291
+ "description" :
2292
+ """A table that contains one entry for each Nx_Port logged-
2293
+ in/attached to a particular Fx_Port in the switch. Each
2294
+ entry contains the services parameters established during
2295
+ the most recent Fabric Login, explicit or implicit. Note
2296
+ that an Fx_Port may have one or more Nx_Ports attached to
2297
+ it.""",
2298
+ }, # table
2299
+ "fcmFLoginEntry" : {
2300
+ "nodetype" : "row",
2301
+ "moduleName" : "FC-MGMT-MIB",
2302
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1",
2303
+ "status" : "current",
2304
+ "linkage" : [
2305
+ "ifIndex",
2306
+ "fcmFLoginNxPortIndex",
2307
+ ],
2308
+ "description" :
2309
+ """An entry containing service parameters established from a
2310
+ successful Fabric Login.""",
2311
+ }, # row
2312
+ "fcmFLoginNxPortIndex" : {
2313
+ "nodetype" : "column",
2314
+ "moduleName" : "FC-MGMT-MIB",
2315
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.1",
2316
+ "status" : "current",
2317
+ "syntax" : {
2318
+ "type" : {
2319
+ "basetype" : "Unsigned32",
2320
+ "ranges" : [
2321
+ {
2322
+ "min" : "1",
2323
+ "max" : "4294967295"
2324
+ },
2325
+ ],
2326
+ "range" : {
2327
+ "min" : "1",
2328
+ "max" : "4294967295"
2329
+ },
2330
+ },
2331
+ },
2332
+ "access" : "noaccess",
2333
+ "description" :
2334
+ """An arbitrary integer that uniquely identifies an Nx_Port
2335
+ amongst all those attached to the Fx_Port indicated by
2336
+ ifIndex.
2337
+
2338
+ After a value of this object is assigned to a particular
2339
+ Nx_Port, that value can be re-used when and only when it is
2340
+ assigned to the same Nx_Port, or, after a reset of the value
2341
+ of the relevant instance of ifCounterDiscontinuityTime.""",
2342
+ "reference" :
2343
+ """The Interfaces Group MIB, RFC 2863, June 2000.""",
2344
+ }, # column
2345
+ "fcmFLoginPortWwn" : {
2346
+ "nodetype" : "column",
2347
+ "moduleName" : "FC-MGMT-MIB",
2348
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.2",
2349
+ "status" : "current",
2350
+ "syntax" : {
2351
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
2352
+ },
2353
+ "access" : "readonly",
2354
+ "description" :
2355
+ """The port name of the attached Nx_Port, or the zero-length
2356
+ string if unknown.""",
2357
+ }, # column
2358
+ "fcmFLoginNodeWwn" : {
2359
+ "nodetype" : "column",
2360
+ "moduleName" : "FC-MGMT-MIB",
2361
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.3",
2362
+ "status" : "current",
2363
+ "syntax" : {
2364
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
2365
+ },
2366
+ "access" : "readonly",
2367
+ "description" :
2368
+ """The node name of the attached Nx_Port, or the zero-length
2369
+ string if unknown.""",
2370
+ }, # column
2371
+ "fcmFLoginBbCreditModel" : {
2372
+ "nodetype" : "column",
2373
+ "moduleName" : "FC-MGMT-MIB",
2374
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.4",
2375
+ "status" : "current",
2376
+ "syntax" : {
2377
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcBbCreditModel"},
2378
+ },
2379
+ "access" : "readonly",
2380
+ "description" :
2381
+ """The buffer-to-buffer credit model in use by the Fx_Port.""",
2382
+ }, # column
2383
+ "fcmFLoginBbCredit" : {
2384
+ "nodetype" : "column",
2385
+ "moduleName" : "FC-MGMT-MIB",
2386
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.5",
2387
+ "status" : "current",
2388
+ "syntax" : {
2389
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcBbCredit"},
2390
+ },
2391
+ "access" : "readonly",
2392
+ "description" :
2393
+ """The number of buffers available for holding frames to be
2394
+
2395
+
2396
+
2397
+ transmitted to the attached Nx_Port. These buffers are for
2398
+ buffer-to-buffer flow control in the direction from Fx_Port
2399
+ to Nx_Port.""",
2400
+ }, # column
2401
+ "fcmFLoginClassesAgreed" : {
2402
+ "nodetype" : "column",
2403
+ "moduleName" : "FC-MGMT-MIB",
2404
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.6",
2405
+ "status" : "current",
2406
+ "syntax" : {
2407
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcClasses"},
2408
+ },
2409
+ "access" : "readonly",
2410
+ "description" :
2411
+ """The Classes of Service that the Fx_Port has agreed to
2412
+ support for this Nx_Port.""",
2413
+ }, # column
2414
+ "fcmFLoginClass2SeqDelivAgreed" : {
2415
+ "nodetype" : "column",
2416
+ "moduleName" : "FC-MGMT-MIB",
2417
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.7",
2418
+ "status" : "current",
2419
+ "syntax" : {
2420
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2421
+ },
2422
+ "access" : "readonly",
2423
+ "description" :
2424
+ """An indication of whether the Fx_Port has agreed to support
2425
+ Class 2 sequential delivery for this Nx_Port. This is only
2426
+ meaningful if Class 2 service has been agreed upon.""",
2427
+ }, # column
2428
+ "fcmFLoginClass2DataFieldSize" : {
2429
+ "nodetype" : "column",
2430
+ "moduleName" : "FC-MGMT-MIB",
2431
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.8",
2432
+ "status" : "current",
2433
+ "syntax" : {
2434
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDataFieldSize"},
2435
+ },
2436
+ "access" : "readonly",
2437
+ "description" :
2438
+ """The Receive Data Field Size that the Fx_Port has agreed to
2439
+ support for Class 2 frames to/from this Nx_Port. The size
2440
+ specifies the largest Data Field Size for an FT_1 frame.
2441
+ This is only meaningful if Class 2 service has been agreed
2442
+ upon.""",
2443
+ }, # column
2444
+ "fcmFLoginClass3SeqDelivAgreed" : {
2445
+ "nodetype" : "column",
2446
+ "moduleName" : "FC-MGMT-MIB",
2447
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.9",
2448
+ "status" : "current",
2449
+ "syntax" : {
2450
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2451
+ },
2452
+ "access" : "readonly",
2453
+ "description" :
2454
+ """An indication of whether the Fx_Port has agreed to support
2455
+ Class 3 sequential delivery for this Nx_Port. This is only
2456
+ meaningful if Class 3 service has been agreed upon.""",
2457
+ }, # column
2458
+ "fcmFLoginClass3DataFieldSize" : {
2459
+ "nodetype" : "column",
2460
+ "moduleName" : "FC-MGMT-MIB",
2461
+ "oid" : "1.3.6.1.2.1.10.56.1.9.1.10",
2462
+ "status" : "current",
2463
+ "syntax" : {
2464
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDataFieldSize"},
2465
+ },
2466
+ "access" : "readonly",
2467
+ "description" :
2468
+ """The Receive Data Field Size that the Fx_Port has agreed to
2469
+ support for Class 3 frames to/from this Nx_Port. The size
2470
+ specifies the largest Data Field Size for an FT_1 frame.
2471
+ This is only meaningful if Class 3 service has been agreed
2472
+ upon.""",
2473
+ }, # column
2474
+ "fcmLinkTable" : {
2475
+ "nodetype" : "table",
2476
+ "moduleName" : "FC-MGMT-MIB",
2477
+ "oid" : "1.3.6.1.2.1.10.56.1.10",
2478
+ "status" : "current",
2479
+ "description" :
2480
+ """A table containing any Fibre Channel link information that
2481
+ is known to local Fibre Channel managed instances. One end
2482
+ of such a link is typically at a local port, but the table
2483
+ can also contain information on links for which neither end
2484
+ is a local port.
2485
+
2486
+ If one end of a link terminates locally, then that end is
2487
+ termed 'end1'; the other end is termed 'end2'.""",
2488
+ }, # table
2489
+ "fcmLinkEntry" : {
2490
+ "nodetype" : "row",
2491
+ "moduleName" : "FC-MGMT-MIB",
2492
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1",
2493
+ "status" : "current",
2494
+ "linkage" : [
2495
+ "fcmInstanceIndex",
2496
+ "fcmLinkIndex",
2497
+ ],
2498
+ "description" :
2499
+ """An entry containing information that a particular Fibre
2500
+ Channel managed instance has about a Fibre Channel link.
2501
+
2502
+ The two ends of the link are called 'end1' and 'end2'.""",
2503
+ }, # row
2504
+ "fcmLinkIndex" : {
2505
+ "nodetype" : "column",
2506
+ "moduleName" : "FC-MGMT-MIB",
2507
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.1",
2508
+ "status" : "current",
2509
+ "syntax" : {
2510
+ "type" : {
2511
+ "basetype" : "Unsigned32",
2512
+ "ranges" : [
2513
+ {
2514
+ "min" : "1",
2515
+ "max" : "4294967295"
2516
+ },
2517
+ ],
2518
+ "range" : {
2519
+ "min" : "1",
2520
+ "max" : "4294967295"
2521
+ },
2522
+ },
2523
+ },
2524
+ "access" : "noaccess",
2525
+ "description" :
2526
+ """An arbitrary integer that uniquely identifies one link
2527
+ within the set of links about which a particular managed
2528
+ instance has information.""",
2529
+ }, # column
2530
+ "fcmLinkEnd1NodeWwn" : {
2531
+ "nodetype" : "column",
2532
+ "moduleName" : "FC-MGMT-MIB",
2533
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.2",
2534
+ "status" : "current",
2535
+ "syntax" : {
2536
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
2537
+ },
2538
+ "access" : "readonly",
2539
+ "description" :
2540
+ """The node name of end1, or the zero-length string if
2541
+ unknown.""",
2542
+ }, # column
2543
+ "fcmLinkEnd1PhysPortNumber" : {
2544
+ "nodetype" : "column",
2545
+ "moduleName" : "FC-MGMT-MIB",
2546
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.3",
2547
+ "status" : "current",
2548
+ "syntax" : {
2549
+ "type" : { "module" :"", "name" : "Unsigned32"},
2550
+ },
2551
+ "access" : "readonly",
2552
+ "description" :
2553
+ """The physical port number of end1, or zero if unknown.""",
2554
+ "reference" :
2555
+ """FC-GS-3, section 6.1.2.2.5""",
2556
+ }, # column
2557
+ "fcmLinkEnd1PortWwn" : {
2558
+ "nodetype" : "column",
2559
+ "moduleName" : "FC-MGMT-MIB",
2560
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.4",
2561
+ "status" : "current",
2562
+ "syntax" : {
2563
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
2564
+ },
2565
+ "access" : "readonly",
2566
+ "description" :
2567
+ """The port WWN of end1, or the zero-length string if unknown.
2568
+ ('end1' is local if this value is equal to the value of
2569
+ fcmPortWwn in one of the rows of the fcmPortTable.)""",
2570
+ }, # column
2571
+ "fcmLinkEnd2NodeWwn" : {
2572
+ "nodetype" : "column",
2573
+ "moduleName" : "FC-MGMT-MIB",
2574
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.5",
2575
+ "status" : "current",
2576
+ "syntax" : {
2577
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
2578
+ },
2579
+ "access" : "readonly",
2580
+ "description" :
2581
+ """The node name of end2, or the zero-length string if
2582
+ unknown.""",
2583
+ }, # column
2584
+ "fcmLinkEnd2PhysPortNumber" : {
2585
+ "nodetype" : "column",
2586
+ "moduleName" : "FC-MGMT-MIB",
2587
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.6",
2588
+ "status" : "current",
2589
+ "syntax" : {
2590
+ "type" : { "module" :"", "name" : "Unsigned32"},
2591
+ },
2592
+ "access" : "readonly",
2593
+ "description" :
2594
+ """The physical port number of end2, or zero if unknown.""",
2595
+ "reference" :
2596
+ """FC-GS-3, section 6.1.2.2.5""",
2597
+ }, # column
2598
+ "fcmLinkEnd2PortWwn" : {
2599
+ "nodetype" : "column",
2600
+ "moduleName" : "FC-MGMT-MIB",
2601
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.7",
2602
+ "status" : "current",
2603
+ "syntax" : {
2604
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
2605
+ },
2606
+ "access" : "readonly",
2607
+ "description" :
2608
+ """The port WWN of end2, or the zero-length string if
2609
+ unknown.""",
2610
+ }, # column
2611
+ "fcmLinkEnd2AgentAddress" : {
2612
+ "nodetype" : "column",
2613
+ "moduleName" : "FC-MGMT-MIB",
2614
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.8",
2615
+ "status" : "current",
2616
+ "syntax" : {
2617
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2618
+ },
2619
+ "access" : "readonly",
2620
+ "description" :
2621
+ """The address of the management agent for the Fibre Channel
2622
+ Interconnect Element or Platform of which end2 is a part.
2623
+ The GS-4 specification provides some information about
2624
+ management agents. If the address is unknown, the value of
2625
+ this object is the zero-length string.""",
2626
+ "reference" :
2627
+ """FC-GS-3, section 6.1.2.1.7""",
2628
+ }, # column
2629
+ "fcmLinkEnd2PortType" : {
2630
+ "nodetype" : "column",
2631
+ "moduleName" : "FC-MGMT-MIB",
2632
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.9",
2633
+ "status" : "current",
2634
+ "syntax" : {
2635
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcPortType"},
2636
+ },
2637
+ "access" : "readonly",
2638
+ "description" :
2639
+ """The port type of end2.""",
2640
+ "reference" :
2641
+ """FC-GS-3, section 6.1.2.2.2""",
2642
+ }, # column
2643
+ "fcmLinkEnd2UnitType" : {
2644
+ "nodetype" : "column",
2645
+ "moduleName" : "FC-MGMT-MIB",
2646
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.10",
2647
+ "status" : "current",
2648
+ "syntax" : {
2649
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcUnitFunctions"},
2650
+ },
2651
+ "access" : "readonly",
2652
+ "description" :
2653
+ """The type of/function(s) performed by the Fibre Channel
2654
+ Interconnect Element or Platform of which end2 is a part.""",
2655
+ "reference" :
2656
+ """FC-GS-3, sections 6.1.2.1.2 and 6.1.2.3.2""",
2657
+ }, # column
2658
+ "fcmLinkEnd2FcAddressId" : {
2659
+ "nodetype" : "column",
2660
+ "moduleName" : "FC-MGMT-MIB",
2661
+ "oid" : "1.3.6.1.2.1.10.56.1.10.1.11",
2662
+ "status" : "current",
2663
+ "syntax" : {
2664
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcAddressIdOrZero"},
2665
+ },
2666
+ "access" : "readonly",
2667
+ "description" :
2668
+ """The Fibre Channel Address ID of end2, or the zero-length
2669
+ string if unknown.""",
2670
+ }, # column
2671
+ "fcmgmtNotifications" : {
2672
+ "nodetype" : "node",
2673
+ "moduleName" : "FC-MGMT-MIB",
2674
+ "oid" : "1.3.6.1.2.1.10.56.2",
2675
+ }, # node
2676
+ "fcmgmtNotifPrefix" : {
2677
+ "nodetype" : "node",
2678
+ "moduleName" : "FC-MGMT-MIB",
2679
+ "oid" : "1.3.6.1.2.1.10.56.2.0",
2680
+ }, # node
2681
+ "fcmgmtConformance" : {
2682
+ "nodetype" : "node",
2683
+ "moduleName" : "FC-MGMT-MIB",
2684
+ "oid" : "1.3.6.1.2.1.10.56.3",
2685
+ }, # node
2686
+ "fcmgmtCompliances" : {
2687
+ "nodetype" : "node",
2688
+ "moduleName" : "FC-MGMT-MIB",
2689
+ "oid" : "1.3.6.1.2.1.10.56.3.1",
2690
+ }, # node
2691
+ "fcmgmtGroups" : {
2692
+ "nodetype" : "node",
2693
+ "moduleName" : "FC-MGMT-MIB",
2694
+ "oid" : "1.3.6.1.2.1.10.56.3.2",
2695
+ }, # node
2696
+ }, # nodes
2697
+
2698
+ "groups" : {
2699
+ "fcmInstanceBasicGroup" : {
2700
+ "nodetype" : "group",
2701
+ "moduleName" : "FC-MGMT-MIB",
2702
+ "oid" : "1.3.6.1.2.1.10.56.3.2.1",
2703
+ "status" : "current",
2704
+ "members" : {
2705
+ "fcmInstanceWwn" : {
2706
+ "nodetype" : "member",
2707
+ "module" : "FC-MGMT-MIB"
2708
+ },
2709
+ "fcmInstanceFunctions" : {
2710
+ "nodetype" : "member",
2711
+ "module" : "FC-MGMT-MIB"
2712
+ },
2713
+ "fcmInstancePhysicalIndex" : {
2714
+ "nodetype" : "member",
2715
+ "module" : "FC-MGMT-MIB"
2716
+ },
2717
+ "fcmInstanceSoftwareIndex" : {
2718
+ "nodetype" : "member",
2719
+ "module" : "FC-MGMT-MIB"
2720
+ },
2721
+ "fcmInstanceStatus" : {
2722
+ "nodetype" : "member",
2723
+ "module" : "FC-MGMT-MIB"
2724
+ },
2725
+ "fcmInstanceTextName" : {
2726
+ "nodetype" : "member",
2727
+ "module" : "FC-MGMT-MIB"
2728
+ },
2729
+ "fcmInstanceDescr" : {
2730
+ "nodetype" : "member",
2731
+ "module" : "FC-MGMT-MIB"
2732
+ },
2733
+ "fcmInstanceFabricId" : {
2734
+ "nodetype" : "member",
2735
+ "module" : "FC-MGMT-MIB"
2736
+ },
2737
+ }, # members
2738
+ "description" :
2739
+ """Basic information about Fibre Channel managed instances.""",
2740
+ }, # group
2741
+ "fcmSwitchBasicGroup" : {
2742
+ "nodetype" : "group",
2743
+ "moduleName" : "FC-MGMT-MIB",
2744
+ "oid" : "1.3.6.1.2.1.10.56.3.2.2",
2745
+ "status" : "current",
2746
+ "members" : {
2747
+ "fcmSwitchDomainId" : {
2748
+ "nodetype" : "member",
2749
+ "module" : "FC-MGMT-MIB"
2750
+ },
2751
+ "fcmSwitchPrincipal" : {
2752
+ "nodetype" : "member",
2753
+ "module" : "FC-MGMT-MIB"
2754
+ },
2755
+ "fcmSwitchWWN" : {
2756
+ "nodetype" : "member",
2757
+ "module" : "FC-MGMT-MIB"
2758
+ },
2759
+ }, # members
2760
+ "description" :
2761
+ """Basic information about Fibre Channel switches.""",
2762
+ }, # group
2763
+ "fcmPortBasicGroup" : {
2764
+ "nodetype" : "group",
2765
+ "moduleName" : "FC-MGMT-MIB",
2766
+ "oid" : "1.3.6.1.2.1.10.56.3.2.3",
2767
+ "status" : "current",
2768
+ "members" : {
2769
+ "fcmPortInstanceIndex" : {
2770
+ "nodetype" : "member",
2771
+ "module" : "FC-MGMT-MIB"
2772
+ },
2773
+ "fcmPortWwn" : {
2774
+ "nodetype" : "member",
2775
+ "module" : "FC-MGMT-MIB"
2776
+ },
2777
+ "fcmPortNodeWwn" : {
2778
+ "nodetype" : "member",
2779
+ "module" : "FC-MGMT-MIB"
2780
+ },
2781
+ "fcmPortAdminType" : {
2782
+ "nodetype" : "member",
2783
+ "module" : "FC-MGMT-MIB"
2784
+ },
2785
+ "fcmPortOperType" : {
2786
+ "nodetype" : "member",
2787
+ "module" : "FC-MGMT-MIB"
2788
+ },
2789
+ "fcmPortFcCapClass" : {
2790
+ "nodetype" : "member",
2791
+ "module" : "FC-MGMT-MIB"
2792
+ },
2793
+ "fcmPortFcOperClass" : {
2794
+ "nodetype" : "member",
2795
+ "module" : "FC-MGMT-MIB"
2796
+ },
2797
+ "fcmPortTransmitterType" : {
2798
+ "nodetype" : "member",
2799
+ "module" : "FC-MGMT-MIB"
2800
+ },
2801
+ "fcmPortConnectorType" : {
2802
+ "nodetype" : "member",
2803
+ "module" : "FC-MGMT-MIB"
2804
+ },
2805
+ "fcmPortSerialNumber" : {
2806
+ "nodetype" : "member",
2807
+ "module" : "FC-MGMT-MIB"
2808
+ },
2809
+ "fcmPortPhysicalNumber" : {
2810
+ "nodetype" : "member",
2811
+ "module" : "FC-MGMT-MIB"
2812
+ },
2813
+ "fcmPortAdminSpeed" : {
2814
+ "nodetype" : "member",
2815
+ "module" : "FC-MGMT-MIB"
2816
+ },
2817
+ "fcmPortCapProtocols" : {
2818
+ "nodetype" : "member",
2819
+ "module" : "FC-MGMT-MIB"
2820
+ },
2821
+ "fcmPortOperProtocols" : {
2822
+ "nodetype" : "member",
2823
+ "module" : "FC-MGMT-MIB"
2824
+ },
2825
+ }, # members
2826
+ "description" :
2827
+ """Basic information about Fibre Channel ports.""",
2828
+ }, # group
2829
+ "fcmPortStatsGroup" : {
2830
+ "nodetype" : "group",
2831
+ "moduleName" : "FC-MGMT-MIB",
2832
+ "oid" : "1.3.6.1.2.1.10.56.3.2.4",
2833
+ "status" : "current",
2834
+ "members" : {
2835
+ "fcmPortBBCreditZeros" : {
2836
+ "nodetype" : "member",
2837
+ "module" : "FC-MGMT-MIB"
2838
+ },
2839
+ "fcmPortFullInputBuffers" : {
2840
+ "nodetype" : "member",
2841
+ "module" : "FC-MGMT-MIB"
2842
+ },
2843
+ }, # members
2844
+ "description" :
2845
+ """Traffic statistics, which are not specific to any one class
2846
+ of service, for Fibre Channel ports.""",
2847
+ }, # group
2848
+ "fcmPortClass23StatsGroup" : {
2849
+ "nodetype" : "group",
2850
+ "moduleName" : "FC-MGMT-MIB",
2851
+ "oid" : "1.3.6.1.2.1.10.56.3.2.5",
2852
+ "status" : "current",
2853
+ "members" : {
2854
+ "fcmPortClass2RxFrames" : {
2855
+ "nodetype" : "member",
2856
+ "module" : "FC-MGMT-MIB"
2857
+ },
2858
+ "fcmPortClass2RxOctets" : {
2859
+ "nodetype" : "member",
2860
+ "module" : "FC-MGMT-MIB"
2861
+ },
2862
+ "fcmPortClass2TxFrames" : {
2863
+ "nodetype" : "member",
2864
+ "module" : "FC-MGMT-MIB"
2865
+ },
2866
+ "fcmPortClass2TxOctets" : {
2867
+ "nodetype" : "member",
2868
+ "module" : "FC-MGMT-MIB"
2869
+ },
2870
+ "fcmPortClass2Discards" : {
2871
+ "nodetype" : "member",
2872
+ "module" : "FC-MGMT-MIB"
2873
+ },
2874
+ "fcmPortClass2RxFbsyFrames" : {
2875
+ "nodetype" : "member",
2876
+ "module" : "FC-MGMT-MIB"
2877
+ },
2878
+ "fcmPortClass2RxPbsyFrames" : {
2879
+ "nodetype" : "member",
2880
+ "module" : "FC-MGMT-MIB"
2881
+ },
2882
+ "fcmPortClass2RxFrjtFrames" : {
2883
+ "nodetype" : "member",
2884
+ "module" : "FC-MGMT-MIB"
2885
+ },
2886
+ "fcmPortClass2RxPrjtFrames" : {
2887
+ "nodetype" : "member",
2888
+ "module" : "FC-MGMT-MIB"
2889
+ },
2890
+ "fcmPortClass2TxFbsyFrames" : {
2891
+ "nodetype" : "member",
2892
+ "module" : "FC-MGMT-MIB"
2893
+ },
2894
+ "fcmPortClass2TxPbsyFrames" : {
2895
+ "nodetype" : "member",
2896
+ "module" : "FC-MGMT-MIB"
2897
+ },
2898
+ "fcmPortClass2TxFrjtFrames" : {
2899
+ "nodetype" : "member",
2900
+ "module" : "FC-MGMT-MIB"
2901
+ },
2902
+ "fcmPortClass2TxPrjtFrames" : {
2903
+ "nodetype" : "member",
2904
+ "module" : "FC-MGMT-MIB"
2905
+ },
2906
+ "fcmPortClass3RxFrames" : {
2907
+ "nodetype" : "member",
2908
+ "module" : "FC-MGMT-MIB"
2909
+ },
2910
+ "fcmPortClass3RxOctets" : {
2911
+ "nodetype" : "member",
2912
+ "module" : "FC-MGMT-MIB"
2913
+ },
2914
+ "fcmPortClass3TxFrames" : {
2915
+ "nodetype" : "member",
2916
+ "module" : "FC-MGMT-MIB"
2917
+ },
2918
+ "fcmPortClass3TxOctets" : {
2919
+ "nodetype" : "member",
2920
+ "module" : "FC-MGMT-MIB"
2921
+ },
2922
+ "fcmPortClass3Discards" : {
2923
+ "nodetype" : "member",
2924
+ "module" : "FC-MGMT-MIB"
2925
+ },
2926
+ }, # members
2927
+ "description" :
2928
+ """Traffic statistics for Class 2 and Class 3 traffic on Fibre
2929
+ Channel ports.""",
2930
+ }, # group
2931
+ "fcmPortClassFStatsGroup" : {
2932
+ "nodetype" : "group",
2933
+ "moduleName" : "FC-MGMT-MIB",
2934
+ "oid" : "1.3.6.1.2.1.10.56.3.2.6",
2935
+ "status" : "current",
2936
+ "members" : {
2937
+ "fcmPortClassFRxFrames" : {
2938
+ "nodetype" : "member",
2939
+ "module" : "FC-MGMT-MIB"
2940
+ },
2941
+ "fcmPortClassFRxOctets" : {
2942
+ "nodetype" : "member",
2943
+ "module" : "FC-MGMT-MIB"
2944
+ },
2945
+ "fcmPortClassFTxFrames" : {
2946
+ "nodetype" : "member",
2947
+ "module" : "FC-MGMT-MIB"
2948
+ },
2949
+ "fcmPortClassFTxOctets" : {
2950
+ "nodetype" : "member",
2951
+ "module" : "FC-MGMT-MIB"
2952
+ },
2953
+ "fcmPortClassFDiscards" : {
2954
+ "nodetype" : "member",
2955
+ "module" : "FC-MGMT-MIB"
2956
+ },
2957
+ }, # members
2958
+ "description" :
2959
+ """Traffic statistics for Class F traffic on Fibre Channel
2960
+ ports.""",
2961
+ }, # group
2962
+ "fcmPortLcStatsGroup" : {
2963
+ "nodetype" : "group",
2964
+ "moduleName" : "FC-MGMT-MIB",
2965
+ "oid" : "1.3.6.1.2.1.10.56.3.2.7",
2966
+ "status" : "current",
2967
+ "members" : {
2968
+ "fcmPortLcBBCreditZeros" : {
2969
+ "nodetype" : "member",
2970
+ "module" : "FC-MGMT-MIB"
2971
+ },
2972
+ "fcmPortLcFullInputBuffers" : {
2973
+ "nodetype" : "member",
2974
+ "module" : "FC-MGMT-MIB"
2975
+ },
2976
+ "fcmPortLcClass2RxFrames" : {
2977
+ "nodetype" : "member",
2978
+ "module" : "FC-MGMT-MIB"
2979
+ },
2980
+ "fcmPortLcClass2RxOctets" : {
2981
+ "nodetype" : "member",
2982
+ "module" : "FC-MGMT-MIB"
2983
+ },
2984
+ "fcmPortLcClass2TxFrames" : {
2985
+ "nodetype" : "member",
2986
+ "module" : "FC-MGMT-MIB"
2987
+ },
2988
+ "fcmPortLcClass2TxOctets" : {
2989
+ "nodetype" : "member",
2990
+ "module" : "FC-MGMT-MIB"
2991
+ },
2992
+ "fcmPortLcClass2Discards" : {
2993
+ "nodetype" : "member",
2994
+ "module" : "FC-MGMT-MIB"
2995
+ },
2996
+ "fcmPortLcClass3Discards" : {
2997
+ "nodetype" : "member",
2998
+ "module" : "FC-MGMT-MIB"
2999
+ },
3000
+ "fcmPortLcClass3RxFrames" : {
3001
+ "nodetype" : "member",
3002
+ "module" : "FC-MGMT-MIB"
3003
+ },
3004
+ "fcmPortLcClass3RxOctets" : {
3005
+ "nodetype" : "member",
3006
+ "module" : "FC-MGMT-MIB"
3007
+ },
3008
+ "fcmPortLcClass3TxFrames" : {
3009
+ "nodetype" : "member",
3010
+ "module" : "FC-MGMT-MIB"
3011
+ },
3012
+ "fcmPortLcClass3TxOctets" : {
3013
+ "nodetype" : "member",
3014
+ "module" : "FC-MGMT-MIB"
3015
+ },
3016
+ "fcmPortLcClass2RxFbsyFrames" : {
3017
+ "nodetype" : "member",
3018
+ "module" : "FC-MGMT-MIB"
3019
+ },
3020
+ "fcmPortLcClass2RxPbsyFrames" : {
3021
+ "nodetype" : "member",
3022
+ "module" : "FC-MGMT-MIB"
3023
+ },
3024
+ "fcmPortLcClass2RxFrjtFrames" : {
3025
+ "nodetype" : "member",
3026
+ "module" : "FC-MGMT-MIB"
3027
+ },
3028
+ "fcmPortLcClass2RxPrjtFrames" : {
3029
+ "nodetype" : "member",
3030
+ "module" : "FC-MGMT-MIB"
3031
+ },
3032
+ "fcmPortLcClass2TxFbsyFrames" : {
3033
+ "nodetype" : "member",
3034
+ "module" : "FC-MGMT-MIB"
3035
+ },
3036
+ "fcmPortLcClass2TxPbsyFrames" : {
3037
+ "nodetype" : "member",
3038
+ "module" : "FC-MGMT-MIB"
3039
+ },
3040
+ "fcmPortLcClass2TxFrjtFrames" : {
3041
+ "nodetype" : "member",
3042
+ "module" : "FC-MGMT-MIB"
3043
+ },
3044
+ "fcmPortLcClass2TxPrjtFrames" : {
3045
+ "nodetype" : "member",
3046
+ "module" : "FC-MGMT-MIB"
3047
+ },
3048
+ }, # members
3049
+ "description" :
3050
+ """Low-capacity (32-bit) statistics for Fibre Channel ports.""",
3051
+ }, # group
3052
+ "fcmPortErrorsGroup" : {
3053
+ "nodetype" : "group",
3054
+ "moduleName" : "FC-MGMT-MIB",
3055
+ "oid" : "1.3.6.1.2.1.10.56.3.2.8",
3056
+ "status" : "current",
3057
+ "members" : {
3058
+ "fcmPortRxLinkResets" : {
3059
+ "nodetype" : "member",
3060
+ "module" : "FC-MGMT-MIB"
3061
+ },
3062
+ "fcmPortTxLinkResets" : {
3063
+ "nodetype" : "member",
3064
+ "module" : "FC-MGMT-MIB"
3065
+ },
3066
+ "fcmPortLinkResets" : {
3067
+ "nodetype" : "member",
3068
+ "module" : "FC-MGMT-MIB"
3069
+ },
3070
+ "fcmPortRxOfflineSequences" : {
3071
+ "nodetype" : "member",
3072
+ "module" : "FC-MGMT-MIB"
3073
+ },
3074
+ "fcmPortTxOfflineSequences" : {
3075
+ "nodetype" : "member",
3076
+ "module" : "FC-MGMT-MIB"
3077
+ },
3078
+ "fcmPortLinkFailures" : {
3079
+ "nodetype" : "member",
3080
+ "module" : "FC-MGMT-MIB"
3081
+ },
3082
+ "fcmPortLossofSynchs" : {
3083
+ "nodetype" : "member",
3084
+ "module" : "FC-MGMT-MIB"
3085
+ },
3086
+ "fcmPortLossofSignals" : {
3087
+ "nodetype" : "member",
3088
+ "module" : "FC-MGMT-MIB"
3089
+ },
3090
+ "fcmPortPrimSeqProtocolErrors" : {
3091
+ "nodetype" : "member",
3092
+ "module" : "FC-MGMT-MIB"
3093
+ },
3094
+ "fcmPortInvalidTxWords" : {
3095
+ "nodetype" : "member",
3096
+ "module" : "FC-MGMT-MIB"
3097
+ },
3098
+ "fcmPortInvalidCRCs" : {
3099
+ "nodetype" : "member",
3100
+ "module" : "FC-MGMT-MIB"
3101
+ },
3102
+ "fcmPortInvalidOrderedSets" : {
3103
+ "nodetype" : "member",
3104
+ "module" : "FC-MGMT-MIB"
3105
+ },
3106
+ "fcmPortFrameTooLongs" : {
3107
+ "nodetype" : "member",
3108
+ "module" : "FC-MGMT-MIB"
3109
+ },
3110
+ "fcmPortTruncatedFrames" : {
3111
+ "nodetype" : "member",
3112
+ "module" : "FC-MGMT-MIB"
3113
+ },
3114
+ "fcmPortAddressErrors" : {
3115
+ "nodetype" : "member",
3116
+ "module" : "FC-MGMT-MIB"
3117
+ },
3118
+ "fcmPortDelimiterErrors" : {
3119
+ "nodetype" : "member",
3120
+ "module" : "FC-MGMT-MIB"
3121
+ },
3122
+ "fcmPortEncodingDisparityErrors" : {
3123
+ "nodetype" : "member",
3124
+ "module" : "FC-MGMT-MIB"
3125
+ },
3126
+ "fcmPortOtherErrors" : {
3127
+ "nodetype" : "member",
3128
+ "module" : "FC-MGMT-MIB"
3129
+ },
3130
+ }, # members
3131
+ "description" :
3132
+ """Error statistics for Fibre Channel ports.""",
3133
+ }, # group
3134
+ "fcmSwitchPortGroup" : {
3135
+ "nodetype" : "group",
3136
+ "moduleName" : "FC-MGMT-MIB",
3137
+ "oid" : "1.3.6.1.2.1.10.56.3.2.9",
3138
+ "status" : "current",
3139
+ "members" : {
3140
+ "fcmFxPortRatov" : {
3141
+ "nodetype" : "member",
3142
+ "module" : "FC-MGMT-MIB"
3143
+ },
3144
+ "fcmFxPortEdtov" : {
3145
+ "nodetype" : "member",
3146
+ "module" : "FC-MGMT-MIB"
3147
+ },
3148
+ "fcmFxPortRttov" : {
3149
+ "nodetype" : "member",
3150
+ "module" : "FC-MGMT-MIB"
3151
+ },
3152
+ "fcmFxPortHoldTime" : {
3153
+ "nodetype" : "member",
3154
+ "module" : "FC-MGMT-MIB"
3155
+ },
3156
+ "fcmFxPortCapBbCreditMax" : {
3157
+ "nodetype" : "member",
3158
+ "module" : "FC-MGMT-MIB"
3159
+ },
3160
+ "fcmFxPortCapBbCreditMin" : {
3161
+ "nodetype" : "member",
3162
+ "module" : "FC-MGMT-MIB"
3163
+ },
3164
+ "fcmFxPortCapDataFieldSizeMax" : {
3165
+ "nodetype" : "member",
3166
+ "module" : "FC-MGMT-MIB"
3167
+ },
3168
+ "fcmFxPortCapDataFieldSizeMin" : {
3169
+ "nodetype" : "member",
3170
+ "module" : "FC-MGMT-MIB"
3171
+ },
3172
+ "fcmFxPortCapClass2SeqDeliv" : {
3173
+ "nodetype" : "member",
3174
+ "module" : "FC-MGMT-MIB"
3175
+ },
3176
+ "fcmFxPortCapClass3SeqDeliv" : {
3177
+ "nodetype" : "member",
3178
+ "module" : "FC-MGMT-MIB"
3179
+ },
3180
+ "fcmFxPortCapHoldTimeMax" : {
3181
+ "nodetype" : "member",
3182
+ "module" : "FC-MGMT-MIB"
3183
+ },
3184
+ "fcmFxPortCapHoldTimeMin" : {
3185
+ "nodetype" : "member",
3186
+ "module" : "FC-MGMT-MIB"
3187
+ },
3188
+ "fcmISPortClassFCredit" : {
3189
+ "nodetype" : "member",
3190
+ "module" : "FC-MGMT-MIB"
3191
+ },
3192
+ "fcmISPortClassFDataFieldSize" : {
3193
+ "nodetype" : "member",
3194
+ "module" : "FC-MGMT-MIB"
3195
+ },
3196
+ }, # members
3197
+ "description" :
3198
+ """Information about ports on a Fibre Channel switch.""",
3199
+ }, # group
3200
+ "fcmSwitchLoginGroup" : {
3201
+ "nodetype" : "group",
3202
+ "moduleName" : "FC-MGMT-MIB",
3203
+ "oid" : "1.3.6.1.2.1.10.56.3.2.10",
3204
+ "status" : "current",
3205
+ "members" : {
3206
+ "fcmFLoginPortWwn" : {
3207
+ "nodetype" : "member",
3208
+ "module" : "FC-MGMT-MIB"
3209
+ },
3210
+ "fcmFLoginNodeWwn" : {
3211
+ "nodetype" : "member",
3212
+ "module" : "FC-MGMT-MIB"
3213
+ },
3214
+ "fcmFLoginBbCreditModel" : {
3215
+ "nodetype" : "member",
3216
+ "module" : "FC-MGMT-MIB"
3217
+ },
3218
+ "fcmFLoginBbCredit" : {
3219
+ "nodetype" : "member",
3220
+ "module" : "FC-MGMT-MIB"
3221
+ },
3222
+ "fcmFLoginClassesAgreed" : {
3223
+ "nodetype" : "member",
3224
+ "module" : "FC-MGMT-MIB"
3225
+ },
3226
+ "fcmFLoginClass2SeqDelivAgreed" : {
3227
+ "nodetype" : "member",
3228
+ "module" : "FC-MGMT-MIB"
3229
+ },
3230
+ "fcmFLoginClass2DataFieldSize" : {
3231
+ "nodetype" : "member",
3232
+ "module" : "FC-MGMT-MIB"
3233
+ },
3234
+ "fcmFLoginClass3SeqDelivAgreed" : {
3235
+ "nodetype" : "member",
3236
+ "module" : "FC-MGMT-MIB"
3237
+ },
3238
+ "fcmFLoginClass3DataFieldSize" : {
3239
+ "nodetype" : "member",
3240
+ "module" : "FC-MGMT-MIB"
3241
+ },
3242
+ }, # members
3243
+ "description" :
3244
+ """Information known to a Fibre Channel switch about
3245
+ attached/logged-in Nx_Ports.""",
3246
+ }, # group
3247
+ "fcmLinkBasicGroup" : {
3248
+ "nodetype" : "group",
3249
+ "moduleName" : "FC-MGMT-MIB",
3250
+ "oid" : "1.3.6.1.2.1.10.56.3.2.11",
3251
+ "status" : "current",
3252
+ "members" : {
3253
+ "fcmLinkEnd1NodeWwn" : {
3254
+ "nodetype" : "member",
3255
+ "module" : "FC-MGMT-MIB"
3256
+ },
3257
+ "fcmLinkEnd1PhysPortNumber" : {
3258
+ "nodetype" : "member",
3259
+ "module" : "FC-MGMT-MIB"
3260
+ },
3261
+ "fcmLinkEnd1PortWwn" : {
3262
+ "nodetype" : "member",
3263
+ "module" : "FC-MGMT-MIB"
3264
+ },
3265
+ "fcmLinkEnd2NodeWwn" : {
3266
+ "nodetype" : "member",
3267
+ "module" : "FC-MGMT-MIB"
3268
+ },
3269
+ "fcmLinkEnd2PhysPortNumber" : {
3270
+ "nodetype" : "member",
3271
+ "module" : "FC-MGMT-MIB"
3272
+ },
3273
+ "fcmLinkEnd2PortWwn" : {
3274
+ "nodetype" : "member",
3275
+ "module" : "FC-MGMT-MIB"
3276
+ },
3277
+ "fcmLinkEnd2AgentAddress" : {
3278
+ "nodetype" : "member",
3279
+ "module" : "FC-MGMT-MIB"
3280
+ },
3281
+ "fcmLinkEnd2PortType" : {
3282
+ "nodetype" : "member",
3283
+ "module" : "FC-MGMT-MIB"
3284
+ },
3285
+ "fcmLinkEnd2UnitType" : {
3286
+ "nodetype" : "member",
3287
+ "module" : "FC-MGMT-MIB"
3288
+ },
3289
+ "fcmLinkEnd2FcAddressId" : {
3290
+ "nodetype" : "member",
3291
+ "module" : "FC-MGMT-MIB"
3292
+ },
3293
+ }, # members
3294
+ "description" :
3295
+ """Information about Fibre Channel links.""",
3296
+ }, # group
3297
+ }, # groups
3298
+
3299
+ "compliances" : {
3300
+ "fcmgmtCompliance" : {
3301
+ "nodetype" : "compliance",
3302
+ "moduleName" : "FC-MGMT-MIB",
3303
+ "oid" : "1.3.6.1.2.1.10.56.3.1.1",
3304
+ "status" : "current",
3305
+ "description" :
3306
+ """Describes the requirements for compliance to this Fibre
3307
+ Channel Management MIB.""",
3308
+ "requires" : {
3309
+ "fcmInstanceBasicGroup" : {
3310
+ "nodetype" : "mandatory",
3311
+ "module" : "FC-MGMT-MIB"
3312
+ },
3313
+ "fcmPortBasicGroup" : {
3314
+ "nodetype" : "mandatory",
3315
+ "module" : "FC-MGMT-MIB"
3316
+ },
3317
+ "fcmPortErrorsGroup" : {
3318
+ "nodetype" : "mandatory",
3319
+ "module" : "FC-MGMT-MIB"
3320
+ },
3321
+ "fcmPortStatsGroup" : {
3322
+ "nodetype" : "optional",
3323
+ "module" : "FC-MGMT-MIB",
3324
+ "description" :
3325
+ """This group is mandatory for all systems that
3326
+ are able to support the Counter64 date type.""",
3327
+ },
3328
+ "fcmPortClass23StatsGroup" : {
3329
+ "nodetype" : "optional",
3330
+ "module" : "FC-MGMT-MIB",
3331
+ "description" :
3332
+ """This group is mandatory only for systems that
3333
+ keep class-specific traffic statistics on Class 2
3334
+ and Class 3 traffic and are able to support the
3335
+ Counter64 date type.""",
3336
+ },
3337
+ "fcmPortClassFStatsGroup" : {
3338
+ "nodetype" : "optional",
3339
+ "module" : "FC-MGMT-MIB",
3340
+ "description" :
3341
+ """This group is mandatory only for FC switches that
3342
+ keep statistics on Class F traffic.""",
3343
+ },
3344
+ "fcmPortLcStatsGroup" : {
3345
+ "nodetype" : "optional",
3346
+ "module" : "FC-MGMT-MIB",
3347
+ "description" :
3348
+ """This group is mandatory only for agents that can not
3349
+ support the Counter64 data type and/or need to provide
3350
+ information accessible by SNMPv1 applications.""",
3351
+ },
3352
+ "fcmSwitchBasicGroup" : {
3353
+ "nodetype" : "optional",
3354
+ "module" : "FC-MGMT-MIB",
3355
+ "description" :
3356
+ """This group is mandatory only for Fibre Channel
3357
+ managed instances that manage Fibre Channel
3358
+ switches.""",
3359
+ },
3360
+ "fcmSwitchPortGroup" : {
3361
+ "nodetype" : "optional",
3362
+ "module" : "FC-MGMT-MIB",
3363
+ "description" :
3364
+ """This group is mandatory only for Fibre Channel
3365
+ managed instances that manage Fibre Channel
3366
+ switches.""",
3367
+ },
3368
+ "fcmSwitchLoginGroup" : {
3369
+ "nodetype" : "optional",
3370
+ "module" : "FC-MGMT-MIB",
3371
+ "description" :
3372
+ """This group is mandatory only for Fibre Channel
3373
+ managed instances that manage Fibre Channel
3374
+ switches.""",
3375
+ },
3376
+ "fcmLinkBasicGroup" : {
3377
+ "nodetype" : "optional",
3378
+ "module" : "FC-MGMT-MIB",
3379
+ "description" :
3380
+ """This group is optional.""",
3381
+ },
3382
+ }, # requires
3383
+ "refinements" : {
3384
+ "fcmInstancePhysicalIndex" : {
3385
+ "module" : "FC-MGMT-MIB",
3386
+ "syntax" : {
3387
+ "type" : {
3388
+ "basetype" : "Integer32",
3389
+ "ranges" : [
3390
+ {
3391
+ "min" : "0",
3392
+ "max" : "0"
3393
+ },
3394
+ ],
3395
+ "range" : {
3396
+ "min" : "0",
3397
+ "max" : "0"
3398
+ },
3399
+ },
3400
+ }, # syntax
3401
+ "description" :
3402
+ """Implementation of a non-zero value is not required.""",
3403
+ },
3404
+ "fcmInstanceSoftwareIndex" : {
3405
+ "module" : "FC-MGMT-MIB",
3406
+ "syntax" : {
3407
+ "type" : {
3408
+ "basetype" : "Integer32",
3409
+ "ranges" : [
3410
+ {
3411
+ "min" : "0",
3412
+ "max" : "0"
3413
+ },
3414
+ ],
3415
+ "range" : {
3416
+ "min" : "0",
3417
+ "max" : "0"
3418
+ },
3419
+ },
3420
+ }, # syntax
3421
+ "description" :
3422
+ """Implementation of a non-zero value is not required.""",
3423
+ },
3424
+ "fcmInstanceTextName" : {
3425
+ "module" : "FC-MGMT-MIB",
3426
+ "access" : "readonly",
3427
+ "description" :
3428
+ """Write access is not required.""",
3429
+ },
3430
+ "fcmInstanceDescr" : {
3431
+ "module" : "FC-MGMT-MIB",
3432
+ "access" : "readonly",
3433
+ "description" :
3434
+ """Write access is not required.""",
3435
+ },
3436
+ "fcmPortAdminType" : {
3437
+ "module" : "FC-MGMT-MIB",
3438
+ "access" : "readonly",
3439
+ "description" :
3440
+ """Write access is not required.""",
3441
+ },
3442
+ "fcmPortAdminSpeed" : {
3443
+ "module" : "FC-MGMT-MIB",
3444
+ "access" : "readonly",
3445
+ "description" :
3446
+ """Write access is not required.""",
3447
+ },
3448
+ "fcmSwitchDomainId" : {
3449
+ "module" : "FC-MGMT-MIB",
3450
+ "access" : "readonly",
3451
+ "description" :
3452
+ """Write access is not required.""",
3453
+ },
3454
+ "fcmISPortClassFCredit" : {
3455
+ "module" : "FC-MGMT-MIB",
3456
+ "access" : "readonly",
3457
+ "description" :
3458
+ """Write access is not required.""",
3459
+ },
3460
+ }, # refinements
3461
+
3462
+ }, # compliance
3463
+ }, # compliances
3464
+
3465
+ }