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,2822 @@
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 T11-FC-FABRIC-CONFIG-SERVER-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
11
+
12
+ "T11-FC-FABRIC-CONFIG-SERVER-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """For the initial versions, T11.
17
+ For later versions, the IETF's IMSS Working Group.""",
18
+ "contact" :
19
+ """ Claudio DeSanti
20
+ Cisco Systems, Inc.
21
+ 170 West Tasman Drive
22
+ San Jose, CA 95134 USA
23
+ EMail: cds@cisco.com
24
+
25
+ Keith McCloghrie
26
+ Cisco Systems, Inc.
27
+ 170 West Tasman Drive
28
+ San Jose, CA 95134 USA
29
+ EMail: kzm@cisco.com""",
30
+ "description" :
31
+ """The MIB module for the management of a Fabric
32
+ Configuration Server (FCS) in a Fibre Channel (FC)
33
+ network. An FCS is defined by the FC-GS-5 standard. This
34
+
35
+
36
+
37
+ MIB provides the capabilities to trigger a discovery of
38
+ the configuration of one or more Fabrics, to retrieve the
39
+ results of such a discovery, as well as to control and
40
+ monitor the operation of an FCS. The discovered
41
+ configuration contains information about:
42
+
43
+ - Interconnect Elements (IEs), i.e., switches, hubs,
44
+ bridges, etc.,
45
+ - Ports on IEs, and
46
+ - Platforms that consist of one or more FC nodes.
47
+
48
+ Copyright (C) The IETF Trust (2007). This version of
49
+ this MIB module is part of RFC 4935; see the RFC itself for
50
+ full legal notices.""",
51
+ "revisions" : (
52
+ {
53
+ "date" : "2007-06-27 00:00",
54
+ "description" :
55
+ """Initial version of this MIB module, published as RFC 4935.""",
56
+ },
57
+ ),
58
+ "identity node" : "t11FcFabricConfigServerMIB",
59
+ },
60
+
61
+ "imports" : (
62
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
63
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
64
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
65
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
66
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
67
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
68
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
69
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
70
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
71
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
72
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
73
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
74
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
75
+ {"module" : "NETWORK-SERVICES-MIB", "name" : "URLString"},
76
+ {"module" : "FC-MGMT-MIB", "name" : "FcPortType"},
77
+ {"module" : "FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
78
+ {"module" : "FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
79
+ {"module" : "FC-MGMT-MIB", "name" : "fcmInstanceIndex"},
80
+ {"module" : "FC-MGMT-MIB", "name" : "fcmSwitchIndex"},
81
+ {"module" : "FC-MGMT-MIB", "name" : "FcAddressIdOrZero"},
82
+ {"module" : "T11-FC-NAME-SERVER-MIB", "name" : "T11NsGs4RejectReasonCode"},
83
+ {"module" : "T11-TC-MIB", "name" : "T11FabricIndex"},
84
+ {"module" : "T11-FC-FABRIC-ADDR-MGR-MIB", "name" : "t11FamLocalSwitchWwn"},
85
+ ),
86
+
87
+ "typedefs" : {
88
+ "T11FcListIndex" : {
89
+ "basetype" : "Unsigned32",
90
+ "status" : "current",
91
+ "ranges" : [
92
+ {
93
+ "min" : "1",
94
+ "max" : "4294967295"
95
+ },
96
+ ],
97
+ "range" : {
98
+ "min" : "1",
99
+ "max" : "4294967295"
100
+ },
101
+ "format" : "d",
102
+ "description" :
103
+ """An index that identifies a list of elements.
104
+ All elements that belong to the same list have the
105
+ same index value. This syntax is used for objects
106
+ which identify a list in the INDEX clause of a table
107
+ of elements of that type of list.""",
108
+ },
109
+ "T11FcListIndexPointerOrZero" : {
110
+ "basetype" : "Unsigned32",
111
+ "status" : "current",
112
+ "format" : "d",
113
+ "description" :
114
+ """Objects with this syntax point to a list of elements
115
+ contained in a table, by holding the same value as the
116
+ object with syntax T11FcListIndex defined in the table's
117
+ INDEX clause, or, zero to indicate an empty list.
118
+ Note that such a table could have one row per list, or
119
+ it could have one row per element of a list.
120
+
121
+ The definition of an object with this syntax must
122
+ identify the table(s) into which it points.""",
123
+ },
124
+ "T11FcIeType" : {
125
+ "basetype" : "Enumeration",
126
+ "status" : "current",
127
+ "unknown" : {
128
+ "nodetype" : "namednumber",
129
+ "number" : "1"
130
+ },
131
+ "other" : {
132
+ "nodetype" : "namednumber",
133
+ "number" : "2"
134
+ },
135
+ "switch" : {
136
+ "nodetype" : "namednumber",
137
+ "number" : "3"
138
+ },
139
+ "hub" : {
140
+ "nodetype" : "namednumber",
141
+ "number" : "4"
142
+ },
143
+ "bridge" : {
144
+ "nodetype" : "namednumber",
145
+ "number" : "5"
146
+ },
147
+ "description" :
148
+ """The type of Interconnect Element (IE):
149
+
150
+ unknown(1) - an unknown IE.
151
+ other(2) - some other type of IE.
152
+ switch(3) - the IE is a switch.
153
+ hub(4) - the IE is a hub.
154
+ bridge(5) - the IE is a bridge.""",
155
+ "reference" :
156
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
157
+ FC-GS-5, Table 96.""",
158
+ },
159
+ "T11FcPortState" : {
160
+ "basetype" : "Enumeration",
161
+ "status" : "current",
162
+ "unknown" : {
163
+ "nodetype" : "namednumber",
164
+ "number" : "1"
165
+ },
166
+ "other" : {
167
+ "nodetype" : "namednumber",
168
+ "number" : "2"
169
+ },
170
+ "online" : {
171
+ "nodetype" : "namednumber",
172
+ "number" : "3"
173
+ },
174
+ "offline" : {
175
+ "nodetype" : "namednumber",
176
+ "number" : "4"
177
+ },
178
+ "testing" : {
179
+ "nodetype" : "namednumber",
180
+ "number" : "5"
181
+ },
182
+ "fault" : {
183
+ "nodetype" : "namednumber",
184
+ "number" : "6"
185
+ },
186
+ "description" :
187
+ """The state of a port:
188
+
189
+ unknown(1) - unknown state.
190
+ other(2) - some other state.
191
+ online(3) - port is in online state.
192
+ offline(4) - port is in offline state.
193
+ testing(5) - port is in testing state.
194
+ fault(6) - port is faulty.""",
195
+ "reference" :
196
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
197
+ FC-GS-5, Table 106.""",
198
+ },
199
+ "T11FcPortTxType" : {
200
+ "basetype" : "Enumeration",
201
+ "status" : "current",
202
+ "unknown" : {
203
+ "nodetype" : "namednumber",
204
+ "number" : "1"
205
+ },
206
+ "other" : {
207
+ "nodetype" : "namednumber",
208
+ "number" : "2"
209
+ },
210
+ "shortwave850nm" : {
211
+ "nodetype" : "namednumber",
212
+ "number" : "3"
213
+ },
214
+ "longwave1550nm" : {
215
+ "nodetype" : "namednumber",
216
+ "number" : "4"
217
+ },
218
+ "longwave1310nm" : {
219
+ "nodetype" : "namednumber",
220
+ "number" : "5"
221
+ },
222
+ "electrical" : {
223
+ "nodetype" : "namednumber",
224
+ "number" : "6"
225
+ },
226
+ "tenGbaseSr850" : {
227
+ "nodetype" : "namednumber",
228
+ "number" : "7"
229
+ },
230
+ "tenGbaseLr1310" : {
231
+ "nodetype" : "namednumber",
232
+ "number" : "8"
233
+ },
234
+ "tenGbaseEr1550" : {
235
+ "nodetype" : "namednumber",
236
+ "number" : "9"
237
+ },
238
+ "tenGbaseLx1300" : {
239
+ "nodetype" : "namednumber",
240
+ "number" : "10"
241
+ },
242
+ "tenGbaseSw850" : {
243
+ "nodetype" : "namednumber",
244
+ "number" : "11"
245
+ },
246
+ "tenGbaseLw1310" : {
247
+ "nodetype" : "namednumber",
248
+ "number" : "12"
249
+ },
250
+ "tenGbaseEw1550" : {
251
+ "nodetype" : "namednumber",
252
+ "number" : "13"
253
+ },
254
+ "description" :
255
+ """The technology of the port transceiver:
256
+
257
+ unknown(1) - unknown (includes the 'null' type)
258
+ other(2) - some other technology
259
+ shortwave850nm(3) - Short wave laser - SN (850 nm)
260
+ longwave1550nm(4) - Long wave laser - LL (1550 nm)
261
+ longwave1310nm(5) - Long wave laser cost
262
+ reduced - LC (1310 nm)
263
+ electrical(6) - Electrical - EL.
264
+ tenGbaseSr850(7) - 10GBASE-SR 850nm laser
265
+ tenGbaseLr1310(8) - 10GBASE-LR 1310nm laser
266
+ tenGbaseEr1550(9) - 10GBASE-ER 1550nm laser
267
+ tenGbaseLx1300(10) - 10GBASE-LX4 WWDM 1300nm laser
268
+ tenGbaseSw850(11) - 10GBASE-SW 850nm laser
269
+ tenGbaseLw1310(12) - 10GBASE-LW 1310nm laser
270
+ tenGbaseEw1550(13) - 10GBASE-EW 1550nm laser""",
271
+ "reference" :
272
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
273
+ FC-GS-5, Table 101.""",
274
+ },
275
+ "T11FcsRejectReasonExplanation" : {
276
+ "basetype" : "Enumeration",
277
+ "status" : "current",
278
+ "noAdditionalExplanation" : {
279
+ "nodetype" : "namednumber",
280
+ "number" : "1"
281
+ },
282
+ "invNameIdForIEOrPort" : {
283
+ "nodetype" : "namednumber",
284
+ "number" : "2"
285
+ },
286
+ "ieListNotAvailable" : {
287
+ "nodetype" : "namednumber",
288
+ "number" : "3"
289
+ },
290
+ "ieTypeNotAvailable" : {
291
+ "nodetype" : "namednumber",
292
+ "number" : "4"
293
+ },
294
+ "domainIdNotAvailable" : {
295
+ "nodetype" : "namednumber",
296
+ "number" : "5"
297
+ },
298
+ "mgmtIdNotAvailable" : {
299
+ "nodetype" : "namednumber",
300
+ "number" : "6"
301
+ },
302
+ "fabNameNotAvailable" : {
303
+ "nodetype" : "namednumber",
304
+ "number" : "7"
305
+ },
306
+ "ielogNameNotAvailable" : {
307
+ "nodetype" : "namednumber",
308
+ "number" : "8"
309
+ },
310
+ "mgmtAddrListNotAvailable" : {
311
+ "nodetype" : "namednumber",
312
+ "number" : "9"
313
+ },
314
+ "ieInfoListNotAvailable" : {
315
+ "nodetype" : "namednumber",
316
+ "number" : "10"
317
+ },
318
+ "portListNotAvailable" : {
319
+ "nodetype" : "namednumber",
320
+ "number" : "11"
321
+ },
322
+ "portTypeNotAvailable" : {
323
+ "nodetype" : "namednumber",
324
+ "number" : "12"
325
+ },
326
+ "phyPortNumNotAvailable" : {
327
+ "nodetype" : "namednumber",
328
+ "number" : "13"
329
+ },
330
+ "attPortNameListNotAvailable" : {
331
+ "nodetype" : "namednumber",
332
+ "number" : "14"
333
+ },
334
+ "portStateNotAvailable" : {
335
+ "nodetype" : "namednumber",
336
+ "number" : "15"
337
+ },
338
+ "unableToRegIELogName" : {
339
+ "nodetype" : "namednumber",
340
+ "number" : "16"
341
+ },
342
+ "platformNameNoExist" : {
343
+ "nodetype" : "namednumber",
344
+ "number" : "17"
345
+ },
346
+ "platformNameAlreadyExists" : {
347
+ "nodetype" : "namednumber",
348
+ "number" : "18"
349
+ },
350
+ "platformNodeNameNoExists" : {
351
+ "nodetype" : "namednumber",
352
+ "number" : "19"
353
+ },
354
+ "platformNodeNameAlreadyExists" : {
355
+ "nodetype" : "namednumber",
356
+ "number" : "20"
357
+ },
358
+ "resourceUnavailable" : {
359
+ "nodetype" : "namednumber",
360
+ "number" : "21"
361
+ },
362
+ "noEntriesInLunMap" : {
363
+ "nodetype" : "namednumber",
364
+ "number" : "22"
365
+ },
366
+ "invalidDeviceNameLength" : {
367
+ "nodetype" : "namednumber",
368
+ "number" : "23"
369
+ },
370
+ "multipleAttributes" : {
371
+ "nodetype" : "namednumber",
372
+ "number" : "24"
373
+ },
374
+ "invalidAttribBlockLength" : {
375
+ "nodetype" : "namednumber",
376
+ "number" : "25"
377
+ },
378
+ "attributesMissing" : {
379
+ "nodetype" : "namednumber",
380
+ "number" : "26"
381
+ },
382
+ "description" :
383
+ """The reject reason code explanation:
384
+
385
+ noAdditionalExplanation(1)
386
+ - no additional explanation.
387
+ invNameIdForIEOrPort(2)
388
+ - the format of IE or port name is invalid.
389
+ ieListNotAvailable(3)
390
+ - IE list is not available.
391
+ ieTypeNotAvailable(4)
392
+ - IE type is not available.
393
+ domainIdNotAvailable(5)
394
+ - Domain ID is not available.
395
+ mgmtIdNotAvailable(6)
396
+ - mgmt ID is not available.
397
+ fabNameNotAvailable(7)
398
+ - Fabric_Name is not available.
399
+ ielogNameNotAvailable(8)
400
+ - IE logical name is not available.
401
+ mgmtAddrListNotAvailable(9)
402
+ - mgmt address list is not available.
403
+ ieInfoListNotAvailable(10)
404
+ - IE info list is not available.
405
+ portListNotAvailable(11)
406
+ - port list is not available.
407
+ portTypeNotAvailable(12)
408
+ - port type is not available.
409
+ phyPortNumNotAvailable(13)
410
+ - physical port number is not available.
411
+ attPortNameListNotAvailable(14)
412
+ - attached port name list is not available.
413
+ portStateNotAvailable(15)
414
+ - port state is not available.
415
+ unableToRegIELogName(16)
416
+ - not able to register IE logical name.
417
+ platformNameNoExist(17)
418
+ - platform name does not exist.
419
+ platformNameAlreadyExists(18)
420
+ - platform name already exists.
421
+ platformNodeNameNoExists(19)
422
+ - platform node name does not exist.
423
+ platformNodeNameAlreadyExists(20)
424
+ - platform node name already exists.
425
+ resourceUnavailable(21)
426
+ - resource unavailable.
427
+ noEntriesInLunMap(22)
428
+
429
+
430
+
431
+ - zero entries in OS LUN Map.
432
+ invalidDeviceNameLength(23)
433
+ - invalid OS device name length.
434
+ multipleAttributes(24)
435
+ - multiple attributes of same type in
436
+ platform attribute block.
437
+ invalidAttribBlockLength(25)
438
+ - invalid platform attribute block length.
439
+ attributesMissing(26)
440
+ - required platform attributes not present.""",
441
+ "reference" :
442
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
443
+ FC-GS-5, Table 124.""",
444
+ },
445
+ }, # typedefs
446
+
447
+ "nodes" : {
448
+ "t11FcFabricConfigServerMIB" : {
449
+ "nodetype" : "node",
450
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
451
+ "oid" : "1.3.6.1.2.1.162",
452
+ "status" : "current",
453
+ }, # node
454
+ "t11FcsNotifications" : {
455
+ "nodetype" : "node",
456
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
457
+ "oid" : "1.3.6.1.2.1.162.0",
458
+ }, # node
459
+ "t11FcsMIBObjects" : {
460
+ "nodetype" : "node",
461
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
462
+ "oid" : "1.3.6.1.2.1.162.1",
463
+ }, # node
464
+ "t11FcsDiscovery" : {
465
+ "nodetype" : "node",
466
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
467
+ "oid" : "1.3.6.1.2.1.162.1.1",
468
+ }, # node
469
+ "t11FcsFabricDiscoveryTable" : {
470
+ "nodetype" : "table",
471
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
472
+ "oid" : "1.3.6.1.2.1.162.1.1.1",
473
+ "status" : "current",
474
+ "description" :
475
+ """This table contains control information for discovery
476
+ of Fabric configuration by switches.
477
+
478
+ Values written to objects in this table are not
479
+ retained over agent reboots.""",
480
+ }, # table
481
+ "t11FcsFabricDiscoveryEntry" : {
482
+ "nodetype" : "row",
483
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
484
+ "oid" : "1.3.6.1.2.1.162.1.1.1.1",
485
+ "status" : "current",
486
+ "linkage" : [
487
+ "fcmInstanceIndex",
488
+ "fcmSwitchIndex",
489
+ ],
490
+ "description" :
491
+ """Control information for discovery by the switch
492
+ identified by fcmInstanceIndex and fcmSwitchIndex.""",
493
+ }, # row
494
+ "t11FcsFabricDiscoveryRangeLow" : {
495
+ "nodetype" : "column",
496
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
497
+ "oid" : "1.3.6.1.2.1.162.1.1.1.1.1",
498
+ "status" : "current",
499
+ "syntax" : {
500
+ "type" : { "module" :"T11-TC-MIB", "name" : "T11FabricIndex"},
501
+ },
502
+ "access" : "readwrite",
503
+ "description" :
504
+ """The discovery by a particular switch operates
505
+ within all existing Fabrics that have a Fabric
506
+ Index within a specific inclusive range. This
507
+ object specifies the minimum Fabric Index value
508
+ within that range. This value just represents
509
+ the lower end of the range and does not necessarily
510
+ represent any existing Fabric.""",
511
+ }, # column
512
+ "t11FcsFabricDiscoveryRangeHigh" : {
513
+ "nodetype" : "column",
514
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
515
+ "oid" : "1.3.6.1.2.1.162.1.1.1.1.2",
516
+ "status" : "current",
517
+ "syntax" : {
518
+ "type" : { "module" :"T11-TC-MIB", "name" : "T11FabricIndex"},
519
+ },
520
+ "access" : "readwrite",
521
+ "description" :
522
+ """The discovery by a particular switch operates
523
+ within all existing Fabrics that have a Fabric
524
+
525
+
526
+
527
+ Index within a specific inclusive range. This
528
+ object specifies the maximum Fabric Index value
529
+ within that range. This value just represents the
530
+ higher end of the range and does not necessarily
531
+ represent any existing Fabric.""",
532
+ }, # column
533
+ "t11FcsFabricDiscoveryStart" : {
534
+ "nodetype" : "column",
535
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
536
+ "oid" : "1.3.6.1.2.1.162.1.1.1.1.3",
537
+ "status" : "current",
538
+ "syntax" : {
539
+ "type" : {
540
+ "basetype" : "Enumeration",
541
+ "start" : {
542
+ "nodetype" : "namednumber",
543
+ "number" : "1"
544
+ },
545
+ "noOp" : {
546
+ "nodetype" : "namednumber",
547
+ "number" : "2"
548
+ },
549
+ },
550
+ },
551
+ "access" : "readwrite",
552
+ "description" :
553
+ """This object provides the capability to trigger the start
554
+ of a discovery by a Fabric Configuration Server. If this
555
+ object is set to 'start', then the discovery is started on
556
+ those Fabrics that have their Fabric Index value in the
557
+ range specified by t11FcsFabricDiscoveryRangeLow and
558
+ t11FcsFabricDiscoveryRangeHigh. It is recommended that
559
+ whenever an instance of this object is set to 'start',
560
+ that the desired range be specified at the same time by
561
+ setting the corresponding instances of
562
+ t11FcsFabricDiscoveryRangeLow and
563
+ t11FcsFabricDiscoveryRangeHigh.
564
+
565
+ Setting this object to 'start' will be rejected if a
566
+ discovery is already/still in progress on any Fabrics in
567
+ the specified range.
568
+
569
+ No action is taken if this object is set to 'noOp'.
570
+ The value of this object when read is always 'noOp'.""",
571
+ }, # column
572
+ "t11FcsFabricDiscoveryTimeOut" : {
573
+ "nodetype" : "column",
574
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
575
+ "oid" : "1.3.6.1.2.1.162.1.1.1.1.4",
576
+ "status" : "current",
577
+ "syntax" : {
578
+ "type" : {
579
+ "basetype" : "Unsigned32",
580
+ "ranges" : [
581
+ {
582
+ "min" : "300",
583
+ "max" : "86400"
584
+ },
585
+ ],
586
+ "range" : {
587
+ "min" : "300",
588
+ "max" : "86400"
589
+ },
590
+ },
591
+ },
592
+ "access" : "readwrite",
593
+ "default" : "900",
594
+ "units" : "Seconds",
595
+ "description" :
596
+ """The minimum interval of time for which the discovered
597
+ Fabric information is cached by a Fabric Configuration
598
+ Server.""",
599
+ }, # column
600
+ "t11FcsDiscoveryStateTable" : {
601
+ "nodetype" : "table",
602
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
603
+ "oid" : "1.3.6.1.2.1.162.1.1.2",
604
+ "status" : "current",
605
+ "description" :
606
+ """This table contains the status of discovery of
607
+ locally known Fabrics.""",
608
+ }, # table
609
+ "t11FcsDiscoveryStateEntry" : {
610
+ "nodetype" : "row",
611
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
612
+ "oid" : "1.3.6.1.2.1.162.1.1.2.1",
613
+ "status" : "current",
614
+ "linkage" : [
615
+ "fcmInstanceIndex",
616
+ "fcmSwitchIndex",
617
+ "t11FcsFabricIndex",
618
+ ],
619
+ "description" :
620
+ """The discovery status for a particular Fabric on the
621
+ switch identified by fcmInstanceIndex and fcmSwitchIndex.""",
622
+ }, # row
623
+ "t11FcsFabricIndex" : {
624
+ "nodetype" : "column",
625
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
626
+ "oid" : "1.3.6.1.2.1.162.1.1.2.1.1",
627
+ "status" : "current",
628
+ "syntax" : {
629
+ "type" : { "module" :"T11-TC-MIB", "name" : "T11FabricIndex"},
630
+ },
631
+ "access" : "noaccess",
632
+ "description" :
633
+ """A unique index value that uniquely identifies a
634
+ particular Fabric.
635
+
636
+ In a Fabric conformant to FC-SW-4, multiple Virtual Fabrics
637
+ can operate within one (or more) physical infrastructures,
638
+ and this index value is used to uniquely identify a
639
+ particular (physical or virtual) Fabric within a physical
640
+ infrastructure.
641
+
642
+ In a Fabric conformant to versions earlier than FC-SW-4,
643
+ only a single Fabric could operate within a physical
644
+ infrastructure, and thus, the value of this Fabric Index
645
+ was defined to always be 1.""",
646
+ }, # column
647
+ "t11FcsDiscoveryStatus" : {
648
+ "nodetype" : "column",
649
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
650
+ "oid" : "1.3.6.1.2.1.162.1.1.2.1.2",
651
+ "status" : "current",
652
+ "syntax" : {
653
+ "type" : {
654
+ "basetype" : "Enumeration",
655
+ "inProgress" : {
656
+ "nodetype" : "namednumber",
657
+ "number" : "1"
658
+ },
659
+ "completed" : {
660
+ "nodetype" : "namednumber",
661
+ "number" : "2"
662
+ },
663
+ "localOnly" : {
664
+ "nodetype" : "namednumber",
665
+ "number" : "3"
666
+ },
667
+ },
668
+ },
669
+ "access" : "readwrite",
670
+ "description" :
671
+ """The status of the discovery for the particular Fabric.
672
+
673
+ Initially when the switch comes up, all instances of this
674
+ object have the value: 'localOnly', and the database
675
+ contains only local information, i.e., no information
676
+ discovered via the Fabric Configuration Server protocol
677
+ specified in FC-GS-5.
678
+
679
+ If t11FcsFabricDiscoveryStart is set to 'start' for a
680
+ range of Fabrics that includes this Fabric, then the
681
+ value of this object transitions to 'inProgress'. When
682
+ the discovery completes, this object transitions to
683
+ 'completed', and the data is cached for the minimum
684
+ interval of time specified by
685
+ t11FcsFabricDiscoveryTimeOut. After this interval has
686
+ been exceeded, the data may be lost, in which case, the
687
+ value of this object changes to 'localOnly'.
688
+
689
+ This object cannot be set via SNMP to any value other
690
+ than 'localOnly'. If this object is set (via SNMP) to
691
+ 'localOnly', the cached data for the Fabric is discarded
692
+ immediately, and if a discovery initiated from this
693
+ switch was in progress for this Fabric, then that
694
+ discovery is aborted.""",
695
+ }, # column
696
+ "t11FcsDiscoveryCompleteTime" : {
697
+ "nodetype" : "column",
698
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
699
+ "oid" : "1.3.6.1.2.1.162.1.1.2.1.3",
700
+ "status" : "current",
701
+ "syntax" : {
702
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
703
+ },
704
+ "access" : "readonly",
705
+ "description" :
706
+ """This object contains the value of sysUpTime at which
707
+ discovery was most recently completed or aborted on this
708
+ Fabric. This object contains the value of zero before
709
+ the first discovery on this Fabric.""",
710
+ }, # column
711
+ "t11FcsDiscoveredConfig" : {
712
+ "nodetype" : "node",
713
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
714
+ "oid" : "1.3.6.1.2.1.162.1.2",
715
+ }, # node
716
+ "t11FcsIeTable" : {
717
+ "nodetype" : "table",
718
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
719
+ "oid" : "1.3.6.1.2.1.162.1.2.1",
720
+ "status" : "current",
721
+ "description" :
722
+ """A table of Interconnect Elements. Interconnect
723
+ Elements (IEs) are switches, hubs, bridges etc.
724
+
725
+ By default, the Fabric Configuration Server will
726
+ maintain detailed information pertaining only to
727
+ local resources. As far as discovered topology is
728
+ concerned, only the IE name, type, and Domain ID
729
+ information will be maintained. If a discovery
730
+ cycle is triggered on a set of Fabrics, this table
731
+ along with the Port and Platform tables will be
732
+ populated with the discovered information. The
733
+ discovered data will be retained in this table for
734
+ at least t11FcsFabricDiscoveryTimeOut seconds after
735
+ the completion of its discovery or until the
736
+ discovered data is invalidated.""",
737
+ }, # table
738
+ "t11FcsIeEntry" : {
739
+ "nodetype" : "row",
740
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
741
+ "oid" : "1.3.6.1.2.1.162.1.2.1.1",
742
+ "status" : "current",
743
+ "linkage" : [
744
+ "fcmInstanceIndex",
745
+ "fcmSwitchIndex",
746
+ "t11FcsFabricIndex",
747
+ "t11FcsIeName",
748
+ ],
749
+ "description" :
750
+ """Information about an Interconnect Element that was
751
+ discovered on a Fabric (identified by t11FcsFabricIndex),
752
+ by a switch (identified by fcmInstanceIndex and
753
+ fcmSwitchIndex).""",
754
+ "reference" :
755
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
756
+ FC-GS-5, section 6.2.3.2.""",
757
+ }, # row
758
+ "t11FcsIeName" : {
759
+ "nodetype" : "column",
760
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
761
+ "oid" : "1.3.6.1.2.1.162.1.2.1.1.1",
762
+ "status" : "current",
763
+ "syntax" : {
764
+ "type" : {
765
+ "basetype" : "OctetString",
766
+ "parent module" : {
767
+ "name" : "FC-MGMT-MIB",
768
+ "type" : "FcNameIdOrZero",
769
+ },
770
+ "ranges" : [
771
+ {
772
+ "min" : "8",
773
+ "max" : "8"
774
+ },
775
+ {
776
+ "min" : "16",
777
+ "max" : "16"
778
+ },
779
+ ],
780
+ "range" : {
781
+ "min" : "8",
782
+ "max" : "16"
783
+ },
784
+ },
785
+ },
786
+ "access" : "noaccess",
787
+ "description" :
788
+ """The WWN of an Interconnect Element. This object
789
+ uniquely identifies an Interconnect Element on a
790
+ Fabric. If the IE is a switch, then this object
791
+ is the Switch_Name (WWN) of the switch.""",
792
+ "reference" :
793
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
794
+ FC-GS-5, section 6.2.3.2.1.""",
795
+ }, # column
796
+ "t11FcsIeType" : {
797
+ "nodetype" : "column",
798
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
799
+ "oid" : "1.3.6.1.2.1.162.1.2.1.1.2",
800
+ "status" : "current",
801
+ "syntax" : {
802
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcIeType"},
803
+ },
804
+ "access" : "readonly",
805
+ "description" :
806
+ """The type of this Interconnect Element.""",
807
+ "reference" :
808
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
809
+ FC-GS-5, section 6.2.3.2.2""",
810
+ }, # column
811
+ "t11FcsIeDomainId" : {
812
+ "nodetype" : "column",
813
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
814
+ "oid" : "1.3.6.1.2.1.162.1.2.1.1.3",
815
+ "status" : "current",
816
+ "syntax" : {
817
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
818
+ },
819
+ "access" : "readonly",
820
+ "description" :
821
+ """The Domain ID of this Interconnect Element.""",
822
+ "reference" :
823
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
824
+ FC-GS-5, section 6.2.3.2.3.""",
825
+ }, # column
826
+ "t11FcsIeMgmtId" : {
827
+ "nodetype" : "column",
828
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
829
+ "oid" : "1.3.6.1.2.1.162.1.2.1.1.4",
830
+ "status" : "current",
831
+ "syntax" : {
832
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcAddressIdOrZero"},
833
+ },
834
+ "access" : "readonly",
835
+ "default" : "0x000000",
836
+ "description" :
837
+ """The management identifier of this Interconnect Element.
838
+ If the Interconnect Element is a switch, this object will
839
+ be the Domain Controller identifier of the switch. When
840
+ the value of the identifier is unknown, this object
841
+ contains the all-zeros value: x'00 00 00'.""",
842
+ "reference" :
843
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
844
+ FC-GS-5, section 6.2.3.2.4.""",
845
+ }, # column
846
+ "t11FcsIeFabricName" : {
847
+ "nodetype" : "column",
848
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
849
+ "oid" : "1.3.6.1.2.1.162.1.2.1.1.5",
850
+ "status" : "current",
851
+ "syntax" : {
852
+ "type" : {
853
+ "basetype" : "OctetString",
854
+ "parent module" : {
855
+ "name" : "FC-MGMT-MIB",
856
+ "type" : "FcNameIdOrZero",
857
+ },
858
+ "ranges" : [
859
+ {
860
+ "min" : "8",
861
+ "max" : "8"
862
+ },
863
+ {
864
+ "min" : "16",
865
+ "max" : "16"
866
+ },
867
+ ],
868
+ "range" : {
869
+ "min" : "8",
870
+ "max" : "16"
871
+ },
872
+ },
873
+ },
874
+ "access" : "readonly",
875
+ "default" : "0x0000000000000000",
876
+ "description" :
877
+ """The Fabric_Name (WWN) of this Interconnect Element.
878
+ When the Fabric_Name is unknown, this object contains
879
+ the all-zeros value: x'00 00 00 00 00 00 00 00'.""",
880
+ "reference" :
881
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
882
+ FC-GS-5, section 6.2.3.2.5.""",
883
+ }, # column
884
+ "t11FcsIeLogicalName" : {
885
+ "nodetype" : "column",
886
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
887
+ "oid" : "1.3.6.1.2.1.162.1.2.1.1.6",
888
+ "status" : "current",
889
+ "syntax" : {
890
+ "type" : {
891
+ "basetype" : "OctetString",
892
+ "ranges" : [
893
+ {
894
+ "min" : "0",
895
+ "max" : "255"
896
+ },
897
+ ],
898
+ "range" : {
899
+ "min" : "0",
900
+ "max" : "255"
901
+ },
902
+ },
903
+ },
904
+ "access" : "readonly",
905
+ "description" :
906
+ """The logical name of this Interconnect Element.
907
+ When the logical name is unknown, this object contains
908
+ the zero-length string.""",
909
+ "reference" :
910
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
911
+ FC-GS-5, section 6.2.3.2.6.""",
912
+ }, # column
913
+ "t11FcsIeMgmtAddrListIndex" : {
914
+ "nodetype" : "column",
915
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
916
+ "oid" : "1.3.6.1.2.1.162.1.2.1.1.7",
917
+ "status" : "current",
918
+ "syntax" : {
919
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcListIndexPointerOrZero"},
920
+ },
921
+ "access" : "readonly",
922
+ "description" :
923
+ """The management address list for this Interconnect Element.
924
+ This object points to an entry in the
925
+ t11FcsMgmtAddrListTable.""",
926
+ "reference" :
927
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
928
+ FC-GS-5, section 6.2.3.2.7.""",
929
+ }, # column
930
+ "t11FcsIeInfoList" : {
931
+ "nodetype" : "column",
932
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
933
+ "oid" : "1.3.6.1.2.1.162.1.2.1.1.8",
934
+ "status" : "current",
935
+ "syntax" : {
936
+ "type" : {
937
+ "basetype" : "OctetString",
938
+ "ranges" : [
939
+ {
940
+ "min" : "0",
941
+ "max" : "252"
942
+ },
943
+ ],
944
+ "range" : {
945
+ "min" : "0",
946
+ "max" : "252"
947
+ },
948
+ },
949
+ },
950
+ "access" : "readonly",
951
+ "description" :
952
+ """The information list for this Interconnect Element.
953
+
954
+ The value of this object is formatted as specified in
955
+ FC-GS-5, i.e., it has the following substrings in order:
956
+ vendor name, model name/number, and release code/level,
957
+ followed by zero or more substrings of vendor-specific
958
+ information. Each substring is terminated with a byte
959
+ containing a null value (x'00').""",
960
+ "reference" :
961
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
962
+ FC-GS-5, section 6.2.3.2.8""",
963
+ }, # column
964
+ "t11FcsMgmtAddrListTable" : {
965
+ "nodetype" : "table",
966
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
967
+ "oid" : "1.3.6.1.2.1.162.1.2.2",
968
+ "status" : "current",
969
+ "description" :
970
+ """This table contains the set of management address lists
971
+ that are currently referenced by any instance of the
972
+ t11FcsIeMgmtAddrListIndex or
973
+ t11FcsPlatformMgmtAddrListIndex objects.""",
974
+ }, # table
975
+ "t11FcsMgmtAddrListEntry" : {
976
+ "nodetype" : "row",
977
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
978
+ "oid" : "1.3.6.1.2.1.162.1.2.2.1",
979
+ "status" : "current",
980
+ "linkage" : [
981
+ "fcmInstanceIndex",
982
+ "fcmSwitchIndex",
983
+ "t11FcsMgmtAddrListIndex",
984
+ "t11FcsMgmtAddrIndex",
985
+ ],
986
+ "description" :
987
+ """Information about one management address in a
988
+ management address list, which is known to a
989
+ switch (identified by fcmInstanceIndex and
990
+ fcmSwitchIndex).""",
991
+ }, # row
992
+ "t11FcsMgmtAddrListIndex" : {
993
+ "nodetype" : "column",
994
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
995
+ "oid" : "1.3.6.1.2.1.162.1.2.2.1.1",
996
+ "status" : "current",
997
+ "syntax" : {
998
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcListIndex"},
999
+ },
1000
+ "access" : "noaccess",
1001
+ "description" :
1002
+ """The index value of the management address list.""",
1003
+ }, # column
1004
+ "t11FcsMgmtAddrIndex" : {
1005
+ "nodetype" : "column",
1006
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1007
+ "oid" : "1.3.6.1.2.1.162.1.2.2.1.2",
1008
+ "status" : "current",
1009
+ "syntax" : {
1010
+ "type" : {
1011
+ "basetype" : "Unsigned32",
1012
+ "ranges" : [
1013
+ {
1014
+ "min" : "1",
1015
+ "max" : "4294967295"
1016
+ },
1017
+ ],
1018
+ "range" : {
1019
+ "min" : "1",
1020
+ "max" : "4294967295"
1021
+ },
1022
+ },
1023
+ },
1024
+ "access" : "noaccess",
1025
+ "description" :
1026
+ """An integer value to distinguish different
1027
+ management addresses in the same list.""",
1028
+ }, # column
1029
+ "t11FcsMgmtAddr" : {
1030
+ "nodetype" : "column",
1031
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1032
+ "oid" : "1.3.6.1.2.1.162.1.2.2.1.3",
1033
+ "status" : "current",
1034
+ "syntax" : {
1035
+ "type" : { "module" :"NETWORK-SERVICES-MIB", "name" : "URLString"},
1036
+ },
1037
+ "access" : "readonly",
1038
+ "description" :
1039
+ """The management address of this entry.
1040
+
1041
+ The format of this object is a Uniform Resource
1042
+ Locator (URL), e.g., for SNMP, see RFC 4088.""",
1043
+ "reference" :
1044
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1045
+ FC-GS-5, section 6.2.3.2.7""",
1046
+ }, # column
1047
+ "t11FcsPortTable" : {
1048
+ "nodetype" : "table",
1049
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1050
+ "oid" : "1.3.6.1.2.1.162.1.2.4",
1051
+ "status" : "current",
1052
+ "description" :
1053
+ """This table contains information about the ports of IEs.""",
1054
+ }, # table
1055
+ "t11FcsPortEntry" : {
1056
+ "nodetype" : "row",
1057
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1058
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1",
1059
+ "status" : "current",
1060
+ "linkage" : [
1061
+ "fcmInstanceIndex",
1062
+ "fcmSwitchIndex",
1063
+ "t11FcsFabricIndex",
1064
+ "t11FcsIeName",
1065
+ "t11FcsPortName",
1066
+ ],
1067
+ "description" :
1068
+ """Information about a particular port of an Interconnect
1069
+ Element (identified by t11FcsIeName). The port is
1070
+ connected to a Fabric (identified by t11FcsFabricIndex)
1071
+ and known to a switch (identified by fcmInstanceIndex
1072
+ and fcmSwitchIndex).""",
1073
+ }, # row
1074
+ "t11FcsPortName" : {
1075
+ "nodetype" : "column",
1076
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1077
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.1",
1078
+ "status" : "current",
1079
+ "syntax" : {
1080
+ "type" : {
1081
+ "basetype" : "OctetString",
1082
+ "parent module" : {
1083
+ "name" : "FC-MGMT-MIB",
1084
+ "type" : "FcNameIdOrZero",
1085
+ },
1086
+ "ranges" : [
1087
+ {
1088
+ "min" : "8",
1089
+ "max" : "8"
1090
+ },
1091
+ {
1092
+ "min" : "16",
1093
+ "max" : "16"
1094
+ },
1095
+ ],
1096
+ "range" : {
1097
+ "min" : "8",
1098
+ "max" : "16"
1099
+ },
1100
+ },
1101
+ },
1102
+ "access" : "noaccess",
1103
+ "description" :
1104
+ """The Port_Name (WWN) of the port for which this row
1105
+ contains information.""",
1106
+ "reference" :
1107
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1108
+ FC-GS-5, section 6.2.3.3.1.""",
1109
+ }, # column
1110
+ "t11FcsPortType" : {
1111
+ "nodetype" : "column",
1112
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1113
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.2",
1114
+ "status" : "current",
1115
+ "syntax" : {
1116
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcPortType"},
1117
+ },
1118
+ "access" : "readonly",
1119
+ "description" :
1120
+ """The Port Type of this port.""",
1121
+ "reference" :
1122
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1123
+ FC-GS-5, section 6.2.3.3.2.""",
1124
+ }, # column
1125
+ "t11FcsPortTxType" : {
1126
+ "nodetype" : "column",
1127
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1128
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.3",
1129
+ "status" : "current",
1130
+ "syntax" : {
1131
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcPortTxType"},
1132
+ },
1133
+ "access" : "readonly",
1134
+ "description" :
1135
+ """The Port TX Type of this port.""",
1136
+ "reference" :
1137
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1138
+ FC-GS-5, section 6.2.3.3.3.""",
1139
+ }, # column
1140
+ "t11FcsPortModuleType" : {
1141
+ "nodetype" : "column",
1142
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1143
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.4",
1144
+ "status" : "current",
1145
+ "syntax" : {
1146
+ "type" : {
1147
+ "basetype" : "Unsigned32",
1148
+ "ranges" : [
1149
+ {
1150
+ "min" : "0",
1151
+ "max" : "255"
1152
+ },
1153
+ ],
1154
+ "range" : {
1155
+ "min" : "0",
1156
+ "max" : "255"
1157
+ },
1158
+ },
1159
+ },
1160
+ "access" : "readonly",
1161
+ "description" :
1162
+ """The port module type of this port.""",
1163
+ "reference" :
1164
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1165
+ FC-GS-5, section 6.2.3.3.4.""",
1166
+ }, # column
1167
+ "t11FcsPortPhyPortNum" : {
1168
+ "nodetype" : "column",
1169
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1170
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.5",
1171
+ "status" : "current",
1172
+ "syntax" : {
1173
+ "type" : { "module" :"", "name" : "Unsigned32"},
1174
+ },
1175
+ "access" : "readonly",
1176
+ "description" :
1177
+ """The physical number for this port. FC-GS-5 says that
1178
+ the contents of this field, which are carried in a field
1179
+ with a size of 4 bytes, are not to be restricted due to
1180
+ vendor-specific methods for numbering physical ports.""",
1181
+ "reference" :
1182
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1183
+ FC-GS-5, section 6.2.3.3.5.""",
1184
+ }, # column
1185
+ "t11FcsPortAttachPortNameIndex" : {
1186
+ "nodetype" : "column",
1187
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1188
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.6",
1189
+ "status" : "current",
1190
+ "syntax" : {
1191
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcListIndexPointerOrZero"},
1192
+ },
1193
+ "access" : "readonly",
1194
+ "description" :
1195
+ """The attached port name list for this port. This object
1196
+ points to an entry in the t11FcsAttachPortNameListTable.""",
1197
+ "reference" :
1198
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1199
+ FC-GS-5, section 6.2.3.3.6.""",
1200
+ }, # column
1201
+ "t11FcsPortState" : {
1202
+ "nodetype" : "column",
1203
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1204
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.7",
1205
+ "status" : "current",
1206
+ "syntax" : {
1207
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcPortState"},
1208
+ },
1209
+ "access" : "readonly",
1210
+ "description" :
1211
+ """The state of this port.""",
1212
+ "reference" :
1213
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1214
+ FC-GS-5, section 6.2.3.3.7.""",
1215
+ }, # column
1216
+ "t11FcsPortSpeedCapab" : {
1217
+ "nodetype" : "column",
1218
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1219
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.8",
1220
+ "status" : "current",
1221
+ "syntax" : {
1222
+ "type" : {
1223
+ "basetype" : "OctetString",
1224
+ "ranges" : [
1225
+ {
1226
+ "min" : "2",
1227
+ "max" : "2"
1228
+ },
1229
+ ],
1230
+ "range" : {
1231
+ "min" : "2",
1232
+ "max" : "2"
1233
+ },
1234
+ },
1235
+ },
1236
+ "access" : "readonly",
1237
+ "description" :
1238
+ """The port speed capabilities of this port. The two octets
1239
+ of the value are formatted as described in FC-GS-5.""",
1240
+ "reference" :
1241
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1242
+ FC-GS-5, section 6.2.3.3.8.""",
1243
+ }, # column
1244
+ "t11FcsPortOperSpeed" : {
1245
+ "nodetype" : "column",
1246
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1247
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.9",
1248
+ "status" : "current",
1249
+ "syntax" : {
1250
+ "type" : {
1251
+ "basetype" : "OctetString",
1252
+ "ranges" : [
1253
+ {
1254
+ "min" : "2",
1255
+ "max" : "2"
1256
+ },
1257
+ ],
1258
+ "range" : {
1259
+ "min" : "2",
1260
+ "max" : "2"
1261
+ },
1262
+ },
1263
+ },
1264
+ "access" : "readonly",
1265
+ "description" :
1266
+ """The operating speed of this port. The two octets
1267
+ of the value are formatted as described in FC-GS-5.""",
1268
+ "reference" :
1269
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1270
+ FC-GS-5, section 6.2.3.3.9.""",
1271
+ }, # column
1272
+ "t11FcsPortZoningEnfStatus" : {
1273
+ "nodetype" : "column",
1274
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1275
+ "oid" : "1.3.6.1.2.1.162.1.2.4.1.10",
1276
+ "status" : "current",
1277
+ "syntax" : {
1278
+ "type" : {
1279
+ "basetype" : "OctetString",
1280
+ "ranges" : [
1281
+ {
1282
+ "min" : "12",
1283
+ "max" : "12"
1284
+ },
1285
+ ],
1286
+ "range" : {
1287
+ "min" : "12",
1288
+ "max" : "12"
1289
+ },
1290
+ },
1291
+ },
1292
+ "access" : "readonly",
1293
+ "description" :
1294
+ """The zoning enforcement status of this port. The 12
1295
+ octets of the value are formatted as described in FC-GS-5.""",
1296
+ "reference" :
1297
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1298
+ FC-GS-5, section 6.2.3.3.10.""",
1299
+ }, # column
1300
+ "t11FcsAttachPortNameListTable" : {
1301
+ "nodetype" : "table",
1302
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1303
+ "oid" : "1.3.6.1.2.1.162.1.2.5",
1304
+ "status" : "current",
1305
+ "description" :
1306
+ """This table contains all the lists of attach port
1307
+ names.""",
1308
+ "reference" :
1309
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1310
+ FC-GS-5, section 6.2.3.3.6""",
1311
+ }, # table
1312
+ "t11FcsAttachPortNameListEntry" : {
1313
+ "nodetype" : "row",
1314
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1315
+ "oid" : "1.3.6.1.2.1.162.1.2.5.1",
1316
+ "status" : "current",
1317
+ "linkage" : [
1318
+ "fcmInstanceIndex",
1319
+ "fcmSwitchIndex",
1320
+ "t11FcsAttachPortNameListIndex",
1321
+ "t11FcsAttachPortName",
1322
+ ],
1323
+ "description" :
1324
+ """Information about the name of a particular attached port,
1325
+ which is known to a switch (identified by fcmInstanceIndex
1326
+ and fcmSwitchIndex).""",
1327
+ }, # row
1328
+ "t11FcsAttachPortNameListIndex" : {
1329
+ "nodetype" : "column",
1330
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1331
+ "oid" : "1.3.6.1.2.1.162.1.2.5.1.1",
1332
+ "status" : "current",
1333
+ "syntax" : {
1334
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcListIndex"},
1335
+ },
1336
+ "access" : "noaccess",
1337
+ "description" :
1338
+ """The index value of the attach port name list.""",
1339
+ }, # column
1340
+ "t11FcsAttachPortName" : {
1341
+ "nodetype" : "column",
1342
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1343
+ "oid" : "1.3.6.1.2.1.162.1.2.5.1.2",
1344
+ "status" : "current",
1345
+ "syntax" : {
1346
+ "type" : {
1347
+ "basetype" : "OctetString",
1348
+ "ranges" : [
1349
+ {
1350
+ "min" : "12",
1351
+ "max" : "12"
1352
+ },
1353
+ ],
1354
+ "range" : {
1355
+ "min" : "12",
1356
+ "max" : "12"
1357
+ },
1358
+ },
1359
+ },
1360
+ "access" : "readonly",
1361
+ "description" :
1362
+ """The attached port name. Zero or more of these names
1363
+ may be associated with a port object.
1364
+ The first 8 bytes of this object contain the WWN of
1365
+ the port followed by 2 reserved bytes. Following
1366
+ this is one byte of Port flags and one byte of
1367
+ Port type, as described in FC-GS-5.""",
1368
+ "reference" :
1369
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1370
+ FC-GS-5, section 6.2.3.3.6""",
1371
+ }, # column
1372
+ "t11FcsPlatformTable" : {
1373
+ "nodetype" : "table",
1374
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1375
+ "oid" : "1.3.6.1.2.1.162.1.2.6",
1376
+ "status" : "current",
1377
+ "description" :
1378
+ """This table contains information on platforms.
1379
+
1380
+ By default, this table only contains local (e.g., for a
1381
+ local switch) information. If a discovery is triggered,
1382
+ this table will also contain information gathered by the
1383
+ discovery process. The discovered information is retained
1384
+ in this table for at least t11FcsFabricDiscoveryTimeOut
1385
+ seconds after the completion of its discovery or until
1386
+ the discovered cache is invalidated.""",
1387
+ "reference" :
1388
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1389
+ FC-GS-5, section 6.2.3.4""",
1390
+ }, # table
1391
+ "t11FcsPlatformEntry" : {
1392
+ "nodetype" : "row",
1393
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1394
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1",
1395
+ "status" : "current",
1396
+ "linkage" : [
1397
+ "fcmInstanceIndex",
1398
+ "fcmSwitchIndex",
1399
+ "t11FcsFabricIndex",
1400
+ "t11FcsPlatformIndex",
1401
+ ],
1402
+ "description" :
1403
+ """Information about a particular platform, which is
1404
+ known to a switch (identified by fcmInstanceIndex and
1405
+ fcmSwitchIndex).
1406
+
1407
+ A platform can contain multiple nodes. Information on
1408
+ nodes is contained in the t11FcsNodeNameListTable. The
1409
+ t11FcsPlatformNodeNameListIndex object in this table
1410
+
1411
+
1412
+
1413
+ points to the list of nodes contained in this platform.
1414
+ Similarly, the t11FcsPlatformMgmtAddrListIndex object in
1415
+ this table points to the list of management addresses
1416
+ associated with this platform.""",
1417
+ }, # row
1418
+ "t11FcsPlatformIndex" : {
1419
+ "nodetype" : "column",
1420
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1421
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.1",
1422
+ "status" : "current",
1423
+ "syntax" : {
1424
+ "type" : {
1425
+ "basetype" : "Unsigned32",
1426
+ "ranges" : [
1427
+ {
1428
+ "min" : "1",
1429
+ "max" : "4294967295"
1430
+ },
1431
+ ],
1432
+ "range" : {
1433
+ "min" : "1",
1434
+ "max" : "4294967295"
1435
+ },
1436
+ },
1437
+ },
1438
+ "access" : "noaccess",
1439
+ "description" :
1440
+ """An integer value to distinguish one platform from
1441
+ other platforms in the same Fabric.""",
1442
+ }, # column
1443
+ "t11FcsPlatformName" : {
1444
+ "nodetype" : "column",
1445
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1446
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.2",
1447
+ "status" : "current",
1448
+ "syntax" : {
1449
+ "type" : {
1450
+ "basetype" : "OctetString",
1451
+ "ranges" : [
1452
+ {
1453
+ "min" : "1",
1454
+ "max" : "255"
1455
+ },
1456
+ ],
1457
+ "range" : {
1458
+ "min" : "1",
1459
+ "max" : "255"
1460
+ },
1461
+ },
1462
+ },
1463
+ "access" : "readonly",
1464
+ "description" :
1465
+ """The name of this platform. The last byte of the value
1466
+ indicates the format of the name (even if the name itself
1467
+ is the zero-length string) as specified in FC-GS-5.""",
1468
+ "reference" :
1469
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1470
+ FC-GS-5, section 6.2.3.4.2""",
1471
+ }, # column
1472
+ "t11FcsPlatformType" : {
1473
+ "nodetype" : "column",
1474
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1475
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.3",
1476
+ "status" : "current",
1477
+ "syntax" : {
1478
+ "type" : {
1479
+ "basetype" : "OctetString",
1480
+ "ranges" : [
1481
+ {
1482
+ "min" : "4",
1483
+ "max" : "4"
1484
+ },
1485
+ ],
1486
+ "range" : {
1487
+ "min" : "4",
1488
+ "max" : "4"
1489
+ },
1490
+ },
1491
+ },
1492
+ "access" : "readonly",
1493
+ "description" :
1494
+ """The type(s) of this platform, encoded in 4 bytes as
1495
+ specified in FC-GS-5.""",
1496
+ "reference" :
1497
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1498
+ FC-GS-5, section 6.2.3.4.3""",
1499
+ }, # column
1500
+ "t11FcsPlatformNodeNameListIndex" : {
1501
+ "nodetype" : "column",
1502
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1503
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.4",
1504
+ "status" : "current",
1505
+ "syntax" : {
1506
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcListIndexPointerOrZero"},
1507
+ },
1508
+ "access" : "readonly",
1509
+ "description" :
1510
+ """The list of nodes for this platform. This object points
1511
+ to an entry in the t11FcsNodeNameListTable.""",
1512
+ "reference" :
1513
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1514
+ FC-GS-5, section 6.2.3.4.6""",
1515
+ }, # column
1516
+ "t11FcsPlatformMgmtAddrListIndex" : {
1517
+ "nodetype" : "column",
1518
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1519
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.5",
1520
+ "status" : "current",
1521
+ "syntax" : {
1522
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcListIndexPointerOrZero"},
1523
+ },
1524
+ "access" : "readonly",
1525
+ "description" :
1526
+ """The list of management addresses for this platform. This
1527
+ object points to an entry in the t11FcsMgmtAddrListTable.""",
1528
+ "reference" :
1529
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1530
+ FC-GS-5, section 6.2.3.4.7""",
1531
+ }, # column
1532
+ "t11FcsPlatformVendorId" : {
1533
+ "nodetype" : "column",
1534
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1535
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.6",
1536
+ "status" : "current",
1537
+ "syntax" : {
1538
+ "type" : {
1539
+ "basetype" : "OctetString",
1540
+ "parent module" : {
1541
+ "name" : "SNMP-FRAMEWORK-MIB",
1542
+ "type" : "SnmpAdminString",
1543
+ },
1544
+ "ranges" : [
1545
+ {
1546
+ "min" : "0",
1547
+ "max" : "0"
1548
+ },
1549
+ {
1550
+ "min" : "12",
1551
+ "max" : "12"
1552
+ },
1553
+ ],
1554
+ "range" : {
1555
+ "min" : "0",
1556
+ "max" : "12"
1557
+ },
1558
+ },
1559
+ },
1560
+ "access" : "readonly",
1561
+ "description" :
1562
+ """The identifier of the vendor of this platform, in the
1563
+ format specified in FC-GS-5.""",
1564
+ "reference" :
1565
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1566
+ FC-GS-5, section 6.2.3.4.5""",
1567
+ }, # column
1568
+ "t11FcsPlatformProductId" : {
1569
+ "nodetype" : "column",
1570
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1571
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.7",
1572
+ "status" : "current",
1573
+ "syntax" : {
1574
+ "type" : {
1575
+ "basetype" : "OctetString",
1576
+ "parent module" : {
1577
+ "name" : "SNMP-FRAMEWORK-MIB",
1578
+ "type" : "SnmpAdminString",
1579
+ },
1580
+ "ranges" : [
1581
+ {
1582
+ "min" : "0",
1583
+ "max" : "0"
1584
+ },
1585
+ {
1586
+ "min" : "20",
1587
+ "max" : "20"
1588
+ },
1589
+ ],
1590
+ "range" : {
1591
+ "min" : "0",
1592
+ "max" : "20"
1593
+ },
1594
+ },
1595
+ },
1596
+ "access" : "readonly",
1597
+ "description" :
1598
+ """The vendor's product and/or model identifier for this
1599
+ platform, in the format specified in FC-GS-5.""",
1600
+ "reference" :
1601
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1602
+ FC-GS-5, section 6.2.3.4.5""",
1603
+ }, # column
1604
+ "t11FcsPlatformProductRevLevel" : {
1605
+ "nodetype" : "column",
1606
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1607
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.8",
1608
+ "status" : "current",
1609
+ "syntax" : {
1610
+ "type" : {
1611
+ "basetype" : "OctetString",
1612
+ "parent module" : {
1613
+ "name" : "SNMP-FRAMEWORK-MIB",
1614
+ "type" : "SnmpAdminString",
1615
+ },
1616
+ "ranges" : [
1617
+ {
1618
+ "min" : "0",
1619
+ "max" : "0"
1620
+ },
1621
+ {
1622
+ "min" : "4",
1623
+ "max" : "32"
1624
+ },
1625
+ ],
1626
+ "range" : {
1627
+ "min" : "0",
1628
+ "max" : "32"
1629
+ },
1630
+ },
1631
+ },
1632
+ "access" : "readonly",
1633
+ "description" :
1634
+ """The product revision level for this platform, in the
1635
+ format specified in FC-GS-5.""",
1636
+ "reference" :
1637
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1638
+ FC-GS-5, section 6.2.3.4.5""",
1639
+ }, # column
1640
+ "t11FcsPlatformDescription" : {
1641
+ "nodetype" : "column",
1642
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1643
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.9",
1644
+ "status" : "current",
1645
+ "syntax" : {
1646
+ "type" : {
1647
+ "basetype" : "OctetString",
1648
+ "parent module" : {
1649
+ "name" : "SNMP-FRAMEWORK-MIB",
1650
+ "type" : "SnmpAdminString",
1651
+ },
1652
+ "ranges" : [
1653
+ {
1654
+ "min" : "0",
1655
+ "max" : "0"
1656
+ },
1657
+ {
1658
+ "min" : "4",
1659
+ "max" : "128"
1660
+ },
1661
+ ],
1662
+ "range" : {
1663
+ "min" : "0",
1664
+ "max" : "128"
1665
+ },
1666
+ },
1667
+ },
1668
+ "access" : "readonly",
1669
+ "description" :
1670
+ """The description of this platform, in the
1671
+ format specified in FC-GS-5. This value should
1672
+ include the full name and version identification of the
1673
+ platform's hardware type and software operating system.""",
1674
+ "reference" :
1675
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1676
+ FC-GS-5, section 6.2.3.4.10""",
1677
+ }, # column
1678
+ "t11FcsPlatformLabel" : {
1679
+ "nodetype" : "column",
1680
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1681
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.10",
1682
+ "status" : "current",
1683
+ "syntax" : {
1684
+ "type" : {
1685
+ "basetype" : "OctetString",
1686
+ "parent module" : {
1687
+ "name" : "SNMP-FRAMEWORK-MIB",
1688
+ "type" : "SnmpAdminString",
1689
+ },
1690
+ "ranges" : [
1691
+ {
1692
+ "min" : "0",
1693
+ "max" : "0"
1694
+ },
1695
+ {
1696
+ "min" : "4",
1697
+ "max" : "64"
1698
+ },
1699
+ ],
1700
+ "range" : {
1701
+ "min" : "0",
1702
+ "max" : "64"
1703
+ },
1704
+ },
1705
+ },
1706
+ "access" : "readonly",
1707
+ "description" :
1708
+ """An administratively assigned symbolic name for the
1709
+ platform, in the format specified in FC-GS-5.""",
1710
+ "reference" :
1711
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1712
+ FC-GS-5, section 6.2.3.4.11""",
1713
+ }, # column
1714
+ "t11FcsPlatformLocation" : {
1715
+ "nodetype" : "column",
1716
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1717
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.11",
1718
+ "status" : "current",
1719
+ "syntax" : {
1720
+ "type" : {
1721
+ "basetype" : "OctetString",
1722
+ "parent module" : {
1723
+ "name" : "SNMP-FRAMEWORK-MIB",
1724
+ "type" : "SnmpAdminString",
1725
+ },
1726
+ "ranges" : [
1727
+ {
1728
+ "min" : "0",
1729
+ "max" : "0"
1730
+ },
1731
+ {
1732
+ "min" : "4",
1733
+ "max" : "128"
1734
+ },
1735
+ ],
1736
+ "range" : {
1737
+ "min" : "0",
1738
+ "max" : "128"
1739
+ },
1740
+ },
1741
+ },
1742
+ "access" : "readonly",
1743
+ "description" :
1744
+ """The physical location of the platform, in the format
1745
+ specified in FC-GS-5 (e.g., 'telephone closet, 3rd floor').""",
1746
+ "reference" :
1747
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1748
+ FC-GS-5, section 6.2.3.4.12""",
1749
+ }, # column
1750
+ "t11FcsPlatformSystemID" : {
1751
+ "nodetype" : "column",
1752
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1753
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.12",
1754
+ "status" : "current",
1755
+ "syntax" : {
1756
+ "type" : {
1757
+ "basetype" : "OctetString",
1758
+ "parent module" : {
1759
+ "name" : "SNMP-FRAMEWORK-MIB",
1760
+ "type" : "SnmpAdminString",
1761
+ },
1762
+ "ranges" : [
1763
+ {
1764
+ "min" : "0",
1765
+ "max" : "0"
1766
+ },
1767
+ {
1768
+ "min" : "4",
1769
+ "max" : "64"
1770
+ },
1771
+ ],
1772
+ "range" : {
1773
+ "min" : "0",
1774
+ "max" : "64"
1775
+ },
1776
+ },
1777
+ },
1778
+ "access" : "readonly",
1779
+ "description" :
1780
+ """An identifier for a hosting system that this platform is
1781
+ associated with. This identifier is used to associate
1782
+ platforms of logical types (e.g., logical partitions) with
1783
+ a physical system.""",
1784
+ "reference" :
1785
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1786
+ FC-GS-5, section 6.2.3.4.5""",
1787
+ }, # column
1788
+ "t11FcsPlatformSysMgmtAddr" : {
1789
+ "nodetype" : "column",
1790
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1791
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.13",
1792
+ "status" : "current",
1793
+ "syntax" : {
1794
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcListIndexPointerOrZero"},
1795
+ },
1796
+ "access" : "readonly",
1797
+ "description" :
1798
+ """A list of management addresses for the platform.""",
1799
+ "reference" :
1800
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1801
+ FC-GS-5, sections 6.2.3.4.5 and 6.2.3.2.7.""",
1802
+ }, # column
1803
+ "t11FcsPlatformClusterId" : {
1804
+ "nodetype" : "column",
1805
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1806
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.14",
1807
+ "status" : "current",
1808
+ "syntax" : {
1809
+ "type" : {
1810
+ "basetype" : "OctetString",
1811
+ "parent module" : {
1812
+ "name" : "SNMP-FRAMEWORK-MIB",
1813
+ "type" : "SnmpAdminString",
1814
+ },
1815
+ "ranges" : [
1816
+ {
1817
+ "min" : "0",
1818
+ "max" : "0"
1819
+ },
1820
+ {
1821
+ "min" : "4",
1822
+ "max" : "64"
1823
+ },
1824
+ ],
1825
+ "range" : {
1826
+ "min" : "0",
1827
+ "max" : "64"
1828
+ },
1829
+ },
1830
+ },
1831
+ "access" : "readonly",
1832
+ "description" :
1833
+ """An identifier for a cluster that this platform is
1834
+ associated with, where a cluster is a set of independent
1835
+ platforms that are managed together to provide increased
1836
+ performance capabilities, failover, etc.""",
1837
+ "reference" :
1838
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1839
+ FC-GS-5, section 6.2.3.4.5""",
1840
+ }, # column
1841
+ "t11FcsPlatformClusterMgmtAddr" : {
1842
+ "nodetype" : "column",
1843
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1844
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.15",
1845
+ "status" : "current",
1846
+ "syntax" : {
1847
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcListIndexPointerOrZero"},
1848
+ },
1849
+ "access" : "readonly",
1850
+ "description" :
1851
+ """A list of management addresses for the cluster identified
1852
+ in the corresponding instance of t11FcsPlatformClusterId.""",
1853
+ "reference" :
1854
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1855
+ FC-GS-5, sections 6.2.3.4.5 and 6.2.3.2.7.""",
1856
+ }, # column
1857
+ "t11FcsPlatformFC4Types" : {
1858
+ "nodetype" : "column",
1859
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1860
+ "oid" : "1.3.6.1.2.1.162.1.2.6.1.16",
1861
+ "status" : "current",
1862
+ "syntax" : {
1863
+ "type" : {
1864
+ "basetype" : "OctetString",
1865
+ "ranges" : [
1866
+ {
1867
+ "min" : "0",
1868
+ "max" : "0"
1869
+ },
1870
+ {
1871
+ "min" : "32",
1872
+ "max" : "32"
1873
+ },
1874
+ ],
1875
+ "range" : {
1876
+ "min" : "0",
1877
+ "max" : "32"
1878
+ },
1879
+ },
1880
+ },
1881
+ "access" : "readonly",
1882
+ "description" :
1883
+ """The FC-4 types supported by this platform, formatted as
1884
+ a bit mask as specified in FC-GS-5. If this object
1885
+ contains the zero-length string, the types are unknown.""",
1886
+ "reference" :
1887
+ """ANSI INCITS 427-2007, Fibre Channel - Generic Services 5,
1888
+ FC-GS-5, section 6.2.3.4.5""",
1889
+ }, # column
1890
+ "t11FcsNodeNameListTable" : {
1891
+ "nodetype" : "table",
1892
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1893
+ "oid" : "1.3.6.1.2.1.162.1.2.7",
1894
+ "status" : "current",
1895
+ "description" :
1896
+ """This table contains all the lists of nodes.""",
1897
+ }, # table
1898
+ "t11FcsNodeNameListEntry" : {
1899
+ "nodetype" : "row",
1900
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1901
+ "oid" : "1.3.6.1.2.1.162.1.2.7.1",
1902
+ "status" : "current",
1903
+ "linkage" : [
1904
+ "fcmInstanceIndex",
1905
+ "fcmSwitchIndex",
1906
+ "t11FcsNodeNameListIndex",
1907
+ "t11FcsNodeName",
1908
+ ],
1909
+ "description" :
1910
+ """Information about a node, which is known to a
1911
+
1912
+
1913
+
1914
+ switch (identified by fcmInstanceIndex and
1915
+ fcmSwitchIndex).""",
1916
+ }, # row
1917
+ "t11FcsNodeNameListIndex" : {
1918
+ "nodetype" : "column",
1919
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1920
+ "oid" : "1.3.6.1.2.1.162.1.2.7.1.1",
1921
+ "status" : "current",
1922
+ "syntax" : {
1923
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcListIndex"},
1924
+ },
1925
+ "access" : "noaccess",
1926
+ "description" :
1927
+ """The index value of the node name list.""",
1928
+ }, # column
1929
+ "t11FcsNodeName" : {
1930
+ "nodetype" : "column",
1931
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1932
+ "oid" : "1.3.6.1.2.1.162.1.2.7.1.2",
1933
+ "status" : "current",
1934
+ "syntax" : {
1935
+ "type" : {
1936
+ "basetype" : "OctetString",
1937
+ "parent module" : {
1938
+ "name" : "FC-MGMT-MIB",
1939
+ "type" : "FcNameIdOrZero",
1940
+ },
1941
+ "ranges" : [
1942
+ {
1943
+ "min" : "8",
1944
+ "max" : "8"
1945
+ },
1946
+ {
1947
+ "min" : "16",
1948
+ "max" : "16"
1949
+ },
1950
+ ],
1951
+ "range" : {
1952
+ "min" : "8",
1953
+ "max" : "16"
1954
+ },
1955
+ },
1956
+ },
1957
+ "access" : "readonly",
1958
+ "description" :
1959
+ """The name of this node.""",
1960
+ }, # column
1961
+ "t11FcsStats" : {
1962
+ "nodetype" : "node",
1963
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1964
+ "oid" : "1.3.6.1.2.1.162.1.3",
1965
+ }, # node
1966
+ "t11FcsStatsTable" : {
1967
+ "nodetype" : "table",
1968
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1969
+ "oid" : "1.3.6.1.2.1.162.1.3.1",
1970
+ "status" : "current",
1971
+ "description" :
1972
+ """This table contains all the statistics related
1973
+ to the Fabric Configuration Server.""",
1974
+ }, # table
1975
+ "t11FcsStatsEntry" : {
1976
+ "nodetype" : "row",
1977
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1978
+ "oid" : "1.3.6.1.2.1.162.1.3.1.1",
1979
+ "status" : "current",
1980
+ "linkage" : [
1981
+ "fcmInstanceIndex",
1982
+ "fcmSwitchIndex",
1983
+ "t11FcsFabricIndex",
1984
+ ],
1985
+ "description" :
1986
+ """A set of statistics for a particular Fabric (identified
1987
+ by t11FcsFabricIndex) on a switch (identified by
1988
+ fcmInstanceIndex and fcmSwitchIndex).""",
1989
+ }, # row
1990
+ "t11FcsInGetReqs" : {
1991
+ "nodetype" : "column",
1992
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
1993
+ "oid" : "1.3.6.1.2.1.162.1.3.1.1.1",
1994
+ "status" : "current",
1995
+ "syntax" : {
1996
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1997
+ },
1998
+ "access" : "readonly",
1999
+ "description" :
2000
+ """The number of Get Requests received by the Fabric
2001
+ Configuration Server on this Fabric.
2002
+
2003
+ This counter has no discontinuities other than
2004
+ those that all Counter32s have when sysUpTime=0.""",
2005
+ }, # column
2006
+ "t11FcsOutGetReqs" : {
2007
+ "nodetype" : "column",
2008
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2009
+ "oid" : "1.3.6.1.2.1.162.1.3.1.1.2",
2010
+ "status" : "current",
2011
+ "syntax" : {
2012
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2013
+ },
2014
+ "access" : "readonly",
2015
+ "description" :
2016
+ """The number of Get Requests sent by the Fabric
2017
+ Configuration Server on this Fabric to other
2018
+ servers in the Fabric.
2019
+
2020
+ This counter has no discontinuities other than
2021
+ those that all Counter32s have when sysUpTime=0.""",
2022
+ }, # column
2023
+ "t11FcsInRegReqs" : {
2024
+ "nodetype" : "column",
2025
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2026
+ "oid" : "1.3.6.1.2.1.162.1.3.1.1.3",
2027
+ "status" : "current",
2028
+ "syntax" : {
2029
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2030
+ },
2031
+ "access" : "readonly",
2032
+ "description" :
2033
+ """The number of Registration Requests received by the
2034
+ Fabric Configuration Server on this Fabric.
2035
+
2036
+
2037
+
2038
+
2039
+ This counter has no discontinuities other than
2040
+ those that all Counter32s have when sysUpTime=0.""",
2041
+ }, # column
2042
+ "t11FcsOutRegReqs" : {
2043
+ "nodetype" : "column",
2044
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2045
+ "oid" : "1.3.6.1.2.1.162.1.3.1.1.4",
2046
+ "status" : "current",
2047
+ "syntax" : {
2048
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2049
+ },
2050
+ "access" : "readonly",
2051
+ "description" :
2052
+ """The number of Registration Requests sent by the
2053
+ Fabric Configuration Server on this Fabric.
2054
+
2055
+ This counter has no discontinuities other than
2056
+ those that all Counter32s have when sysUpTime=0.""",
2057
+ }, # column
2058
+ "t11FcsInDeregReqs" : {
2059
+ "nodetype" : "column",
2060
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2061
+ "oid" : "1.3.6.1.2.1.162.1.3.1.1.5",
2062
+ "status" : "current",
2063
+ "syntax" : {
2064
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2065
+ },
2066
+ "access" : "readonly",
2067
+ "description" :
2068
+ """The number of Deregistration Requests received by
2069
+ the Fabric Configuration Server on this Fabric.
2070
+
2071
+ This counter has no discontinuities other than
2072
+ those that all Counter32s have when sysUpTime=0.""",
2073
+ }, # column
2074
+ "t11FcsOutDeregReqs" : {
2075
+ "nodetype" : "column",
2076
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2077
+ "oid" : "1.3.6.1.2.1.162.1.3.1.1.6",
2078
+ "status" : "current",
2079
+ "syntax" : {
2080
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2081
+ },
2082
+ "access" : "readonly",
2083
+ "description" :
2084
+ """The number of Deregistration Requests sent by
2085
+ the Fabric Configuration Server on this Fabric.
2086
+
2087
+ This counter has no discontinuities other than
2088
+ those that all Counter32s have when sysUpTime=0.""",
2089
+ }, # column
2090
+ "t11FcsRejects" : {
2091
+ "nodetype" : "column",
2092
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2093
+ "oid" : "1.3.6.1.2.1.162.1.3.1.1.7",
2094
+ "status" : "current",
2095
+ "syntax" : {
2096
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2097
+ },
2098
+ "access" : "readonly",
2099
+ "description" :
2100
+ """The total number of requests rejected by the Fabric
2101
+ Configuration Server on this Fabric.
2102
+
2103
+
2104
+
2105
+ This counter has no discontinuities other than
2106
+ those that all Counter32s have when sysUpTime=0.""",
2107
+ }, # column
2108
+ "t11FcsNotificationInfo" : {
2109
+ "nodetype" : "node",
2110
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2111
+ "oid" : "1.3.6.1.2.1.162.1.4",
2112
+ }, # node
2113
+ "t11FcsNotifyControlTable" : {
2114
+ "nodetype" : "table",
2115
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2116
+ "oid" : "1.3.6.1.2.1.162.1.4.1",
2117
+ "status" : "current",
2118
+ "description" :
2119
+ """A table of control information for notifications
2120
+ generated due to Fabric Configuration Server events.
2121
+
2122
+ Values written to objects in this table should be
2123
+ persistent/retained over agent reboots.""",
2124
+ }, # table
2125
+ "t11FcsNotifyControlEntry" : {
2126
+ "nodetype" : "row",
2127
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2128
+ "oid" : "1.3.6.1.2.1.162.1.4.1.1",
2129
+ "status" : "current",
2130
+ "linkage" : [
2131
+ "fcmInstanceIndex",
2132
+ "fcmSwitchIndex",
2133
+ "t11FcsFabricIndex",
2134
+ ],
2135
+ "description" :
2136
+ """Each entry contains notification control information
2137
+ for a Fabric Configuration Server on a particular Fabric
2138
+ (identified by t11FcsFabricIndex) on a particular
2139
+ switch (identified by fcmInstanceIndex and
2140
+ fcmSwitchIndex).""",
2141
+ }, # row
2142
+ "t11FcsReqRejectNotifyEnable" : {
2143
+ "nodetype" : "column",
2144
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2145
+ "oid" : "1.3.6.1.2.1.162.1.4.1.1.1",
2146
+ "status" : "current",
2147
+ "syntax" : {
2148
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2149
+ },
2150
+ "access" : "readwrite",
2151
+ "default" : "false",
2152
+ "description" :
2153
+ """This object specifies if the Fabric Configuration
2154
+ Server should generate 't11FcsRqRejectNotification'
2155
+ notifications.
2156
+
2157
+ If the value of this object is 'true', then the
2158
+ notification is issued. If the value of this object
2159
+ is 'false', then the notification is not issued.""",
2160
+ }, # column
2161
+ "t11FcsDiscoveryCompNotifyEnable" : {
2162
+ "nodetype" : "column",
2163
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2164
+ "oid" : "1.3.6.1.2.1.162.1.4.1.1.2",
2165
+ "status" : "current",
2166
+ "syntax" : {
2167
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2168
+ },
2169
+ "access" : "readwrite",
2170
+ "default" : "false",
2171
+ "description" :
2172
+ """This object specifies if the Fabric Configuration
2173
+ Server should generate 't11FcsDiscoveryCompleteNotify'
2174
+ notifications.
2175
+
2176
+ If the value of this object is 'true', then the
2177
+ notification is issued. If the value of this object
2178
+ is 'false', then the notification is not issued.""",
2179
+ }, # column
2180
+ "t11FcsMgmtAddrChangeNotifyEnable" : {
2181
+ "nodetype" : "column",
2182
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2183
+ "oid" : "1.3.6.1.2.1.162.1.4.1.1.3",
2184
+ "status" : "current",
2185
+ "syntax" : {
2186
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2187
+ },
2188
+ "access" : "readwrite",
2189
+ "default" : "false",
2190
+ "description" :
2191
+ """This object specifies if the Fabric Configuration
2192
+ Server should generate 't11FcsMgmtAddrChangeNotify'
2193
+ notifications.
2194
+
2195
+ If the value of this object is 'true', then the
2196
+ notification is issued. If the value of this object
2197
+ is 'false', then the notification is not issued.""",
2198
+ }, # column
2199
+ "t11FcsRejectCtCommandString" : {
2200
+ "nodetype" : "column",
2201
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2202
+ "oid" : "1.3.6.1.2.1.162.1.4.1.1.4",
2203
+ "status" : "current",
2204
+ "syntax" : {
2205
+ "type" : {
2206
+ "basetype" : "OctetString",
2207
+ "ranges" : [
2208
+ {
2209
+ "min" : "0",
2210
+ "max" : "255"
2211
+ },
2212
+ ],
2213
+ "range" : {
2214
+ "min" : "0",
2215
+ "max" : "255"
2216
+ },
2217
+ },
2218
+ },
2219
+ "access" : "readonly",
2220
+ "description" :
2221
+ """The binary content of the Fabric Configuration Server
2222
+
2223
+
2224
+
2225
+ request, formatted as an octet string (in network byte
2226
+ order) containing the Common Transport Information Unit
2227
+ (CT_IU), as described in Table 2 of FC-GS-5 (including
2228
+ the preamble), which was most recently rejected by the
2229
+ Fabric Configuration Server for this Fabric.
2230
+
2231
+ This object contains the zero-length string if and when the
2232
+ CT-IU's content is unavailable.
2233
+
2234
+ When the length of this object is 255 octets, it contains
2235
+ the first 255 octets of the CT-IU (in network byte order).""",
2236
+ }, # column
2237
+ "t11FcsRejectRequestSource" : {
2238
+ "nodetype" : "column",
2239
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2240
+ "oid" : "1.3.6.1.2.1.162.1.4.1.1.5",
2241
+ "status" : "current",
2242
+ "syntax" : {
2243
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
2244
+ },
2245
+ "access" : "readonly",
2246
+ "description" :
2247
+ """The WWN that was the source of the CT_IU contained in
2248
+ the corresponding instance of t11FcsRejectCtCommandString.""",
2249
+ }, # column
2250
+ "t11FcsRejectReasonCode" : {
2251
+ "nodetype" : "column",
2252
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2253
+ "oid" : "1.3.6.1.2.1.162.1.4.1.1.6",
2254
+ "status" : "current",
2255
+ "syntax" : {
2256
+ "type" : { "module" :"T11-FC-NAME-SERVER-MIB", "name" : "T11NsGs4RejectReasonCode"},
2257
+ },
2258
+ "access" : "readonly",
2259
+ "description" :
2260
+ """This object contains the reason code corresponding
2261
+ to the latest Fabric Configuration Server request
2262
+ rejected by the local system.""",
2263
+ }, # column
2264
+ "t11FcsRejectReasonCodeExp" : {
2265
+ "nodetype" : "column",
2266
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2267
+ "oid" : "1.3.6.1.2.1.162.1.4.1.1.7",
2268
+ "status" : "current",
2269
+ "syntax" : {
2270
+ "type" : { "module" :"T11-FC-FABRIC-CONFIG-SERVER-MIB", "name" : "T11FcsRejectReasonExplanation"},
2271
+ },
2272
+ "access" : "readonly",
2273
+ "description" :
2274
+ """When the corresponding instance of
2275
+ t11FcsRejectReasonCode has the value: 'unable to
2276
+ perform command request', this object contains the
2277
+ corresponding reason code explanation.""",
2278
+ }, # column
2279
+ "t11FcsRejectReasonVendorCode" : {
2280
+ "nodetype" : "column",
2281
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2282
+ "oid" : "1.3.6.1.2.1.162.1.4.1.1.8",
2283
+ "status" : "current",
2284
+ "syntax" : {
2285
+ "type" : {
2286
+ "basetype" : "OctetString",
2287
+ "ranges" : [
2288
+ {
2289
+ "min" : "1",
2290
+ "max" : "1"
2291
+ },
2292
+ ],
2293
+ "range" : {
2294
+ "min" : "1",
2295
+ "max" : "1"
2296
+ },
2297
+ },
2298
+ },
2299
+ "access" : "readonly",
2300
+ "description" :
2301
+ """A registration reject vendor-specific code. This
2302
+ object contains the vendor-specific code of the most
2303
+ recently rejected Fabric Configuration Server
2304
+ Registration request for the particular port on
2305
+ the particular Fabric.""",
2306
+ }, # column
2307
+ "t11FcsMgmtAddrChangeFabricIndex" : {
2308
+ "nodetype" : "scalar",
2309
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2310
+ "oid" : "1.3.6.1.2.1.162.1.4.2",
2311
+ "status" : "current",
2312
+ "syntax" : {
2313
+ "type" : { "module" :"T11-TC-MIB", "name" : "T11FabricIndex"},
2314
+ },
2315
+ "access" : "notifyonly",
2316
+ "description" :
2317
+ """The index value that identifies the Fabric on which
2318
+ a management address change has been detected.""",
2319
+ }, # scalar
2320
+ "t11FcsMgmtAddrChangeIeName" : {
2321
+ "nodetype" : "scalar",
2322
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2323
+ "oid" : "1.3.6.1.2.1.162.1.4.3",
2324
+ "status" : "current",
2325
+ "syntax" : {
2326
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
2327
+ },
2328
+ "access" : "notifyonly",
2329
+ "description" :
2330
+ """The IE for which a management address change has been
2331
+ detected.""",
2332
+ }, # scalar
2333
+ "t11FcsMIBConformance" : {
2334
+ "nodetype" : "node",
2335
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2336
+ "oid" : "1.3.6.1.2.1.162.2",
2337
+ }, # node
2338
+ "t11FcsMIBCompliances" : {
2339
+ "nodetype" : "node",
2340
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2341
+ "oid" : "1.3.6.1.2.1.162.2.1",
2342
+ }, # node
2343
+ "t11FcsMIBGroups" : {
2344
+ "nodetype" : "node",
2345
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2346
+ "oid" : "1.3.6.1.2.1.162.2.2",
2347
+ }, # node
2348
+ }, # nodes
2349
+
2350
+ "notifications" : {
2351
+ "t11FcsRqRejectNotification" : {
2352
+ "nodetype" : "notification",
2353
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2354
+ "oid" : "1.3.6.1.2.1.162.0.1",
2355
+ "status" : "current",
2356
+ "objects" : {
2357
+ "t11FamLocalSwitchWwn" : {
2358
+ "nodetype" : "object",
2359
+ "module" : "T11-FC-FABRIC-ADDR-MGR-MIB"
2360
+ },
2361
+ "t11FcsRejectReasonCode" : {
2362
+ "nodetype" : "object",
2363
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2364
+ },
2365
+ "t11FcsRejectReasonCodeExp" : {
2366
+ "nodetype" : "object",
2367
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2368
+ },
2369
+ "t11FcsRejectReasonVendorCode" : {
2370
+ "nodetype" : "object",
2371
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2372
+ },
2373
+ },
2374
+ "description" :
2375
+ """This notification is generated whenever the Fabric
2376
+ Configuration Server on a switch (indicated by the
2377
+ value of t11FamLocalSwitchWwn) rejects a Fabric
2378
+ Configuration Server request.
2379
+
2380
+ The Fabric Configuration Server should update the
2381
+ t11FcsRejectReasonCode, t11FcsRejectReasonCodeExp
2382
+ and t11FcsRejectReasonVendorCode objects with the
2383
+ corresponding reason code, explanation and vendor
2384
+ specific code before sending the notification.""",
2385
+ }, # notification
2386
+ "t11FcsDiscoveryCompleteNotify" : {
2387
+ "nodetype" : "notification",
2388
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2389
+ "oid" : "1.3.6.1.2.1.162.0.2",
2390
+ "status" : "current",
2391
+ "objects" : {
2392
+ "t11FcsFabricDiscoveryRangeLow" : {
2393
+ "nodetype" : "object",
2394
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2395
+ },
2396
+ },
2397
+ "description" :
2398
+ """This notification is generated by the Fabric
2399
+ Configuration Server on the completion of the
2400
+ discovery of Fabrics in the range that has
2401
+ t11FcsFabricDiscoveryRangeLow at its low end.""",
2402
+ }, # notification
2403
+ "t11FcsMgmtAddrChangeNotify" : {
2404
+ "nodetype" : "notification",
2405
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2406
+ "oid" : "1.3.6.1.2.1.162.0.3",
2407
+ "status" : "current",
2408
+ "objects" : {
2409
+ "t11FcsMgmtAddrChangeFabricIndex" : {
2410
+ "nodetype" : "object",
2411
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2412
+ },
2413
+ "t11FcsMgmtAddrChangeIeName" : {
2414
+ "nodetype" : "object",
2415
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2416
+ },
2417
+ },
2418
+ "description" :
2419
+ """This notification is generated by the Fabric
2420
+ Configuration Server whenever the management
2421
+ address of an IE changes, i.e., whenever an
2422
+ entry in the t11FcsMgmtAddrListTable changes.""",
2423
+ }, # notification
2424
+ }, # notifications
2425
+
2426
+ "groups" : {
2427
+ "t11FcsDiscoveryControlGroup" : {
2428
+ "nodetype" : "group",
2429
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2430
+ "oid" : "1.3.6.1.2.1.162.2.2.1",
2431
+ "status" : "current",
2432
+ "members" : {
2433
+ "t11FcsFabricDiscoveryRangeLow" : {
2434
+ "nodetype" : "member",
2435
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2436
+ },
2437
+ "t11FcsFabricDiscoveryRangeHigh" : {
2438
+ "nodetype" : "member",
2439
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2440
+ },
2441
+ "t11FcsFabricDiscoveryStart" : {
2442
+ "nodetype" : "member",
2443
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2444
+ },
2445
+ "t11FcsFabricDiscoveryTimeOut" : {
2446
+ "nodetype" : "member",
2447
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2448
+ },
2449
+ }, # members
2450
+ "description" :
2451
+ """A collection of objects for requesting a Fabric
2452
+ Configuration Server to discover the configuration
2453
+ of one or more Fabrics.""",
2454
+ }, # group
2455
+ "t11FcsDiscoveryStatusGroup" : {
2456
+ "nodetype" : "group",
2457
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2458
+ "oid" : "1.3.6.1.2.1.162.2.2.2",
2459
+ "status" : "current",
2460
+ "members" : {
2461
+ "t11FcsDiscoveryStatus" : {
2462
+ "nodetype" : "member",
2463
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2464
+ },
2465
+ "t11FcsDiscoveryCompleteTime" : {
2466
+ "nodetype" : "member",
2467
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2468
+ },
2469
+ }, # members
2470
+ "description" :
2471
+ """A collection of objects with which to monitor the
2472
+ status of discovery (of Fabric configurations) by
2473
+ Fabric Configuration Servers.""",
2474
+ }, # group
2475
+ "t11FcsDiscoveredConfigGroup" : {
2476
+ "nodetype" : "group",
2477
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2478
+ "oid" : "1.3.6.1.2.1.162.2.2.3",
2479
+ "status" : "current",
2480
+ "members" : {
2481
+ "t11FcsIeType" : {
2482
+ "nodetype" : "member",
2483
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2484
+ },
2485
+ "t11FcsIeDomainId" : {
2486
+ "nodetype" : "member",
2487
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2488
+ },
2489
+ "t11FcsIeMgmtId" : {
2490
+ "nodetype" : "member",
2491
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2492
+ },
2493
+ "t11FcsIeFabricName" : {
2494
+ "nodetype" : "member",
2495
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2496
+ },
2497
+ "t11FcsIeLogicalName" : {
2498
+ "nodetype" : "member",
2499
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2500
+ },
2501
+ "t11FcsIeMgmtAddrListIndex" : {
2502
+ "nodetype" : "member",
2503
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2504
+ },
2505
+ "t11FcsIeInfoList" : {
2506
+ "nodetype" : "member",
2507
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2508
+ },
2509
+ "t11FcsMgmtAddr" : {
2510
+ "nodetype" : "member",
2511
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2512
+ },
2513
+ "t11FcsPortType" : {
2514
+ "nodetype" : "member",
2515
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2516
+ },
2517
+ "t11FcsPortTxType" : {
2518
+ "nodetype" : "member",
2519
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2520
+ },
2521
+ "t11FcsPortModuleType" : {
2522
+ "nodetype" : "member",
2523
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2524
+ },
2525
+ "t11FcsPortPhyPortNum" : {
2526
+ "nodetype" : "member",
2527
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2528
+ },
2529
+ "t11FcsPortAttachPortNameIndex" : {
2530
+ "nodetype" : "member",
2531
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2532
+ },
2533
+ "t11FcsPortState" : {
2534
+ "nodetype" : "member",
2535
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2536
+ },
2537
+ "t11FcsPortSpeedCapab" : {
2538
+ "nodetype" : "member",
2539
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2540
+ },
2541
+ "t11FcsPortOperSpeed" : {
2542
+ "nodetype" : "member",
2543
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2544
+ },
2545
+ "t11FcsPortZoningEnfStatus" : {
2546
+ "nodetype" : "member",
2547
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2548
+ },
2549
+ "t11FcsAttachPortName" : {
2550
+ "nodetype" : "member",
2551
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2552
+ },
2553
+ "t11FcsPlatformName" : {
2554
+ "nodetype" : "member",
2555
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2556
+ },
2557
+ "t11FcsPlatformType" : {
2558
+ "nodetype" : "member",
2559
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2560
+ },
2561
+ "t11FcsPlatformNodeNameListIndex" : {
2562
+ "nodetype" : "member",
2563
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2564
+ },
2565
+ "t11FcsPlatformMgmtAddrListIndex" : {
2566
+ "nodetype" : "member",
2567
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2568
+ },
2569
+ "t11FcsPlatformVendorId" : {
2570
+ "nodetype" : "member",
2571
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2572
+ },
2573
+ "t11FcsPlatformProductId" : {
2574
+ "nodetype" : "member",
2575
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2576
+ },
2577
+ "t11FcsPlatformProductRevLevel" : {
2578
+ "nodetype" : "member",
2579
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2580
+ },
2581
+ "t11FcsPlatformDescription" : {
2582
+ "nodetype" : "member",
2583
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2584
+ },
2585
+ "t11FcsPlatformLabel" : {
2586
+ "nodetype" : "member",
2587
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2588
+ },
2589
+ "t11FcsPlatformLocation" : {
2590
+ "nodetype" : "member",
2591
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2592
+ },
2593
+ "t11FcsPlatformSystemID" : {
2594
+ "nodetype" : "member",
2595
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2596
+ },
2597
+ "t11FcsPlatformSysMgmtAddr" : {
2598
+ "nodetype" : "member",
2599
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2600
+ },
2601
+ "t11FcsPlatformClusterId" : {
2602
+ "nodetype" : "member",
2603
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2604
+ },
2605
+ "t11FcsPlatformClusterMgmtAddr" : {
2606
+ "nodetype" : "member",
2607
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2608
+ },
2609
+ "t11FcsPlatformFC4Types" : {
2610
+ "nodetype" : "member",
2611
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2612
+ },
2613
+ "t11FcsNodeName" : {
2614
+ "nodetype" : "member",
2615
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2616
+ },
2617
+ }, # members
2618
+ "description" :
2619
+ """A collection of objects to contain the Fabric configuration
2620
+ information discovered by Fabric Configuration Servers.""",
2621
+ }, # group
2622
+ "t11FcsStatisticsGroup" : {
2623
+ "nodetype" : "group",
2624
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2625
+ "oid" : "1.3.6.1.2.1.162.2.2.4",
2626
+ "status" : "current",
2627
+ "members" : {
2628
+ "t11FcsInGetReqs" : {
2629
+ "nodetype" : "member",
2630
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2631
+ },
2632
+ "t11FcsOutGetReqs" : {
2633
+ "nodetype" : "member",
2634
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2635
+ },
2636
+ "t11FcsInRegReqs" : {
2637
+ "nodetype" : "member",
2638
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2639
+ },
2640
+ "t11FcsOutRegReqs" : {
2641
+ "nodetype" : "member",
2642
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2643
+ },
2644
+ "t11FcsInDeregReqs" : {
2645
+ "nodetype" : "member",
2646
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2647
+ },
2648
+ "t11FcsOutDeregReqs" : {
2649
+ "nodetype" : "member",
2650
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2651
+ },
2652
+ "t11FcsRejects" : {
2653
+ "nodetype" : "member",
2654
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2655
+ },
2656
+ }, # members
2657
+ "description" :
2658
+ """A collection of objects for Fabric Configuration Server
2659
+ statistics information.""",
2660
+ }, # group
2661
+ "t11FcsNotificationInfoGroup" : {
2662
+ "nodetype" : "group",
2663
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2664
+ "oid" : "1.3.6.1.2.1.162.2.2.5",
2665
+ "status" : "current",
2666
+ "members" : {
2667
+ "t11FcsReqRejectNotifyEnable" : {
2668
+ "nodetype" : "member",
2669
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2670
+ },
2671
+ "t11FcsDiscoveryCompNotifyEnable" : {
2672
+ "nodetype" : "member",
2673
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2674
+ },
2675
+ "t11FcsMgmtAddrChangeNotifyEnable" : {
2676
+ "nodetype" : "member",
2677
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2678
+ },
2679
+ "t11FcsRejectCtCommandString" : {
2680
+ "nodetype" : "member",
2681
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2682
+ },
2683
+ "t11FcsRejectRequestSource" : {
2684
+ "nodetype" : "member",
2685
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2686
+ },
2687
+ "t11FcsRejectReasonCode" : {
2688
+ "nodetype" : "member",
2689
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2690
+ },
2691
+ "t11FcsRejectReasonCodeExp" : {
2692
+ "nodetype" : "member",
2693
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2694
+ },
2695
+ "t11FcsRejectReasonVendorCode" : {
2696
+ "nodetype" : "member",
2697
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2698
+ },
2699
+ "t11FcsMgmtAddrChangeFabricIndex" : {
2700
+ "nodetype" : "member",
2701
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2702
+ },
2703
+ "t11FcsMgmtAddrChangeIeName" : {
2704
+ "nodetype" : "member",
2705
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2706
+ },
2707
+ }, # members
2708
+ "description" :
2709
+ """A collection of notification control and notification
2710
+ information objects for monitoring Fabric
2711
+ Configuration Servers.""",
2712
+ }, # group
2713
+ "t11FcsNotificationGroup" : {
2714
+ "nodetype" : "group",
2715
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2716
+ "oid" : "1.3.6.1.2.1.162.2.2.6",
2717
+ "status" : "current",
2718
+ "members" : {
2719
+ "t11FcsRqRejectNotification" : {
2720
+ "nodetype" : "member",
2721
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2722
+ },
2723
+ "t11FcsDiscoveryCompleteNotify" : {
2724
+ "nodetype" : "member",
2725
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2726
+ },
2727
+ "t11FcsMgmtAddrChangeNotify" : {
2728
+ "nodetype" : "member",
2729
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2730
+ },
2731
+ }, # members
2732
+ "description" :
2733
+ """A collection of notifications for monitoring Fabric
2734
+ Configuration Servers.""",
2735
+ }, # group
2736
+ }, # groups
2737
+
2738
+ "compliances" : {
2739
+ "t11FcsMIBCompliance" : {
2740
+ "nodetype" : "compliance",
2741
+ "moduleName" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2742
+ "oid" : "1.3.6.1.2.1.162.2.1.1",
2743
+ "status" : "current",
2744
+ "description" :
2745
+ """The compliance statement for entities that
2746
+ implement the Fabric Configuration Server.""",
2747
+ "requires" : {
2748
+ "t11FcsDiscoveredConfigGroup" : {
2749
+ "nodetype" : "mandatory",
2750
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2751
+ },
2752
+ "t11FcsDiscoveryStatusGroup" : {
2753
+ "nodetype" : "mandatory",
2754
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2755
+ },
2756
+ "t11FcsNotificationInfoGroup" : {
2757
+ "nodetype" : "mandatory",
2758
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2759
+ },
2760
+ "t11FcsNotificationGroup" : {
2761
+ "nodetype" : "mandatory",
2762
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB"
2763
+ },
2764
+ "t11FcsDiscoveryControlGroup" : {
2765
+ "nodetype" : "optional",
2766
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2767
+ "description" :
2768
+ """This group is mandatory only for those systems that
2769
+ allow discovery of configuration by Fabric Configuration
2770
+ Servers to be controlled via a MIB.""",
2771
+ },
2772
+ "t11FcsStatisticsGroup" : {
2773
+ "nodetype" : "optional",
2774
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2775
+ "description" :
2776
+ """These counters, containing Fabric Configuration
2777
+ Server statistics, are mandatory only for those systems
2778
+ that count such events.""",
2779
+ },
2780
+ }, # requires
2781
+ "refinements" : {
2782
+ "t11FcsDiscoveryStatus" : {
2783
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2784
+ "writesyntax" : {
2785
+ "type" : {
2786
+ "basetype" : "Enumeration",
2787
+ "localOnly" : {
2788
+ "nodetype" : "namednumber",
2789
+ "number" : "3"
2790
+ },
2791
+ },
2792
+ }, # writesyntax
2793
+ "access" : "readonly",
2794
+ "description" :
2795
+ """Write access is not required.
2796
+ However, if write access is supported, then the only
2797
+ writable value is 'localOnly'.""",
2798
+ },
2799
+ "t11FcsReqRejectNotifyEnable" : {
2800
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2801
+ "access" : "readonly",
2802
+ "description" :
2803
+ """Write access is not required.""",
2804
+ },
2805
+ "t11FcsDiscoveryCompNotifyEnable" : {
2806
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2807
+ "access" : "readonly",
2808
+ "description" :
2809
+ """Write access is not required.""",
2810
+ },
2811
+ "t11FcsMgmtAddrChangeNotifyEnable" : {
2812
+ "module" : "T11-FC-FABRIC-CONFIG-SERVER-MIB",
2813
+ "access" : "readonly",
2814
+ "description" :
2815
+ """Write access is not required.""",
2816
+ },
2817
+ }, # refinements
2818
+
2819
+ }, # compliance
2820
+ }, # compliances
2821
+
2822
+ }