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,4613 @@
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 ISCSI-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/ISCSI-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "ISCSI-MIB",
11
+
12
+ "ISCSI-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPS Working Group""",
17
+ "contact" :
18
+ """
19
+ Mark Bakke
20
+ Cisco Systems, Inc
21
+ 7900 International Drive, Suite 400
22
+ Bloomington, MN
23
+ USA 55425
24
+
25
+ E-mail: mbakke@cisco.com
26
+
27
+ Marjorie Krueger
28
+ Hewlett-Packard
29
+ Networked Storage Architecture
30
+ Networked Storage Solutions Org.
31
+ 8000 Foothills Blvd.
32
+ Roseville, CA 95747
33
+
34
+
35
+
36
+
37
+ E-mail: marjorie_krueger@hp.com
38
+
39
+ Tom McSweeney
40
+ IBM Corporation
41
+ 600 Park Offices Drive
42
+ Research Triangle Park, NC
43
+ USA 27709
44
+
45
+ E-mail: tommcs@us.ibm.com
46
+
47
+ James Muchow
48
+ Qlogic Corp.
49
+ 6321 Bury Dr.
50
+ Eden Prairie, MN
51
+ USA 55346
52
+
53
+ E-mail: james.muchow@qlogic.com""",
54
+ "description" :
55
+ """The iSCSI Protocol MIB module.
56
+ Copyright (C) The Internet Society (2006). This version of
57
+ this MIB module is part of RFC 4544; see the RFC itself for
58
+ full legal notices.""",
59
+ "revisions" : (
60
+ {
61
+ "date" : "2006-05-22 00:00",
62
+ "description" :
63
+ """Initial version of the iSCSI Protocol MIB module""",
64
+ },
65
+ ),
66
+ "identity node" : "iscsiMibModule",
67
+ },
68
+
69
+ "imports" : (
70
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
71
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
72
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
73
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
74
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
75
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
76
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
77
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
78
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
79
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
80
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
81
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
82
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
83
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
84
+ {"module" : "SNMPv2-TC", "name" : "AutonomousType"},
85
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
86
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
87
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
88
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
89
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
90
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
91
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
92
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
93
+ ),
94
+
95
+ "typedefs" : {
96
+ "IscsiTransportProtocol" : {
97
+ "basetype" : "Unsigned32",
98
+ "status" : "current",
99
+ "ranges" : [
100
+ {
101
+ "min" : "0",
102
+ "max" : "255"
103
+ },
104
+ ],
105
+ "range" : {
106
+ "min" : "0",
107
+ "max" : "255"
108
+ },
109
+ "format" : "d",
110
+ "description" :
111
+ """This data type is used to define the transport
112
+ protocols that will carry iSCSI PDUs.""",
113
+ "reference" :
114
+ """RFC791, RFC1700
115
+
116
+ The presently known, officially delegated numbers
117
+ can be found at:
118
+ http://www.iana.org/assignments/protocol-numbers""",
119
+ },
120
+ "IscsiDigestMethod" : {
121
+ "basetype" : "Enumeration",
122
+ "status" : "current",
123
+ "none" : {
124
+ "nodetype" : "namednumber",
125
+ "number" : "1"
126
+ },
127
+ "other" : {
128
+ "nodetype" : "namednumber",
129
+ "number" : "2"
130
+ },
131
+ "noDigest" : {
132
+ "nodetype" : "namednumber",
133
+ "number" : "3"
134
+ },
135
+ "crc32c" : {
136
+ "nodetype" : "namednumber",
137
+ "number" : "4"
138
+ },
139
+ "description" :
140
+ """This data type represents the methods possible
141
+ for digest negotiation.
142
+ none - a placeholder for a secondary digest method
143
+ that means only the primary method can be
144
+ used.
145
+ other - a digest method other than those defined below.
146
+ noDigest - does not support digests (will operate without
147
+ a digest (Note: implementations must support
148
+ digests to be compliant with the RFC3720).
149
+ CRC32c - require a CRC32C digest.""",
150
+ "reference" :
151
+ """RFC 3720, Section 12.1, HeaderDigest and DataDigest""",
152
+ },
153
+ "IscsiName" : {
154
+ "basetype" : "OctetString",
155
+ "status" : "current",
156
+ "ranges" : [
157
+ {
158
+ "min" : "0",
159
+ "max" : "0"
160
+ },
161
+ {
162
+ "min" : "16",
163
+ "max" : "223"
164
+ },
165
+ ],
166
+ "range" : {
167
+ "min" : "0",
168
+ "max" : "223"
169
+ },
170
+ "format" : "223t",
171
+ "description" :
172
+ """This data type is used for objects whose value is an
173
+ iSCSI name with the properties described in RFC 3720
174
+ section 3.2.6.1, and encoded as specified in RFC 3720
175
+ section 3.2.6.2. A zero-length string indicates the
176
+ absence of an iSCSI name.""",
177
+ "reference" :
178
+ """RFC 3720, Section 3.2.6, iSCSI Names.""",
179
+ },
180
+ }, # typedefs
181
+
182
+ "nodes" : {
183
+ "iscsiMibModule" : {
184
+ "nodetype" : "node",
185
+ "moduleName" : "ISCSI-MIB",
186
+ "oid" : "1.3.6.1.2.1.142",
187
+ "status" : "current",
188
+ }, # node
189
+ "iscsiNotifications" : {
190
+ "nodetype" : "node",
191
+ "moduleName" : "ISCSI-MIB",
192
+ "oid" : "1.3.6.1.2.1.142.0",
193
+ }, # node
194
+ "iscsiObjects" : {
195
+ "nodetype" : "node",
196
+ "moduleName" : "ISCSI-MIB",
197
+ "oid" : "1.3.6.1.2.1.142.1",
198
+ }, # node
199
+ "iscsiInstance" : {
200
+ "nodetype" : "node",
201
+ "moduleName" : "ISCSI-MIB",
202
+ "oid" : "1.3.6.1.2.1.142.1.1",
203
+ }, # node
204
+ "iscsiInstanceAttributesTable" : {
205
+ "nodetype" : "table",
206
+ "moduleName" : "ISCSI-MIB",
207
+ "oid" : "1.3.6.1.2.1.142.1.1.1",
208
+ "status" : "current",
209
+ "description" :
210
+ """A list of iSCSI instances present on the system.""",
211
+ }, # table
212
+ "iscsiInstanceAttributesEntry" : {
213
+ "nodetype" : "row",
214
+ "moduleName" : "ISCSI-MIB",
215
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1",
216
+ "status" : "current",
217
+ "linkage" : [
218
+ "iscsiInstIndex",
219
+ ],
220
+ "description" :
221
+ """An entry (row) containing management information applicable
222
+ to a particular iSCSI instance.""",
223
+ }, # row
224
+ "iscsiInstIndex" : {
225
+ "nodetype" : "column",
226
+ "moduleName" : "ISCSI-MIB",
227
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.1",
228
+ "status" : "current",
229
+ "syntax" : {
230
+ "type" : {
231
+ "basetype" : "Unsigned32",
232
+ "ranges" : [
233
+ {
234
+ "min" : "1",
235
+ "max" : "4294967295"
236
+ },
237
+ ],
238
+ "range" : {
239
+ "min" : "1",
240
+ "max" : "4294967295"
241
+ },
242
+ },
243
+ },
244
+ "access" : "noaccess",
245
+ "description" :
246
+ """An arbitrary integer used to uniquely identify a particular
247
+ iSCSI instance. This index value must not be modified or
248
+ reused by an agent unless a reboot has occurred. An agent
249
+ should attempt to keep this value persistent across reboots.""",
250
+ }, # column
251
+ "iscsiInstDescr" : {
252
+ "nodetype" : "column",
253
+ "moduleName" : "ISCSI-MIB",
254
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.2",
255
+ "status" : "current",
256
+ "syntax" : {
257
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
258
+ },
259
+ "access" : "readonly",
260
+ "description" :
261
+ """A UTF-8 string, determined by the implementation to
262
+ describe the iSCSI instance. When only a single instance
263
+ is present, this object may be set to the zero-length
264
+ string; with multiple iSCSI instances, it may be used in
265
+ an implementation-dependent manner to describe the purpose
266
+ of the respective instance.""",
267
+ }, # column
268
+ "iscsiInstVersionMin" : {
269
+ "nodetype" : "column",
270
+ "moduleName" : "ISCSI-MIB",
271
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.3",
272
+ "status" : "current",
273
+ "syntax" : {
274
+ "type" : {
275
+ "basetype" : "Unsigned32",
276
+ "ranges" : [
277
+ {
278
+ "min" : "0",
279
+ "max" : "255"
280
+ },
281
+ ],
282
+ "range" : {
283
+ "min" : "0",
284
+ "max" : "255"
285
+ },
286
+ },
287
+ },
288
+ "access" : "readonly",
289
+ "description" :
290
+ """The minimum version number of the iSCSI specification
291
+ such that this iSCSI instance supports this minimum
292
+ value, the maximum value indicated by the corresponding
293
+ instance in iscsiInstVersionMax, and all versions in
294
+ between.""",
295
+ "reference" :
296
+ """RFC 3720, Section 10.12, Login Request""",
297
+ }, # column
298
+ "iscsiInstVersionMax" : {
299
+ "nodetype" : "column",
300
+ "moduleName" : "ISCSI-MIB",
301
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.4",
302
+ "status" : "current",
303
+ "syntax" : {
304
+ "type" : {
305
+ "basetype" : "Unsigned32",
306
+ "ranges" : [
307
+ {
308
+ "min" : "0",
309
+ "max" : "255"
310
+ },
311
+ ],
312
+ "range" : {
313
+ "min" : "0",
314
+ "max" : "255"
315
+ },
316
+ },
317
+ },
318
+ "access" : "readonly",
319
+ "description" :
320
+ """The maximum version number of the iSCSI specification
321
+ such that this iSCSI instance supports this maximum
322
+ value, the minimum value indicated by the corresponding
323
+ instance in iscsiInstVersionMin, and all versions in
324
+ between.""",
325
+ "reference" :
326
+ """RFC 3720, Section 10.12, Login Request""",
327
+ }, # column
328
+ "iscsiInstVendorID" : {
329
+ "nodetype" : "column",
330
+ "moduleName" : "ISCSI-MIB",
331
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.5",
332
+ "status" : "current",
333
+ "syntax" : {
334
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
335
+ },
336
+ "access" : "readonly",
337
+ "description" :
338
+ """A UTF-8 string describing the manufacturer of the
339
+ implementation of this instance.""",
340
+ }, # column
341
+ "iscsiInstVendorVersion" : {
342
+ "nodetype" : "column",
343
+ "moduleName" : "ISCSI-MIB",
344
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.6",
345
+ "status" : "current",
346
+ "syntax" : {
347
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
348
+ },
349
+ "access" : "readonly",
350
+ "description" :
351
+ """A UTF-8 string set by the manufacturer describing the
352
+ version of the implementation of this instance. The
353
+ format of this string is determined solely by the
354
+ manufacturer, and is for informational purposes only.
355
+
356
+
357
+
358
+ It is unrelated to the iSCSI specification version numbers.""",
359
+ }, # column
360
+ "iscsiInstPortalNumber" : {
361
+ "nodetype" : "column",
362
+ "moduleName" : "ISCSI-MIB",
363
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.7",
364
+ "status" : "current",
365
+ "syntax" : {
366
+ "type" : { "module" :"", "name" : "Unsigned32"},
367
+ },
368
+ "access" : "readonly",
369
+ "units" : "transport endpoints",
370
+ "description" :
371
+ """The number of rows in the iscsiPortalAttributesTable
372
+ that are currently associated with this iSCSI instance.""",
373
+ }, # column
374
+ "iscsiInstNodeNumber" : {
375
+ "nodetype" : "column",
376
+ "moduleName" : "ISCSI-MIB",
377
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.8",
378
+ "status" : "current",
379
+ "syntax" : {
380
+ "type" : { "module" :"", "name" : "Unsigned32"},
381
+ },
382
+ "access" : "readonly",
383
+ "units" : "iSCSI nodes",
384
+ "description" :
385
+ """The number of rows in the iscsiNodeAttributesTable
386
+ that are currently associated with this iSCSI instance.""",
387
+ }, # column
388
+ "iscsiInstSessionNumber" : {
389
+ "nodetype" : "column",
390
+ "moduleName" : "ISCSI-MIB",
391
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.9",
392
+ "status" : "current",
393
+ "syntax" : {
394
+ "type" : { "module" :"", "name" : "Unsigned32"},
395
+ },
396
+ "access" : "readonly",
397
+ "units" : "sessions",
398
+ "description" :
399
+ """The number of rows in the iscsiSessionAttributesTable
400
+ that are currently associated with this iSCSI instance.""",
401
+ }, # column
402
+ "iscsiInstSsnFailures" : {
403
+ "nodetype" : "column",
404
+ "moduleName" : "ISCSI-MIB",
405
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.10",
406
+ "status" : "current",
407
+ "syntax" : {
408
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
409
+ },
410
+ "access" : "readonly",
411
+ "units" : "sessions",
412
+ "description" :
413
+ """This object counts the number of times a session belonging
414
+ to this instance has been failed. If this counter has
415
+ suffered a discontinuity, the time of the last discontinuity
416
+ is indicated in iscsiInstDiscontinuityTime.""",
417
+ "reference" :
418
+ """RFC 3720, Section 12.1, HeaderDigest and DataDigest""",
419
+ }, # column
420
+ "iscsiInstLastSsnFailureType" : {
421
+ "nodetype" : "column",
422
+ "moduleName" : "ISCSI-MIB",
423
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.11",
424
+ "status" : "current",
425
+ "syntax" : {
426
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
427
+ },
428
+ "access" : "readonly",
429
+ "description" :
430
+ """The counter object in the iscsiInstSsnErrorStatsTable
431
+ that was incremented when the last session failure occurred.
432
+
433
+ If the reason for failure is not found in the
434
+ iscsiInstSsnErrorStatsTable, the value { 0.0 } is
435
+ used instead.""",
436
+ }, # column
437
+ "iscsiInstLastSsnRmtNodeName" : {
438
+ "nodetype" : "column",
439
+ "moduleName" : "ISCSI-MIB",
440
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.12",
441
+ "status" : "current",
442
+ "syntax" : {
443
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiName"},
444
+ },
445
+ "access" : "readonly",
446
+ "description" :
447
+ """The iSCSI name of the remote node from the failed
448
+ session.""",
449
+ }, # column
450
+ "iscsiInstDiscontinuityTime" : {
451
+ "nodetype" : "column",
452
+ "moduleName" : "ISCSI-MIB",
453
+ "oid" : "1.3.6.1.2.1.142.1.1.1.1.13",
454
+ "status" : "current",
455
+ "syntax" : {
456
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
457
+ },
458
+ "access" : "readonly",
459
+ "description" :
460
+ """The value of SysUpTime on the most recent occasion
461
+ at which any one or more of this instance's counters
462
+ suffered a discontinuity.
463
+
464
+ If no such discontinuities have occurred since the last
465
+ re-initialization of the local management subsystem,
466
+ then this object contains a zero value.""",
467
+ }, # column
468
+ "iscsiInstanceSsnErrorStatsTable" : {
469
+ "nodetype" : "table",
470
+ "moduleName" : "ISCSI-MIB",
471
+ "oid" : "1.3.6.1.2.1.142.1.1.2",
472
+ "status" : "current",
473
+ "description" :
474
+ """Statistics regarding the occurrences of error types
475
+ that result in a session failure.""",
476
+ }, # table
477
+ "iscsiInstanceSsnErrorStatsEntry" : {
478
+ "nodetype" : "row",
479
+ "moduleName" : "ISCSI-MIB",
480
+ "oid" : "1.3.6.1.2.1.142.1.1.2.1",
481
+ "status" : "current",
482
+ "linkage" : [
483
+ { "ISCSI-MIB" : {
484
+ "indexkind" : "augments",
485
+ "relatedNode" : "iscsiInstanceAttributesEntry",
486
+ }},
487
+ ],
488
+ "description" :
489
+ """An entry (row) containing management information applicable
490
+ to a particular iSCSI instance.""",
491
+ }, # row
492
+ "iscsiInstSsnDigestErrors" : {
493
+ "nodetype" : "column",
494
+ "moduleName" : "ISCSI-MIB",
495
+ "oid" : "1.3.6.1.2.1.142.1.1.2.1.1",
496
+ "status" : "current",
497
+ "syntax" : {
498
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
499
+ },
500
+ "access" : "readonly",
501
+ "units" : "sessions",
502
+ "description" :
503
+ """The count of sessions that were failed due to receipt of
504
+ a PDU containing header or data digest errors. If this
505
+ counter has suffered a discontinuity, the time of the last
506
+ discontinuity is indicated in iscsiInstDiscontinuityTime.""",
507
+ "reference" :
508
+ """RFC 3720, Section 6.7, Digest Errors""",
509
+ }, # column
510
+ "iscsiInstSsnCxnTimeoutErrors" : {
511
+ "nodetype" : "column",
512
+ "moduleName" : "ISCSI-MIB",
513
+ "oid" : "1.3.6.1.2.1.142.1.1.2.1.2",
514
+ "status" : "current",
515
+ "syntax" : {
516
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
517
+ },
518
+ "access" : "readonly",
519
+ "units" : "sessions",
520
+ "description" :
521
+ """The count of sessions that were failed due to a sequence
522
+ exceeding a time limit. If this counter has suffered a
523
+ discontinuity, the time of the last discontinuity
524
+ is indicated in iscsiInstDiscontinuityTime.""",
525
+ "reference" :
526
+ """RFC 3720, Section 6.4, Connection Timeout Management""",
527
+ }, # column
528
+ "iscsiInstSsnFormatErrors" : {
529
+ "nodetype" : "column",
530
+ "moduleName" : "ISCSI-MIB",
531
+ "oid" : "1.3.6.1.2.1.142.1.1.2.1.3",
532
+ "status" : "current",
533
+ "syntax" : {
534
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
535
+ },
536
+ "access" : "readonly",
537
+ "units" : "sessions",
538
+ "description" :
539
+ """The count of sessions that were failed due to receipt of
540
+ a PDU that contained a format error. If this counter has
541
+ suffered a discontinuity, the time of the last discontinuity
542
+ is indicated in iscsiInstDiscontinuityTime.""",
543
+ "reference" :
544
+ """RFC 3720, Section 6.6, Format Errors""",
545
+ }, # column
546
+ "iscsiPortal" : {
547
+ "nodetype" : "node",
548
+ "moduleName" : "ISCSI-MIB",
549
+ "oid" : "1.3.6.1.2.1.142.1.2",
550
+ }, # node
551
+ "iscsiPortalAttributesTable" : {
552
+ "nodetype" : "table",
553
+ "moduleName" : "ISCSI-MIB",
554
+ "oid" : "1.3.6.1.2.1.142.1.2.1",
555
+ "status" : "current",
556
+ "description" :
557
+ """A list of transport endpoints (using TCP or another transport
558
+ protocol) used by this iSCSI instance. An iSCSI instance may
559
+ use a portal to listen for incoming connections to its targets,
560
+ to initiate connections to other targets, or both.""",
561
+ }, # table
562
+ "iscsiPortalAttributesEntry" : {
563
+ "nodetype" : "row",
564
+ "moduleName" : "ISCSI-MIB",
565
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1",
566
+ "create" : "true",
567
+ "status" : "current",
568
+ "linkage" : [
569
+ "iscsiInstIndex",
570
+ "iscsiPortalIndex",
571
+ ],
572
+ "description" :
573
+ """An entry (row) containing management information applicable
574
+ to a particular portal instance.""",
575
+ }, # row
576
+ "iscsiPortalIndex" : {
577
+ "nodetype" : "column",
578
+ "moduleName" : "ISCSI-MIB",
579
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.1",
580
+ "status" : "current",
581
+ "syntax" : {
582
+ "type" : {
583
+ "basetype" : "Unsigned32",
584
+ "ranges" : [
585
+ {
586
+ "min" : "1",
587
+ "max" : "4294967295"
588
+ },
589
+ ],
590
+ "range" : {
591
+ "min" : "1",
592
+ "max" : "4294967295"
593
+ },
594
+ },
595
+ },
596
+ "access" : "noaccess",
597
+ "description" :
598
+ """An arbitrary integer used to uniquely identify a particular
599
+ transport endpoint within this iSCSI instance. This index
600
+ value must not be modified or reused by an agent unless a
601
+ reboot has occurred. An agent should attempt to keep this
602
+ value persistent across reboots.""",
603
+ }, # column
604
+ "iscsiPortalRowStatus" : {
605
+ "nodetype" : "column",
606
+ "moduleName" : "ISCSI-MIB",
607
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.2",
608
+ "status" : "current",
609
+ "syntax" : {
610
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
611
+ },
612
+ "access" : "readwrite",
613
+ "description" :
614
+ """This field allows entries to be dynamically added and
615
+ removed from this table via SNMP. When adding a row to
616
+ this table, all non-Index/RowStatus objects must be set.
617
+ When the value of this object is 'active', the values of
618
+ the other objects in this table cannot be changed.
619
+ Rows may be discarded using RowStatus.
620
+
621
+ Note that creating a row in this table will typically
622
+ cause the agent to create one or more rows in
623
+ iscsiTgtPortalAttributesTable and/or
624
+ iscsiIntrPortalAttributesTable.""",
625
+ }, # column
626
+ "iscsiPortalRoles" : {
627
+ "nodetype" : "column",
628
+ "moduleName" : "ISCSI-MIB",
629
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.3",
630
+ "status" : "current",
631
+ "syntax" : {
632
+ "type" : {
633
+ "basetype" : "Bits",
634
+ "targetTypePortal" : {
635
+ "nodetype" : "namednumber",
636
+ "number" : "0"
637
+ },
638
+ "initiatorTypePortal" : {
639
+ "nodetype" : "namednumber",
640
+ "number" : "1"
641
+ },
642
+ },
643
+ },
644
+ "access" : "readwrite",
645
+ "description" :
646
+ """A portal can operate in one or both of two roles:
647
+ as a target portal and/or an initiator portal. If
648
+ the portal will operate in both roles, both bits
649
+ must be set.
650
+
651
+ This object will define a corresponding row that
652
+
653
+
654
+
655
+ will exist or must be created in the
656
+ iscsiTgtPortalAttributesTable, the
657
+ iscsiIntrPortalAttributesTable or both. If the
658
+ targetTypePortal bit is set, one or more corresponding
659
+ iscsiTgtPortalAttributesEntry rows will be found or
660
+ created. If the initiatorTypePortal bit is set,
661
+ one or more corresponding iscsiIntrPortalAttributesEntry
662
+ rows will be found or created. If both bits are set, one
663
+ or more corresponding rows will be found or created in
664
+ one of the above tables.""",
665
+ }, # column
666
+ "iscsiPortalAddrType" : {
667
+ "nodetype" : "column",
668
+ "moduleName" : "ISCSI-MIB",
669
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.4",
670
+ "status" : "current",
671
+ "syntax" : {
672
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
673
+ },
674
+ "access" : "readwrite",
675
+ "default" : "ipv4",
676
+ "description" :
677
+ """The type of Internet Network Address contained in the
678
+ corresponding instance of the iscsiPortalAddr.""",
679
+ }, # column
680
+ "iscsiPortalAddr" : {
681
+ "nodetype" : "column",
682
+ "moduleName" : "ISCSI-MIB",
683
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.5",
684
+ "status" : "current",
685
+ "syntax" : {
686
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
687
+ },
688
+ "access" : "readwrite",
689
+ "description" :
690
+ """The portal's Internet Network Address, of the type
691
+ specified by the object iscsiPortalAddrType. If
692
+ iscsiPortalAddrType has the value 'dns', this address
693
+ gets resolved to an IP address whenever a new iSCSI
694
+ connection is established using this portal.""",
695
+ }, # column
696
+ "iscsiPortalProtocol" : {
697
+ "nodetype" : "column",
698
+ "moduleName" : "ISCSI-MIB",
699
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.6",
700
+ "status" : "current",
701
+ "syntax" : {
702
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiTransportProtocol"},
703
+ },
704
+ "access" : "readwrite",
705
+ "default" : "6",
706
+ "description" :
707
+ """The portal's transport protocol.""",
708
+ }, # column
709
+ "iscsiPortalMaxRecvDataSegLength" : {
710
+ "nodetype" : "column",
711
+ "moduleName" : "ISCSI-MIB",
712
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.7",
713
+ "status" : "current",
714
+ "syntax" : {
715
+ "type" : {
716
+ "basetype" : "Unsigned32",
717
+ "ranges" : [
718
+ {
719
+ "min" : "512",
720
+ "max" : "16777215"
721
+ },
722
+ ],
723
+ "range" : {
724
+ "min" : "512",
725
+ "max" : "16777215"
726
+ },
727
+ },
728
+ },
729
+ "access" : "readwrite",
730
+ "default" : "8192",
731
+ "units" : "bytes",
732
+ "description" :
733
+ """The maximum PDU length this portal can receive.
734
+ This may be constrained by hardware characteristics
735
+ and individual implementations may choose not to
736
+ allow this object to be changed.""",
737
+ "reference" :
738
+ """RFC 3720, Section 12.12, MaxRecvDataSegmentLength""",
739
+ }, # column
740
+ "iscsiPortalPrimaryHdrDigest" : {
741
+ "nodetype" : "column",
742
+ "moduleName" : "ISCSI-MIB",
743
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.8",
744
+ "status" : "current",
745
+ "syntax" : {
746
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiDigestMethod"},
747
+ },
748
+ "access" : "readwrite",
749
+ "default" : "crc32c",
750
+ "description" :
751
+ """The preferred header digest for this portal.""",
752
+ }, # column
753
+ "iscsiPortalPrimaryDataDigest" : {
754
+ "nodetype" : "column",
755
+ "moduleName" : "ISCSI-MIB",
756
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.9",
757
+ "status" : "current",
758
+ "syntax" : {
759
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiDigestMethod"},
760
+ },
761
+ "access" : "readwrite",
762
+ "default" : "crc32c",
763
+ "description" :
764
+ """The preferred data digest method for this portal.""",
765
+ }, # column
766
+ "iscsiPortalSecondaryHdrDigest" : {
767
+ "nodetype" : "column",
768
+ "moduleName" : "ISCSI-MIB",
769
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.10",
770
+ "status" : "current",
771
+ "syntax" : {
772
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiDigestMethod"},
773
+ },
774
+ "access" : "readwrite",
775
+ "default" : "noDigest",
776
+ "description" :
777
+ """An alternate header digest preference for this portal.""",
778
+ }, # column
779
+ "iscsiPortalSecondaryDataDigest" : {
780
+ "nodetype" : "column",
781
+ "moduleName" : "ISCSI-MIB",
782
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.11",
783
+ "status" : "current",
784
+ "syntax" : {
785
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiDigestMethod"},
786
+ },
787
+ "access" : "readwrite",
788
+ "default" : "noDigest",
789
+ "description" :
790
+ """An alternate data digest preference for this portal.""",
791
+ }, # column
792
+ "iscsiPortalRecvMarker" : {
793
+ "nodetype" : "column",
794
+ "moduleName" : "ISCSI-MIB",
795
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.12",
796
+ "status" : "current",
797
+ "syntax" : {
798
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
799
+ },
800
+ "access" : "readwrite",
801
+ "default" : "false",
802
+ "description" :
803
+ """This object indicates whether or not this portal will
804
+ request markers in its incoming data stream.""",
805
+ "reference" :
806
+ """RFC 3720, Appendix A.""",
807
+ }, # column
808
+ "iscsiPortalStorageType" : {
809
+ "nodetype" : "column",
810
+ "moduleName" : "ISCSI-MIB",
811
+ "oid" : "1.3.6.1.2.1.142.1.2.1.1.13",
812
+ "status" : "current",
813
+ "syntax" : {
814
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
815
+ },
816
+ "access" : "readwrite",
817
+ "default" : "nonVolatile",
818
+ "description" :
819
+ """The storage type for this row. Rows in this table that were
820
+ created through an external process may have a storage type of
821
+ readOnly or permanent.
822
+
823
+ Conceptual rows having the value 'permanent' need not
824
+ allow write access to any columnar objects in the row.""",
825
+ }, # column
826
+ "iscsiTargetPortal" : {
827
+ "nodetype" : "node",
828
+ "moduleName" : "ISCSI-MIB",
829
+ "oid" : "1.3.6.1.2.1.142.1.3",
830
+ }, # node
831
+ "iscsiTgtPortalAttributesTable" : {
832
+ "nodetype" : "table",
833
+ "moduleName" : "ISCSI-MIB",
834
+ "oid" : "1.3.6.1.2.1.142.1.3.1",
835
+ "status" : "current",
836
+ "description" :
837
+ """A list of transport endpoints (using TCP or another transport
838
+ protocol) on which this iSCSI instance listens for incoming
839
+ connections to its targets.""",
840
+ }, # table
841
+ "iscsiTgtPortalAttributesEntry" : {
842
+ "nodetype" : "row",
843
+ "moduleName" : "ISCSI-MIB",
844
+ "oid" : "1.3.6.1.2.1.142.1.3.1.1",
845
+ "status" : "current",
846
+ "linkage" : [
847
+ "iscsiInstIndex",
848
+ "iscsiPortalIndex",
849
+ "iscsiTgtPortalNodeIndexOrZero",
850
+ ],
851
+ "description" :
852
+ """An entry (row) containing management information applicable
853
+ to a particular portal instance that is used to listen for
854
+ incoming connections to local targets. One or more rows in
855
+ this table is populated by the agent for each
856
+
857
+
858
+
859
+ iscsiPortalAttributesEntry row that has the bit
860
+ targetTypePortal set in its iscsiPortalRoles column.""",
861
+ }, # row
862
+ "iscsiTgtPortalNodeIndexOrZero" : {
863
+ "nodetype" : "column",
864
+ "moduleName" : "ISCSI-MIB",
865
+ "oid" : "1.3.6.1.2.1.142.1.3.1.1.1",
866
+ "status" : "current",
867
+ "syntax" : {
868
+ "type" : {
869
+ "basetype" : "Unsigned32",
870
+ "ranges" : [
871
+ {
872
+ "min" : "0",
873
+ "max" : "4294967295"
874
+ },
875
+ ],
876
+ "range" : {
877
+ "min" : "0",
878
+ "max" : "4294967295"
879
+ },
880
+ },
881
+ },
882
+ "access" : "noaccess",
883
+ "description" :
884
+ """An arbitrary integer used to uniquely identify a
885
+ particular node within an iSCSI instance present
886
+ on the local system.
887
+
888
+ For implementations where each {portal, node} tuple
889
+ can have a different portal tag, this value will
890
+ map to the iscsiNodeIndex.
891
+
892
+ For implementations where the portal tag is the
893
+ same for a given portal regardless of which node
894
+ is using the portal, the value 0 (zero) is used.""",
895
+ }, # column
896
+ "iscsiTgtPortalPort" : {
897
+ "nodetype" : "column",
898
+ "moduleName" : "ISCSI-MIB",
899
+ "oid" : "1.3.6.1.2.1.142.1.3.1.1.2",
900
+ "status" : "current",
901
+ "syntax" : {
902
+ "type" : {
903
+ "basetype" : "Unsigned32",
904
+ "parent module" : {
905
+ "name" : "INET-ADDRESS-MIB",
906
+ "type" : "InetPortNumber",
907
+ },
908
+ "ranges" : [
909
+ {
910
+ "min" : "1",
911
+ "max" : "65535"
912
+ },
913
+ ],
914
+ "range" : {
915
+ "min" : "1",
916
+ "max" : "65535"
917
+ },
918
+ },
919
+ },
920
+ "access" : "readwrite",
921
+ "description" :
922
+ """The portal's transport protocol port number on which the
923
+ portal listens for incoming iSCSI connections when the
924
+ portal is used as a target portal. This object's storage
925
+ type is specified in iscsiPortalStorageType.""",
926
+ }, # column
927
+ "iscsiTgtPortalTag" : {
928
+ "nodetype" : "column",
929
+ "moduleName" : "ISCSI-MIB",
930
+ "oid" : "1.3.6.1.2.1.142.1.3.1.1.3",
931
+ "status" : "current",
932
+ "syntax" : {
933
+ "type" : {
934
+ "basetype" : "Unsigned32",
935
+ "ranges" : [
936
+ {
937
+ "min" : "1",
938
+ "max" : "65535"
939
+ },
940
+ ],
941
+ "range" : {
942
+ "min" : "1",
943
+ "max" : "65535"
944
+ },
945
+ },
946
+ },
947
+ "access" : "readwrite",
948
+ "description" :
949
+ """The portal's aggregation tag when the portal is used as
950
+ a target portal. Multiple-connection sessions may
951
+
952
+
953
+
954
+ be aggregated over portals sharing an identical
955
+ aggregation tag. This object's storage type is
956
+ specified in iscsiPortalStorageType.""",
957
+ "reference" :
958
+ """RFC 3720, Section 3.4.1, iSCSI Architectural Model""",
959
+ }, # column
960
+ "iscsiInitiatorPortal" : {
961
+ "nodetype" : "node",
962
+ "moduleName" : "ISCSI-MIB",
963
+ "oid" : "1.3.6.1.2.1.142.1.4",
964
+ }, # node
965
+ "iscsiIntrPortalAttributesTable" : {
966
+ "nodetype" : "table",
967
+ "moduleName" : "ISCSI-MIB",
968
+ "oid" : "1.3.6.1.2.1.142.1.4.1",
969
+ "status" : "current",
970
+ "description" :
971
+ """A list of Internet Network Addresses (using TCP or another
972
+ transport protocol) from which this iSCSI instance may
973
+ initiate connections to other targets.""",
974
+ }, # table
975
+ "iscsiIntrPortalAttributesEntry" : {
976
+ "nodetype" : "row",
977
+ "moduleName" : "ISCSI-MIB",
978
+ "oid" : "1.3.6.1.2.1.142.1.4.1.1",
979
+ "status" : "current",
980
+ "linkage" : [
981
+ "iscsiInstIndex",
982
+ "iscsiPortalIndex",
983
+ "iscsiIntrPortalNodeIndexOrZero",
984
+ ],
985
+ "description" :
986
+ """An entry (row) containing management information applicable
987
+ to a particular portal instance that is used to initiate
988
+ connections to iSCSI targets. One or more rows in
989
+ this table is populated by the agent for each
990
+ iscsiPortalAttributesEntry row that has the bit
991
+ initiatorTypePortal set in its iscsiPortalRoles column.""",
992
+ }, # row
993
+ "iscsiIntrPortalNodeIndexOrZero" : {
994
+ "nodetype" : "column",
995
+ "moduleName" : "ISCSI-MIB",
996
+ "oid" : "1.3.6.1.2.1.142.1.4.1.1.1",
997
+ "status" : "current",
998
+ "syntax" : {
999
+ "type" : {
1000
+ "basetype" : "Unsigned32",
1001
+ "ranges" : [
1002
+ {
1003
+ "min" : "0",
1004
+ "max" : "4294967295"
1005
+ },
1006
+ ],
1007
+ "range" : {
1008
+ "min" : "0",
1009
+ "max" : "4294967295"
1010
+ },
1011
+ },
1012
+ },
1013
+ "access" : "noaccess",
1014
+ "description" :
1015
+ """An arbitrary integer used to uniquely identify a
1016
+ particular node within an iSCSI instance present
1017
+ on the local system.
1018
+
1019
+ For implementations where each {portal, node} tuple
1020
+ can have a different portal tag, this value will
1021
+ map to the iscsiNodeIndex.
1022
+
1023
+ For implementations where the portal tag is the
1024
+ same for a given portal regardless of which node
1025
+ is using the portal, the value 0 (zero) is used.""",
1026
+ }, # column
1027
+ "iscsiIntrPortalTag" : {
1028
+ "nodetype" : "column",
1029
+ "moduleName" : "ISCSI-MIB",
1030
+ "oid" : "1.3.6.1.2.1.142.1.4.1.1.2",
1031
+ "status" : "current",
1032
+ "syntax" : {
1033
+ "type" : {
1034
+ "basetype" : "Unsigned32",
1035
+ "ranges" : [
1036
+ {
1037
+ "min" : "1",
1038
+ "max" : "65535"
1039
+ },
1040
+ ],
1041
+ "range" : {
1042
+ "min" : "1",
1043
+ "max" : "65535"
1044
+ },
1045
+ },
1046
+ },
1047
+ "access" : "readwrite",
1048
+ "description" :
1049
+ """The portal's aggregation tag when the portal is used as
1050
+ an initiator portal. Multiple-connection sessions may
1051
+ be aggregated over portals sharing an identical
1052
+ aggregation tag. This object's storage type is
1053
+ specified in iscsiPortalStorageType.""",
1054
+ "reference" :
1055
+ """RFC 3720, Section 3.4.1, iSCSI Architectural Model""",
1056
+ }, # column
1057
+ "iscsiNode" : {
1058
+ "nodetype" : "node",
1059
+ "moduleName" : "ISCSI-MIB",
1060
+ "oid" : "1.3.6.1.2.1.142.1.5",
1061
+ }, # node
1062
+ "iscsiNodeAttributesTable" : {
1063
+ "nodetype" : "table",
1064
+ "moduleName" : "ISCSI-MIB",
1065
+ "oid" : "1.3.6.1.2.1.142.1.5.1",
1066
+ "status" : "current",
1067
+ "description" :
1068
+ """A list of iSCSI nodes belonging to each iSCSI instance
1069
+ present on the local system. An iSCSI node can act as
1070
+ an initiator, a target, or both.""",
1071
+ }, # table
1072
+ "iscsiNodeAttributesEntry" : {
1073
+ "nodetype" : "row",
1074
+ "moduleName" : "ISCSI-MIB",
1075
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1",
1076
+ "status" : "current",
1077
+ "linkage" : [
1078
+ "iscsiInstIndex",
1079
+ "iscsiNodeIndex",
1080
+ ],
1081
+ "description" :
1082
+ """An entry (row) containing management information applicable
1083
+ to a particular iSCSI node.""",
1084
+ }, # row
1085
+ "iscsiNodeIndex" : {
1086
+ "nodetype" : "column",
1087
+ "moduleName" : "ISCSI-MIB",
1088
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.1",
1089
+ "status" : "current",
1090
+ "syntax" : {
1091
+ "type" : {
1092
+ "basetype" : "Unsigned32",
1093
+ "ranges" : [
1094
+ {
1095
+ "min" : "1",
1096
+ "max" : "4294967295"
1097
+ },
1098
+ ],
1099
+ "range" : {
1100
+ "min" : "1",
1101
+ "max" : "4294967295"
1102
+ },
1103
+ },
1104
+ },
1105
+ "access" : "noaccess",
1106
+ "description" :
1107
+ """An arbitrary integer used to uniquely identify a particular
1108
+ node within an iSCSI instance. This index value must not be
1109
+ modified or reused by an agent unless a reboot has occurred.
1110
+ An agent should attempt to keep this value persistent across
1111
+ reboots.""",
1112
+ }, # column
1113
+ "iscsiNodeName" : {
1114
+ "nodetype" : "column",
1115
+ "moduleName" : "ISCSI-MIB",
1116
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.2",
1117
+ "status" : "current",
1118
+ "syntax" : {
1119
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiName"},
1120
+ },
1121
+ "access" : "readonly",
1122
+ "description" :
1123
+ """This node's iSCSI name, which is independent of the location
1124
+ of the node, and can be resolved into a set of addresses
1125
+ through various discovery services.""",
1126
+ }, # column
1127
+ "iscsiNodeAlias" : {
1128
+ "nodetype" : "column",
1129
+ "moduleName" : "ISCSI-MIB",
1130
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.3",
1131
+ "status" : "current",
1132
+ "syntax" : {
1133
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1134
+ },
1135
+ "access" : "readonly",
1136
+ "description" :
1137
+ """A character string that is a human-readable name or
1138
+ description of the iSCSI node. If configured, this alias
1139
+ may be communicated to the initiator or target node at
1140
+ the remote end of the connection during a Login Request
1141
+ or Response message. This string is not used as an
1142
+ identifier, but can be displayed by the system's user
1143
+ interface in a list of initiators and/or targets to
1144
+ which it is connected.
1145
+
1146
+ If no alias exists, the value is a zero-length string.""",
1147
+ "reference" :
1148
+ """RFC 3720, Section 12.6, TargetAlias, 12.7, InitiatorAlias""",
1149
+ }, # column
1150
+ "iscsiNodeRoles" : {
1151
+ "nodetype" : "column",
1152
+ "moduleName" : "ISCSI-MIB",
1153
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.4",
1154
+ "status" : "current",
1155
+ "syntax" : {
1156
+ "type" : {
1157
+ "basetype" : "Bits",
1158
+ "targetTypeNode" : {
1159
+ "nodetype" : "namednumber",
1160
+ "number" : "0"
1161
+ },
1162
+ "initiatorTypeNode" : {
1163
+ "nodetype" : "namednumber",
1164
+ "number" : "1"
1165
+ },
1166
+ },
1167
+ },
1168
+ "access" : "readonly",
1169
+ "description" :
1170
+ """A node can operate in one or both of two roles:
1171
+ a target role and/or an initiator role. If the node
1172
+ will operate in both roles, both bits must be set.
1173
+
1174
+ This object will also define the corresponding rows that
1175
+ will exist in the iscsiTargetAttributesTable, the
1176
+ iscsiInitiatorAttributesTable or both. If the
1177
+ targetTypeNode bit is set, there will be a corresponding
1178
+ iscsiTargetAttributesEntry. If the initiatorTypeNode bit
1179
+ is set, there will be a corresponding
1180
+ iscsiInitiatorAttributesEntry. If both bits are set,
1181
+ there will be a corresponding iscsiTgtPortalAttributesEntry
1182
+ and iscsiPortalAttributesEntry.""",
1183
+ }, # column
1184
+ "iscsiNodeTransportType" : {
1185
+ "nodetype" : "column",
1186
+ "moduleName" : "ISCSI-MIB",
1187
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.5",
1188
+ "status" : "current",
1189
+ "syntax" : {
1190
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1191
+ },
1192
+ "access" : "readonly",
1193
+ "description" :
1194
+ """A pointer to the corresponding row in the appropriate
1195
+
1196
+
1197
+
1198
+ table for this SCSI transport, thereby allowing management
1199
+ stations to locate the SCSI-level device that is represented
1200
+ by this iscsiNode. For example, it will usually point to the
1201
+ corresponding scsiTrnspt object in the SCSI MIB module.
1202
+
1203
+ If no corresponding row exists, the value 0.0 must be
1204
+ used to indicate this.""",
1205
+ "reference" :
1206
+ """SCSI-MIB""",
1207
+ }, # column
1208
+ "iscsiNodeInitialR2T" : {
1209
+ "nodetype" : "column",
1210
+ "moduleName" : "ISCSI-MIB",
1211
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.6",
1212
+ "status" : "current",
1213
+ "syntax" : {
1214
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1215
+ },
1216
+ "access" : "readonly",
1217
+ "description" :
1218
+ """This object indicates the InitialR2T preference for this
1219
+ node:
1220
+ true = YES,
1221
+ false = will try to negotiate NO, will accept YES """,
1222
+ "reference" :
1223
+ """RFC 3720, Section 12.10, InitialR2T""",
1224
+ }, # column
1225
+ "iscsiNodeImmediateData" : {
1226
+ "nodetype" : "column",
1227
+ "moduleName" : "ISCSI-MIB",
1228
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.7",
1229
+ "status" : "current",
1230
+ "syntax" : {
1231
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1232
+ },
1233
+ "access" : "readwrite",
1234
+ "default" : "true",
1235
+ "description" :
1236
+ """This object indicates ImmediateData preference for this
1237
+ node:
1238
+ true = YES (but will accept NO),
1239
+ false = NO """,
1240
+ "reference" :
1241
+ """RFC 3720, Section 12.11, ImmediateData""",
1242
+ }, # column
1243
+ "iscsiNodeMaxOutstandingR2T" : {
1244
+ "nodetype" : "column",
1245
+ "moduleName" : "ISCSI-MIB",
1246
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.8",
1247
+ "status" : "current",
1248
+ "syntax" : {
1249
+ "type" : {
1250
+ "basetype" : "Unsigned32",
1251
+ "ranges" : [
1252
+ {
1253
+ "min" : "1",
1254
+ "max" : "65535"
1255
+ },
1256
+ ],
1257
+ "range" : {
1258
+ "min" : "1",
1259
+ "max" : "65535"
1260
+ },
1261
+ },
1262
+ },
1263
+ "access" : "readwrite",
1264
+ "default" : "1",
1265
+ "units" : "R2Ts",
1266
+ "description" :
1267
+ """Maximum number of outstanding requests-to-transmit (R2Ts)
1268
+ allowed per iSCSI task.""",
1269
+ "reference" :
1270
+ """RFC 3720, Section 12.17, MaxOutstandingR2T""",
1271
+ }, # column
1272
+ "iscsiNodeFirstBurstLength" : {
1273
+ "nodetype" : "column",
1274
+ "moduleName" : "ISCSI-MIB",
1275
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.9",
1276
+ "status" : "current",
1277
+ "syntax" : {
1278
+ "type" : {
1279
+ "basetype" : "Unsigned32",
1280
+ "ranges" : [
1281
+ {
1282
+ "min" : "512",
1283
+ "max" : "16777215"
1284
+ },
1285
+ ],
1286
+ "range" : {
1287
+ "min" : "512",
1288
+ "max" : "16777215"
1289
+ },
1290
+ },
1291
+ },
1292
+ "access" : "readwrite",
1293
+ "default" : "65536",
1294
+ "units" : "bytes",
1295
+ "description" :
1296
+ """The maximum length (bytes) supported for unsolicited data
1297
+ to/from this node.""",
1298
+ "reference" :
1299
+ """RFC 3720, Section 12.14, FirstBurstLength""",
1300
+ }, # column
1301
+ "iscsiNodeMaxBurstLength" : {
1302
+ "nodetype" : "column",
1303
+ "moduleName" : "ISCSI-MIB",
1304
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.10",
1305
+ "status" : "current",
1306
+ "syntax" : {
1307
+ "type" : {
1308
+ "basetype" : "Unsigned32",
1309
+ "ranges" : [
1310
+ {
1311
+ "min" : "512",
1312
+ "max" : "16777215"
1313
+ },
1314
+ ],
1315
+ "range" : {
1316
+ "min" : "512",
1317
+ "max" : "16777215"
1318
+ },
1319
+ },
1320
+ },
1321
+ "access" : "readwrite",
1322
+ "default" : "262144",
1323
+ "units" : "bytes",
1324
+ "description" :
1325
+ """The maximum number of bytes that can be sent within
1326
+ a single sequence of Data-In or Data-Out PDUs.""",
1327
+ "reference" :
1328
+ """RFC 3720, Section 12.13, MaxBurstLength""",
1329
+ }, # column
1330
+ "iscsiNodeMaxConnections" : {
1331
+ "nodetype" : "column",
1332
+ "moduleName" : "ISCSI-MIB",
1333
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.11",
1334
+ "status" : "current",
1335
+ "syntax" : {
1336
+ "type" : {
1337
+ "basetype" : "Unsigned32",
1338
+ "ranges" : [
1339
+ {
1340
+ "min" : "1",
1341
+ "max" : "65535"
1342
+ },
1343
+ ],
1344
+ "range" : {
1345
+ "min" : "1",
1346
+ "max" : "65535"
1347
+ },
1348
+ },
1349
+ },
1350
+ "access" : "readwrite",
1351
+ "default" : "1",
1352
+ "units" : "connections",
1353
+ "description" :
1354
+ """The maximum number of connections allowed in each
1355
+ session to and/or from this node.""",
1356
+ "reference" :
1357
+ """RFC 3720, Section 12.2, MaxConnections""",
1358
+ }, # column
1359
+ "iscsiNodeDataSequenceInOrder" : {
1360
+ "nodetype" : "column",
1361
+ "moduleName" : "ISCSI-MIB",
1362
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.12",
1363
+ "status" : "current",
1364
+ "syntax" : {
1365
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1366
+ },
1367
+ "access" : "readwrite",
1368
+ "default" : "true",
1369
+ "description" :
1370
+ """The DataSequenceInOrder preference of this node.
1371
+
1372
+
1373
+
1374
+ False (=No) indicates that iSCSI data PDU sequences may
1375
+ be transferred in any order. True (=Yes) indicates that
1376
+ data PDU sequences must be transferred using
1377
+ continuously increasing offsets, except during
1378
+ error recovery.""",
1379
+ "reference" :
1380
+ """RFC 3720, Section 12.19, DataSequenceInOrder""",
1381
+ }, # column
1382
+ "iscsiNodeDataPDUInOrder" : {
1383
+ "nodetype" : "column",
1384
+ "moduleName" : "ISCSI-MIB",
1385
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.13",
1386
+ "status" : "current",
1387
+ "syntax" : {
1388
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1389
+ },
1390
+ "access" : "readwrite",
1391
+ "default" : "true",
1392
+ "description" :
1393
+ """The DataPDUInOrder preference of this node.
1394
+ False (=No) indicates that iSCSI data PDUs within sequences
1395
+ may be in any order. True (=Yes) indicates that data PDUs
1396
+ within sequences must be at continuously increasing
1397
+ addresses, with no gaps or overlay between PDUs.""",
1398
+ "reference" :
1399
+ """RFC 3720, Section 12.18, DataPDUInOrder""",
1400
+ }, # column
1401
+ "iscsiNodeDefaultTime2Wait" : {
1402
+ "nodetype" : "column",
1403
+ "moduleName" : "ISCSI-MIB",
1404
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.14",
1405
+ "status" : "current",
1406
+ "syntax" : {
1407
+ "type" : {
1408
+ "basetype" : "Unsigned32",
1409
+ "ranges" : [
1410
+ {
1411
+ "min" : "0",
1412
+ "max" : "3600"
1413
+ },
1414
+ ],
1415
+ "range" : {
1416
+ "min" : "0",
1417
+ "max" : "3600"
1418
+ },
1419
+ },
1420
+ },
1421
+ "access" : "readwrite",
1422
+ "default" : "2",
1423
+ "units" : "seconds",
1424
+ "description" :
1425
+ """The DefaultTime2Wait preference of this node. This is the
1426
+ minimum time, in seconds, to wait before attempting an
1427
+ explicit/implicit logout or active iSCSI task reassignment
1428
+ after an unexpected connection termination or a connection
1429
+ reset.""",
1430
+ "reference" :
1431
+ """RFC 3720, Section 12.15, DefaultTime2Wait""",
1432
+ }, # column
1433
+ "iscsiNodeDefaultTime2Retain" : {
1434
+ "nodetype" : "column",
1435
+ "moduleName" : "ISCSI-MIB",
1436
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.15",
1437
+ "status" : "current",
1438
+ "syntax" : {
1439
+ "type" : {
1440
+ "basetype" : "Unsigned32",
1441
+ "ranges" : [
1442
+ {
1443
+ "min" : "0",
1444
+ "max" : "3600"
1445
+ },
1446
+ ],
1447
+ "range" : {
1448
+ "min" : "0",
1449
+ "max" : "3600"
1450
+ },
1451
+ },
1452
+ },
1453
+ "access" : "readwrite",
1454
+ "default" : "20",
1455
+ "units" : "seconds",
1456
+ "description" :
1457
+ """The DefaultTime2Retain preference of this node. This is
1458
+
1459
+
1460
+
1461
+ the maximum time, in seconds after an initial wait
1462
+ (Time2Wait), before which an active iSCSI task reassignment
1463
+ is still possible after an unexpected connection termination
1464
+ or a connection reset.""",
1465
+ "reference" :
1466
+ """RFC 3720, Section 12.16, DefaultTime2Retain""",
1467
+ }, # column
1468
+ "iscsiNodeErrorRecoveryLevel" : {
1469
+ "nodetype" : "column",
1470
+ "moduleName" : "ISCSI-MIB",
1471
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.16",
1472
+ "status" : "current",
1473
+ "syntax" : {
1474
+ "type" : {
1475
+ "basetype" : "Unsigned32",
1476
+ "ranges" : [
1477
+ {
1478
+ "min" : "0",
1479
+ "max" : "255"
1480
+ },
1481
+ ],
1482
+ "range" : {
1483
+ "min" : "0",
1484
+ "max" : "255"
1485
+ },
1486
+ },
1487
+ },
1488
+ "access" : "readwrite",
1489
+ "default" : "0",
1490
+ "description" :
1491
+ """The ErrorRecoveryLevel preference of this node.
1492
+ Currently, only 0-2 are valid.
1493
+
1494
+ This object is designed to accommodate future error recovery
1495
+ levels.
1496
+
1497
+ Higher error recovery levels imply support in addition to
1498
+ support for the lower error level functions. In other words,
1499
+ error level 2 implies support for levels 0-1, since those
1500
+ functions are subsets of error level 2.""",
1501
+ "reference" :
1502
+ """RFC 3720, Section 12.20, ErrorRecoveryLevel""",
1503
+ }, # column
1504
+ "iscsiNodeDiscontinuityTime" : {
1505
+ "nodetype" : "column",
1506
+ "moduleName" : "ISCSI-MIB",
1507
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.17",
1508
+ "status" : "current",
1509
+ "syntax" : {
1510
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1511
+ },
1512
+ "access" : "readonly",
1513
+ "description" :
1514
+ """The value of SysUpTime on the most recent occasion
1515
+ at which any one or more of this node's counters
1516
+ suffered a discontinuity.
1517
+
1518
+ If no such discontinuities have occurred since the last
1519
+ re-initialization of the local management subsystem,
1520
+ then this object contains a zero value.""",
1521
+ }, # column
1522
+ "iscsiNodeStorageType" : {
1523
+ "nodetype" : "column",
1524
+ "moduleName" : "ISCSI-MIB",
1525
+ "oid" : "1.3.6.1.2.1.142.1.5.1.1.18",
1526
+ "status" : "current",
1527
+ "syntax" : {
1528
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1529
+ },
1530
+ "access" : "readwrite",
1531
+ "default" : "volatile",
1532
+ "description" :
1533
+ """The storage type for all read-write objects within this
1534
+ row. Rows in this table are always created via an
1535
+ external process, and may have a storage type of readOnly
1536
+ or permanent. Conceptual rows having the value 'permanent'
1537
+ need not allow write access to any columnar objects in
1538
+ the row.
1539
+
1540
+ If this object has the value 'volatile', modifications
1541
+ to read-write objects in this row are not persistent
1542
+ across reboots. If this object has the value
1543
+ 'nonVolatile', modifications to objects in this row
1544
+ are persistent.
1545
+
1546
+ An implementation may choose to allow this object
1547
+ to be set to either 'nonVolatile' or 'volatile',
1548
+ allowing the management application to choose this
1549
+ behavior.""",
1550
+ }, # column
1551
+ "iscsiTarget" : {
1552
+ "nodetype" : "node",
1553
+ "moduleName" : "ISCSI-MIB",
1554
+ "oid" : "1.3.6.1.2.1.142.1.6",
1555
+ }, # node
1556
+ "iscsiTargetAttributesTable" : {
1557
+ "nodetype" : "table",
1558
+ "moduleName" : "ISCSI-MIB",
1559
+ "oid" : "1.3.6.1.2.1.142.1.6.1",
1560
+ "status" : "current",
1561
+ "description" :
1562
+ """A list of iSCSI nodes that can take on a target role,
1563
+ belonging to each iSCSI instance present on the local
1564
+ system.""",
1565
+ }, # table
1566
+ "iscsiTargetAttributesEntry" : {
1567
+ "nodetype" : "row",
1568
+ "moduleName" : "ISCSI-MIB",
1569
+ "oid" : "1.3.6.1.2.1.142.1.6.1.1",
1570
+ "status" : "current",
1571
+ "linkage" : [
1572
+ "iscsiInstIndex",
1573
+ "iscsiNodeIndex",
1574
+ ],
1575
+ "description" :
1576
+ """An entry (row) containing management information applicable
1577
+ to a particular node that can take on a target role.""",
1578
+ }, # row
1579
+ "iscsiTgtLoginFailures" : {
1580
+ "nodetype" : "column",
1581
+ "moduleName" : "ISCSI-MIB",
1582
+ "oid" : "1.3.6.1.2.1.142.1.6.1.1.1",
1583
+ "status" : "current",
1584
+ "syntax" : {
1585
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1586
+ },
1587
+ "access" : "readonly",
1588
+ "units" : "failed login attempts",
1589
+ "description" :
1590
+ """This object counts the number of times a login attempt to this
1591
+ local target has failed.
1592
+ If this counter has suffered a discontinuity, the time of the
1593
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
1594
+ "reference" :
1595
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
1596
+ }, # column
1597
+ "iscsiTgtLastFailureTime" : {
1598
+ "nodetype" : "column",
1599
+ "moduleName" : "ISCSI-MIB",
1600
+ "oid" : "1.3.6.1.2.1.142.1.6.1.1.2",
1601
+ "status" : "current",
1602
+ "syntax" : {
1603
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1604
+ },
1605
+ "access" : "readonly",
1606
+ "description" :
1607
+ """The timestamp of the most recent failure of a login attempt
1608
+ to this target. A value of zero indicates that no such
1609
+ failures have occurred since the last system boot.""",
1610
+ }, # column
1611
+ "iscsiTgtLastFailureType" : {
1612
+ "nodetype" : "column",
1613
+ "moduleName" : "ISCSI-MIB",
1614
+ "oid" : "1.3.6.1.2.1.142.1.6.1.1.3",
1615
+ "status" : "current",
1616
+ "syntax" : {
1617
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
1618
+ },
1619
+ "access" : "readonly",
1620
+ "description" :
1621
+ """The type of the most recent failure of a login attempt
1622
+ to this target, represented as the OID of the counter
1623
+ object in iscsiTargetLoginStatsTable for which the
1624
+ relevant instance was incremented. A value of 0.0
1625
+ indicates a type that is not represented by any of
1626
+ the counters in iscsiTargetLoginStatsTable.""",
1627
+ }, # column
1628
+ "iscsiTgtLastIntrFailureName" : {
1629
+ "nodetype" : "column",
1630
+ "moduleName" : "ISCSI-MIB",
1631
+ "oid" : "1.3.6.1.2.1.142.1.6.1.1.4",
1632
+ "status" : "current",
1633
+ "syntax" : {
1634
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiName"},
1635
+ },
1636
+ "access" : "readonly",
1637
+ "description" :
1638
+ """The iSCSI name of the initiator that failed the last
1639
+ login attempt.""",
1640
+ }, # column
1641
+ "iscsiTgtLastIntrFailureAddrType" : {
1642
+ "nodetype" : "column",
1643
+ "moduleName" : "ISCSI-MIB",
1644
+ "oid" : "1.3.6.1.2.1.142.1.6.1.1.5",
1645
+ "status" : "current",
1646
+ "syntax" : {
1647
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1648
+ },
1649
+ "access" : "readonly",
1650
+ "description" :
1651
+ """The type of Internet Network Address contained in the
1652
+ corresponding instance of the iscsiTgtLastIntrFailureAddr.
1653
+ The value 'dns' is not allowed.""",
1654
+ }, # column
1655
+ "iscsiTgtLastIntrFailureAddr" : {
1656
+ "nodetype" : "column",
1657
+ "moduleName" : "ISCSI-MIB",
1658
+ "oid" : "1.3.6.1.2.1.142.1.6.1.1.6",
1659
+ "status" : "current",
1660
+ "syntax" : {
1661
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1662
+ },
1663
+ "access" : "readonly",
1664
+ "description" :
1665
+ """An Internet Network Address, of the type specified by
1666
+ the object iscsiTgtLastIntrFailureAddrType, giving the
1667
+ host address of the initiator that failed the last login
1668
+ attempt.""",
1669
+ }, # column
1670
+ "iscsiTargetLoginStatsTable" : {
1671
+ "nodetype" : "table",
1672
+ "moduleName" : "ISCSI-MIB",
1673
+ "oid" : "1.3.6.1.2.1.142.1.6.2",
1674
+ "status" : "current",
1675
+ "description" :
1676
+ """A table of counters that keep a record of the results
1677
+ of initiators' login attempts to this target.""",
1678
+ }, # table
1679
+ "iscsiTargetLoginStatsEntry" : {
1680
+ "nodetype" : "row",
1681
+ "moduleName" : "ISCSI-MIB",
1682
+ "oid" : "1.3.6.1.2.1.142.1.6.2.1",
1683
+ "status" : "current",
1684
+ "linkage" : [
1685
+ { "ISCSI-MIB" : {
1686
+ "indexkind" : "augments",
1687
+ "relatedNode" : "iscsiTargetAttributesEntry",
1688
+ }},
1689
+ ],
1690
+ "description" :
1691
+ """An entry (row) containing counters for each result of
1692
+ a login attempt to this target.""",
1693
+ }, # row
1694
+ "iscsiTgtLoginAccepts" : {
1695
+ "nodetype" : "column",
1696
+ "moduleName" : "ISCSI-MIB",
1697
+ "oid" : "1.3.6.1.2.1.142.1.6.2.1.1",
1698
+ "status" : "current",
1699
+ "syntax" : {
1700
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1701
+ },
1702
+ "access" : "readonly",
1703
+ "units" : "successful logins",
1704
+ "description" :
1705
+ """The count of Login Response PDUs with status
1706
+ 0x0000, Accept Login, transmitted by this
1707
+ target.
1708
+ If this counter has suffered a discontinuity, the time of the
1709
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
1710
+ "reference" :
1711
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
1712
+ }, # column
1713
+ "iscsiTgtLoginOtherFails" : {
1714
+ "nodetype" : "column",
1715
+ "moduleName" : "ISCSI-MIB",
1716
+ "oid" : "1.3.6.1.2.1.142.1.6.2.1.2",
1717
+ "status" : "current",
1718
+ "syntax" : {
1719
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1720
+ },
1721
+ "access" : "readonly",
1722
+ "units" : "failed logins",
1723
+ "description" :
1724
+ """The number of Login Response PDUs that were transmitted
1725
+ by this target and that were not counted by any other
1726
+ object in the row.
1727
+ If this counter has suffered a discontinuity, the time of the
1728
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
1729
+ "reference" :
1730
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
1731
+ }, # column
1732
+ "iscsiTgtLoginRedirects" : {
1733
+ "nodetype" : "column",
1734
+ "moduleName" : "ISCSI-MIB",
1735
+ "oid" : "1.3.6.1.2.1.142.1.6.2.1.3",
1736
+ "status" : "current",
1737
+ "syntax" : {
1738
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1739
+ },
1740
+ "access" : "readonly",
1741
+ "units" : "redirected logins",
1742
+ "description" :
1743
+ """The count of Login Response PDUs with status class 0x01,
1744
+ Redirection, transmitted by this target.
1745
+ If this counter has suffered a discontinuity, the time of the
1746
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
1747
+ "reference" :
1748
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
1749
+ }, # column
1750
+ "iscsiTgtLoginAuthorizeFails" : {
1751
+ "nodetype" : "column",
1752
+ "moduleName" : "ISCSI-MIB",
1753
+ "oid" : "1.3.6.1.2.1.142.1.6.2.1.4",
1754
+ "status" : "current",
1755
+ "syntax" : {
1756
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1757
+ },
1758
+ "access" : "readonly",
1759
+ "units" : "failed logins",
1760
+ "description" :
1761
+ """The count of Login Response PDUs with status 0x0202,
1762
+ Forbidden Target, transmitted by this target.
1763
+
1764
+ If this counter is incremented, an iscsiTgtLoginFailure
1765
+ notification should be generated.
1766
+ If this counter has suffered a discontinuity, the time of the
1767
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
1768
+ "reference" :
1769
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
1770
+ }, # column
1771
+ "iscsiTgtLoginAuthenticateFails" : {
1772
+ "nodetype" : "column",
1773
+ "moduleName" : "ISCSI-MIB",
1774
+ "oid" : "1.3.6.1.2.1.142.1.6.2.1.5",
1775
+ "status" : "current",
1776
+ "syntax" : {
1777
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1778
+ },
1779
+ "access" : "readonly",
1780
+ "units" : "failed logins",
1781
+ "description" :
1782
+ """The count of Login Response PDUs with status 0x0201,
1783
+ Authentication Failed, transmitted by this target.
1784
+
1785
+ If this counter is incremented, an iscsiTgtLoginFailure
1786
+ notification should be generated.
1787
+
1788
+ If this counter has suffered a discontinuity, the time of the
1789
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
1790
+ "reference" :
1791
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
1792
+ }, # column
1793
+ "iscsiTgtLoginNegotiateFails" : {
1794
+ "nodetype" : "column",
1795
+ "moduleName" : "ISCSI-MIB",
1796
+ "oid" : "1.3.6.1.2.1.142.1.6.2.1.6",
1797
+ "status" : "current",
1798
+ "syntax" : {
1799
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1800
+ },
1801
+ "access" : "readonly",
1802
+ "units" : "failed logins",
1803
+ "description" :
1804
+ """The number of times a target has effectively refused a
1805
+ login because the parameter negotiation failed.
1806
+
1807
+
1808
+
1809
+
1810
+ If this counter is incremented, an iscsiTgtLoginFailure
1811
+ notification should be generated.
1812
+ If this counter has suffered a discontinuity, the time of the
1813
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
1814
+ }, # column
1815
+ "iscsiTargetLogoutStatsTable" : {
1816
+ "nodetype" : "table",
1817
+ "moduleName" : "ISCSI-MIB",
1818
+ "oid" : "1.3.6.1.2.1.142.1.6.3",
1819
+ "status" : "current",
1820
+ "description" :
1821
+ """When a target receives a Logout command, it responds
1822
+ with a Logout Response that carries a status code.
1823
+ This table contains counters for both normal and
1824
+ abnormal logout requests received by this target.""",
1825
+ }, # table
1826
+ "iscsiTargetLogoutStatsEntry" : {
1827
+ "nodetype" : "row",
1828
+ "moduleName" : "ISCSI-MIB",
1829
+ "oid" : "1.3.6.1.2.1.142.1.6.3.1",
1830
+ "status" : "current",
1831
+ "linkage" : [
1832
+ { "ISCSI-MIB" : {
1833
+ "indexkind" : "augments",
1834
+ "relatedNode" : "iscsiTargetAttributesEntry",
1835
+ }},
1836
+ ],
1837
+ "description" :
1838
+ """An entry (row) containing counters of Logout Response
1839
+ PDUs that were received by this target.""",
1840
+ }, # row
1841
+ "iscsiTgtLogoutNormals" : {
1842
+ "nodetype" : "column",
1843
+ "moduleName" : "ISCSI-MIB",
1844
+ "oid" : "1.3.6.1.2.1.142.1.6.3.1.1",
1845
+ "status" : "current",
1846
+ "syntax" : {
1847
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1848
+ },
1849
+ "access" : "readonly",
1850
+ "units" : "normal logouts",
1851
+ "description" :
1852
+ """The count of Logout Command PDUs received by this target,
1853
+ with reason code 0 (closes the session).
1854
+ If this counter has suffered a discontinuity, the time of the
1855
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
1856
+ "reference" :
1857
+ """RFC 3720, Section 10.14.1, Reason Code""",
1858
+ }, # column
1859
+ "iscsiTgtLogoutOthers" : {
1860
+ "nodetype" : "column",
1861
+ "moduleName" : "ISCSI-MIB",
1862
+ "oid" : "1.3.6.1.2.1.142.1.6.3.1.2",
1863
+ "status" : "current",
1864
+ "syntax" : {
1865
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1866
+ },
1867
+ "access" : "readonly",
1868
+ "units" : "abnormal logouts",
1869
+ "description" :
1870
+ """The count of Logout Command PDUs received by this target,
1871
+ with any reason code other than 0.
1872
+ If this counter has suffered a discontinuity, the time of the
1873
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
1874
+ "reference" :
1875
+ """RFC 3720, Section 10.14.1, Reason Code""",
1876
+ }, # column
1877
+ "iscsiTgtAuthorization" : {
1878
+ "nodetype" : "node",
1879
+ "moduleName" : "ISCSI-MIB",
1880
+ "oid" : "1.3.6.1.2.1.142.1.7",
1881
+ }, # node
1882
+ "iscsiTgtAuthAttributesTable" : {
1883
+ "nodetype" : "table",
1884
+ "moduleName" : "ISCSI-MIB",
1885
+ "oid" : "1.3.6.1.2.1.142.1.7.1",
1886
+ "status" : "current",
1887
+ "description" :
1888
+ """A list of initiator identities that are authorized to
1889
+ access each target node within each iSCSI instance
1890
+ present on the local system.""",
1891
+ }, # table
1892
+ "iscsiTgtAuthAttributesEntry" : {
1893
+ "nodetype" : "row",
1894
+ "moduleName" : "ISCSI-MIB",
1895
+ "oid" : "1.3.6.1.2.1.142.1.7.1.1",
1896
+ "create" : "true",
1897
+ "status" : "current",
1898
+ "linkage" : [
1899
+ "iscsiInstIndex",
1900
+ "iscsiNodeIndex",
1901
+ "iscsiTgtAuthIndex",
1902
+ ],
1903
+ "description" :
1904
+ """An entry (row) containing management information
1905
+ applicable to a particular target node's authorized
1906
+ initiator identity.""",
1907
+ }, # row
1908
+ "iscsiTgtAuthIndex" : {
1909
+ "nodetype" : "column",
1910
+ "moduleName" : "ISCSI-MIB",
1911
+ "oid" : "1.3.6.1.2.1.142.1.7.1.1.1",
1912
+ "status" : "current",
1913
+ "syntax" : {
1914
+ "type" : {
1915
+ "basetype" : "Unsigned32",
1916
+ "ranges" : [
1917
+ {
1918
+ "min" : "1",
1919
+ "max" : "4294967295"
1920
+ },
1921
+ ],
1922
+ "range" : {
1923
+ "min" : "1",
1924
+ "max" : "4294967295"
1925
+ },
1926
+ },
1927
+ },
1928
+ "access" : "noaccess",
1929
+ "description" :
1930
+ """An arbitrary integer used to uniquely identify a particular
1931
+ target's authorized initiator identity within an iSCSI
1932
+ instance present on the local system. This index value must
1933
+ not be modified or reused by an agent unless a reboot has
1934
+ occurred. An agent should attempt to keep this value
1935
+ persistent across reboots.""",
1936
+ }, # column
1937
+ "iscsiTgtAuthRowStatus" : {
1938
+ "nodetype" : "column",
1939
+ "moduleName" : "ISCSI-MIB",
1940
+ "oid" : "1.3.6.1.2.1.142.1.7.1.1.2",
1941
+ "status" : "current",
1942
+ "syntax" : {
1943
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1944
+ },
1945
+ "access" : "readwrite",
1946
+ "description" :
1947
+ """This field allows entries to be dynamically added and
1948
+ removed from this table via SNMP. When adding a row to
1949
+ this table, all non-Index/RowStatus objects must be set.
1950
+ When the value of this object is 'active', the values of
1951
+ the other objects in this table cannot be changed.
1952
+ Rows may be discarded using RowStatus.""",
1953
+ }, # column
1954
+ "iscsiTgtAuthIdentity" : {
1955
+ "nodetype" : "column",
1956
+ "moduleName" : "ISCSI-MIB",
1957
+ "oid" : "1.3.6.1.2.1.142.1.7.1.1.3",
1958
+ "status" : "current",
1959
+ "syntax" : {
1960
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1961
+ },
1962
+ "access" : "readwrite",
1963
+ "description" :
1964
+ """A pointer to the corresponding user entry in the IPS-AUTH
1965
+ MIB module that will be allowed to access this iSCSI target.""",
1966
+ "reference" :
1967
+ """IPS-AUTH MIB, RFC 4545""",
1968
+ }, # column
1969
+ "iscsiTgtAuthStorageType" : {
1970
+ "nodetype" : "column",
1971
+ "moduleName" : "ISCSI-MIB",
1972
+ "oid" : "1.3.6.1.2.1.142.1.7.1.1.4",
1973
+ "status" : "current",
1974
+ "syntax" : {
1975
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1976
+ },
1977
+ "access" : "readwrite",
1978
+ "default" : "nonVolatile",
1979
+ "description" :
1980
+ """The storage type for this row. Rows in this table that were
1981
+ created through an external process may have a storage type of
1982
+ readOnly or permanent.
1983
+
1984
+ Conceptual rows having the value 'permanent' need not
1985
+ allow write access to any columnar objects in the row.""",
1986
+ }, # column
1987
+ "iscsiInitiator" : {
1988
+ "nodetype" : "node",
1989
+ "moduleName" : "ISCSI-MIB",
1990
+ "oid" : "1.3.6.1.2.1.142.1.8",
1991
+ }, # node
1992
+ "iscsiInitiatorAttributesTable" : {
1993
+ "nodetype" : "table",
1994
+ "moduleName" : "ISCSI-MIB",
1995
+ "oid" : "1.3.6.1.2.1.142.1.8.1",
1996
+ "status" : "current",
1997
+ "description" :
1998
+ """A list of iSCSI nodes that can take on an initiator
1999
+ role, belonging to each iSCSI instance present on
2000
+ the local system.""",
2001
+ }, # table
2002
+ "iscsiInitiatorAttributesEntry" : {
2003
+ "nodetype" : "row",
2004
+ "moduleName" : "ISCSI-MIB",
2005
+ "oid" : "1.3.6.1.2.1.142.1.8.1.1",
2006
+ "status" : "current",
2007
+ "linkage" : [
2008
+ "iscsiInstIndex",
2009
+ "iscsiNodeIndex",
2010
+ ],
2011
+ "description" :
2012
+ """An entry (row) containing management information
2013
+ applicable to a particular iSCSI node that has
2014
+ initiator capabilities.""",
2015
+ }, # row
2016
+ "iscsiIntrLoginFailures" : {
2017
+ "nodetype" : "column",
2018
+ "moduleName" : "ISCSI-MIB",
2019
+ "oid" : "1.3.6.1.2.1.142.1.8.1.1.1",
2020
+ "status" : "current",
2021
+ "syntax" : {
2022
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2023
+ },
2024
+ "access" : "readonly",
2025
+ "units" : "failed logins",
2026
+ "description" :
2027
+ """This object counts the number of times a login attempt from
2028
+ this local initiator has failed.
2029
+ If this counter has suffered a discontinuity, the time of the
2030
+
2031
+
2032
+
2033
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
2034
+ "reference" :
2035
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
2036
+ }, # column
2037
+ "iscsiIntrLastFailureTime" : {
2038
+ "nodetype" : "column",
2039
+ "moduleName" : "ISCSI-MIB",
2040
+ "oid" : "1.3.6.1.2.1.142.1.8.1.1.2",
2041
+ "status" : "current",
2042
+ "syntax" : {
2043
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2044
+ },
2045
+ "access" : "readonly",
2046
+ "description" :
2047
+ """The timestamp of the most recent failure of a login attempt
2048
+ from this initiator. A value of zero indicates that no such
2049
+ failures have occurred since the last system boot.""",
2050
+ }, # column
2051
+ "iscsiIntrLastFailureType" : {
2052
+ "nodetype" : "column",
2053
+ "moduleName" : "ISCSI-MIB",
2054
+ "oid" : "1.3.6.1.2.1.142.1.8.1.1.3",
2055
+ "status" : "current",
2056
+ "syntax" : {
2057
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
2058
+ },
2059
+ "access" : "readonly",
2060
+ "description" :
2061
+ """The type of the most recent failure of a login attempt
2062
+ from this initiator, represented as the OID of the counter
2063
+ object in iscsiInitiatorLoginStatsTable for which the
2064
+ relevant instance was incremented. A value of 0.0
2065
+ indicates a type that is not represented by any of
2066
+ the counters in iscsiInitiatorLoginStatsTable.""",
2067
+ }, # column
2068
+ "iscsiIntrLastTgtFailureName" : {
2069
+ "nodetype" : "column",
2070
+ "moduleName" : "ISCSI-MIB",
2071
+ "oid" : "1.3.6.1.2.1.142.1.8.1.1.4",
2072
+ "status" : "current",
2073
+ "syntax" : {
2074
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiName"},
2075
+ },
2076
+ "access" : "readonly",
2077
+ "description" :
2078
+ """A UTF-8 string giving the name of the target that failed
2079
+ the last login attempt.""",
2080
+ }, # column
2081
+ "iscsiIntrLastTgtFailureAddrType" : {
2082
+ "nodetype" : "column",
2083
+ "moduleName" : "ISCSI-MIB",
2084
+ "oid" : "1.3.6.1.2.1.142.1.8.1.1.5",
2085
+ "status" : "current",
2086
+ "syntax" : {
2087
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
2088
+ },
2089
+ "access" : "readonly",
2090
+ "description" :
2091
+ """The type of Internet Network Address contained in the
2092
+ corresponding instance of the iscsiIntrLastTgtFailureAddr.
2093
+ The value 'dns' is not allowed.""",
2094
+ }, # column
2095
+ "iscsiIntrLastTgtFailureAddr" : {
2096
+ "nodetype" : "column",
2097
+ "moduleName" : "ISCSI-MIB",
2098
+ "oid" : "1.3.6.1.2.1.142.1.8.1.1.6",
2099
+ "status" : "current",
2100
+ "syntax" : {
2101
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2102
+ },
2103
+ "access" : "readonly",
2104
+ "description" :
2105
+ """An Internet Network Address, of the type specified by the
2106
+ object iscsiIntrLastTgtFailureAddrType, giving the host
2107
+ address of the target that failed the last login attempt.""",
2108
+ }, # column
2109
+ "iscsiInitiatorLoginStatsTable" : {
2110
+ "nodetype" : "table",
2111
+ "moduleName" : "ISCSI-MIB",
2112
+ "oid" : "1.3.6.1.2.1.142.1.8.2",
2113
+ "status" : "current",
2114
+ "description" :
2115
+ """A table of counters which keep track of the results of
2116
+ this initiator's login attempts.""",
2117
+ }, # table
2118
+ "iscsiInitiatorLoginStatsEntry" : {
2119
+ "nodetype" : "row",
2120
+ "moduleName" : "ISCSI-MIB",
2121
+ "oid" : "1.3.6.1.2.1.142.1.8.2.1",
2122
+ "status" : "current",
2123
+ "linkage" : [
2124
+ { "ISCSI-MIB" : {
2125
+ "indexkind" : "augments",
2126
+ "relatedNode" : "iscsiInitiatorAttributesEntry",
2127
+ }},
2128
+ ],
2129
+ "description" :
2130
+ """An entry (row) containing counters of each result
2131
+ of this initiator's login attempts.""",
2132
+ }, # row
2133
+ "iscsiIntrLoginAcceptRsps" : {
2134
+ "nodetype" : "column",
2135
+ "moduleName" : "ISCSI-MIB",
2136
+ "oid" : "1.3.6.1.2.1.142.1.8.2.1.1",
2137
+ "status" : "current",
2138
+ "syntax" : {
2139
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2140
+ },
2141
+ "access" : "readonly",
2142
+ "units" : "successful logins",
2143
+ "description" :
2144
+ """The count of Login Response PDUs with status
2145
+ 0x0000, Accept Login, received by this initiator.
2146
+ If this counter has suffered a discontinuity, the time of the
2147
+
2148
+
2149
+
2150
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
2151
+ "reference" :
2152
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
2153
+ }, # column
2154
+ "iscsiIntrLoginOtherFailRsps" : {
2155
+ "nodetype" : "column",
2156
+ "moduleName" : "ISCSI-MIB",
2157
+ "oid" : "1.3.6.1.2.1.142.1.8.2.1.2",
2158
+ "status" : "current",
2159
+ "syntax" : {
2160
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2161
+ },
2162
+ "access" : "readonly",
2163
+ "units" : "failed logins",
2164
+ "description" :
2165
+ """The count of Login Response PDUs received by this
2166
+ initiator with any status code not counted in the
2167
+ objects below.
2168
+ If this counter has suffered a discontinuity, the time of the
2169
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
2170
+ "reference" :
2171
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
2172
+ }, # column
2173
+ "iscsiIntrLoginRedirectRsps" : {
2174
+ "nodetype" : "column",
2175
+ "moduleName" : "ISCSI-MIB",
2176
+ "oid" : "1.3.6.1.2.1.142.1.8.2.1.3",
2177
+ "status" : "current",
2178
+ "syntax" : {
2179
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2180
+ },
2181
+ "access" : "readonly",
2182
+ "units" : "failed logins",
2183
+ "description" :
2184
+ """The count of Login Response PDUs with status class 0x01,
2185
+ Redirection, received by this initiator.
2186
+ If this counter has suffered a discontinuity, the time of the
2187
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
2188
+ "reference" :
2189
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
2190
+ }, # column
2191
+ "iscsiIntrLoginAuthFailRsps" : {
2192
+ "nodetype" : "column",
2193
+ "moduleName" : "ISCSI-MIB",
2194
+ "oid" : "1.3.6.1.2.1.142.1.8.2.1.4",
2195
+ "status" : "current",
2196
+ "syntax" : {
2197
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2198
+ },
2199
+ "access" : "readonly",
2200
+ "units" : "failed logins",
2201
+ "description" :
2202
+ """The count of Login Response PDUs with status class 0x201,
2203
+ Authentication Failed, received by this initiator.
2204
+ If this counter has suffered a discontinuity, the time of the
2205
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
2206
+ "reference" :
2207
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
2208
+ }, # column
2209
+ "iscsiIntrLoginAuthenticateFails" : {
2210
+ "nodetype" : "column",
2211
+ "moduleName" : "ISCSI-MIB",
2212
+ "oid" : "1.3.6.1.2.1.142.1.8.2.1.5",
2213
+ "status" : "current",
2214
+ "syntax" : {
2215
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2216
+ },
2217
+ "access" : "readonly",
2218
+ "units" : "failed logins",
2219
+ "description" :
2220
+ """The number of times the initiator has aborted a
2221
+ login because the target could not be authenticated.
2222
+
2223
+ No response is generated.
2224
+
2225
+ If this counter is incremented, an iscsiIntrLoginFailure
2226
+ notification should be generated.
2227
+ If this counter has suffered a discontinuity, the time of the
2228
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
2229
+ "reference" :
2230
+ """RFC 3720, Section 10.13.5, Status-Class and Status-Detail""",
2231
+ }, # column
2232
+ "iscsiIntrLoginNegotiateFails" : {
2233
+ "nodetype" : "column",
2234
+ "moduleName" : "ISCSI-MIB",
2235
+ "oid" : "1.3.6.1.2.1.142.1.8.2.1.6",
2236
+ "status" : "current",
2237
+ "syntax" : {
2238
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2239
+ },
2240
+ "access" : "readonly",
2241
+ "units" : "failed logins",
2242
+ "description" :
2243
+ """The number of times the initiator has aborted a
2244
+ login because parameter negotiation with the target
2245
+ failed.
2246
+
2247
+ No response is generated.
2248
+
2249
+ If this counter is incremented, an iscsiIntrLoginFailure
2250
+ notification should be generated.
2251
+ If this counter has suffered a discontinuity, the time of the
2252
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
2253
+ "reference" :
2254
+ """RFC 3720, Section 6.10, Negotiation Failures""",
2255
+ }, # column
2256
+ "iscsiInitiatorLogoutStatsTable" : {
2257
+ "nodetype" : "table",
2258
+ "moduleName" : "ISCSI-MIB",
2259
+ "oid" : "1.3.6.1.2.1.142.1.8.3",
2260
+ "status" : "current",
2261
+ "description" :
2262
+ """When an initiator attempts to send a Logout command, the target
2263
+ responds with a Logout Response that carries a status code.
2264
+
2265
+
2266
+
2267
+ This table contains a list of counters of Logout Response
2268
+ PDUs of each status code that was received by each
2269
+ initiator belonging to this iSCSI instance present on this
2270
+ system.""",
2271
+ }, # table
2272
+ "iscsiInitiatorLogoutStatsEntry" : {
2273
+ "nodetype" : "row",
2274
+ "moduleName" : "ISCSI-MIB",
2275
+ "oid" : "1.3.6.1.2.1.142.1.8.3.1",
2276
+ "status" : "current",
2277
+ "linkage" : [
2278
+ { "ISCSI-MIB" : {
2279
+ "indexkind" : "augments",
2280
+ "relatedNode" : "iscsiInitiatorAttributesEntry",
2281
+ }},
2282
+ ],
2283
+ "description" :
2284
+ """An entry (row) containing counters of Logout Response
2285
+ PDUs of each status code that was generated by this
2286
+ initiator.""",
2287
+ }, # row
2288
+ "iscsiIntrLogoutNormals" : {
2289
+ "nodetype" : "column",
2290
+ "moduleName" : "ISCSI-MIB",
2291
+ "oid" : "1.3.6.1.2.1.142.1.8.3.1.1",
2292
+ "status" : "current",
2293
+ "syntax" : {
2294
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2295
+ },
2296
+ "access" : "readonly",
2297
+ "units" : "normal logouts",
2298
+ "description" :
2299
+ """The count of Logout Command PDUs generated by this initiator
2300
+ with reason code 0 (closes the session).
2301
+ If this counter has suffered a discontinuity, the time of the
2302
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
2303
+ "reference" :
2304
+ """RFC 3720, Section 10.14.1, Reason Code""",
2305
+ }, # column
2306
+ "iscsiIntrLogoutOthers" : {
2307
+ "nodetype" : "column",
2308
+ "moduleName" : "ISCSI-MIB",
2309
+ "oid" : "1.3.6.1.2.1.142.1.8.3.1.2",
2310
+ "status" : "current",
2311
+ "syntax" : {
2312
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2313
+ },
2314
+ "access" : "readonly",
2315
+ "units" : "abnormal logouts",
2316
+ "description" :
2317
+ """The count of Logout Command PDUs generated by this initiator
2318
+ with any status code other than 0.
2319
+ If this counter has suffered a discontinuity, the time of the
2320
+ last discontinuity is indicated in iscsiNodeDiscontinuityTime.""",
2321
+ "reference" :
2322
+ """RFC 3720, Section 10.14.1, Reason Code""",
2323
+ }, # column
2324
+ "iscsiIntrAuthorization" : {
2325
+ "nodetype" : "node",
2326
+ "moduleName" : "ISCSI-MIB",
2327
+ "oid" : "1.3.6.1.2.1.142.1.9",
2328
+ }, # node
2329
+ "iscsiIntrAuthAttributesTable" : {
2330
+ "nodetype" : "table",
2331
+ "moduleName" : "ISCSI-MIB",
2332
+ "oid" : "1.3.6.1.2.1.142.1.9.1",
2333
+ "status" : "current",
2334
+ "description" :
2335
+ """A list of target identities that each initiator
2336
+ on the local system may access.""",
2337
+ }, # table
2338
+ "iscsiIntrAuthAttributesEntry" : {
2339
+ "nodetype" : "row",
2340
+ "moduleName" : "ISCSI-MIB",
2341
+ "oid" : "1.3.6.1.2.1.142.1.9.1.1",
2342
+ "create" : "true",
2343
+ "status" : "current",
2344
+ "linkage" : [
2345
+ "iscsiInstIndex",
2346
+ "iscsiNodeIndex",
2347
+ "iscsiIntrAuthIndex",
2348
+ ],
2349
+ "description" :
2350
+ """An entry (row) containing management information applicable
2351
+ to a particular initiator node's authorized target identity.""",
2352
+ }, # row
2353
+ "iscsiIntrAuthIndex" : {
2354
+ "nodetype" : "column",
2355
+ "moduleName" : "ISCSI-MIB",
2356
+ "oid" : "1.3.6.1.2.1.142.1.9.1.1.1",
2357
+ "status" : "current",
2358
+ "syntax" : {
2359
+ "type" : {
2360
+ "basetype" : "Unsigned32",
2361
+ "ranges" : [
2362
+ {
2363
+ "min" : "1",
2364
+ "max" : "4294967295"
2365
+ },
2366
+ ],
2367
+ "range" : {
2368
+ "min" : "1",
2369
+ "max" : "4294967295"
2370
+ },
2371
+ },
2372
+ },
2373
+ "access" : "noaccess",
2374
+ "description" :
2375
+ """An arbitrary integer used to uniquely identify a
2376
+ particular initiator node's authorized target
2377
+ identity within an iSCSI instance present on the
2378
+ local system. This index value must not be modified
2379
+ or reused by an agent unless a reboot has occurred.
2380
+ An agent should attempt to keep this value persistent
2381
+ across reboots.""",
2382
+ }, # column
2383
+ "iscsiIntrAuthRowStatus" : {
2384
+ "nodetype" : "column",
2385
+ "moduleName" : "ISCSI-MIB",
2386
+ "oid" : "1.3.6.1.2.1.142.1.9.1.1.2",
2387
+ "status" : "current",
2388
+ "syntax" : {
2389
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2390
+ },
2391
+ "access" : "readwrite",
2392
+ "description" :
2393
+ """This field allows entries to be dynamically added and
2394
+ removed from this table via SNMP. When adding a row to
2395
+ this table, all non-Index/RowStatus objects must be set.
2396
+ When the value of this object is 'active', the values of
2397
+ the other objects in this table cannot be changed.
2398
+ Rows may be discarded using RowStatus.""",
2399
+ }, # column
2400
+ "iscsiIntrAuthIdentity" : {
2401
+ "nodetype" : "column",
2402
+ "moduleName" : "ISCSI-MIB",
2403
+ "oid" : "1.3.6.1.2.1.142.1.9.1.1.3",
2404
+ "status" : "current",
2405
+ "syntax" : {
2406
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
2407
+ },
2408
+ "access" : "readwrite",
2409
+ "description" :
2410
+ """A pointer to the corresponding user entry in the IPS-AUTH
2411
+ MIB module to which this initiator node should attempt to
2412
+ establish an iSCSI session.""",
2413
+ "reference" :
2414
+ """IPS-AUTH MIB, RFC 4545""",
2415
+ }, # column
2416
+ "iscsiIntrAuthStorageType" : {
2417
+ "nodetype" : "column",
2418
+ "moduleName" : "ISCSI-MIB",
2419
+ "oid" : "1.3.6.1.2.1.142.1.9.1.1.4",
2420
+ "status" : "current",
2421
+ "syntax" : {
2422
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
2423
+ },
2424
+ "access" : "readwrite",
2425
+ "default" : "nonVolatile",
2426
+ "description" :
2427
+ """The storage type for this row. Rows in this table that were
2428
+ created through an external process may have a storage type of
2429
+ readOnly or permanent.
2430
+
2431
+ Conceptual rows having the value 'permanent' need not
2432
+ allow write access to any columnar objects in the row.""",
2433
+ }, # column
2434
+ "iscsiSession" : {
2435
+ "nodetype" : "node",
2436
+ "moduleName" : "ISCSI-MIB",
2437
+ "oid" : "1.3.6.1.2.1.142.1.10",
2438
+ }, # node
2439
+ "iscsiSessionAttributesTable" : {
2440
+ "nodetype" : "table",
2441
+ "moduleName" : "ISCSI-MIB",
2442
+ "oid" : "1.3.6.1.2.1.142.1.10.1",
2443
+ "status" : "current",
2444
+ "description" :
2445
+ """A list of sessions belonging to each iSCSI instance
2446
+ present on the system.""",
2447
+ }, # table
2448
+ "iscsiSessionAttributesEntry" : {
2449
+ "nodetype" : "row",
2450
+ "moduleName" : "ISCSI-MIB",
2451
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1",
2452
+ "status" : "current",
2453
+ "linkage" : [
2454
+ "iscsiInstIndex",
2455
+ "iscsiSsnNodeIndex",
2456
+ "iscsiSsnIndex",
2457
+ ],
2458
+ "description" :
2459
+ """An entry (row) containing management information applicable
2460
+ to a particular session.
2461
+
2462
+ If this session is a discovery session that is not attached
2463
+ to any particular node, the iscsiSsnNodeIndex will be zero.
2464
+ Otherwise, the iscsiSsnNodeIndex will have the same value as
2465
+ iscsiNodeIndex.""",
2466
+ }, # row
2467
+ "iscsiSsnNodeIndex" : {
2468
+ "nodetype" : "column",
2469
+ "moduleName" : "ISCSI-MIB",
2470
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.1",
2471
+ "status" : "current",
2472
+ "syntax" : {
2473
+ "type" : {
2474
+ "basetype" : "Unsigned32",
2475
+ "ranges" : [
2476
+ {
2477
+ "min" : "0",
2478
+ "max" : "4294967295"
2479
+ },
2480
+ ],
2481
+ "range" : {
2482
+ "min" : "0",
2483
+ "max" : "4294967295"
2484
+ },
2485
+ },
2486
+ },
2487
+ "access" : "noaccess",
2488
+ "description" :
2489
+ """An arbitrary integer used to uniquely identify a
2490
+ particular node within an iSCSI instance present
2491
+ on the local system. For normal, non-discovery
2492
+ sessions, this value will map to the iscsiNodeIndex.
2493
+ For discovery sessions that do not have a node
2494
+ associated, the value 0 (zero) is used.""",
2495
+ }, # column
2496
+ "iscsiSsnIndex" : {
2497
+ "nodetype" : "column",
2498
+ "moduleName" : "ISCSI-MIB",
2499
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.2",
2500
+ "status" : "current",
2501
+ "syntax" : {
2502
+ "type" : {
2503
+ "basetype" : "Unsigned32",
2504
+ "ranges" : [
2505
+ {
2506
+ "min" : "1",
2507
+ "max" : "4294967295"
2508
+ },
2509
+ ],
2510
+ "range" : {
2511
+ "min" : "1",
2512
+ "max" : "4294967295"
2513
+ },
2514
+ },
2515
+ },
2516
+ "access" : "noaccess",
2517
+ "description" :
2518
+ """An arbitrary integer used to uniquely identify a
2519
+ particular session within an iSCSI instance present
2520
+ on the local system. An agent should attempt to
2521
+ not reuse index values unless a reboot has occurred.
2522
+ iSCSI sessions are destroyed during a reboot; rows
2523
+ in this table are not persistent across reboots.""",
2524
+ }, # column
2525
+ "iscsiSsnDirection" : {
2526
+ "nodetype" : "column",
2527
+ "moduleName" : "ISCSI-MIB",
2528
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.3",
2529
+ "status" : "current",
2530
+ "syntax" : {
2531
+ "type" : {
2532
+ "basetype" : "Enumeration",
2533
+ "inboundSession" : {
2534
+ "nodetype" : "namednumber",
2535
+ "number" : "1"
2536
+ },
2537
+ "outboundSession" : {
2538
+ "nodetype" : "namednumber",
2539
+ "number" : "2"
2540
+ },
2541
+ },
2542
+ },
2543
+ "access" : "readonly",
2544
+ "description" :
2545
+ """Direction of iSCSI session:
2546
+ inboundSession - session is established from an external
2547
+ initiator to a target within this iSCSI
2548
+ instance.
2549
+ outboundSession - session is established from an initiator
2550
+ within this iSCSI instance to an external
2551
+ target.""",
2552
+ }, # column
2553
+ "iscsiSsnInitiatorName" : {
2554
+ "nodetype" : "column",
2555
+ "moduleName" : "ISCSI-MIB",
2556
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.4",
2557
+ "status" : "current",
2558
+ "syntax" : {
2559
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiName"},
2560
+ },
2561
+ "access" : "readonly",
2562
+ "description" :
2563
+ """If iscsiSsnDirection is Inbound, this object is a
2564
+ UTF-8 string that will contain the name of the remote
2565
+ initiator. If this session is a discovery session that
2566
+
2567
+
2568
+
2569
+ does not specify a particular initiator, this object
2570
+ will contain a zero-length string.
2571
+
2572
+ If iscsiSsnDirection is Outbound, this object will
2573
+ contain a zero-length string.""",
2574
+ }, # column
2575
+ "iscsiSsnTargetName" : {
2576
+ "nodetype" : "column",
2577
+ "moduleName" : "ISCSI-MIB",
2578
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.5",
2579
+ "status" : "current",
2580
+ "syntax" : {
2581
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiName"},
2582
+ },
2583
+ "access" : "readonly",
2584
+ "description" :
2585
+ """If iscsiSsnDirection is Outbound, this object is a
2586
+ UTF-8 string that will contain the name of the remote
2587
+ target. If this session is a discovery session that
2588
+ does not specify a particular target, this object will
2589
+ contain a zero-length string.
2590
+
2591
+ If iscsiSsnDirection is Inbound, this object will
2592
+ contain a zero-length string.""",
2593
+ }, # column
2594
+ "iscsiSsnTSIH" : {
2595
+ "nodetype" : "column",
2596
+ "moduleName" : "ISCSI-MIB",
2597
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.6",
2598
+ "status" : "current",
2599
+ "syntax" : {
2600
+ "type" : {
2601
+ "basetype" : "Unsigned32",
2602
+ "ranges" : [
2603
+ {
2604
+ "min" : "1",
2605
+ "max" : "65535"
2606
+ },
2607
+ ],
2608
+ "range" : {
2609
+ "min" : "1",
2610
+ "max" : "65535"
2611
+ },
2612
+ },
2613
+ },
2614
+ "access" : "readonly",
2615
+ "description" :
2616
+ """The target-defined identification handle for this session.""",
2617
+ "reference" :
2618
+ """RFC 3720, Section 10.12.6, TSIH""",
2619
+ }, # column
2620
+ "iscsiSsnISID" : {
2621
+ "nodetype" : "column",
2622
+ "moduleName" : "ISCSI-MIB",
2623
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.7",
2624
+ "status" : "current",
2625
+ "syntax" : {
2626
+ "type" : {
2627
+ "basetype" : "OctetString",
2628
+ "ranges" : [
2629
+ {
2630
+ "min" : "6",
2631
+ "max" : "6"
2632
+ },
2633
+ ],
2634
+ "range" : {
2635
+ "min" : "6",
2636
+ "max" : "6"
2637
+ },
2638
+ },
2639
+ },
2640
+ "access" : "readonly",
2641
+ "description" :
2642
+ """The initiator-defined portion of the iSCSI Session ID.""",
2643
+ "reference" :
2644
+ """RFC 3720, Section 10.12.5, ISID""",
2645
+ }, # column
2646
+ "iscsiSsnInitiatorAlias" : {
2647
+ "nodetype" : "column",
2648
+ "moduleName" : "ISCSI-MIB",
2649
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.8",
2650
+ "status" : "current",
2651
+ "syntax" : {
2652
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2653
+ },
2654
+ "access" : "readonly",
2655
+ "description" :
2656
+ """A UTF-8 string that gives the alias communicated by the
2657
+
2658
+
2659
+
2660
+ initiator end of the session during the login phase.
2661
+
2662
+ If no alias exists, the value is a zero-length string.""",
2663
+ "reference" :
2664
+ """RFC 3720, Section 12.7, InitiatorAlias""",
2665
+ }, # column
2666
+ "iscsiSsnTargetAlias" : {
2667
+ "nodetype" : "column",
2668
+ "moduleName" : "ISCSI-MIB",
2669
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.9",
2670
+ "status" : "current",
2671
+ "syntax" : {
2672
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2673
+ },
2674
+ "access" : "readonly",
2675
+ "description" :
2676
+ """A UTF-8 string that gives the alias communicated by the
2677
+ target end of the session during the login phase.
2678
+
2679
+ If no alias exists, the value is a zero-length string.""",
2680
+ "reference" :
2681
+ """RFC 3720, Section 12.6, TargetAlias""",
2682
+ }, # column
2683
+ "iscsiSsnInitialR2T" : {
2684
+ "nodetype" : "column",
2685
+ "moduleName" : "ISCSI-MIB",
2686
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.10",
2687
+ "status" : "current",
2688
+ "syntax" : {
2689
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2690
+ },
2691
+ "access" : "readonly",
2692
+ "description" :
2693
+ """If set to true, indicates that the initiator must wait
2694
+ for an R2T before sending to the target. If set to false,
2695
+ the initiator may send data immediately, within limits set
2696
+ by iscsiSsnFirstBurstLength and the expected data transfer
2697
+ length of the request.""",
2698
+ "reference" :
2699
+ """RFC 3720, Section 12.10, InitialR2T""",
2700
+ }, # column
2701
+ "iscsiSsnImmediateData" : {
2702
+ "nodetype" : "column",
2703
+ "moduleName" : "ISCSI-MIB",
2704
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.11",
2705
+ "status" : "current",
2706
+ "syntax" : {
2707
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2708
+ },
2709
+ "access" : "readonly",
2710
+ "description" :
2711
+ """Indicates whether the initiator and target have agreed to
2712
+ support immediate data on this session.""",
2713
+ "reference" :
2714
+ """RFC 3720, Section 12.11, ImmediateData""",
2715
+ }, # column
2716
+ "iscsiSsnType" : {
2717
+ "nodetype" : "column",
2718
+ "moduleName" : "ISCSI-MIB",
2719
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.12",
2720
+ "status" : "current",
2721
+ "syntax" : {
2722
+ "type" : {
2723
+ "basetype" : "Enumeration",
2724
+ "normalSession" : {
2725
+ "nodetype" : "namednumber",
2726
+ "number" : "1"
2727
+ },
2728
+ "discoverySession" : {
2729
+ "nodetype" : "namednumber",
2730
+ "number" : "2"
2731
+ },
2732
+ },
2733
+ },
2734
+ "access" : "readonly",
2735
+ "description" :
2736
+ """Type of iSCSI session:
2737
+ normalSession - session is a normal iSCSI session
2738
+ discoverySession - session is being used only for discovery.""",
2739
+ "reference" :
2740
+ """RFC 3720, Section 12.21, SessionType""",
2741
+ }, # column
2742
+ "iscsiSsnMaxOutstandingR2T" : {
2743
+ "nodetype" : "column",
2744
+ "moduleName" : "ISCSI-MIB",
2745
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.13",
2746
+ "status" : "current",
2747
+ "syntax" : {
2748
+ "type" : {
2749
+ "basetype" : "Unsigned32",
2750
+ "ranges" : [
2751
+ {
2752
+ "min" : "1",
2753
+ "max" : "65535"
2754
+ },
2755
+ ],
2756
+ "range" : {
2757
+ "min" : "1",
2758
+ "max" : "65535"
2759
+ },
2760
+ },
2761
+ },
2762
+ "access" : "readonly",
2763
+ "units" : "R2Ts",
2764
+ "description" :
2765
+ """The maximum number of outstanding requests-to-transmit
2766
+ (R2Ts) per iSCSI task within this session.""",
2767
+ "reference" :
2768
+ """RFC 3720, Section 12.17, MaxOutstandingR2T""",
2769
+ }, # column
2770
+ "iscsiSsnFirstBurstLength" : {
2771
+ "nodetype" : "column",
2772
+ "moduleName" : "ISCSI-MIB",
2773
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.14",
2774
+ "status" : "current",
2775
+ "syntax" : {
2776
+ "type" : {
2777
+ "basetype" : "Unsigned32",
2778
+ "ranges" : [
2779
+ {
2780
+ "min" : "512",
2781
+ "max" : "16777215"
2782
+ },
2783
+ ],
2784
+ "range" : {
2785
+ "min" : "512",
2786
+ "max" : "16777215"
2787
+ },
2788
+ },
2789
+ },
2790
+ "access" : "readonly",
2791
+ "units" : "bytes",
2792
+ "description" :
2793
+ """The maximum length supported for unsolicited data sent
2794
+ within this session.""",
2795
+ "reference" :
2796
+ """RFC 3720, Section 12.14, FirstBurstLength""",
2797
+ }, # column
2798
+ "iscsiSsnMaxBurstLength" : {
2799
+ "nodetype" : "column",
2800
+ "moduleName" : "ISCSI-MIB",
2801
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.15",
2802
+ "status" : "current",
2803
+ "syntax" : {
2804
+ "type" : {
2805
+ "basetype" : "Unsigned32",
2806
+ "ranges" : [
2807
+ {
2808
+ "min" : "512",
2809
+ "max" : "16777215"
2810
+ },
2811
+ ],
2812
+ "range" : {
2813
+ "min" : "512",
2814
+ "max" : "16777215"
2815
+ },
2816
+ },
2817
+ },
2818
+ "access" : "readonly",
2819
+ "units" : "bytes",
2820
+ "description" :
2821
+ """The maximum number of bytes that can be sent within
2822
+ a single sequence of Data-In or Data-Out PDUs.""",
2823
+ "reference" :
2824
+ """RFC 3720, Section 12.13, MaxBurstLength""",
2825
+ }, # column
2826
+ "iscsiSsnConnectionNumber" : {
2827
+ "nodetype" : "column",
2828
+ "moduleName" : "ISCSI-MIB",
2829
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.16",
2830
+ "status" : "current",
2831
+ "syntax" : {
2832
+ "type" : {
2833
+ "basetype" : "Unsigned32",
2834
+ "parent module" : {
2835
+ "name" : "SNMPv2-SMI",
2836
+ "type" : "Gauge32",
2837
+ },
2838
+ "ranges" : [
2839
+ {
2840
+ "min" : "1",
2841
+ "max" : "65535"
2842
+ },
2843
+ ],
2844
+ "range" : {
2845
+ "min" : "1",
2846
+ "max" : "65535"
2847
+ },
2848
+ },
2849
+ },
2850
+ "access" : "readonly",
2851
+ "units" : "connections",
2852
+ "description" :
2853
+ """The number of transport protocol connections that currently
2854
+ belong to this session.""",
2855
+ }, # column
2856
+ "iscsiSsnAuthIdentity" : {
2857
+ "nodetype" : "column",
2858
+ "moduleName" : "ISCSI-MIB",
2859
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.17",
2860
+ "status" : "current",
2861
+ "syntax" : {
2862
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
2863
+ },
2864
+ "access" : "readonly",
2865
+ "description" :
2866
+ """This object contains a pointer to a row in the
2867
+ IPS-AUTH MIB module that identifies the authentication
2868
+ method being used on this session, as communicated
2869
+ during the login phase.""",
2870
+ "reference" :
2871
+ """IPS-AUTH MIB, RFC 4545""",
2872
+ }, # column
2873
+ "iscsiSsnDataSequenceInOrder" : {
2874
+ "nodetype" : "column",
2875
+ "moduleName" : "ISCSI-MIB",
2876
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.18",
2877
+ "status" : "current",
2878
+ "syntax" : {
2879
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2880
+ },
2881
+ "access" : "readonly",
2882
+ "description" :
2883
+ """False indicates that iSCSI data PDU sequences may
2884
+ be transferred in any order. True indicates that
2885
+ data PDU sequences must be transferred using
2886
+ continuously increasing offsets, except during
2887
+ error recovery.""",
2888
+ "reference" :
2889
+ """RFC 3720, Section 12.19, DataSequenceInOrder""",
2890
+ }, # column
2891
+ "iscsiSsnDataPDUInOrder" : {
2892
+ "nodetype" : "column",
2893
+ "moduleName" : "ISCSI-MIB",
2894
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.19",
2895
+ "status" : "current",
2896
+ "syntax" : {
2897
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2898
+ },
2899
+ "access" : "readonly",
2900
+ "description" :
2901
+ """False indicates that iSCSI data PDUs within sequences
2902
+ may be in any order. True indicates that data PDUs
2903
+ within sequences must be at continuously increasing
2904
+ addresses, with no gaps or overlay between PDUs.
2905
+
2906
+ Default is true.""",
2907
+ "reference" :
2908
+ """RFC 3720, Section 12.18, DataPDUInOrder""",
2909
+ }, # column
2910
+ "iscsiSsnErrorRecoveryLevel" : {
2911
+ "nodetype" : "column",
2912
+ "moduleName" : "ISCSI-MIB",
2913
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.20",
2914
+ "status" : "current",
2915
+ "syntax" : {
2916
+ "type" : {
2917
+ "basetype" : "Unsigned32",
2918
+ "ranges" : [
2919
+ {
2920
+ "min" : "0",
2921
+ "max" : "255"
2922
+ },
2923
+ ],
2924
+ "range" : {
2925
+ "min" : "0",
2926
+ "max" : "255"
2927
+ },
2928
+ },
2929
+ },
2930
+ "access" : "readonly",
2931
+ "description" :
2932
+ """The level of error recovery negotiated between
2933
+ the initiator and the target. Higher numbers
2934
+ represent more detailed recovery schemes.""",
2935
+ "reference" :
2936
+ """RFC 3720, Section 12.20, ErrorRecoveryLevel""",
2937
+ }, # column
2938
+ "iscsiSsnDiscontinuityTime" : {
2939
+ "nodetype" : "column",
2940
+ "moduleName" : "ISCSI-MIB",
2941
+ "oid" : "1.3.6.1.2.1.142.1.10.1.1.21",
2942
+ "status" : "current",
2943
+ "syntax" : {
2944
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2945
+ },
2946
+ "access" : "readonly",
2947
+ "description" :
2948
+ """The value of SysUpTime on the most recent occasion
2949
+ at which any one or more of this session's counters
2950
+ suffered a discontinuity.
2951
+ When a session is established, and this object is
2952
+ created, it is initialized to the current value
2953
+ of SysUpTime.""",
2954
+ }, # column
2955
+ "iscsiSessionStatsTable" : {
2956
+ "nodetype" : "table",
2957
+ "moduleName" : "ISCSI-MIB",
2958
+ "oid" : "1.3.6.1.2.1.142.1.10.2",
2959
+ "status" : "current",
2960
+ "description" :
2961
+ """A list of general iSCSI traffic counters for each of the
2962
+ sessions present on the system.""",
2963
+ }, # table
2964
+ "iscsiSessionStatsEntry" : {
2965
+ "nodetype" : "row",
2966
+ "moduleName" : "ISCSI-MIB",
2967
+ "oid" : "1.3.6.1.2.1.142.1.10.2.1",
2968
+ "status" : "current",
2969
+ "linkage" : [
2970
+ { "ISCSI-MIB" : {
2971
+ "indexkind" : "augments",
2972
+ "relatedNode" : "iscsiSessionAttributesEntry",
2973
+ }},
2974
+ ],
2975
+ "description" :
2976
+ """An entry (row) containing general iSCSI traffic counters
2977
+ for a particular session.""",
2978
+ }, # row
2979
+ "iscsiSsnCmdPDUs" : {
2980
+ "nodetype" : "column",
2981
+ "moduleName" : "ISCSI-MIB",
2982
+ "oid" : "1.3.6.1.2.1.142.1.10.2.1.1",
2983
+ "status" : "current",
2984
+ "syntax" : {
2985
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2986
+ },
2987
+ "access" : "readonly",
2988
+ "units" : "PDUs",
2989
+ "description" :
2990
+ """The count of Command PDUs transferred on this session.
2991
+ If this counter has suffered a discontinuity, the time of the
2992
+ last discontinuity is indicated in iscsiSsnDiscontinuityTime.""",
2993
+ }, # column
2994
+ "iscsiSsnRspPDUs" : {
2995
+ "nodetype" : "column",
2996
+ "moduleName" : "ISCSI-MIB",
2997
+ "oid" : "1.3.6.1.2.1.142.1.10.2.1.2",
2998
+ "status" : "current",
2999
+ "syntax" : {
3000
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3001
+ },
3002
+ "access" : "readonly",
3003
+ "units" : "PDUs",
3004
+ "description" :
3005
+ """The count of Response PDUs transferred on this session.
3006
+ If this counter has suffered a discontinuity, the time of the
3007
+ last discontinuity is indicated in iscsiSsnDiscontinuityTime.""",
3008
+ }, # column
3009
+ "iscsiSsnTxDataOctets" : {
3010
+ "nodetype" : "column",
3011
+ "moduleName" : "ISCSI-MIB",
3012
+ "oid" : "1.3.6.1.2.1.142.1.10.2.1.3",
3013
+ "status" : "current",
3014
+ "syntax" : {
3015
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
3016
+ },
3017
+ "access" : "readonly",
3018
+ "units" : "octets",
3019
+ "description" :
3020
+ """The count of data octets that were transmitted by
3021
+ the local iSCSI node on this session.
3022
+ If this counter has suffered a discontinuity, the time of the
3023
+ last discontinuity is indicated in iscsiSsnDiscontinuityTime.""",
3024
+ }, # column
3025
+ "iscsiSsnRxDataOctets" : {
3026
+ "nodetype" : "column",
3027
+ "moduleName" : "ISCSI-MIB",
3028
+ "oid" : "1.3.6.1.2.1.142.1.10.2.1.4",
3029
+ "status" : "current",
3030
+ "syntax" : {
3031
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
3032
+ },
3033
+ "access" : "readonly",
3034
+ "units" : "octets",
3035
+ "description" :
3036
+ """The count of data octets that were received by
3037
+ the local iSCSI node on this session.
3038
+ If this counter has suffered a discontinuity, the time of the
3039
+ last discontinuity is indicated in iscsiSsnDiscontinuityTime.""",
3040
+ }, # column
3041
+ "iscsiSsnLCTxDataOctets" : {
3042
+ "nodetype" : "column",
3043
+ "moduleName" : "ISCSI-MIB",
3044
+ "oid" : "1.3.6.1.2.1.142.1.10.2.1.5",
3045
+ "status" : "current",
3046
+ "syntax" : {
3047
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3048
+ },
3049
+ "access" : "readonly",
3050
+ "units" : "octets",
3051
+ "description" :
3052
+ """A Low Capacity shadow object of iscsiSsnTxDataOctets
3053
+ for those systems that don't support Counter64.
3054
+ If this counter has suffered a discontinuity, the time of the
3055
+ last discontinuity is indicated in iscsiSsnDiscontinuityTime.""",
3056
+ }, # column
3057
+ "iscsiSsnLCRxDataOctets" : {
3058
+ "nodetype" : "column",
3059
+ "moduleName" : "ISCSI-MIB",
3060
+ "oid" : "1.3.6.1.2.1.142.1.10.2.1.6",
3061
+ "status" : "current",
3062
+ "syntax" : {
3063
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3064
+ },
3065
+ "access" : "readonly",
3066
+ "units" : "octets",
3067
+ "description" :
3068
+ """A Low Capacity shadow object of iscsiSsnRxDataOctets
3069
+ for those systems that don't support Counter64.
3070
+ If this counter has suffered a discontinuity, the time of the
3071
+ last discontinuity is indicated in iscsiSsnDiscontinuityTime.""",
3072
+ }, # column
3073
+ "iscsiSessionCxnErrorStatsTable" : {
3074
+ "nodetype" : "table",
3075
+ "moduleName" : "ISCSI-MIB",
3076
+ "oid" : "1.3.6.1.2.1.142.1.10.3",
3077
+ "status" : "current",
3078
+ "description" :
3079
+ """A list of error counters for each of the sessions
3080
+ present on this system.""",
3081
+ }, # table
3082
+ "iscsiSessionCxnErrorStatsEntry" : {
3083
+ "nodetype" : "row",
3084
+ "moduleName" : "ISCSI-MIB",
3085
+ "oid" : "1.3.6.1.2.1.142.1.10.3.1",
3086
+ "status" : "current",
3087
+ "linkage" : [
3088
+ { "ISCSI-MIB" : {
3089
+ "indexkind" : "augments",
3090
+ "relatedNode" : "iscsiSessionAttributesEntry",
3091
+ }},
3092
+ ],
3093
+ "description" :
3094
+ """An entry (row) containing error counters for
3095
+ a particular session.""",
3096
+ }, # row
3097
+ "iscsiSsnCxnDigestErrors" : {
3098
+ "nodetype" : "column",
3099
+ "moduleName" : "ISCSI-MIB",
3100
+ "oid" : "1.3.6.1.2.1.142.1.10.3.1.1",
3101
+ "status" : "current",
3102
+ "syntax" : {
3103
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3104
+ },
3105
+ "access" : "readonly",
3106
+ "units" : "PDUs",
3107
+ "description" :
3108
+ """The count of PDUs that were received on the session and
3109
+ contained header or data digest errors.
3110
+ If this counter has suffered a discontinuity, the time of the
3111
+ last discontinuity is indicated in iscsiSsnDiscontinuityTime.""",
3112
+ "reference" :
3113
+ """RFC 3720, Section 6.7, Digest Errors""",
3114
+ }, # column
3115
+ "iscsiSsnCxnTimeoutErrors" : {
3116
+ "nodetype" : "column",
3117
+ "moduleName" : "ISCSI-MIB",
3118
+ "oid" : "1.3.6.1.2.1.142.1.10.3.1.2",
3119
+ "status" : "current",
3120
+ "syntax" : {
3121
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3122
+ },
3123
+ "access" : "readonly",
3124
+ "units" : "connections",
3125
+ "description" :
3126
+ """The count of connections within this session
3127
+ that have been terminated due to timeout.
3128
+ If this counter has suffered a discontinuity, the time of the
3129
+ last discontinuity is indicated in iscsiSsnDiscontinuityTime.""",
3130
+ "reference" :
3131
+ """RFC 3720, Section 6.4, Connection Timeout Management""",
3132
+ }, # column
3133
+ "iscsiConnection" : {
3134
+ "nodetype" : "node",
3135
+ "moduleName" : "ISCSI-MIB",
3136
+ "oid" : "1.3.6.1.2.1.142.1.11",
3137
+ }, # node
3138
+ "iscsiConnectionAttributesTable" : {
3139
+ "nodetype" : "table",
3140
+ "moduleName" : "ISCSI-MIB",
3141
+ "oid" : "1.3.6.1.2.1.142.1.11.1",
3142
+ "status" : "current",
3143
+ "description" :
3144
+ """A list of connections belonging to each iSCSI instance
3145
+ present on the system.""",
3146
+ }, # table
3147
+ "iscsiConnectionAttributesEntry" : {
3148
+ "nodetype" : "row",
3149
+ "moduleName" : "ISCSI-MIB",
3150
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1",
3151
+ "status" : "current",
3152
+ "linkage" : [
3153
+ "iscsiInstIndex",
3154
+ "iscsiSsnNodeIndex",
3155
+ "iscsiSsnIndex",
3156
+ "iscsiCxnIndex",
3157
+ ],
3158
+ "description" :
3159
+ """An entry (row) containing management information applicable
3160
+ to a particular connection.""",
3161
+ }, # row
3162
+ "iscsiCxnIndex" : {
3163
+ "nodetype" : "column",
3164
+ "moduleName" : "ISCSI-MIB",
3165
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.1",
3166
+ "status" : "current",
3167
+ "syntax" : {
3168
+ "type" : {
3169
+ "basetype" : "Unsigned32",
3170
+ "ranges" : [
3171
+ {
3172
+ "min" : "1",
3173
+ "max" : "4294967295"
3174
+ },
3175
+ ],
3176
+ "range" : {
3177
+ "min" : "1",
3178
+ "max" : "4294967295"
3179
+ },
3180
+ },
3181
+ },
3182
+ "access" : "noaccess",
3183
+ "description" :
3184
+ """An arbitrary integer used to uniquely identify a
3185
+ particular connection of a particular session within
3186
+ an iSCSI instance present on the local system. An
3187
+ agent should attempt to not reuse index values unless
3188
+ a reboot has occurred. iSCSI connections are destroyed
3189
+ during a reboot; rows in this table are not persistent
3190
+ across reboots.""",
3191
+ }, # column
3192
+ "iscsiCxnCid" : {
3193
+ "nodetype" : "column",
3194
+ "moduleName" : "ISCSI-MIB",
3195
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.2",
3196
+ "status" : "current",
3197
+ "syntax" : {
3198
+ "type" : {
3199
+ "basetype" : "Unsigned32",
3200
+ "ranges" : [
3201
+ {
3202
+ "min" : "1",
3203
+ "max" : "65535"
3204
+ },
3205
+ ],
3206
+ "range" : {
3207
+ "min" : "1",
3208
+ "max" : "65535"
3209
+ },
3210
+ },
3211
+ },
3212
+ "access" : "readonly",
3213
+ "description" :
3214
+ """The iSCSI Connection ID for this connection.""",
3215
+ }, # column
3216
+ "iscsiCxnState" : {
3217
+ "nodetype" : "column",
3218
+ "moduleName" : "ISCSI-MIB",
3219
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.3",
3220
+ "status" : "current",
3221
+ "syntax" : {
3222
+ "type" : {
3223
+ "basetype" : "Enumeration",
3224
+ "login" : {
3225
+ "nodetype" : "namednumber",
3226
+ "number" : "1"
3227
+ },
3228
+ "full" : {
3229
+ "nodetype" : "namednumber",
3230
+ "number" : "2"
3231
+ },
3232
+ "logout" : {
3233
+ "nodetype" : "namednumber",
3234
+ "number" : "3"
3235
+ },
3236
+ },
3237
+ },
3238
+ "access" : "readonly",
3239
+ "description" :
3240
+ """The current state of this connection, from an iSCSI negotiation
3241
+ point of view. Here are the states:
3242
+
3243
+ login - The transport protocol connection has been established,
3244
+ but a valid iSCSI login response with the final bit set
3245
+ has not been sent or received.
3246
+ full - A valid iSCSI login response with the final bit set
3247
+ has been sent or received.
3248
+ logout - A valid iSCSI logout command has been sent or
3249
+ received, but the transport protocol connection has
3250
+ not yet been closed.""",
3251
+ }, # column
3252
+ "iscsiCxnAddrType" : {
3253
+ "nodetype" : "column",
3254
+ "moduleName" : "ISCSI-MIB",
3255
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.4",
3256
+ "status" : "current",
3257
+ "syntax" : {
3258
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
3259
+ },
3260
+ "access" : "readonly",
3261
+ "description" :
3262
+ """The type of Internet Network Addresses contained in the
3263
+ corresponding instances of iscsiCxnLocalAddr and
3264
+ iscsiCxnRemoteAddr.
3265
+ The value 'dns' is not allowed.""",
3266
+ }, # column
3267
+ "iscsiCxnLocalAddr" : {
3268
+ "nodetype" : "column",
3269
+ "moduleName" : "ISCSI-MIB",
3270
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.5",
3271
+ "status" : "current",
3272
+ "syntax" : {
3273
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
3274
+ },
3275
+ "access" : "readonly",
3276
+ "description" :
3277
+ """The local Internet Network Address, of the type specified
3278
+ by iscsiCxnAddrType, used by this connection.""",
3279
+ }, # column
3280
+ "iscsiCxnProtocol" : {
3281
+ "nodetype" : "column",
3282
+ "moduleName" : "ISCSI-MIB",
3283
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.6",
3284
+ "status" : "current",
3285
+ "syntax" : {
3286
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiTransportProtocol"},
3287
+ },
3288
+ "access" : "readonly",
3289
+ "description" :
3290
+ """The transport protocol over which this connection is
3291
+ running.""",
3292
+ }, # column
3293
+ "iscsiCxnLocalPort" : {
3294
+ "nodetype" : "column",
3295
+ "moduleName" : "ISCSI-MIB",
3296
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.7",
3297
+ "status" : "current",
3298
+ "syntax" : {
3299
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
3300
+ },
3301
+ "access" : "readonly",
3302
+ "description" :
3303
+ """The local transport protocol port used by this connection.
3304
+ This object cannot have the value zero, since it represents
3305
+ an established connection.""",
3306
+ }, # column
3307
+ "iscsiCxnRemoteAddr" : {
3308
+ "nodetype" : "column",
3309
+ "moduleName" : "ISCSI-MIB",
3310
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.8",
3311
+ "status" : "current",
3312
+ "syntax" : {
3313
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
3314
+ },
3315
+ "access" : "readonly",
3316
+ "description" :
3317
+ """The remote Internet Network Address, of the type specified
3318
+ by iscsiCxnAddrType, used by this connection.""",
3319
+ }, # column
3320
+ "iscsiCxnRemotePort" : {
3321
+ "nodetype" : "column",
3322
+ "moduleName" : "ISCSI-MIB",
3323
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.9",
3324
+ "status" : "current",
3325
+ "syntax" : {
3326
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
3327
+ },
3328
+ "access" : "readonly",
3329
+ "description" :
3330
+ """The remote transport protocol port used by this connection.
3331
+ This object cannot have the value zero, since it represents
3332
+ an established connection.""",
3333
+ }, # column
3334
+ "iscsiCxnMaxRecvDataSegLength" : {
3335
+ "nodetype" : "column",
3336
+ "moduleName" : "ISCSI-MIB",
3337
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.10",
3338
+ "status" : "current",
3339
+ "syntax" : {
3340
+ "type" : {
3341
+ "basetype" : "Unsigned32",
3342
+ "ranges" : [
3343
+ {
3344
+ "min" : "512",
3345
+ "max" : "16777215"
3346
+ },
3347
+ ],
3348
+ "range" : {
3349
+ "min" : "512",
3350
+ "max" : "16777215"
3351
+ },
3352
+ },
3353
+ },
3354
+ "access" : "readonly",
3355
+ "units" : "bytes",
3356
+ "description" :
3357
+ """The maximum data payload size supported for command
3358
+ or data PDUs able to be received on this connection.""",
3359
+ "reference" :
3360
+ """RFC 3720, Section 12.12, MaxRecvDataSegmentLength""",
3361
+ }, # column
3362
+ "iscsiCxnMaxXmitDataSegLength" : {
3363
+ "nodetype" : "column",
3364
+ "moduleName" : "ISCSI-MIB",
3365
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.11",
3366
+ "status" : "current",
3367
+ "syntax" : {
3368
+ "type" : {
3369
+ "basetype" : "Unsigned32",
3370
+ "ranges" : [
3371
+ {
3372
+ "min" : "512",
3373
+ "max" : "16777215"
3374
+ },
3375
+ ],
3376
+ "range" : {
3377
+ "min" : "512",
3378
+ "max" : "16777215"
3379
+ },
3380
+ },
3381
+ },
3382
+ "access" : "readonly",
3383
+ "units" : "bytes",
3384
+ "description" :
3385
+ """The maximum data payload size supported for command
3386
+ or data PDUs to be sent on this connection.""",
3387
+ "reference" :
3388
+ """RFC 3720, Section 12.12, MaxRecvDataSegmentLength""",
3389
+ }, # column
3390
+ "iscsiCxnHeaderIntegrity" : {
3391
+ "nodetype" : "column",
3392
+ "moduleName" : "ISCSI-MIB",
3393
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.12",
3394
+ "status" : "current",
3395
+ "syntax" : {
3396
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiDigestMethod"},
3397
+ },
3398
+ "access" : "readonly",
3399
+ "description" :
3400
+ """This object identifies the iSCSI header
3401
+ digest scheme in use within this connection.""",
3402
+ }, # column
3403
+ "iscsiCxnDataIntegrity" : {
3404
+ "nodetype" : "column",
3405
+ "moduleName" : "ISCSI-MIB",
3406
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.13",
3407
+ "status" : "current",
3408
+ "syntax" : {
3409
+ "type" : { "module" :"ISCSI-MIB", "name" : "IscsiDigestMethod"},
3410
+ },
3411
+ "access" : "readonly",
3412
+ "description" :
3413
+ """This object identifies the iSCSI data
3414
+ digest scheme in use within this connection.""",
3415
+ }, # column
3416
+ "iscsiCxnRecvMarker" : {
3417
+ "nodetype" : "column",
3418
+ "moduleName" : "ISCSI-MIB",
3419
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.14",
3420
+ "status" : "current",
3421
+ "syntax" : {
3422
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3423
+ },
3424
+ "access" : "readonly",
3425
+ "description" :
3426
+ """This object indicates whether or not this connection
3427
+ is receiving markers in its incoming data stream.""",
3428
+ "reference" :
3429
+ """RFC 3720, Appendix A.""",
3430
+ }, # column
3431
+ "iscsiCxnSendMarker" : {
3432
+ "nodetype" : "column",
3433
+ "moduleName" : "ISCSI-MIB",
3434
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.15",
3435
+ "status" : "current",
3436
+ "syntax" : {
3437
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3438
+ },
3439
+ "access" : "readonly",
3440
+ "description" :
3441
+ """This object indicates whether or not this connection
3442
+ is inserting markers in its outgoing data stream.""",
3443
+ "reference" :
3444
+ """RFC 3720, Appendix A.""",
3445
+ }, # column
3446
+ "iscsiCxnVersionActive" : {
3447
+ "nodetype" : "column",
3448
+ "moduleName" : "ISCSI-MIB",
3449
+ "oid" : "1.3.6.1.2.1.142.1.11.1.1.16",
3450
+ "status" : "current",
3451
+ "syntax" : {
3452
+ "type" : {
3453
+ "basetype" : "Unsigned32",
3454
+ "ranges" : [
3455
+ {
3456
+ "min" : "0",
3457
+ "max" : "255"
3458
+ },
3459
+ ],
3460
+ "range" : {
3461
+ "min" : "0",
3462
+ "max" : "255"
3463
+ },
3464
+ },
3465
+ },
3466
+ "access" : "readonly",
3467
+ "description" :
3468
+ """Active version number of the iSCSI specification negotiated
3469
+ on this connection.""",
3470
+ "reference" :
3471
+ """RFC 3720, Section 10.12, Login Request""",
3472
+ }, # column
3473
+ "iscsiConformance" : {
3474
+ "nodetype" : "node",
3475
+ "moduleName" : "ISCSI-MIB",
3476
+ "oid" : "1.3.6.1.2.1.142.2",
3477
+ }, # node
3478
+ "iscsiCompliances" : {
3479
+ "nodetype" : "node",
3480
+ "moduleName" : "ISCSI-MIB",
3481
+ "oid" : "1.3.6.1.2.1.142.2.1",
3482
+ }, # node
3483
+ "iscsiGroups" : {
3484
+ "nodetype" : "node",
3485
+ "moduleName" : "ISCSI-MIB",
3486
+ "oid" : "1.3.6.1.2.1.142.2.2",
3487
+ }, # node
3488
+ "iscsiAdmin" : {
3489
+ "nodetype" : "node",
3490
+ "moduleName" : "ISCSI-MIB",
3491
+ "oid" : "1.3.6.1.2.1.142.3",
3492
+ }, # node
3493
+ "iscsiDescriptors" : {
3494
+ "nodetype" : "node",
3495
+ "moduleName" : "ISCSI-MIB",
3496
+ "oid" : "1.3.6.1.2.1.142.3.1",
3497
+ }, # node
3498
+ "iscsiHeaderIntegrityTypes" : {
3499
+ "nodetype" : "node",
3500
+ "moduleName" : "ISCSI-MIB",
3501
+ "oid" : "1.3.6.1.2.1.142.3.1.1",
3502
+ }, # node
3503
+ "iscsiHdrIntegrityNone" : {
3504
+ "nodetype" : "node",
3505
+ "moduleName" : "ISCSI-MIB",
3506
+ "oid" : "1.3.6.1.2.1.142.3.1.1.1",
3507
+ "status" : "current",
3508
+ "description" :
3509
+ """The authoritative identifier when no integrity
3510
+ scheme (for either the header or data) is being
3511
+
3512
+
3513
+
3514
+ used.""",
3515
+ "reference" :
3516
+ """RFC 3720, Section 12.1, HeaderDigest and DataDigest""",
3517
+ }, # node
3518
+ "iscsiHdrIntegrityCrc32c" : {
3519
+ "nodetype" : "node",
3520
+ "moduleName" : "ISCSI-MIB",
3521
+ "oid" : "1.3.6.1.2.1.142.3.1.1.2",
3522
+ "status" : "current",
3523
+ "description" :
3524
+ """The authoritative identifier when the integrity
3525
+ scheme (for either the header or data) is CRC32c.""",
3526
+ "reference" :
3527
+ """RFC 3720, Section 12.1, HeaderDigest and DataDigest""",
3528
+ }, # node
3529
+ "iscsiDataIntegrityTypes" : {
3530
+ "nodetype" : "node",
3531
+ "moduleName" : "ISCSI-MIB",
3532
+ "oid" : "1.3.6.1.2.1.142.3.1.2",
3533
+ }, # node
3534
+ "iscsiDataIntegrityNone" : {
3535
+ "nodetype" : "node",
3536
+ "moduleName" : "ISCSI-MIB",
3537
+ "oid" : "1.3.6.1.2.1.142.3.1.2.1",
3538
+ "status" : "current",
3539
+ "description" :
3540
+ """The authoritative identifier when no integrity
3541
+ scheme (for either the header or data) is being
3542
+ used.""",
3543
+ "reference" :
3544
+ """RFC 3720, Section 12.1, HeaderDigest and DataDigest""",
3545
+ }, # node
3546
+ "iscsiDataIntegrityCrc32c" : {
3547
+ "nodetype" : "node",
3548
+ "moduleName" : "ISCSI-MIB",
3549
+ "oid" : "1.3.6.1.2.1.142.3.1.2.2",
3550
+ "status" : "current",
3551
+ "description" :
3552
+ """The authoritative identifier when the integrity
3553
+ scheme (for either the header or data) is CRC32c.""",
3554
+ "reference" :
3555
+ """RFC 3720, Section 12.1, HeaderDigest and DataDigest""",
3556
+ }, # node
3557
+ }, # nodes
3558
+
3559
+ "notifications" : {
3560
+ "iscsiTgtLoginFailure" : {
3561
+ "nodetype" : "notification",
3562
+ "moduleName" : "ISCSI-MIB",
3563
+ "oid" : "1.3.6.1.2.1.142.0.1",
3564
+ "status" : "current",
3565
+ "objects" : {
3566
+ "iscsiTgtLoginFailures" : {
3567
+ "nodetype" : "object",
3568
+ "module" : "ISCSI-MIB"
3569
+ },
3570
+ "iscsiTgtLastFailureType" : {
3571
+ "nodetype" : "object",
3572
+ "module" : "ISCSI-MIB"
3573
+ },
3574
+ "iscsiTgtLastIntrFailureName" : {
3575
+ "nodetype" : "object",
3576
+ "module" : "ISCSI-MIB"
3577
+ },
3578
+ "iscsiTgtLastIntrFailureAddrType" : {
3579
+ "nodetype" : "object",
3580
+ "module" : "ISCSI-MIB"
3581
+ },
3582
+ "iscsiTgtLastIntrFailureAddr" : {
3583
+ "nodetype" : "object",
3584
+ "module" : "ISCSI-MIB"
3585
+ },
3586
+ },
3587
+ "description" :
3588
+ """Sent when a login is failed by a target.
3589
+
3590
+ To avoid sending an excessive number of notifications due
3591
+ to multiple errors counted, an SNMP agent implementing this
3592
+ notification SHOULD NOT send more than 3 notifications of
3593
+ this type in any 10-second time period.""",
3594
+ }, # notification
3595
+ "iscsiIntrLoginFailure" : {
3596
+ "nodetype" : "notification",
3597
+ "moduleName" : "ISCSI-MIB",
3598
+ "oid" : "1.3.6.1.2.1.142.0.2",
3599
+ "status" : "current",
3600
+ "objects" : {
3601
+ "iscsiIntrLoginFailures" : {
3602
+ "nodetype" : "object",
3603
+ "module" : "ISCSI-MIB"
3604
+ },
3605
+ "iscsiIntrLastFailureType" : {
3606
+ "nodetype" : "object",
3607
+ "module" : "ISCSI-MIB"
3608
+ },
3609
+ "iscsiIntrLastTgtFailureName" : {
3610
+ "nodetype" : "object",
3611
+ "module" : "ISCSI-MIB"
3612
+ },
3613
+ "iscsiIntrLastTgtFailureAddrType" : {
3614
+ "nodetype" : "object",
3615
+ "module" : "ISCSI-MIB"
3616
+ },
3617
+ "iscsiIntrLastTgtFailureAddr" : {
3618
+ "nodetype" : "object",
3619
+ "module" : "ISCSI-MIB"
3620
+ },
3621
+ },
3622
+ "description" :
3623
+ """Sent when a login is failed by an initiator.
3624
+
3625
+ To avoid sending an excessive number of notifications due
3626
+ to multiple errors counted, an SNMP agent implementing this
3627
+ notification SHOULD NOT send more than 3 notifications of
3628
+ this type in any 10-second time period.""",
3629
+ }, # notification
3630
+ "iscsiInstSessionFailure" : {
3631
+ "nodetype" : "notification",
3632
+ "moduleName" : "ISCSI-MIB",
3633
+ "oid" : "1.3.6.1.2.1.142.0.3",
3634
+ "status" : "current",
3635
+ "objects" : {
3636
+ "iscsiInstSsnFailures" : {
3637
+ "nodetype" : "object",
3638
+ "module" : "ISCSI-MIB"
3639
+ },
3640
+ "iscsiInstLastSsnFailureType" : {
3641
+ "nodetype" : "object",
3642
+ "module" : "ISCSI-MIB"
3643
+ },
3644
+ "iscsiInstLastSsnRmtNodeName" : {
3645
+ "nodetype" : "object",
3646
+ "module" : "ISCSI-MIB"
3647
+ },
3648
+ },
3649
+ "description" :
3650
+ """Sent when an active session is failed by either the initiator
3651
+ or the target.
3652
+
3653
+ To avoid sending an excessive number of notifications due
3654
+ to multiple errors counted, an SNMP agent implementing this
3655
+ notification SHOULD NOT send more than 3 notifications of
3656
+ this type in any 10-second time period.""",
3657
+ }, # notification
3658
+ }, # notifications
3659
+
3660
+ "groups" : {
3661
+ "iscsiInstanceAttributesGroup" : {
3662
+ "nodetype" : "group",
3663
+ "moduleName" : "ISCSI-MIB",
3664
+ "oid" : "1.3.6.1.2.1.142.2.2.1",
3665
+ "status" : "current",
3666
+ "members" : {
3667
+ "iscsiInstDescr" : {
3668
+ "nodetype" : "member",
3669
+ "module" : "ISCSI-MIB"
3670
+ },
3671
+ "iscsiInstVersionMin" : {
3672
+ "nodetype" : "member",
3673
+ "module" : "ISCSI-MIB"
3674
+ },
3675
+ "iscsiInstVersionMax" : {
3676
+ "nodetype" : "member",
3677
+ "module" : "ISCSI-MIB"
3678
+ },
3679
+ "iscsiInstVendorID" : {
3680
+ "nodetype" : "member",
3681
+ "module" : "ISCSI-MIB"
3682
+ },
3683
+ "iscsiInstVendorVersion" : {
3684
+ "nodetype" : "member",
3685
+ "module" : "ISCSI-MIB"
3686
+ },
3687
+ "iscsiInstPortalNumber" : {
3688
+ "nodetype" : "member",
3689
+ "module" : "ISCSI-MIB"
3690
+ },
3691
+ "iscsiInstNodeNumber" : {
3692
+ "nodetype" : "member",
3693
+ "module" : "ISCSI-MIB"
3694
+ },
3695
+ "iscsiInstSessionNumber" : {
3696
+ "nodetype" : "member",
3697
+ "module" : "ISCSI-MIB"
3698
+ },
3699
+ "iscsiInstSsnFailures" : {
3700
+ "nodetype" : "member",
3701
+ "module" : "ISCSI-MIB"
3702
+ },
3703
+ "iscsiInstLastSsnFailureType" : {
3704
+ "nodetype" : "member",
3705
+ "module" : "ISCSI-MIB"
3706
+ },
3707
+ "iscsiInstLastSsnRmtNodeName" : {
3708
+ "nodetype" : "member",
3709
+ "module" : "ISCSI-MIB"
3710
+ },
3711
+ "iscsiInstDiscontinuityTime" : {
3712
+ "nodetype" : "member",
3713
+ "module" : "ISCSI-MIB"
3714
+ },
3715
+ }, # members
3716
+ "description" :
3717
+ """A collection of objects providing information about iSCSI
3718
+ instances.""",
3719
+ }, # group
3720
+ "iscsiInstanceSsnErrorStatsGroup" : {
3721
+ "nodetype" : "group",
3722
+ "moduleName" : "ISCSI-MIB",
3723
+ "oid" : "1.3.6.1.2.1.142.2.2.2",
3724
+ "status" : "current",
3725
+ "members" : {
3726
+ "iscsiInstSsnDigestErrors" : {
3727
+ "nodetype" : "member",
3728
+ "module" : "ISCSI-MIB"
3729
+ },
3730
+ "iscsiInstSsnCxnTimeoutErrors" : {
3731
+ "nodetype" : "member",
3732
+ "module" : "ISCSI-MIB"
3733
+ },
3734
+ "iscsiInstSsnFormatErrors" : {
3735
+ "nodetype" : "member",
3736
+ "module" : "ISCSI-MIB"
3737
+ },
3738
+ }, # members
3739
+ "description" :
3740
+ """A collection of objects providing information about
3741
+ errors that have caused a session failure for an
3742
+ iSCSI instance.""",
3743
+ }, # group
3744
+ "iscsiPortalAttributesGroup" : {
3745
+ "nodetype" : "group",
3746
+ "moduleName" : "ISCSI-MIB",
3747
+ "oid" : "1.3.6.1.2.1.142.2.2.3",
3748
+ "status" : "current",
3749
+ "members" : {
3750
+ "iscsiPortalRowStatus" : {
3751
+ "nodetype" : "member",
3752
+ "module" : "ISCSI-MIB"
3753
+ },
3754
+ "iscsiPortalStorageType" : {
3755
+ "nodetype" : "member",
3756
+ "module" : "ISCSI-MIB"
3757
+ },
3758
+ "iscsiPortalRoles" : {
3759
+ "nodetype" : "member",
3760
+ "module" : "ISCSI-MIB"
3761
+ },
3762
+ "iscsiPortalAddrType" : {
3763
+ "nodetype" : "member",
3764
+ "module" : "ISCSI-MIB"
3765
+ },
3766
+ "iscsiPortalAddr" : {
3767
+ "nodetype" : "member",
3768
+ "module" : "ISCSI-MIB"
3769
+ },
3770
+ "iscsiPortalProtocol" : {
3771
+ "nodetype" : "member",
3772
+ "module" : "ISCSI-MIB"
3773
+ },
3774
+ "iscsiPortalMaxRecvDataSegLength" : {
3775
+ "nodetype" : "member",
3776
+ "module" : "ISCSI-MIB"
3777
+ },
3778
+ "iscsiPortalPrimaryHdrDigest" : {
3779
+ "nodetype" : "member",
3780
+ "module" : "ISCSI-MIB"
3781
+ },
3782
+ "iscsiPortalPrimaryDataDigest" : {
3783
+ "nodetype" : "member",
3784
+ "module" : "ISCSI-MIB"
3785
+ },
3786
+ "iscsiPortalSecondaryHdrDigest" : {
3787
+ "nodetype" : "member",
3788
+ "module" : "ISCSI-MIB"
3789
+ },
3790
+ "iscsiPortalSecondaryDataDigest" : {
3791
+ "nodetype" : "member",
3792
+ "module" : "ISCSI-MIB"
3793
+ },
3794
+ "iscsiPortalRecvMarker" : {
3795
+ "nodetype" : "member",
3796
+ "module" : "ISCSI-MIB"
3797
+ },
3798
+ }, # members
3799
+ "description" :
3800
+ """A collection of objects providing information about
3801
+ the transport protocol endpoints of the local targets.""",
3802
+ }, # group
3803
+ "iscsiTgtPortalAttributesGroup" : {
3804
+ "nodetype" : "group",
3805
+ "moduleName" : "ISCSI-MIB",
3806
+ "oid" : "1.3.6.1.2.1.142.2.2.4",
3807
+ "status" : "current",
3808
+ "members" : {
3809
+ "iscsiTgtPortalPort" : {
3810
+ "nodetype" : "member",
3811
+ "module" : "ISCSI-MIB"
3812
+ },
3813
+ "iscsiTgtPortalTag" : {
3814
+ "nodetype" : "member",
3815
+ "module" : "ISCSI-MIB"
3816
+ },
3817
+ }, # members
3818
+ "description" :
3819
+ """A collection of objects providing information about
3820
+ the transport protocol endpoints of the local targets.""",
3821
+ }, # group
3822
+ "iscsiIntrPortalAttributesGroup" : {
3823
+ "nodetype" : "group",
3824
+ "moduleName" : "ISCSI-MIB",
3825
+ "oid" : "1.3.6.1.2.1.142.2.2.5",
3826
+ "status" : "current",
3827
+ "members" : {
3828
+ "iscsiIntrPortalTag" : {
3829
+ "nodetype" : "member",
3830
+ "module" : "ISCSI-MIB"
3831
+ },
3832
+ }, # members
3833
+ "description" :
3834
+ """An object providing information about
3835
+ the portal tags used by the local initiators.""",
3836
+ }, # group
3837
+ "iscsiNodeAttributesGroup" : {
3838
+ "nodetype" : "group",
3839
+ "moduleName" : "ISCSI-MIB",
3840
+ "oid" : "1.3.6.1.2.1.142.2.2.6",
3841
+ "status" : "current",
3842
+ "members" : {
3843
+ "iscsiNodeName" : {
3844
+ "nodetype" : "member",
3845
+ "module" : "ISCSI-MIB"
3846
+ },
3847
+ "iscsiNodeAlias" : {
3848
+ "nodetype" : "member",
3849
+ "module" : "ISCSI-MIB"
3850
+ },
3851
+ "iscsiNodeRoles" : {
3852
+ "nodetype" : "member",
3853
+ "module" : "ISCSI-MIB"
3854
+ },
3855
+ "iscsiNodeTransportType" : {
3856
+ "nodetype" : "member",
3857
+ "module" : "ISCSI-MIB"
3858
+ },
3859
+ "iscsiNodeInitialR2T" : {
3860
+ "nodetype" : "member",
3861
+ "module" : "ISCSI-MIB"
3862
+ },
3863
+ "iscsiNodeImmediateData" : {
3864
+ "nodetype" : "member",
3865
+ "module" : "ISCSI-MIB"
3866
+ },
3867
+ "iscsiNodeMaxOutstandingR2T" : {
3868
+ "nodetype" : "member",
3869
+ "module" : "ISCSI-MIB"
3870
+ },
3871
+ "iscsiNodeFirstBurstLength" : {
3872
+ "nodetype" : "member",
3873
+ "module" : "ISCSI-MIB"
3874
+ },
3875
+ "iscsiNodeMaxBurstLength" : {
3876
+ "nodetype" : "member",
3877
+ "module" : "ISCSI-MIB"
3878
+ },
3879
+ "iscsiNodeMaxConnections" : {
3880
+ "nodetype" : "member",
3881
+ "module" : "ISCSI-MIB"
3882
+ },
3883
+ "iscsiNodeDataSequenceInOrder" : {
3884
+ "nodetype" : "member",
3885
+ "module" : "ISCSI-MIB"
3886
+ },
3887
+ "iscsiNodeDataPDUInOrder" : {
3888
+ "nodetype" : "member",
3889
+ "module" : "ISCSI-MIB"
3890
+ },
3891
+ "iscsiNodeDefaultTime2Wait" : {
3892
+ "nodetype" : "member",
3893
+ "module" : "ISCSI-MIB"
3894
+ },
3895
+ "iscsiNodeDefaultTime2Retain" : {
3896
+ "nodetype" : "member",
3897
+ "module" : "ISCSI-MIB"
3898
+ },
3899
+ "iscsiNodeErrorRecoveryLevel" : {
3900
+ "nodetype" : "member",
3901
+ "module" : "ISCSI-MIB"
3902
+ },
3903
+ "iscsiNodeDiscontinuityTime" : {
3904
+ "nodetype" : "member",
3905
+ "module" : "ISCSI-MIB"
3906
+ },
3907
+ "iscsiNodeStorageType" : {
3908
+ "nodetype" : "member",
3909
+ "module" : "ISCSI-MIB"
3910
+ },
3911
+ }, # members
3912
+ "description" :
3913
+ """A collection of objects providing information about all
3914
+ local targets.""",
3915
+ }, # group
3916
+ "iscsiTargetAttributesGroup" : {
3917
+ "nodetype" : "group",
3918
+ "moduleName" : "ISCSI-MIB",
3919
+ "oid" : "1.3.6.1.2.1.142.2.2.7",
3920
+ "status" : "current",
3921
+ "members" : {
3922
+ "iscsiTgtLoginFailures" : {
3923
+ "nodetype" : "member",
3924
+ "module" : "ISCSI-MIB"
3925
+ },
3926
+ "iscsiTgtLastFailureTime" : {
3927
+ "nodetype" : "member",
3928
+ "module" : "ISCSI-MIB"
3929
+ },
3930
+ "iscsiTgtLastFailureType" : {
3931
+ "nodetype" : "member",
3932
+ "module" : "ISCSI-MIB"
3933
+ },
3934
+ "iscsiTgtLastIntrFailureName" : {
3935
+ "nodetype" : "member",
3936
+ "module" : "ISCSI-MIB"
3937
+ },
3938
+ "iscsiTgtLastIntrFailureAddrType" : {
3939
+ "nodetype" : "member",
3940
+ "module" : "ISCSI-MIB"
3941
+ },
3942
+ "iscsiTgtLastIntrFailureAddr" : {
3943
+ "nodetype" : "member",
3944
+ "module" : "ISCSI-MIB"
3945
+ },
3946
+ }, # members
3947
+ "description" :
3948
+ """A collection of objects providing information about all
3949
+ local targets.""",
3950
+ }, # group
3951
+ "iscsiTargetLoginStatsGroup" : {
3952
+ "nodetype" : "group",
3953
+ "moduleName" : "ISCSI-MIB",
3954
+ "oid" : "1.3.6.1.2.1.142.2.2.8",
3955
+ "status" : "current",
3956
+ "members" : {
3957
+ "iscsiTgtLoginAccepts" : {
3958
+ "nodetype" : "member",
3959
+ "module" : "ISCSI-MIB"
3960
+ },
3961
+ "iscsiTgtLoginOtherFails" : {
3962
+ "nodetype" : "member",
3963
+ "module" : "ISCSI-MIB"
3964
+ },
3965
+ "iscsiTgtLoginRedirects" : {
3966
+ "nodetype" : "member",
3967
+ "module" : "ISCSI-MIB"
3968
+ },
3969
+ "iscsiTgtLoginAuthorizeFails" : {
3970
+ "nodetype" : "member",
3971
+ "module" : "ISCSI-MIB"
3972
+ },
3973
+ "iscsiTgtLoginAuthenticateFails" : {
3974
+ "nodetype" : "member",
3975
+ "module" : "ISCSI-MIB"
3976
+ },
3977
+ "iscsiTgtLoginNegotiateFails" : {
3978
+ "nodetype" : "member",
3979
+ "module" : "ISCSI-MIB"
3980
+ },
3981
+ }, # members
3982
+ "description" :
3983
+ """A collection of objects providing information about all
3984
+ login attempts by remote initiators to local targets.""",
3985
+ }, # group
3986
+ "iscsiTargetLogoutStatsGroup" : {
3987
+ "nodetype" : "group",
3988
+ "moduleName" : "ISCSI-MIB",
3989
+ "oid" : "1.3.6.1.2.1.142.2.2.9",
3990
+ "status" : "current",
3991
+ "members" : {
3992
+ "iscsiTgtLogoutNormals" : {
3993
+ "nodetype" : "member",
3994
+ "module" : "ISCSI-MIB"
3995
+ },
3996
+ "iscsiTgtLogoutOthers" : {
3997
+ "nodetype" : "member",
3998
+ "module" : "ISCSI-MIB"
3999
+ },
4000
+ }, # members
4001
+ "description" :
4002
+ """A collection of objects providing information about all
4003
+ logout events between remote initiators and local targets.""",
4004
+ }, # group
4005
+ "iscsiTargetAuthGroup" : {
4006
+ "nodetype" : "group",
4007
+ "moduleName" : "ISCSI-MIB",
4008
+ "oid" : "1.3.6.1.2.1.142.2.2.10",
4009
+ "status" : "current",
4010
+ "members" : {
4011
+ "iscsiTgtAuthRowStatus" : {
4012
+ "nodetype" : "member",
4013
+ "module" : "ISCSI-MIB"
4014
+ },
4015
+ "iscsiTgtAuthStorageType" : {
4016
+ "nodetype" : "member",
4017
+ "module" : "ISCSI-MIB"
4018
+ },
4019
+ "iscsiTgtAuthIdentity" : {
4020
+ "nodetype" : "member",
4021
+ "module" : "ISCSI-MIB"
4022
+ },
4023
+ }, # members
4024
+ "description" :
4025
+ """A collection of objects providing information about all
4026
+ remote initiators that are authorized to connect to local
4027
+ targets.""",
4028
+ }, # group
4029
+ "iscsiInitiatorAttributesGroup" : {
4030
+ "nodetype" : "group",
4031
+ "moduleName" : "ISCSI-MIB",
4032
+ "oid" : "1.3.6.1.2.1.142.2.2.11",
4033
+ "status" : "current",
4034
+ "members" : {
4035
+ "iscsiIntrLoginFailures" : {
4036
+ "nodetype" : "member",
4037
+ "module" : "ISCSI-MIB"
4038
+ },
4039
+ "iscsiIntrLastFailureTime" : {
4040
+ "nodetype" : "member",
4041
+ "module" : "ISCSI-MIB"
4042
+ },
4043
+ "iscsiIntrLastFailureType" : {
4044
+ "nodetype" : "member",
4045
+ "module" : "ISCSI-MIB"
4046
+ },
4047
+ "iscsiIntrLastTgtFailureName" : {
4048
+ "nodetype" : "member",
4049
+ "module" : "ISCSI-MIB"
4050
+ },
4051
+ "iscsiIntrLastTgtFailureAddrType" : {
4052
+ "nodetype" : "member",
4053
+ "module" : "ISCSI-MIB"
4054
+ },
4055
+ "iscsiIntrLastTgtFailureAddr" : {
4056
+ "nodetype" : "member",
4057
+ "module" : "ISCSI-MIB"
4058
+ },
4059
+ }, # members
4060
+ "description" :
4061
+ """A collection of objects providing information about
4062
+ all local initiators.""",
4063
+ }, # group
4064
+ "iscsiInitiatorLoginStatsGroup" : {
4065
+ "nodetype" : "group",
4066
+ "moduleName" : "ISCSI-MIB",
4067
+ "oid" : "1.3.6.1.2.1.142.2.2.12",
4068
+ "status" : "current",
4069
+ "members" : {
4070
+ "iscsiIntrLoginAcceptRsps" : {
4071
+ "nodetype" : "member",
4072
+ "module" : "ISCSI-MIB"
4073
+ },
4074
+ "iscsiIntrLoginOtherFailRsps" : {
4075
+ "nodetype" : "member",
4076
+ "module" : "ISCSI-MIB"
4077
+ },
4078
+ "iscsiIntrLoginRedirectRsps" : {
4079
+ "nodetype" : "member",
4080
+ "module" : "ISCSI-MIB"
4081
+ },
4082
+ "iscsiIntrLoginAuthFailRsps" : {
4083
+ "nodetype" : "member",
4084
+ "module" : "ISCSI-MIB"
4085
+ },
4086
+ "iscsiIntrLoginAuthenticateFails" : {
4087
+ "nodetype" : "member",
4088
+ "module" : "ISCSI-MIB"
4089
+ },
4090
+ "iscsiIntrLoginNegotiateFails" : {
4091
+ "nodetype" : "member",
4092
+ "module" : "ISCSI-MIB"
4093
+ },
4094
+ }, # members
4095
+ "description" :
4096
+ """A collection of objects providing information about all
4097
+ login attempts by local initiators to remote targets.""",
4098
+ }, # group
4099
+ "iscsiInitiatorLogoutStatsGroup" : {
4100
+ "nodetype" : "group",
4101
+ "moduleName" : "ISCSI-MIB",
4102
+ "oid" : "1.3.6.1.2.1.142.2.2.13",
4103
+ "status" : "current",
4104
+ "members" : {
4105
+ "iscsiIntrLogoutNormals" : {
4106
+ "nodetype" : "member",
4107
+ "module" : "ISCSI-MIB"
4108
+ },
4109
+ "iscsiIntrLogoutOthers" : {
4110
+ "nodetype" : "member",
4111
+ "module" : "ISCSI-MIB"
4112
+ },
4113
+ }, # members
4114
+ "description" :
4115
+ """A collection of objects providing information about all
4116
+ logout events between local initiators and remote targets.""",
4117
+ }, # group
4118
+ "iscsiInitiatorAuthGroup" : {
4119
+ "nodetype" : "group",
4120
+ "moduleName" : "ISCSI-MIB",
4121
+ "oid" : "1.3.6.1.2.1.142.2.2.14",
4122
+ "status" : "current",
4123
+ "members" : {
4124
+ "iscsiIntrAuthRowStatus" : {
4125
+ "nodetype" : "member",
4126
+ "module" : "ISCSI-MIB"
4127
+ },
4128
+ "iscsiIntrAuthStorageType" : {
4129
+ "nodetype" : "member",
4130
+ "module" : "ISCSI-MIB"
4131
+ },
4132
+ "iscsiIntrAuthIdentity" : {
4133
+ "nodetype" : "member",
4134
+ "module" : "ISCSI-MIB"
4135
+ },
4136
+ }, # members
4137
+ "description" :
4138
+ """A collection of objects providing information about all
4139
+ remote targets that are initiators of the local system
4140
+ that they are authorized to access.""",
4141
+ }, # group
4142
+ "iscsiSessionAttributesGroup" : {
4143
+ "nodetype" : "group",
4144
+ "moduleName" : "ISCSI-MIB",
4145
+ "oid" : "1.3.6.1.2.1.142.2.2.15",
4146
+ "status" : "current",
4147
+ "members" : {
4148
+ "iscsiSsnDirection" : {
4149
+ "nodetype" : "member",
4150
+ "module" : "ISCSI-MIB"
4151
+ },
4152
+ "iscsiSsnInitiatorName" : {
4153
+ "nodetype" : "member",
4154
+ "module" : "ISCSI-MIB"
4155
+ },
4156
+ "iscsiSsnTargetName" : {
4157
+ "nodetype" : "member",
4158
+ "module" : "ISCSI-MIB"
4159
+ },
4160
+ "iscsiSsnTSIH" : {
4161
+ "nodetype" : "member",
4162
+ "module" : "ISCSI-MIB"
4163
+ },
4164
+ "iscsiSsnISID" : {
4165
+ "nodetype" : "member",
4166
+ "module" : "ISCSI-MIB"
4167
+ },
4168
+ "iscsiSsnInitiatorAlias" : {
4169
+ "nodetype" : "member",
4170
+ "module" : "ISCSI-MIB"
4171
+ },
4172
+ "iscsiSsnTargetAlias" : {
4173
+ "nodetype" : "member",
4174
+ "module" : "ISCSI-MIB"
4175
+ },
4176
+ "iscsiSsnInitialR2T" : {
4177
+ "nodetype" : "member",
4178
+ "module" : "ISCSI-MIB"
4179
+ },
4180
+ "iscsiSsnImmediateData" : {
4181
+ "nodetype" : "member",
4182
+ "module" : "ISCSI-MIB"
4183
+ },
4184
+ "iscsiSsnType" : {
4185
+ "nodetype" : "member",
4186
+ "module" : "ISCSI-MIB"
4187
+ },
4188
+ "iscsiSsnMaxOutstandingR2T" : {
4189
+ "nodetype" : "member",
4190
+ "module" : "ISCSI-MIB"
4191
+ },
4192
+ "iscsiSsnFirstBurstLength" : {
4193
+ "nodetype" : "member",
4194
+ "module" : "ISCSI-MIB"
4195
+ },
4196
+ "iscsiSsnMaxBurstLength" : {
4197
+ "nodetype" : "member",
4198
+ "module" : "ISCSI-MIB"
4199
+ },
4200
+ "iscsiSsnConnectionNumber" : {
4201
+ "nodetype" : "member",
4202
+ "module" : "ISCSI-MIB"
4203
+ },
4204
+ "iscsiSsnAuthIdentity" : {
4205
+ "nodetype" : "member",
4206
+ "module" : "ISCSI-MIB"
4207
+ },
4208
+ "iscsiSsnDataSequenceInOrder" : {
4209
+ "nodetype" : "member",
4210
+ "module" : "ISCSI-MIB"
4211
+ },
4212
+ "iscsiSsnDataPDUInOrder" : {
4213
+ "nodetype" : "member",
4214
+ "module" : "ISCSI-MIB"
4215
+ },
4216
+ "iscsiSsnErrorRecoveryLevel" : {
4217
+ "nodetype" : "member",
4218
+ "module" : "ISCSI-MIB"
4219
+ },
4220
+ "iscsiSsnDiscontinuityTime" : {
4221
+ "nodetype" : "member",
4222
+ "module" : "ISCSI-MIB"
4223
+ },
4224
+ }, # members
4225
+ "description" :
4226
+ """A collection of objects providing information applicable to
4227
+ all sessions.""",
4228
+ }, # group
4229
+ "iscsiSessionPDUStatsGroup" : {
4230
+ "nodetype" : "group",
4231
+ "moduleName" : "ISCSI-MIB",
4232
+ "oid" : "1.3.6.1.2.1.142.2.2.16",
4233
+ "status" : "current",
4234
+ "members" : {
4235
+ "iscsiSsnCmdPDUs" : {
4236
+ "nodetype" : "member",
4237
+ "module" : "ISCSI-MIB"
4238
+ },
4239
+ "iscsiSsnRspPDUs" : {
4240
+ "nodetype" : "member",
4241
+ "module" : "ISCSI-MIB"
4242
+ },
4243
+ }, # members
4244
+ "description" :
4245
+ """A collection of objects providing information about PDU
4246
+ traffic for each session.""",
4247
+ }, # group
4248
+ "iscsiSessionOctetStatsGroup" : {
4249
+ "nodetype" : "group",
4250
+ "moduleName" : "ISCSI-MIB",
4251
+ "oid" : "1.3.6.1.2.1.142.2.2.17",
4252
+ "status" : "current",
4253
+ "members" : {
4254
+ "iscsiSsnTxDataOctets" : {
4255
+ "nodetype" : "member",
4256
+ "module" : "ISCSI-MIB"
4257
+ },
4258
+ "iscsiSsnRxDataOctets" : {
4259
+ "nodetype" : "member",
4260
+ "module" : "ISCSI-MIB"
4261
+ },
4262
+ }, # members
4263
+ "description" :
4264
+ """A collection of objects providing information about octet
4265
+ traffic for each session using a Counter64 data type.""",
4266
+ }, # group
4267
+ "iscsiSessionLCOctetStatsGroup" : {
4268
+ "nodetype" : "group",
4269
+ "moduleName" : "ISCSI-MIB",
4270
+ "oid" : "1.3.6.1.2.1.142.2.2.18",
4271
+ "status" : "current",
4272
+ "members" : {
4273
+ "iscsiSsnLCTxDataOctets" : {
4274
+ "nodetype" : "member",
4275
+ "module" : "ISCSI-MIB"
4276
+ },
4277
+ "iscsiSsnLCRxDataOctets" : {
4278
+ "nodetype" : "member",
4279
+ "module" : "ISCSI-MIB"
4280
+ },
4281
+ }, # members
4282
+ "description" :
4283
+ """A collection of objects providing information about octet
4284
+ traffic for each session using a Counter32 data type.""",
4285
+ }, # group
4286
+ "iscsiSessionCxnErrorStatsGroup" : {
4287
+ "nodetype" : "group",
4288
+ "moduleName" : "ISCSI-MIB",
4289
+ "oid" : "1.3.6.1.2.1.142.2.2.19",
4290
+ "status" : "current",
4291
+ "members" : {
4292
+ "iscsiSsnCxnDigestErrors" : {
4293
+ "nodetype" : "member",
4294
+ "module" : "ISCSI-MIB"
4295
+ },
4296
+ "iscsiSsnCxnTimeoutErrors" : {
4297
+ "nodetype" : "member",
4298
+ "module" : "ISCSI-MIB"
4299
+ },
4300
+ }, # members
4301
+ "description" :
4302
+ """A collection of objects providing information about connection
4303
+ errors for all sessions.""",
4304
+ }, # group
4305
+ "iscsiConnectionAttributesGroup" : {
4306
+ "nodetype" : "group",
4307
+ "moduleName" : "ISCSI-MIB",
4308
+ "oid" : "1.3.6.1.2.1.142.2.2.20",
4309
+ "status" : "current",
4310
+ "members" : {
4311
+ "iscsiCxnCid" : {
4312
+ "nodetype" : "member",
4313
+ "module" : "ISCSI-MIB"
4314
+ },
4315
+ "iscsiCxnState" : {
4316
+ "nodetype" : "member",
4317
+ "module" : "ISCSI-MIB"
4318
+ },
4319
+ "iscsiCxnProtocol" : {
4320
+ "nodetype" : "member",
4321
+ "module" : "ISCSI-MIB"
4322
+ },
4323
+ "iscsiCxnAddrType" : {
4324
+ "nodetype" : "member",
4325
+ "module" : "ISCSI-MIB"
4326
+ },
4327
+ "iscsiCxnLocalAddr" : {
4328
+ "nodetype" : "member",
4329
+ "module" : "ISCSI-MIB"
4330
+ },
4331
+ "iscsiCxnLocalPort" : {
4332
+ "nodetype" : "member",
4333
+ "module" : "ISCSI-MIB"
4334
+ },
4335
+ "iscsiCxnRemoteAddr" : {
4336
+ "nodetype" : "member",
4337
+ "module" : "ISCSI-MIB"
4338
+ },
4339
+ "iscsiCxnRemotePort" : {
4340
+ "nodetype" : "member",
4341
+ "module" : "ISCSI-MIB"
4342
+ },
4343
+ "iscsiCxnMaxRecvDataSegLength" : {
4344
+ "nodetype" : "member",
4345
+ "module" : "ISCSI-MIB"
4346
+ },
4347
+ "iscsiCxnMaxXmitDataSegLength" : {
4348
+ "nodetype" : "member",
4349
+ "module" : "ISCSI-MIB"
4350
+ },
4351
+ "iscsiCxnHeaderIntegrity" : {
4352
+ "nodetype" : "member",
4353
+ "module" : "ISCSI-MIB"
4354
+ },
4355
+ "iscsiCxnDataIntegrity" : {
4356
+ "nodetype" : "member",
4357
+ "module" : "ISCSI-MIB"
4358
+ },
4359
+ "iscsiCxnRecvMarker" : {
4360
+ "nodetype" : "member",
4361
+ "module" : "ISCSI-MIB"
4362
+ },
4363
+ "iscsiCxnSendMarker" : {
4364
+ "nodetype" : "member",
4365
+ "module" : "ISCSI-MIB"
4366
+ },
4367
+ "iscsiCxnVersionActive" : {
4368
+ "nodetype" : "member",
4369
+ "module" : "ISCSI-MIB"
4370
+ },
4371
+ }, # members
4372
+ "description" :
4373
+ """A collection of objects providing information about all
4374
+ connections used by all sessions.""",
4375
+ }, # group
4376
+ "iscsiTgtLgnNotificationsGroup" : {
4377
+ "nodetype" : "group",
4378
+ "moduleName" : "ISCSI-MIB",
4379
+ "oid" : "1.3.6.1.2.1.142.2.2.21",
4380
+ "status" : "current",
4381
+ "members" : {
4382
+ "iscsiTgtLoginFailure" : {
4383
+ "nodetype" : "member",
4384
+ "module" : "ISCSI-MIB"
4385
+ },
4386
+ }, # members
4387
+ "description" :
4388
+ """A collection of notifications that indicate a login
4389
+ failure from a remote initiator to a local target.""",
4390
+ }, # group
4391
+ "iscsiIntrLgnNotificationsGroup" : {
4392
+ "nodetype" : "group",
4393
+ "moduleName" : "ISCSI-MIB",
4394
+ "oid" : "1.3.6.1.2.1.142.2.2.22",
4395
+ "status" : "current",
4396
+ "members" : {
4397
+ "iscsiIntrLoginFailure" : {
4398
+ "nodetype" : "member",
4399
+ "module" : "ISCSI-MIB"
4400
+ },
4401
+ }, # members
4402
+ "description" :
4403
+ """A collection of notifications that indicate a login
4404
+ failure from a local initiator to a remote target.""",
4405
+ }, # group
4406
+ "iscsiSsnFlrNotificationsGroup" : {
4407
+ "nodetype" : "group",
4408
+ "moduleName" : "ISCSI-MIB",
4409
+ "oid" : "1.3.6.1.2.1.142.2.2.23",
4410
+ "status" : "current",
4411
+ "members" : {
4412
+ "iscsiInstSessionFailure" : {
4413
+ "nodetype" : "member",
4414
+ "module" : "ISCSI-MIB"
4415
+ },
4416
+ }, # members
4417
+ "description" :
4418
+ """A collection of notifications that indicate session
4419
+ failures occurring after login.""",
4420
+ }, # group
4421
+ }, # groups
4422
+
4423
+ "compliances" : {
4424
+ "iscsiComplianceV1" : {
4425
+ "nodetype" : "compliance",
4426
+ "moduleName" : "ISCSI-MIB",
4427
+ "oid" : "1.3.6.1.2.1.142.2.1.1",
4428
+ "status" : "current",
4429
+ "description" :
4430
+ """Initial version of compliance statement based on
4431
+ initial version of this MIB module.
4432
+
4433
+ If an implementation can be both a target and an
4434
+ initiator, all groups are mandatory.""",
4435
+ "requires" : {
4436
+ "iscsiInstanceAttributesGroup" : {
4437
+ "nodetype" : "mandatory",
4438
+ "module" : "ISCSI-MIB"
4439
+ },
4440
+ "iscsiInstanceSsnErrorStatsGroup" : {
4441
+ "nodetype" : "mandatory",
4442
+ "module" : "ISCSI-MIB"
4443
+ },
4444
+ "iscsiPortalAttributesGroup" : {
4445
+ "nodetype" : "mandatory",
4446
+ "module" : "ISCSI-MIB"
4447
+ },
4448
+ "iscsiNodeAttributesGroup" : {
4449
+ "nodetype" : "mandatory",
4450
+ "module" : "ISCSI-MIB"
4451
+ },
4452
+ "iscsiSessionAttributesGroup" : {
4453
+ "nodetype" : "mandatory",
4454
+ "module" : "ISCSI-MIB"
4455
+ },
4456
+ "iscsiSessionPDUStatsGroup" : {
4457
+ "nodetype" : "mandatory",
4458
+ "module" : "ISCSI-MIB"
4459
+ },
4460
+ "iscsiSessionCxnErrorStatsGroup" : {
4461
+ "nodetype" : "mandatory",
4462
+ "module" : "ISCSI-MIB"
4463
+ },
4464
+ "iscsiConnectionAttributesGroup" : {
4465
+ "nodetype" : "mandatory",
4466
+ "module" : "ISCSI-MIB"
4467
+ },
4468
+ "iscsiSsnFlrNotificationsGroup" : {
4469
+ "nodetype" : "mandatory",
4470
+ "module" : "ISCSI-MIB"
4471
+ },
4472
+ "iscsiSessionOctetStatsGroup" : {
4473
+ "nodetype" : "optional",
4474
+ "module" : "ISCSI-MIB",
4475
+ "description" :
4476
+ """This group is mandatory for all iSCSI implementations
4477
+ that can support Counter64 data types.""",
4478
+ },
4479
+ "iscsiSessionLCOctetStatsGroup" : {
4480
+ "nodetype" : "optional",
4481
+ "module" : "ISCSI-MIB",
4482
+ "description" :
4483
+ """This group is mandatory for all iSCSI implementations
4484
+ that provide information to SNMPv1-only applications;
4485
+ this includes agents that cannot support Counter64
4486
+ data types.""",
4487
+ },
4488
+ "iscsiTgtPortalAttributesGroup" : {
4489
+ "nodetype" : "optional",
4490
+ "module" : "ISCSI-MIB",
4491
+ "description" :
4492
+ """This group is mandatory for all iSCSI implementations
4493
+ that have iSCSI target facilities.""",
4494
+ },
4495
+ "iscsiTargetAttributesGroup" : {
4496
+ "nodetype" : "optional",
4497
+ "module" : "ISCSI-MIB",
4498
+ "description" :
4499
+ """This group is mandatory for all iSCSI implementations
4500
+ that have iSCSI target facilities.""",
4501
+ },
4502
+ "iscsiTargetLoginStatsGroup" : {
4503
+ "nodetype" : "optional",
4504
+ "module" : "ISCSI-MIB",
4505
+ "description" :
4506
+ """This group is mandatory for all iSCSI implementations
4507
+ that have iSCSI target facilities.""",
4508
+ },
4509
+ "iscsiTargetLogoutStatsGroup" : {
4510
+ "nodetype" : "optional",
4511
+ "module" : "ISCSI-MIB",
4512
+ "description" :
4513
+ """This group is mandatory for all iSCSI implementations
4514
+ that have iSCSI target facilities.""",
4515
+ },
4516
+ "iscsiTgtLgnNotificationsGroup" : {
4517
+ "nodetype" : "optional",
4518
+ "module" : "ISCSI-MIB",
4519
+ "description" :
4520
+ """This group is mandatory for all iSCSI implementations
4521
+ that have iSCSI target facilities.""",
4522
+ },
4523
+ "iscsiTargetAuthGroup" : {
4524
+ "nodetype" : "optional",
4525
+ "module" : "ISCSI-MIB",
4526
+ "description" :
4527
+ """This group is mandatory for all iSCSI implementations
4528
+ that have iSCSI target facilities.""",
4529
+ },
4530
+ "iscsiIntrPortalAttributesGroup" : {
4531
+ "nodetype" : "optional",
4532
+ "module" : "ISCSI-MIB",
4533
+ "description" :
4534
+ """This group is mandatory for all iSCSI implementations
4535
+ that have iSCSI initiator facilities.""",
4536
+ },
4537
+ "iscsiInitiatorAttributesGroup" : {
4538
+ "nodetype" : "optional",
4539
+ "module" : "ISCSI-MIB",
4540
+ "description" :
4541
+ """This group is mandatory for all iSCSI implementations
4542
+ that have iSCSI initiator facilities.""",
4543
+ },
4544
+ "iscsiInitiatorLoginStatsGroup" : {
4545
+ "nodetype" : "optional",
4546
+ "module" : "ISCSI-MIB",
4547
+ "description" :
4548
+ """This group is mandatory for all iSCSI implementations
4549
+ that have iSCSI initiator facilities.""",
4550
+ },
4551
+ "iscsiInitiatorLogoutStatsGroup" : {
4552
+ "nodetype" : "optional",
4553
+ "module" : "ISCSI-MIB",
4554
+ "description" :
4555
+ """This group is mandatory for all iSCSI implementations
4556
+ that have iSCSI initiator facilities.""",
4557
+ },
4558
+ "iscsiIntrLgnNotificationsGroup" : {
4559
+ "nodetype" : "optional",
4560
+ "module" : "ISCSI-MIB",
4561
+ "description" :
4562
+ """This group is mandatory for all iSCSI implementations
4563
+ that have iSCSI initiator facilities.""",
4564
+ },
4565
+ "iscsiInitiatorAuthGroup" : {
4566
+ "nodetype" : "optional",
4567
+ "module" : "ISCSI-MIB",
4568
+ "description" :
4569
+ """This group is mandatory for all iSCSI implementations
4570
+ that have iSCSI initiator facilities.""",
4571
+ },
4572
+ }, # requires
4573
+ "refinements" : {
4574
+ "iscsiPortalMaxRecvDataSegLength" : {
4575
+ "module" : "ISCSI-MIB",
4576
+ "access" : "readonly",
4577
+ "description" :
4578
+ """Write access is not required.""",
4579
+ },
4580
+ "iscsiNodeStorageType" : {
4581
+ "module" : "ISCSI-MIB",
4582
+ "access" : "readonly",
4583
+ "description" :
4584
+ """Write access is not required; an implementation may
4585
+ choose to allow this object to be set to 'volatile'
4586
+ or 'nonVolatile'.""",
4587
+ },
4588
+ "iscsiNodeErrorRecoveryLevel" : {
4589
+ "module" : "ISCSI-MIB",
4590
+ "syntax" : {
4591
+ "type" : {
4592
+ "basetype" : "Unsigned32",
4593
+ "ranges" : [
4594
+ {
4595
+ "min" : "0",
4596
+ "max" : "2"
4597
+ },
4598
+ ],
4599
+ "range" : {
4600
+ "min" : "0",
4601
+ "max" : "2"
4602
+ },
4603
+ },
4604
+ }, # syntax
4605
+ "description" :
4606
+ """Only values 0-2 are defined at present.""",
4607
+ },
4608
+ }, # refinements
4609
+
4610
+ }, # compliance
4611
+ }, # compliances
4612
+
4613
+ }