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,3886 @@
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-ZONE-SERVER-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/T11-FC-ZONE-SERVER-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
11
+
12
+ "T11-FC-ZONE-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 Fibre Channel Zoning
32
+ Servers, both for Basic Zoning Management and for Enhanced
33
+
34
+
35
+ Zoning Management, as defined in the FC-GS-5 specification.
36
+
37
+ FC-GS-5 defines (in-band) management operations for
38
+ manipulating the Zone Set Database, some for use in Basic
39
+ mode (e.g., 'Add Zone Set (AZS)', etc.), and some for use in
40
+ Enhanced mode (e.g., Create Zone Set (CZS)', etc.). When
41
+ Enhanced Zoning Management is in use, FC-GS-5 requires that
42
+ these in-band management operations be rejected unless they
43
+ are issued within the context of a GS-5 server session. The
44
+ use of a server session ensures serialized access to the
45
+ Zoning Database since the Fabric lock for the Zone Server
46
+ must be obtained as a part of establishing the server
47
+ session to the Zone Server.
48
+
49
+ Thus, if and when this MIB is used for Enhanced Zoning
50
+ Management, SNMP SetRequests that request the modification
51
+ of zoning definitions must be serialized with respect to
52
+ the GS-5 requests to modify the Zoning Database. This is
53
+ achieved by requiring that an SNMP management application
54
+ must first obtain the Fabric lock for the Zone Server
55
+ before attempting to modify any zoning definitions. The
56
+ companion T11-FC-FABRIC-LOCK-MIB module is defined as a means
57
+ of obtaining the Fabric lock for the Zone Server (or any
58
+ other server).
59
+
60
+ In Enhanced Zoning Management, a Zone Server keeps track of
61
+ changes requested in the zoning definitions, but does not
62
+ update its Zone Set Database unless there is (and until
63
+ there is) a 'commit' operation. To model this behavior,
64
+ this MIB module assumes that a Zone Server (in Enhanced
65
+ mode) takes a snapshot of its Zone Set Database as and when
66
+ the Fabric lock (for the Zone Server application) is
67
+ obtained; this snapshot is used to create what is herein
68
+ called the 'copy' database. It is this 'copy' database
69
+ that is then updated by SNMP SetRequests (while the Fabric
70
+ is locked). If and when a 'commit' operation is requested
71
+ (while the Fabric is still locked), the 'copy' database is
72
+ then used to overwrite the previously committed contents of
73
+ the Zone Set Database, and the new Zone Set Database is
74
+ distributed to all other switches in the Fabric. When the
75
+ lock is released, any changes made that were not
76
+ 'committed' are discarded.
77
+
78
+ When this MIB is used for Basic Zoning Management, the same
79
+ set of MIB objects as used for Enhanced mode are used to
80
+ make changes to the Database of a Zone Server on a
81
+ particular switch, but the changes take immediate effect at
82
+ that switch without an explicit commit. The distribution of
83
+
84
+
85
+
86
+ those changes to Zone Servers on other switches in the
87
+ Fabric is subsequently requested through the use of a
88
+ separate set of MIB objects.
89
+
90
+ The management information specified in this MIB module
91
+ includes the Zoning Database for each of one or more Fibre
92
+ Channel Fabrics. A Zoning Database is a combination of the
93
+ Fabric's Zone Set Database and its Active Zone Set. The
94
+ Active Zone Set is the Zone Set currently enforced by the
95
+ Fabric; a Zone Set Database is a database of the Zone Sets
96
+ available to be activated within a Fabric. All the MIB
97
+ objects representing a Zone Set Database are modifiable at
98
+ any time (irrespective of the value of any RowStatus
99
+ object), whereas all objects representing the Active Zone
100
+ Set are always read-only (except to deactivate it and/or
101
+ activate a different one).
102
+
103
+ Copyright (C) The IETF Trust (2007). This version
104
+ of this MIB module is part of RFC 4936; see the RFC
105
+ itself for full legal notices.""",
106
+ "revisions" : (
107
+ {
108
+ "date" : "2007-06-27 00:00",
109
+ "description" :
110
+ """Initial version of this MIB module, published as RFC 4936.""",
111
+ },
112
+ ),
113
+ "identity node" : "t11ZoneServerMIB",
114
+ },
115
+
116
+ "imports" : (
117
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
118
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
119
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
120
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
121
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
122
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
123
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
124
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
125
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
126
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
127
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
128
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
129
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
130
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
131
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
132
+ {"module" : "IF-MIB", "name" : "ifIndex"},
133
+ {"module" : "FC-MGMT-MIB", "name" : "fcmInstanceIndex"},
134
+ {"module" : "FC-MGMT-MIB", "name" : "fcmSwitchIndex"},
135
+ {"module" : "FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
136
+ {"module" : "FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
137
+ {"module" : "T11-FC-NAME-SERVER-MIB", "name" : "T11NsGs4RejectReasonCode"},
138
+ {"module" : "T11-TC-MIB", "name" : "T11FabricIndex"},
139
+ {"module" : "T11-FC-FABRIC-ADDR-MGR-MIB", "name" : "t11FamLocalSwitchWwn"},
140
+ ),
141
+
142
+ "typedefs" : {
143
+ "T11ZsZoneMemberType" : {
144
+ "basetype" : "Unsigned32",
145
+ "status" : "current",
146
+ "ranges" : [
147
+ {
148
+ "min" : "0",
149
+ "max" : "255"
150
+ },
151
+ ],
152
+ "range" : {
153
+ "min" : "0",
154
+ "max" : "255"
155
+ },
156
+ "format" : "x",
157
+ "description" :
158
+ """Represents the addressing mechanism by
159
+ which a member is identified:
160
+
161
+ 01 - N_Port_Name
162
+ 02 - Domain_ID and physical port
163
+ 03 - N_Port_ID
164
+ 04 - Node_Name
165
+ 05 - Alias Name
166
+ 06 - F_Port_Name
167
+ E0-FF (hex) - Vendor Specific.""",
168
+ "reference" :
169
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
170
+ ANSI INCITS 427-2007, section 6.4.8.3.6.""",
171
+ },
172
+ "T11ZsRejectReasonExplanation" : {
173
+ "basetype" : "Enumeration",
174
+ "status" : "current",
175
+ "other" : {
176
+ "nodetype" : "namednumber",
177
+ "number" : "1"
178
+ },
179
+ "noAdditionalExplanation" : {
180
+ "nodetype" : "namednumber",
181
+ "number" : "2"
182
+ },
183
+ "zonesNotSupported" : {
184
+ "nodetype" : "namednumber",
185
+ "number" : "3"
186
+ },
187
+ "zoneSetNameUnknown" : {
188
+ "nodetype" : "namednumber",
189
+ "number" : "4"
190
+ },
191
+ "noZoneSetActive" : {
192
+ "nodetype" : "namednumber",
193
+ "number" : "5"
194
+ },
195
+ "zoneNameUnknown" : {
196
+ "nodetype" : "namednumber",
197
+ "number" : "6"
198
+ },
199
+ "zoneStateUnknown" : {
200
+ "nodetype" : "namednumber",
201
+ "number" : "7"
202
+ },
203
+ "incorrectPayloadLen" : {
204
+ "nodetype" : "namednumber",
205
+ "number" : "8"
206
+ },
207
+ "tooLargeZoneSet" : {
208
+ "nodetype" : "namednumber",
209
+ "number" : "9"
210
+ },
211
+ "deactivateZoneSetFailed" : {
212
+ "nodetype" : "namednumber",
213
+ "number" : "10"
214
+ },
215
+ "reqNotSupported" : {
216
+ "nodetype" : "namednumber",
217
+ "number" : "11"
218
+ },
219
+ "capabilityNotSupported" : {
220
+ "nodetype" : "namednumber",
221
+ "number" : "12"
222
+ },
223
+ "zoneMemberIDTypeNotSupp" : {
224
+ "nodetype" : "namednumber",
225
+ "number" : "13"
226
+ },
227
+ "invalidZoneSetDefinition" : {
228
+ "nodetype" : "namednumber",
229
+ "number" : "14"
230
+ },
231
+ "enhancedZoningCmdsNotSupported" : {
232
+ "nodetype" : "namednumber",
233
+ "number" : "15"
234
+ },
235
+ "zoneSetExists" : {
236
+ "nodetype" : "namednumber",
237
+ "number" : "16"
238
+ },
239
+ "zoneExists" : {
240
+ "nodetype" : "namednumber",
241
+ "number" : "17"
242
+ },
243
+ "aliasExists" : {
244
+ "nodetype" : "namednumber",
245
+ "number" : "18"
246
+ },
247
+ "zoneSetUnknown" : {
248
+ "nodetype" : "namednumber",
249
+ "number" : "19"
250
+ },
251
+ "zoneUnknown" : {
252
+ "nodetype" : "namednumber",
253
+ "number" : "20"
254
+ },
255
+ "aliasUnknown" : {
256
+ "nodetype" : "namednumber",
257
+ "number" : "21"
258
+ },
259
+ "zoneAliasTypeUnknown" : {
260
+ "nodetype" : "namednumber",
261
+ "number" : "22"
262
+ },
263
+ "unableEnhancedMode" : {
264
+ "nodetype" : "namednumber",
265
+ "number" : "23"
266
+ },
267
+ "basicZoningCmdsNotSupported" : {
268
+ "nodetype" : "namednumber",
269
+ "number" : "24"
270
+ },
271
+ "zoneAttribObjectExists" : {
272
+ "nodetype" : "namednumber",
273
+ "number" : "25"
274
+ },
275
+ "zoneAttribObjectUnknown" : {
276
+ "nodetype" : "namednumber",
277
+ "number" : "26"
278
+ },
279
+ "requestInProcess" : {
280
+ "nodetype" : "namednumber",
281
+ "number" : "27"
282
+ },
283
+ "cmitInProcess" : {
284
+ "nodetype" : "namednumber",
285
+ "number" : "28"
286
+ },
287
+ "hardEnforcementFailed" : {
288
+ "nodetype" : "namednumber",
289
+ "number" : "29"
290
+ },
291
+ "unresolvedReferences" : {
292
+ "nodetype" : "namednumber",
293
+ "number" : "30"
294
+ },
295
+ "consistencyChecksFailed" : {
296
+ "nodetype" : "namednumber",
297
+ "number" : "31"
298
+ },
299
+ "description" :
300
+ """The reason code explanation when rejecting a
301
+ Zone Server request:
302
+
303
+ 'other'
304
+ - e.g., a reason code assigned too recently
305
+ to be included in this version of this MIB
306
+ 'noAdditionalExplanation'
307
+ - there is no additional explanation
308
+ 'zonesNotSupported'
309
+ - Zones are not supported
310
+ 'zoneSetNameUnknown'
311
+ - Zone Set name is not known
312
+ 'noZoneSetActive'
313
+ - no Zone Set is currently active
314
+ 'zoneNameUnknown'
315
+ - Zone name is unknown
316
+ 'zoneStateUnknown'
317
+ - state of the Zone is not known
318
+ 'incorrectPayloadLen'
319
+ - payload length is not correct
320
+ 'tooLargeZoneSet'
321
+ - Zone Set is larger than permitted size
322
+ 'deactivateZoneSetFailed'
323
+ - deactivation of Zone Set failed
324
+ 'reqNotSupported'
325
+ - request is not supported
326
+ 'capabilityNotSupported'
327
+ - capability is not supported
328
+ 'zoneMemberIDTypeNotSupp'
329
+ - Zone Member Identifier Type is not supported
330
+ 'invalidZoneSetDefinition'
331
+ - Zone Set definition is invalid
332
+ 'enhancedZoningCmdsNotSupported'
333
+ - Enhanced Zoning commands are not supported
334
+ 'zoneSetExists'
335
+ - Zone Set already exists
336
+ 'zoneExists'
337
+ - Zone already exists
338
+ 'aliasExists'
339
+ - Zone Alias already exists
340
+
341
+
342
+ 'zoneSetUnknown'
343
+ - Zone Set unknown
344
+ 'zoneUnknown'
345
+ - Zone unknown
346
+ 'aliasUnknown'
347
+ - Zone Alias unknown
348
+ 'zoneAliasTypeUnknown'
349
+ - unknown Zone attribute type
350
+ 'unableEnhancedMode'
351
+ - Fabric unable to work in Enhanced Mode
352
+ 'basicZoningCmdsNotSupported'
353
+ - Basic Zoning commands are not supported
354
+ 'zoneAttribObjectExists'
355
+ - Zone attribute object already exists
356
+ 'zoneAttribObjectUnknown'
357
+ - Zone attribute object unknown
358
+ 'requestInProcess'
359
+ - request in process
360
+ 'cmitInProcess'
361
+ - CMIT in process
362
+ 'hardEnforcementFailed'
363
+ - hard enforcement failed
364
+ 'unresolvedReferences'
365
+ - unresolved references in the Zone Set Database
366
+ 'consistencyChecksFailed'
367
+ - consistency checks failed.""",
368
+ "reference" :
369
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
370
+ ANSI INCITS 427-2007, section 6.4.9.""",
371
+ },
372
+ "T11ZoningName" : {
373
+ "basetype" : "OctetString",
374
+ "status" : "current",
375
+ "ranges" : [
376
+ {
377
+ "min" : "1",
378
+ "max" : "64"
379
+ },
380
+ ],
381
+ "range" : {
382
+ "min" : "1",
383
+ "max" : "64"
384
+ },
385
+ "description" :
386
+ """This datatype is a refinement of an SnmpAdminString,
387
+ and is used to represent a name stored in a Fibre
388
+ Channel Zoning Data Structure.
389
+
390
+ The value begins with an ASCII letter (upper or lower
391
+ case) followed by zero or more characters from the set:
392
+ lower case letters, upper case letters, numbers, and
393
+ the symbols ($-^_).
394
+
395
+ The value does not include fill bytes.""",
396
+ "reference" :
397
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
398
+ ANSI INCITS 427-2007, section 6.4.8.1.""",
399
+ },
400
+ }, # typedefs
401
+
402
+ "nodes" : {
403
+ "t11ZoneServerMIB" : {
404
+ "nodetype" : "node",
405
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
406
+ "oid" : "1.3.6.1.2.1.160",
407
+ "status" : "current",
408
+ }, # node
409
+ "t11ZsMIBNotifications" : {
410
+ "nodetype" : "node",
411
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
412
+ "oid" : "1.3.6.1.2.1.160.0",
413
+ }, # node
414
+ "t11ZsMIBObjects" : {
415
+ "nodetype" : "node",
416
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
417
+ "oid" : "1.3.6.1.2.1.160.1",
418
+ }, # node
419
+ "t11ZsConfiguration" : {
420
+ "nodetype" : "node",
421
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
422
+ "oid" : "1.3.6.1.2.1.160.1.1",
423
+ }, # node
424
+ "t11ZsServerTable" : {
425
+ "nodetype" : "table",
426
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
427
+ "oid" : "1.3.6.1.2.1.160.1.1.1",
428
+ "status" : "current",
429
+ "description" :
430
+ """A table containing information about the Zone Servers
431
+ on each Fabric in one or more switches, and providing
432
+ the capability to perform operations on their Zone
433
+ Server databases.""",
434
+ }, # table
435
+ "t11ZsServerEntry" : {
436
+ "nodetype" : "row",
437
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
438
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1",
439
+ "status" : "current",
440
+ "linkage" : [
441
+ "fcmInstanceIndex",
442
+ "fcmSwitchIndex",
443
+ "t11ZsServerFabricIndex",
444
+ ],
445
+ "description" :
446
+ """Each entry contains information specific to a
447
+ Zone Server for a particular Fabric (identified by
448
+ the value of t11ZsServerFabricIndex) on a particular
449
+ switch (identified by values of fcmInstanceIndex
450
+ and fcmSwitchIndex).
451
+
452
+ The persistence across reboots of writable values in
453
+ a row of this table is given by the instance of
454
+ t11ZsServerDatabaseStorageType in that row.""",
455
+ }, # row
456
+ "t11ZsServerFabricIndex" : {
457
+ "nodetype" : "column",
458
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
459
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.1",
460
+ "status" : "current",
461
+ "syntax" : {
462
+ "type" : { "module" :"T11-TC-MIB", "name" : "T11FabricIndex"},
463
+ },
464
+ "access" : "noaccess",
465
+ "description" :
466
+ """A unique index value that uniquely identifies a
467
+ particular Fabric.""",
468
+ }, # column
469
+ "t11ZsServerCapabilityObject" : {
470
+ "nodetype" : "column",
471
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
472
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.2",
473
+ "status" : "current",
474
+ "syntax" : {
475
+ "type" : {
476
+ "basetype" : "Bits",
477
+ "enhancedMode" : {
478
+ "nodetype" : "namednumber",
479
+ "number" : "0"
480
+ },
481
+ "zoneSetDb" : {
482
+ "nodetype" : "namednumber",
483
+ "number" : "1"
484
+ },
485
+ "activateDirect" : {
486
+ "nodetype" : "namednumber",
487
+ "number" : "2"
488
+ },
489
+ "hardZoning" : {
490
+ "nodetype" : "namednumber",
491
+ "number" : "3"
492
+ },
493
+ },
494
+ },
495
+ "access" : "readonly",
496
+ "description" :
497
+ """This bitmap represents the capability of the switch
498
+ on this Fabric:
499
+
500
+ 'enhancedMode' - able to support enhanced Zoning
501
+ mode of operation.
502
+
503
+ 'zoneSetDb' - able to support maintaining of
504
+ a Zone Set Database.
505
+
506
+ 'activateDirect' - able to support the Activate
507
+ Direct command.
508
+
509
+ 'hardZoning' - able to support Hard Zoning.""",
510
+ "reference" :
511
+ """Fibre Channel - Switch Fabric-4 (FC-SW-4),
512
+ ANSI INCITS 418-2006, April 2006, section 6.1.23.4.4""",
513
+ }, # column
514
+ "t11ZsServerDatabaseStorageType" : {
515
+ "nodetype" : "column",
516
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
517
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.3",
518
+ "status" : "current",
519
+ "syntax" : {
520
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
521
+ },
522
+ "access" : "readwrite",
523
+ "default" : "nonVolatile",
524
+ "description" :
525
+ """This object specifies the memory realization, on a
526
+ particular switch, of the Zone Set database for a
527
+ particular Fabric. Specifically, each row in the
528
+ following tables:
529
+
530
+ t11ZsSetTable
531
+ t11ZsZoneTable
532
+ t11ZsSetZoneTable
533
+ t11ZsAliasTable
534
+ t11ZsZoneMemberTable
535
+ t11ZsAttribBlockTable
536
+ t11ZsAttribTable
537
+
538
+ has a StorageType as specified by the instance of
539
+ this object that is INDEXed by the same values of
540
+ fcmInstanceIndex, fcmSwitchIndex, and
541
+
542
+
543
+ t11ZsServerFabricIndex.
544
+
545
+ The value of this object is also used to indicate
546
+ the persistence across reboots of writable values in
547
+ its row of the t11ZsServerTable, as well as the
548
+ corresponding row in the t11ZsNotifyControlTable.
549
+
550
+ If an instance of this object has the value
551
+ 'permanent(4)', the Zone Set database for the given
552
+ Fabric on the given switch is not required to be
553
+ writeable.""",
554
+ }, # column
555
+ "t11ZsServerDistribute" : {
556
+ "nodetype" : "column",
557
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
558
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.4",
559
+ "status" : "current",
560
+ "syntax" : {
561
+ "type" : {
562
+ "basetype" : "Enumeration",
563
+ "noop" : {
564
+ "nodetype" : "namednumber",
565
+ "number" : "1"
566
+ },
567
+ "zoneSetDb" : {
568
+ "nodetype" : "namednumber",
569
+ "number" : "2"
570
+ },
571
+ },
572
+ },
573
+ "access" : "readwrite",
574
+ "description" :
575
+ """This object can be set only in Basic mode. When set
576
+ to the value 'zoneSetDb', it requests that the Zone Set
577
+ database of a particular switch for a particular Fabric
578
+ be distributed to every other switch in that Fabric,
579
+ e.g., by using Stage Fabric Configuration Update (SFC)
580
+ and Update Fabric Configuration (UFC) requests.
581
+
582
+ Setting this object to 'noop' has no effect.
583
+ When read, the value of this object is always 'noop'.
584
+
585
+ When the corresponding instance of t11ZsServerOperationMode
586
+ has the value 'enhanced', or when the corresponding instance
587
+ of t11ZsZoneSetResult has the value 'inProgress', it
588
+ is inconsistent to try to set the value of this object.""",
589
+ "reference" :
590
+ """Fibre Channel - Switch Fabric-4 (FC-SW-4),
591
+ ANSI INCITS 418-2006, April 2006, section 6.1.19.1.""",
592
+ }, # column
593
+ "t11ZsServerCommit" : {
594
+ "nodetype" : "column",
595
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
596
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.5",
597
+ "status" : "current",
598
+ "syntax" : {
599
+ "type" : {
600
+ "basetype" : "Enumeration",
601
+ "commitZoneChanges" : {
602
+ "nodetype" : "namednumber",
603
+ "number" : "1"
604
+ },
605
+ "noop" : {
606
+ "nodetype" : "namednumber",
607
+ "number" : "2"
608
+ },
609
+ },
610
+ },
611
+ "access" : "readwrite",
612
+ "description" :
613
+ """This object is only used in Enhanced mode.
614
+
615
+ In Enhanced mode, it can only be modified when the Fabric
616
+ lock for the Zone Server on the particular Fabric has been
617
+ obtained for use by SNMP SetRequests, and even then, only
618
+ by the SNMP entity identified by the value of corresponding
619
+ instance of t11FLockInitiator.
620
+
621
+ Setting the object requests an action:
622
+
623
+ commitZoneChanges - requests that the changes made
624
+ within this session to the Zone
625
+ Set Database be committed.
626
+ noop - requests nothing.
627
+
628
+ When read, the value is always 'noop'.""",
629
+ "reference" :
630
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
631
+ ANSI INCITS 427-2007, section 6.4.10.2.""",
632
+ }, # column
633
+ "t11ZsServerResult" : {
634
+ "nodetype" : "column",
635
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
636
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.6",
637
+ "status" : "current",
638
+ "syntax" : {
639
+ "type" : {
640
+ "basetype" : "Enumeration",
641
+ "none" : {
642
+ "nodetype" : "namednumber",
643
+ "number" : "1"
644
+ },
645
+ "inProgress" : {
646
+ "nodetype" : "namednumber",
647
+ "number" : "2"
648
+ },
649
+ "success" : {
650
+ "nodetype" : "namednumber",
651
+ "number" : "3"
652
+ },
653
+ "rejectFailure" : {
654
+ "nodetype" : "namednumber",
655
+ "number" : "4"
656
+ },
657
+ "otherFailure" : {
658
+ "nodetype" : "namednumber",
659
+ "number" : "5"
660
+ },
661
+ },
662
+ },
663
+ "access" : "readonly",
664
+ "description" :
665
+ """In Basic mode, this object indicates the status/result
666
+ of the last distribution of the Zone Set database that
667
+ was invoked via the corresponding instance of
668
+ t11ZsZoneSetDistribute, e.g., the status/result of
669
+ Stage Fabric Configuration Update (SFC) request(s) used
670
+ to implement the setting of t11ZsZoneSetDistribute.
671
+
672
+ In Enhanced mode, this object indicates the status/result
673
+ of the last commit of changes to the Zone Set database
674
+ that was invoked via the corresponding instance of
675
+ t11ZsServerCommit.
676
+
677
+ 'none' - no distribution/commit invoked
678
+ via the corresponding instance of
679
+ t11ZsZoneSetDistribute (Basic mode)
680
+
681
+
682
+ or t11ZsServerCommit (Enhanced mode).
683
+ 'inProgress' - distribution/commit is still in
684
+ progress.
685
+ 'success' - distribution/commit completed
686
+ successfully.
687
+ 'rejectFailure' - distribution/commit failed due to
688
+ an SW_RJT.
689
+ 'otherFailure' - distribution/commit failed for some
690
+ other reason.
691
+
692
+ When the value is 'rejectFailure', the corresponding
693
+ instances of t11ZsServerReasonCode,
694
+ t11ZsServerReasonCodeExp and t11ZsServerReasonVendorCode
695
+ contain the reason codes. """,
696
+ "reference" :
697
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
698
+ ANSI INCITS 427-2007, section 6.4.10.2.3.""",
699
+ }, # column
700
+ "t11ZsServerReasonCode" : {
701
+ "nodetype" : "column",
702
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
703
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.7",
704
+ "status" : "current",
705
+ "syntax" : {
706
+ "type" : { "module" :"T11-FC-NAME-SERVER-MIB", "name" : "T11NsGs4RejectReasonCode"},
707
+ },
708
+ "access" : "readonly",
709
+ "description" :
710
+ """When the corresponding instance of t11ZsZoneSetResult
711
+ has the value 'rejectFailure', this object contains
712
+ the rejection's reason code.
713
+
714
+ When the corresponding instance of t11ZsServerResult
715
+ has a value other than 'rejectFailure', this object
716
+ should contain the value 'none'.""",
717
+ "reference" :
718
+ """Fibre Channel - Switch Fabric-4 (FC-SW-4),
719
+ ANSI INCITS 418-2006, April 2006, section 6.1.3 and
720
+ tables 4, 5, and 6.""",
721
+ }, # column
722
+ "t11ZsServerReasonCodeExp" : {
723
+ "nodetype" : "column",
724
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
725
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.8",
726
+ "status" : "current",
727
+ "syntax" : {
728
+ "type" : {
729
+ "basetype" : "OctetString",
730
+ "ranges" : [
731
+ {
732
+ "min" : "0",
733
+ "max" : "1"
734
+ },
735
+ ],
736
+ "range" : {
737
+ "min" : "0",
738
+ "max" : "1"
739
+ },
740
+ },
741
+ },
742
+ "access" : "readonly",
743
+ "description" :
744
+ """When the corresponding instance of t11ZsZoneSetResult
745
+ has the value 'rejectFailure', this object contains
746
+ the rejection's reason code explanation.
747
+
748
+ When the corresponding instance of t11ZsServerResult
749
+ has a value other than 'rejectFailure', this object
750
+
751
+
752
+
753
+ should contain the zero-length string.""",
754
+ "reference" :
755
+ """Fibre Channel - Switch Fabric-4 (FC-SW-4),
756
+ ANSI INCITS 418-2006, April 2006, section 6.1.3 and
757
+ tables 4, 5, and 6.""",
758
+ }, # column
759
+ "t11ZsServerReasonVendorCode" : {
760
+ "nodetype" : "column",
761
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
762
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.9",
763
+ "status" : "current",
764
+ "syntax" : {
765
+ "type" : {
766
+ "basetype" : "OctetString",
767
+ "ranges" : [
768
+ {
769
+ "min" : "0",
770
+ "max" : "1"
771
+ },
772
+ ],
773
+ "range" : {
774
+ "min" : "0",
775
+ "max" : "1"
776
+ },
777
+ },
778
+ },
779
+ "access" : "readonly",
780
+ "description" :
781
+ """When the corresponding instance of t11ZsZoneSetResult
782
+ has the value 'rejectFailure', this object contains
783
+ the rejection's reason vendor-specific code.
784
+
785
+ When the corresponding instance of t11ZsServerResult
786
+ has a value other than 'rejectFailure', this object
787
+ should contain the zero-length string.""",
788
+ "reference" :
789
+ """Fibre Channel - Switch Fabric-4 (FC-SW-4),
790
+ ANSI INCITS 418-2006, April 2006, section 6.1.3 and
791
+ tables 4, 5, and 6.""",
792
+ }, # column
793
+ "t11ZsServerLastChange" : {
794
+ "nodetype" : "column",
795
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
796
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.10",
797
+ "status" : "current",
798
+ "syntax" : {
799
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
800
+ },
801
+ "access" : "readonly",
802
+ "description" :
803
+ """The value of sysUpTime at the time of the last change
804
+ (creation, modification, or deletion) to the Zone Set
805
+ database for the Zone Server for a particular Fabric.
806
+ If said Zone Set database has not changed since the
807
+ last re-initialization of the local network management
808
+ system, then this object will contain a zero value.""",
809
+ }, # column
810
+ "t11ZsServerHardZoning" : {
811
+ "nodetype" : "column",
812
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
813
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.11",
814
+ "status" : "current",
815
+ "syntax" : {
816
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
817
+ },
818
+ "access" : "readonly",
819
+ "description" :
820
+ """This object indicates whether this switch, if and when it
821
+ is in Basic mode, enforces Hard Zoning on this Fabric.""",
822
+ "reference" :
823
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
824
+ ANSI INCITS 427-2007, section 6.4.10.3.2.""",
825
+ }, # column
826
+ "t11ZsServerReadFromDatabase" : {
827
+ "nodetype" : "column",
828
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
829
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.12",
830
+ "status" : "current",
831
+ "syntax" : {
832
+ "type" : {
833
+ "basetype" : "Enumeration",
834
+ "committedDB" : {
835
+ "nodetype" : "namednumber",
836
+ "number" : "1"
837
+ },
838
+ "copyDB" : {
839
+ "nodetype" : "namednumber",
840
+ "number" : "2"
841
+ },
842
+ },
843
+ },
844
+ "access" : "readwrite",
845
+ "default" : "committedDB",
846
+ "description" :
847
+ """In Enhanced mode, this object specifies whether
848
+ subsequent SNMP Responses (generated by the local SNMP
849
+ agent) to operations that read the configuration of
850
+ Zone Sets, Zones, Members, Aliases and Attributes will
851
+ reflect the values stored in the current (committed)
852
+ Zone Set database, or those stored in the 'copy'
853
+ database.
854
+
855
+ In Basic mode, the value of this object is always
856
+ 'committedDB' (since there is no 'copy' database in
857
+ Basic mode). In SNMP agents that don't support
858
+ write access to the Zone Set database, this object
859
+ is always 'committedDB' (since the copy database,
860
+ if it were to exist, would be identical).""",
861
+ }, # column
862
+ "t11ZsServerOperationMode" : {
863
+ "nodetype" : "column",
864
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
865
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.13",
866
+ "status" : "current",
867
+ "syntax" : {
868
+ "type" : {
869
+ "basetype" : "Enumeration",
870
+ "basic" : {
871
+ "nodetype" : "namednumber",
872
+ "number" : "1"
873
+ },
874
+ "enhanced" : {
875
+ "nodetype" : "namednumber",
876
+ "number" : "2"
877
+ },
878
+ },
879
+ },
880
+ "access" : "readwrite",
881
+ "default" : "basic",
882
+ "description" :
883
+ """The operational mode of the Zone Server.
884
+
885
+ Setting this object to 'enhanced' is a request that the mode
886
+ of operation of the Zone Server be Enhanced mode, which is
887
+ only possible if all devices in the Fibre Channel Fabric are
888
+ capable of working in Enhanced mode. If not, the request
889
+ will fail and the corresponding value of
890
+ t11ZsServerChangeModeResult will so indicate.
891
+
892
+ Setting this object to 'basic' is a request that the mode
893
+ of operation of the Zone Server be Basic mode. However,
894
+ such a set may fail while operating in Enhanced mode,
895
+ since FC-GS-5 makes no provision for changing (back)
896
+
897
+
898
+
899
+ to Basic mode.
900
+
901
+ Note that setting this object does not cause or require
902
+ that the Fabric lock for the Zone Server be obtained.
903
+ However, when this object has the value 'enhanced', any SNMP
904
+ SetRequests that attempt to modify the copy database cannot
905
+ be successful if the Fabric lock has not been obtained
906
+ or has since been released.""",
907
+ "reference" :
908
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
909
+ ANSI INCITS 427-2007, sections 6.4.10.1.1 and 6.4.10.1.2.""",
910
+ }, # column
911
+ "t11ZsServerChangeModeResult" : {
912
+ "nodetype" : "column",
913
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
914
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.14",
915
+ "status" : "current",
916
+ "syntax" : {
917
+ "type" : {
918
+ "basetype" : "Enumeration",
919
+ "success" : {
920
+ "nodetype" : "namednumber",
921
+ "number" : "1"
922
+ },
923
+ "failure" : {
924
+ "nodetype" : "namednumber",
925
+ "number" : "2"
926
+ },
927
+ "inProgress" : {
928
+ "nodetype" : "namednumber",
929
+ "number" : "3"
930
+ },
931
+ "none" : {
932
+ "nodetype" : "namednumber",
933
+ "number" : "4"
934
+ },
935
+ },
936
+ },
937
+ "access" : "readonly",
938
+ "description" :
939
+ """When this object has the value of 'success' or
940
+ 'failure', the value indicates the outcome of the most
941
+ recent request, invoked via t11ZsServerOperationMode,
942
+ to change the mode of operation of the Zone Server.
943
+ When such a request is in progress, this object has the
944
+ value 'inProgress'. Prior to the first such request,
945
+ the value of this object is 'none'.""",
946
+ }, # column
947
+ "t11ZsServerDefaultZoneSetting" : {
948
+ "nodetype" : "column",
949
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
950
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.15",
951
+ "status" : "current",
952
+ "syntax" : {
953
+ "type" : {
954
+ "basetype" : "Enumeration",
955
+ "permit" : {
956
+ "nodetype" : "namednumber",
957
+ "number" : "1"
958
+ },
959
+ "deny" : {
960
+ "nodetype" : "namednumber",
961
+ "number" : "2"
962
+ },
963
+ },
964
+ },
965
+ "access" : "readwrite",
966
+ "default" : "deny",
967
+ "description" :
968
+ """This object controls the Enhanced Zoning flag that
969
+ governs the behavior of the Default Zone on this Fabric.
970
+
971
+ If this object is set to 'permit', then the members of
972
+ the Default Zone on this Fabric can communicate with
973
+ each other.
974
+
975
+
976
+
977
+
978
+ If this object is set to 'deny', then the members of the
979
+ Default Zone on this Fabric cannot communicate with each
980
+ other.""",
981
+ "reference" :
982
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
983
+ ANSI INCITS 427-2007, section 6.4.10.1.1.""",
984
+ }, # column
985
+ "t11ZsServerMergeControlSetting" : {
986
+ "nodetype" : "column",
987
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
988
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.16",
989
+ "status" : "current",
990
+ "syntax" : {
991
+ "type" : {
992
+ "basetype" : "Enumeration",
993
+ "allow" : {
994
+ "nodetype" : "namednumber",
995
+ "number" : "1"
996
+ },
997
+ "restrict" : {
998
+ "nodetype" : "namednumber",
999
+ "number" : "2"
1000
+ },
1001
+ },
1002
+ },
1003
+ "access" : "readwrite",
1004
+ "default" : "allow",
1005
+ "description" :
1006
+ """This object controls the Enhanced Zoning flag that
1007
+ indicates the Merge Control Setting for this Fabric:
1008
+
1009
+ 'allow' - a switch may join the Fabric only if
1010
+ its Zoning Database is able to merge
1011
+ with the Fabric's Zoning Database.
1012
+ 'restrict' - a switch may join the Fabric only if
1013
+ its Zoning Database is equal to the
1014
+ Fabric's Zoning Database.""",
1015
+ "reference" :
1016
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
1017
+ ANSI INCITS 427-2007, section 6.4.10.1.1.""",
1018
+ }, # column
1019
+ "t11ZsServerDefZoneBroadcast" : {
1020
+ "nodetype" : "column",
1021
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1022
+ "oid" : "1.3.6.1.2.1.160.1.1.1.1.17",
1023
+ "status" : "current",
1024
+ "syntax" : {
1025
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1026
+ },
1027
+ "access" : "readwrite",
1028
+ "description" :
1029
+ """This object controls an Enhanced Zoning capability:
1030
+ it indicates whether Broadcast Zoning is enabled on
1031
+ the Default Zone on this Fabric. If this object is
1032
+ set to 'true', then it is enabled. If this object is
1033
+ set to 'false', then it is disabled.
1034
+
1035
+ If broadcast Zoning is enabled on a Default Zone,
1036
+ then broadcast frames generated by a member in that
1037
+ Default Zone will be restricted to members in that
1038
+ Default Zone.""",
1039
+ "reference" :
1040
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
1041
+ ANSI INCITS 427-2007, section 6.4.7.2.2.""",
1042
+ }, # column
1043
+ "t11ZsSetTable" : {
1044
+ "nodetype" : "table",
1045
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1046
+ "oid" : "1.3.6.1.2.1.160.1.1.2",
1047
+ "status" : "current",
1048
+ "description" :
1049
+ """A table containing information on every Zone
1050
+ Set in the Zone Set database of the Zone Servers
1051
+ on each Fabric in one or more switches.
1052
+
1053
+ In Enhanced mode, changes to a database made via this
1054
+ table are always made to the 'copy' database, but
1055
+ values read from this table reflect the contents of
1056
+ either the 'copy' database or the current (committed)
1057
+ database as indicated by the corresponding value of
1058
+ t11ZsServerReadFromDatabase.""",
1059
+ }, # table
1060
+ "t11ZsSetEntry" : {
1061
+ "nodetype" : "row",
1062
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1063
+ "oid" : "1.3.6.1.2.1.160.1.1.2.1",
1064
+ "create" : "true",
1065
+ "status" : "current",
1066
+ "linkage" : [
1067
+ "fcmInstanceIndex",
1068
+ "fcmSwitchIndex",
1069
+ "t11ZsServerFabricIndex",
1070
+ "t11ZsSetIndex",
1071
+ ],
1072
+ "description" :
1073
+ """Each entry contains information about a Zone Set
1074
+ in the Zone Set database of a particular Fabric
1075
+ (identified by the value of t11ZsServerFabricIndex)
1076
+ on a particular switch (identified by values of
1077
+ fcmInstanceIndex and fcmSwitchIndex).
1078
+
1079
+ A Zone Set can be created in an existing Zone Set
1080
+ database, and can contain zero or more existing
1081
+ Zones. As and when new Zones are created
1082
+ (as rows in the t11ZsZoneTable), they can be added
1083
+ to a Zone Set by creating an entry for each in the
1084
+ t11ZsSetZoneTable. Deleting a row from this table
1085
+ deletes the Zone Set from the Zone Set database
1086
+ maintained by the Zone Server, but does not otherwise
1087
+ affect the Zone Server.
1088
+
1089
+ The StorageType of a row in this table is specified by
1090
+ the instance of t11ZsServerDatabaseStorageType that is
1091
+
1092
+
1093
+
1094
+ INDEXed by the same values of fcmInstanceIndex,
1095
+ fcmSwitchIndex, and t11ZsServerFabricIndex.""",
1096
+ }, # row
1097
+ "t11ZsSetIndex" : {
1098
+ "nodetype" : "column",
1099
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1100
+ "oid" : "1.3.6.1.2.1.160.1.1.2.1.1",
1101
+ "status" : "current",
1102
+ "syntax" : {
1103
+ "type" : {
1104
+ "basetype" : "Unsigned32",
1105
+ "ranges" : [
1106
+ {
1107
+ "min" : "1",
1108
+ "max" : "4294967295"
1109
+ },
1110
+ ],
1111
+ "range" : {
1112
+ "min" : "1",
1113
+ "max" : "4294967295"
1114
+ },
1115
+ },
1116
+ },
1117
+ "access" : "noaccess",
1118
+ "description" :
1119
+ """The index of a Zone Set. This object uniquely
1120
+ identifies a Zone Set in the Zone Set database
1121
+ for a particular Fabric on a particular switch.""",
1122
+ }, # column
1123
+ "t11ZsSetName" : {
1124
+ "nodetype" : "column",
1125
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1126
+ "oid" : "1.3.6.1.2.1.160.1.1.2.1.2",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : { "module" :"T11-FC-ZONE-SERVER-MIB", "name" : "T11ZoningName"},
1130
+ },
1131
+ "access" : "readwrite",
1132
+ "description" :
1133
+ """The name of this Zone Set. The t11ZsSetName should
1134
+ be unique within a Fabric.
1135
+
1136
+ The Zone Set can be renamed at any time (i.e., even
1137
+ when the row in an active state) by setting this object
1138
+ to a new value.""",
1139
+ }, # column
1140
+ "t11ZsSetRowStatus" : {
1141
+ "nodetype" : "column",
1142
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1143
+ "oid" : "1.3.6.1.2.1.160.1.1.2.1.3",
1144
+ "status" : "current",
1145
+ "syntax" : {
1146
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1147
+ },
1148
+ "access" : "readwrite",
1149
+ "description" :
1150
+ """The status of this conceptual row.
1151
+
1152
+ This object cannot be set to 'active' unless the
1153
+ corresponding value of t11ZsSetName is unique within
1154
+ the Fabric's Zone Server database on this switch.""",
1155
+ }, # column
1156
+ "t11ZsZoneTable" : {
1157
+ "nodetype" : "table",
1158
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1159
+ "oid" : "1.3.6.1.2.1.160.1.1.3",
1160
+ "status" : "current",
1161
+ "description" :
1162
+ """This table gives information on all the Zones in the
1163
+ Zone Set database of the Zone Servers on each Fabric
1164
+ in one or more switches.
1165
+
1166
+ In Enhanced mode, changes to a database made via this
1167
+ table are always made to the 'copy' database, but
1168
+ values read from this table reflect the contents of
1169
+ either the 'copy' database or the current (committed)
1170
+ database as indicated by the corresponding value of
1171
+ t11ZsServerReadFromDatabase.""",
1172
+ }, # table
1173
+ "t11ZsZoneEntry" : {
1174
+ "nodetype" : "row",
1175
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1176
+ "oid" : "1.3.6.1.2.1.160.1.1.3.1",
1177
+ "create" : "true",
1178
+ "status" : "current",
1179
+ "linkage" : [
1180
+ "fcmInstanceIndex",
1181
+ "fcmSwitchIndex",
1182
+ "t11ZsServerFabricIndex",
1183
+ "t11ZsZoneIndex",
1184
+ ],
1185
+ "description" :
1186
+ """Each entry contains information about a Zone
1187
+ in the Zone Set database of a particular Fabric
1188
+ (identified by the value of t11ZsServerFabricIndex)
1189
+ on a particular switch (identified by values of
1190
+ fcmInstanceIndex and fcmSwitchIndex).
1191
+
1192
+ A Zone can be created in an existing Zone Set
1193
+ database, by first creating an entry in this table,
1194
+ and then adding members to it by creating entries in the
1195
+ t11ZsZoneMemberTable.
1196
+
1197
+ The StorageType of a row in this table is specified by
1198
+ the instance of t11ZsServerDatabaseStorageType that is
1199
+ INDEXed by the same values of fcmInstanceIndex,
1200
+ fcmSwitchIndex, and t11ZsServerFabricIndex.""",
1201
+ }, # row
1202
+ "t11ZsZoneIndex" : {
1203
+ "nodetype" : "column",
1204
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1205
+ "oid" : "1.3.6.1.2.1.160.1.1.3.1.1",
1206
+ "status" : "current",
1207
+ "syntax" : {
1208
+ "type" : {
1209
+ "basetype" : "Unsigned32",
1210
+ "ranges" : [
1211
+ {
1212
+ "min" : "1",
1213
+ "max" : "4294967295"
1214
+ },
1215
+ ],
1216
+ "range" : {
1217
+ "min" : "1",
1218
+ "max" : "4294967295"
1219
+ },
1220
+ },
1221
+ },
1222
+ "access" : "noaccess",
1223
+ "description" :
1224
+ """An index value that uniquely identifies this
1225
+ Zone within a particular Fabric's Zone Set database
1226
+ on a particular switch.""",
1227
+ }, # column
1228
+ "t11ZsZoneName" : {
1229
+ "nodetype" : "column",
1230
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1231
+ "oid" : "1.3.6.1.2.1.160.1.1.3.1.2",
1232
+ "status" : "current",
1233
+ "syntax" : {
1234
+ "type" : { "module" :"T11-FC-ZONE-SERVER-MIB", "name" : "T11ZoningName"},
1235
+ },
1236
+ "access" : "readwrite",
1237
+ "description" :
1238
+ """The name of this Zone. The t11ZsZoneName should be
1239
+ unique within a Fabric.
1240
+
1241
+ The Zone can be renamed by setting this object
1242
+ to a new value.""",
1243
+ }, # column
1244
+ "t11ZsZoneAttribBlock" : {
1245
+ "nodetype" : "column",
1246
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1247
+ "oid" : "1.3.6.1.2.1.160.1.1.3.1.3",
1248
+ "status" : "current",
1249
+ "syntax" : {
1250
+ "type" : {
1251
+ "basetype" : "Unsigned32",
1252
+ "ranges" : [
1253
+ {
1254
+ "min" : "0",
1255
+ "max" : "4294967295"
1256
+ },
1257
+ ],
1258
+ "range" : {
1259
+ "min" : "0",
1260
+ "max" : "4294967295"
1261
+ },
1262
+ },
1263
+ },
1264
+ "access" : "readwrite",
1265
+ "description" :
1266
+ """This object specifies the index value of the
1267
+ Zone Attribute Block that contains the Attributes
1268
+ of this Zone.
1269
+
1270
+ In Enhanced mode, a value of zero indicates this
1271
+ Zone has no Zone Attributes. In Basic mode, this
1272
+ object always has the value of zero.""",
1273
+ }, # column
1274
+ "t11ZsZoneRowStatus" : {
1275
+ "nodetype" : "column",
1276
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1277
+ "oid" : "1.3.6.1.2.1.160.1.1.3.1.4",
1278
+ "status" : "current",
1279
+ "syntax" : {
1280
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1281
+ },
1282
+ "access" : "readwrite",
1283
+ "description" :
1284
+ """The status of this conceptual row.
1285
+
1286
+ This object cannot be set to 'active' unless the
1287
+
1288
+
1289
+
1290
+ corresponding value of t11ZsZoneName is unique within
1291
+ the Fabric's Zone Server database on this switch.""",
1292
+ }, # column
1293
+ "t11ZsSetZoneTable" : {
1294
+ "nodetype" : "table",
1295
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1296
+ "oid" : "1.3.6.1.2.1.160.1.1.4",
1297
+ "status" : "current",
1298
+ "description" :
1299
+ """This table specifies which Zones belong to which Zone
1300
+ Sets in the Zone Set database of the Zone Servers
1301
+ on each Fabric in one or more switches.""",
1302
+ }, # table
1303
+ "t11ZsSetZoneEntry" : {
1304
+ "nodetype" : "row",
1305
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1306
+ "oid" : "1.3.6.1.2.1.160.1.1.4.1",
1307
+ "create" : "true",
1308
+ "status" : "current",
1309
+ "linkage" : [
1310
+ "fcmInstanceIndex",
1311
+ "fcmSwitchIndex",
1312
+ "t11ZsServerFabricIndex",
1313
+ "t11ZsSetIndex",
1314
+ "t11ZsZoneIndex",
1315
+ ],
1316
+ "description" :
1317
+ """Each entry specifies that a particular Zone (identified
1318
+ by the value of t11ZsZoneIndex) is one of the Zones
1319
+ that form a particular Zone Set (identified by the
1320
+ value of t11ZsSetIndex) in the Zone Set database of a
1321
+ particular Fabric (identified by the value of
1322
+ t11ZsServerFabricIndex) on a particular switch
1323
+ (identified by values of fcmInstanceIndex and
1324
+ fcmSwitchIndex).
1325
+
1326
+ When a row in this table exists, it references one row in
1327
+ the t11ZsSetTable and one row in the t11ZsZoneTable. The
1328
+ agent must ensure that both such rows when referenced by an
1329
+ active row in this table, do exist and have a status of
1330
+ 'active', either by refusing to create new rows in this
1331
+ table, or by automatically deleting rows in this table.
1332
+
1333
+ An 'active' row in this table references one row in the
1334
+ t11ZsSetTable and one in the t11ZsZoneTable. The agent must
1335
+ ensure that all such referenced rows exist with a status of
1336
+ 'active', either by refusing to create new active rows in
1337
+ this table, or by automatically deleting any rows in this
1338
+ table that reference a deleted row.
1339
+
1340
+ The StorageType of a row in this table is specified by
1341
+ the instance of t11ZsServerDatabaseStorageType that is
1342
+
1343
+
1344
+
1345
+ INDEXed by the same values of fcmInstanceIndex,
1346
+ fcmSwitchIndex, and t11ZsServerFabricIndex.""",
1347
+ }, # row
1348
+ "t11ZsSetZoneRowStatus" : {
1349
+ "nodetype" : "column",
1350
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1351
+ "oid" : "1.3.6.1.2.1.160.1.1.4.1.1",
1352
+ "status" : "current",
1353
+ "syntax" : {
1354
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1355
+ },
1356
+ "access" : "readwrite",
1357
+ "description" :
1358
+ """The status of this conceptual row.""",
1359
+ }, # column
1360
+ "t11ZsAliasTable" : {
1361
+ "nodetype" : "table",
1362
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1363
+ "oid" : "1.3.6.1.2.1.160.1.1.5",
1364
+ "status" : "current",
1365
+ "description" :
1366
+ """This table contains information about the Zone Aliases
1367
+ in the Zone Set database of the Zone Servers on each
1368
+ Fabric in one or more switches.
1369
+
1370
+ In Enhanced mode, changes to a database made via this
1371
+ table are always made to the 'copy' database, but
1372
+ values read from this table reflect the contents of
1373
+ either the 'copy' database or the current (committed)
1374
+ database as indicated by the corresponding value of
1375
+ t11ZsServerReadFromDatabase.""",
1376
+ }, # table
1377
+ "t11ZsAliasEntry" : {
1378
+ "nodetype" : "row",
1379
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1380
+ "oid" : "1.3.6.1.2.1.160.1.1.5.1",
1381
+ "create" : "true",
1382
+ "status" : "current",
1383
+ "linkage" : [
1384
+ "fcmInstanceIndex",
1385
+ "fcmSwitchIndex",
1386
+ "t11ZsServerFabricIndex",
1387
+ "t11ZsAliasIndex",
1388
+ ],
1389
+ "description" :
1390
+ """Each entry contains information about a Zone Alias in
1391
+ the Zone Set database of a particular Fabric
1392
+ (identified by the value of t11ZsServerFabricIndex) on
1393
+
1394
+
1395
+
1396
+ a particular switch (identified by values of
1397
+ fcmInstanceIndex and fcmSwitchIndex).
1398
+
1399
+ A Zone Member is added to a Zone Alias by creating
1400
+ an entry in the t11ZsZoneMemberTable pointing to a
1401
+ row of this table via t11ZsAliasIndex, i.e.,:
1402
+
1403
+ - t11ZsZoneMemberParentType = 'alias',
1404
+ - t11ZsZoneMemberParentIndex = Alias's t11ZsAliasIndex,
1405
+ - t11ZsZoneMemberFormat != '05 - Alias Name', and
1406
+ - t11ZsZoneMemberID = Member's identifier.
1407
+
1408
+ A Zone Alias is added to a Zone by creating
1409
+ an entry in the t11ZsZoneMemberTable pointing to a
1410
+ row of this table via t11ZsAliasName, i.e.,:
1411
+
1412
+ - t11ZsZoneMemberParentType = 'zone', and
1413
+ - t11ZsZoneMemberParentIndex = Zone's t11ZsZoneIndex,
1414
+ - t11ZsZoneMemberFormat = '05 - Alias Name',
1415
+ - t11ZsZoneMemberID = Alias's t11ZsAliasName.
1416
+
1417
+ The StorageType of a row in this table is specified by
1418
+ the instance of t11ZsServerDatabaseStorageType that is
1419
+ INDEXed by the same values of fcmInstanceIndex,
1420
+ fcmSwitchIndex, and t11ZsServerFabricIndex.""",
1421
+ }, # row
1422
+ "t11ZsAliasIndex" : {
1423
+ "nodetype" : "column",
1424
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1425
+ "oid" : "1.3.6.1.2.1.160.1.1.5.1.1",
1426
+ "status" : "current",
1427
+ "syntax" : {
1428
+ "type" : {
1429
+ "basetype" : "Unsigned32",
1430
+ "ranges" : [
1431
+ {
1432
+ "min" : "1",
1433
+ "max" : "4294967295"
1434
+ },
1435
+ ],
1436
+ "range" : {
1437
+ "min" : "1",
1438
+ "max" : "4294967295"
1439
+ },
1440
+ },
1441
+ },
1442
+ "access" : "noaccess",
1443
+ "description" :
1444
+ """An index value which uniquely identifies this Zone
1445
+ Alias within the Zone Set database of a particular
1446
+ Fabric on a particular switch.""",
1447
+ }, # column
1448
+ "t11ZsAliasName" : {
1449
+ "nodetype" : "column",
1450
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1451
+ "oid" : "1.3.6.1.2.1.160.1.1.5.1.2",
1452
+ "status" : "current",
1453
+ "syntax" : {
1454
+ "type" : { "module" :"T11-FC-ZONE-SERVER-MIB", "name" : "T11ZoningName"},
1455
+ },
1456
+ "access" : "readwrite",
1457
+ "description" :
1458
+ """The name of this Zone Alias. The name of the Zone
1459
+ Alias should be unique within a Fabric.
1460
+
1461
+ The Zone Alias can be renamed by setting this object
1462
+ to a new value if and when it is not in a Zone, i.e.,
1463
+ if and only if the current name is not the value of
1464
+ any t11ZsZoneMemberID in the same Zone Set database.""",
1465
+ }, # column
1466
+ "t11ZsAliasRowStatus" : {
1467
+ "nodetype" : "column",
1468
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1469
+ "oid" : "1.3.6.1.2.1.160.1.1.5.1.3",
1470
+ "status" : "current",
1471
+ "syntax" : {
1472
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1473
+ },
1474
+ "access" : "readwrite",
1475
+ "description" :
1476
+ """The status of this conceptual row.
1477
+
1478
+ This object cannot be set to 'active' unless the
1479
+ corresponding value of t11ZsAliasName is unique within
1480
+ the Fabric's Zone Server database on this switch.""",
1481
+ }, # column
1482
+ "t11ZsZoneMemberTable" : {
1483
+ "nodetype" : "table",
1484
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1485
+ "oid" : "1.3.6.1.2.1.160.1.1.6",
1486
+ "status" : "current",
1487
+ "description" :
1488
+ """This table contains all members of a Zone/Zone Alias
1489
+ and information about those members in the Zone Set
1490
+ database of the Zone Servers on each Fabric in one or
1491
+ more switches.
1492
+
1493
+ In Enhanced mode, changes to a database made via this
1494
+ table are always made to the 'copy' database, but
1495
+ values read from this table reflect the contents of
1496
+ either the 'copy' database or the current (committed)
1497
+ database as indicated by the corresponding value of
1498
+ t11ZsServerReadFromDatabase.""",
1499
+ }, # table
1500
+ "t11ZsZoneMemberEntry" : {
1501
+ "nodetype" : "row",
1502
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1503
+ "oid" : "1.3.6.1.2.1.160.1.1.6.1",
1504
+ "create" : "true",
1505
+ "status" : "current",
1506
+ "linkage" : [
1507
+ "fcmInstanceIndex",
1508
+ "fcmSwitchIndex",
1509
+ "t11ZsServerFabricIndex",
1510
+ "t11ZsZoneMemberParentType",
1511
+ "t11ZsZoneMemberParentIndex",
1512
+ "t11ZsZoneMemberIndex",
1513
+ ],
1514
+ "description" :
1515
+ """Each entry represents the relationship between a
1516
+ member and (one of) its 'parent(s)', i.e., a Zone
1517
+ or Zone Alias to which the member belongs, within
1518
+ a particular Fabric (identified by the value of
1519
+ t11ZsServerFabricIndex) on a particular switch
1520
+ (identified by values of fcmInstanceIndex and
1521
+ fcmSwitchIndex).
1522
+
1523
+ A Zone member (other than an alias) is added to a
1524
+ Zone by creating an entry in this table having:
1525
+
1526
+ - t11ZsZoneMemberParentType = 'zone', and
1527
+ - t11ZsZoneMemberParentIndex = Zone's t11ZsZoneIndex,
1528
+ - t11ZsZoneMemberFormat != '05 - Alias Name',
1529
+ - t11ZsZoneMemberID = Member's identifier.
1530
+
1531
+ An 'active' row in this table references rows in other
1532
+ tables. The agent must ensure that all such referenced
1533
+ rows exist with a status of 'active', either by refusing to
1534
+ create new active rows in this table, or by automatically
1535
+ deleting any rows in this table that reference a deleted
1536
+ row.
1537
+
1538
+ The StorageType of a row in this table is specified by
1539
+ the instance of t11ZsServerDatabaseStorageType that is
1540
+ INDEXed by the same values of fcmInstanceIndex,
1541
+ fcmSwitchIndex, and t11ZsServerFabricIndex.""",
1542
+ }, # row
1543
+ "t11ZsZoneMemberParentType" : {
1544
+ "nodetype" : "column",
1545
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1546
+ "oid" : "1.3.6.1.2.1.160.1.1.6.1.1",
1547
+ "status" : "current",
1548
+ "syntax" : {
1549
+ "type" : {
1550
+ "basetype" : "Enumeration",
1551
+ "zone" : {
1552
+ "nodetype" : "namednumber",
1553
+ "number" : "1"
1554
+ },
1555
+ "alias" : {
1556
+ "nodetype" : "namednumber",
1557
+ "number" : "2"
1558
+ },
1559
+ },
1560
+ },
1561
+ "access" : "noaccess",
1562
+ "description" :
1563
+ """This object determines whether this member belongs
1564
+ to a Zone or Zone Alias.""",
1565
+ }, # column
1566
+ "t11ZsZoneMemberParentIndex" : {
1567
+ "nodetype" : "column",
1568
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1569
+ "oid" : "1.3.6.1.2.1.160.1.1.6.1.2",
1570
+ "status" : "current",
1571
+ "syntax" : {
1572
+ "type" : {
1573
+ "basetype" : "Unsigned32",
1574
+ "ranges" : [
1575
+ {
1576
+ "min" : "1",
1577
+ "max" : "4294967295"
1578
+ },
1579
+ ],
1580
+ "range" : {
1581
+ "min" : "1",
1582
+ "max" : "4294967295"
1583
+ },
1584
+ },
1585
+ },
1586
+ "access" : "noaccess",
1587
+ "description" :
1588
+ """This object contains the index value of the Zone or
1589
+ Zone Alias to which this member belongs.
1590
+
1591
+ If the value of the corresponding instance of
1592
+ t11ZsZoneMemberParentType is 'zone', then this object
1593
+ will contain the value of the t11ZsZoneIndex object of
1594
+ the Zone to which this member belongs.
1595
+
1596
+ If the value of the corresponding instance of
1597
+ t11ZsZoneMemberParentType is 'alias', then this object
1598
+ will contain the value of the t11ZsAliasIndex object
1599
+ of the Zone Alias to which this member belongs.""",
1600
+ }, # column
1601
+ "t11ZsZoneMemberIndex" : {
1602
+ "nodetype" : "column",
1603
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1604
+ "oid" : "1.3.6.1.2.1.160.1.1.6.1.3",
1605
+ "status" : "current",
1606
+ "syntax" : {
1607
+ "type" : {
1608
+ "basetype" : "Unsigned32",
1609
+ "ranges" : [
1610
+ {
1611
+ "min" : "1",
1612
+ "max" : "4294967295"
1613
+ },
1614
+ ],
1615
+ "range" : {
1616
+ "min" : "1",
1617
+ "max" : "4294967295"
1618
+ },
1619
+ },
1620
+ },
1621
+ "access" : "noaccess",
1622
+ "description" :
1623
+ """An index value that uniquely identifies this Zone
1624
+ Member amongst all Zone Members in the Zone Set
1625
+ database of a particular Fabric on a particular switch.""",
1626
+ }, # column
1627
+ "t11ZsZoneMemberFormat" : {
1628
+ "nodetype" : "column",
1629
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1630
+ "oid" : "1.3.6.1.2.1.160.1.1.6.1.4",
1631
+ "status" : "current",
1632
+ "syntax" : {
1633
+ "type" : { "module" :"T11-FC-ZONE-SERVER-MIB", "name" : "T11ZsZoneMemberType"},
1634
+ },
1635
+ "access" : "readwrite",
1636
+ "description" :
1637
+ """This object identifies the format of the
1638
+ Zone/Zone Alias member's identifier contained in
1639
+ t11ZsZoneMemberID.
1640
+
1641
+ This object cannot be modified while the corresponding
1642
+ value of t11ZsZoneMemberRowStatus object is 'active'.""",
1643
+ }, # column
1644
+ "t11ZsZoneMemberID" : {
1645
+ "nodetype" : "column",
1646
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1647
+ "oid" : "1.3.6.1.2.1.160.1.1.6.1.5",
1648
+ "status" : "current",
1649
+ "syntax" : {
1650
+ "type" : {
1651
+ "basetype" : "OctetString",
1652
+ "ranges" : [
1653
+ {
1654
+ "min" : "1",
1655
+ "max" : "255"
1656
+ },
1657
+ ],
1658
+ "range" : {
1659
+ "min" : "1",
1660
+ "max" : "255"
1661
+ },
1662
+ },
1663
+ },
1664
+ "access" : "readwrite",
1665
+ "description" :
1666
+ """This object contains the Member Identifier of the
1667
+ Zone or Alias. The interpretation of this object
1668
+ depends on the value of the corresponding instance
1669
+ of t11ZsZoneMemberFormat:
1670
+
1671
+ - if t11ZsZoneMemberFormat is 'N_Port_Name', then
1672
+ this object contains an N_Port_Name.
1673
+
1674
+ - if t11ZsZoneMemberFormat is 'Domain_ID and physical
1675
+ port', then this object contains a 4-octet value in
1676
+ network byte order. The first octet is zero,
1677
+ the second octet contains the Domain_ID, and the
1678
+ last 2 octets contain the physical port number.
1679
+
1680
+ - if t11ZsZoneMemberFormat is 'N_Port_ID', then this
1681
+ object contains the 3-octet Nx_Port FC_ID.
1682
+
1683
+ - if t11ZsZoneMemberFormat is 'Alias Name', then
1684
+ this object contains the value of t11ZsAliasName
1685
+ for some Alias in the same Zone Set database.
1686
+
1687
+ - if t11ZsZoneMemberFormat is 'Node_Name', then
1688
+ this object contains an 8-octet Node_Name.
1689
+
1690
+ - if t11ZsZoneMemberFormat is 'F_Port_Name', then
1691
+ this object contains an 8-octet F_Port_Name.
1692
+
1693
+ - if t11ZsZoneMemberFormat is one of the 'Vendor
1694
+ Specific' values, then this object contains a value
1695
+ of 1 to 255 octets in a format defined by the relevant
1696
+ vendor.
1697
+
1698
+ This object cannot be modified while the corresponding
1699
+ value of t11ZsZoneMemberRowStatus object is 'active'.""",
1700
+ }, # column
1701
+ "t11ZsZoneMemberRowStatus" : {
1702
+ "nodetype" : "column",
1703
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1704
+ "oid" : "1.3.6.1.2.1.160.1.1.6.1.6",
1705
+ "status" : "current",
1706
+ "syntax" : {
1707
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1708
+ },
1709
+ "access" : "readwrite",
1710
+ "description" :
1711
+ """The status of this conceptual row.
1712
+
1713
+
1714
+
1715
+
1716
+ The corresponding instances of t11ZsZoneMemberID and
1717
+ t11ZsZoneMemberFormat objects must be set before or
1718
+ concurrently with setting this object to 'active'.""",
1719
+ }, # column
1720
+ "t11ZsAttribBlockTable" : {
1721
+ "nodetype" : "table",
1722
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1723
+ "oid" : "1.3.6.1.2.1.160.1.1.7",
1724
+ "status" : "current",
1725
+ "description" :
1726
+ """This table gives information on all the Zone
1727
+ Attributes in the Zone Set database of the Zone
1728
+ Servers on each Fabric in one or more switches.
1729
+
1730
+ In Enhanced mode, changes to a database made via this
1731
+ table are always made to the 'copy' database, but
1732
+ values read from this table reflect the contents of
1733
+ either the 'copy' database or the current (committed)
1734
+ database as indicated by the corresponding value of
1735
+ t11ZsServerReadFromDatabase.""",
1736
+ }, # table
1737
+ "t11ZsAttribBlockEntry" : {
1738
+ "nodetype" : "row",
1739
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1740
+ "oid" : "1.3.6.1.2.1.160.1.1.7.1",
1741
+ "create" : "true",
1742
+ "status" : "current",
1743
+ "linkage" : [
1744
+ "fcmInstanceIndex",
1745
+ "fcmSwitchIndex",
1746
+ "t11ZsServerFabricIndex",
1747
+ "t11ZsAttribBlockIndex",
1748
+ ],
1749
+ "description" :
1750
+ """Each entry contains information about a Zone Attribute
1751
+ Block (of Zone Attributes) in the Zone Set database
1752
+ of a particular Fabric (identified by the value of
1753
+ t11ZsServerFabricIndex) on a particular switch
1754
+ (identified by values of fcmInstanceIndex and
1755
+ fcmSwitchIndex).
1756
+
1757
+ An 'active' row in this table references a row in the
1758
+ t11ZsAttribBlockTable. The agent must ensure that the
1759
+ referenced rows exists with a status of 'active', either by
1760
+ refusing to create new active rows in this table, or by
1761
+ automatically deleting any rows in this table that
1762
+ reference a deleted row.
1763
+
1764
+ The StorageType of a row in this table is specified by
1765
+ the instance of t11ZsServerDatabaseStorageType that is
1766
+ INDEXed by the same values of fcmInstanceIndex,
1767
+
1768
+
1769
+
1770
+ fcmSwitchIndex, and t11ZsServerFabricIndex.""",
1771
+ }, # row
1772
+ "t11ZsAttribBlockIndex" : {
1773
+ "nodetype" : "column",
1774
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1775
+ "oid" : "1.3.6.1.2.1.160.1.1.7.1.1",
1776
+ "status" : "current",
1777
+ "syntax" : {
1778
+ "type" : {
1779
+ "basetype" : "Unsigned32",
1780
+ "ranges" : [
1781
+ {
1782
+ "min" : "1",
1783
+ "max" : "4294967295"
1784
+ },
1785
+ ],
1786
+ "range" : {
1787
+ "min" : "1",
1788
+ "max" : "4294967295"
1789
+ },
1790
+ },
1791
+ },
1792
+ "access" : "noaccess",
1793
+ "description" :
1794
+ """An index value that uniquely identifies this Zone
1795
+ Attribute within the Zone Set database of a particular
1796
+ Fabric on a particular switch.""",
1797
+ }, # column
1798
+ "t11ZsAttribBlockName" : {
1799
+ "nodetype" : "column",
1800
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1801
+ "oid" : "1.3.6.1.2.1.160.1.1.7.1.2",
1802
+ "status" : "current",
1803
+ "syntax" : {
1804
+ "type" : { "module" :"T11-FC-ZONE-SERVER-MIB", "name" : "T11ZoningName"},
1805
+ },
1806
+ "access" : "readwrite",
1807
+ "description" :
1808
+ """The name of this Zone Attribute Block, which should
1809
+ be unique within the Fabric.""",
1810
+ }, # column
1811
+ "t11ZsAttribBlockRowStatus" : {
1812
+ "nodetype" : "column",
1813
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1814
+ "oid" : "1.3.6.1.2.1.160.1.1.7.1.3",
1815
+ "status" : "current",
1816
+ "syntax" : {
1817
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1818
+ },
1819
+ "access" : "readwrite",
1820
+ "description" :
1821
+ """The status of this conceptual row.""",
1822
+ }, # column
1823
+ "t11ZsAttribTable" : {
1824
+ "nodetype" : "table",
1825
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1826
+ "oid" : "1.3.6.1.2.1.160.1.1.8",
1827
+ "status" : "current",
1828
+ "description" :
1829
+ """This table gives information on the Zone Attributes
1830
+ within the Zone Attribute Blocks in the Zone Set
1831
+ database of the Zone Servers on each Fabric in one
1832
+ or more switches.
1833
+
1834
+ In Enhanced mode, changes to a database made via this
1835
+ table are always made to the 'copy' database, but
1836
+ values read from this table reflect the contents of
1837
+ either the 'copy' database or the current (committed)
1838
+ database as indicated by the corresponding value of
1839
+ t11ZsServerReadFromDatabase.""",
1840
+ }, # table
1841
+ "t11ZsAttribEntry" : {
1842
+ "nodetype" : "row",
1843
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1844
+ "oid" : "1.3.6.1.2.1.160.1.1.8.1",
1845
+ "create" : "true",
1846
+ "status" : "current",
1847
+ "linkage" : [
1848
+ "fcmInstanceIndex",
1849
+ "fcmSwitchIndex",
1850
+ "t11ZsServerFabricIndex",
1851
+ "t11ZsAttribBlockIndex",
1852
+ "t11ZsAttribIndex",
1853
+ ],
1854
+ "description" :
1855
+ """Each entry contains information about a Zone
1856
+ Attribute in a Zone Attribute Block (identified by
1857
+ t11ZsAttribBlockIndex) in the Zone Set database of
1858
+ a particular Fabric (identified by the value of
1859
+ t11ZsServerFabricIndex) on a particular switch
1860
+ (identified by values of fcmInstanceIndex and
1861
+ fcmSwitchIndex).
1862
+
1863
+ An entry in this table cannot be created prior to
1864
+ its associated entry in the t11ZsAttribBlockTable.
1865
+
1866
+ The StorageType of a row in this table is specified by
1867
+ the instance of t11ZsServerDatabaseStorageType that is
1868
+ INDEXed by the same values of fcmInstanceIndex,
1869
+ fcmSwitchIndex, and t11ZsServerFabricIndex.""",
1870
+ }, # row
1871
+ "t11ZsAttribIndex" : {
1872
+ "nodetype" : "column",
1873
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1874
+ "oid" : "1.3.6.1.2.1.160.1.1.8.1.1",
1875
+ "status" : "current",
1876
+ "syntax" : {
1877
+ "type" : {
1878
+ "basetype" : "Unsigned32",
1879
+ "ranges" : [
1880
+ {
1881
+ "min" : "1",
1882
+ "max" : "4294967295"
1883
+ },
1884
+ ],
1885
+ "range" : {
1886
+ "min" : "1",
1887
+ "max" : "4294967295"
1888
+ },
1889
+ },
1890
+ },
1891
+ "access" : "noaccess",
1892
+ "description" :
1893
+ """An index value that uniquely identifies this
1894
+ Zone Attribute within its Zone Attribute Block in
1895
+ the Zone Set database of a particular Fabric on a
1896
+ particular switch.""",
1897
+ }, # column
1898
+ "t11ZsAttribType" : {
1899
+ "nodetype" : "column",
1900
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1901
+ "oid" : "1.3.6.1.2.1.160.1.1.8.1.2",
1902
+ "status" : "current",
1903
+ "syntax" : {
1904
+ "type" : {
1905
+ "basetype" : "Unsigned32",
1906
+ "ranges" : [
1907
+ {
1908
+ "min" : "0",
1909
+ "max" : "65535"
1910
+ },
1911
+ ],
1912
+ "range" : {
1913
+ "min" : "0",
1914
+ "max" : "65535"
1915
+ },
1916
+ },
1917
+ },
1918
+ "access" : "readwrite",
1919
+ "description" :
1920
+ """The type of attribute:
1921
+
1922
+ 0001 - Protocol
1923
+ 0002 - Broadcast Zone
1924
+ 0003 - Hard Zone
1925
+ 00E0 (hex) - Vendor Specific.""",
1926
+ "reference" :
1927
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
1928
+ ANSI INCITS 427-2007, section 6.4.8.3.8, Table 249.""",
1929
+ }, # column
1930
+ "t11ZsAttribValue" : {
1931
+ "nodetype" : "column",
1932
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1933
+ "oid" : "1.3.6.1.2.1.160.1.1.8.1.3",
1934
+ "status" : "current",
1935
+ "syntax" : {
1936
+ "type" : {
1937
+ "basetype" : "OctetString",
1938
+ "ranges" : [
1939
+ {
1940
+ "min" : "4",
1941
+ "max" : "252"
1942
+ },
1943
+ ],
1944
+ "range" : {
1945
+ "min" : "4",
1946
+ "max" : "252"
1947
+ },
1948
+ },
1949
+ },
1950
+ "access" : "readwrite",
1951
+ "description" :
1952
+ """The value of the attribute, formatted as specified
1953
+ in FC-GS-5 for the type given by the corresponding
1954
+ instance of t11ZsAttribType.
1955
+
1956
+ Note that FC-GS-5 requires that the length of this
1957
+ value is a multiple of 4 bytes.""",
1958
+ "reference" :
1959
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
1960
+ ANSI INCITS 427-2007, section 6.4.8.3.8.""",
1961
+ }, # column
1962
+ "t11ZsAttribRowStatus" : {
1963
+ "nodetype" : "column",
1964
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1965
+ "oid" : "1.3.6.1.2.1.160.1.1.8.1.4",
1966
+ "status" : "current",
1967
+ "syntax" : {
1968
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1969
+ },
1970
+ "access" : "readwrite",
1971
+ "description" :
1972
+ """The status of this conceptual row.""",
1973
+ }, # column
1974
+ "t11ZsActivateTable" : {
1975
+ "nodetype" : "table",
1976
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1977
+ "oid" : "1.3.6.1.2.1.160.1.1.9",
1978
+ "status" : "current",
1979
+ "description" :
1980
+ """This table provides a mechanism to allow a Zone Set
1981
+ to be activated on a Fabric.""",
1982
+ }, # table
1983
+ "t11ZsActivateEntry" : {
1984
+ "nodetype" : "row",
1985
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
1986
+ "oid" : "1.3.6.1.2.1.160.1.1.9.1",
1987
+ "status" : "current",
1988
+ "linkage" : [
1989
+ "fcmInstanceIndex",
1990
+ "fcmSwitchIndex",
1991
+ "t11ZsServerFabricIndex",
1992
+ ],
1993
+ "description" :
1994
+ """Each entry reflects the state of the activation of a
1995
+ Zone Set by a particular switch (identified by values
1996
+ of fcmInstanceIndex and fcmSwitchIndex) on a particular
1997
+ Fabric (identified by the value of
1998
+ t11ZsServerFabricIndex).""",
1999
+ }, # row
2000
+ "t11ZsActivateRequest" : {
2001
+ "nodetype" : "column",
2002
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2003
+ "oid" : "1.3.6.1.2.1.160.1.1.9.1.1",
2004
+ "status" : "current",
2005
+ "syntax" : {
2006
+ "type" : {
2007
+ "basetype" : "Unsigned32",
2008
+ "ranges" : [
2009
+ {
2010
+ "min" : "0",
2011
+ "max" : "4294967295"
2012
+ },
2013
+ ],
2014
+ "range" : {
2015
+ "min" : "0",
2016
+ "max" : "4294967295"
2017
+ },
2018
+ },
2019
+ },
2020
+ "access" : "readwrite",
2021
+ "description" :
2022
+ """Setting this object to a value is a request for a
2023
+ Zone Set to be activated on the Fabric that is
2024
+ represented by this row. The Zone Set to be
2025
+ activated is the one for which t11ZsSetIndex has
2026
+ the same value.
2027
+
2028
+ If a Zone Set is already active on a Fabric when a
2029
+ request is made to activate a different one on that
2030
+ Fabric, then the existing Zone Set is automatically
2031
+ deactivated and the specified Zone Set is activated
2032
+ in its place.
2033
+
2034
+ The value of this object when read is always 0.""",
2035
+ }, # column
2036
+ "t11ZsActivateDeactivate" : {
2037
+ "nodetype" : "column",
2038
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2039
+ "oid" : "1.3.6.1.2.1.160.1.1.9.1.2",
2040
+ "status" : "current",
2041
+ "syntax" : {
2042
+ "type" : {
2043
+ "basetype" : "Enumeration",
2044
+ "deactivate" : {
2045
+ "nodetype" : "namednumber",
2046
+ "number" : "1"
2047
+ },
2048
+ "noop" : {
2049
+ "nodetype" : "namednumber",
2050
+ "number" : "2"
2051
+ },
2052
+ },
2053
+ },
2054
+ "access" : "readwrite",
2055
+ "description" :
2056
+ """Setting this object to 'deactivate' is a request
2057
+ to deactivate the currently active Zone Set on
2058
+ a Fabric.
2059
+
2060
+ Note that the deactivation of the active Zone Set
2061
+ allows all ports to communicate or no ports to
2062
+ communicate, depending on the current Default Zone
2063
+ behavior.
2064
+
2065
+ No action is taken if this object is set to 'noop'.
2066
+ When read, the value of this object is always 'noop'.""",
2067
+ }, # column
2068
+ "t11ZsActivateResult" : {
2069
+ "nodetype" : "column",
2070
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2071
+ "oid" : "1.3.6.1.2.1.160.1.1.9.1.3",
2072
+ "status" : "current",
2073
+ "syntax" : {
2074
+ "type" : {
2075
+ "basetype" : "Enumeration",
2076
+ "activateSuccess" : {
2077
+ "nodetype" : "namednumber",
2078
+ "number" : "1"
2079
+ },
2080
+ "activateFailure" : {
2081
+ "nodetype" : "namednumber",
2082
+ "number" : "2"
2083
+ },
2084
+ "deactivateSuccess" : {
2085
+ "nodetype" : "namednumber",
2086
+ "number" : "3"
2087
+ },
2088
+ "deactivateFailure" : {
2089
+ "nodetype" : "namednumber",
2090
+ "number" : "4"
2091
+ },
2092
+ "inProgress" : {
2093
+ "nodetype" : "namednumber",
2094
+ "number" : "5"
2095
+ },
2096
+ "none" : {
2097
+ "nodetype" : "namednumber",
2098
+ "number" : "6"
2099
+ },
2100
+ },
2101
+ },
2102
+ "access" : "readonly",
2103
+ "description" :
2104
+ """This object indicates the outcome of the most recent
2105
+ activation/deactivation using this entry.
2106
+
2107
+ When the value of this object is 'inProgress', the
2108
+ values of the corresponding instances of
2109
+ t11ZsActivateRequest and t11ZsActivateDeactivate
2110
+ cannot be modified.
2111
+
2112
+ The value 'none' indicates activation/deactivation
2113
+ has not been attempted since the last restart of
2114
+ the management system.""",
2115
+ }, # column
2116
+ "t11ZsActivateFailCause" : {
2117
+ "nodetype" : "column",
2118
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2119
+ "oid" : "1.3.6.1.2.1.160.1.1.9.1.4",
2120
+ "status" : "current",
2121
+ "syntax" : {
2122
+ "type" : {
2123
+ "basetype" : "OctetString",
2124
+ "parent module" : {
2125
+ "name" : "SNMP-FRAMEWORK-MIB",
2126
+ "type" : "SnmpAdminString",
2127
+ },
2128
+ "ranges" : [
2129
+ {
2130
+ "min" : "0",
2131
+ "max" : "64"
2132
+ },
2133
+ ],
2134
+ "range" : {
2135
+ "min" : "0",
2136
+ "max" : "64"
2137
+ },
2138
+ },
2139
+ },
2140
+ "access" : "readonly",
2141
+ "description" :
2142
+ """A textual message indicating the reason for the
2143
+ most recent failure of a Zone Set activation or
2144
+ deactivation, or the zero-length string if no
2145
+ information is available (e.g., because the
2146
+ corresponding instance of t11ZsActivateResult
2147
+ has the value 'none').
2148
+
2149
+ When the corresponding instance of
2150
+ t11ZsActivateResult is either 'activateFailure'
2151
+ or 'deactivateFailure', the value of this object
2152
+ indicates the reason for that failure.""",
2153
+ }, # column
2154
+ "t11ZsActivateFailDomainId" : {
2155
+ "nodetype" : "column",
2156
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2157
+ "oid" : "1.3.6.1.2.1.160.1.1.9.1.5",
2158
+ "status" : "current",
2159
+ "syntax" : {
2160
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
2161
+ },
2162
+ "access" : "readonly",
2163
+ "description" :
2164
+ """If the failure cause (as indicated by
2165
+ t11ZsSetFailCause) was specific to a particular
2166
+ device, this object contains the Domain_ID of that
2167
+ device. Otherwise, this object contains zero.""",
2168
+ }, # column
2169
+ "t11ZsActiveTable" : {
2170
+ "nodetype" : "table",
2171
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2172
+ "oid" : "1.3.6.1.2.1.160.1.1.10",
2173
+ "status" : "current",
2174
+ "description" :
2175
+ """A table containing information on the currently
2176
+ enforced/active Zone Set on each Fabric.
2177
+ An active Zone Set cannot be modified.
2178
+ This table will be empty when no Zone Set is
2179
+ activated.""",
2180
+ }, # table
2181
+ "t11ZsActiveEntry" : {
2182
+ "nodetype" : "row",
2183
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2184
+ "oid" : "1.3.6.1.2.1.160.1.1.10.1",
2185
+ "status" : "current",
2186
+ "linkage" : [
2187
+ "fcmInstanceIndex",
2188
+ "fcmSwitchIndex",
2189
+ "t11ZsServerFabricIndex",
2190
+ ],
2191
+ "description" :
2192
+ """Each entry represents an active Zone Set of a
2193
+ particular Fabric (identified by the value of
2194
+ t11ZsServerFabricIndex), according to a particular
2195
+ switch (identified by values of fcmInstanceIndex and
2196
+ fcmSwitchIndex).""",
2197
+ }, # row
2198
+ "t11ZsActiveZoneSetName" : {
2199
+ "nodetype" : "column",
2200
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2201
+ "oid" : "1.3.6.1.2.1.160.1.1.10.1.1",
2202
+ "status" : "current",
2203
+ "syntax" : {
2204
+ "type" : { "module" :"T11-FC-ZONE-SERVER-MIB", "name" : "T11ZoningName"},
2205
+ },
2206
+ "access" : "readonly",
2207
+ "description" :
2208
+ """The name of this Zone Set on this Fabric.""",
2209
+ }, # column
2210
+ "t11ZsActiveActivateTime" : {
2211
+ "nodetype" : "column",
2212
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2213
+ "oid" : "1.3.6.1.2.1.160.1.1.10.1.2",
2214
+ "status" : "current",
2215
+ "syntax" : {
2216
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2217
+ },
2218
+ "access" : "readonly",
2219
+ "description" :
2220
+ """The value of sysUpTime at which this entry was most
2221
+ recently activated. If this row was activated prior to
2222
+ the last re-initialization of the local network management
2223
+ system, then this object will contain a zero value.""",
2224
+ }, # column
2225
+ "t11ZsActiveZoneTable" : {
2226
+ "nodetype" : "table",
2227
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2228
+ "oid" : "1.3.6.1.2.1.160.1.1.11",
2229
+ "status" : "current",
2230
+ "description" :
2231
+ """This table contains all the Zones that are present in
2232
+ the active Zone Sets on all Fabrics.""",
2233
+ }, # table
2234
+ "t11ZsActiveZoneEntry" : {
2235
+ "nodetype" : "row",
2236
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2237
+ "oid" : "1.3.6.1.2.1.160.1.1.11.1",
2238
+ "status" : "current",
2239
+ "linkage" : [
2240
+ "fcmInstanceIndex",
2241
+ "fcmSwitchIndex",
2242
+ "t11ZsServerFabricIndex",
2243
+ "t11ZsActiveZoneIndex",
2244
+ ],
2245
+ "description" :
2246
+ """Each entry represents a Zone in the active Zone Set
2247
+ of a particular Fabric (identified by the value of
2248
+ t11ZsServerFabricIndex), according to a particular
2249
+ switch (identified by values of fcmInstanceIndex and
2250
+ fcmSwitchIndex).""",
2251
+ }, # row
2252
+ "t11ZsActiveZoneIndex" : {
2253
+ "nodetype" : "column",
2254
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2255
+ "oid" : "1.3.6.1.2.1.160.1.1.11.1.1",
2256
+ "status" : "current",
2257
+ "syntax" : {
2258
+ "type" : {
2259
+ "basetype" : "Unsigned32",
2260
+ "ranges" : [
2261
+ {
2262
+ "min" : "1",
2263
+ "max" : "4294967295"
2264
+ },
2265
+ ],
2266
+ "range" : {
2267
+ "min" : "1",
2268
+ "max" : "4294967295"
2269
+ },
2270
+ },
2271
+ },
2272
+ "access" : "noaccess",
2273
+ "description" :
2274
+ """An index value that uniquely identifies this Zone
2275
+ within the active Zone Set on a particular Fabric.""",
2276
+ }, # column
2277
+ "t11ZsActiveZoneName" : {
2278
+ "nodetype" : "column",
2279
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2280
+ "oid" : "1.3.6.1.2.1.160.1.1.11.1.2",
2281
+ "status" : "current",
2282
+ "syntax" : {
2283
+ "type" : { "module" :"T11-FC-ZONE-SERVER-MIB", "name" : "T11ZoningName"},
2284
+ },
2285
+ "access" : "readonly",
2286
+ "description" :
2287
+ """The name of this Zone.""",
2288
+ }, # column
2289
+ "t11ZsActiveZoneBroadcastZoning" : {
2290
+ "nodetype" : "column",
2291
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2292
+ "oid" : "1.3.6.1.2.1.160.1.1.11.1.3",
2293
+ "status" : "current",
2294
+ "syntax" : {
2295
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2296
+ },
2297
+ "access" : "readonly",
2298
+ "description" :
2299
+ """This object indicates whether broadcast Zoning is
2300
+ enabled on this Zone. If broadcast Zoning is enabled,
2301
+ then broadcast frames generated by a member in this
2302
+ Zone will be restricted to members in this Zone.
2303
+
2304
+ This object is only instantiated in Enhanced mode.""",
2305
+ }, # column
2306
+ "t11ZsActiveZoneHardZoning" : {
2307
+ "nodetype" : "column",
2308
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2309
+ "oid" : "1.3.6.1.2.1.160.1.1.11.1.4",
2310
+ "status" : "current",
2311
+ "syntax" : {
2312
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2313
+ },
2314
+ "access" : "readonly",
2315
+ "description" :
2316
+ """This object indicates whether hard Zoning is
2317
+ enabled on this Zone.
2318
+
2319
+ This object is only instantiated in Enhanced mode.""",
2320
+ }, # column
2321
+ "t11ZsActiveZoneMemberTable" : {
2322
+ "nodetype" : "table",
2323
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2324
+ "oid" : "1.3.6.1.2.1.160.1.1.12",
2325
+ "status" : "current",
2326
+ "description" :
2327
+ """This table contains all members of all Zones
2328
+ within the active Zone Set on any Fabric.""",
2329
+ }, # table
2330
+ "t11ZsActiveZoneMemberEntry" : {
2331
+ "nodetype" : "row",
2332
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2333
+ "oid" : "1.3.6.1.2.1.160.1.1.12.1",
2334
+ "status" : "current",
2335
+ "linkage" : [
2336
+ "fcmInstanceIndex",
2337
+ "fcmSwitchIndex",
2338
+ "t11ZsServerFabricIndex",
2339
+ "t11ZsActiveZoneIndex",
2340
+ "t11ZsActiveZoneMemberIndex",
2341
+ ],
2342
+ "description" :
2343
+ """Each entry represents a member of a Zone in the active
2344
+ Zone Set of a particular Fabric (identified by the value
2345
+ t11ZsServerFabricIndex), according to a particular
2346
+ switch (identified by values of fcmInstanceIndex and
2347
+ fcmSwitchIndex).""",
2348
+ }, # row
2349
+ "t11ZsActiveZoneMemberIndex" : {
2350
+ "nodetype" : "column",
2351
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2352
+ "oid" : "1.3.6.1.2.1.160.1.1.12.1.1",
2353
+ "status" : "current",
2354
+ "syntax" : {
2355
+ "type" : {
2356
+ "basetype" : "Unsigned32",
2357
+ "ranges" : [
2358
+ {
2359
+ "min" : "1",
2360
+ "max" : "4294967295"
2361
+ },
2362
+ ],
2363
+ "range" : {
2364
+ "min" : "1",
2365
+ "max" : "4294967295"
2366
+ },
2367
+ },
2368
+ },
2369
+ "access" : "noaccess",
2370
+ "description" :
2371
+ """An index value that uniquely identifies this
2372
+ member amongst the members of a particular Zone
2373
+ in the active Zone Set on a particular Fabric.""",
2374
+ }, # column
2375
+ "t11ZsActiveZoneMemberFormat" : {
2376
+ "nodetype" : "column",
2377
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2378
+ "oid" : "1.3.6.1.2.1.160.1.1.12.1.2",
2379
+ "status" : "current",
2380
+ "syntax" : {
2381
+ "type" : { "module" :"T11-FC-ZONE-SERVER-MIB", "name" : "T11ZsZoneMemberType"},
2382
+ },
2383
+ "access" : "readonly",
2384
+ "description" :
2385
+ """This object identifies the identifier format of the
2386
+ corresponding instance of t11ZsActiveZoneMemberID.""",
2387
+ }, # column
2388
+ "t11ZsActiveZoneMemberID" : {
2389
+ "nodetype" : "column",
2390
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2391
+ "oid" : "1.3.6.1.2.1.160.1.1.12.1.3",
2392
+ "status" : "current",
2393
+ "syntax" : {
2394
+ "type" : {
2395
+ "basetype" : "OctetString",
2396
+ "ranges" : [
2397
+ {
2398
+ "min" : "1",
2399
+ "max" : "255"
2400
+ },
2401
+ ],
2402
+ "range" : {
2403
+ "min" : "1",
2404
+ "max" : "255"
2405
+ },
2406
+ },
2407
+ },
2408
+ "access" : "readonly",
2409
+ "description" :
2410
+ """This value of this object identifies the member
2411
+ using the format specified in the corresponding
2412
+ instance of t11ZsActiveZoneMemberFormat.""",
2413
+ }, # column
2414
+ "t11ZsActiveAttribTable" : {
2415
+ "nodetype" : "table",
2416
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2417
+ "oid" : "1.3.6.1.2.1.160.1.1.13",
2418
+ "status" : "current",
2419
+ "description" :
2420
+ """This table contains information about some of the
2421
+ Attributes of the Zones within the active Zone Set
2422
+ on each Fabric.
2423
+
2424
+ This table contains all the types of attributes
2425
+ that might apply zero, one, or more times to a Zone.
2426
+ Attributes that apply once and only to a Zone are
2427
+ specified in the t11ZsActiveZoneTable.
2428
+
2429
+ This table will always be empty in Basic mode.
2430
+ It will also be empty if there are no Zones in
2431
+ any active Zone Set having any of the applicable
2432
+ types of attributes.""",
2433
+ }, # table
2434
+ "t11ZsActiveAttribEntry" : {
2435
+ "nodetype" : "row",
2436
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2437
+ "oid" : "1.3.6.1.2.1.160.1.1.13.1",
2438
+ "status" : "current",
2439
+ "linkage" : [
2440
+ "fcmInstanceIndex",
2441
+ "fcmSwitchIndex",
2442
+ "t11ZsServerFabricIndex",
2443
+ "t11ZsActiveZoneIndex",
2444
+ "t11ZsActiveAttribIndex",
2445
+ ],
2446
+ "description" :
2447
+ """Each entry contains an Attribute of a particular
2448
+ Zone in the active Zone Set of a particular Fabric
2449
+ (identified by the value of t11ZsServerFabricIndex),
2450
+ according to a particular switch (identified by
2451
+ values of fcmInstanceIndex and fcmSwitchIndex).""",
2452
+ }, # row
2453
+ "t11ZsActiveAttribIndex" : {
2454
+ "nodetype" : "column",
2455
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2456
+ "oid" : "1.3.6.1.2.1.160.1.1.13.1.1",
2457
+ "status" : "current",
2458
+ "syntax" : {
2459
+ "type" : {
2460
+ "basetype" : "Unsigned32",
2461
+ "ranges" : [
2462
+ {
2463
+ "min" : "1",
2464
+ "max" : "4294967295"
2465
+ },
2466
+ ],
2467
+ "range" : {
2468
+ "min" : "1",
2469
+ "max" : "4294967295"
2470
+ },
2471
+ },
2472
+ },
2473
+ "access" : "noaccess",
2474
+ "description" :
2475
+ """An index value that uniquely identifies this
2476
+ attribute amongst the other attributes for a
2477
+ particular Zone in the active Zone Set on a
2478
+ particular Fabric.""",
2479
+ }, # column
2480
+ "t11ZsActiveAttribType" : {
2481
+ "nodetype" : "column",
2482
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2483
+ "oid" : "1.3.6.1.2.1.160.1.1.13.1.2",
2484
+ "status" : "current",
2485
+ "syntax" : {
2486
+ "type" : {
2487
+ "basetype" : "Unsigned32",
2488
+ "ranges" : [
2489
+ {
2490
+ "min" : "0",
2491
+ "max" : "65535"
2492
+ },
2493
+ ],
2494
+ "range" : {
2495
+ "min" : "0",
2496
+ "max" : "65535"
2497
+ },
2498
+ },
2499
+ },
2500
+ "access" : "readonly",
2501
+ "description" :
2502
+ """The type of attribute:
2503
+
2504
+ 0001 - Protocol
2505
+ 00E0 (hex) - Vendor Specific
2506
+
2507
+ Note that type 2 (Hard) and type 3 (Broadcast)
2508
+ do not need to be represented here, because they
2509
+ are represented by t11ZsActiveZoneBroadcastZoning and
2510
+ t11ZsActiveZoneHardZoning.""",
2511
+ "reference" :
2512
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
2513
+ ANSI INCITS 427-2007, section 6.4.8.3.8, Table 249.""",
2514
+ }, # column
2515
+ "t11ZsActiveAttribValue" : {
2516
+ "nodetype" : "column",
2517
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2518
+ "oid" : "1.3.6.1.2.1.160.1.1.13.1.3",
2519
+ "status" : "current",
2520
+ "syntax" : {
2521
+ "type" : {
2522
+ "basetype" : "OctetString",
2523
+ "ranges" : [
2524
+ {
2525
+ "min" : "0",
2526
+ "max" : "252"
2527
+ },
2528
+ ],
2529
+ "range" : {
2530
+ "min" : "0",
2531
+ "max" : "252"
2532
+ },
2533
+ },
2534
+ },
2535
+ "access" : "readonly",
2536
+ "description" :
2537
+ """The value of the attribute, formatted according to
2538
+ its type as indicated by the corresponding instance
2539
+ of t11ZsActiveAttribType.
2540
+
2541
+ As specified in FC-GS-5, the length of an attribute
2542
+ value is at least 4 bytes, and if necessary, the value
2543
+ is appended with zero bytes so that the length is a
2544
+ multiple of 4. For a Vendor-Specific attribute
2545
+ value, the first 8 bytes contain the T10 Vendor ID
2546
+ as described in FC-GS-5.""",
2547
+ "reference" :
2548
+ """Fibre Channel - Generic Services-5 (FC-GS-5),
2549
+ ANSI INCITS 427-2007, section 6.4.8.3.8.""",
2550
+ }, # column
2551
+ "t11ZsNotifyControlTable" : {
2552
+ "nodetype" : "table",
2553
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2554
+ "oid" : "1.3.6.1.2.1.160.1.1.14",
2555
+ "status" : "current",
2556
+ "description" :
2557
+ """A table of control information for notifications
2558
+ generated due to Zone Server events.""",
2559
+ }, # table
2560
+ "t11ZsNotifyControlEntry" : {
2561
+ "nodetype" : "row",
2562
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2563
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1",
2564
+ "status" : "current",
2565
+ "linkage" : [
2566
+ "fcmInstanceIndex",
2567
+ "fcmSwitchIndex",
2568
+ "t11ZsServerFabricIndex",
2569
+ ],
2570
+ "description" :
2571
+ """Each entry contains notification control information
2572
+ specific to a Zone Server for a particular Fabric
2573
+ (identified by the value of t11ZsServerFabricIndex)
2574
+ on a particular switch (identified by values of
2575
+ fcmInstanceIndex and fcmSwitchIndex).
2576
+
2577
+ The persistence across reboots of writable values in
2578
+ a row of this table is specified by the instance of
2579
+ t11ZsServerDatabaseStorageType that is INDEXed by
2580
+ the same values of fcmInstanceIndex, fcmSwitchIndex,
2581
+ and t11ZsServerFabricIndex.""",
2582
+ }, # row
2583
+ "t11ZsNotifyRequestRejectEnable" : {
2584
+ "nodetype" : "column",
2585
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2586
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.1",
2587
+ "status" : "current",
2588
+ "syntax" : {
2589
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2590
+ },
2591
+ "access" : "readwrite",
2592
+ "description" :
2593
+ """This object specifies whether t11ZsRequestRejectNotify
2594
+ notifications should be generated by the Zone Server
2595
+ for this Fabric.""",
2596
+ }, # column
2597
+ "t11ZsNotifyMergeFailureEnable" : {
2598
+ "nodetype" : "column",
2599
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2600
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.2",
2601
+ "status" : "current",
2602
+ "syntax" : {
2603
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2604
+ },
2605
+ "access" : "readwrite",
2606
+ "description" :
2607
+ """This object specifies whether t11ZsMergeFailureNotify
2608
+ notifications should be generated by the Zone Server
2609
+ for this Fabric.""",
2610
+ }, # column
2611
+ "t11ZsNotifyMergeSuccessEnable" : {
2612
+ "nodetype" : "column",
2613
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2614
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.3",
2615
+ "status" : "current",
2616
+ "syntax" : {
2617
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2618
+ },
2619
+ "access" : "readwrite",
2620
+ "description" :
2621
+ """This object specifies whether t11ZsMergeSuccessNotify
2622
+ notifications should be generated by the Zone Server
2623
+ for this Fabric.""",
2624
+ }, # column
2625
+ "t11ZsNotifyDefZoneChangeEnable" : {
2626
+ "nodetype" : "column",
2627
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2628
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.4",
2629
+ "status" : "current",
2630
+ "syntax" : {
2631
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2632
+ },
2633
+ "access" : "readwrite",
2634
+ "description" :
2635
+ """This object specifies whether t11ZsDefZoneChangeNotify
2636
+ notifications should be generated by the Zone Server
2637
+
2638
+
2639
+
2640
+ for this Fabric.""",
2641
+ }, # column
2642
+ "t11ZsNotifyActivateEnable" : {
2643
+ "nodetype" : "column",
2644
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2645
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.5",
2646
+ "status" : "current",
2647
+ "syntax" : {
2648
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2649
+ },
2650
+ "access" : "readwrite",
2651
+ "description" :
2652
+ """This object specifies whether t11ZsActivateNotify
2653
+ notifications should be generated by the Zone Server
2654
+ for this Fabric.""",
2655
+ }, # column
2656
+ "t11ZsRejectCtCommandString" : {
2657
+ "nodetype" : "column",
2658
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2659
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.6",
2660
+ "status" : "current",
2661
+ "syntax" : {
2662
+ "type" : {
2663
+ "basetype" : "OctetString",
2664
+ "ranges" : [
2665
+ {
2666
+ "min" : "0",
2667
+ "max" : "255"
2668
+ },
2669
+ ],
2670
+ "range" : {
2671
+ "min" : "0",
2672
+ "max" : "255"
2673
+ },
2674
+ },
2675
+ },
2676
+ "access" : "readonly",
2677
+ "description" :
2678
+ """The binary content of the Zone Server request,
2679
+ formatted as an octet string (in network byte order)
2680
+ containing the Common Transport Information Unit
2681
+ (CT_IU), as described in Table 2 of FC-GS-5 (including
2682
+ the preamble), which was most recently rejected by the
2683
+ Fabric Configuration Server for this Fabric.
2684
+
2685
+ This object contains the zero-length string
2686
+ if and when the CT-IU's content is unavailable.
2687
+
2688
+ When the length of this object is 255 octets, it
2689
+ contains the first 255 octets of the CT-IU (in
2690
+ network byte order).""",
2691
+ }, # column
2692
+ "t11ZsRejectRequestSource" : {
2693
+ "nodetype" : "column",
2694
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2695
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.7",
2696
+ "status" : "current",
2697
+ "syntax" : {
2698
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcNameIdOrZero"},
2699
+ },
2700
+ "access" : "readonly",
2701
+ "description" :
2702
+ """The WWN that was the source of the CT_IU
2703
+ contained in the corresponding instance of
2704
+ t11ZsRejectCtCommandString.""",
2705
+ }, # column
2706
+ "t11ZsRejectReasonCode" : {
2707
+ "nodetype" : "column",
2708
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2709
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.8",
2710
+ "status" : "current",
2711
+ "syntax" : {
2712
+ "type" : { "module" :"T11-FC-NAME-SERVER-MIB", "name" : "T11NsGs4RejectReasonCode"},
2713
+ },
2714
+ "access" : "readonly",
2715
+ "description" :
2716
+ """The reason code corresponding to the most recent
2717
+ rejection of a request by the Zone Server for
2718
+ this Fabric.""",
2719
+ }, # column
2720
+ "t11ZsRejectReasonCodeExp" : {
2721
+ "nodetype" : "column",
2722
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2723
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.9",
2724
+ "status" : "current",
2725
+ "syntax" : {
2726
+ "type" : { "module" :"T11-FC-ZONE-SERVER-MIB", "name" : "T11ZsRejectReasonExplanation"},
2727
+ },
2728
+ "access" : "readonly",
2729
+ "description" :
2730
+ """When the value of t11ZsRejectReasonCode is
2731
+ 'Unable to perform command request', this
2732
+ object contains the corresponding reason code
2733
+ explanation.""",
2734
+ }, # column
2735
+ "t11ZsRejectReasonVendorCode" : {
2736
+ "nodetype" : "column",
2737
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2738
+ "oid" : "1.3.6.1.2.1.160.1.1.14.1.10",
2739
+ "status" : "current",
2740
+ "syntax" : {
2741
+ "type" : {
2742
+ "basetype" : "OctetString",
2743
+ "ranges" : [
2744
+ {
2745
+ "min" : "1",
2746
+ "max" : "1"
2747
+ },
2748
+ ],
2749
+ "range" : {
2750
+ "min" : "1",
2751
+ "max" : "1"
2752
+ },
2753
+ },
2754
+ },
2755
+ "access" : "readonly",
2756
+ "description" :
2757
+ """When the value of t11ZsRejectReasonCode is
2758
+ 'Vendor Specific Error', this object contains
2759
+ the corresponding vendor-specific reason code.""",
2760
+ }, # column
2761
+ "t11ZsFabricIndex" : {
2762
+ "nodetype" : "scalar",
2763
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2764
+ "oid" : "1.3.6.1.2.1.160.1.1.15",
2765
+ "status" : "current",
2766
+ "syntax" : {
2767
+ "type" : {
2768
+ "basetype" : "Unsigned32",
2769
+ "ranges" : [
2770
+ {
2771
+ "min" : "0",
2772
+ "max" : "4096"
2773
+ },
2774
+ ],
2775
+ "range" : {
2776
+ "min" : "0",
2777
+ "max" : "4096"
2778
+ },
2779
+ },
2780
+ },
2781
+ "access" : "notifyonly",
2782
+ "description" :
2783
+ """This object contains either a value of
2784
+ T11FabricIndex to identify the Fabric on which
2785
+ some occurrence has caused a notification to be
2786
+ generated, or it has the value 4096 to indicate
2787
+ all applicable Fabrics.""",
2788
+ }, # scalar
2789
+ "t11ZsStatistics" : {
2790
+ "nodetype" : "node",
2791
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2792
+ "oid" : "1.3.6.1.2.1.160.1.2",
2793
+ }, # node
2794
+ "t11ZsStatsTable" : {
2795
+ "nodetype" : "table",
2796
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2797
+ "oid" : "1.3.6.1.2.1.160.1.2.1",
2798
+ "status" : "current",
2799
+ "description" :
2800
+ """A table of statistics maintained by Zone Servers.""",
2801
+ }, # table
2802
+ "t11ZsStatsEntry" : {
2803
+ "nodetype" : "row",
2804
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2805
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1",
2806
+ "status" : "current",
2807
+ "linkage" : [
2808
+ "fcmInstanceIndex",
2809
+ "fcmSwitchIndex",
2810
+ "t11ZsServerFabricIndex",
2811
+ ],
2812
+ "description" :
2813
+ """A set of statistics for a Zone Server on a
2814
+ particular Fabric (identified by the value of
2815
+ t11ZsServerFabricIndex) on a particular switch
2816
+ (identified by values of fcmInstanceIndex and
2817
+ fcmSwitchIndex).""",
2818
+ }, # row
2819
+ "t11ZsOutMergeRequests" : {
2820
+ "nodetype" : "column",
2821
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2822
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.1",
2823
+ "status" : "current",
2824
+ "syntax" : {
2825
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2826
+ },
2827
+ "access" : "readonly",
2828
+ "description" :
2829
+ """The number of Merge Request Frames sent by this Zone
2830
+ Server to other Zone Servers in the same Fabric.
2831
+
2832
+ This counter has no discontinuities other than those
2833
+
2834
+
2835
+
2836
+ that all Counter32s have when sysUpTime=0.""",
2837
+ }, # column
2838
+ "t11ZsInMergeAccepts" : {
2839
+ "nodetype" : "column",
2840
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2841
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.2",
2842
+ "status" : "current",
2843
+ "syntax" : {
2844
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2845
+ },
2846
+ "access" : "readonly",
2847
+ "description" :
2848
+ """The number of Merge Accept Frames received by this Zone
2849
+ Server from other Zone Servers in the same Fabric.
2850
+
2851
+ This counter has no discontinuities other than those
2852
+ that all Counter32s have when sysUpTime=0.""",
2853
+ }, # column
2854
+ "t11ZsInMergeRequests" : {
2855
+ "nodetype" : "column",
2856
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2857
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.3",
2858
+ "status" : "current",
2859
+ "syntax" : {
2860
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2861
+ },
2862
+ "access" : "readonly",
2863
+ "description" :
2864
+ """The number of Merge Request Frames received by this Zone
2865
+ Server from other Zone Servers in the same Fabric.
2866
+
2867
+ This counter has no discontinuities other than those
2868
+ that all Counter32s have when sysUpTime=0.""",
2869
+ }, # column
2870
+ "t11ZsOutMergeAccepts" : {
2871
+ "nodetype" : "column",
2872
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2873
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.4",
2874
+ "status" : "current",
2875
+ "syntax" : {
2876
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2877
+ },
2878
+ "access" : "readonly",
2879
+ "description" :
2880
+ """The number of Merge Accept Frames sent by this Zone
2881
+ Server to other Zone Servers in the same Fabric.
2882
+
2883
+ This counter has no discontinuities other than those
2884
+ that all Counter32s have when sysUpTime=0.""",
2885
+ }, # column
2886
+ "t11ZsOutChangeRequests" : {
2887
+ "nodetype" : "column",
2888
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2889
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.5",
2890
+ "status" : "current",
2891
+ "syntax" : {
2892
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2893
+ },
2894
+ "access" : "readonly",
2895
+ "description" :
2896
+ """The number of change requests sent (via the Fabric
2897
+ Management Session Protocol) by this Zone Server to
2898
+ other Zone Servers in the same Fabric.
2899
+
2900
+
2901
+
2902
+
2903
+ This includes Acquire Change Authorization requests, Stage
2904
+ Fabric Config Update requests, Update Fabric Config requests
2905
+ and Release Change Authorization requests. It also includes
2906
+ the corresponding types of requests defined by the Enhanced
2907
+ Commit Service.
2908
+
2909
+ This counter has no discontinuities other than those
2910
+ that all Counter32s have when sysUpTime=0.""",
2911
+ "reference" :
2912
+ """Fibre Channel - Switch Fabric-4 (FC-SW-4),
2913
+ ANSI INCITS 418-2006, April 2006, sections 10.6 and 13.""",
2914
+ }, # column
2915
+ "t11ZsInChangeAccepts" : {
2916
+ "nodetype" : "column",
2917
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2918
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.6",
2919
+ "status" : "current",
2920
+ "syntax" : {
2921
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2922
+ },
2923
+ "access" : "readonly",
2924
+ "description" :
2925
+ """The number of SW_ACC messages received from other Zone
2926
+ Servers in the same Fabric (according to the Fabric
2927
+ Management Session Protocol) in response to change
2928
+ requests by this Zone Server.
2929
+
2930
+ This includes SW_ACC messages received in response to
2931
+ Acquire Change Authorization requests, to Stage Fabric
2932
+ Config Update requests, to Update Fabric Config requests,
2933
+ and to Release Change Authorization requests. It also
2934
+ includes responses to the corresponding types of requests
2935
+ defined for the Enhanced Commit Service.
2936
+
2937
+ This counter has no discontinuities other than those
2938
+ that all Counter32s have when sysUpTime=0.""",
2939
+ "reference" :
2940
+ """Fibre Channel - Switch Fabric-4 (FC-SW-4),
2941
+ ANSI INCITS 418-2006, April 2006, sections 10.6 and 13.""",
2942
+ }, # column
2943
+ "t11ZsInChangeRequests" : {
2944
+ "nodetype" : "column",
2945
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2946
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.7",
2947
+ "status" : "current",
2948
+ "syntax" : {
2949
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2950
+ },
2951
+ "access" : "readonly",
2952
+ "description" :
2953
+ """The number of change requests received (via the Fabric
2954
+ Management Session Protocol) by this Zone Server from
2955
+ other Zone Servers in the same Fabric.
2956
+
2957
+ This includes Acquire Change Authorization requests, Stage
2958
+ Fabric Config Update requests, Update Fabric Config requests
2959
+
2960
+
2961
+
2962
+ and Release Change Authorization requests. It also includes
2963
+ the corresponding types of requests defined by the Enhanced
2964
+ Commit Service.
2965
+
2966
+ This counter has no discontinuities other than those
2967
+ that all Counter32s have when sysUpTime=0.""",
2968
+ "reference" :
2969
+ """Fibre Channel - Switch Fabric-4 (FC-SW-4),
2970
+ ANSI INCITS 418-2006, April 2006, sections 10.6 and 13.""",
2971
+ }, # column
2972
+ "t11ZsOutChangeAccepts" : {
2973
+ "nodetype" : "column",
2974
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
2975
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.8",
2976
+ "status" : "current",
2977
+ "syntax" : {
2978
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2979
+ },
2980
+ "access" : "readonly",
2981
+ "description" :
2982
+ """The number of SW_ACC messages sent by this Zone Server
2983
+ (according to the Fabric Management Session Protocol) in
2984
+ response to change requests from other Zone Servers in
2985
+ the same Fabric.
2986
+
2987
+ This includes SW_ACC messages sent in response to
2988
+ Acquire Change Authorization requests, to Stage Fabric
2989
+ Config Update requests, to Update Fabric Config requests
2990
+ and to Release Change Authorization requests. It also
2991
+ includes responses to the corresponding types of requests
2992
+ defined for the Enhanced Commit Service.
2993
+
2994
+ This counter has no discontinuities other than those
2995
+ that all Counter32s have when sysUpTime=0.""",
2996
+ "reference" :
2997
+ """Fibre Channel - Switch Fabric-4 (FC-SW-4),
2998
+ ANSI INCITS 418-2006, April 2006, sections 10.6 and 13.""",
2999
+ }, # column
3000
+ "t11ZsInZsRequests" : {
3001
+ "nodetype" : "column",
3002
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3003
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.9",
3004
+ "status" : "current",
3005
+ "syntax" : {
3006
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3007
+ },
3008
+ "access" : "readonly",
3009
+ "description" :
3010
+ """The number of Zone Server requests received by this
3011
+ Zone Server on this Fabric, both those received in
3012
+ Basic mode and in Enhanced mode.
3013
+
3014
+ This counter has no discontinuities other than those
3015
+ that all Counter32s have when sysUpTime=0.""",
3016
+ }, # column
3017
+ "t11ZsOutZsRejects" : {
3018
+ "nodetype" : "column",
3019
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3020
+ "oid" : "1.3.6.1.2.1.160.1.2.1.1.10",
3021
+ "status" : "current",
3022
+ "syntax" : {
3023
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3024
+ },
3025
+ "access" : "readonly",
3026
+ "description" :
3027
+ """The number of Zone Server requests rejected by this
3028
+ Zone Server on this Fabric, both those rejected in
3029
+ Basic mode and in Enhanced mode.
3030
+
3031
+ This counter has no discontinuities other than those
3032
+ that all Counter32s have when sysUpTime=0.""",
3033
+ }, # column
3034
+ "t11ZsMIBConformance" : {
3035
+ "nodetype" : "node",
3036
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3037
+ "oid" : "1.3.6.1.2.1.160.2",
3038
+ }, # node
3039
+ "t11ZsMIBCompliances" : {
3040
+ "nodetype" : "node",
3041
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3042
+ "oid" : "1.3.6.1.2.1.160.2.1",
3043
+ }, # node
3044
+ "t11ZsMIBGroups" : {
3045
+ "nodetype" : "node",
3046
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3047
+ "oid" : "1.3.6.1.2.1.160.2.2",
3048
+ }, # node
3049
+ }, # nodes
3050
+
3051
+ "notifications" : {
3052
+ "t11ZsRequestRejectNotify" : {
3053
+ "nodetype" : "notification",
3054
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3055
+ "oid" : "1.3.6.1.2.1.160.0.1",
3056
+ "status" : "current",
3057
+ "objects" : {
3058
+ "t11FamLocalSwitchWwn" : {
3059
+ "nodetype" : "object",
3060
+ "module" : "T11-FC-FABRIC-ADDR-MGR-MIB"
3061
+ },
3062
+ "t11ZsRejectRequestSource" : {
3063
+ "nodetype" : "object",
3064
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3065
+ },
3066
+ "t11ZsRejectCtCommandString" : {
3067
+ "nodetype" : "object",
3068
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3069
+ },
3070
+ "t11ZsRejectReasonCode" : {
3071
+ "nodetype" : "object",
3072
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3073
+ },
3074
+ "t11ZsRejectReasonCodeExp" : {
3075
+ "nodetype" : "object",
3076
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3077
+ },
3078
+ "t11ZsRejectReasonVendorCode" : {
3079
+ "nodetype" : "object",
3080
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3081
+ },
3082
+ },
3083
+ "description" :
3084
+ """This notification is generated whenever a Zone Server
3085
+ (indicated by the value of t11FamLocalSwitchWwn) rejects
3086
+ a request.
3087
+
3088
+ The value of t11ZsRejectCtCommandString indicates the
3089
+ rejected request, and the values of t11ZsRejectReasonCode,
3090
+ t11ZsRejectReasonCodeExp and t11ZsRejectReasonVendorCode
3091
+ indicate the reason for the rejection. The value of
3092
+ t11ZsRequestClient indicates the source of the request.""",
3093
+ }, # notification
3094
+ "t11ZsMergeFailureNotify" : {
3095
+ "nodetype" : "notification",
3096
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3097
+ "oid" : "1.3.6.1.2.1.160.0.2",
3098
+ "status" : "current",
3099
+ "objects" : {
3100
+ "ifIndex" : {
3101
+ "nodetype" : "object",
3102
+ "module" : "IF-MIB"
3103
+ },
3104
+ "t11ZsFabricIndex" : {
3105
+ "nodetype" : "object",
3106
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3107
+ },
3108
+ },
3109
+ "description" :
3110
+ """This notification indicates that a Zone merge
3111
+ failure has occurred on the Fabric indicated by the
3112
+ value of t11ZsFabricIndex, on the interface
3113
+ indicated by the value of ifIndex.
3114
+
3115
+ If multiple Virtual Fabrics are configured on an
3116
+ interface, and all have a Zone merge failure
3117
+ at the same time, then just one notification is
3118
+ generated and t11ZsFabricIndex has the value 4096.""",
3119
+ }, # notification
3120
+ "t11ZsMergeSuccessNotify" : {
3121
+ "nodetype" : "notification",
3122
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3123
+ "oid" : "1.3.6.1.2.1.160.0.3",
3124
+ "status" : "current",
3125
+ "objects" : {
3126
+ "ifIndex" : {
3127
+ "nodetype" : "object",
3128
+ "module" : "IF-MIB"
3129
+ },
3130
+ "t11ZsFabricIndex" : {
3131
+ "nodetype" : "object",
3132
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3133
+ },
3134
+ },
3135
+ "description" :
3136
+ """This notification indicates that a successful Zone
3137
+ merge has occurred on the Fabric indicated by the
3138
+ value of t11ZsFabricIndex, on the interface
3139
+ indicated by the value of ifIndex.
3140
+
3141
+ If multiple Virtual Fabrics are configured on an
3142
+ interface, and all have a successful Zone Merge
3143
+
3144
+
3145
+
3146
+ at the same time, then just one notification is
3147
+ generated and t11ZsFabricIndex has the value 4096.""",
3148
+ }, # notification
3149
+ "t11ZsDefZoneChangeNotify" : {
3150
+ "nodetype" : "notification",
3151
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3152
+ "oid" : "1.3.6.1.2.1.160.0.4",
3153
+ "status" : "current",
3154
+ "objects" : {
3155
+ "t11ZsServerDefaultZoneSetting" : {
3156
+ "nodetype" : "object",
3157
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3158
+ },
3159
+ },
3160
+ "description" :
3161
+ """This notification indicates that the
3162
+ value of a Default Zone Setting has changed.
3163
+ The value of t11ZsServerDefaultZoneSetting
3164
+ contains the value after the change.""",
3165
+ }, # notification
3166
+ "t11ZsActivateNotify" : {
3167
+ "nodetype" : "notification",
3168
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3169
+ "oid" : "1.3.6.1.2.1.160.0.5",
3170
+ "status" : "current",
3171
+ "objects" : {
3172
+ "t11FamLocalSwitchWwn" : {
3173
+ "nodetype" : "object",
3174
+ "module" : "T11-FC-FABRIC-ADDR-MGR-MIB"
3175
+ },
3176
+ "t11ZsActivateResult" : {
3177
+ "nodetype" : "object",
3178
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3179
+ },
3180
+ },
3181
+ "description" :
3182
+ """This notification is generated whenever a switch
3183
+ (indicated by the value of t11FamLocalSwitchWwn)
3184
+ activates/deactivates a Zone Set on a Fabric.
3185
+ The t11ZsActivateResult object denotes the outcome
3186
+ of the activation/deactivation.""",
3187
+ }, # notification
3188
+ }, # notifications
3189
+
3190
+ "groups" : {
3191
+ "t11ZsBasicGroup" : {
3192
+ "nodetype" : "group",
3193
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3194
+ "oid" : "1.3.6.1.2.1.160.2.2.1",
3195
+ "status" : "current",
3196
+ "members" : {
3197
+ "t11ZsServerCapabilityObject" : {
3198
+ "nodetype" : "member",
3199
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3200
+ },
3201
+ "t11ZsServerDatabaseStorageType" : {
3202
+ "nodetype" : "member",
3203
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3204
+ },
3205
+ "t11ZsServerDistribute" : {
3206
+ "nodetype" : "member",
3207
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3208
+ },
3209
+ "t11ZsServerResult" : {
3210
+ "nodetype" : "member",
3211
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3212
+ },
3213
+ "t11ZsServerReasonCode" : {
3214
+ "nodetype" : "member",
3215
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3216
+ },
3217
+ "t11ZsServerReasonCodeExp" : {
3218
+ "nodetype" : "member",
3219
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3220
+ },
3221
+ "t11ZsServerReasonVendorCode" : {
3222
+ "nodetype" : "member",
3223
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3224
+ },
3225
+ "t11ZsServerLastChange" : {
3226
+ "nodetype" : "member",
3227
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3228
+ },
3229
+ "t11ZsServerHardZoning" : {
3230
+ "nodetype" : "member",
3231
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3232
+ },
3233
+ "t11ZsServerReadFromDatabase" : {
3234
+ "nodetype" : "member",
3235
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3236
+ },
3237
+ "t11ZsServerOperationMode" : {
3238
+ "nodetype" : "member",
3239
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3240
+ },
3241
+ "t11ZsSetName" : {
3242
+ "nodetype" : "member",
3243
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3244
+ },
3245
+ "t11ZsSetRowStatus" : {
3246
+ "nodetype" : "member",
3247
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3248
+ },
3249
+ "t11ZsZoneName" : {
3250
+ "nodetype" : "member",
3251
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3252
+ },
3253
+ "t11ZsZoneAttribBlock" : {
3254
+ "nodetype" : "member",
3255
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3256
+ },
3257
+ "t11ZsZoneRowStatus" : {
3258
+ "nodetype" : "member",
3259
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3260
+ },
3261
+ "t11ZsSetZoneRowStatus" : {
3262
+ "nodetype" : "member",
3263
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3264
+ },
3265
+ "t11ZsZoneMemberFormat" : {
3266
+ "nodetype" : "member",
3267
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3268
+ },
3269
+ "t11ZsZoneMemberID" : {
3270
+ "nodetype" : "member",
3271
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3272
+ },
3273
+ "t11ZsZoneMemberRowStatus" : {
3274
+ "nodetype" : "member",
3275
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3276
+ },
3277
+ "t11ZsActiveZoneSetName" : {
3278
+ "nodetype" : "member",
3279
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3280
+ },
3281
+ "t11ZsActiveActivateTime" : {
3282
+ "nodetype" : "member",
3283
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3284
+ },
3285
+ "t11ZsActiveZoneName" : {
3286
+ "nodetype" : "member",
3287
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3288
+ },
3289
+ "t11ZsActiveZoneMemberFormat" : {
3290
+ "nodetype" : "member",
3291
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3292
+ },
3293
+ "t11ZsActiveZoneMemberID" : {
3294
+ "nodetype" : "member",
3295
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3296
+ },
3297
+ }, # members
3298
+ "description" :
3299
+ """A collection of objects for displaying and updating
3300
+ the Zone configuration of a Zone Server capable of
3301
+ operating in Basic mode.""",
3302
+ }, # group
3303
+ "t11ZsEnhancedModeGroup" : {
3304
+ "nodetype" : "group",
3305
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3306
+ "oid" : "1.3.6.1.2.1.160.2.2.2",
3307
+ "status" : "current",
3308
+ "members" : {
3309
+ "t11ZsServerCommit" : {
3310
+ "nodetype" : "member",
3311
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3312
+ },
3313
+ "t11ZsServerChangeModeResult" : {
3314
+ "nodetype" : "member",
3315
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3316
+ },
3317
+ "t11ZsServerDefaultZoneSetting" : {
3318
+ "nodetype" : "member",
3319
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3320
+ },
3321
+ "t11ZsServerMergeControlSetting" : {
3322
+ "nodetype" : "member",
3323
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3324
+ },
3325
+ "t11ZsServerDefZoneBroadcast" : {
3326
+ "nodetype" : "member",
3327
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3328
+ },
3329
+ "t11ZsAliasName" : {
3330
+ "nodetype" : "member",
3331
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3332
+ },
3333
+ "t11ZsAliasRowStatus" : {
3334
+ "nodetype" : "member",
3335
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3336
+ },
3337
+ "t11ZsAttribBlockName" : {
3338
+ "nodetype" : "member",
3339
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3340
+ },
3341
+ "t11ZsAttribBlockRowStatus" : {
3342
+ "nodetype" : "member",
3343
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3344
+ },
3345
+ "t11ZsAttribType" : {
3346
+ "nodetype" : "member",
3347
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3348
+ },
3349
+ "t11ZsAttribValue" : {
3350
+ "nodetype" : "member",
3351
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3352
+ },
3353
+ "t11ZsAttribRowStatus" : {
3354
+ "nodetype" : "member",
3355
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3356
+ },
3357
+ "t11ZsActiveZoneBroadcastZoning" : {
3358
+ "nodetype" : "member",
3359
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3360
+ },
3361
+ "t11ZsActiveZoneHardZoning" : {
3362
+ "nodetype" : "member",
3363
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3364
+ },
3365
+ "t11ZsActiveAttribType" : {
3366
+ "nodetype" : "member",
3367
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3368
+ },
3369
+ "t11ZsActiveAttribValue" : {
3370
+ "nodetype" : "member",
3371
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3372
+ },
3373
+ }, # members
3374
+ "description" :
3375
+ """A collection of additional objects for displaying
3376
+ and updating the Zone configuration of a Zone Server
3377
+ capable of operating in Enhanced mode.""",
3378
+ }, # group
3379
+ "t11ZsStatisticsGroup" : {
3380
+ "nodetype" : "group",
3381
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3382
+ "oid" : "1.3.6.1.2.1.160.2.2.3",
3383
+ "status" : "current",
3384
+ "members" : {
3385
+ "t11ZsOutMergeRequests" : {
3386
+ "nodetype" : "member",
3387
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3388
+ },
3389
+ "t11ZsInMergeAccepts" : {
3390
+ "nodetype" : "member",
3391
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3392
+ },
3393
+ "t11ZsInMergeRequests" : {
3394
+ "nodetype" : "member",
3395
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3396
+ },
3397
+ "t11ZsOutMergeAccepts" : {
3398
+ "nodetype" : "member",
3399
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3400
+ },
3401
+ "t11ZsOutChangeRequests" : {
3402
+ "nodetype" : "member",
3403
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3404
+ },
3405
+ "t11ZsInChangeAccepts" : {
3406
+ "nodetype" : "member",
3407
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3408
+ },
3409
+ "t11ZsInChangeRequests" : {
3410
+ "nodetype" : "member",
3411
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3412
+ },
3413
+ "t11ZsOutChangeAccepts" : {
3414
+ "nodetype" : "member",
3415
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3416
+ },
3417
+ "t11ZsInZsRequests" : {
3418
+ "nodetype" : "member",
3419
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3420
+ },
3421
+ "t11ZsOutZsRejects" : {
3422
+ "nodetype" : "member",
3423
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3424
+ },
3425
+ }, # members
3426
+ "description" :
3427
+ """A collection of objects for collecting Zone Server
3428
+ statistics information.""",
3429
+ }, # group
3430
+ "t11ZsNotificationControlGroup" : {
3431
+ "nodetype" : "group",
3432
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3433
+ "oid" : "1.3.6.1.2.1.160.2.2.4",
3434
+ "status" : "current",
3435
+ "members" : {
3436
+ "t11ZsNotifyRequestRejectEnable" : {
3437
+ "nodetype" : "member",
3438
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3439
+ },
3440
+ "t11ZsNotifyMergeFailureEnable" : {
3441
+ "nodetype" : "member",
3442
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3443
+ },
3444
+ "t11ZsNotifyMergeSuccessEnable" : {
3445
+ "nodetype" : "member",
3446
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3447
+ },
3448
+ "t11ZsNotifyDefZoneChangeEnable" : {
3449
+ "nodetype" : "member",
3450
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3451
+ },
3452
+ "t11ZsNotifyActivateEnable" : {
3453
+ "nodetype" : "member",
3454
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3455
+ },
3456
+ "t11ZsRejectCtCommandString" : {
3457
+ "nodetype" : "member",
3458
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3459
+ },
3460
+ "t11ZsRejectRequestSource" : {
3461
+ "nodetype" : "member",
3462
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3463
+ },
3464
+ "t11ZsRejectReasonCode" : {
3465
+ "nodetype" : "member",
3466
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3467
+ },
3468
+ "t11ZsRejectReasonCodeExp" : {
3469
+ "nodetype" : "member",
3470
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3471
+ },
3472
+ "t11ZsRejectReasonVendorCode" : {
3473
+ "nodetype" : "member",
3474
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3475
+ },
3476
+ "t11ZsFabricIndex" : {
3477
+ "nodetype" : "member",
3478
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3479
+ },
3480
+ }, # members
3481
+ "description" :
3482
+ """A collection of notification control and
3483
+ notification information objects for monitoring
3484
+ Zone Server request rejection and Zone merge
3485
+ failures.""",
3486
+ }, # group
3487
+ "t11ZsActivateGroup" : {
3488
+ "nodetype" : "group",
3489
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3490
+ "oid" : "1.3.6.1.2.1.160.2.2.5",
3491
+ "status" : "current",
3492
+ "members" : {
3493
+ "t11ZsActivateRequest" : {
3494
+ "nodetype" : "member",
3495
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3496
+ },
3497
+ "t11ZsActivateDeactivate" : {
3498
+ "nodetype" : "member",
3499
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3500
+ },
3501
+ "t11ZsActivateResult" : {
3502
+ "nodetype" : "member",
3503
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3504
+ },
3505
+ "t11ZsActivateFailCause" : {
3506
+ "nodetype" : "member",
3507
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3508
+ },
3509
+ "t11ZsActivateFailDomainId" : {
3510
+ "nodetype" : "member",
3511
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3512
+ },
3513
+ }, # members
3514
+ "description" :
3515
+ """A collection of objects that allow a Zone Set to
3516
+ be activated via SNMP SetRequests and provide the
3517
+ status and result of such an activation.""",
3518
+ }, # group
3519
+ "t11ZsNotificationGroup" : {
3520
+ "nodetype" : "group",
3521
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3522
+ "oid" : "1.3.6.1.2.1.160.2.2.6",
3523
+ "status" : "current",
3524
+ "members" : {
3525
+ "t11ZsRequestRejectNotify" : {
3526
+ "nodetype" : "member",
3527
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3528
+ },
3529
+ "t11ZsMergeFailureNotify" : {
3530
+ "nodetype" : "member",
3531
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3532
+ },
3533
+ "t11ZsMergeSuccessNotify" : {
3534
+ "nodetype" : "member",
3535
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3536
+ },
3537
+ "t11ZsDefZoneChangeNotify" : {
3538
+ "nodetype" : "member",
3539
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3540
+ },
3541
+ "t11ZsActivateNotify" : {
3542
+ "nodetype" : "member",
3543
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3544
+ },
3545
+ }, # members
3546
+ "description" :
3547
+ """A collection of notification(s) for monitoring
3548
+ Zone Server request rejection, Zone merge
3549
+ failures and successes, and Default Zoning
3550
+ behavioral changes.""",
3551
+ }, # group
3552
+ }, # groups
3553
+
3554
+ "compliances" : {
3555
+ "t11ZsMIBCompliance" : {
3556
+ "nodetype" : "compliance",
3557
+ "moduleName" : "T11-FC-ZONE-SERVER-MIB",
3558
+ "oid" : "1.3.6.1.2.1.160.2.1.1",
3559
+ "status" : "current",
3560
+ "description" :
3561
+ """The compliance statement for entities that
3562
+ implement the Zone Server.""",
3563
+ "requires" : {
3564
+ "t11ZsBasicGroup" : {
3565
+ "nodetype" : "mandatory",
3566
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3567
+ },
3568
+ "t11ZsNotificationControlGroup" : {
3569
+ "nodetype" : "mandatory",
3570
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3571
+ },
3572
+ "t11ZsNotificationGroup" : {
3573
+ "nodetype" : "mandatory",
3574
+ "module" : "T11-FC-ZONE-SERVER-MIB"
3575
+ },
3576
+ "t11ZsEnhancedModeGroup" : {
3577
+ "nodetype" : "optional",
3578
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3579
+ "description" :
3580
+ """This group is mandatory only for those systems
3581
+ with Zone Servers that support Enhanced Mode.""",
3582
+ },
3583
+ "t11ZsActivateGroup" : {
3584
+ "nodetype" : "optional",
3585
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3586
+ "description" :
3587
+ """Only entities that provide write access for
3588
+ activating a Zone Set support need to support
3589
+
3590
+
3591
+
3592
+ this group.""",
3593
+ },
3594
+ "t11ZsStatisticsGroup" : {
3595
+ "nodetype" : "optional",
3596
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3597
+ "description" :
3598
+ """These counters, containing Zone Server statistics,
3599
+ are mandatory only for those systems that count
3600
+ such events.""",
3601
+ },
3602
+ }, # requires
3603
+ "refinements" : {
3604
+ "t11ZsSetRowStatus" : {
3605
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3606
+ "syntax" : {
3607
+ "type" : {
3608
+ "basetype" : "Enumeration",
3609
+ "parent module" : {
3610
+ "name" : "SNMPv2-TC",
3611
+ "type" : "RowStatus",
3612
+ },
3613
+ "active" : {
3614
+ "nodetype" : "namednumber",
3615
+ "number" : "1"
3616
+ },
3617
+ },
3618
+ }, # syntax
3619
+ "access" : "readonly",
3620
+ "description" :
3621
+ """Write access is not required.""",
3622
+ },
3623
+ "t11ZsZoneRowStatus" : {
3624
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3625
+ "syntax" : {
3626
+ "type" : {
3627
+ "basetype" : "Enumeration",
3628
+ "parent module" : {
3629
+ "name" : "SNMPv2-TC",
3630
+ "type" : "RowStatus",
3631
+ },
3632
+ "active" : {
3633
+ "nodetype" : "namednumber",
3634
+ "number" : "1"
3635
+ },
3636
+ },
3637
+ }, # syntax
3638
+ "access" : "readonly",
3639
+ "description" :
3640
+ """Write access is not required.""",
3641
+ },
3642
+ "t11ZsSetZoneRowStatus" : {
3643
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3644
+ "syntax" : {
3645
+ "type" : {
3646
+ "basetype" : "Enumeration",
3647
+ "parent module" : {
3648
+ "name" : "SNMPv2-TC",
3649
+ "type" : "RowStatus",
3650
+ },
3651
+ "active" : {
3652
+ "nodetype" : "namednumber",
3653
+ "number" : "1"
3654
+ },
3655
+ },
3656
+ }, # syntax
3657
+ "access" : "readonly",
3658
+ "description" :
3659
+ """Write access is not required.""",
3660
+ },
3661
+ "t11ZsAliasRowStatus" : {
3662
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3663
+ "syntax" : {
3664
+ "type" : {
3665
+ "basetype" : "Enumeration",
3666
+ "parent module" : {
3667
+ "name" : "SNMPv2-TC",
3668
+ "type" : "RowStatus",
3669
+ },
3670
+ "active" : {
3671
+ "nodetype" : "namednumber",
3672
+ "number" : "1"
3673
+ },
3674
+ },
3675
+ }, # syntax
3676
+ "access" : "readonly",
3677
+ "description" :
3678
+ """Write access is not required.""",
3679
+ },
3680
+ "t11ZsZoneMemberRowStatus" : {
3681
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3682
+ "syntax" : {
3683
+ "type" : {
3684
+ "basetype" : "Enumeration",
3685
+ "parent module" : {
3686
+ "name" : "SNMPv2-TC",
3687
+ "type" : "RowStatus",
3688
+ },
3689
+ "active" : {
3690
+ "nodetype" : "namednumber",
3691
+ "number" : "1"
3692
+ },
3693
+ },
3694
+ }, # syntax
3695
+ "access" : "readonly",
3696
+ "description" :
3697
+ """Write access is not required.""",
3698
+ },
3699
+ "t11ZsAttribBlockRowStatus" : {
3700
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3701
+ "syntax" : {
3702
+ "type" : {
3703
+ "basetype" : "Enumeration",
3704
+ "parent module" : {
3705
+ "name" : "SNMPv2-TC",
3706
+ "type" : "RowStatus",
3707
+ },
3708
+ "active" : {
3709
+ "nodetype" : "namednumber",
3710
+ "number" : "1"
3711
+ },
3712
+ },
3713
+ }, # syntax
3714
+ "access" : "readonly",
3715
+ "description" :
3716
+ """Write access is not required.""",
3717
+ },
3718
+ "t11ZsAttribRowStatus" : {
3719
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3720
+ "syntax" : {
3721
+ "type" : {
3722
+ "basetype" : "Enumeration",
3723
+ "parent module" : {
3724
+ "name" : "SNMPv2-TC",
3725
+ "type" : "RowStatus",
3726
+ },
3727
+ "active" : {
3728
+ "nodetype" : "namednumber",
3729
+ "number" : "1"
3730
+ },
3731
+ },
3732
+ }, # syntax
3733
+ "access" : "readonly",
3734
+ "description" :
3735
+ """Write access is not required.""",
3736
+ },
3737
+ "t11ZsServerDatabaseStorageType" : {
3738
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3739
+ "access" : "readonly",
3740
+ "description" :
3741
+ """Write access is not required.""",
3742
+ },
3743
+ "t11ZsServerDistribute" : {
3744
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3745
+ "access" : "readonly",
3746
+ "description" :
3747
+ """Write access is not required.""",
3748
+ },
3749
+ "t11ZsServerCommit" : {
3750
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3751
+ "access" : "readonly",
3752
+ "description" :
3753
+ """Write access is not required.""",
3754
+ },
3755
+ "t11ZsServerReadFromDatabase" : {
3756
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3757
+ "access" : "readonly",
3758
+ "description" :
3759
+ """Write access is not required.""",
3760
+ },
3761
+ "t11ZsServerOperationMode" : {
3762
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3763
+ "access" : "readonly",
3764
+ "description" :
3765
+ """Write access is not required.""",
3766
+ },
3767
+ "t11ZsServerDefaultZoneSetting" : {
3768
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3769
+ "access" : "readonly",
3770
+ "description" :
3771
+ """Write access is not required.""",
3772
+ },
3773
+ "t11ZsServerMergeControlSetting" : {
3774
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3775
+ "access" : "readonly",
3776
+ "description" :
3777
+ """Write access is not required.""",
3778
+ },
3779
+ "t11ZsServerDefZoneBroadcast" : {
3780
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3781
+ "access" : "readonly",
3782
+ "description" :
3783
+ """Write access is not required.""",
3784
+ },
3785
+ "t11ZsSetName" : {
3786
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3787
+ "access" : "readonly",
3788
+ "description" :
3789
+ """Write access is not required.""",
3790
+ },
3791
+ "t11ZsZoneName" : {
3792
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3793
+ "access" : "readonly",
3794
+ "description" :
3795
+ """Write access is not required.""",
3796
+ },
3797
+ "t11ZsZoneAttribBlock" : {
3798
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3799
+ "access" : "readonly",
3800
+ "description" :
3801
+ """Write access is not required.""",
3802
+ },
3803
+ "t11ZsAliasName" : {
3804
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3805
+ "access" : "readonly",
3806
+ "description" :
3807
+ """Write access is not required.""",
3808
+ },
3809
+ "t11ZsZoneMemberFormat" : {
3810
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3811
+ "access" : "readonly",
3812
+ "description" :
3813
+ """Write access is not required.""",
3814
+ },
3815
+ "t11ZsZoneMemberID" : {
3816
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3817
+ "access" : "readonly",
3818
+ "description" :
3819
+ """Write access is not required.""",
3820
+ },
3821
+ "t11ZsAttribBlockName" : {
3822
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3823
+ "access" : "readonly",
3824
+ "description" :
3825
+ """Write access is not required.""",
3826
+ },
3827
+ "t11ZsAttribType" : {
3828
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3829
+ "access" : "readonly",
3830
+ "description" :
3831
+ """Write access is not required.""",
3832
+ },
3833
+ "t11ZsAttribValue" : {
3834
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3835
+ "access" : "readonly",
3836
+ "description" :
3837
+ """Write access is not required.""",
3838
+ },
3839
+ "t11ZsActivateRequest" : {
3840
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3841
+ "access" : "readonly",
3842
+ "description" :
3843
+ """Write access is not required.""",
3844
+ },
3845
+ "t11ZsActivateDeactivate" : {
3846
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3847
+ "access" : "readonly",
3848
+ "description" :
3849
+ """Write access is not required.""",
3850
+ },
3851
+ "t11ZsNotifyRequestRejectEnable" : {
3852
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3853
+ "access" : "readonly",
3854
+ "description" :
3855
+ """Write access is not required.""",
3856
+ },
3857
+ "t11ZsNotifyMergeFailureEnable" : {
3858
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3859
+ "access" : "readonly",
3860
+ "description" :
3861
+ """Write access is not required.""",
3862
+ },
3863
+ "t11ZsNotifyMergeSuccessEnable" : {
3864
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3865
+ "access" : "readonly",
3866
+ "description" :
3867
+ """Write access is not required.""",
3868
+ },
3869
+ "t11ZsNotifyDefZoneChangeEnable" : {
3870
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3871
+ "access" : "readonly",
3872
+ "description" :
3873
+ """Write access is not required.""",
3874
+ },
3875
+ "t11ZsNotifyActivateEnable" : {
3876
+ "module" : "T11-FC-ZONE-SERVER-MIB",
3877
+ "access" : "readonly",
3878
+ "description" :
3879
+ """Write access is not required.""",
3880
+ },
3881
+ }, # refinements
3882
+
3883
+ }, # compliance
3884
+ }, # compliances
3885
+
3886
+ }