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,3804 @@
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 SCSI-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SCSI-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SCSI-MIB",
11
+
12
+ "SCSI-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF""",
17
+ "contact" :
18
+ """
19
+ Michele Hallak-Stamler
20
+
21
+
22
+
23
+ Sanrad Intelligent Network
24
+ 27 Habarzel Street
25
+ Tel Aviv, Israel
26
+ Phone: +972 3 7674809
27
+ E-mail: michele@sanrad.com
28
+
29
+ Yaron Lederman
30
+ Siliquent Technologies Ltd.
31
+ 21 Etzel Street
32
+ Ramat Gan, Israel
33
+ Phone: +972 54 5308833
34
+ E-mail: yaronled@bezeqint.net
35
+
36
+ Mark Bakke
37
+ Postal: Cisco Systems, Inc
38
+ 7900 International Drive, Suite 400
39
+ Bloomington, MN
40
+ USA 55425
41
+ E-mail: mbakke@cisco.com
42
+
43
+ Marjorie Krueger
44
+ Postal: Hewlett-Packard
45
+ 8000 Foothills Blvd.
46
+ Roseville, CA 95747
47
+ E-mail: marjorie_krueger@hp.com
48
+
49
+ Keith McCloghrie
50
+ Cisco Systems, Inc.
51
+ Postal: 170 West Tasman Drive
52
+ San Jose, CA USA 95134
53
+ Phone: +1 408 526-5260
54
+ E-mail: kzm@cisco.com""",
55
+ "description" :
56
+ """The SCSI MIB Module.
57
+ Copyright (C) The Internet Society (2006). This version of
58
+ this MIB module is part of RFC 4455; see the RFC
59
+ itself for full legal notices.""",
60
+ "revisions" : (
61
+ {
62
+ "date" : "2006-03-30 00:00",
63
+ "description" :
64
+ """ Initial version published as RFC 4455.""",
65
+ },
66
+ ),
67
+ "identity node" : "scsiMIB",
68
+ },
69
+
70
+ "imports" : (
71
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
72
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
73
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
74
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
75
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
76
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
77
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
78
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
79
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
80
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
81
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
82
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
83
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
84
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
85
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
86
+ {"module" : "SNMPv2-TC", "name" : "AutonomousType"},
87
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
88
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
89
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
90
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
91
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
92
+ ),
93
+
94
+ "typedefs" : {
95
+ "ScsiLUN" : {
96
+ "basetype" : "OctetString",
97
+ "status" : "current",
98
+ "ranges" : [
99
+ {
100
+ "min" : "2",
101
+ "max" : "2"
102
+ },
103
+ {
104
+ "min" : "8",
105
+ "max" : "8"
106
+ },
107
+ ],
108
+ "range" : {
109
+ "min" : "2",
110
+ "max" : "8"
111
+ },
112
+ "description" :
113
+ """This textual convention represents a SCSI Logical Unit
114
+ Number (LUN). The format of a LUN is documented in Tables
115
+ A.2 and A.3 of SAM-2 [SAM2].""",
116
+ "reference" :
117
+ """SCSI Architecture Model-2 (SAM-2), ANSI INCITS 366-2003,
118
+ T10 Project 1157-D, 12 September 2002 - Annex A [SAM2]""",
119
+ },
120
+ "ScsiIndexValue" : {
121
+ "basetype" : "Unsigned32",
122
+ "status" : "current",
123
+ "ranges" : [
124
+ {
125
+ "min" : "1",
126
+ "max" : "4294967295"
127
+ },
128
+ ],
129
+ "range" : {
130
+ "min" : "1",
131
+ "max" : "4294967295"
132
+ },
133
+ "format" : "d",
134
+ "description" :
135
+ """An arbitrary integer value, greater than zero, for use
136
+ as a unique index value.""",
137
+ },
138
+ "ScsiPortIndexValueOrZero" : {
139
+ "basetype" : "Unsigned32",
140
+ "status" : "current",
141
+ "ranges" : [
142
+ {
143
+ "min" : "0",
144
+ "max" : "4294967295"
145
+ },
146
+ ],
147
+ "range" : {
148
+ "min" : "0",
149
+ "max" : "4294967295"
150
+ },
151
+ "format" : "d",
152
+ "description" :
153
+ """This textual convention is an extension of the ScsiIndexValue
154
+ convention. The latter defines a greater than zero value used
155
+ to identify an index. This extension permits the additional
156
+ value of zero and is applicable only to indices of SCSI port.
157
+ Usage of the zero is object-specific and must therefore be
158
+ defined as part of the description of any object that uses
159
+ this syntax. Examples of the usage of zero might include
160
+ situations where the index was unknown, or when none or all
161
+ indices need to be referenced.""",
162
+ },
163
+ "ScsiIndexValueOrZero" : {
164
+ "basetype" : "Unsigned32",
165
+ "status" : "current",
166
+ "ranges" : [
167
+ {
168
+ "min" : "0",
169
+ "max" : "4294967295"
170
+ },
171
+ ],
172
+ "range" : {
173
+ "min" : "0",
174
+ "max" : "4294967295"
175
+ },
176
+ "format" : "d",
177
+ "description" :
178
+ """This textual convention is an extension of the ScsiIndexValue
179
+ convention. The latter defines a greater than zero value used
180
+ to identify an index. This extension permits the additional
181
+ value of zero. Usage of the zero is object-specific and must
182
+ therefore be defined as part of the description of any object
183
+ that uses this syntax. Examples of the usage of zero might
184
+ include situations where index was unknown, or when none or
185
+ all indices need to be referenced.""",
186
+ },
187
+ "ScsiIdentifier" : {
188
+ "basetype" : "OctetString",
189
+ "status" : "current",
190
+ "ranges" : [
191
+ {
192
+ "min" : "0",
193
+ "max" : "262"
194
+ },
195
+ ],
196
+ "range" : {
197
+ "min" : "0",
198
+ "max" : "262"
199
+ },
200
+ "description" :
201
+ """This textual convention represents a generic SCSI port
202
+ identifier.
203
+ The format depends on the transport used and is documented
204
+ in Tables A.2 and A.3 of SAM-2 [SAM2].""",
205
+ "reference" :
206
+ """SCSI Architecture Model-2 (SAM-2), ANSI INCITS 366-2003,
207
+ T10 Project 1157-D, 12 September 2002 - Annex A [SAM2]""",
208
+ },
209
+ "ScsiName" : {
210
+ "basetype" : "OctetString",
211
+ "status" : "current",
212
+ "ranges" : [
213
+ {
214
+ "min" : "0",
215
+ "max" : "262"
216
+ },
217
+ ],
218
+ "range" : {
219
+ "min" : "0",
220
+ "max" : "262"
221
+ },
222
+ "description" :
223
+ """This textual convention represents the name of a SCSI
224
+ initiator device, a SCSI target device, a SCSI initiator port
225
+ or a SCSI target port.
226
+ The format depends on the transport used and is documented
227
+ in Tables A.4 and A.5 of SAM-2 [SAM2].
228
+ Every object defined using this syntax must define whether it
229
+ is
230
+ a) always used for a port,
231
+ b) always used for a device, or
232
+ c) the circumstances under which it is used for a port or
233
+ device.""",
234
+ "reference" :
235
+ """SCSI Architecture Model-2 (SAM-2), ANSI INCITS 366-2003,
236
+ T10 Project 1157-D, 12 September 2002 - Annex A [SAM2]""",
237
+ },
238
+ "ScsiLuNameOrZero" : {
239
+ "basetype" : "OctetString",
240
+ "status" : "current",
241
+ "ranges" : [
242
+ {
243
+ "min" : "0",
244
+ "max" : "0"
245
+ },
246
+ {
247
+ "min" : "8",
248
+ "max" : "8"
249
+ },
250
+ ],
251
+ "range" : {
252
+ "min" : "0",
253
+ "max" : "8"
254
+ },
255
+ "description" :
256
+ """This textual convention represents either the name of a SCSI
257
+ logical unit or a zero-length string. Objects defined with
258
+ this syntax must specify the meaning of the zero-length
259
+ string.
260
+ The format of the name of a LU is defined as:
261
+ - a zero-length octet string or
262
+ - a string of eight bytes.""",
263
+ "reference" :
264
+ """SCSI Architecture Model-2 (SAM-2), ANSI INCITS 366-2003,
265
+ T10 Project 1157-D, 12 September 2002 - Annex A [SAM2]""",
266
+ },
267
+ "ScsiDeviceOrPort" : {
268
+ "basetype" : "Enumeration",
269
+ "status" : "current",
270
+ "device" : {
271
+ "nodetype" : "namednumber",
272
+ "number" : "1"
273
+ },
274
+ "port" : {
275
+ "nodetype" : "namednumber",
276
+ "number" : "2"
277
+ },
278
+ "other" : {
279
+ "nodetype" : "namednumber",
280
+ "number" : "3"
281
+ },
282
+ "description" :
283
+ """This type specifies whether a particular configuration is
284
+ applicable to a port or to a device.""",
285
+ },
286
+ "ScsiIdCodeSet" : {
287
+ "basetype" : "Unsigned32",
288
+ "status" : "current",
289
+ "ranges" : [
290
+ {
291
+ "min" : "0",
292
+ "max" : "15"
293
+ },
294
+ ],
295
+ "range" : {
296
+ "min" : "0",
297
+ "max" : "15"
298
+ },
299
+ "format" : "d",
300
+ "description" :
301
+ """This textual convention specifies the code set for the
302
+ identifier contained in an Identification Descriptor returned
303
+ in a logical unit's Device Identification Page, and is
304
+ formatted as defined in T10 SPC-2 (see REFERENCE) Table 172 -
305
+ Code Set""",
306
+ "reference" :
307
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
308
+ ANSI INCITS 351-2001, 11 July 2001 Chapter 8: section 8.4.4,
309
+ Vital Product Data Parameters [SPC2]""",
310
+ },
311
+ "ScsiIdAssociation" : {
312
+ "basetype" : "Unsigned32",
313
+ "status" : "current",
314
+ "ranges" : [
315
+ {
316
+ "min" : "0",
317
+ "max" : "3"
318
+ },
319
+ ],
320
+ "range" : {
321
+ "min" : "0",
322
+ "max" : "3"
323
+ },
324
+ "format" : "d",
325
+ "description" :
326
+ """This textual convention specifies what the identifier is
327
+ associated with (e.g., with the addressed physical/logical
328
+ device or with a particular port) for the identifier
329
+ contained in an Identification Descriptor returned in a
330
+ logical unit's Device Identification Page, and is
331
+ formatted as defined in T10 SPC-2 (see REFERENCE)
332
+ Table 173 - Association.""",
333
+ "reference" :
334
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
335
+ ANSI INCITS 351-2001, 11 July 2001 Chapter 8: section 8.4.4,
336
+ Vital Product Data Parameters [SPC2]""",
337
+ },
338
+ "ScsiIdType" : {
339
+ "basetype" : "Unsigned32",
340
+ "status" : "current",
341
+ "ranges" : [
342
+ {
343
+ "min" : "0",
344
+ "max" : "15"
345
+ },
346
+ ],
347
+ "range" : {
348
+ "min" : "0",
349
+ "max" : "15"
350
+ },
351
+ "format" : "d",
352
+ "description" :
353
+ """This textual convention specifies the type for the identifier
354
+ contained in an Identification Descriptor returned in a
355
+
356
+
357
+
358
+ logical unit's Device Identification Page, and is formatted
359
+ as defined in T10 SPC-2 (see REFERENCE) table 174 - Identifier
360
+ Type.""",
361
+ "reference" :
362
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
363
+ ANSI INCITS 351-2001, 11 July 2001 Chapter 8: section 8.4.4,
364
+ Vital Product Data Parameters [SPC2]""",
365
+ },
366
+ "ScsiIdValue" : {
367
+ "basetype" : "OctetString",
368
+ "status" : "current",
369
+ "ranges" : [
370
+ {
371
+ "min" : "0",
372
+ "max" : "255"
373
+ },
374
+ ],
375
+ "range" : {
376
+ "min" : "0",
377
+ "max" : "255"
378
+ },
379
+ "description" :
380
+ """This textual convention represents an identifier. The objects
381
+ of type ScsiIdCodeSet, ScsiIdAssociation, ScsiIdType define
382
+ together the format.
383
+ The format is the same as contained in an Identification
384
+ Descriptor returned in a logical unit's Device Identification
385
+ Page, and is formatted as defined in T10 SPC-2
386
+ (see REFERENCE).""",
387
+ "reference" :
388
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
389
+ ANSI INCITS 351-2001, 11 July 2001 Chapter 8: section 8.4.4,
390
+ Vital Product Data Parameters [SPC2]""",
391
+ },
392
+ "ScsiHrSWInstalledIndexOrZero" : {
393
+ "basetype" : "Integer32",
394
+ "status" : "current",
395
+ "ranges" : [
396
+ {
397
+ "min" : "0",
398
+ "max" : "2147483647"
399
+ },
400
+ ],
401
+ "range" : {
402
+ "min" : "0",
403
+ "max" : "2147483647"
404
+ },
405
+ "format" : "d",
406
+ "description" :
407
+ """The index value for a software module's row in the Host
408
+ Resources MIBs hrSWInstalledTable. A zero value indicates
409
+ that no row in the hrSWInstalledTable is applicable.""",
410
+ "reference" :
411
+ """hrSWInstalledTable is defined in the Host Resources MIB,
412
+ [RFC2790].""",
413
+ },
414
+ }, # typedefs
415
+
416
+ "nodes" : {
417
+ "scsiMIB" : {
418
+ "nodetype" : "node",
419
+ "moduleName" : "SCSI-MIB",
420
+ "oid" : "1.3.6.1.2.1.139",
421
+ "status" : "current",
422
+ }, # node
423
+ "scsiNotifications" : {
424
+ "nodetype" : "node",
425
+ "moduleName" : "SCSI-MIB",
426
+ "oid" : "1.3.6.1.2.1.139.0",
427
+ }, # node
428
+ "scsiNotificationsPrefix" : {
429
+ "nodetype" : "node",
430
+ "moduleName" : "SCSI-MIB",
431
+ "oid" : "1.3.6.1.2.1.139.0.0",
432
+ }, # node
433
+ "scsiAdmin" : {
434
+ "nodetype" : "node",
435
+ "moduleName" : "SCSI-MIB",
436
+ "oid" : "1.3.6.1.2.1.139.1",
437
+ }, # node
438
+ "scsiTransportTypes" : {
439
+ "nodetype" : "node",
440
+ "moduleName" : "SCSI-MIB",
441
+ "oid" : "1.3.6.1.2.1.139.1.1",
442
+ }, # node
443
+ "scsiTransportOther" : {
444
+ "nodetype" : "node",
445
+ "moduleName" : "SCSI-MIB",
446
+ "oid" : "1.3.6.1.2.1.139.1.1.1",
447
+ "status" : "current",
448
+ "description" :
449
+ """This identity identifies a transport that has no identity; it
450
+ might happen because the transport is unknown or might not
451
+ have been defined when this MIB module was created.""",
452
+ }, # node
453
+ "scsiTransportSPI" : {
454
+ "nodetype" : "node",
455
+ "moduleName" : "SCSI-MIB",
456
+ "oid" : "1.3.6.1.2.1.139.1.1.2",
457
+ "status" : "current",
458
+ "description" :
459
+ """This identity identifies a parallel SCSI transport.""",
460
+ "reference" :
461
+ """T10 - SCSI Parallel Interface - 4 (SPI-4)
462
+ - ANSI INCITS 362-2002 [SPI4]""",
463
+ }, # node
464
+ "scsiTransportFCP" : {
465
+ "nodetype" : "node",
466
+ "moduleName" : "SCSI-MIB",
467
+ "oid" : "1.3.6.1.2.1.139.1.1.3",
468
+ "status" : "current",
469
+ "description" :
470
+ """This identity identifies a Fibre Channel Protocol for SCSI,
471
+ Second Version.""",
472
+ "reference" :
473
+ """T10 - SCSI Fibre Channel Protocol - 2 (FCP-2)
474
+ - ANSI INCITS 350-2003 [FCP2]""",
475
+ }, # node
476
+ "scsiTransportSRP" : {
477
+ "nodetype" : "node",
478
+ "moduleName" : "SCSI-MIB",
479
+ "oid" : "1.3.6.1.2.1.139.1.1.4",
480
+ "status" : "current",
481
+ "description" :
482
+ """This identity identifies a protocol for transporting SCSI over
483
+ Remote Direct Memory Access (RDMA) interfaces, e.g., InfiniBand
484
+ (tm).""",
485
+ "reference" :
486
+ """T10 - SCSI RDMA Protocol (SRP)
487
+ - ANSI INCITS 365-2002 [SRP].""",
488
+ }, # node
489
+ "scsiTransportISCSI" : {
490
+ "nodetype" : "node",
491
+ "moduleName" : "SCSI-MIB",
492
+ "oid" : "1.3.6.1.2.1.139.1.1.5",
493
+ "status" : "current",
494
+ "description" :
495
+ """This identity identifies an iSCSI transport.""",
496
+ "reference" :
497
+ """IETF IPS WG - Internet Small Computer Systems Interface
498
+ (iSCSI) [RFC3720] """,
499
+ }, # node
500
+ "scsiTransportSBP" : {
501
+ "nodetype" : "node",
502
+ "moduleName" : "SCSI-MIB",
503
+ "oid" : "1.3.6.1.2.1.139.1.1.6",
504
+ "status" : "current",
505
+ "description" :
506
+ """This identity identifies the Serial Bus Protocol 3.""",
507
+ "reference" :
508
+ """T10 - Serial Bus Protocol 3 (SBP-3)
509
+ - ANSI INCITS 375-2004 [SBP3].""",
510
+ }, # node
511
+ "scsiTransportSAS" : {
512
+ "nodetype" : "node",
513
+ "moduleName" : "SCSI-MIB",
514
+ "oid" : "1.3.6.1.2.1.139.1.1.7",
515
+ "status" : "current",
516
+ "description" :
517
+ """This identity identifies the Serial Attach SCSI Protocol.""",
518
+ "reference" :
519
+ """T10 - Serial Attached SCSI - 1.1 (SAS - 1.1)
520
+ - #1601-D Rev-10 [SAS-1.1].""",
521
+ }, # node
522
+ "scsiObjects" : {
523
+ "nodetype" : "node",
524
+ "moduleName" : "SCSI-MIB",
525
+ "oid" : "1.3.6.1.2.1.139.2",
526
+ }, # node
527
+ "scsiGeneral" : {
528
+ "nodetype" : "node",
529
+ "moduleName" : "SCSI-MIB",
530
+ "oid" : "1.3.6.1.2.1.139.2.1",
531
+ }, # node
532
+ "scsiInstanceTable" : {
533
+ "nodetype" : "table",
534
+ "moduleName" : "SCSI-MIB",
535
+ "oid" : "1.3.6.1.2.1.139.2.1.1",
536
+ "status" : "current",
537
+ "description" :
538
+ """A list of SCSI instances present on the system.
539
+ The SCSI instance is the top-level entity, to which everything
540
+ else belongs. An SNMP agent could represent more than one
541
+ instance if it represents either a stack of devices, or virtual
542
+ partitions of a larger device, or a host running multiple SCSI
543
+ implementations from different vendors.""",
544
+ }, # table
545
+ "scsiInstanceEntry" : {
546
+ "nodetype" : "row",
547
+ "moduleName" : "SCSI-MIB",
548
+ "oid" : "1.3.6.1.2.1.139.2.1.1.1",
549
+ "status" : "current",
550
+ "linkage" : [
551
+ "scsiInstIndex",
552
+ ],
553
+ "description" :
554
+ """An entry (row) containing management information applicable to
555
+ a particular SCSI instance.""",
556
+ }, # row
557
+ "scsiInstIndex" : {
558
+ "nodetype" : "column",
559
+ "moduleName" : "SCSI-MIB",
560
+ "oid" : "1.3.6.1.2.1.139.2.1.1.1.1",
561
+ "status" : "current",
562
+ "syntax" : {
563
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
564
+ },
565
+ "access" : "noaccess",
566
+ "description" :
567
+ """This object represents an arbitrary integer used to uniquely
568
+ identify a particular SCSI instance.""",
569
+ }, # column
570
+ "scsiInstAlias" : {
571
+ "nodetype" : "column",
572
+ "moduleName" : "SCSI-MIB",
573
+ "oid" : "1.3.6.1.2.1.139.2.1.1.1.2",
574
+ "status" : "current",
575
+ "syntax" : {
576
+ "type" : {
577
+ "basetype" : "OctetString",
578
+ "parent module" : {
579
+ "name" : "SNMP-FRAMEWORK-MIB",
580
+ "type" : "SnmpAdminString",
581
+ },
582
+ "ranges" : [
583
+ {
584
+ "min" : "0",
585
+ "max" : "79"
586
+ },
587
+ ],
588
+ "range" : {
589
+ "min" : "0",
590
+ "max" : "79"
591
+ },
592
+ },
593
+ },
594
+ "access" : "readwrite",
595
+ "description" :
596
+ """This object represents an administrative string, configured by
597
+ the administrator. It can be a zero-length string.""",
598
+ }, # column
599
+ "scsiInstSoftwareIndex" : {
600
+ "nodetype" : "column",
601
+ "moduleName" : "SCSI-MIB",
602
+ "oid" : "1.3.6.1.2.1.139.2.1.1.1.3",
603
+ "status" : "current",
604
+ "syntax" : {
605
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiHrSWInstalledIndexOrZero"},
606
+ },
607
+ "access" : "readonly",
608
+ "description" :
609
+ """If this management instance corresponds to an installed
610
+ software module, then this object's value is the value of the
611
+ hrSWInstalledIndex of that module. If there is no
612
+ correspondence to an installed software module (or no module
613
+ that has an hrSWInstalledIndex value), then the value of this
614
+ object is zero.""",
615
+ "reference" :
616
+ """hrSWInstalledIndex is defined in the Host Resources MIB,
617
+ [RFC2790].""",
618
+ }, # column
619
+ "scsiInstVendorVersion" : {
620
+ "nodetype" : "column",
621
+ "moduleName" : "SCSI-MIB",
622
+ "oid" : "1.3.6.1.2.1.139.2.1.1.1.4",
623
+ "status" : "current",
624
+ "syntax" : {
625
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
626
+ },
627
+ "access" : "readonly",
628
+ "description" :
629
+ """This object represents a text string set by the manufacturer
630
+ describing the version of this instance. The format of this
631
+ string is determined solely by the manufacturer and is for
632
+ informational purposes only. It is unrelated to the SCSI
633
+ specification version numbers.""",
634
+ }, # column
635
+ "scsiInstScsiNotificationsEnable" : {
636
+ "nodetype" : "column",
637
+ "moduleName" : "SCSI-MIB",
638
+ "oid" : "1.3.6.1.2.1.139.2.1.1.1.5",
639
+ "status" : "current",
640
+ "syntax" : {
641
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
642
+ },
643
+ "access" : "readwrite",
644
+ "default" : "true",
645
+ "description" :
646
+ """This object indicates whether notifications defined in this
647
+ MIB module will be generated.""",
648
+ }, # column
649
+ "scsiInstStorageType" : {
650
+ "nodetype" : "column",
651
+ "moduleName" : "SCSI-MIB",
652
+ "oid" : "1.3.6.1.2.1.139.2.1.1.1.6",
653
+ "status" : "current",
654
+ "syntax" : {
655
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
656
+ },
657
+ "access" : "readwrite",
658
+ "default" : "nonVolatile",
659
+ "description" :
660
+ """This object specifies the memory realization for
661
+ this SCSI entity.
662
+ Specifically, each row in the following tables:
663
+
664
+ scsiIntrDevTable
665
+ scsiDscTgtTable
666
+ scsiAuthorizedIntrTable
667
+ scsiLunMapTable
668
+
669
+ has a StorageType as specified by the instance of
670
+ this object that is INDEXed by the same value of
671
+ scsiInstIndex.
672
+ This value of this object is also used to indicate
673
+ the persistence across reboots of writable values in
674
+ its row of the scsiInstanceTable.
675
+ Conceptual rows having the value 'permanent' need not
676
+ allow write-access to any columnar objects in the row,
677
+ nor to any object belonging to a table whose entry is
678
+ INDEXed by the same value of scsiInstIndex.""",
679
+ }, # column
680
+ "scsiDeviceTable" : {
681
+ "nodetype" : "table",
682
+ "moduleName" : "SCSI-MIB",
683
+ "oid" : "1.3.6.1.2.1.139.2.1.2",
684
+ "status" : "current",
685
+ "description" :
686
+ """A list of SCSI devices contained in each of the SCSI manageable
687
+ instances that this agent is reporting.""",
688
+ }, # table
689
+ "scsiDeviceEntry" : {
690
+ "nodetype" : "row",
691
+ "moduleName" : "SCSI-MIB",
692
+ "oid" : "1.3.6.1.2.1.139.2.1.2.1",
693
+ "status" : "current",
694
+ "linkage" : [
695
+ "scsiInstIndex",
696
+ "scsiDeviceIndex",
697
+ ],
698
+ "description" :
699
+ """An entry (row) containing management information applicable to
700
+ a particular SCSI device included in this SCSI manageable
701
+ instance identifiable by the value of scsiInstIndex.""",
702
+ }, # row
703
+ "scsiDeviceIndex" : {
704
+ "nodetype" : "column",
705
+ "moduleName" : "SCSI-MIB",
706
+ "oid" : "1.3.6.1.2.1.139.2.1.2.1.1",
707
+ "status" : "current",
708
+ "syntax" : {
709
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
710
+ },
711
+ "access" : "noaccess",
712
+ "description" :
713
+ """This object is an arbitrary integer used to uniquely identify
714
+ a particular device within a particular SCSI instance.""",
715
+ }, # column
716
+ "scsiDeviceAlias" : {
717
+ "nodetype" : "column",
718
+ "moduleName" : "SCSI-MIB",
719
+ "oid" : "1.3.6.1.2.1.139.2.1.2.1.2",
720
+ "status" : "current",
721
+ "syntax" : {
722
+ "type" : {
723
+ "basetype" : "OctetString",
724
+ "parent module" : {
725
+ "name" : "SNMP-FRAMEWORK-MIB",
726
+ "type" : "SnmpAdminString",
727
+ },
728
+ "ranges" : [
729
+ {
730
+ "min" : "0",
731
+ "max" : "79"
732
+ },
733
+ ],
734
+ "range" : {
735
+ "min" : "0",
736
+ "max" : "79"
737
+ },
738
+ },
739
+ },
740
+ "access" : "readwrite",
741
+ "description" :
742
+ """This object contains an administrative name for this device.
743
+ If no name is assigned, the value of this object is the
744
+ zero-length string.
745
+ The StorageType of this object is specified by the instance
746
+ of scsiInstStorageType that is INDEXed by the same value of
747
+ scsiInstIndex.""",
748
+ }, # column
749
+ "scsiDeviceRole" : {
750
+ "nodetype" : "column",
751
+ "moduleName" : "SCSI-MIB",
752
+ "oid" : "1.3.6.1.2.1.139.2.1.2.1.3",
753
+ "status" : "current",
754
+ "syntax" : {
755
+ "type" : {
756
+ "basetype" : "Bits",
757
+ "target" : {
758
+ "nodetype" : "namednumber",
759
+ "number" : "0"
760
+ },
761
+ "initiator" : {
762
+ "nodetype" : "namednumber",
763
+ "number" : "1"
764
+ },
765
+ },
766
+ },
767
+ "access" : "readonly",
768
+ "description" :
769
+ """This object determines whether this device is acting as a
770
+ SCSI initiator device, or as a SCSI target device, or as both.""",
771
+ }, # column
772
+ "scsiDevicePortNumber" : {
773
+ "nodetype" : "column",
774
+ "moduleName" : "SCSI-MIB",
775
+ "oid" : "1.3.6.1.2.1.139.2.1.2.1.4",
776
+ "status" : "current",
777
+ "syntax" : {
778
+ "type" : { "module" :"", "name" : "Unsigned32"},
779
+ },
780
+ "access" : "readonly",
781
+ "description" :
782
+ """This object represents the number of ports contained in this
783
+ device.""",
784
+ }, # column
785
+ "scsiPortTable" : {
786
+ "nodetype" : "table",
787
+ "moduleName" : "SCSI-MIB",
788
+ "oid" : "1.3.6.1.2.1.139.2.1.3",
789
+ "status" : "current",
790
+ "description" :
791
+ """A list of SCSI ports for each SCSI device in each instance.""",
792
+ }, # table
793
+ "scsiPortEntry" : {
794
+ "nodetype" : "row",
795
+ "moduleName" : "SCSI-MIB",
796
+ "oid" : "1.3.6.1.2.1.139.2.1.3.1",
797
+ "status" : "current",
798
+ "linkage" : [
799
+ "scsiInstIndex",
800
+ "scsiDeviceIndex",
801
+ "scsiPortIndex",
802
+ ],
803
+ "description" :
804
+ """An entry (row) containing management information applicable to
805
+ a particular SCSI port of a particular SCSI device in a
806
+ particular SCSI instance.""",
807
+ }, # row
808
+ "scsiPortIndex" : {
809
+ "nodetype" : "column",
810
+ "moduleName" : "SCSI-MIB",
811
+ "oid" : "1.3.6.1.2.1.139.2.1.3.1.1",
812
+ "status" : "current",
813
+ "syntax" : {
814
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
815
+ },
816
+ "access" : "noaccess",
817
+ "description" :
818
+ """An arbitrary integer used to uniquely identify a particular
819
+ port of a given device within a particular SCSI instance.""",
820
+ }, # column
821
+ "scsiPortRole" : {
822
+ "nodetype" : "column",
823
+ "moduleName" : "SCSI-MIB",
824
+ "oid" : "1.3.6.1.2.1.139.2.1.3.1.2",
825
+ "status" : "current",
826
+ "syntax" : {
827
+ "type" : {
828
+ "basetype" : "Bits",
829
+ "target" : {
830
+ "nodetype" : "namednumber",
831
+ "number" : "0"
832
+ },
833
+ "initiator" : {
834
+ "nodetype" : "namednumber",
835
+ "number" : "1"
836
+ },
837
+ },
838
+ },
839
+ "access" : "readonly",
840
+ "description" :
841
+ """This object indicates whether this port is acting as a
842
+ SCSI initiator port, or as a SCSI target port or as both.""",
843
+ }, # column
844
+ "scsiPortTransportPtr" : {
845
+ "nodetype" : "column",
846
+ "moduleName" : "SCSI-MIB",
847
+ "oid" : "1.3.6.1.2.1.139.2.1.3.1.3",
848
+ "status" : "current",
849
+ "syntax" : {
850
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
851
+ },
852
+ "access" : "readonly",
853
+ "description" :
854
+ """This object is a pointer to the corresponding row in the
855
+ scsiTransportTable. This row contains information on the
856
+ transport such as transport type and port name.""",
857
+ }, # column
858
+ "scsiPortBusyStatuses" : {
859
+ "nodetype" : "column",
860
+ "moduleName" : "SCSI-MIB",
861
+ "oid" : "1.3.6.1.2.1.139.2.1.3.1.4",
862
+ "status" : "current",
863
+ "syntax" : {
864
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
865
+ },
866
+ "access" : "readonly",
867
+ "description" :
868
+ """This object represents the number of port busy statuses sent or
869
+ received by this port. Note: Initiator ports only receive busy
870
+ status and SCSI target ports only send busy status.
871
+ Discontinuities in the value of this counter can occur at re-
872
+ initialization of the management system.""",
873
+ }, # column
874
+ "scsiTransportTable" : {
875
+ "nodetype" : "table",
876
+ "moduleName" : "SCSI-MIB",
877
+ "oid" : "1.3.6.1.2.1.139.2.1.5",
878
+ "status" : "current",
879
+ "description" :
880
+ """This table contains the device transport-specific information
881
+ for each transport connected to each device in
882
+ scsiDeviceTable.""",
883
+ }, # table
884
+ "scsiTransportEntry" : {
885
+ "nodetype" : "row",
886
+ "moduleName" : "SCSI-MIB",
887
+ "oid" : "1.3.6.1.2.1.139.2.1.5.1",
888
+ "status" : "current",
889
+ "linkage" : [
890
+ "scsiInstIndex",
891
+ "scsiDeviceIndex",
892
+ "scsiTransportIndex",
893
+ ],
894
+ "description" :
895
+ """An entry (row) containing parameters applicable to a transport
896
+ used by a particular device of a particular SCSI manageable
897
+ instance.""",
898
+ }, # row
899
+ "scsiTransportIndex" : {
900
+ "nodetype" : "column",
901
+ "moduleName" : "SCSI-MIB",
902
+ "oid" : "1.3.6.1.2.1.139.2.1.5.1.1",
903
+ "status" : "current",
904
+ "syntax" : {
905
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
906
+ },
907
+ "access" : "noaccess",
908
+ "description" :
909
+ """An arbitrary integer used to uniquely identify a particular
910
+ transport within a given device within a particular SCSI
911
+ instance.""",
912
+ }, # column
913
+ "scsiTransportType" : {
914
+ "nodetype" : "column",
915
+ "moduleName" : "SCSI-MIB",
916
+ "oid" : "1.3.6.1.2.1.139.2.1.5.1.2",
917
+ "status" : "current",
918
+ "syntax" : {
919
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
920
+ },
921
+ "access" : "readonly",
922
+ "description" :
923
+ """This object identifies the transport type of this row of the
924
+ transport table. For example, if this object has the value
925
+ scsiTransportFCP, then the identified transport is FCP.""",
926
+ }, # column
927
+ "scsiTransportPointer" : {
928
+ "nodetype" : "column",
929
+ "moduleName" : "SCSI-MIB",
930
+ "oid" : "1.3.6.1.2.1.139.2.1.5.1.3",
931
+ "status" : "current",
932
+ "syntax" : {
933
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
934
+ },
935
+ "access" : "readonly",
936
+ "description" :
937
+ """This object represents a pointer to a conceptual row in a
938
+ 'transport' MIB module allowing a manager to get useful
939
+ information for the transport described by this entry.
940
+ For example, if the transport of this device is iSCSI, this
941
+ object will point to the iSCSI Instance of the iSCSI MIB
942
+ module.
943
+ If there is no MIB for this transport, this object has the
944
+ value 0.0.""",
945
+ }, # column
946
+ "scsiTransportDevName" : {
947
+ "nodetype" : "column",
948
+ "moduleName" : "SCSI-MIB",
949
+ "oid" : "1.3.6.1.2.1.139.2.1.5.1.4",
950
+ "status" : "current",
951
+ "syntax" : {
952
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiName"},
953
+ },
954
+ "access" : "readonly",
955
+ "description" :
956
+ """This object represents the name of this device in one of the
957
+ format(s) appropriate for this type of transport.""",
958
+ }, # column
959
+ "scsiInitiatorDevice" : {
960
+ "nodetype" : "node",
961
+ "moduleName" : "SCSI-MIB",
962
+ "oid" : "1.3.6.1.2.1.139.2.2",
963
+ }, # node
964
+ "scsiIntrDevTable" : {
965
+ "nodetype" : "table",
966
+ "moduleName" : "SCSI-MIB",
967
+ "oid" : "1.3.6.1.2.1.139.2.2.1",
968
+ "status" : "current",
969
+ "description" :
970
+ """This table contains information for each local SCSI initiator
971
+ device in each instance.""",
972
+ }, # table
973
+ "scsiIntrDevEntry" : {
974
+ "nodetype" : "row",
975
+ "moduleName" : "SCSI-MIB",
976
+ "oid" : "1.3.6.1.2.1.139.2.2.1.1",
977
+ "status" : "current",
978
+ "linkage" : [
979
+ "scsiInstIndex",
980
+ "scsiDeviceIndex",
981
+ ],
982
+ "description" :
983
+ """An entry (row) containing information applicable to a SCSI
984
+ initiator device within a particular SCSI instance.""",
985
+ }, # row
986
+ "scsiIntrDevTgtAccessMode" : {
987
+ "nodetype" : "column",
988
+ "moduleName" : "SCSI-MIB",
989
+ "oid" : "1.3.6.1.2.1.139.2.2.1.1.1",
990
+ "status" : "current",
991
+ "syntax" : {
992
+ "type" : {
993
+ "basetype" : "Enumeration",
994
+ "unknown" : {
995
+ "nodetype" : "namednumber",
996
+ "number" : "1"
997
+ },
998
+ "autoEnable" : {
999
+ "nodetype" : "namednumber",
1000
+ "number" : "2"
1001
+ },
1002
+ "manualEnable" : {
1003
+ "nodetype" : "namednumber",
1004
+ "number" : "3"
1005
+ },
1006
+ },
1007
+ },
1008
+ "access" : "readwrite",
1009
+ "description" :
1010
+ """This object controls whether or not a discovered SCSI target
1011
+ device is immediately authorized:
1012
+ - autoEnable (2) means that when a SCSI initiator device
1013
+ discovers a SCSI target device, it can use it immediately.
1014
+ - manualEnable (3) means that the SCSI initiator device
1015
+ must wait for an operator to set scsiIntrDscTgtConfigured
1016
+ = true before it is authorized.
1017
+ The StorageType of this object is specified by the instance
1018
+ of scsiInstStorageType that is INDEXed by the same value of
1019
+ scsiInstIndex.""",
1020
+ }, # column
1021
+ "scsiIntrDevOutResets" : {
1022
+ "nodetype" : "column",
1023
+ "moduleName" : "SCSI-MIB",
1024
+ "oid" : "1.3.6.1.2.1.139.2.2.1.1.2",
1025
+ "status" : "current",
1026
+ "syntax" : {
1027
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1028
+ },
1029
+ "access" : "readonly",
1030
+ "description" :
1031
+ """This object represents the total number of times that this SCSI
1032
+ initiator device has issued
1033
+ - a LOGICAL UNIT RESET or TARGET RESET task management request,
1034
+ or
1035
+ - any other SCSI transport protocol-specific action or event
1036
+ that causes a Logical Unit Reset or a Hard Reset at one or
1037
+ more SCSI target ports ([SAM2] chapters 5.9.6, 5.9.7).
1038
+ Discontinuities in the value of this counter can occur at re-
1039
+ initialization of the management system.""",
1040
+ "reference" :
1041
+ """SCSI Architecture Model-2 (SAM-2), ANSI INCITS 366-2003,
1042
+ T10 Project 1157-D, 12 September 2002
1043
+ Chapters 5.9.6 & 5.9.7 [SAM2]""",
1044
+ }, # column
1045
+ "scsiIntrPortTable" : {
1046
+ "nodetype" : "table",
1047
+ "moduleName" : "SCSI-MIB",
1048
+ "oid" : "1.3.6.1.2.1.139.2.2.2",
1049
+ "status" : "current",
1050
+ "description" :
1051
+ """This table contains all the SCSI initiator ports for each
1052
+ local SCSI initiator or target/initiator devices in each SCSI
1053
+ instance.""",
1054
+ }, # table
1055
+ "scsiIntrPortEntry" : {
1056
+ "nodetype" : "row",
1057
+ "moduleName" : "SCSI-MIB",
1058
+ "oid" : "1.3.6.1.2.1.139.2.2.2.1",
1059
+ "status" : "current",
1060
+ "linkage" : [
1061
+ "scsiInstIndex",
1062
+ "scsiDeviceIndex",
1063
+ "scsiPortIndex",
1064
+ ],
1065
+ "description" :
1066
+ """An entry (row) containing information applicable to a
1067
+ particular SCSI initiator port of a particular SCSI device
1068
+ within a SCSI instance.""",
1069
+ }, # row
1070
+ "scsiIntrPortName" : {
1071
+ "nodetype" : "column",
1072
+ "moduleName" : "SCSI-MIB",
1073
+ "oid" : "1.3.6.1.2.1.139.2.2.2.1.1",
1074
+ "status" : "current",
1075
+ "syntax" : {
1076
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiName"},
1077
+ },
1078
+ "access" : "readonly",
1079
+ "description" :
1080
+ """This object represents the name of the port assigned for use
1081
+ by the SCSI protocol. The format will depend on the type of
1082
+ transport this port is using.""",
1083
+ }, # column
1084
+ "scsiIntrPortIdentifier" : {
1085
+ "nodetype" : "column",
1086
+ "moduleName" : "SCSI-MIB",
1087
+ "oid" : "1.3.6.1.2.1.139.2.2.2.1.2",
1088
+ "status" : "current",
1089
+ "syntax" : {
1090
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdentifier"},
1091
+ },
1092
+ "access" : "readonly",
1093
+ "description" :
1094
+ """This object represents the identifier of the port in one of
1095
+ the format(s) appropriate for the type of transport in use.""",
1096
+ }, # column
1097
+ "scsiIntrPortOutCommands" : {
1098
+ "nodetype" : "column",
1099
+ "moduleName" : "SCSI-MIB",
1100
+ "oid" : "1.3.6.1.2.1.139.2.2.2.1.3",
1101
+ "status" : "current",
1102
+ "syntax" : {
1103
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1104
+ },
1105
+ "access" : "readonly",
1106
+ "units" : "commands",
1107
+ "description" :
1108
+ """This object represents the number of commands sent by this
1109
+ SCSI initiator port.
1110
+ Discontinuities in the value of this counter can occur at re-
1111
+ initialization of the management system.""",
1112
+ }, # column
1113
+ "scsiIntrPortWrittenMegaBytes" : {
1114
+ "nodetype" : "column",
1115
+ "moduleName" : "SCSI-MIB",
1116
+ "oid" : "1.3.6.1.2.1.139.2.2.2.1.4",
1117
+ "status" : "current",
1118
+ "syntax" : {
1119
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1120
+ },
1121
+ "access" : "readonly",
1122
+ "units" : "Megabytes",
1123
+ "description" :
1124
+ """This object represents the amount of data in megabytes sent
1125
+ by this SCSI initiator port.
1126
+ Discontinuities in the value of this counter can occur at re-
1127
+ initialization of the management system.""",
1128
+ }, # column
1129
+ "scsiIntrPortReadMegaBytes" : {
1130
+ "nodetype" : "column",
1131
+ "moduleName" : "SCSI-MIB",
1132
+ "oid" : "1.3.6.1.2.1.139.2.2.2.1.5",
1133
+ "status" : "current",
1134
+ "syntax" : {
1135
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1136
+ },
1137
+ "access" : "readonly",
1138
+ "units" : "Megabytes",
1139
+ "description" :
1140
+ """This object represents the amount of data in megabytes
1141
+ received by this SCSI initiator port.
1142
+ Discontinuities in the value of this counter can occur at re-
1143
+ initialization of the management system.""",
1144
+ }, # column
1145
+ "scsiIntrPortHSOutCommands" : {
1146
+ "nodetype" : "column",
1147
+ "moduleName" : "SCSI-MIB",
1148
+ "oid" : "1.3.6.1.2.1.139.2.2.2.1.6",
1149
+ "status" : "current",
1150
+ "syntax" : {
1151
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1152
+ },
1153
+ "access" : "readonly",
1154
+ "units" : "commands",
1155
+ "description" :
1156
+ """This object represents the number of commands sent by this
1157
+ SCSI initiator port. This object provides support for systems
1158
+ that can quickly generate a large number of commands because
1159
+ they run at high speed.
1160
+ Discontinuities in the value of this counter can occur at re-
1161
+ initialization of the management system.""",
1162
+ }, # column
1163
+ "scsiRemoteTgtDev" : {
1164
+ "nodetype" : "node",
1165
+ "moduleName" : "SCSI-MIB",
1166
+ "oid" : "1.3.6.1.2.1.139.2.2.3",
1167
+ }, # node
1168
+ "scsiDscTgtTable" : {
1169
+ "nodetype" : "table",
1170
+ "moduleName" : "SCSI-MIB",
1171
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1",
1172
+ "status" : "current",
1173
+ "description" :
1174
+ """This table includes all the remote (not in the local system)
1175
+ SCSI target ports that are authorized to attach to each local
1176
+ SCSI initiator port of this SCSI instance.""",
1177
+ }, # table
1178
+ "scsiDscTgtEntry" : {
1179
+ "nodetype" : "row",
1180
+ "moduleName" : "SCSI-MIB",
1181
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1",
1182
+ "create" : "true",
1183
+ "status" : "current",
1184
+ "linkage" : [
1185
+ "scsiInstIndex",
1186
+ "scsiDeviceIndex",
1187
+ "scsiDscTgtIntrPortIndex",
1188
+ "scsiDscTgtIndex",
1189
+ ],
1190
+ "description" :
1191
+ """Each entry (row) contains information about the SCSI target
1192
+ device or port to which this SCSI initiator port (or all SCSI
1193
+ initiator ports in the SCSI initiator entry indexed by
1194
+ scsiInstIndex, scsiDeviceIndex) will attempt to attach. The
1195
+ entry is either for all local ports (if scsiDscTgtIntrPortIndex
1196
+ is zero) or only for the specific SCSI initiator port
1197
+ identified by scsiDscTgtIntrPortIndex. Note that if an entry in
1198
+ this table is deleted, any corresponding entries in the
1199
+ scsiDscLunsTable must be deleted as well.
1200
+ The StorageType of a row in this table is specified by the
1201
+ instance of scsiInstStorageType that is INDEXed by the same
1202
+ value of scsiInstIndex.""",
1203
+ }, # row
1204
+ "scsiDscTgtIntrPortIndex" : {
1205
+ "nodetype" : "column",
1206
+ "moduleName" : "SCSI-MIB",
1207
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.1",
1208
+ "status" : "current",
1209
+ "syntax" : {
1210
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiPortIndexValueOrZero"},
1211
+ },
1212
+ "access" : "noaccess",
1213
+ "description" :
1214
+ """This object relates to a particular local device within a
1215
+ particular SCSI instance and specifies
1216
+ - the index of the local SCSI initiator port,
1217
+ - or zero, if this entry refers to the local device and
1218
+ therefore refers to all the local SCSI initiator ports.""",
1219
+ }, # column
1220
+ "scsiDscTgtIndex" : {
1221
+ "nodetype" : "column",
1222
+ "moduleName" : "SCSI-MIB",
1223
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.2",
1224
+ "status" : "current",
1225
+ "syntax" : {
1226
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
1227
+ },
1228
+ "access" : "noaccess",
1229
+ "description" :
1230
+ """This object is an arbitrary integer used to uniquely identify
1231
+ a particular SCSI target device either discovered by, or
1232
+ configured for use with, one or more ports scsiDscTgtName of
1233
+ a particular device within a particular SCSI instance.""",
1234
+ }, # column
1235
+ "scsiDscTgtDevOrPort" : {
1236
+ "nodetype" : "column",
1237
+ "moduleName" : "SCSI-MIB",
1238
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.3",
1239
+ "status" : "current",
1240
+ "syntax" : {
1241
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiDeviceOrPort"},
1242
+ },
1243
+ "access" : "readwrite",
1244
+ "description" :
1245
+ """This object indicates whether this entry describes a
1246
+ configured SCSI target device name (and applies to all ports
1247
+ on the identified SCSI target device) or an individual SCSI
1248
+ target port.""",
1249
+ }, # column
1250
+ "scsiDscTgtName" : {
1251
+ "nodetype" : "column",
1252
+ "moduleName" : "SCSI-MIB",
1253
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.4",
1254
+ "status" : "current",
1255
+ "syntax" : {
1256
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiName"},
1257
+ },
1258
+ "access" : "readwrite",
1259
+ "description" :
1260
+ """This object represents the name of this configured or
1261
+ discovered SCSI target device or port depending on the value
1262
+ of scsiDscTgtDevOrPort.""",
1263
+ }, # column
1264
+ "scsiDscTgtConfigured" : {
1265
+ "nodetype" : "column",
1266
+ "moduleName" : "SCSI-MIB",
1267
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.5",
1268
+ "status" : "current",
1269
+ "syntax" : {
1270
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1271
+ },
1272
+ "access" : "readwrite",
1273
+ "default" : "true",
1274
+ "description" :
1275
+ """This object means
1276
+ -true(1): this entry has been configured by an administrator.
1277
+ -false(2): this entry has been added from a discovery
1278
+ mechanism (e.g., SendTargets, SLP, iSNS).
1279
+ An administrator can modify this value from false to true.""",
1280
+ }, # column
1281
+ "scsiDscTgtDiscovered" : {
1282
+ "nodetype" : "column",
1283
+ "moduleName" : "SCSI-MIB",
1284
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.6",
1285
+ "status" : "current",
1286
+ "syntax" : {
1287
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1288
+ },
1289
+ "access" : "readonly",
1290
+ "description" :
1291
+ """This object means
1292
+ -true(1): this entry has been discovered by the SCSI instance
1293
+ as result of an automatic discovery process.
1294
+ -false(2):this entry has been added by manual configuration.
1295
+ This entry is read-only because an administrator cannot change
1296
+ it.
1297
+ Note that it is an implementation decision to determine how
1298
+ long to retain a row with configured=false, such as when the
1299
+ SCSI target device is no longer visible/accessible to the local
1300
+ SCSI initiator device.""",
1301
+ }, # column
1302
+ "scsiDscTgtInCommands" : {
1303
+ "nodetype" : "column",
1304
+ "moduleName" : "SCSI-MIB",
1305
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.7",
1306
+ "status" : "current",
1307
+ "syntax" : {
1308
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1309
+ },
1310
+ "access" : "readonly",
1311
+ "units" : "commands",
1312
+ "description" :
1313
+ """This object represents the number of commands received from
1314
+ this SCSI target port or device.
1315
+ Discontinuities in the value of this counter can occur at re-
1316
+ initialization of the management system, and at other times as
1317
+ indicated by the value of scsiDscTgtLastCreation.""",
1318
+ }, # column
1319
+ "scsiDscTgtWrittenMegaBytes" : {
1320
+ "nodetype" : "column",
1321
+ "moduleName" : "SCSI-MIB",
1322
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.8",
1323
+ "status" : "current",
1324
+ "syntax" : {
1325
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1326
+ },
1327
+ "access" : "readonly",
1328
+ "units" : "Megabytes",
1329
+ "description" :
1330
+ """This object represents the amount of megabytes of data sent as
1331
+ the result of WRITE commands to this SCSI target port or device.
1332
+ Discontinuities in the value of this counter can occur at re-
1333
+ initialization of the management system, and at other times as
1334
+ indicated by the value of scsiDscTgtLastCreation.""",
1335
+ }, # column
1336
+ "scsiDscTgtReadMegaBytes" : {
1337
+ "nodetype" : "column",
1338
+ "moduleName" : "SCSI-MIB",
1339
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.9",
1340
+ "status" : "current",
1341
+ "syntax" : {
1342
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1343
+ },
1344
+ "access" : "readonly",
1345
+ "units" : "Megabytes",
1346
+ "description" :
1347
+ """This object represents the amount of megabytes received as the
1348
+ result of READ commands to this SCSI target port or device.
1349
+ Discontinuities in the value of this counter can occur at re-
1350
+ initialization of the management system, and at other times as
1351
+ indicated by the value of scsiDscTgtLastCreation.""",
1352
+ }, # column
1353
+ "scsiDscTgtHSInCommands" : {
1354
+ "nodetype" : "column",
1355
+ "moduleName" : "SCSI-MIB",
1356
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.10",
1357
+ "status" : "current",
1358
+ "syntax" : {
1359
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1360
+ },
1361
+ "access" : "readonly",
1362
+ "units" : "commands",
1363
+ "description" :
1364
+ """This object represents the number of commands received by this
1365
+ SCSI target port or device. This object provides support for
1366
+ system that can quickly generate a large number of commands
1367
+ because they run at high speed.
1368
+ Discontinuities in the value of this counter can occur at re-
1369
+ initialization of the management system, and at other times as
1370
+ indicated by the value of scsiDscTgtLastCreation.""",
1371
+ }, # column
1372
+ "scsiDscTgtLastCreation" : {
1373
+ "nodetype" : "column",
1374
+ "moduleName" : "SCSI-MIB",
1375
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.11",
1376
+ "status" : "current",
1377
+ "syntax" : {
1378
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1379
+ },
1380
+ "access" : "readonly",
1381
+ "description" :
1382
+ """This object represents the value of sysUpTime when this row
1383
+ was created.""",
1384
+ }, # column
1385
+ "scsiDscTgtRowStatus" : {
1386
+ "nodetype" : "column",
1387
+ "moduleName" : "SCSI-MIB",
1388
+ "oid" : "1.3.6.1.2.1.139.2.2.3.1.1.12",
1389
+ "status" : "current",
1390
+ "syntax" : {
1391
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1392
+ },
1393
+ "access" : "readwrite",
1394
+ "description" :
1395
+ """This object allows an administrator to configure dynamically a
1396
+ new entry in this table via SNMP or eventually delete it.
1397
+ An administrator is not allowed to delete an entry for which
1398
+ the value of the object scsiIntrDscTgtDiscovered is equal to
1399
+ true.
1400
+ Note that when an entry in this table is deleted, then any
1401
+ corresponding entries in the scsiDscLunsTable must also be
1402
+ automatically deleted.
1403
+
1404
+ A newly created row cannot be made active until a value has
1405
+ been set for scsiDscTgtName. In this case, the value of the
1406
+ corresponding instance of the scsiDscTgtRowStatus column will
1407
+ stay 'notReady'.
1408
+ The RowStatus TC [RFC2579] requires that this DESCRIPTION
1409
+ clause states under which circumstances other objects in this
1410
+ row can be modified:
1411
+ The value of this object has no effect on whether other objects
1412
+ in this conceptual row can be modified.""",
1413
+ }, # column
1414
+ "scsiDscLunTable" : {
1415
+ "nodetype" : "table",
1416
+ "moduleName" : "SCSI-MIB",
1417
+ "oid" : "1.3.6.1.2.1.139.2.2.3.2",
1418
+ "status" : "current",
1419
+ "description" :
1420
+ """This table includes all the remote (not in the local system)
1421
+ logical unit numbers (LUNs) discovered via each local SCSI
1422
+ initiator port of each local device within a particular SCSI
1423
+ instance.""",
1424
+ }, # table
1425
+ "scsiDscLunEntry" : {
1426
+ "nodetype" : "row",
1427
+ "moduleName" : "SCSI-MIB",
1428
+ "oid" : "1.3.6.1.2.1.139.2.2.3.2.1",
1429
+ "status" : "current",
1430
+ "linkage" : [
1431
+ "scsiInstIndex",
1432
+ "scsiDeviceIndex",
1433
+ "scsiDscTgtIntrPortIndex",
1434
+ "scsiDscTgtIndex",
1435
+ "scsiDscLunIndex",
1436
+ ],
1437
+ "description" :
1438
+ """An entry (row) represents a discovered LUN at a particular
1439
+ SCSI target device (scsiDscTgtIndex), where the LUN was
1440
+ discovered by a particular local SCSI initiator device within a
1441
+ particular SCSI instance, possibly via a particular local
1442
+ SCSI initiator port.
1443
+ Note that when an entry in the scsiDscTgtTable is deleted,
1444
+ all corresponding entries in this table should automatically be
1445
+ deleted.""",
1446
+ }, # row
1447
+ "scsiDscLunIndex" : {
1448
+ "nodetype" : "column",
1449
+ "moduleName" : "SCSI-MIB",
1450
+ "oid" : "1.3.6.1.2.1.139.2.2.3.2.1.1",
1451
+ "status" : "current",
1452
+ "syntax" : {
1453
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
1454
+ },
1455
+ "access" : "noaccess",
1456
+ "description" :
1457
+ """This object is an arbitrary integer used to uniquely identify
1458
+ a particular LUN discovered by a particular SCSI initiator port
1459
+ or a particular SCSI initiator device within a particular SCSI
1460
+ instance.
1461
+ Entries in the scsiDscLunIdTable are associated with a LUN by
1462
+ having the value of this object in their INDEX.""",
1463
+ }, # column
1464
+ "scsiDscLunLun" : {
1465
+ "nodetype" : "column",
1466
+ "moduleName" : "SCSI-MIB",
1467
+ "oid" : "1.3.6.1.2.1.139.2.2.3.2.1.2",
1468
+ "status" : "current",
1469
+ "syntax" : {
1470
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiLUN"},
1471
+ },
1472
+ "access" : "readonly",
1473
+ "description" :
1474
+ """This object contains the Logical Unit Number (LUN) of the
1475
+ discovered logical unit.""",
1476
+ }, # column
1477
+ "scsiDscLunIdTable" : {
1478
+ "nodetype" : "table",
1479
+ "moduleName" : "SCSI-MIB",
1480
+ "oid" : "1.3.6.1.2.1.139.2.2.3.3",
1481
+ "status" : "current",
1482
+ "description" :
1483
+ """This table includes all the known LU identifiers of the remote
1484
+ (not in the local system) logical units discovered via each
1485
+ local SCSI initiator port or device of this SCSI instance.""",
1486
+ }, # table
1487
+ "scsiDscLunIdEntry" : {
1488
+ "nodetype" : "row",
1489
+ "moduleName" : "SCSI-MIB",
1490
+ "oid" : "1.3.6.1.2.1.139.2.2.3.3.1",
1491
+ "status" : "current",
1492
+ "linkage" : [
1493
+ "scsiInstIndex",
1494
+ "scsiDeviceIndex",
1495
+ "scsiDscTgtIntrPortIndex",
1496
+ "scsiDscTgtIndex",
1497
+ "scsiDscLunIndex",
1498
+ "scsiDscLunIdIndex",
1499
+ ],
1500
+ "description" :
1501
+ """An entry (row) represents the LU identifier of a discovered
1502
+ LUN at a particular SCSI target device (scsiDscTgtIndex), where
1503
+ the LUN was discovered by a particular local SCSI initiator
1504
+ device within a particular SCSI instance, possibly via a
1505
+ particular local SCSI initiator port.""",
1506
+ }, # row
1507
+ "scsiDscLunIdIndex" : {
1508
+ "nodetype" : "column",
1509
+ "moduleName" : "SCSI-MIB",
1510
+ "oid" : "1.3.6.1.2.1.139.2.2.3.3.1.1",
1511
+ "status" : "current",
1512
+ "syntax" : {
1513
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
1514
+ },
1515
+ "access" : "noaccess",
1516
+ "description" :
1517
+ """This object is an arbitrary integer used to uniquely identify
1518
+ a particular LUN identifier discovered by each SCSI initiator
1519
+ device or particular SCSI initiator port within a particular
1520
+ SCSI instance.""",
1521
+ }, # column
1522
+ "scsiDscLunIdCodeSet" : {
1523
+ "nodetype" : "column",
1524
+ "moduleName" : "SCSI-MIB",
1525
+ "oid" : "1.3.6.1.2.1.139.2.2.3.3.1.2",
1526
+ "status" : "current",
1527
+ "syntax" : {
1528
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdCodeSet"},
1529
+ },
1530
+ "access" : "readonly",
1531
+ "description" :
1532
+ """This object specifies the code set in use with this
1533
+ identifier. The value is represented in the same format as
1534
+ is contained in the identifier's Identification Descriptor
1535
+ within the logical unit's Device Identification Page.""",
1536
+ "reference" :
1537
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
1538
+ ANSI INCITS 351-2001, 11 July 2001 Chapter 8: section 8.4.4,
1539
+ Vital Product Data Parameters [SPC2]""",
1540
+ }, # column
1541
+ "scsiDscLunIdAssociation" : {
1542
+ "nodetype" : "column",
1543
+ "moduleName" : "SCSI-MIB",
1544
+ "oid" : "1.3.6.1.2.1.139.2.2.3.3.1.3",
1545
+ "status" : "current",
1546
+ "syntax" : {
1547
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdAssociation"},
1548
+ },
1549
+ "access" : "readonly",
1550
+ "description" :
1551
+ """This object specifies what the identifier is associated with
1552
+ (e.g., with the addressed physical/logical device or with a
1553
+ particular port). The value is represented in the same format
1554
+ as is contained in the identifier's Identification Descriptor
1555
+ within the logical unit's Device Identification Page.""",
1556
+ "reference" :
1557
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
1558
+ ANSI INCITS 351-2001, 11 July 2001 Chapter 8: section 8.4.4,
1559
+ Vital Product Data Parameters [SPC2]""",
1560
+ }, # column
1561
+ "scsiDscLunIdType" : {
1562
+ "nodetype" : "column",
1563
+ "moduleName" : "SCSI-MIB",
1564
+ "oid" : "1.3.6.1.2.1.139.2.2.3.3.1.4",
1565
+ "status" : "current",
1566
+ "syntax" : {
1567
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdType"},
1568
+ },
1569
+ "access" : "readonly",
1570
+ "description" :
1571
+ """This object specifies the type of the identifier.
1572
+ The value is represented in the same format as is contained in
1573
+ the identifier's Identification Descriptor within the logical
1574
+ unit's Device Identification Page.""",
1575
+ "reference" :
1576
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
1577
+ ANSI INCITS 351-2001, 11 July 2001 Chapter 8: section 8.4.4,
1578
+ Vital Product Data Parameters [SPC2]""",
1579
+ }, # column
1580
+ "scsiDscLunIdValue" : {
1581
+ "nodetype" : "column",
1582
+ "moduleName" : "SCSI-MIB",
1583
+ "oid" : "1.3.6.1.2.1.139.2.2.3.3.1.5",
1584
+ "status" : "current",
1585
+ "syntax" : {
1586
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdValue"},
1587
+ },
1588
+ "access" : "readonly",
1589
+ "description" :
1590
+ """This object represents the actual value of this identifier.
1591
+ The format is defined by the objects scsiDscLunIdCodeSet,
1592
+ scsiDscLunIdAssociation, scsiDscLunIdType.
1593
+ The value is represented in the same format as is contained in
1594
+ the identifier's Identification Descriptor within the logical
1595
+ unit's Device Identification Page.""",
1596
+ "reference" :
1597
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
1598
+ ANSI INCITS 351-2001, 11 July 2001 Chapter 8: section 8.4.4,
1599
+ Vital Product Data Parameters [SPC2]""",
1600
+ }, # column
1601
+ "scsiAttTgtPortTable" : {
1602
+ "nodetype" : "table",
1603
+ "moduleName" : "SCSI-MIB",
1604
+ "oid" : "1.3.6.1.2.1.139.2.2.3.4",
1605
+ "status" : "current",
1606
+ "description" :
1607
+ """This table includes all the remote (not in the local system)
1608
+ SCSI target ports that are currently attached to each local
1609
+ SCSI initiator port of this SCSI instance.""",
1610
+ }, # table
1611
+ "scsiAttTgtPortEntry" : {
1612
+ "nodetype" : "row",
1613
+ "moduleName" : "SCSI-MIB",
1614
+ "oid" : "1.3.6.1.2.1.139.2.2.3.4.1",
1615
+ "status" : "current",
1616
+ "linkage" : [
1617
+ "scsiInstIndex",
1618
+ "scsiDeviceIndex",
1619
+ "scsiPortIndex",
1620
+ "scsiAttTgtPortIndex",
1621
+ ],
1622
+ "description" :
1623
+ """An entry (row) represents a remote SCSI target port
1624
+ (scsiAttTgtPortIndex) currently attached to a particular
1625
+ SCSI initiator port (scsiPortIndex) of a particular SCSI
1626
+ initiator device within a particular SCSI instance.""",
1627
+ }, # row
1628
+ "scsiAttTgtPortIndex" : {
1629
+ "nodetype" : "column",
1630
+ "moduleName" : "SCSI-MIB",
1631
+ "oid" : "1.3.6.1.2.1.139.2.2.3.4.1.1",
1632
+ "status" : "current",
1633
+ "syntax" : {
1634
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
1635
+ },
1636
+ "access" : "noaccess",
1637
+ "description" :
1638
+ """An arbitrary integer used to uniquely identify a particular
1639
+ SCSI target currently attached to a particular SCSI initiator
1640
+ port of a particular SCSI initiator device within a particular
1641
+ SCSI instance.""",
1642
+ }, # column
1643
+ "scsiAttTgtPortDscTgtIdx" : {
1644
+ "nodetype" : "column",
1645
+ "moduleName" : "SCSI-MIB",
1646
+ "oid" : "1.3.6.1.2.1.139.2.2.3.4.1.2",
1647
+ "status" : "current",
1648
+ "syntax" : {
1649
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValueOrZero"},
1650
+ },
1651
+ "access" : "readonly",
1652
+ "description" :
1653
+ """This object contains the value of the scsiDscTgtIntrPortIndex
1654
+ index variable for the row in the scsiDscTgtTable representing
1655
+ this currently attached SCSI target port. If the currently
1656
+ attached SCSI target port is not represented in the
1657
+ scsiDscTgtTable, then the value of this object is zero.""",
1658
+ }, # column
1659
+ "scsiAttTgtPortName" : {
1660
+ "nodetype" : "column",
1661
+ "moduleName" : "SCSI-MIB",
1662
+ "oid" : "1.3.6.1.2.1.139.2.2.3.4.1.3",
1663
+ "status" : "current",
1664
+ "syntax" : {
1665
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiName"},
1666
+ },
1667
+ "access" : "readonly",
1668
+ "description" :
1669
+ """This object contains the name of the attached SCSI target
1670
+ port.""",
1671
+ }, # column
1672
+ "scsiAttTgtPortIdentifier" : {
1673
+ "nodetype" : "column",
1674
+ "moduleName" : "SCSI-MIB",
1675
+ "oid" : "1.3.6.1.2.1.139.2.2.3.4.1.4",
1676
+ "status" : "current",
1677
+ "syntax" : {
1678
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdentifier"},
1679
+ },
1680
+ "access" : "readonly",
1681
+ "description" :
1682
+ """This object contains the identifier of the attached SCSI
1683
+ target port.""",
1684
+ }, # column
1685
+ "scsiTargetDevice" : {
1686
+ "nodetype" : "node",
1687
+ "moduleName" : "SCSI-MIB",
1688
+ "oid" : "1.3.6.1.2.1.139.2.3",
1689
+ }, # node
1690
+ "scsiTgtDevTable" : {
1691
+ "nodetype" : "table",
1692
+ "moduleName" : "SCSI-MIB",
1693
+ "oid" : "1.3.6.1.2.1.139.2.3.1",
1694
+ "status" : "current",
1695
+ "description" :
1696
+ """This table contains information about each local SCSI target
1697
+ device.""",
1698
+ }, # table
1699
+ "scsiTgtDevEntry" : {
1700
+ "nodetype" : "row",
1701
+ "moduleName" : "SCSI-MIB",
1702
+ "oid" : "1.3.6.1.2.1.139.2.3.1.1",
1703
+ "status" : "current",
1704
+ "linkage" : [
1705
+ "scsiInstIndex",
1706
+ "scsiDeviceIndex",
1707
+ ],
1708
+ "description" :
1709
+ """An entry (row) containing information applicable to a
1710
+ particular local SCSI target device within a particular SCSI
1711
+ instance.""",
1712
+ }, # row
1713
+ "scsiTgtDevNumberOfLUs" : {
1714
+ "nodetype" : "column",
1715
+ "moduleName" : "SCSI-MIB",
1716
+ "oid" : "1.3.6.1.2.1.139.2.3.1.1.1",
1717
+ "status" : "current",
1718
+ "syntax" : {
1719
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1720
+ },
1721
+ "access" : "readonly",
1722
+ "description" :
1723
+ """This object is the number of logical units accessible via this
1724
+ local SCSI target device.""",
1725
+ }, # column
1726
+ "scsiTgtDeviceStatus" : {
1727
+ "nodetype" : "column",
1728
+ "moduleName" : "SCSI-MIB",
1729
+ "oid" : "1.3.6.1.2.1.139.2.3.1.1.2",
1730
+ "status" : "current",
1731
+ "syntax" : {
1732
+ "type" : {
1733
+ "basetype" : "Enumeration",
1734
+ "unknown" : {
1735
+ "nodetype" : "namednumber",
1736
+ "number" : "1"
1737
+ },
1738
+ "available" : {
1739
+ "nodetype" : "namednumber",
1740
+ "number" : "2"
1741
+ },
1742
+ "broken" : {
1743
+ "nodetype" : "namednumber",
1744
+ "number" : "3"
1745
+ },
1746
+ "readying" : {
1747
+ "nodetype" : "namednumber",
1748
+ "number" : "4"
1749
+ },
1750
+ "abnormal" : {
1751
+ "nodetype" : "namednumber",
1752
+ "number" : "5"
1753
+ },
1754
+ "nonAddrFailure" : {
1755
+ "nodetype" : "namednumber",
1756
+ "number" : "6"
1757
+ },
1758
+ "nonAddrFailReadying" : {
1759
+ "nodetype" : "namednumber",
1760
+ "number" : "7"
1761
+ },
1762
+ "nonAddrFailAbnormal" : {
1763
+ "nodetype" : "namednumber",
1764
+ "number" : "8"
1765
+ },
1766
+ },
1767
+ },
1768
+ "access" : "readonly",
1769
+ "description" :
1770
+ """This object represents the status of this SCSI device,
1771
+ summarizing the state of both the addressable devices (i.e.,
1772
+ the logical units) and the non-addressable devices within this
1773
+ SCSI device:
1774
+ - unknown(1): This value is used when the status cannot be
1775
+ determined
1776
+ - available(2): All addressable and non-addressable
1777
+ devices within the SCSI device are fully operational (i.e.,
1778
+ no logical units have an abnormal status).
1779
+ - broken(3): The SCSI device is not operational and cannot
1780
+ be made operational without external intervention.
1781
+ - readying(4): One or more logical units within the SCSI
1782
+ device are being initialized and access to the SCSI device
1783
+ is temporarily limited (i.e., one or more of the logical
1784
+ units have a readying status).
1785
+ - abnormal(5): One or more addressable devices within the
1786
+ SCSI device are indicating a status other than available;
1787
+ nevertheless, the SCSI device is operational (i.e., one or
1788
+ more of the logical units have an abnormal status).
1789
+ - nonAddrFailure(6): One or more non-addressable devices
1790
+ within the SCSI device have failed; nevertheless, the SCSI
1791
+ device is operational (i.e., no logical units have an
1792
+ abnormal or readying status).
1793
+
1794
+
1795
+
1796
+ - nonAddrFailReadying(7): One or more non-addressable
1797
+ devices within the SCSI device have failed; nevertheless,
1798
+ one or more logical units within the SCSI device are being
1799
+ initialized and access to the SCSI device is temporarily
1800
+ limited.
1801
+ - nonAddrFailAbnormal(8): One or more non-addressable
1802
+ devices within the SCSI device have failed and one or more
1803
+ addressable devices within the SCSI device are indicating a
1804
+ status other than available; however, the SCSI device is
1805
+ operational.""",
1806
+ "reference" :
1807
+ """SCSI Controller Commands-2 (SCC-2) ANSI INCITS 318-1998
1808
+ 6.3.1.8 REPORT STATES service action [SCC2]""",
1809
+ }, # column
1810
+ "scsiTgtDevNonAccessibleLUs" : {
1811
+ "nodetype" : "column",
1812
+ "moduleName" : "SCSI-MIB",
1813
+ "oid" : "1.3.6.1.2.1.139.2.3.1.1.3",
1814
+ "status" : "current",
1815
+ "syntax" : {
1816
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1817
+ },
1818
+ "access" : "readonly",
1819
+ "description" :
1820
+ """This object is the number of logical units existing but not
1821
+ currently accessible via this local SCSI target device.""",
1822
+ }, # column
1823
+ "scsiTgtDevResets" : {
1824
+ "nodetype" : "column",
1825
+ "moduleName" : "SCSI-MIB",
1826
+ "oid" : "1.3.6.1.2.1.139.2.3.1.1.4",
1827
+ "status" : "current",
1828
+ "syntax" : {
1829
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1830
+ },
1831
+ "access" : "readonly",
1832
+ "description" :
1833
+ """This object counts the number of hard resets encountered
1834
+ by this SCSI target device.
1835
+ Discontinuities in the value of this counter can occur at re-
1836
+ initialization of the management system.""",
1837
+ "reference" :
1838
+ """SCSI Architecture Model-2 (SAM-2), ANSI INCITS 366-2003,
1839
+ T10 Project 1157-D, 12 September 2002 - Chapter 5.9.7 [SAM2]""",
1840
+ }, # column
1841
+ "scsiTgtPortTable" : {
1842
+ "nodetype" : "table",
1843
+ "moduleName" : "SCSI-MIB",
1844
+ "oid" : "1.3.6.1.2.1.139.2.3.2",
1845
+ "status" : "current",
1846
+ "description" :
1847
+ """This table includes all the local SCSI target ports of all the
1848
+ local SCSI target devices.""",
1849
+ }, # table
1850
+ "scsiTgtPortEntry" : {
1851
+ "nodetype" : "row",
1852
+ "moduleName" : "SCSI-MIB",
1853
+ "oid" : "1.3.6.1.2.1.139.2.3.2.1",
1854
+ "status" : "current",
1855
+ "linkage" : [
1856
+ "scsiInstIndex",
1857
+ "scsiDeviceIndex",
1858
+ "scsiPortIndex",
1859
+ ],
1860
+ "description" :
1861
+ """An entry (row) containing information applicable to a
1862
+ particular local SCSI target port of a particular local SCSI
1863
+ target device within a particular SCSI instance.""",
1864
+ }, # row
1865
+ "scsiTgtPortName" : {
1866
+ "nodetype" : "column",
1867
+ "moduleName" : "SCSI-MIB",
1868
+ "oid" : "1.3.6.1.2.1.139.2.3.2.1.1",
1869
+ "status" : "current",
1870
+ "syntax" : {
1871
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiName"},
1872
+ },
1873
+ "access" : "readonly",
1874
+ "description" :
1875
+ """This object represents the name of the port assigned for use
1876
+ in the SCSI protocol.""",
1877
+ }, # column
1878
+ "scsiTgtPortIdentifier" : {
1879
+ "nodetype" : "column",
1880
+ "moduleName" : "SCSI-MIB",
1881
+ "oid" : "1.3.6.1.2.1.139.2.3.2.1.2",
1882
+ "status" : "current",
1883
+ "syntax" : {
1884
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdentifier"},
1885
+ },
1886
+ "access" : "readonly",
1887
+ "description" :
1888
+ """This object represents the identifier of the port in one of
1889
+ the format(s) appropriate for the type of transport.""",
1890
+ }, # column
1891
+ "scsiTgtPortInCommands" : {
1892
+ "nodetype" : "column",
1893
+ "moduleName" : "SCSI-MIB",
1894
+ "oid" : "1.3.6.1.2.1.139.2.3.2.1.3",
1895
+ "status" : "current",
1896
+ "syntax" : {
1897
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1898
+ },
1899
+ "access" : "readonly",
1900
+ "units" : "commands",
1901
+ "description" :
1902
+ """This object represents the number of commands received by this
1903
+ SCSI target port.
1904
+
1905
+
1906
+
1907
+ Discontinuities in the value of this counter can occur at re-
1908
+ initialization of the management system.""",
1909
+ }, # column
1910
+ "scsiTgtPortWrittenMegaBytes" : {
1911
+ "nodetype" : "column",
1912
+ "moduleName" : "SCSI-MIB",
1913
+ "oid" : "1.3.6.1.2.1.139.2.3.2.1.4",
1914
+ "status" : "current",
1915
+ "syntax" : {
1916
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1917
+ },
1918
+ "access" : "readonly",
1919
+ "units" : "Megabytes",
1920
+ "description" :
1921
+ """This object represents the amount of data written in megabytes
1922
+ by this SCSI target port.
1923
+ Discontinuities in the value of this counter can occur at re-
1924
+ initialization of the management system.""",
1925
+ }, # column
1926
+ "scsiTgtPortReadMegaBytes" : {
1927
+ "nodetype" : "column",
1928
+ "moduleName" : "SCSI-MIB",
1929
+ "oid" : "1.3.6.1.2.1.139.2.3.2.1.5",
1930
+ "status" : "current",
1931
+ "syntax" : {
1932
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1933
+ },
1934
+ "access" : "readonly",
1935
+ "units" : "Megabytes",
1936
+ "description" :
1937
+ """This object represents the amount of data read in megabytes by
1938
+ this SCSI target port.
1939
+ Discontinuities in the value of this counter can occur at re-
1940
+ initialization of the management system.""",
1941
+ }, # column
1942
+ "scsiTgtPortHSInCommands" : {
1943
+ "nodetype" : "column",
1944
+ "moduleName" : "SCSI-MIB",
1945
+ "oid" : "1.3.6.1.2.1.139.2.3.2.1.6",
1946
+ "status" : "current",
1947
+ "syntax" : {
1948
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1949
+ },
1950
+ "access" : "readonly",
1951
+ "units" : "commands",
1952
+ "description" :
1953
+ """This object represents the number of commands received. This
1954
+ object provides support for systems that can quickly generate a
1955
+ large number of commands because they run at high speed.
1956
+ Discontinuities in the value of this counter can occur at re-
1957
+ initialization of the management system.""",
1958
+ }, # column
1959
+ "scsiRemoteIntrDev" : {
1960
+ "nodetype" : "node",
1961
+ "moduleName" : "SCSI-MIB",
1962
+ "oid" : "1.3.6.1.2.1.139.2.3.3",
1963
+ }, # node
1964
+ "scsiAuthorizedIntrTable" : {
1965
+ "nodetype" : "table",
1966
+ "moduleName" : "SCSI-MIB",
1967
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1",
1968
+ "status" : "current",
1969
+ "description" :
1970
+ """This table includes all the authorized SCSI initiator devices
1971
+ or ports that may attach a SCSI target device
1972
+ (ScsiAuthIntrTgtPortIndex = 0) or port (ScsiAuthIntrTgtPortIndex
1973
+ different than 0) of the local SCSI instance. Statistics are
1974
+ kept for each such authorization; thus, the authorizations
1975
+ should be configured in the manner that will cause the desired
1976
+ set of statistics to be collected and that will determine the
1977
+ correct LUN map.""",
1978
+ }, # table
1979
+ "scsiAuthorizedIntrEntry" : {
1980
+ "nodetype" : "row",
1981
+ "moduleName" : "SCSI-MIB",
1982
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1",
1983
+ "create" : "true",
1984
+ "status" : "current",
1985
+ "linkage" : [
1986
+ "scsiInstIndex",
1987
+ "scsiDeviceIndex",
1988
+ "scsiAuthIntrTgtPortIndex",
1989
+ "scsiAuthIntrIndex",
1990
+ ],
1991
+ "description" :
1992
+ """An entry (row) represents a remote SCSI initiator port or
1993
+ remote SCSI initiator device that may attach to the local SCSI
1994
+ target port or device within a particular SCSI instance.
1995
+ The StorageType of a row in this table is specified by the
1996
+ instance of scsiInstStorageType that is INDEXed by the same
1997
+ value of scsiInstIndex.""",
1998
+ }, # row
1999
+ "scsiAuthIntrTgtPortIndex" : {
2000
+ "nodetype" : "column",
2001
+ "moduleName" : "SCSI-MIB",
2002
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.1",
2003
+ "status" : "current",
2004
+ "syntax" : {
2005
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiPortIndexValueOrZero"},
2006
+ },
2007
+ "access" : "noaccess",
2008
+ "description" :
2009
+ """This object contains either the index of the port or zero, to
2010
+ indicate any port, on the particular local SCSI target device.""",
2011
+ }, # column
2012
+ "scsiAuthIntrIndex" : {
2013
+ "nodetype" : "column",
2014
+ "moduleName" : "SCSI-MIB",
2015
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.2",
2016
+ "status" : "current",
2017
+ "syntax" : {
2018
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
2019
+ },
2020
+ "access" : "noaccess",
2021
+ "description" :
2022
+ """This object is an arbitrary integer used to uniquely identify
2023
+ a SCSI initiator device or port that is authorized to attach
2024
+ to a particular local SCSI target device or port of a particular
2025
+ SCSI instance.""",
2026
+ }, # column
2027
+ "scsiAuthIntrDevOrPort" : {
2028
+ "nodetype" : "column",
2029
+ "moduleName" : "SCSI-MIB",
2030
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.3",
2031
+ "status" : "current",
2032
+ "syntax" : {
2033
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiDeviceOrPort"},
2034
+ },
2035
+ "access" : "readwrite",
2036
+ "description" :
2037
+ """This object specifies whether this entry refers to a remote
2038
+ SCSI initiator port or to a SCSI initiator device.
2039
+ A value of device(1) means that the authorized remote initiator
2040
+ is a SCSI initiator device and includes all of its ports.
2041
+ A value of port(2) means that the authorized remote initiator
2042
+ is a SCSI initiator port.""",
2043
+ }, # column
2044
+ "scsiAuthIntrName" : {
2045
+ "nodetype" : "column",
2046
+ "moduleName" : "SCSI-MIB",
2047
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.4",
2048
+ "status" : "current",
2049
+ "syntax" : {
2050
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiName"},
2051
+ },
2052
+ "access" : "readwrite",
2053
+ "description" :
2054
+ """This object represents the name of the remote SCSI initiator
2055
+ device or port authorized by this row.""",
2056
+ }, # column
2057
+ "scsiAuthIntrLunMapIndex" : {
2058
+ "nodetype" : "column",
2059
+ "moduleName" : "SCSI-MIB",
2060
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.5",
2061
+ "status" : "current",
2062
+ "syntax" : {
2063
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValueOrZero"},
2064
+ },
2065
+ "access" : "readwrite",
2066
+ "description" :
2067
+ """This object identifies the set of entries in the
2068
+ scsiLunMapTable for which scsiLunMapIndex has the same value as
2069
+ the value of this object. The identified set of entries
2070
+
2071
+
2072
+
2073
+ constitutes the LUN map to be used for accessing logical units
2074
+ when the remote SCSI initiator port or device corresponding to
2075
+ this entry is attached to any local SCSI target port or device
2076
+ corresponding to this entry.
2077
+ Note that this object has a value of zero if this entry should
2078
+ use the default LUN map.""",
2079
+ }, # column
2080
+ "scsiAuthIntrAttachedTimes" : {
2081
+ "nodetype" : "column",
2082
+ "moduleName" : "SCSI-MIB",
2083
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.6",
2084
+ "status" : "current",
2085
+ "syntax" : {
2086
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2087
+ },
2088
+ "access" : "readonly",
2089
+ "units" : "Times",
2090
+ "description" :
2091
+ """This object indicates the number of times that this remote
2092
+ SCSI initiator device or port has transitioned from unattached
2093
+ to attached to this local SCSI target device or port.
2094
+ Discontinuities in the value of this counter can occur at re-
2095
+ initialization of the management system, and at other times as
2096
+ indicated by the value of scsiAuthIntrLastCreation.""",
2097
+ }, # column
2098
+ "scsiAuthIntrOutCommands" : {
2099
+ "nodetype" : "column",
2100
+ "moduleName" : "SCSI-MIB",
2101
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.7",
2102
+ "status" : "current",
2103
+ "syntax" : {
2104
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2105
+ },
2106
+ "access" : "readonly",
2107
+ "units" : "commands",
2108
+ "description" :
2109
+ """This object indicates the number of commands that the remote
2110
+ SCSI initiator device or port corresponding to this entry has
2111
+ sent to the local SCSI target device or port corresponding to
2112
+ this entry.
2113
+ Discontinuities in the value of this counter can occur at re-
2114
+ initialization of the management system, and at other times as
2115
+ indicated by the value of scsiAuthIntrLastCreation.""",
2116
+ }, # column
2117
+ "scsiAuthIntrReadMegaBytes" : {
2118
+ "nodetype" : "column",
2119
+ "moduleName" : "SCSI-MIB",
2120
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.8",
2121
+ "status" : "current",
2122
+ "syntax" : {
2123
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2124
+ },
2125
+ "access" : "readonly",
2126
+ "units" : "Megabytes",
2127
+ "description" :
2128
+ """This object indicates the amount of data in megabytes that
2129
+ the remote SCSI initiator device or port corresponding to this
2130
+ entry has read from the local SCSI target device or port
2131
+ corresponding to this entry.
2132
+ Discontinuities in the value of this counter can occur at re-
2133
+
2134
+
2135
+
2136
+ initialization of the management system, and at other times as
2137
+ indicated by the value of scsiAuthIntrLastCreation.""",
2138
+ }, # column
2139
+ "scsiAuthIntrWrittenMegaBytes" : {
2140
+ "nodetype" : "column",
2141
+ "moduleName" : "SCSI-MIB",
2142
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.9",
2143
+ "status" : "current",
2144
+ "syntax" : {
2145
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2146
+ },
2147
+ "access" : "readonly",
2148
+ "units" : "Megabytes",
2149
+ "description" :
2150
+ """This object indicates the amount of data in megabytes that the
2151
+ remote SCSI initiator device or port corresponding to this
2152
+ entry has written to the local SCSI target device or port
2153
+ corresponding to this entry.
2154
+ Discontinuities in the value of this counter can occur at re-
2155
+ initialization of the management system, and at other times as
2156
+ indicated by the value of scsiAuthIntrLastCreation.""",
2157
+ }, # column
2158
+ "scsiAuthIntrHSOutCommands" : {
2159
+ "nodetype" : "column",
2160
+ "moduleName" : "SCSI-MIB",
2161
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.10",
2162
+ "status" : "current",
2163
+ "syntax" : {
2164
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2165
+ },
2166
+ "access" : "readonly",
2167
+ "units" : "commands",
2168
+ "description" :
2169
+ """This object represents the number of commands sent by the
2170
+ remote SCSI initiator device or port corresponding to this
2171
+ entry to the local SCSI target device or port corresponding to
2172
+ this entry. This object provides support for systems that can
2173
+ quickly generate a large number of commands because they run at
2174
+ high speed.
2175
+ Discontinuities in the value of this counter can occur at re-
2176
+ initialization of the management system, and at other times as
2177
+ indicated by the value of scsiAuthIntrLastCreation.""",
2178
+ }, # column
2179
+ "scsiAuthIntrLastCreation" : {
2180
+ "nodetype" : "column",
2181
+ "moduleName" : "SCSI-MIB",
2182
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.11",
2183
+ "status" : "current",
2184
+ "syntax" : {
2185
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2186
+ },
2187
+ "access" : "readonly",
2188
+ "description" :
2189
+ """This object indicates the value of sysUpTime when this row was
2190
+ last created.""",
2191
+ }, # column
2192
+ "scsiAuthIntrRowStatus" : {
2193
+ "nodetype" : "column",
2194
+ "moduleName" : "SCSI-MIB",
2195
+ "oid" : "1.3.6.1.2.1.139.2.3.3.1.1.12",
2196
+ "status" : "current",
2197
+ "syntax" : {
2198
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2199
+ },
2200
+ "access" : "readwrite",
2201
+ "description" :
2202
+ """This object allows an administrator to create or delete this
2203
+ entry.
2204
+ A newly created row cannot be made active until a value has
2205
+ been set for scsiAuthIntrName. In this case, the value of the
2206
+ corresponding instance of the scsiAuthIntrRowStatus column will
2207
+ stay 'notReady'.
2208
+ The RowStatus TC [RFC2579] requires that this DESCRIPTION
2209
+ clause states under which circumstances other objects in this
2210
+ row can be modified:
2211
+ The value of this object has no effect on whether other objects
2212
+ in this conceptual row can be modified.""",
2213
+ }, # column
2214
+ "scsiAttIntrPortTable" : {
2215
+ "nodetype" : "table",
2216
+ "moduleName" : "SCSI-MIB",
2217
+ "oid" : "1.3.6.1.2.1.139.2.3.3.2",
2218
+ "status" : "current",
2219
+ "description" :
2220
+ """This table includes all the remote SCSI initiator ports that
2221
+ are currently attached to a local SCSI target port of all local
2222
+ devices within all SCSI instances.""",
2223
+ }, # table
2224
+ "scsiAttIntrPortEntry" : {
2225
+ "nodetype" : "row",
2226
+ "moduleName" : "SCSI-MIB",
2227
+ "oid" : "1.3.6.1.2.1.139.2.3.3.2.1",
2228
+ "status" : "current",
2229
+ "linkage" : [
2230
+ "scsiInstIndex",
2231
+ "scsiDeviceIndex",
2232
+ "scsiPortIndex",
2233
+ "scsiAttIntrPortIndex",
2234
+ ],
2235
+ "description" :
2236
+ """An entry (row) represents a remote SCSI initiator port
2237
+ currently attached to a particular local SCSI target port of a
2238
+ particular SCSI target device of a particular SCSI instance.""",
2239
+ }, # row
2240
+ "scsiAttIntrPortIndex" : {
2241
+ "nodetype" : "column",
2242
+ "moduleName" : "SCSI-MIB",
2243
+ "oid" : "1.3.6.1.2.1.139.2.3.3.2.1.1",
2244
+ "status" : "current",
2245
+ "syntax" : {
2246
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
2247
+ },
2248
+ "access" : "noaccess",
2249
+ "description" :
2250
+ """This object represents an arbitrary integer used to uniquely
2251
+ identify a particular attached remote initiator port to a
2252
+ particular SCSI target port within a particular SCSI target
2253
+ device within a particular SCSI instance.""",
2254
+ }, # column
2255
+ "scsiAttIntrPortAuthIntrIdx" : {
2256
+ "nodetype" : "column",
2257
+ "moduleName" : "SCSI-MIB",
2258
+ "oid" : "1.3.6.1.2.1.139.2.3.3.2.1.2",
2259
+ "status" : "current",
2260
+ "syntax" : {
2261
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValueOrZero"},
2262
+ },
2263
+ "access" : "readonly",
2264
+ "description" :
2265
+ """This object is the corresponding index in the
2266
+ scsiAuthorizedIntrTable for this current attached remote
2267
+ SCSI initiator device or zero if this remote attached SCSI
2268
+ initiator device is not configured in that table.""",
2269
+ }, # column
2270
+ "scsiAttIntrPortName" : {
2271
+ "nodetype" : "column",
2272
+ "moduleName" : "SCSI-MIB",
2273
+ "oid" : "1.3.6.1.2.1.139.2.3.3.2.1.3",
2274
+ "status" : "current",
2275
+ "syntax" : {
2276
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiName"},
2277
+ },
2278
+ "access" : "readonly",
2279
+ "description" :
2280
+ """This object represents the name of the remote SCSI initiator
2281
+ device attached to this local SCSI target port.""",
2282
+ }, # column
2283
+ "scsiAttIntrPortIdentifier" : {
2284
+ "nodetype" : "column",
2285
+ "moduleName" : "SCSI-MIB",
2286
+ "oid" : "1.3.6.1.2.1.139.2.3.3.2.1.4",
2287
+ "status" : "current",
2288
+ "syntax" : {
2289
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdentifier"},
2290
+ },
2291
+ "access" : "readonly",
2292
+ "description" :
2293
+ """This object represents the identifier of the remote SCSI
2294
+ initiator device attached to this local SCSI target port.""",
2295
+ }, # column
2296
+ "scsiLogicalUnit" : {
2297
+ "nodetype" : "node",
2298
+ "moduleName" : "SCSI-MIB",
2299
+ "oid" : "1.3.6.1.2.1.139.2.4",
2300
+ }, # node
2301
+ "scsiLuTable" : {
2302
+ "nodetype" : "table",
2303
+ "moduleName" : "SCSI-MIB",
2304
+ "oid" : "1.3.6.1.2.1.139.2.4.1",
2305
+ "status" : "current",
2306
+ "description" :
2307
+ """This table contains the logical units exposed by local SCSI
2308
+ target devices.
2309
+
2310
+
2311
+
2312
+ It includes attributes for the World Wide Name (WWN),
2313
+ scsiLuVendorId, scsiLuProductId, and scsiLuRevisionId, which may
2314
+ also appear in the scsiLuIdTable. If an implementation exposes
2315
+ a WWN as a LuIdTable entry, it must match the scsiLuWwnName in
2316
+ this table. If an implementation exposes a (vendor, product,
2317
+ revision) identifier as an LuIdTable entry, each of these fields
2318
+ must match the scsiLuVendorId, scsiLuProductId, and
2319
+ scsiLuRevisionId attributes in this table.""",
2320
+ }, # table
2321
+ "scsiLuEntry" : {
2322
+ "nodetype" : "row",
2323
+ "moduleName" : "SCSI-MIB",
2324
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1",
2325
+ "status" : "current",
2326
+ "linkage" : [
2327
+ "scsiInstIndex",
2328
+ "scsiDeviceIndex",
2329
+ "scsiLuIndex",
2330
+ ],
2331
+ "description" :
2332
+ """An entry (row) contains information applicable to a particular
2333
+ logical unit of a particular local SCSI target device within a
2334
+ particular SCSI instance.""",
2335
+ }, # row
2336
+ "scsiLuIndex" : {
2337
+ "nodetype" : "column",
2338
+ "moduleName" : "SCSI-MIB",
2339
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.1",
2340
+ "status" : "current",
2341
+ "syntax" : {
2342
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
2343
+ },
2344
+ "access" : "noaccess",
2345
+ "description" :
2346
+ """This object represents an arbitrary integer used to uniquely
2347
+ identify a particular logical unit within a particular SCSI
2348
+ target device within a particular SCSI instance.""",
2349
+ }, # column
2350
+ "scsiLuDefaultLun" : {
2351
+ "nodetype" : "column",
2352
+ "moduleName" : "SCSI-MIB",
2353
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.2",
2354
+ "status" : "current",
2355
+ "syntax" : {
2356
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiLUN"},
2357
+ },
2358
+ "access" : "readonly",
2359
+ "description" :
2360
+ """This object represents the default Logical Unit Number (LUN)
2361
+ for this logical unit; if a SCSI initiator device has not been
2362
+ configured to view this logical unit via an entry in the
2363
+ ScsiLunMapTable, the LU will be visible as scsiLuDefaultLun.
2364
+ If this logical unit does not have a default LUN, it will only
2365
+ be visible if specified via the ScsiLunMapTable, and this
2366
+ object will contain a zero-length string.""",
2367
+ }, # column
2368
+ "scsiLuWwnName" : {
2369
+ "nodetype" : "column",
2370
+ "moduleName" : "SCSI-MIB",
2371
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.3",
2372
+ "status" : "current",
2373
+ "syntax" : {
2374
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiLuNameOrZero"},
2375
+ },
2376
+ "access" : "readonly",
2377
+ "description" :
2378
+ """This object represents the World Wide Name of this LU that is
2379
+ the device identifier of the Vital Product Data (VPD) page name;
2380
+ if there is no WWN for this LU, this object will contain a
2381
+ zero-length string. If there is more than one identifier, they
2382
+ will be listed in the scsiLuIdTable and this object will contain
2383
+ a zero-length string.""",
2384
+ }, # column
2385
+ "scsiLuVendorId" : {
2386
+ "nodetype" : "column",
2387
+ "moduleName" : "SCSI-MIB",
2388
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.4",
2389
+ "status" : "current",
2390
+ "syntax" : {
2391
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2392
+ },
2393
+ "access" : "readonly",
2394
+ "description" :
2395
+ """This object represents a string identifying the vendor of this
2396
+ LU as reported in the Standard INQUIRY data.""",
2397
+ }, # column
2398
+ "scsiLuProductId" : {
2399
+ "nodetype" : "column",
2400
+ "moduleName" : "SCSI-MIB",
2401
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.5",
2402
+ "status" : "current",
2403
+ "syntax" : {
2404
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2405
+ },
2406
+ "access" : "readonly",
2407
+ "description" :
2408
+ """This object represents a string identifying the product for
2409
+ this LU as reported in the Standard INQUIRY data.""",
2410
+ }, # column
2411
+ "scsiLuRevisionId" : {
2412
+ "nodetype" : "column",
2413
+ "moduleName" : "SCSI-MIB",
2414
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.6",
2415
+ "status" : "current",
2416
+ "syntax" : {
2417
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2418
+ },
2419
+ "access" : "readonly",
2420
+ "description" :
2421
+ """This object represents a string defining the product revision
2422
+ of this LU as reported in the Standard INQUIRY data.""",
2423
+ }, # column
2424
+ "scsiLuPeripheralType" : {
2425
+ "nodetype" : "column",
2426
+ "moduleName" : "SCSI-MIB",
2427
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.7",
2428
+ "status" : "current",
2429
+ "syntax" : {
2430
+ "type" : { "module" :"", "name" : "Unsigned32"},
2431
+ },
2432
+ "access" : "readonly",
2433
+ "description" :
2434
+ """This object is the value returned by SCSI Standard INQUIRY
2435
+ data. It can be: direct-access device, sequential-access
2436
+ device, printer, communication device and so on.
2437
+ The values that can be returned here are defined in SCSI
2438
+ Primary Commands -2.""",
2439
+ "reference" :
2440
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
2441
+ ANSI INCITS 351-2001,11 July 2001 [SPC2]- Table 48.""",
2442
+ }, # column
2443
+ "scsiLuStatus" : {
2444
+ "nodetype" : "column",
2445
+ "moduleName" : "SCSI-MIB",
2446
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.8",
2447
+ "status" : "current",
2448
+ "syntax" : {
2449
+ "type" : {
2450
+ "basetype" : "Enumeration",
2451
+ "unknown" : {
2452
+ "nodetype" : "namednumber",
2453
+ "number" : "1"
2454
+ },
2455
+ "available" : {
2456
+ "nodetype" : "namednumber",
2457
+ "number" : "2"
2458
+ },
2459
+ "notAvailable" : {
2460
+ "nodetype" : "namednumber",
2461
+ "number" : "3"
2462
+ },
2463
+ "broken" : {
2464
+ "nodetype" : "namednumber",
2465
+ "number" : "4"
2466
+ },
2467
+ "readying" : {
2468
+ "nodetype" : "namednumber",
2469
+ "number" : "5"
2470
+ },
2471
+ "abnormal" : {
2472
+ "nodetype" : "namednumber",
2473
+ "number" : "6"
2474
+ },
2475
+ },
2476
+ },
2477
+ "access" : "readonly",
2478
+ "description" :
2479
+ """This object represents the status of this logical unit:
2480
+ - unknown(1): The status of this logical unit cannot be
2481
+ determined.
2482
+ - available(2): The logical unit is fully operational (i.e.,
2483
+ accepts media access SCSI commands and has no state
2484
+ information to report).
2485
+ - notAvailable(3): The logical unit is capable of being
2486
+ supported but is not available (i.e., no logical unit is
2487
+ currently present or the logical unit is present but not
2488
+ configured for use).
2489
+ - broken(4): The logical unit has failed and cannot respond
2490
+ to SCSI commands.
2491
+ - readying(5): The logical unit is being initialized and
2492
+
2493
+
2494
+
2495
+ access is temporarily limited.
2496
+ - abnormal(6): The logical unit has state information
2497
+ available that indicates it is operating with limits. The
2498
+ scsiLuState indicates what those limits are.""",
2499
+ "reference" :
2500
+ """SCSI Controller Commands-2 (SCC-2) ANSI INCITS 318-1998
2501
+ 6.3.1.8 REPORT STATES service action [SCC2]""",
2502
+ }, # column
2503
+ "scsiLuState" : {
2504
+ "nodetype" : "column",
2505
+ "moduleName" : "SCSI-MIB",
2506
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.9",
2507
+ "status" : "current",
2508
+ "syntax" : {
2509
+ "type" : {
2510
+ "basetype" : "Bits",
2511
+ "dataLost" : {
2512
+ "nodetype" : "namednumber",
2513
+ "number" : "0"
2514
+ },
2515
+ "dynamicReconfigurationInProgress" : {
2516
+ "nodetype" : "namednumber",
2517
+ "number" : "1"
2518
+ },
2519
+ "exposed" : {
2520
+ "nodetype" : "namednumber",
2521
+ "number" : "2"
2522
+ },
2523
+ "fractionallyExposed" : {
2524
+ "nodetype" : "namednumber",
2525
+ "number" : "3"
2526
+ },
2527
+ "partiallyExposed" : {
2528
+ "nodetype" : "namednumber",
2529
+ "number" : "4"
2530
+ },
2531
+ "protectedRebuild" : {
2532
+ "nodetype" : "namednumber",
2533
+ "number" : "5"
2534
+ },
2535
+ "protectionDisabled" : {
2536
+ "nodetype" : "namednumber",
2537
+ "number" : "6"
2538
+ },
2539
+ "rebuild" : {
2540
+ "nodetype" : "namednumber",
2541
+ "number" : "7"
2542
+ },
2543
+ "recalculate" : {
2544
+ "nodetype" : "namednumber",
2545
+ "number" : "8"
2546
+ },
2547
+ "spareInUse" : {
2548
+ "nodetype" : "namednumber",
2549
+ "number" : "9"
2550
+ },
2551
+ "verifyInProgress" : {
2552
+ "nodetype" : "namednumber",
2553
+ "number" : "10"
2554
+ },
2555
+ },
2556
+ },
2557
+ "access" : "readonly",
2558
+ "description" :
2559
+ """This object represents the state of a logical unit and its
2560
+ meaning according to the bit position:
2561
+ 0 Data lost: Within the logical unit data has been lost.
2562
+ 1 Dynamic reconfiguration in progress: The logical unit is
2563
+ being reconfigured. In this state all data is still
2564
+ protected.
2565
+ 2 Exposed: Within the logical unit data is not protected.
2566
+ In this state all data is still valid; however, loss
2567
+ of data or data availability is unavoidable in the
2568
+ event of a failure.
2569
+ 3 Fractionally exposed: Within the logical unit part of
2570
+ the data is not protected. In this state all data is
2571
+ still valid; however, a failure may cause a loss of
2572
+ data or a loss of data availability.
2573
+ 4 Partially exposed: Within the logical unit one or more
2574
+ underlying storage devices have failed. In this state
2575
+ all data is still protected.
2576
+ 5 Protected rebuild: The logical unit is in the process of
2577
+ a rebuild operation. In this state all data is
2578
+ protected.
2579
+ 6 Protection disabled: Within the logical unit the data
2580
+
2581
+
2582
+
2583
+ protection method has been disabled.
2584
+ In this state all data is still valid; however,
2585
+ loss of data or data availability is unavoidable
2586
+ in the event of a failure.
2587
+ 7 Rebuild: The data protection method is in the process of
2588
+ rebuilding data. In this state data is not protected.
2589
+ 8 Recalculate: The logical unit is in the process of a
2590
+ recalculate operation.
2591
+ 9 Spare in use: Within the logical unit a storage device
2592
+ in full or part is being used to store data. In this
2593
+ state all data is still protected.
2594
+ 10 Verify in progress: Within the logical unit data is
2595
+ being verified.""",
2596
+ "reference" :
2597
+ """SCSI Controller Commands-2 (SCC-2) ANSI INCITS 318-1998
2598
+ 6.3.1.8 REPORT STATES service action [SCC2]""",
2599
+ }, # column
2600
+ "scsiLuInCommands" : {
2601
+ "nodetype" : "column",
2602
+ "moduleName" : "SCSI-MIB",
2603
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.10",
2604
+ "status" : "current",
2605
+ "syntax" : {
2606
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2607
+ },
2608
+ "access" : "readonly",
2609
+ "units" : "commands",
2610
+ "description" :
2611
+ """This object represents the number of commands received by this
2612
+ logical unit.
2613
+ Discontinuities in the value of this counter can occur at re-
2614
+ initialization of the management system, and at other times as
2615
+ indicated by the value of scsiLuLastCreation.""",
2616
+ }, # column
2617
+ "scsiLuReadMegaBytes" : {
2618
+ "nodetype" : "column",
2619
+ "moduleName" : "SCSI-MIB",
2620
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.11",
2621
+ "status" : "current",
2622
+ "syntax" : {
2623
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2624
+ },
2625
+ "access" : "readonly",
2626
+ "units" : "Megabytes",
2627
+ "description" :
2628
+ """This object represents the amount of data in megabytes read
2629
+ from this logical unit.
2630
+ Discontinuities in the value of this counter can occur at re-
2631
+ initialization of the management system, and at other times as
2632
+ indicated by the value of scsiLuLastCreation.""",
2633
+ }, # column
2634
+ "scsiLuWrittenMegaBytes" : {
2635
+ "nodetype" : "column",
2636
+ "moduleName" : "SCSI-MIB",
2637
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.12",
2638
+ "status" : "current",
2639
+ "syntax" : {
2640
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2641
+ },
2642
+ "access" : "readonly",
2643
+ "units" : "Megabytes",
2644
+ "description" :
2645
+ """This object represents the amount of data in megabytes written
2646
+ to this logical unit.
2647
+ Discontinuities in the value of this counter can occur at re-
2648
+ initialization of the management system, and at other times as
2649
+ indicated by the value of scsiLuLastCreation.""",
2650
+ }, # column
2651
+ "scsiLuInResets" : {
2652
+ "nodetype" : "column",
2653
+ "moduleName" : "SCSI-MIB",
2654
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.13",
2655
+ "status" : "current",
2656
+ "syntax" : {
2657
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2658
+ },
2659
+ "access" : "readonly",
2660
+ "units" : "resets",
2661
+ "description" :
2662
+ """This object represents the number of times that this logical
2663
+ unit received
2664
+ - a LOGICAL UNIT RESET or TARGET RESET task management request,
2665
+ or
2666
+ - any other SCSI transport protocol-specific action or event
2667
+ that causes a Logical Unit Reset or a Hard Reset at a SCSI
2668
+ target port of the containing device
2669
+ ([SAM2] Chapters 5.9.6, 5.9.7).
2670
+ Discontinuities in the value of this counter can occur at re-
2671
+ initialization of the management system, and at other times as
2672
+ indicated by the value of scsiLuLastCreation.""",
2673
+ "reference" :
2674
+ """SCSI Architecture Model-2 (SAM-2), ANSI INCITS 366-2003,
2675
+ T10 Project 1157-D, 12 September 2002 - Chapter 5.9.7 [SAM2]""",
2676
+ }, # column
2677
+ "scsiLuOutTaskSetFullStatus" : {
2678
+ "nodetype" : "column",
2679
+ "moduleName" : "SCSI-MIB",
2680
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.14",
2681
+ "status" : "current",
2682
+ "syntax" : {
2683
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2684
+ },
2685
+ "access" : "readonly",
2686
+ "description" :
2687
+ """This object represents the number of Task Set full statuses
2688
+ issued for this logical unit.
2689
+ Discontinuities in the value of this counter can occur at re-
2690
+ initialization of the management system, and at other times as
2691
+ indicated by the value of scsiLuLastCreation.""",
2692
+ }, # column
2693
+ "scsiLuHSInCommands" : {
2694
+ "nodetype" : "column",
2695
+ "moduleName" : "SCSI-MIB",
2696
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.15",
2697
+ "status" : "current",
2698
+ "syntax" : {
2699
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2700
+ },
2701
+ "access" : "readonly",
2702
+ "units" : "commands",
2703
+ "description" :
2704
+ """This object represents the number of commands received by this
2705
+ logical unit. This object provides support for systems that can
2706
+ quickly generate a large number of commands because they run at
2707
+ high speed.
2708
+ Discontinuities in the value of this counter can occur at re-
2709
+ initialization of the management system, and at other times as
2710
+ indicated by the value of scsiLuLastCreation.""",
2711
+ }, # column
2712
+ "scsiLuLastCreation" : {
2713
+ "nodetype" : "column",
2714
+ "moduleName" : "SCSI-MIB",
2715
+ "oid" : "1.3.6.1.2.1.139.2.4.1.1.16",
2716
+ "status" : "current",
2717
+ "syntax" : {
2718
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2719
+ },
2720
+ "access" : "readonly",
2721
+ "description" :
2722
+ """This object indicates the value of sysUpTime when this row was
2723
+ last created.""",
2724
+ }, # column
2725
+ "scsiLuIdTable" : {
2726
+ "nodetype" : "table",
2727
+ "moduleName" : "SCSI-MIB",
2728
+ "oid" : "1.3.6.1.2.1.139.2.4.2",
2729
+ "status" : "current",
2730
+ "description" :
2731
+ """A table of identifiers for all logical units exposed by the
2732
+ local SCSI target device.""",
2733
+ }, # table
2734
+ "scsiLuIdEntry" : {
2735
+ "nodetype" : "row",
2736
+ "moduleName" : "SCSI-MIB",
2737
+ "oid" : "1.3.6.1.2.1.139.2.4.2.1",
2738
+ "status" : "current",
2739
+ "linkage" : [
2740
+ "scsiInstIndex",
2741
+ "scsiDeviceIndex",
2742
+ "scsiLuIndex",
2743
+ "scsiLuIdIndex",
2744
+ ],
2745
+ "description" :
2746
+ """An entry (row) containing information applicable to a
2747
+ particular identifier for a particular logical unit of a
2748
+ particular SCSI target device within a particular SCSI
2749
+ instance.""",
2750
+ }, # row
2751
+ "scsiLuIdIndex" : {
2752
+ "nodetype" : "column",
2753
+ "moduleName" : "SCSI-MIB",
2754
+ "oid" : "1.3.6.1.2.1.139.2.4.2.1.1",
2755
+ "status" : "current",
2756
+ "syntax" : {
2757
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
2758
+ },
2759
+ "access" : "noaccess",
2760
+ "description" :
2761
+ """This object represents an arbitrary integer used to uniquely
2762
+ identify a particular LU identifier within a particular logical
2763
+ unit within a particular SCSI target device within a particular
2764
+ SCSI instance.""",
2765
+ }, # column
2766
+ "scsiLuIdCodeSet" : {
2767
+ "nodetype" : "column",
2768
+ "moduleName" : "SCSI-MIB",
2769
+ "oid" : "1.3.6.1.2.1.139.2.4.2.1.2",
2770
+ "status" : "current",
2771
+ "syntax" : {
2772
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdCodeSet"},
2773
+ },
2774
+ "access" : "readonly",
2775
+ "description" :
2776
+ """This object specifies the code set in use with this
2777
+ identifier. The value is represented in the same format as is
2778
+ contained in the identifier's Identification Descriptor within
2779
+ the logical unit's Device Identification Page.""",
2780
+ "reference" :
2781
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
2782
+ ANSI INCITS 351-2001, 11 July 2001 Chapter 8: section 8.4.4,
2783
+ Vital Product Data Parameters [SPC2]""",
2784
+ }, # column
2785
+ "scsiLuIdAssociation" : {
2786
+ "nodetype" : "column",
2787
+ "moduleName" : "SCSI-MIB",
2788
+ "oid" : "1.3.6.1.2.1.139.2.4.2.1.3",
2789
+ "status" : "current",
2790
+ "syntax" : {
2791
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdAssociation"},
2792
+ },
2793
+ "access" : "readonly",
2794
+ "description" :
2795
+ """This object specifies what the identifier is associated with
2796
+ (e.g., with the addressed physical/logical device or with a
2797
+ particular port). The value is represented in the same format
2798
+ as is contained in the identifier's Identification Descriptor
2799
+ within the logical unit's Device Identification Page.""",
2800
+ "reference" :
2801
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
2802
+ ANSI INCITS 351-2001, 11 July 2001, Chapter 8: section 8.4.4,
2803
+ Vital Product Data Parameters [SPC2]""",
2804
+ }, # column
2805
+ "scsiLuIdType" : {
2806
+ "nodetype" : "column",
2807
+ "moduleName" : "SCSI-MIB",
2808
+ "oid" : "1.3.6.1.2.1.139.2.4.2.1.4",
2809
+ "status" : "current",
2810
+ "syntax" : {
2811
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdType"},
2812
+ },
2813
+ "access" : "readonly",
2814
+ "description" :
2815
+ """This object specifies the type of the identifier.
2816
+
2817
+
2818
+
2819
+ The value is represented in the same format as is contained in
2820
+ the identifier's Identification Descriptor within the logical
2821
+ unit's Device Identification Page.""",
2822
+ "reference" :
2823
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
2824
+ ANSI INCITS 351-2001, 11 July 2001, Chapter 8: section 8.4.4,
2825
+ Vital Product Data Parameters [SPC2]""",
2826
+ }, # column
2827
+ "scsiLuIdValue" : {
2828
+ "nodetype" : "column",
2829
+ "moduleName" : "SCSI-MIB",
2830
+ "oid" : "1.3.6.1.2.1.139.2.4.2.1.5",
2831
+ "status" : "current",
2832
+ "syntax" : {
2833
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIdValue"},
2834
+ },
2835
+ "access" : "readonly",
2836
+ "description" :
2837
+ """This object represents the actual value of this identifier.
2838
+ The format is defined by the objects scsiLuIdCodeSet,
2839
+ scsiLuIdAssociation, scsiLuIdType.
2840
+ The value is represented in the same format as is contained in
2841
+ the identifier's Identification Descriptor within the logical
2842
+ unit's Device Identification Page.""",
2843
+ "reference" :
2844
+ """ANSI - SCSI Primary Commands - 2 (SPC-2),
2845
+ ANSI INCITS 351-2001, 11 July 2001, Chapter 8: section 8.4.4,
2846
+ Vital Product Data Parameters [SPC2]""",
2847
+ }, # column
2848
+ "scsiLunMapTable" : {
2849
+ "nodetype" : "table",
2850
+ "moduleName" : "SCSI-MIB",
2851
+ "oid" : "1.3.6.1.2.1.139.2.4.3",
2852
+ "status" : "current",
2853
+ "description" :
2854
+ """This table provides the ability to present a logical unit
2855
+ using different Logical Unit Numbers for different SCSI
2856
+ initiator devices.
2857
+ This table provides a mapping between a logical unit and a
2858
+ Logical Unit Number, and can be referenced by a
2859
+ ScsiAuthorizedIntrEntry to specify the LUN map for that
2860
+ initiator.""",
2861
+ }, # table
2862
+ "scsiLunMapEntry" : {
2863
+ "nodetype" : "row",
2864
+ "moduleName" : "SCSI-MIB",
2865
+ "oid" : "1.3.6.1.2.1.139.2.4.3.1",
2866
+ "create" : "true",
2867
+ "status" : "current",
2868
+ "linkage" : [
2869
+ "scsiInstIndex",
2870
+ "scsiDeviceIndex",
2871
+ "scsiLunMapIndex",
2872
+ "scsiLunMapLun",
2873
+ ],
2874
+ "description" :
2875
+ """An entry containing information about the mapping of a
2876
+
2877
+
2878
+
2879
+ particular logical unit to a particular LUN. The set of
2880
+ entries that all have the same values of scsiInstIndex,
2881
+ scsiDeviceIndex and scsiLunMapIndex constitutes a LUN map
2882
+ within a particular SCSI instance.
2883
+ The StorageType of a row in this table is specified by
2884
+ the instance of scsiInstStorageType that is INDEX-ed by
2885
+ the same value of scsiInstIndex.""",
2886
+ }, # row
2887
+ "scsiLunMapIndex" : {
2888
+ "nodetype" : "column",
2889
+ "moduleName" : "SCSI-MIB",
2890
+ "oid" : "1.3.6.1.2.1.139.2.4.3.1.1",
2891
+ "status" : "current",
2892
+ "syntax" : {
2893
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
2894
+ },
2895
+ "access" : "noaccess",
2896
+ "description" :
2897
+ """This object represents an arbitrary integer used to uniquely
2898
+ identify a particular LunMap within a particular SCSI target
2899
+ device within a particular SCSI instance.""",
2900
+ }, # column
2901
+ "scsiLunMapLun" : {
2902
+ "nodetype" : "column",
2903
+ "moduleName" : "SCSI-MIB",
2904
+ "oid" : "1.3.6.1.2.1.139.2.4.3.1.2",
2905
+ "status" : "current",
2906
+ "syntax" : {
2907
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiLUN"},
2908
+ },
2909
+ "access" : "noaccess",
2910
+ "description" :
2911
+ """This object specifies the Logical Unit Number, to which a
2912
+ logical unit is mapped by this row.""",
2913
+ }, # column
2914
+ "scsiLunMapLuIndex" : {
2915
+ "nodetype" : "column",
2916
+ "moduleName" : "SCSI-MIB",
2917
+ "oid" : "1.3.6.1.2.1.139.2.4.3.1.3",
2918
+ "status" : "current",
2919
+ "syntax" : {
2920
+ "type" : { "module" :"SCSI-MIB", "name" : "ScsiIndexValue"},
2921
+ },
2922
+ "access" : "readwrite",
2923
+ "description" :
2924
+ """This object identifies the logical unit for which the value of
2925
+ scsiLuIndex is the same as the value of this object. The
2926
+ identified logical unit is the one mapped to a LUN by this
2927
+ row.""",
2928
+ }, # column
2929
+ "scsiLunMapRowStatus" : {
2930
+ "nodetype" : "column",
2931
+ "moduleName" : "SCSI-MIB",
2932
+ "oid" : "1.3.6.1.2.1.139.2.4.3.1.4",
2933
+ "status" : "current",
2934
+ "syntax" : {
2935
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2936
+ },
2937
+ "access" : "readwrite",
2938
+ "description" :
2939
+ """This object allows an administrator to create and delete this
2940
+ entry.""",
2941
+ }, # column
2942
+ "scsiConformance" : {
2943
+ "nodetype" : "node",
2944
+ "moduleName" : "SCSI-MIB",
2945
+ "oid" : "1.3.6.1.2.1.139.3",
2946
+ }, # node
2947
+ "scsiCompliances" : {
2948
+ "nodetype" : "node",
2949
+ "moduleName" : "SCSI-MIB",
2950
+ "oid" : "1.3.6.1.2.1.139.3.1",
2951
+ }, # node
2952
+ "scsiGroups" : {
2953
+ "nodetype" : "node",
2954
+ "moduleName" : "SCSI-MIB",
2955
+ "oid" : "1.3.6.1.2.1.139.3.2",
2956
+ }, # node
2957
+ }, # nodes
2958
+
2959
+ "notifications" : {
2960
+ "scsiTgtDeviceStatusChanged" : {
2961
+ "nodetype" : "notification",
2962
+ "moduleName" : "SCSI-MIB",
2963
+ "oid" : "1.3.6.1.2.1.139.0.0.1",
2964
+ "status" : "current",
2965
+ "objects" : {
2966
+ "scsiTgtDeviceStatus" : {
2967
+ "nodetype" : "object",
2968
+ "module" : "SCSI-MIB"
2969
+ },
2970
+ },
2971
+ "description" :
2972
+ """This notification will be generated for each occurrence of the
2973
+ abnormal status (e.g., if the SCSI target device's current
2974
+ status is abnormal) providing that the SCSI instance's value of
2975
+ scsiInstScsiNotificationsEnable is enabled.
2976
+ An SNMP agent implementing the SCSI MIB module should not send
2977
+ more than three SCSI identical notifications in any 10-second
2978
+ period.""",
2979
+ }, # notification
2980
+ "scsiLuStatusChanged" : {
2981
+ "nodetype" : "notification",
2982
+ "moduleName" : "SCSI-MIB",
2983
+ "oid" : "1.3.6.1.2.1.139.0.0.2",
2984
+ "status" : "current",
2985
+ "objects" : {
2986
+ "scsiLuStatus" : {
2987
+ "nodetype" : "object",
2988
+ "module" : "SCSI-MIB"
2989
+ },
2990
+ },
2991
+ "description" :
2992
+ """This notification will be generated each time that
2993
+ scsiLuStatus changes providing that the SCSI instance's value
2994
+ of scsiInstScsiNotificationsEnable is enabled.
2995
+ An SNMP agent implementing the SCSI MIB module should not send
2996
+ more than three SCSI identical notifications in any 10-second
2997
+ period.""",
2998
+ }, # notification
2999
+ }, # notifications
3000
+
3001
+ "groups" : {
3002
+ "scsiDeviceGroup" : {
3003
+ "nodetype" : "group",
3004
+ "moduleName" : "SCSI-MIB",
3005
+ "oid" : "1.3.6.1.2.1.139.3.2.1",
3006
+ "status" : "current",
3007
+ "members" : {
3008
+ "scsiInstAlias" : {
3009
+ "nodetype" : "member",
3010
+ "module" : "SCSI-MIB"
3011
+ },
3012
+ "scsiInstSoftwareIndex" : {
3013
+ "nodetype" : "member",
3014
+ "module" : "SCSI-MIB"
3015
+ },
3016
+ "scsiInstVendorVersion" : {
3017
+ "nodetype" : "member",
3018
+ "module" : "SCSI-MIB"
3019
+ },
3020
+ "scsiInstScsiNotificationsEnable" : {
3021
+ "nodetype" : "member",
3022
+ "module" : "SCSI-MIB"
3023
+ },
3024
+ "scsiInstStorageType" : {
3025
+ "nodetype" : "member",
3026
+ "module" : "SCSI-MIB"
3027
+ },
3028
+ "scsiDeviceAlias" : {
3029
+ "nodetype" : "member",
3030
+ "module" : "SCSI-MIB"
3031
+ },
3032
+ "scsiDeviceRole" : {
3033
+ "nodetype" : "member",
3034
+ "module" : "SCSI-MIB"
3035
+ },
3036
+ "scsiDevicePortNumber" : {
3037
+ "nodetype" : "member",
3038
+ "module" : "SCSI-MIB"
3039
+ },
3040
+ "scsiPortRole" : {
3041
+ "nodetype" : "member",
3042
+ "module" : "SCSI-MIB"
3043
+ },
3044
+ "scsiPortTransportPtr" : {
3045
+ "nodetype" : "member",
3046
+ "module" : "SCSI-MIB"
3047
+ },
3048
+ "scsiTransportType" : {
3049
+ "nodetype" : "member",
3050
+ "module" : "SCSI-MIB"
3051
+ },
3052
+ "scsiTransportPointer" : {
3053
+ "nodetype" : "member",
3054
+ "module" : "SCSI-MIB"
3055
+ },
3056
+ "scsiTransportDevName" : {
3057
+ "nodetype" : "member",
3058
+ "module" : "SCSI-MIB"
3059
+ },
3060
+ }, # members
3061
+ "description" :
3062
+ """A collection of objects providing information about SCSI
3063
+ instances, devices, and ports.""",
3064
+ }, # group
3065
+ "scsiInitiatorDeviceGroup" : {
3066
+ "nodetype" : "group",
3067
+ "moduleName" : "SCSI-MIB",
3068
+ "oid" : "1.3.6.1.2.1.139.3.2.2",
3069
+ "status" : "current",
3070
+ "members" : {
3071
+ "scsiIntrDevTgtAccessMode" : {
3072
+ "nodetype" : "member",
3073
+ "module" : "SCSI-MIB"
3074
+ },
3075
+ "scsiIntrPortName" : {
3076
+ "nodetype" : "member",
3077
+ "module" : "SCSI-MIB"
3078
+ },
3079
+ "scsiIntrPortIdentifier" : {
3080
+ "nodetype" : "member",
3081
+ "module" : "SCSI-MIB"
3082
+ },
3083
+ "scsiAttTgtPortDscTgtIdx" : {
3084
+ "nodetype" : "member",
3085
+ "module" : "SCSI-MIB"
3086
+ },
3087
+ "scsiAttTgtPortName" : {
3088
+ "nodetype" : "member",
3089
+ "module" : "SCSI-MIB"
3090
+ },
3091
+ "scsiAttTgtPortIdentifier" : {
3092
+ "nodetype" : "member",
3093
+ "module" : "SCSI-MIB"
3094
+ },
3095
+ }, # members
3096
+ "description" :
3097
+ """This group is relevant for s SCSI initiator device and port.""",
3098
+ }, # group
3099
+ "scsiDiscoveryGroup" : {
3100
+ "nodetype" : "group",
3101
+ "moduleName" : "SCSI-MIB",
3102
+ "oid" : "1.3.6.1.2.1.139.3.2.3",
3103
+ "status" : "current",
3104
+ "members" : {
3105
+ "scsiDscTgtDevOrPort" : {
3106
+ "nodetype" : "member",
3107
+ "module" : "SCSI-MIB"
3108
+ },
3109
+ "scsiDscTgtName" : {
3110
+ "nodetype" : "member",
3111
+ "module" : "SCSI-MIB"
3112
+ },
3113
+ "scsiDscTgtConfigured" : {
3114
+ "nodetype" : "member",
3115
+ "module" : "SCSI-MIB"
3116
+ },
3117
+ "scsiDscTgtDiscovered" : {
3118
+ "nodetype" : "member",
3119
+ "module" : "SCSI-MIB"
3120
+ },
3121
+ "scsiDscTgtRowStatus" : {
3122
+ "nodetype" : "member",
3123
+ "module" : "SCSI-MIB"
3124
+ },
3125
+ "scsiDscTgtLastCreation" : {
3126
+ "nodetype" : "member",
3127
+ "module" : "SCSI-MIB"
3128
+ },
3129
+ "scsiDscLunLun" : {
3130
+ "nodetype" : "member",
3131
+ "module" : "SCSI-MIB"
3132
+ },
3133
+ "scsiDscLunIdCodeSet" : {
3134
+ "nodetype" : "member",
3135
+ "module" : "SCSI-MIB"
3136
+ },
3137
+ "scsiDscLunIdAssociation" : {
3138
+ "nodetype" : "member",
3139
+ "module" : "SCSI-MIB"
3140
+ },
3141
+ "scsiDscLunIdType" : {
3142
+ "nodetype" : "member",
3143
+ "module" : "SCSI-MIB"
3144
+ },
3145
+ "scsiDscLunIdValue" : {
3146
+ "nodetype" : "member",
3147
+ "module" : "SCSI-MIB"
3148
+ },
3149
+ }, # members
3150
+ "description" :
3151
+ """This group is relevant for the discovered SCSI target devices
3152
+ by a SCSI initiator port.""",
3153
+ }, # group
3154
+ "scsiTargetDeviceGroup" : {
3155
+ "nodetype" : "group",
3156
+ "moduleName" : "SCSI-MIB",
3157
+ "oid" : "1.3.6.1.2.1.139.3.2.4",
3158
+ "status" : "current",
3159
+ "members" : {
3160
+ "scsiTgtDevNumberOfLUs" : {
3161
+ "nodetype" : "member",
3162
+ "module" : "SCSI-MIB"
3163
+ },
3164
+ "scsiTgtDeviceStatus" : {
3165
+ "nodetype" : "member",
3166
+ "module" : "SCSI-MIB"
3167
+ },
3168
+ "scsiTgtDevNonAccessibleLUs" : {
3169
+ "nodetype" : "member",
3170
+ "module" : "SCSI-MIB"
3171
+ },
3172
+ "scsiTgtPortName" : {
3173
+ "nodetype" : "member",
3174
+ "module" : "SCSI-MIB"
3175
+ },
3176
+ "scsiTgtPortIdentifier" : {
3177
+ "nodetype" : "member",
3178
+ "module" : "SCSI-MIB"
3179
+ },
3180
+ "scsiAttIntrPortAuthIntrIdx" : {
3181
+ "nodetype" : "member",
3182
+ "module" : "SCSI-MIB"
3183
+ },
3184
+ "scsiAttIntrPortName" : {
3185
+ "nodetype" : "member",
3186
+ "module" : "SCSI-MIB"
3187
+ },
3188
+ "scsiAttIntrPortIdentifier" : {
3189
+ "nodetype" : "member",
3190
+ "module" : "SCSI-MIB"
3191
+ },
3192
+ "scsiLuDefaultLun" : {
3193
+ "nodetype" : "member",
3194
+ "module" : "SCSI-MIB"
3195
+ },
3196
+ "scsiLuWwnName" : {
3197
+ "nodetype" : "member",
3198
+ "module" : "SCSI-MIB"
3199
+ },
3200
+ "scsiLuVendorId" : {
3201
+ "nodetype" : "member",
3202
+ "module" : "SCSI-MIB"
3203
+ },
3204
+ "scsiLuProductId" : {
3205
+ "nodetype" : "member",
3206
+ "module" : "SCSI-MIB"
3207
+ },
3208
+ "scsiLuRevisionId" : {
3209
+ "nodetype" : "member",
3210
+ "module" : "SCSI-MIB"
3211
+ },
3212
+ "scsiLuPeripheralType" : {
3213
+ "nodetype" : "member",
3214
+ "module" : "SCSI-MIB"
3215
+ },
3216
+ "scsiLuStatus" : {
3217
+ "nodetype" : "member",
3218
+ "module" : "SCSI-MIB"
3219
+ },
3220
+ "scsiLuState" : {
3221
+ "nodetype" : "member",
3222
+ "module" : "SCSI-MIB"
3223
+ },
3224
+ "scsiLuLastCreation" : {
3225
+ "nodetype" : "member",
3226
+ "module" : "SCSI-MIB"
3227
+ },
3228
+ "scsiLuIdCodeSet" : {
3229
+ "nodetype" : "member",
3230
+ "module" : "SCSI-MIB"
3231
+ },
3232
+ "scsiLuIdAssociation" : {
3233
+ "nodetype" : "member",
3234
+ "module" : "SCSI-MIB"
3235
+ },
3236
+ "scsiLuIdType" : {
3237
+ "nodetype" : "member",
3238
+ "module" : "SCSI-MIB"
3239
+ },
3240
+ "scsiLuIdValue" : {
3241
+ "nodetype" : "member",
3242
+ "module" : "SCSI-MIB"
3243
+ },
3244
+ }, # members
3245
+ "description" :
3246
+ """This group is relevant for a SCSI target device and port.""",
3247
+ }, # group
3248
+ "scsiLunMapGroup" : {
3249
+ "nodetype" : "group",
3250
+ "moduleName" : "SCSI-MIB",
3251
+ "oid" : "1.3.6.1.2.1.139.3.2.5",
3252
+ "status" : "current",
3253
+ "members" : {
3254
+ "scsiLunMapLuIndex" : {
3255
+ "nodetype" : "member",
3256
+ "module" : "SCSI-MIB"
3257
+ },
3258
+ "scsiLunMapRowStatus" : {
3259
+ "nodetype" : "member",
3260
+ "module" : "SCSI-MIB"
3261
+ },
3262
+ "scsiAuthIntrDevOrPort" : {
3263
+ "nodetype" : "member",
3264
+ "module" : "SCSI-MIB"
3265
+ },
3266
+ "scsiAuthIntrName" : {
3267
+ "nodetype" : "member",
3268
+ "module" : "SCSI-MIB"
3269
+ },
3270
+ "scsiAuthIntrLunMapIndex" : {
3271
+ "nodetype" : "member",
3272
+ "module" : "SCSI-MIB"
3273
+ },
3274
+ "scsiAuthIntrLastCreation" : {
3275
+ "nodetype" : "member",
3276
+ "module" : "SCSI-MIB"
3277
+ },
3278
+ "scsiAuthIntrRowStatus" : {
3279
+ "nodetype" : "member",
3280
+ "module" : "SCSI-MIB"
3281
+ },
3282
+ }, # members
3283
+ "description" :
3284
+ """This group is a collection of attributes regarding the mapping
3285
+ between Logical Unit Number, logical unit, and target device.""",
3286
+ }, # group
3287
+ "scsiTargetDevStatsGroup" : {
3288
+ "nodetype" : "group",
3289
+ "moduleName" : "SCSI-MIB",
3290
+ "oid" : "1.3.6.1.2.1.139.3.2.6",
3291
+ "status" : "current",
3292
+ "members" : {
3293
+ "scsiTgtDevResets" : {
3294
+ "nodetype" : "member",
3295
+ "module" : "SCSI-MIB"
3296
+ },
3297
+ "scsiTgtPortInCommands" : {
3298
+ "nodetype" : "member",
3299
+ "module" : "SCSI-MIB"
3300
+ },
3301
+ "scsiTgtPortWrittenMegaBytes" : {
3302
+ "nodetype" : "member",
3303
+ "module" : "SCSI-MIB"
3304
+ },
3305
+ "scsiTgtPortReadMegaBytes" : {
3306
+ "nodetype" : "member",
3307
+ "module" : "SCSI-MIB"
3308
+ },
3309
+ "scsiLuInCommands" : {
3310
+ "nodetype" : "member",
3311
+ "module" : "SCSI-MIB"
3312
+ },
3313
+ "scsiLuReadMegaBytes" : {
3314
+ "nodetype" : "member",
3315
+ "module" : "SCSI-MIB"
3316
+ },
3317
+ "scsiLuWrittenMegaBytes" : {
3318
+ "nodetype" : "member",
3319
+ "module" : "SCSI-MIB"
3320
+ },
3321
+ "scsiLuInResets" : {
3322
+ "nodetype" : "member",
3323
+ "module" : "SCSI-MIB"
3324
+ },
3325
+ "scsiLuOutTaskSetFullStatus" : {
3326
+ "nodetype" : "member",
3327
+ "module" : "SCSI-MIB"
3328
+ },
3329
+ }, # members
3330
+ "description" :
3331
+ """This group is a collection of statistics for all
3332
+ implementations of the SCSI MIB module that contain SCSI target
3333
+ devices.""",
3334
+ }, # group
3335
+ "scsiTargetDevHSStatsGroup" : {
3336
+ "nodetype" : "group",
3337
+ "moduleName" : "SCSI-MIB",
3338
+ "oid" : "1.3.6.1.2.1.139.3.2.7",
3339
+ "status" : "current",
3340
+ "members" : {
3341
+ "scsiTgtPortHSInCommands" : {
3342
+ "nodetype" : "member",
3343
+ "module" : "SCSI-MIB"
3344
+ },
3345
+ "scsiLuHSInCommands" : {
3346
+ "nodetype" : "member",
3347
+ "module" : "SCSI-MIB"
3348
+ },
3349
+ }, # members
3350
+ "description" :
3351
+ """This group is a collection of high speed statistics for all
3352
+ implementations of the SCSI MIB module that contain SCSI target
3353
+ devices.""",
3354
+ }, # group
3355
+ "scsiLunMapStatsGroup" : {
3356
+ "nodetype" : "group",
3357
+ "moduleName" : "SCSI-MIB",
3358
+ "oid" : "1.3.6.1.2.1.139.3.2.8",
3359
+ "status" : "current",
3360
+ "members" : {
3361
+ "scsiAuthIntrAttachedTimes" : {
3362
+ "nodetype" : "member",
3363
+ "module" : "SCSI-MIB"
3364
+ },
3365
+ "scsiAuthIntrOutCommands" : {
3366
+ "nodetype" : "member",
3367
+ "module" : "SCSI-MIB"
3368
+ },
3369
+ "scsiAuthIntrReadMegaBytes" : {
3370
+ "nodetype" : "member",
3371
+ "module" : "SCSI-MIB"
3372
+ },
3373
+ "scsiAuthIntrWrittenMegaBytes" : {
3374
+ "nodetype" : "member",
3375
+ "module" : "SCSI-MIB"
3376
+ },
3377
+ }, # members
3378
+ "description" :
3379
+ """This group is a collection of statistics regarding SCSI
3380
+ initiator devices authorized to attach local logical unit and
3381
+ SCSI target device.""",
3382
+ }, # group
3383
+ "scsiLunMapHSStatsGroup" : {
3384
+ "nodetype" : "group",
3385
+ "moduleName" : "SCSI-MIB",
3386
+ "oid" : "1.3.6.1.2.1.139.3.2.9",
3387
+ "status" : "current",
3388
+ "members" : {
3389
+ "scsiAuthIntrHSOutCommands" : {
3390
+ "nodetype" : "member",
3391
+ "module" : "SCSI-MIB"
3392
+ },
3393
+ }, # members
3394
+ "description" :
3395
+ """This group is a collection of high speed statistics regarding
3396
+ SCSI initiator devices authorized to attach local logical unit
3397
+ and SCSI target device.""",
3398
+ }, # group
3399
+ "scsiInitiatorDevStatsGroup" : {
3400
+ "nodetype" : "group",
3401
+ "moduleName" : "SCSI-MIB",
3402
+ "oid" : "1.3.6.1.2.1.139.3.2.10",
3403
+ "status" : "current",
3404
+ "members" : {
3405
+ "scsiIntrDevOutResets" : {
3406
+ "nodetype" : "member",
3407
+ "module" : "SCSI-MIB"
3408
+ },
3409
+ "scsiIntrPortOutCommands" : {
3410
+ "nodetype" : "member",
3411
+ "module" : "SCSI-MIB"
3412
+ },
3413
+ "scsiIntrPortWrittenMegaBytes" : {
3414
+ "nodetype" : "member",
3415
+ "module" : "SCSI-MIB"
3416
+ },
3417
+ "scsiIntrPortReadMegaBytes" : {
3418
+ "nodetype" : "member",
3419
+ "module" : "SCSI-MIB"
3420
+ },
3421
+ }, # members
3422
+ "description" :
3423
+ """This group is a collection of statistics for all
3424
+ implementations of the SCSI MIB module that contain SCSI
3425
+ initiator devices.""",
3426
+ }, # group
3427
+ "scsiInitiatorDevHSStatsGroup" : {
3428
+ "nodetype" : "group",
3429
+ "moduleName" : "SCSI-MIB",
3430
+ "oid" : "1.3.6.1.2.1.139.3.2.11",
3431
+ "status" : "current",
3432
+ "members" : {
3433
+ "scsiIntrPortHSOutCommands" : {
3434
+ "nodetype" : "member",
3435
+ "module" : "SCSI-MIB"
3436
+ },
3437
+ }, # members
3438
+ "description" :
3439
+ """This group is a collection of high speed statistics for all
3440
+
3441
+
3442
+
3443
+ implementations of the SCSI MIB module that contain SCSI
3444
+ initiator devices.""",
3445
+ }, # group
3446
+ "scsiDiscoveryStatsGroup" : {
3447
+ "nodetype" : "group",
3448
+ "moduleName" : "SCSI-MIB",
3449
+ "oid" : "1.3.6.1.2.1.139.3.2.12",
3450
+ "status" : "current",
3451
+ "members" : {
3452
+ "scsiDscTgtInCommands" : {
3453
+ "nodetype" : "member",
3454
+ "module" : "SCSI-MIB"
3455
+ },
3456
+ "scsiDscTgtReadMegaBytes" : {
3457
+ "nodetype" : "member",
3458
+ "module" : "SCSI-MIB"
3459
+ },
3460
+ "scsiDscTgtWrittenMegaBytes" : {
3461
+ "nodetype" : "member",
3462
+ "module" : "SCSI-MIB"
3463
+ },
3464
+ }, # members
3465
+ "description" :
3466
+ """This group is a collection of statistics for all
3467
+ implementations of the SCSI MIB module that contain discovered
3468
+ SCSI initiator devices.""",
3469
+ }, # group
3470
+ "scsiDiscoveryHSStatsGroup" : {
3471
+ "nodetype" : "group",
3472
+ "moduleName" : "SCSI-MIB",
3473
+ "oid" : "1.3.6.1.2.1.139.3.2.13",
3474
+ "status" : "current",
3475
+ "members" : {
3476
+ "scsiDscTgtHSInCommands" : {
3477
+ "nodetype" : "member",
3478
+ "module" : "SCSI-MIB"
3479
+ },
3480
+ }, # members
3481
+ "description" :
3482
+ """This group is a collection of high speed statistics for all
3483
+ implementations of the SCSI MIB module that contain discovered
3484
+ SCSI initiator devices.""",
3485
+ }, # group
3486
+ "scsiDeviceStatGroup" : {
3487
+ "nodetype" : "group",
3488
+ "moduleName" : "SCSI-MIB",
3489
+ "oid" : "1.3.6.1.2.1.139.3.2.14",
3490
+ "status" : "current",
3491
+ "members" : {
3492
+ "scsiPortBusyStatuses" : {
3493
+ "nodetype" : "member",
3494
+ "module" : "SCSI-MIB"
3495
+ },
3496
+ }, # members
3497
+ "description" :
3498
+ """A collection of statistics regarding SCSI devices and
3499
+ ports.""",
3500
+ }, # group
3501
+ "scsiTgtDevLuNotificationsGroup" : {
3502
+ "nodetype" : "group",
3503
+ "moduleName" : "SCSI-MIB",
3504
+ "oid" : "1.3.6.1.2.1.139.3.2.15",
3505
+ "status" : "current",
3506
+ "members" : {
3507
+ "scsiTgtDeviceStatusChanged" : {
3508
+ "nodetype" : "member",
3509
+ "module" : "SCSI-MIB"
3510
+ },
3511
+ "scsiLuStatusChanged" : {
3512
+ "nodetype" : "member",
3513
+ "module" : "SCSI-MIB"
3514
+ },
3515
+ }, # members
3516
+ "description" :
3517
+ """A collection of notifications regarding status change of SCSI
3518
+ target devices and logical units.""",
3519
+ }, # group
3520
+ }, # groups
3521
+
3522
+ "compliances" : {
3523
+ "scsiCompliance" : {
3524
+ "nodetype" : "compliance",
3525
+ "moduleName" : "SCSI-MIB",
3526
+ "oid" : "1.3.6.1.2.1.139.3.1.1",
3527
+ "status" : "current",
3528
+ "description" :
3529
+ """Describes the requirements for compliance to this SCSI MIB
3530
+ module.
3531
+ If an implementation can be both a SCSI target device and a SCSI
3532
+ initiator device, all groups are mandatory.""",
3533
+ "requires" : {
3534
+ "scsiDeviceGroup" : {
3535
+ "nodetype" : "mandatory",
3536
+ "module" : "SCSI-MIB"
3537
+ },
3538
+ "scsiTargetDeviceGroup" : {
3539
+ "nodetype" : "optional",
3540
+ "module" : "SCSI-MIB",
3541
+ "description" :
3542
+ """This group is mandatory for all SCSI implementations that
3543
+ have SCSI target devices.""",
3544
+ },
3545
+ "scsiLunMapGroup" : {
3546
+ "nodetype" : "optional",
3547
+ "module" : "SCSI-MIB",
3548
+ "description" :
3549
+ """This group is mandatory for systems having the capabilities
3550
+ of mapping local SCSI target devices and logical units
3551
+ according to remote SCSI initiator devices.""",
3552
+ },
3553
+ "scsiTgtDevLuNotificationsGroup" : {
3554
+ "nodetype" : "optional",
3555
+ "module" : "SCSI-MIB",
3556
+ "description" :
3557
+ """This group is mandatory for all SCSI implementations that
3558
+ have SCSI target devices and are able to report status
3559
+ changes.""",
3560
+ },
3561
+ "scsiInitiatorDeviceGroup" : {
3562
+ "nodetype" : "optional",
3563
+ "module" : "SCSI-MIB",
3564
+ "description" :
3565
+ """This group is mandatory for all SCSI implementations that
3566
+ have SCSI initiator devices.""",
3567
+ },
3568
+ "scsiDiscoveryGroup" : {
3569
+ "nodetype" : "optional",
3570
+ "module" : "SCSI-MIB",
3571
+ "description" :
3572
+ """This group is mandatory for systems having the capabilities
3573
+ of discovering remote SCSI target devices via local SCSI
3574
+ initiator devices.""",
3575
+ },
3576
+ "scsiDeviceStatGroup" : {
3577
+ "nodetype" : "optional",
3578
+ "module" : "SCSI-MIB",
3579
+ "description" :
3580
+ """This group is mandatory for all SCSI implementations that
3581
+ can gather statistics.""",
3582
+ },
3583
+ "scsiInitiatorDevStatsGroup" : {
3584
+ "nodetype" : "optional",
3585
+ "module" : "SCSI-MIB",
3586
+ "description" :
3587
+ """This group is mandatory for all SCSI implementations that
3588
+ can gather statistics at SCSI initiator device side.""",
3589
+ },
3590
+ "scsiDiscoveryStatsGroup" : {
3591
+ "nodetype" : "optional",
3592
+ "module" : "SCSI-MIB",
3593
+ "description" :
3594
+ """This group is mandatory for system having the capabilities
3595
+ of gathering statistics regarding remote SCSI target devices
3596
+ via local SCSI initiator devices.""",
3597
+ },
3598
+ "scsiTargetDevStatsGroup" : {
3599
+ "nodetype" : "optional",
3600
+ "module" : "SCSI-MIB",
3601
+ "description" :
3602
+ """This group is mandatory for all SCSI implementations that
3603
+ can gather statistics at SCSI target devices.""",
3604
+ },
3605
+ "scsiLunMapStatsGroup" : {
3606
+ "nodetype" : "optional",
3607
+ "module" : "SCSI-MIB",
3608
+ "description" :
3609
+ """This group is mandatory for SCSI implementations able to map
3610
+ local SCSI target devices and logical units according to
3611
+ remote SCSI initiator devices.""",
3612
+ },
3613
+ "scsiInitiatorDevHSStatsGroup" : {
3614
+ "nodetype" : "optional",
3615
+ "module" : "SCSI-MIB",
3616
+ "description" :
3617
+ """This group is mandatory for all SCSI implementations that
3618
+ can gather statistics at the SCSI initiator device side and
3619
+ are running at high speed, meaning speed of 4 Gbit/second or
3620
+ higher.""",
3621
+ },
3622
+ "scsiDiscoveryHSStatsGroup" : {
3623
+ "nodetype" : "optional",
3624
+ "module" : "SCSI-MIB",
3625
+ "description" :
3626
+ """This group is mandatory for systems having the capabilities
3627
+ of gathering statistics regarding remote SCSI target devices
3628
+ via local SCSI initiator devices and are running at high
3629
+ speed, meaning speed of 4 Gbit/second or higher.""",
3630
+ },
3631
+ "scsiTargetDevHSStatsGroup" : {
3632
+ "nodetype" : "optional",
3633
+ "module" : "SCSI-MIB",
3634
+ "description" :
3635
+ """This group is mandatory for all SCSI implementations that
3636
+ can gather statistics at SCSI target devices in high speed
3637
+ systems, meaning speed of 4 Gbit/second or higher.""",
3638
+ },
3639
+ "scsiLunMapHSStatsGroup" : {
3640
+ "nodetype" : "optional",
3641
+ "module" : "SCSI-MIB",
3642
+ "description" :
3643
+ """This group is mandatory for SCSI implementations able to map
3644
+ local SCSI target devices and logical units according to
3645
+ remote SCSI initiator devices in a high speed system, meaning
3646
+ speed of 4 Gbit/second or higher.""",
3647
+ },
3648
+ }, # requires
3649
+ "refinements" : {
3650
+ "scsiInstAlias" : {
3651
+ "module" : "SCSI-MIB",
3652
+ "access" : "readonly",
3653
+ "description" :
3654
+ """Write access is not mandatory.""",
3655
+ },
3656
+ "scsiInstScsiNotificationsEnable" : {
3657
+ "module" : "SCSI-MIB",
3658
+ "access" : "readonly",
3659
+ "description" :
3660
+ """Write access is not mandatory.""",
3661
+ },
3662
+ "scsiDeviceAlias" : {
3663
+ "module" : "SCSI-MIB",
3664
+ "access" : "readonly",
3665
+ "description" :
3666
+ """Write access is not mandatory.""",
3667
+ },
3668
+ "scsiInstStorageType" : {
3669
+ "module" : "SCSI-MIB",
3670
+ "access" : "readonly",
3671
+ "description" :
3672
+ """Write access is not required.""",
3673
+ },
3674
+ "scsiAuthIntrDevOrPort" : {
3675
+ "module" : "SCSI-MIB",
3676
+ "access" : "readonly",
3677
+ "description" :
3678
+ """Write access is not required.""",
3679
+ },
3680
+ "scsiAuthIntrName" : {
3681
+ "module" : "SCSI-MIB",
3682
+ "access" : "readonly",
3683
+ "description" :
3684
+ """Write access is not required.""",
3685
+ },
3686
+ "scsiAuthIntrLunMapIndex" : {
3687
+ "module" : "SCSI-MIB",
3688
+ "access" : "readonly",
3689
+ "description" :
3690
+ """Write access is not required.""",
3691
+ },
3692
+ "scsiAuthIntrRowStatus" : {
3693
+ "module" : "SCSI-MIB",
3694
+ "syntax" : {
3695
+ "type" : {
3696
+ "basetype" : "Enumeration",
3697
+ "parent module" : {
3698
+ "name" : "SNMPv2-TC",
3699
+ "type" : "RowStatus",
3700
+ },
3701
+ "active" : {
3702
+ "nodetype" : "namednumber",
3703
+ "number" : "1"
3704
+ },
3705
+ },
3706
+ }, # syntax
3707
+ "access" : "readonly",
3708
+ "description" :
3709
+ """Write access is not required, and only one of the six
3710
+ enumerated values for the RowStatus textual convention need
3711
+ be supported, specifically: active(1).""",
3712
+ },
3713
+ "scsiIntrDevTgtAccessMode" : {
3714
+ "module" : "SCSI-MIB",
3715
+ "access" : "readonly",
3716
+ "description" :
3717
+ """Write access is not mandatory.""",
3718
+ },
3719
+ "scsiLunMapLuIndex" : {
3720
+ "module" : "SCSI-MIB",
3721
+ "access" : "readonly",
3722
+ "description" :
3723
+ """Write access is not mandatory.""",
3724
+ },
3725
+ "scsiLunMapRowStatus" : {
3726
+ "module" : "SCSI-MIB",
3727
+ "syntax" : {
3728
+ "type" : {
3729
+ "basetype" : "Enumeration",
3730
+ "parent module" : {
3731
+ "name" : "SNMPv2-TC",
3732
+ "type" : "RowStatus",
3733
+ },
3734
+ "active" : {
3735
+ "nodetype" : "namednumber",
3736
+ "number" : "1"
3737
+ },
3738
+ },
3739
+ }, # syntax
3740
+ "access" : "readonly",
3741
+ "description" :
3742
+ """Write access is not required, and only one of the six
3743
+ enumerated values for the RowStatus textual convention need
3744
+ be supported, specifically: active(1).""",
3745
+ },
3746
+ "scsiDscTgtDevOrPort" : {
3747
+ "module" : "SCSI-MIB",
3748
+ "access" : "readonly",
3749
+ "description" :
3750
+ """Write access is not mandatory.""",
3751
+ },
3752
+ "scsiDscTgtName" : {
3753
+ "module" : "SCSI-MIB",
3754
+ "access" : "readonly",
3755
+ "description" :
3756
+ """Write access is not mandatory.""",
3757
+ },
3758
+ "scsiDscTgtConfigured" : {
3759
+ "module" : "SCSI-MIB",
3760
+ "syntax" : {
3761
+ "type" : {
3762
+ "basetype" : "Enumeration",
3763
+ "parent module" : {
3764
+ "name" : "SNMPv2-TC",
3765
+ "type" : "TruthValue",
3766
+ },
3767
+ "false" : {
3768
+ "nodetype" : "namednumber",
3769
+ "number" : "2"
3770
+ },
3771
+ },
3772
+ }, # syntax
3773
+ "access" : "readonly",
3774
+ "description" :
3775
+ """The value of true(1) is not mandatory neither is the write
3776
+ access.""",
3777
+ },
3778
+ "scsiDscTgtRowStatus" : {
3779
+ "module" : "SCSI-MIB",
3780
+ "syntax" : {
3781
+ "type" : {
3782
+ "basetype" : "Enumeration",
3783
+ "parent module" : {
3784
+ "name" : "SNMPv2-TC",
3785
+ "type" : "RowStatus",
3786
+ },
3787
+ "active" : {
3788
+ "nodetype" : "namednumber",
3789
+ "number" : "1"
3790
+ },
3791
+ },
3792
+ }, # syntax
3793
+ "access" : "readonly",
3794
+ "description" :
3795
+ """Write access is not required, and only one of the six
3796
+ enumerated values for the RowStatus textual convention need
3797
+ be supported, specifically: active(1).""",
3798
+ },
3799
+ }, # refinements
3800
+
3801
+ }, # compliance
3802
+ }, # compliances
3803
+
3804
+ }