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,4042 @@
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 SNA-NAU-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SNA-NAU-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SNA-NAU-MIB",
11
+
12
+ "SNA-NAU-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF SNA NAU MIB Working Group""",
17
+ "contact" :
18
+ """ Zbigniew Kielczewski
19
+ Eicon Technology Inc.
20
+ 2196 32nd Avenue
21
+ Lachine, Que H8T 3H7
22
+ Canada
23
+ Tel: 1 514 631 2592
24
+ E-mail: zbig@eicon.qc.ca
25
+
26
+ Deirdre Kostick
27
+ Bellcore
28
+ 331 Newman Springs Road
29
+ Red Bank, NJ 07701
30
+ Tel: 1 908 758 2642
31
+ E-mail: dck2@mail.bellcore.com
32
+
33
+ Kitty Shih (editor)
34
+ Novell
35
+ 890 Ross Drive
36
+ Sunnyvale, CA 94089
37
+ Tel: 1 408 747 4305
38
+ E-mail: kmshih@novell.com""",
39
+ "description" :
40
+ """This is the MIB module for objects used to
41
+ manage SNA devices.""",
42
+ "revisions" : (
43
+ {
44
+ "date" : "1994-05-12 09:00",
45
+ "description" :
46
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
47
+ },
48
+ ),
49
+ "identity node" : "snanauMIB",
50
+ },
51
+
52
+ "imports" : (
53
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
54
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
55
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
56
+ {"module" : "SNMPv2-TC", "name" : "InstancePointer"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
58
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
59
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
60
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
61
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
62
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
63
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
64
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
65
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
66
+ ),
67
+
68
+ "nodes" : {
69
+ "snanauMIB" : {
70
+ "nodetype" : "node",
71
+ "moduleName" : "SNA-NAU-MIB",
72
+ "oid" : "1.3.6.1.2.1.34",
73
+ "status" : "current",
74
+ }, # node
75
+ "snanauObjects" : {
76
+ "nodetype" : "node",
77
+ "moduleName" : "SNA-NAU-MIB",
78
+ "oid" : "1.3.6.1.2.1.34.1",
79
+ }, # node
80
+ "snaNode" : {
81
+ "nodetype" : "node",
82
+ "moduleName" : "SNA-NAU-MIB",
83
+ "oid" : "1.3.6.1.2.1.34.1.1",
84
+ }, # node
85
+ "snaNodeAdminTable" : {
86
+ "nodetype" : "table",
87
+ "moduleName" : "SNA-NAU-MIB",
88
+ "oid" : "1.3.6.1.2.1.34.1.1.1",
89
+ "status" : "current",
90
+ "description" :
91
+ """This table contains objects which describe the
92
+ configuration parameters for an SNA Node. Link
93
+ specific configuration objects are contained in
94
+ a separate MIB module (e.g., SNA DLC MIB)
95
+ corresponding to the link type.
96
+ The table snaNodeAdminLinkTable contains objects
97
+ which identify the relationship between node instances
98
+ and link instances.
99
+
100
+ The entries (i.e., rows) in this table can be created
101
+ by either an Agent or a Management Station.
102
+ The Management Station can do this through setting
103
+ the appropriate value in the snaNodeAdminRowStatus.
104
+
105
+ The snaNodeAdminRowStatus object describes the
106
+ status of an entry and is used to change the status
107
+ of an entry. The entry is deleted by an Agent based
108
+ on the value of the snaNodeAdminRowStatus.
109
+
110
+ The snaNodeAdminState object describes the desired
111
+ operational state of a Node and is used to change the
112
+ operational state of a Node. For example, such
113
+ information may be obtained from a configuration file.
114
+
115
+ How an Agent or a Management Station obtains the
116
+ initial value of each object at creation time is an
117
+ implementation specific issue.
118
+
119
+ For each entry in this table, there is a corresponding
120
+ entry in the snaNodeOperTable.
121
+ While the objects in this table describe the desired
122
+ or configured operational values of the SNA Node, the
123
+ actual runtime values are contained in
124
+ snaNodeOperTable.""",
125
+ }, # table
126
+ "snaNodeAdminEntry" : {
127
+ "nodetype" : "row",
128
+ "moduleName" : "SNA-NAU-MIB",
129
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1",
130
+ "create" : "true",
131
+ "status" : "current",
132
+ "linkage" : [
133
+ "snaNodeAdminIndex",
134
+ ],
135
+ "description" :
136
+ """An entry contains the configuration parameters for
137
+ one SNA Node instance. The objects in the entry
138
+ have read-create access.
139
+ An entry can be created, modified or deleted. The
140
+ object snaNodeAdminRowStatus is used (i.e., set) to
141
+ create or delete a row entry.""",
142
+ }, # row
143
+ "snaNodeAdminIndex" : {
144
+ "nodetype" : "column",
145
+ "moduleName" : "SNA-NAU-MIB",
146
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.1",
147
+ "status" : "current",
148
+ "syntax" : {
149
+ "type" : { "module" :"", "name" : "Integer32"},
150
+ },
151
+ "access" : "noaccess",
152
+ "description" :
153
+ """Index used to uniquely identify each Node instance.
154
+ If an Agent creates the entry, then it will assign
155
+ this number otherwise a Management Station
156
+ generates a random number when it reserves the
157
+ entry for creation.""",
158
+ }, # column
159
+ "snaNodeAdminName" : {
160
+ "nodetype" : "column",
161
+ "moduleName" : "SNA-NAU-MIB",
162
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.2",
163
+ "status" : "current",
164
+ "syntax" : {
165
+ "type" : {
166
+ "basetype" : "OctetString",
167
+ "parent module" : {
168
+ "name" : "SNMPv2-TC",
169
+ "type" : "DisplayString",
170
+ },
171
+ "ranges" : [
172
+ {
173
+ "min" : "0",
174
+ "max" : "17"
175
+ },
176
+ ],
177
+ "range" : {
178
+ "min" : "0",
179
+ "max" : "17"
180
+ },
181
+ },
182
+ },
183
+ "access" : "readwrite",
184
+ "description" :
185
+ """The value indicates the desired name of the
186
+ Node for use during Node activation.
187
+ In Type 2.1 networks, this is a fully-qualified name,
188
+ meaning that the Node name is preceded by the NetId (if
189
+ present) with a period as the delimiter.
190
+
191
+ A write operation to this object will
192
+ not change the operational value reflected
193
+ in snaNodeOperName until the Node has
194
+ been re-activated (e.g., after the next initialization
195
+ of the SNA services).""",
196
+ }, # column
197
+ "snaNodeAdminType" : {
198
+ "nodetype" : "column",
199
+ "moduleName" : "SNA-NAU-MIB",
200
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.3",
201
+ "status" : "current",
202
+ "syntax" : {
203
+ "type" : {
204
+ "basetype" : "Enumeration",
205
+ "other" : {
206
+ "nodetype" : "namednumber",
207
+ "number" : "1"
208
+ },
209
+ "pu10" : {
210
+ "nodetype" : "namednumber",
211
+ "number" : "2"
212
+ },
213
+ "pu20" : {
214
+ "nodetype" : "namednumber",
215
+ "number" : "3"
216
+ },
217
+ "t21len" : {
218
+ "nodetype" : "namednumber",
219
+ "number" : "4"
220
+ },
221
+ "endNode" : {
222
+ "nodetype" : "namednumber",
223
+ "number" : "5"
224
+ },
225
+ "networkNode" : {
226
+ "nodetype" : "namednumber",
227
+ "number" : "6"
228
+ },
229
+ },
230
+ },
231
+ "access" : "readwrite",
232
+ "description" :
233
+ """The value indicates the type of SNA Node.
234
+
235
+ A write operation to this object will
236
+ not change the operational value reflected
237
+ in snaNodeOperType until the Node has
238
+ been re-activated (e.g., after the next initialization
239
+ of the SNA services).""",
240
+ }, # column
241
+ "snaNodeAdminXidFormat" : {
242
+ "nodetype" : "column",
243
+ "moduleName" : "SNA-NAU-MIB",
244
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.4",
245
+ "status" : "current",
246
+ "syntax" : {
247
+ "type" : {
248
+ "basetype" : "Enumeration",
249
+ "format0" : {
250
+ "nodetype" : "namednumber",
251
+ "number" : "1"
252
+ },
253
+ "format1" : {
254
+ "nodetype" : "namednumber",
255
+ "number" : "2"
256
+ },
257
+ "format3" : {
258
+ "nodetype" : "namednumber",
259
+ "number" : "3"
260
+ },
261
+ },
262
+ },
263
+ "access" : "readwrite",
264
+ "description" :
265
+ """The value indicates the type of XID format used for
266
+ this Node. Note that there is no format type 2.
267
+
268
+ A write operation to this object will
269
+ not change the operational value reflected
270
+ in snaNodeOperAdminXidFormat until the Node has
271
+ been re-activated (e.g., after the next initialization
272
+ of the SNA services).""",
273
+ }, # column
274
+ "snaNodeAdminBlockNum" : {
275
+ "nodetype" : "column",
276
+ "moduleName" : "SNA-NAU-MIB",
277
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.5",
278
+ "status" : "current",
279
+ "syntax" : {
280
+ "type" : {
281
+ "basetype" : "OctetString",
282
+ "parent module" : {
283
+ "name" : "SNMPv2-TC",
284
+ "type" : "DisplayString",
285
+ },
286
+ "ranges" : [
287
+ {
288
+ "min" : "3",
289
+ "max" : "3"
290
+ },
291
+ ],
292
+ "range" : {
293
+ "min" : "3",
294
+ "max" : "3"
295
+ },
296
+ },
297
+ },
298
+ "access" : "readwrite",
299
+ "description" :
300
+ """The value indicates the block number for this Node
301
+ instance. It is the first 3 hexadecimal digits of the
302
+ SNA Node id.
303
+
304
+ A write operation to this object will
305
+ not change the operational value reflected
306
+ in snaNodeOperBlockNum until the Node has
307
+ been re-activated (e.g., after the next initialization
308
+ of the SNA services).""",
309
+ }, # column
310
+ "snaNodeAdminIdNum" : {
311
+ "nodetype" : "column",
312
+ "moduleName" : "SNA-NAU-MIB",
313
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.6",
314
+ "status" : "current",
315
+ "syntax" : {
316
+ "type" : {
317
+ "basetype" : "OctetString",
318
+ "parent module" : {
319
+ "name" : "SNMPv2-TC",
320
+ "type" : "DisplayString",
321
+ },
322
+ "ranges" : [
323
+ {
324
+ "min" : "5",
325
+ "max" : "5"
326
+ },
327
+ ],
328
+ "range" : {
329
+ "min" : "5",
330
+ "max" : "5"
331
+ },
332
+ },
333
+ },
334
+ "access" : "readwrite",
335
+ "description" :
336
+ """The value indicates the ID number for this Node
337
+ instance. This is the last 5 hexadecimal digits of
338
+ the SNA Node id.
339
+
340
+ A write operation to this object will
341
+ not change the operational value reflected
342
+ in snaNodeOperIdNum until the Node has
343
+ been re-activated (e.g., after the next initialization
344
+ of the SNA services).""",
345
+ }, # column
346
+ "snaNodeAdminEnablingMethod" : {
347
+ "nodetype" : "column",
348
+ "moduleName" : "SNA-NAU-MIB",
349
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.7",
350
+ "status" : "current",
351
+ "syntax" : {
352
+ "type" : {
353
+ "basetype" : "Enumeration",
354
+ "other" : {
355
+ "nodetype" : "namednumber",
356
+ "number" : "1"
357
+ },
358
+ "startup" : {
359
+ "nodetype" : "namednumber",
360
+ "number" : "2"
361
+ },
362
+ "demand" : {
363
+ "nodetype" : "namednumber",
364
+ "number" : "3"
365
+ },
366
+ "onlyMS" : {
367
+ "nodetype" : "namednumber",
368
+ "number" : "4"
369
+ },
370
+ },
371
+ },
372
+ "access" : "readwrite",
373
+ "description" :
374
+ """The value indicates how the Node should be
375
+ activated for the first time.
376
+ The values have the following meanings:
377
+
378
+ other (1) - may be used for proprietary methods
379
+ not listed in this enumeration,
380
+ startup (2) - at SNA services' initialization time
381
+ (this is the default),
382
+ demand (3) - only when LU is requested by application,
383
+ or
384
+ onlyMS (4) - by a Management Station only.
385
+
386
+ A write operation to this object may immediately
387
+ change the operational value reflected
388
+ in snaNodeOperEnablingMethod depending
389
+ on the Agent implementation. If the Agent
390
+ implementation accepts immediate changes, then the
391
+ behavior of the Node changes immediately and not only
392
+ after the next system startup of the SNA services.
393
+ An immediate change may only apply when the
394
+ current value 'demand (3)' is changed to 'onlyMS (4)'
395
+ and vice versa.""",
396
+ }, # column
397
+ "snaNodeAdminLuTermDefault" : {
398
+ "nodetype" : "column",
399
+ "moduleName" : "SNA-NAU-MIB",
400
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.8",
401
+ "status" : "current",
402
+ "syntax" : {
403
+ "type" : {
404
+ "basetype" : "Enumeration",
405
+ "unbind" : {
406
+ "nodetype" : "namednumber",
407
+ "number" : "1"
408
+ },
409
+ "termself" : {
410
+ "nodetype" : "namednumber",
411
+ "number" : "2"
412
+ },
413
+ "rshutd" : {
414
+ "nodetype" : "namednumber",
415
+ "number" : "3"
416
+ },
417
+ "poweroff" : {
418
+ "nodetype" : "namednumber",
419
+ "number" : "4"
420
+ },
421
+ },
422
+ },
423
+ "access" : "readwrite",
424
+ "description" :
425
+ """The value indicates the desired default method
426
+ used to deactivate LUs for this Node
427
+ For LU6.2s, 'unbind(1)' is the only valid value.
428
+
429
+ unbind(1) - terminate the LU-LU session by sending
430
+ an SNA UNBIND request.
431
+ termself(2) - terminate the LU-LU session by sending
432
+ an SNA TERM-SELF (Terminate Self) request on
433
+ the SSCP-LU session. The SSCP will inform the
434
+ remote session LU partner to send an UNBIND
435
+ request to terminate the session.
436
+ rshutd(3) - terminate the LU-LU session by sending
437
+ an SNA RSHUTD (Request ShutDown) request to
438
+ the remote session LU partner. The remote LU
439
+ will then send an UNBIND request to terminate
440
+ the session.
441
+ poweroff(4) - terminate the LU-LU session by sending
442
+ either an SNA LUSTAT (LU Status) request on
443
+ the LU-LU session or an SNA NOTIFY request on
444
+ the SSCP-LU session indicating that the LU has
445
+ been powered off. Sending both is also
446
+ acceptable. The result should be that the
447
+ remote session LU partner will send an UNBIND
448
+ to terminate the session.
449
+
450
+ The default behavior indicated by the value of this
451
+ object may be overridden for an LU instance. The
452
+ override is performed by setting the snaLuAdminTerm
453
+ object instance in the snaLuAdminTable to the desired
454
+ value.
455
+
456
+ A write operation to this object may immediately
457
+ change the operational value reflected
458
+ in snaNodeOperLuTermDefault depending
459
+ on the Agent implementation.""",
460
+ }, # column
461
+ "snaNodeAdminMaxLu" : {
462
+ "nodetype" : "column",
463
+ "moduleName" : "SNA-NAU-MIB",
464
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.9",
465
+ "status" : "current",
466
+ "syntax" : {
467
+ "type" : { "module" :"", "name" : "Integer32"},
468
+ },
469
+ "access" : "readwrite",
470
+ "description" :
471
+ """The maximum number of LUs that may be
472
+ activated for this Node. For PU2.1, this object
473
+ refers to the number of dependent LUs.
474
+
475
+ A write operation to this object will
476
+ not change the operational value reflected
477
+ in snaNodeOperMaxLu until the Node has
478
+ been re-activated (e.g., after the next initialization
479
+ of the SNA services).""",
480
+ }, # column
481
+ "snaNodeAdminHostDescription" : {
482
+ "nodetype" : "column",
483
+ "moduleName" : "SNA-NAU-MIB",
484
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.10",
485
+ "status" : "current",
486
+ "syntax" : {
487
+ "type" : {
488
+ "basetype" : "OctetString",
489
+ "parent module" : {
490
+ "name" : "SNMPv2-TC",
491
+ "type" : "DisplayString",
492
+ },
493
+ "ranges" : [
494
+ {
495
+ "min" : "0",
496
+ "max" : "128"
497
+ },
498
+ ],
499
+ "range" : {
500
+ "min" : "0",
501
+ "max" : "128"
502
+ },
503
+ },
504
+ },
505
+ "access" : "readwrite",
506
+ "description" :
507
+ """The value identifies the remote host associated
508
+ with this Node.
509
+ Since SSCP Id's may not be unique
510
+ across hosts, the host description
511
+ is required to uniquely identify the SSCP.
512
+ This object is only applicable to PU2.0 type
513
+ Nodes. If the remote host is unknown, then the
514
+ value is the null string.
515
+
516
+ A write operation to this object may immediately
517
+ change the operational value reflected
518
+ in snaNodeOperHostDescription depending
519
+ on the Agent implementation.""",
520
+ }, # column
521
+ "snaNodeAdminStopMethod" : {
522
+ "nodetype" : "column",
523
+ "moduleName" : "SNA-NAU-MIB",
524
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.11",
525
+ "status" : "current",
526
+ "syntax" : {
527
+ "type" : {
528
+ "basetype" : "Enumeration",
529
+ "other" : {
530
+ "nodetype" : "namednumber",
531
+ "number" : "1"
532
+ },
533
+ "normal" : {
534
+ "nodetype" : "namednumber",
535
+ "number" : "2"
536
+ },
537
+ "immed" : {
538
+ "nodetype" : "namednumber",
539
+ "number" : "3"
540
+ },
541
+ "force" : {
542
+ "nodetype" : "namednumber",
543
+ "number" : "4"
544
+ },
545
+ },
546
+ },
547
+ "access" : "readwrite",
548
+ "description" :
549
+ """The value indicates the desired method to be used
550
+ by the Agent to stop a Node (i.e., change the Node's
551
+ operational state to inactive(1) ).
552
+
553
+ The values have the following meaning:
554
+
555
+ other (1) - used for proprietary
556
+ methods not listed in this enumeration.
557
+ normal(2) - deactivate only when there is no more
558
+ activity on this Node (i.e., all data flows
559
+ have been completed and all sessions
560
+ have been terminated).
561
+ immed(3) - deactivate immediately regardless of
562
+ current activities on this Node. Wait for
563
+ deactivation responses (from remote Node)
564
+ before changing the Node state to inactive.
565
+ force(4) - deactivate immediately regardless of
566
+ current activities on this Node. Do not wait
567
+ for deactivation responses (from remote Node)
568
+ before changing the Node state to inactive.
569
+
570
+ A write operation to this object may immediately
571
+ change the operational value reflected
572
+ in snaNodeOperStopMethod depending
573
+ on the Agent implementation.""",
574
+ }, # column
575
+ "snaNodeAdminState" : {
576
+ "nodetype" : "column",
577
+ "moduleName" : "SNA-NAU-MIB",
578
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.12",
579
+ "status" : "current",
580
+ "syntax" : {
581
+ "type" : {
582
+ "basetype" : "Enumeration",
583
+ "inactive" : {
584
+ "nodetype" : "namednumber",
585
+ "number" : "1"
586
+ },
587
+ "active" : {
588
+ "nodetype" : "namednumber",
589
+ "number" : "2"
590
+ },
591
+ },
592
+ },
593
+ "access" : "readwrite",
594
+ "description" :
595
+ """The value indicates the desired operational
596
+ state of the SNA Node. This object is used
597
+ by the Management Station to
598
+ activate or deactivate the Node.
599
+
600
+ If the current value in snaNodeOperState is
601
+ 'active (2)', then setting this object to
602
+ 'inactive (1)' will initiate the Node shutdown
603
+ process using the method indicated
604
+ by snaNodeOperStopMethod.
605
+
606
+ If the current value in snaNodeOperState is
607
+ 'inactive (1)', then setting this object to
608
+ 'active (2)' will initiate the
609
+ Node's activation.
610
+
611
+ A Management Station can always set this object to
612
+ 'active (2)' irrespective of the value in the
613
+ snaOperEnablingMethod.""",
614
+ }, # column
615
+ "snaNodeAdminRowStatus" : {
616
+ "nodetype" : "column",
617
+ "moduleName" : "SNA-NAU-MIB",
618
+ "oid" : "1.3.6.1.2.1.34.1.1.1.1.13",
619
+ "status" : "current",
620
+ "syntax" : {
621
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
622
+ },
623
+ "access" : "readwrite",
624
+ "description" :
625
+ """This object is used by a Management Station to
626
+ create or delete the row entry in the
627
+ snaNodeAdminTable following
628
+ the RowStatus textual convention.
629
+
630
+ Upon successful creation of
631
+ the row, an Agent automatically creates a
632
+ corresponding entry in the snaNodeOperTable with
633
+ snaNodeOperState equal to 'inactive (1)'.
634
+
635
+ Row deletion can be Management Station or Agent
636
+ initiated:
637
+ (a) The Management Station can set the value to
638
+ 'destroy (6)' only when the value of
639
+ snaNodeOperState of this Node instance is
640
+ 'inactive (1)'. The Agent will then delete the rows
641
+ corresponding to this Node instance from the
642
+ snaNodeAdminTable and the snaNodeOperTable.
643
+ (b) The Agent detects that a row is in the
644
+ 'notReady (3)' state for greater than a
645
+ default period of 5 minutes.
646
+ (c) All rows with the snaNodeAdminRowStatus object's
647
+ value of 'notReady (3)' will be removed upon the
648
+ next initialization of the SNA services.""",
649
+ }, # column
650
+ "snaNodeAdminTableLastChange" : {
651
+ "nodetype" : "scalar",
652
+ "moduleName" : "SNA-NAU-MIB",
653
+ "oid" : "1.3.6.1.2.1.34.1.1.2",
654
+ "status" : "current",
655
+ "syntax" : {
656
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
657
+ },
658
+ "access" : "readonly",
659
+ "description" :
660
+ """The value indicates the timestamp
661
+ (e.g., the Agent's sysUpTime value) of the last
662
+ change made to any object in the snaNodeAdminTable,
663
+ including row deletions/additions (e.g., changes to
664
+ snaNodeAdminRowStatus values).
665
+
666
+ This object can be used to reduce frequent
667
+ retrievals of the snaNodeAdminTable by a Management
668
+ Station. It is expected that a Management Station
669
+ will periodically poll this object and compare its
670
+ current value with the previous one. A difference
671
+ indicates that some Node configuration information
672
+ has been changed. Only then will the Management
673
+ Station retrieve the entire table.""",
674
+ }, # scalar
675
+ "snaNodeOperTable" : {
676
+ "nodetype" : "table",
677
+ "moduleName" : "SNA-NAU-MIB",
678
+ "oid" : "1.3.6.1.2.1.34.1.1.3",
679
+ "status" : "current",
680
+ "description" :
681
+ """This table contains the dynamic parameters which
682
+ have read-only access. These objects reflect the
683
+ actual status of the Node. The entries in this
684
+ table cannot be created or modified by a
685
+ Management Station.
686
+ This table augments the snaNodeAdminTable.""",
687
+ }, # table
688
+ "snaNodeOperEntry" : {
689
+ "nodetype" : "row",
690
+ "moduleName" : "SNA-NAU-MIB",
691
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1",
692
+ "status" : "current",
693
+ "linkage" : [
694
+ { "SNA-NAU-MIB" : {
695
+ "indexkind" : "augments",
696
+ "relatedNode" : "snaNodeAdminEntry",
697
+ }},
698
+ ],
699
+ "description" :
700
+ """The entry contains parameters which describe the
701
+ state of one Node. The entries are created by the
702
+ Agent. They have read-only access.""",
703
+ }, # row
704
+ "snaNodeOperName" : {
705
+ "nodetype" : "column",
706
+ "moduleName" : "SNA-NAU-MIB",
707
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.1",
708
+ "status" : "current",
709
+ "syntax" : {
710
+ "type" : {
711
+ "basetype" : "OctetString",
712
+ "parent module" : {
713
+ "name" : "SNMPv2-TC",
714
+ "type" : "DisplayString",
715
+ },
716
+ "ranges" : [
717
+ {
718
+ "min" : "0",
719
+ "max" : "17"
720
+ },
721
+ ],
722
+ "range" : {
723
+ "min" : "0",
724
+ "max" : "17"
725
+ },
726
+ },
727
+ },
728
+ "access" : "readonly",
729
+ "description" :
730
+ """The value identifies the current name of the Node.
731
+ In Type 2.1 networks, this
732
+ is a fully-qualified name, meaning that the Node name
733
+ is preceded by the NetId (if present) with a period
734
+ as the delimiter.""",
735
+ }, # column
736
+ "snaNodeOperType" : {
737
+ "nodetype" : "column",
738
+ "moduleName" : "SNA-NAU-MIB",
739
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.2",
740
+ "status" : "current",
741
+ "syntax" : {
742
+ "type" : {
743
+ "basetype" : "Enumeration",
744
+ "other" : {
745
+ "nodetype" : "namednumber",
746
+ "number" : "1"
747
+ },
748
+ "pu10" : {
749
+ "nodetype" : "namednumber",
750
+ "number" : "2"
751
+ },
752
+ "pu20" : {
753
+ "nodetype" : "namednumber",
754
+ "number" : "3"
755
+ },
756
+ "t21LEN" : {
757
+ "nodetype" : "namednumber",
758
+ "number" : "4"
759
+ },
760
+ "endNode" : {
761
+ "nodetype" : "namednumber",
762
+ "number" : "5"
763
+ },
764
+ "networkNode" : {
765
+ "nodetype" : "namednumber",
766
+ "number" : "6"
767
+ },
768
+ },
769
+ },
770
+ "access" : "readonly",
771
+ "description" :
772
+ """The value identifies the current type of the Node.""",
773
+ }, # column
774
+ "snaNodeOperXidFormat" : {
775
+ "nodetype" : "column",
776
+ "moduleName" : "SNA-NAU-MIB",
777
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.3",
778
+ "status" : "current",
779
+ "syntax" : {
780
+ "type" : {
781
+ "basetype" : "Enumeration",
782
+ "format0" : {
783
+ "nodetype" : "namednumber",
784
+ "number" : "1"
785
+ },
786
+ "format1" : {
787
+ "nodetype" : "namednumber",
788
+ "number" : "2"
789
+ },
790
+ "format3" : {
791
+ "nodetype" : "namednumber",
792
+ "number" : "3"
793
+ },
794
+ },
795
+ },
796
+ "access" : "readonly",
797
+ "description" :
798
+ """The value identifies the type of XID format currently
799
+ used for this Node.
800
+ Note that there is no format type 2.""",
801
+ }, # column
802
+ "snaNodeOperBlockNum" : {
803
+ "nodetype" : "column",
804
+ "moduleName" : "SNA-NAU-MIB",
805
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.4",
806
+ "status" : "current",
807
+ "syntax" : {
808
+ "type" : {
809
+ "basetype" : "OctetString",
810
+ "parent module" : {
811
+ "name" : "SNMPv2-TC",
812
+ "type" : "DisplayString",
813
+ },
814
+ "ranges" : [
815
+ {
816
+ "min" : "3",
817
+ "max" : "3"
818
+ },
819
+ ],
820
+ "range" : {
821
+ "min" : "3",
822
+ "max" : "3"
823
+ },
824
+ },
825
+ },
826
+ "access" : "readonly",
827
+ "description" :
828
+ """The value identifies the block number for this Node
829
+ instance. It is the first 3 hexadecimal digits
830
+ of the SNA Node id.""",
831
+ }, # column
832
+ "snaNodeOperIdNum" : {
833
+ "nodetype" : "column",
834
+ "moduleName" : "SNA-NAU-MIB",
835
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.5",
836
+ "status" : "current",
837
+ "syntax" : {
838
+ "type" : {
839
+ "basetype" : "OctetString",
840
+ "parent module" : {
841
+ "name" : "SNMPv2-TC",
842
+ "type" : "DisplayString",
843
+ },
844
+ "ranges" : [
845
+ {
846
+ "min" : "5",
847
+ "max" : "5"
848
+ },
849
+ ],
850
+ "range" : {
851
+ "min" : "5",
852
+ "max" : "5"
853
+ },
854
+ },
855
+ },
856
+ "access" : "readonly",
857
+ "description" :
858
+ """The value identifies the ID number for this Node
859
+ instance. This is the last 5 hexadecimal digits of
860
+ the SNA Node id.""",
861
+ }, # column
862
+ "snaNodeOperEnablingMethod" : {
863
+ "nodetype" : "column",
864
+ "moduleName" : "SNA-NAU-MIB",
865
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.6",
866
+ "status" : "current",
867
+ "syntax" : {
868
+ "type" : {
869
+ "basetype" : "Enumeration",
870
+ "other" : {
871
+ "nodetype" : "namednumber",
872
+ "number" : "1"
873
+ },
874
+ "startup" : {
875
+ "nodetype" : "namednumber",
876
+ "number" : "2"
877
+ },
878
+ "demand" : {
879
+ "nodetype" : "namednumber",
880
+ "number" : "3"
881
+ },
882
+ "onlyMS" : {
883
+ "nodetype" : "namednumber",
884
+ "number" : "4"
885
+ },
886
+ },
887
+ },
888
+ "access" : "readonly",
889
+ "description" :
890
+ """The value indicates how the Node is activated for
891
+ the first time.
892
+ The values have the following meanings:
893
+ other (1) - not at boot time, LU activation
894
+ or by a Management Station;
895
+ startup (2) - at SNA services' initialization
896
+ time (this is the default),
897
+ demand (3) - only when LU is requested by
898
+ application,
899
+ onlyMS (4) - by a network Management Station
900
+ only.""",
901
+ }, # column
902
+ "snaNodeOperLuTermDefault" : {
903
+ "nodetype" : "column",
904
+ "moduleName" : "SNA-NAU-MIB",
905
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.7",
906
+ "status" : "current",
907
+ "syntax" : {
908
+ "type" : {
909
+ "basetype" : "Enumeration",
910
+ "unbind" : {
911
+ "nodetype" : "namednumber",
912
+ "number" : "1"
913
+ },
914
+ "termself" : {
915
+ "nodetype" : "namednumber",
916
+ "number" : "2"
917
+ },
918
+ "rshutd" : {
919
+ "nodetype" : "namednumber",
920
+ "number" : "3"
921
+ },
922
+ "poweroff" : {
923
+ "nodetype" : "namednumber",
924
+ "number" : "4"
925
+ },
926
+ },
927
+ },
928
+ "access" : "readonly",
929
+ "description" :
930
+ """The value identifies the default method used to
931
+ deactivate LUs for this Node.
932
+ For LU6.2s, 'unbind(1)' is the only valid value.
933
+
934
+ unbind(1) - terminate the LU-LU session by sending
935
+ an SNA UNBIND request.
936
+ termself(2) - terminate the LU-LU session by sending
937
+ an SNA TERM-SELF (Terminate Self) request on
938
+ the SSCP-LU session. The SSCP will inform the
939
+ remote session LU partner to send an UNBIND
940
+ request to terminate the session.
941
+ rshutd(3) - terminate the LU-LU session by sending
942
+ an SNA RSHUTD (Request ShutDown) request to
943
+ the remote session LU partner. The remote LU
944
+ will then send an UNBIND request to terminate
945
+ the session.
946
+ poweroff(4) - terminate the LU-LU session by sending
947
+ either an SNA LUSTAT (LU Status) request on
948
+ the LU-LU session or an SNA NOTIFY request on
949
+ the SSCP-LU session indicating that the LU has
950
+ been powered off. Sending both is also
951
+ acceptable. The result should be that the
952
+ remote session LU partner will send an UNBIND
953
+ to terminate the session.
954
+
955
+ This object describes the default behavior for this
956
+ Node; however, it is possible that for a specific LU
957
+ the behavior indicated by the snaLuOperTerm object is
958
+ different.""",
959
+ }, # column
960
+ "snaNodeOperMaxLu" : {
961
+ "nodetype" : "column",
962
+ "moduleName" : "SNA-NAU-MIB",
963
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.8",
964
+ "status" : "current",
965
+ "syntax" : {
966
+ "type" : { "module" :"", "name" : "Integer32"},
967
+ },
968
+ "access" : "readonly",
969
+ "description" :
970
+ """This value identifies the current, maximum number
971
+ of LUs that are activated for this Node. For PU2.1,
972
+ this object refers to the number of dependent LUs.""",
973
+ }, # column
974
+ "snaNodeOperHostDescription" : {
975
+ "nodetype" : "column",
976
+ "moduleName" : "SNA-NAU-MIB",
977
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.9",
978
+ "status" : "current",
979
+ "syntax" : {
980
+ "type" : {
981
+ "basetype" : "OctetString",
982
+ "parent module" : {
983
+ "name" : "SNMPv2-TC",
984
+ "type" : "DisplayString",
985
+ },
986
+ "ranges" : [
987
+ {
988
+ "min" : "0",
989
+ "max" : "128"
990
+ },
991
+ ],
992
+ "range" : {
993
+ "min" : "0",
994
+ "max" : "128"
995
+ },
996
+ },
997
+ },
998
+ "access" : "readonly",
999
+ "description" :
1000
+ """This value identifies the remote host currently
1001
+ associated with this Node.
1002
+ Since SSCP Id's may not be unique
1003
+ across hosts, the host description
1004
+ is required to uniquely identify the SSCP.""",
1005
+ }, # column
1006
+ "snaNodeOperStopMethod" : {
1007
+ "nodetype" : "column",
1008
+ "moduleName" : "SNA-NAU-MIB",
1009
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.10",
1010
+ "status" : "current",
1011
+ "syntax" : {
1012
+ "type" : {
1013
+ "basetype" : "Enumeration",
1014
+ "other" : {
1015
+ "nodetype" : "namednumber",
1016
+ "number" : "1"
1017
+ },
1018
+ "normal" : {
1019
+ "nodetype" : "namednumber",
1020
+ "number" : "2"
1021
+ },
1022
+ "immed" : {
1023
+ "nodetype" : "namednumber",
1024
+ "number" : "3"
1025
+ },
1026
+ "force" : {
1027
+ "nodetype" : "namednumber",
1028
+ "number" : "4"
1029
+ },
1030
+ },
1031
+ },
1032
+ "access" : "readonly",
1033
+ "description" :
1034
+ """This value identifies the current Node shutdown
1035
+ method to be used by the Agent to stop the Node.
1036
+ When the Agent changes the Node's state to 'inactive
1037
+ (1)', the Agent must use the shutdown method
1038
+ indicated by this object.
1039
+
1040
+ The values have the following meaning:
1041
+
1042
+ other (1) - proprietary method not listed in this
1043
+ enumeration
1044
+ normal(2) - deactivate only when there is no more
1045
+ activity on this Node (i.e., all data flows
1046
+ have been completed and all sessions have
1047
+ been terminated).
1048
+ immed(3) - deactivate immediately regardless of
1049
+ current activities on this Node. Wait for
1050
+ deactivation responses (from remote Node)
1051
+ before changing the Node state to inactive.
1052
+ force(4) - deactivate immediately regardless of
1053
+ current activities on this Node. Do not wait
1054
+ for deactivation responses (from remote Node)
1055
+ before changing the Node state to inactive.
1056
+
1057
+ Note that a write operation to
1058
+ snaNodeAdminOperStopMethod may immediately change
1059
+ the value of snaNodeOperStopMethod depending on
1060
+ the Agent implementation.""",
1061
+ }, # column
1062
+ "snaNodeOperState" : {
1063
+ "nodetype" : "column",
1064
+ "moduleName" : "SNA-NAU-MIB",
1065
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.11",
1066
+ "status" : "current",
1067
+ "syntax" : {
1068
+ "type" : {
1069
+ "basetype" : "Enumeration",
1070
+ "inactive" : {
1071
+ "nodetype" : "namednumber",
1072
+ "number" : "1"
1073
+ },
1074
+ "active" : {
1075
+ "nodetype" : "namednumber",
1076
+ "number" : "2"
1077
+ },
1078
+ "waiting" : {
1079
+ "nodetype" : "namednumber",
1080
+ "number" : "3"
1081
+ },
1082
+ "stopping" : {
1083
+ "nodetype" : "namednumber",
1084
+ "number" : "4"
1085
+ },
1086
+ },
1087
+ },
1088
+ "access" : "readonly",
1089
+ "description" :
1090
+ """The current state of the Node.
1091
+ The values have the following meanings:
1092
+ inactive (1), a row representing the Node has
1093
+ been created in the AdminTable
1094
+ and, the Node is ready for activation -or-
1095
+ an active Node has been stopped -or-
1096
+ a waiting Node has returned to the inactive
1097
+ state.
1098
+ waiting (3), a request to have the Node activated
1099
+ has been issued, and the Node is pending
1100
+ activation.
1101
+ active (2), the Node is ready and operating.
1102
+ stopping (4), the request to stop the Node has
1103
+ been issued while the StopMethod normal
1104
+ or immediate is used.""",
1105
+ }, # column
1106
+ "snaNodeOperHostSscpId" : {
1107
+ "nodetype" : "column",
1108
+ "moduleName" : "SNA-NAU-MIB",
1109
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.12",
1110
+ "status" : "current",
1111
+ "syntax" : {
1112
+ "type" : {
1113
+ "basetype" : "OctetString",
1114
+ "ranges" : [
1115
+ {
1116
+ "min" : "0",
1117
+ "max" : "6"
1118
+ },
1119
+ ],
1120
+ "range" : {
1121
+ "min" : "0",
1122
+ "max" : "6"
1123
+ },
1124
+ },
1125
+ },
1126
+ "access" : "readonly",
1127
+ "description" :
1128
+ """This value identifies the current SSCP Id
1129
+ associated with the Node. This object is only
1130
+ applicable to PU 2.0s. If the Node
1131
+ is not a PU 2.0 type, then this object contains a
1132
+ zero length string.""",
1133
+ }, # column
1134
+ "snaNodeOperStartTime" : {
1135
+ "nodetype" : "column",
1136
+ "moduleName" : "SNA-NAU-MIB",
1137
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.13",
1138
+ "status" : "current",
1139
+ "syntax" : {
1140
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1141
+ },
1142
+ "access" : "readonly",
1143
+ "description" :
1144
+ """The timestamp (e.g, the Agent's sysUpTime value)
1145
+ at the Node activation.""",
1146
+ }, # column
1147
+ "snaNodeOperLastStateChange" : {
1148
+ "nodetype" : "column",
1149
+ "moduleName" : "SNA-NAU-MIB",
1150
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.14",
1151
+ "status" : "current",
1152
+ "syntax" : {
1153
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1154
+ },
1155
+ "access" : "readonly",
1156
+ "description" :
1157
+ """The timestamp (e.g., the Agent's sysUpTime value)
1158
+ at the last state change of the Node.""",
1159
+ }, # column
1160
+ "snaNodeOperActFailures" : {
1161
+ "nodetype" : "column",
1162
+ "moduleName" : "SNA-NAU-MIB",
1163
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.15",
1164
+ "status" : "current",
1165
+ "syntax" : {
1166
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1167
+ },
1168
+ "access" : "readonly",
1169
+ "description" :
1170
+ """This value identifies the number of failed Node
1171
+ activation attempts.""",
1172
+ }, # column
1173
+ "snaNodeOperActFailureReason" : {
1174
+ "nodetype" : "column",
1175
+ "moduleName" : "SNA-NAU-MIB",
1176
+ "oid" : "1.3.6.1.2.1.34.1.1.3.1.16",
1177
+ "status" : "current",
1178
+ "syntax" : {
1179
+ "type" : {
1180
+ "basetype" : "Enumeration",
1181
+ "other" : {
1182
+ "nodetype" : "namednumber",
1183
+ "number" : "1"
1184
+ },
1185
+ "linkFailure" : {
1186
+ "nodetype" : "namednumber",
1187
+ "number" : "2"
1188
+ },
1189
+ "noResources" : {
1190
+ "nodetype" : "namednumber",
1191
+ "number" : "3"
1192
+ },
1193
+ "badConfiguration" : {
1194
+ "nodetype" : "namednumber",
1195
+ "number" : "4"
1196
+ },
1197
+ "internalError" : {
1198
+ "nodetype" : "namednumber",
1199
+ "number" : "5"
1200
+ },
1201
+ },
1202
+ },
1203
+ "access" : "readonly",
1204
+ "description" :
1205
+ """The value indicates the reason for the activation
1206
+ failure. The value 'other (1)' indicates a reason
1207
+ not listed in the enumeration. This object
1208
+ will be sent in the trap snaNodeActFailTrap.""",
1209
+ }, # column
1210
+ "snaNodeOperTableLastChange" : {
1211
+ "nodetype" : "scalar",
1212
+ "moduleName" : "SNA-NAU-MIB",
1213
+ "oid" : "1.3.6.1.2.1.34.1.1.4",
1214
+ "status" : "current",
1215
+ "syntax" : {
1216
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1217
+ },
1218
+ "access" : "readonly",
1219
+ "description" :
1220
+ """The timestamp (e.g., the Agent's sysUpTime value)
1221
+ at the last change made to any object in the
1222
+ snaNodeOperTable, including row deletions/additions
1223
+ made as a result of changes to the
1224
+ snaNodeAdminRowStatus object.
1225
+
1226
+ This object can be used to reduce frequent
1227
+ retrievals of the snaNodeOperTable by a Management
1228
+ Station. It is expected that a Management Station
1229
+ will periodically poll this object and compare its
1230
+ current value with the previous one. A difference
1231
+ indicates that some Node operational information
1232
+ has been changed. Only then will the Management
1233
+ Station retrieve the entire table.""",
1234
+ }, # scalar
1235
+ "snaPu20StatsTable" : {
1236
+ "nodetype" : "table",
1237
+ "moduleName" : "SNA-NAU-MIB",
1238
+ "oid" : "1.3.6.1.2.1.34.1.1.5",
1239
+ "status" : "current",
1240
+ "description" :
1241
+ """This table contains the dynamic parameters which
1242
+ have read-only access. The entries in this table
1243
+ correspond to PU 2.0 entries in the snaNodeOperTable
1244
+ and cannot be created by a Management Station.""",
1245
+ }, # table
1246
+ "snaPu20StatsEntry" : {
1247
+ "nodetype" : "row",
1248
+ "moduleName" : "SNA-NAU-MIB",
1249
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1",
1250
+ "status" : "current",
1251
+ "linkage" : [
1252
+ "snaNodeAdminIndex",
1253
+ ],
1254
+ "description" :
1255
+ """The entry contains parameters which describe the
1256
+ statistics for one PU 2.0. They have read-only
1257
+ access.
1258
+ The counters represent traffic for all kinds
1259
+ of sessions: LU-LU, SSCP-PU, SSCP-LU.
1260
+
1261
+ Each Node of PU Type 2.0 from the snaNodeAdminTable
1262
+ has one entry in this table and the index used
1263
+ here has the same value as snaNodeAdminIndex of
1264
+ that PU. The entry is created by the Agent.""",
1265
+ }, # row
1266
+ "snaPu20StatsSentBytes" : {
1267
+ "nodetype" : "column",
1268
+ "moduleName" : "SNA-NAU-MIB",
1269
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1.1",
1270
+ "status" : "current",
1271
+ "syntax" : {
1272
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1273
+ },
1274
+ "access" : "readonly",
1275
+ "description" :
1276
+ """The number of bytes sent by this Node.""",
1277
+ }, # column
1278
+ "snaPu20StatsReceivedBytes" : {
1279
+ "nodetype" : "column",
1280
+ "moduleName" : "SNA-NAU-MIB",
1281
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1.2",
1282
+ "status" : "current",
1283
+ "syntax" : {
1284
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1285
+ },
1286
+ "access" : "readonly",
1287
+ "description" :
1288
+ """The number of bytes received by this Node.""",
1289
+ }, # column
1290
+ "snaPu20StatsSentPius" : {
1291
+ "nodetype" : "column",
1292
+ "moduleName" : "SNA-NAU-MIB",
1293
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1.3",
1294
+ "status" : "current",
1295
+ "syntax" : {
1296
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1297
+ },
1298
+ "access" : "readonly",
1299
+ "description" :
1300
+ """The number of PIUs sent by this Node.""",
1301
+ }, # column
1302
+ "snaPu20StatsReceivedPius" : {
1303
+ "nodetype" : "column",
1304
+ "moduleName" : "SNA-NAU-MIB",
1305
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1.4",
1306
+ "status" : "current",
1307
+ "syntax" : {
1308
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1309
+ },
1310
+ "access" : "readonly",
1311
+ "description" :
1312
+ """The number of PIUs received by this Node.""",
1313
+ }, # column
1314
+ "snaPu20StatsSentNegativeResps" : {
1315
+ "nodetype" : "column",
1316
+ "moduleName" : "SNA-NAU-MIB",
1317
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1.5",
1318
+ "status" : "current",
1319
+ "syntax" : {
1320
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1321
+ },
1322
+ "access" : "readonly",
1323
+ "description" :
1324
+ """The number of negative responses sent
1325
+ by this Node.""",
1326
+ }, # column
1327
+ "snaPu20StatsReceivedNegativeResps" : {
1328
+ "nodetype" : "column",
1329
+ "moduleName" : "SNA-NAU-MIB",
1330
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1.6",
1331
+ "status" : "current",
1332
+ "syntax" : {
1333
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1334
+ },
1335
+ "access" : "readonly",
1336
+ "description" :
1337
+ """The number of negative responses received
1338
+ by this Node.""",
1339
+ }, # column
1340
+ "snaPu20StatsActLus" : {
1341
+ "nodetype" : "column",
1342
+ "moduleName" : "SNA-NAU-MIB",
1343
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1.7",
1344
+ "status" : "current",
1345
+ "syntax" : {
1346
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1347
+ },
1348
+ "access" : "readonly",
1349
+ "description" :
1350
+ """The number of LUs on this PU which have
1351
+ received and responded to ACTLU from the host.""",
1352
+ }, # column
1353
+ "snaPu20StatsInActLus" : {
1354
+ "nodetype" : "column",
1355
+ "moduleName" : "SNA-NAU-MIB",
1356
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1.8",
1357
+ "status" : "current",
1358
+ "syntax" : {
1359
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1360
+ },
1361
+ "access" : "readonly",
1362
+ "description" :
1363
+ """The number of LUs on this PU which have
1364
+ not received an ACTLU from the host. This is
1365
+ possible if the number of configured LUs exceeds
1366
+ that on the host.""",
1367
+ }, # column
1368
+ "snaPu20StatsBindLus" : {
1369
+ "nodetype" : "column",
1370
+ "moduleName" : "SNA-NAU-MIB",
1371
+ "oid" : "1.3.6.1.2.1.34.1.1.5.1.9",
1372
+ "status" : "current",
1373
+ "syntax" : {
1374
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1375
+ },
1376
+ "access" : "readonly",
1377
+ "description" :
1378
+ """The number of LUs on this PU which have
1379
+ received and acknowledged a BIND request from the
1380
+ host.""",
1381
+ }, # column
1382
+ "snaNodeLinkAdminTable" : {
1383
+ "nodetype" : "table",
1384
+ "moduleName" : "SNA-NAU-MIB",
1385
+ "oid" : "1.3.6.1.2.1.34.1.1.6",
1386
+ "status" : "current",
1387
+ "description" :
1388
+ """This table contains the references to link
1389
+ specific tables. If a Node is configured for
1390
+ multiple links, then the Node will have
1391
+ multiple entries in this table.
1392
+ The entries in this table can be generated
1393
+ initially, after initialization of SNA service,
1394
+ by the Agent which uses information from
1395
+ Node configuration file.
1396
+ Subsequent modifications of parameters,
1397
+ creation of new Nodes link entries and deletion
1398
+ of entries is possible.
1399
+ The modification to this table can be
1400
+ saved in the Node configuration file for the
1401
+ next initialization of SNA service, but the mechanism
1402
+ for this function is not defined here.""",
1403
+ }, # table
1404
+ "snaNodeLinkAdminEntry" : {
1405
+ "nodetype" : "row",
1406
+ "moduleName" : "SNA-NAU-MIB",
1407
+ "oid" : "1.3.6.1.2.1.34.1.1.6.1",
1408
+ "create" : "true",
1409
+ "status" : "current",
1410
+ "linkage" : [
1411
+ "snaNodeAdminIndex",
1412
+ "snaNodeLinkAdminIndex",
1413
+ ],
1414
+ "description" :
1415
+ """Entry contains the configuration information that
1416
+ associates a Node instance to one link instance.
1417
+ The objects in the entry have read-create access.
1418
+ Entry can be created, modified or deleted.
1419
+ The object snaNodeLinkAdminRowStatus is used (set)
1420
+ to create or delete an entry.
1421
+ The object snaNodeLinkAdminSpecific can be set
1422
+ later, after the entry has been created.""",
1423
+ }, # row
1424
+ "snaNodeLinkAdminIndex" : {
1425
+ "nodetype" : "column",
1426
+ "moduleName" : "SNA-NAU-MIB",
1427
+ "oid" : "1.3.6.1.2.1.34.1.1.6.1.1",
1428
+ "status" : "current",
1429
+ "syntax" : {
1430
+ "type" : { "module" :"", "name" : "Integer32"},
1431
+ },
1432
+ "access" : "noaccess",
1433
+ "description" :
1434
+ """This value is used to index the instances of objects.
1435
+ If an Agent creates the entry, then it will assign
1436
+ this number otherwise a Management Station
1437
+ generates a random number when it reserves the
1438
+ entry for creation.""",
1439
+ }, # column
1440
+ "snaNodeLinkAdminSpecific" : {
1441
+ "nodetype" : "column",
1442
+ "moduleName" : "SNA-NAU-MIB",
1443
+ "oid" : "1.3.6.1.2.1.34.1.1.6.1.2",
1444
+ "status" : "current",
1445
+ "syntax" : {
1446
+ "type" : { "module" :"SNMPv2-TC", "name" : "InstancePointer"},
1447
+ },
1448
+ "access" : "readwrite",
1449
+ "description" :
1450
+ """This value points to the row in the table
1451
+ containing information on the link instance.
1452
+ (e.g., the sdlcLSAdminTable of
1453
+ the SNA DLC MIB module).""",
1454
+ }, # column
1455
+ "snaNodeLinkAdminMaxPiu" : {
1456
+ "nodetype" : "column",
1457
+ "moduleName" : "SNA-NAU-MIB",
1458
+ "oid" : "1.3.6.1.2.1.34.1.1.6.1.3",
1459
+ "status" : "current",
1460
+ "syntax" : {
1461
+ "type" : { "module" :"", "name" : "Integer32"},
1462
+ },
1463
+ "access" : "readwrite",
1464
+ "description" :
1465
+ """This value identifies the maximum number of octets
1466
+ that can be exchanged by this Node in one
1467
+ Path Information Unit (PIU).""",
1468
+ }, # column
1469
+ "snaNodeLinkAdminRowStatus" : {
1470
+ "nodetype" : "column",
1471
+ "moduleName" : "SNA-NAU-MIB",
1472
+ "oid" : "1.3.6.1.2.1.34.1.1.6.1.4",
1473
+ "status" : "current",
1474
+ "syntax" : {
1475
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1476
+ },
1477
+ "access" : "readwrite",
1478
+ "description" :
1479
+ """This object is used by a Management Station to
1480
+ create or delete the row entry in the
1481
+ snaNodeLinkAdminTable.
1482
+ To activate a row, a Management Station sets the value
1483
+ to 'active (1)' or 'notReady (3)'. Upon successful
1484
+ creation of the row, the Agent automatically creates
1485
+ a corresponding entry in the snaNodeLinkOperTable.
1486
+
1487
+ Row deletion can be Management Station or Agent
1488
+ initiated:
1489
+ (a) The Management Station can set the value to
1490
+ 'destroy (6)' only when the value of
1491
+ snaNodeLinkOperState of this Link
1492
+ instance is 'inactive (1)'. The Agent will then
1493
+ delete the row corresponding to this Link
1494
+ instance from snaNodeLinkOperTable and
1495
+ from snaNodeLinkAdminTable.
1496
+ (b) The Agent detects that a row is in the
1497
+ 'notReady (3)' state for greater than a
1498
+ default period of 5 minutes.
1499
+ (c) The Agent will not include a row with RowStatus=
1500
+ 'notReady (3)', after SNA system re-initialization
1501
+ (e.g., reboot).""",
1502
+ }, # column
1503
+ "snaNodeLinkAdminTableLastChange" : {
1504
+ "nodetype" : "scalar",
1505
+ "moduleName" : "SNA-NAU-MIB",
1506
+ "oid" : "1.3.6.1.2.1.34.1.1.7",
1507
+ "status" : "current",
1508
+ "syntax" : {
1509
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1510
+ },
1511
+ "access" : "readonly",
1512
+ "description" :
1513
+ """The timestamp (e.g., the Agent's sysUpTime value)
1514
+ at the last
1515
+ change made to any object in the snaNodeLinkAdminTable,
1516
+ including row deletions/additions (i.e., changes
1517
+ to the snaNodeLinkAdminRowStatus object).
1518
+
1519
+ This object can be used to reduce frequent
1520
+ retrievals of the snaNodeLinkAdminTable by a
1521
+ Management Station. It is expected that a
1522
+ Management Station will periodically poll this
1523
+ object and compare its current value with the
1524
+ previous one.
1525
+ A difference indicates that some Node operational
1526
+ information has been changed. Only then will the
1527
+ Management Station retrieve the entire table.""",
1528
+ }, # scalar
1529
+ "snaNodeLinkOperTable" : {
1530
+ "nodetype" : "table",
1531
+ "moduleName" : "SNA-NAU-MIB",
1532
+ "oid" : "1.3.6.1.2.1.34.1.1.8",
1533
+ "status" : "current",
1534
+ "description" :
1535
+ """This table contains all references to link
1536
+ specific tables for operational parameters.
1537
+ If a Node is configured for multiple links,
1538
+ then the Node will have multiple entries in
1539
+ this table. This table augments the
1540
+ snaNodeLinkAdminTable.""",
1541
+ }, # table
1542
+ "snaNodeLinkOperEntry" : {
1543
+ "nodetype" : "row",
1544
+ "moduleName" : "SNA-NAU-MIB",
1545
+ "oid" : "1.3.6.1.2.1.34.1.1.8.1",
1546
+ "status" : "current",
1547
+ "linkage" : [
1548
+ { "SNA-NAU-MIB" : {
1549
+ "indexkind" : "augments",
1550
+ "relatedNode" : "snaNodeLinkAdminEntry",
1551
+ }},
1552
+ ],
1553
+ "description" :
1554
+ """Entry contains all current parameters for one
1555
+ Node link. The objects in the entry have
1556
+ read-only access.""",
1557
+ }, # row
1558
+ "snaNodeLinkOperSpecific" : {
1559
+ "nodetype" : "column",
1560
+ "moduleName" : "SNA-NAU-MIB",
1561
+ "oid" : "1.3.6.1.2.1.34.1.1.8.1.1",
1562
+ "status" : "current",
1563
+ "syntax" : {
1564
+ "type" : { "module" :"SNMPv2-TC", "name" : "InstancePointer"},
1565
+ },
1566
+ "access" : "readonly",
1567
+ "description" :
1568
+ """This value points to the row in the table
1569
+ containing information on the link instance.
1570
+ (e.g., the sdlcLSOperTable of
1571
+ the SNA DLC MIB module).""",
1572
+ }, # column
1573
+ "snaNodeLinkOperMaxPiu" : {
1574
+ "nodetype" : "column",
1575
+ "moduleName" : "SNA-NAU-MIB",
1576
+ "oid" : "1.3.6.1.2.1.34.1.1.8.1.2",
1577
+ "status" : "current",
1578
+ "syntax" : {
1579
+ "type" : { "module" :"", "name" : "Integer32"},
1580
+ },
1581
+ "access" : "readonly",
1582
+ "description" :
1583
+ """Maximum number of octets that can
1584
+ be exchanged by this Node in one Path
1585
+ Information Unit (PIU).""",
1586
+ }, # column
1587
+ "snaNodeLinkOperTableLastChange" : {
1588
+ "nodetype" : "scalar",
1589
+ "moduleName" : "SNA-NAU-MIB",
1590
+ "oid" : "1.3.6.1.2.1.34.1.1.9",
1591
+ "status" : "current",
1592
+ "syntax" : {
1593
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1594
+ },
1595
+ "access" : "readonly",
1596
+ "description" :
1597
+ """The timestamp of the last
1598
+ change made to any object in the snaNodeLinkOperTable,
1599
+ including row deletions/additions.
1600
+
1601
+ This object can be used to reduce frequent
1602
+ retrievals of the snaNodeLinkOperTable by a
1603
+ Management Station. It is expected that a
1604
+ Management Station will periodically poll this
1605
+ object and compare its current value with the
1606
+ previous one.
1607
+ A difference indicates that some Node operational
1608
+ information has been changed. Only then will the
1609
+ Management Station retrieve the entire table.""",
1610
+ }, # scalar
1611
+ "snaNodeTraps" : {
1612
+ "nodetype" : "node",
1613
+ "moduleName" : "SNA-NAU-MIB",
1614
+ "oid" : "1.3.6.1.2.1.34.1.1.10",
1615
+ }, # node
1616
+ "snaLu" : {
1617
+ "nodetype" : "node",
1618
+ "moduleName" : "SNA-NAU-MIB",
1619
+ "oid" : "1.3.6.1.2.1.34.1.2",
1620
+ }, # node
1621
+ "snaLuAdminTable" : {
1622
+ "nodetype" : "table",
1623
+ "moduleName" : "SNA-NAU-MIB",
1624
+ "oid" : "1.3.6.1.2.1.34.1.2.1",
1625
+ "status" : "current",
1626
+ "description" :
1627
+ """This table contains LU configuration information.
1628
+ The rows in this table can be created and deleted
1629
+ by a Management Station.
1630
+ Only objects which are common to all types of LUs
1631
+ are included in this table.""",
1632
+ }, # table
1633
+ "snaLuAdminEntry" : {
1634
+ "nodetype" : "row",
1635
+ "moduleName" : "SNA-NAU-MIB",
1636
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1",
1637
+ "create" : "true",
1638
+ "status" : "current",
1639
+ "linkage" : [
1640
+ "snaNodeAdminIndex",
1641
+ "snaLuAdminLuIndex",
1642
+ ],
1643
+ "description" :
1644
+ """Contains configuration variables for an LU.""",
1645
+ }, # row
1646
+ "snaLuAdminLuIndex" : {
1647
+ "nodetype" : "column",
1648
+ "moduleName" : "SNA-NAU-MIB",
1649
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1.1",
1650
+ "status" : "current",
1651
+ "syntax" : {
1652
+ "type" : { "module" :"", "name" : "Integer32"},
1653
+ },
1654
+ "access" : "noaccess",
1655
+ "description" :
1656
+ """This value identifies the unique index for an
1657
+ LU instance within a Node.""",
1658
+ }, # column
1659
+ "snaLuAdminName" : {
1660
+ "nodetype" : "column",
1661
+ "moduleName" : "SNA-NAU-MIB",
1662
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1.2",
1663
+ "status" : "current",
1664
+ "syntax" : {
1665
+ "type" : {
1666
+ "basetype" : "OctetString",
1667
+ "parent module" : {
1668
+ "name" : "SNMPv2-TC",
1669
+ "type" : "DisplayString",
1670
+ },
1671
+ "ranges" : [
1672
+ {
1673
+ "min" : "0",
1674
+ "max" : "48"
1675
+ },
1676
+ ],
1677
+ "range" : {
1678
+ "min" : "0",
1679
+ "max" : "48"
1680
+ },
1681
+ },
1682
+ },
1683
+ "access" : "readwrite",
1684
+ "description" :
1685
+ """This value identifies the user configurable
1686
+ name for this LU. If a name is not assigned to the LU,
1687
+ then this object contains a zero length string.
1688
+
1689
+ A write operation to this object will
1690
+ not change the operational value reflected
1691
+ in snaLuOperName until the Node has
1692
+ been re-activated (e.g., after the next
1693
+ initialization of the SNA services).""",
1694
+ }, # column
1695
+ "snaLuAdminSnaName" : {
1696
+ "nodetype" : "column",
1697
+ "moduleName" : "SNA-NAU-MIB",
1698
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1.3",
1699
+ "status" : "current",
1700
+ "syntax" : {
1701
+ "type" : {
1702
+ "basetype" : "OctetString",
1703
+ "parent module" : {
1704
+ "name" : "SNMPv2-TC",
1705
+ "type" : "DisplayString",
1706
+ },
1707
+ "ranges" : [
1708
+ {
1709
+ "min" : "1",
1710
+ "max" : "17"
1711
+ },
1712
+ ],
1713
+ "range" : {
1714
+ "min" : "1",
1715
+ "max" : "17"
1716
+ },
1717
+ },
1718
+ },
1719
+ "access" : "readwrite",
1720
+ "description" :
1721
+ """This value identifies the SNA LU name
1722
+ used in exchange of SNA data.
1723
+
1724
+ A write operation to this object will
1725
+ not change the operational value reflected
1726
+ in snaLuOperSnaName until the Node has
1727
+ been re-activated (e.g., after the next
1728
+ initialization of the SNA services).""",
1729
+ }, # column
1730
+ "snaLuAdminType" : {
1731
+ "nodetype" : "column",
1732
+ "moduleName" : "SNA-NAU-MIB",
1733
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1.4",
1734
+ "status" : "current",
1735
+ "syntax" : {
1736
+ "type" : {
1737
+ "basetype" : "Enumeration",
1738
+ "other" : {
1739
+ "nodetype" : "namednumber",
1740
+ "number" : "1"
1741
+ },
1742
+ "lu0" : {
1743
+ "nodetype" : "namednumber",
1744
+ "number" : "2"
1745
+ },
1746
+ "lu1" : {
1747
+ "nodetype" : "namednumber",
1748
+ "number" : "3"
1749
+ },
1750
+ "lu2" : {
1751
+ "nodetype" : "namednumber",
1752
+ "number" : "4"
1753
+ },
1754
+ "lu3" : {
1755
+ "nodetype" : "namednumber",
1756
+ "number" : "5"
1757
+ },
1758
+ "lu4" : {
1759
+ "nodetype" : "namednumber",
1760
+ "number" : "6"
1761
+ },
1762
+ "lu62" : {
1763
+ "nodetype" : "namednumber",
1764
+ "number" : "7"
1765
+ },
1766
+ "lu7" : {
1767
+ "nodetype" : "namednumber",
1768
+ "number" : "8"
1769
+ },
1770
+ },
1771
+ },
1772
+ "access" : "readwrite",
1773
+ "description" :
1774
+ """This value identifies the LU type.
1775
+
1776
+ A write operation to this object will
1777
+ not change the operational value reflected
1778
+ in snaLuOperAdminType until the Node has
1779
+ been re-activated (e.g., after the next
1780
+ initialization of the SNA services).""",
1781
+ }, # column
1782
+ "snaLuAdminDepType" : {
1783
+ "nodetype" : "column",
1784
+ "moduleName" : "SNA-NAU-MIB",
1785
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1.5",
1786
+ "status" : "current",
1787
+ "syntax" : {
1788
+ "type" : {
1789
+ "basetype" : "Enumeration",
1790
+ "dependent" : {
1791
+ "nodetype" : "namednumber",
1792
+ "number" : "1"
1793
+ },
1794
+ "independent" : {
1795
+ "nodetype" : "namednumber",
1796
+ "number" : "2"
1797
+ },
1798
+ },
1799
+ },
1800
+ "access" : "readwrite",
1801
+ "description" :
1802
+ """This value identifies whether the LU is
1803
+ dependent or independent.
1804
+
1805
+ A write operation to this object will
1806
+ not change the operational value reflected
1807
+ in snaLuOperDepType until the Node has
1808
+ been re-activated (e.g., after the next
1809
+ initialization of the SNA services).""",
1810
+ }, # column
1811
+ "snaLuAdminLocalAddress" : {
1812
+ "nodetype" : "column",
1813
+ "moduleName" : "SNA-NAU-MIB",
1814
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1.6",
1815
+ "status" : "current",
1816
+ "syntax" : {
1817
+ "type" : {
1818
+ "basetype" : "OctetString",
1819
+ "ranges" : [
1820
+ {
1821
+ "min" : "1",
1822
+ "max" : "1"
1823
+ },
1824
+ ],
1825
+ "range" : {
1826
+ "min" : "1",
1827
+ "max" : "1"
1828
+ },
1829
+ },
1830
+ },
1831
+ "access" : "readwrite",
1832
+ "description" :
1833
+ """The local address for this LU is a byte with a value
1834
+ ranging from 0 to 254.For dependent LUs, this value
1835
+ ranges from 1 to 254 and for independent LUs this
1836
+ value is always 0.
1837
+
1838
+ A write operation to this object will not change the
1839
+ operational value reflected in snaLuOperLocalAddress
1840
+ until the Node has been re-activated (e.g., after the
1841
+ next initialization of the SNA services).""",
1842
+ }, # column
1843
+ "snaLuAdminDisplayModel" : {
1844
+ "nodetype" : "column",
1845
+ "moduleName" : "SNA-NAU-MIB",
1846
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1.7",
1847
+ "status" : "current",
1848
+ "syntax" : {
1849
+ "type" : {
1850
+ "basetype" : "Enumeration",
1851
+ "invalid" : {
1852
+ "nodetype" : "namednumber",
1853
+ "number" : "1"
1854
+ },
1855
+ "model2A" : {
1856
+ "nodetype" : "namednumber",
1857
+ "number" : "2"
1858
+ },
1859
+ "model2B" : {
1860
+ "nodetype" : "namednumber",
1861
+ "number" : "3"
1862
+ },
1863
+ "model3A" : {
1864
+ "nodetype" : "namednumber",
1865
+ "number" : "4"
1866
+ },
1867
+ "model3B" : {
1868
+ "nodetype" : "namednumber",
1869
+ "number" : "5"
1870
+ },
1871
+ "model4A" : {
1872
+ "nodetype" : "namednumber",
1873
+ "number" : "6"
1874
+ },
1875
+ "model4B" : {
1876
+ "nodetype" : "namednumber",
1877
+ "number" : "7"
1878
+ },
1879
+ "model5A" : {
1880
+ "nodetype" : "namednumber",
1881
+ "number" : "8"
1882
+ },
1883
+ "model5B" : {
1884
+ "nodetype" : "namednumber",
1885
+ "number" : "9"
1886
+ },
1887
+ "dynamic" : {
1888
+ "nodetype" : "namednumber",
1889
+ "number" : "10"
1890
+ },
1891
+ },
1892
+ },
1893
+ "access" : "readwrite",
1894
+ "description" :
1895
+ """The value of this object identifies the model type
1896
+ and screen size of the terminal connected to the host.
1897
+ This is only valid for LU Type 2. The values have
1898
+ the following meaning:
1899
+
1900
+ model2A(2) - Model 2 (24 rows x 80 cols) with base
1901
+ attributes
1902
+ model2B(3) - Model 2 (24 rows x 80 cols) with
1903
+ extended attributes
1904
+ model3A(4) - Model 3 (32 rows x 80 cols) with base
1905
+ attributes
1906
+ model3B(5) - Model 3 (32 rows x 80 cols) with extended
1907
+ attributes
1908
+ model4A(6) - Model 4 (43 rows x 80 cols) with base
1909
+ attributes
1910
+ model4B(7) - Model 4 (43 rows x 80 cols) with extended
1911
+ attributes
1912
+ model5A(8) - Model 5 (27 rows x 132 cols) with base
1913
+ attributes
1914
+ model5B(9) - Model 5 (27 rows x 132 cols) with
1915
+ extended attributes
1916
+ dynamic(10) - Screen size determine with BIND and Read
1917
+ Partition Query.
1918
+
1919
+ In case this LU is not Type 2, then this object
1920
+ should contain the invalid(1) value.""",
1921
+ }, # column
1922
+ "snaLuAdminTerm" : {
1923
+ "nodetype" : "column",
1924
+ "moduleName" : "SNA-NAU-MIB",
1925
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1.8",
1926
+ "status" : "current",
1927
+ "syntax" : {
1928
+ "type" : {
1929
+ "basetype" : "Enumeration",
1930
+ "unbind" : {
1931
+ "nodetype" : "namednumber",
1932
+ "number" : "1"
1933
+ },
1934
+ "termself" : {
1935
+ "nodetype" : "namednumber",
1936
+ "number" : "2"
1937
+ },
1938
+ "rshutd" : {
1939
+ "nodetype" : "namednumber",
1940
+ "number" : "3"
1941
+ },
1942
+ "poweroff" : {
1943
+ "nodetype" : "namednumber",
1944
+ "number" : "4"
1945
+ },
1946
+ },
1947
+ },
1948
+ "access" : "readwrite",
1949
+ "description" :
1950
+ """This value identifies the desired method for
1951
+ deactivation of this LU. This value overrides the
1952
+ default method (snaNodeOperLuTermDefault) for this
1953
+ Node. For LU 6.2, only the value 'unbind (1)'
1954
+ applies.
1955
+
1956
+ unbind(1) - terminate the LU-LU session by sending
1957
+ an SNA UNBIND request.
1958
+ termself(2) - terminate the LU-LU session by sending
1959
+ an SNA TERM-SELF (Terminate Self) request on
1960
+ the SSCP-LU session. The SSCP will inform the
1961
+ remote session LU partner to send an UNBIND
1962
+ request to terminate the session.
1963
+ rshutd(3) - terminate the LU-LU session by sending
1964
+ an SNA RSHUTD (Request ShutDown) request to
1965
+ the remote session LU partner. The remote LU
1966
+ will then send an UNBIND request to terminate
1967
+ the session.
1968
+ poweroff(4) - terminate the LU-LU session by sending
1969
+ either an SNA LUSTAT (LU Status) request on
1970
+ the LU-LU session or an SNA NOTIFY request on
1971
+ the SSCP-LU session indicating that the LU has
1972
+ been powered off. Sending both is also
1973
+ acceptable. The result should be that the
1974
+ remote session LU partner will send an UNBIND
1975
+ to terminate the session.
1976
+
1977
+ A write operation to this object may immediately
1978
+ change the operational value reflected
1979
+ in snaLuOperTerm depending
1980
+ on the Agent implementation.""",
1981
+ }, # column
1982
+ "snaLuAdminRowStatus" : {
1983
+ "nodetype" : "column",
1984
+ "moduleName" : "SNA-NAU-MIB",
1985
+ "oid" : "1.3.6.1.2.1.34.1.2.1.1.9",
1986
+ "status" : "current",
1987
+ "syntax" : {
1988
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1989
+ },
1990
+ "access" : "readwrite",
1991
+ "description" :
1992
+ """This object is used by a Management Station to
1993
+ create or delete the row entry in the
1994
+ snaLuAdminTable.
1995
+ To activate a row, the Management Station sets the
1996
+ value to 'active (1)' or 'notReady (3)'.
1997
+ Upon successful creation of the row, the Agent
1998
+ automatically creates a corresponding entry in the
1999
+ snaLuOperTable with snaLuOperState equal to
2000
+ 'inactive (1)'.
2001
+ Row deletion can be Management Station or Agent
2002
+ initiated:
2003
+ (a) The Management Station can set the value to
2004
+ 'destroy (6)' only when the value of snaLuOperState
2005
+ of this LU instance is 'inactive (1)'. The Agent will
2006
+ then delete the row corresponding to this LU
2007
+ instance from snaLuAdminTable and
2008
+ from snaLuOperTable.
2009
+ (b) The Agent detects that a row is in the
2010
+ 'notReady (3)' state for greater than a
2011
+ default period of 5 minutes.
2012
+ (c) The Agent will not create a row with RowStatus
2013
+ equal to 'notReady (3)', after SNA system
2014
+ re-initialization (e.g., reboot).""",
2015
+ }, # column
2016
+ "snaLuOperTable" : {
2017
+ "nodetype" : "table",
2018
+ "moduleName" : "SNA-NAU-MIB",
2019
+ "oid" : "1.3.6.1.2.1.34.1.2.2",
2020
+ "status" : "current",
2021
+ "description" :
2022
+ """This table contains dynamic runtime information and
2023
+ control variables relating to LUs.
2024
+ Only objects which are common to all types of LUs are
2025
+ included in this table. This table augments the
2026
+ snaLuAdminTable.""",
2027
+ }, # table
2028
+ "snaLuOperEntry" : {
2029
+ "nodetype" : "row",
2030
+ "moduleName" : "SNA-NAU-MIB",
2031
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1",
2032
+ "status" : "current",
2033
+ "linkage" : [
2034
+ { "SNA-NAU-MIB" : {
2035
+ "indexkind" : "augments",
2036
+ "relatedNode" : "snaLuAdminEntry",
2037
+ }},
2038
+ ],
2039
+ "description" :
2040
+ """Contains objects reflecting current information
2041
+ for an LU.
2042
+ Each entry is created by the Agent. All entries
2043
+ have read-only access.""",
2044
+ }, # row
2045
+ "snaLuOperName" : {
2046
+ "nodetype" : "column",
2047
+ "moduleName" : "SNA-NAU-MIB",
2048
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1.1",
2049
+ "status" : "current",
2050
+ "syntax" : {
2051
+ "type" : {
2052
+ "basetype" : "OctetString",
2053
+ "parent module" : {
2054
+ "name" : "SNMPv2-TC",
2055
+ "type" : "DisplayString",
2056
+ },
2057
+ "ranges" : [
2058
+ {
2059
+ "min" : "0",
2060
+ "max" : "48"
2061
+ },
2062
+ ],
2063
+ "range" : {
2064
+ "min" : "0",
2065
+ "max" : "48"
2066
+ },
2067
+ },
2068
+ },
2069
+ "access" : "readonly",
2070
+ "description" :
2071
+ """User configurable name for this LU. If a name
2072
+ is not assigned, then this object contains a
2073
+ zero length string.""",
2074
+ }, # column
2075
+ "snaLuOperSnaName" : {
2076
+ "nodetype" : "column",
2077
+ "moduleName" : "SNA-NAU-MIB",
2078
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1.2",
2079
+ "status" : "current",
2080
+ "syntax" : {
2081
+ "type" : {
2082
+ "basetype" : "OctetString",
2083
+ "parent module" : {
2084
+ "name" : "SNMPv2-TC",
2085
+ "type" : "DisplayString",
2086
+ },
2087
+ "ranges" : [
2088
+ {
2089
+ "min" : "1",
2090
+ "max" : "17"
2091
+ },
2092
+ ],
2093
+ "range" : {
2094
+ "min" : "1",
2095
+ "max" : "17"
2096
+ },
2097
+ },
2098
+ },
2099
+ "access" : "readonly",
2100
+ "description" :
2101
+ """The value identifies the current SNA LU name.""",
2102
+ }, # column
2103
+ "snaLuOperType" : {
2104
+ "nodetype" : "column",
2105
+ "moduleName" : "SNA-NAU-MIB",
2106
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1.3",
2107
+ "status" : "current",
2108
+ "syntax" : {
2109
+ "type" : {
2110
+ "basetype" : "Enumeration",
2111
+ "other" : {
2112
+ "nodetype" : "namednumber",
2113
+ "number" : "1"
2114
+ },
2115
+ "lu0" : {
2116
+ "nodetype" : "namednumber",
2117
+ "number" : "2"
2118
+ },
2119
+ "lu1" : {
2120
+ "nodetype" : "namednumber",
2121
+ "number" : "3"
2122
+ },
2123
+ "lu2" : {
2124
+ "nodetype" : "namednumber",
2125
+ "number" : "4"
2126
+ },
2127
+ "lu3" : {
2128
+ "nodetype" : "namednumber",
2129
+ "number" : "5"
2130
+ },
2131
+ "lu4" : {
2132
+ "nodetype" : "namednumber",
2133
+ "number" : "6"
2134
+ },
2135
+ "lu62" : {
2136
+ "nodetype" : "namednumber",
2137
+ "number" : "7"
2138
+ },
2139
+ "lu7" : {
2140
+ "nodetype" : "namednumber",
2141
+ "number" : "8"
2142
+ },
2143
+ },
2144
+ },
2145
+ "access" : "readonly",
2146
+ "description" :
2147
+ """The value identifies the current LU type.""",
2148
+ }, # column
2149
+ "snaLuOperDepType" : {
2150
+ "nodetype" : "column",
2151
+ "moduleName" : "SNA-NAU-MIB",
2152
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1.4",
2153
+ "status" : "current",
2154
+ "syntax" : {
2155
+ "type" : {
2156
+ "basetype" : "Enumeration",
2157
+ "dependent" : {
2158
+ "nodetype" : "namednumber",
2159
+ "number" : "1"
2160
+ },
2161
+ "independent" : {
2162
+ "nodetype" : "namednumber",
2163
+ "number" : "2"
2164
+ },
2165
+ },
2166
+ },
2167
+ "access" : "readonly",
2168
+ "description" :
2169
+ """The value identifies whether the LU is currently
2170
+ dependent or independent.
2171
+
2172
+ A write operation to this object will
2173
+ not change the operational value reflected
2174
+ in snaLuOperDepType until the Node has
2175
+ been re-activated (e.g., after the next
2176
+ initialization of the SNA services).""",
2177
+ }, # column
2178
+ "snaLuOperLocalAddress" : {
2179
+ "nodetype" : "column",
2180
+ "moduleName" : "SNA-NAU-MIB",
2181
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1.5",
2182
+ "status" : "current",
2183
+ "syntax" : {
2184
+ "type" : {
2185
+ "basetype" : "OctetString",
2186
+ "ranges" : [
2187
+ {
2188
+ "min" : "1",
2189
+ "max" : "1"
2190
+ },
2191
+ ],
2192
+ "range" : {
2193
+ "min" : "1",
2194
+ "max" : "1"
2195
+ },
2196
+ },
2197
+ },
2198
+ "access" : "readonly",
2199
+ "description" :
2200
+ """The local address for this LU is a byte with a value
2201
+ ranging from 0 to 254. For dependent LUs, this value
2202
+ ranges from 1 to 254; for independent LUs this value
2203
+ is always 0.
2204
+
2205
+ A write operation to this object will
2206
+ not change the operational value reflected
2207
+ in snaLuOperLocalAddress until the Node has
2208
+ been re-activated (e.g., after the next
2209
+ initialization of the SNA services).""",
2210
+ }, # column
2211
+ "snaLuOperDisplayModel" : {
2212
+ "nodetype" : "column",
2213
+ "moduleName" : "SNA-NAU-MIB",
2214
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1.6",
2215
+ "status" : "current",
2216
+ "syntax" : {
2217
+ "type" : {
2218
+ "basetype" : "Enumeration",
2219
+ "invalid" : {
2220
+ "nodetype" : "namednumber",
2221
+ "number" : "1"
2222
+ },
2223
+ "model2A" : {
2224
+ "nodetype" : "namednumber",
2225
+ "number" : "2"
2226
+ },
2227
+ "model2B" : {
2228
+ "nodetype" : "namednumber",
2229
+ "number" : "3"
2230
+ },
2231
+ "model3A" : {
2232
+ "nodetype" : "namednumber",
2233
+ "number" : "4"
2234
+ },
2235
+ "model3B" : {
2236
+ "nodetype" : "namednumber",
2237
+ "number" : "5"
2238
+ },
2239
+ "model4A" : {
2240
+ "nodetype" : "namednumber",
2241
+ "number" : "6"
2242
+ },
2243
+ "model4B" : {
2244
+ "nodetype" : "namednumber",
2245
+ "number" : "7"
2246
+ },
2247
+ "model5A" : {
2248
+ "nodetype" : "namednumber",
2249
+ "number" : "8"
2250
+ },
2251
+ "model5B" : {
2252
+ "nodetype" : "namednumber",
2253
+ "number" : "9"
2254
+ },
2255
+ "dynamic" : {
2256
+ "nodetype" : "namednumber",
2257
+ "number" : "10"
2258
+ },
2259
+ },
2260
+ },
2261
+ "access" : "readonly",
2262
+ "description" :
2263
+ """The screen model type of the terminal connected to
2264
+ the host. If this LU is not Type 2, then this
2265
+ object should contain the 'invalid(1)' value.""",
2266
+ }, # column
2267
+ "snaLuOperTerm" : {
2268
+ "nodetype" : "column",
2269
+ "moduleName" : "SNA-NAU-MIB",
2270
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1.7",
2271
+ "status" : "current",
2272
+ "syntax" : {
2273
+ "type" : {
2274
+ "basetype" : "Enumeration",
2275
+ "unbind" : {
2276
+ "nodetype" : "namednumber",
2277
+ "number" : "1"
2278
+ },
2279
+ "termself" : {
2280
+ "nodetype" : "namednumber",
2281
+ "number" : "2"
2282
+ },
2283
+ "rshutd" : {
2284
+ "nodetype" : "namednumber",
2285
+ "number" : "3"
2286
+ },
2287
+ "poweroff" : {
2288
+ "nodetype" : "namednumber",
2289
+ "number" : "4"
2290
+ },
2291
+ },
2292
+ },
2293
+ "access" : "readonly",
2294
+ "description" :
2295
+ """The value identifies the current method for
2296
+ deactivation of this LU. This value overrides the
2297
+ default method (snaNodeOperLuTermDefault) for this
2298
+ Node. For LU 6.2, only the value 'unbind (1)'
2299
+ applies.
2300
+
2301
+ unbind(1) - terminate the LU-LU session by sending
2302
+ an SNA UNBIND request.
2303
+ termself(2) - terminate the LU-LU session by sending
2304
+ an SNA TERM-SELF (Terminate Self) request on
2305
+ the SSCP-LU session. The SSCP will inform the
2306
+ remote session LU partner to send an UNBIND
2307
+ request to terminate the session.
2308
+ rshutd(3) - terminate the LU-LU session by sending
2309
+ an SNA RSHUTD (Request ShutDown) request to
2310
+ the remote session LU partner. The remote LU
2311
+ will then send an UNBIND request to terminate
2312
+ the session.
2313
+ poweroff(4) - terminate the LU-LU session by sending
2314
+ either an SNA LUSTAT (LU Status) request on
2315
+ the LU-LU session or an SNA NOTIFY request on
2316
+ the SSCP-LU session indicating that the LU has
2317
+ been powered off. Sending both is also
2318
+ acceptable. The result should be that the
2319
+ remote session LU partner will send an UNBIND
2320
+ to terminate the session.""",
2321
+ }, # column
2322
+ "snaLuOperState" : {
2323
+ "nodetype" : "column",
2324
+ "moduleName" : "SNA-NAU-MIB",
2325
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1.8",
2326
+ "status" : "current",
2327
+ "syntax" : {
2328
+ "type" : {
2329
+ "basetype" : "Enumeration",
2330
+ "inactive" : {
2331
+ "nodetype" : "namednumber",
2332
+ "number" : "1"
2333
+ },
2334
+ "active" : {
2335
+ "nodetype" : "namednumber",
2336
+ "number" : "2"
2337
+ },
2338
+ },
2339
+ },
2340
+ "access" : "readonly",
2341
+ "description" :
2342
+ """The value identifies the current operational state of
2343
+ this LU.
2344
+ It has different meanings for dependent and independent
2345
+ LUs.
2346
+ For dependent LUs the values indicate the following:
2347
+ inactive (1) - LU didn't receive ACTLU, or
2348
+ it received DACTLU, or received ACTLU and sent
2349
+ negative response.
2350
+ active (2) - LU received ACTLU and acknowledged
2351
+ positively.
2352
+
2353
+ For independent LUs the values indicate the following:
2354
+ active (2) - the LU is defined and is able to send
2355
+ and receive BIND.
2356
+ inactive (1) - the LU has a session count equal
2357
+ to 0.""",
2358
+ }, # column
2359
+ "snaLuOperSessnCount" : {
2360
+ "nodetype" : "column",
2361
+ "moduleName" : "SNA-NAU-MIB",
2362
+ "oid" : "1.3.6.1.2.1.34.1.2.2.1.9",
2363
+ "status" : "current",
2364
+ "syntax" : {
2365
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2366
+ },
2367
+ "access" : "readonly",
2368
+ "description" :
2369
+ """The number of currently active LU-LU sessions of
2370
+ this LU.
2371
+ For the independent LU, if this object has value 0,
2372
+ it indicates that LU is inactive.""",
2373
+ }, # column
2374
+ "snaLuSessnTable" : {
2375
+ "nodetype" : "table",
2376
+ "moduleName" : "SNA-NAU-MIB",
2377
+ "oid" : "1.3.6.1.2.1.34.1.2.3",
2378
+ "status" : "current",
2379
+ "description" :
2380
+ """This is a table containing objects which describe the
2381
+ operational state of LU sessions. Only objects which
2382
+ are common to all types of LU sessions are included
2383
+ in this table.
2384
+
2385
+ When a session's snaLuSessnOperState value changes to
2386
+ 'pendingBind (2)', then the corresponding entry
2387
+ in the session table is created by the Agent.
2388
+
2389
+ When the session's snaLuSessnOperState value changes to
2390
+ 'unbound (1)', then the session will be removed from
2391
+ the session table by the Agent.""",
2392
+ }, # table
2393
+ "snaLuSessnEntry" : {
2394
+ "nodetype" : "row",
2395
+ "moduleName" : "SNA-NAU-MIB",
2396
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1",
2397
+ "status" : "current",
2398
+ "linkage" : [
2399
+ "snaNodeAdminIndex",
2400
+ "snaLuAdminLuIndex",
2401
+ "snaLuSessnRluIndex",
2402
+ "snaLuSessnIndex",
2403
+ ],
2404
+ "description" :
2405
+ """An entry contains dynamic parameters for an LU-LU
2406
+ session.
2407
+ The indices identify the Node, local LU, and remote LU
2408
+ for this session.""",
2409
+ }, # row
2410
+ "snaLuSessnRluIndex" : {
2411
+ "nodetype" : "column",
2412
+ "moduleName" : "SNA-NAU-MIB",
2413
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.1",
2414
+ "status" : "current",
2415
+ "syntax" : {
2416
+ "type" : { "module" :"", "name" : "Integer32"},
2417
+ },
2418
+ "access" : "readonly",
2419
+ "description" :
2420
+ """This value may be used to identify information about
2421
+ the session partner LU in a table of information about
2422
+ remote LUs. Such a table is not defined in this
2423
+ document. If a table of remote LU information is not
2424
+ implemented, or if the table is implemented but it does
2425
+ not contain information about the partner LU for a
2426
+ particular session (as for dependent LU-LU sessions)
2427
+ then this object will have a value of zero.""",
2428
+ }, # column
2429
+ "snaLuSessnIndex" : {
2430
+ "nodetype" : "column",
2431
+ "moduleName" : "SNA-NAU-MIB",
2432
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.2",
2433
+ "status" : "current",
2434
+ "syntax" : {
2435
+ "type" : { "module" :"", "name" : "Integer32"},
2436
+ },
2437
+ "access" : "readonly",
2438
+ "description" :
2439
+ """This value identifies the unique index of the session.
2440
+ It is recommended that an Agent should not reuse the
2441
+ index of a deactivated session for a significant
2442
+ period of time (e.g., one week).""",
2443
+ }, # column
2444
+ "snaLuSessnLocalApplName" : {
2445
+ "nodetype" : "column",
2446
+ "moduleName" : "SNA-NAU-MIB",
2447
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.3",
2448
+ "status" : "current",
2449
+ "syntax" : {
2450
+ "type" : {
2451
+ "basetype" : "OctetString",
2452
+ "parent module" : {
2453
+ "name" : "SNMPv2-TC",
2454
+ "type" : "DisplayString",
2455
+ },
2456
+ "ranges" : [
2457
+ {
2458
+ "min" : "0",
2459
+ "max" : "48"
2460
+ },
2461
+ ],
2462
+ "range" : {
2463
+ "min" : "0",
2464
+ "max" : "48"
2465
+ },
2466
+ },
2467
+ },
2468
+ "access" : "readonly",
2469
+ "description" :
2470
+ """The name of the local application using this LU.
2471
+ If the local application is unknown, then this object
2472
+ contains a zero length string.""",
2473
+ }, # column
2474
+ "snaLuSessnRemoteLuName" : {
2475
+ "nodetype" : "column",
2476
+ "moduleName" : "SNA-NAU-MIB",
2477
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.4",
2478
+ "status" : "current",
2479
+ "syntax" : {
2480
+ "type" : {
2481
+ "basetype" : "OctetString",
2482
+ "parent module" : {
2483
+ "name" : "SNMPv2-TC",
2484
+ "type" : "DisplayString",
2485
+ },
2486
+ "ranges" : [
2487
+ {
2488
+ "min" : "0",
2489
+ "max" : "17"
2490
+ },
2491
+ ],
2492
+ "range" : {
2493
+ "min" : "0",
2494
+ "max" : "17"
2495
+ },
2496
+ },
2497
+ },
2498
+ "access" : "readonly",
2499
+ "description" :
2500
+ """For dependent LUs which are indicated by the
2501
+ snaLuOperDepType object containing the value
2502
+ 'dependent (1)', this object contains the Primary
2503
+ LU (PLU) name. For independent LUs,
2504
+ this object contains the fully-qualified remote LU
2505
+ name of this 6.2 session.
2506
+ A fully qualified name is an SNA NAU entity name
2507
+ preceded by the NetId and a period as the delimiter.""",
2508
+ }, # column
2509
+ "snaLuSessnMaxSndRuSize" : {
2510
+ "nodetype" : "column",
2511
+ "moduleName" : "SNA-NAU-MIB",
2512
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.5",
2513
+ "status" : "current",
2514
+ "syntax" : {
2515
+ "type" : {
2516
+ "basetype" : "Integer32",
2517
+ "ranges" : [
2518
+ {
2519
+ "min" : "1",
2520
+ "max" : "8192"
2521
+ },
2522
+ ],
2523
+ "range" : {
2524
+ "min" : "1",
2525
+ "max" : "8192"
2526
+ },
2527
+ },
2528
+ },
2529
+ "access" : "readonly",
2530
+ "description" :
2531
+ """The maximum RU size used on this session for sending
2532
+ RUs.""",
2533
+ }, # column
2534
+ "snaLuSessnMaxRcvRuSize" : {
2535
+ "nodetype" : "column",
2536
+ "moduleName" : "SNA-NAU-MIB",
2537
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.6",
2538
+ "status" : "current",
2539
+ "syntax" : {
2540
+ "type" : {
2541
+ "basetype" : "Integer32",
2542
+ "ranges" : [
2543
+ {
2544
+ "min" : "1",
2545
+ "max" : "8192"
2546
+ },
2547
+ ],
2548
+ "range" : {
2549
+ "min" : "1",
2550
+ "max" : "8192"
2551
+ },
2552
+ },
2553
+ },
2554
+ "access" : "readonly",
2555
+ "description" :
2556
+ """The maximum RU size used on this session for
2557
+ receiving RUs.""",
2558
+ }, # column
2559
+ "snaLuSessnSndPacingSize" : {
2560
+ "nodetype" : "column",
2561
+ "moduleName" : "SNA-NAU-MIB",
2562
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.7",
2563
+ "status" : "current",
2564
+ "syntax" : {
2565
+ "type" : {
2566
+ "basetype" : "Integer32",
2567
+ "ranges" : [
2568
+ {
2569
+ "min" : "1",
2570
+ "max" : "63"
2571
+ },
2572
+ ],
2573
+ "range" : {
2574
+ "min" : "1",
2575
+ "max" : "63"
2576
+ },
2577
+ },
2578
+ },
2579
+ "access" : "readonly",
2580
+ "description" :
2581
+ """The size of the send pacing window on this session.""",
2582
+ }, # column
2583
+ "snaLuSessnRcvPacingSize" : {
2584
+ "nodetype" : "column",
2585
+ "moduleName" : "SNA-NAU-MIB",
2586
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.8",
2587
+ "status" : "current",
2588
+ "syntax" : {
2589
+ "type" : {
2590
+ "basetype" : "Integer32",
2591
+ "ranges" : [
2592
+ {
2593
+ "min" : "1",
2594
+ "max" : "63"
2595
+ },
2596
+ ],
2597
+ "range" : {
2598
+ "min" : "1",
2599
+ "max" : "63"
2600
+ },
2601
+ },
2602
+ },
2603
+ "access" : "readonly",
2604
+ "description" :
2605
+ """The size of the receive pacing window on this
2606
+ session.""",
2607
+ }, # column
2608
+ "snaLuSessnActiveTime" : {
2609
+ "nodetype" : "column",
2610
+ "moduleName" : "SNA-NAU-MIB",
2611
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.9",
2612
+ "status" : "current",
2613
+ "syntax" : {
2614
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2615
+ },
2616
+ "access" : "readonly",
2617
+ "description" :
2618
+ """The timestamp (e.g., the Agent's sysUpTime value)
2619
+ when this session becomes active.""",
2620
+ }, # column
2621
+ "snaLuSessnAdminState" : {
2622
+ "nodetype" : "column",
2623
+ "moduleName" : "SNA-NAU-MIB",
2624
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.10",
2625
+ "status" : "current",
2626
+ "syntax" : {
2627
+ "type" : {
2628
+ "basetype" : "Enumeration",
2629
+ "unbound" : {
2630
+ "nodetype" : "namednumber",
2631
+ "number" : "1"
2632
+ },
2633
+ "bound" : {
2634
+ "nodetype" : "namednumber",
2635
+ "number" : "3"
2636
+ },
2637
+ },
2638
+ },
2639
+ "access" : "readwrite",
2640
+ "description" :
2641
+ """The value indicates the desired operational state of
2642
+ the session. This object is used to
2643
+ change the operational state of the session.
2644
+ A Management Station can only change the operational
2645
+ state of the session to 'unbound (1)'.
2646
+
2647
+ Session deactivation:
2648
+ If a session is in the operational state
2649
+ 'bound (3)' then setting the value of this
2650
+ object to 'unbound (1)' will initiate the
2651
+ session shutdown.
2652
+
2653
+ If a session is in the operational state
2654
+ 'pendingBind (2)' then setting the value of this
2655
+ object to 'unbound (1)' will initiate the session
2656
+ shutdown.
2657
+ If a session is in the operational state
2658
+ 'pendingUnbind (4)' for an abnormally long period
2659
+ of time (e.g., three minutes) then setting the value
2660
+ of this object to 'unbound (1)' will change the
2661
+ session operational state to 'unbound (1)'.
2662
+
2663
+ Note: for dependent LUs, deactivating the session is
2664
+ the same as deactivating the LU.""",
2665
+ }, # column
2666
+ "snaLuSessnOperState" : {
2667
+ "nodetype" : "column",
2668
+ "moduleName" : "SNA-NAU-MIB",
2669
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.11",
2670
+ "status" : "current",
2671
+ "syntax" : {
2672
+ "type" : {
2673
+ "basetype" : "Enumeration",
2674
+ "unbound" : {
2675
+ "nodetype" : "namednumber",
2676
+ "number" : "1"
2677
+ },
2678
+ "pendingBind" : {
2679
+ "nodetype" : "namednumber",
2680
+ "number" : "2"
2681
+ },
2682
+ "bound" : {
2683
+ "nodetype" : "namednumber",
2684
+ "number" : "3"
2685
+ },
2686
+ "pendingUnbind" : {
2687
+ "nodetype" : "namednumber",
2688
+ "number" : "4"
2689
+ },
2690
+ },
2691
+ },
2692
+ "access" : "readonly",
2693
+ "description" :
2694
+ """The value indicates the current operational state of
2695
+ the session.
2696
+
2697
+ 'unbound (1)' - session has been unbound;
2698
+ in this state it will be removed from the
2699
+ session table by the Agent.
2700
+
2701
+ 'pendingBind (2)' - this state has different
2702
+ meanings for dependent and independent LUs;
2703
+ for dependent LU - waiting for BIND from
2704
+ the host, for independent LU - waiting for
2705
+ BIND response. When a session enters this
2706
+ state, the corresponding entry in the
2707
+ session table is created by the Agent.
2708
+
2709
+ 'bound (3)' - session has been successfully bound.
2710
+
2711
+ 'pendingUnbind (4)' - session enters this state
2712
+ when an UNBIND is sent and before the
2713
+ rsp(UNBIND) is received.""",
2714
+ }, # column
2715
+ "snaLuSessnSenseData" : {
2716
+ "nodetype" : "column",
2717
+ "moduleName" : "SNA-NAU-MIB",
2718
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.12",
2719
+ "status" : "current",
2720
+ "syntax" : {
2721
+ "type" : {
2722
+ "basetype" : "OctetString",
2723
+ "ranges" : [
2724
+ {
2725
+ "min" : "0",
2726
+ "max" : "8"
2727
+ },
2728
+ ],
2729
+ "range" : {
2730
+ "min" : "0",
2731
+ "max" : "8"
2732
+ },
2733
+ },
2734
+ },
2735
+ "access" : "readonly",
2736
+ "description" :
2737
+ """The value identifies the sense code when there is
2738
+ a BIND failure. It is taken from the negative BIND
2739
+ response or UNBIND request.
2740
+ This is displayed as 8 hexadecimal digits.""",
2741
+ }, # column
2742
+ "snaLuSessnTerminationRu" : {
2743
+ "nodetype" : "column",
2744
+ "moduleName" : "SNA-NAU-MIB",
2745
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.13",
2746
+ "status" : "current",
2747
+ "syntax" : {
2748
+ "type" : {
2749
+ "basetype" : "Enumeration",
2750
+ "other" : {
2751
+ "nodetype" : "namednumber",
2752
+ "number" : "1"
2753
+ },
2754
+ "bindFailure" : {
2755
+ "nodetype" : "namednumber",
2756
+ "number" : "2"
2757
+ },
2758
+ "unbind" : {
2759
+ "nodetype" : "namednumber",
2760
+ "number" : "3"
2761
+ },
2762
+ },
2763
+ },
2764
+ "access" : "readonly",
2765
+ "description" :
2766
+ """The value identifies the SNA RU that terminated the
2767
+ session.
2768
+ If the session is not in the unbound state, this object
2769
+ has a value of 'other (1)'.""",
2770
+ }, # column
2771
+ "snaLuSessnUnbindType" : {
2772
+ "nodetype" : "column",
2773
+ "moduleName" : "SNA-NAU-MIB",
2774
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.14",
2775
+ "status" : "current",
2776
+ "syntax" : {
2777
+ "type" : {
2778
+ "basetype" : "OctetString",
2779
+ "ranges" : [
2780
+ {
2781
+ "min" : "0",
2782
+ "max" : "1"
2783
+ },
2784
+ ],
2785
+ "range" : {
2786
+ "min" : "0",
2787
+ "max" : "1"
2788
+ },
2789
+ },
2790
+ },
2791
+ "access" : "readonly",
2792
+ "description" :
2793
+ """If the session is in the unbound state, and it was
2794
+ terminated by an UNBIND, then this object contains
2795
+ the UNBIND type value (byte 1 of the UNBIND RU);
2796
+ otherwise the string is null.""",
2797
+ }, # column
2798
+ "snaLuSessnLinkIndex" : {
2799
+ "nodetype" : "column",
2800
+ "moduleName" : "SNA-NAU-MIB",
2801
+ "oid" : "1.3.6.1.2.1.34.1.2.3.1.15",
2802
+ "status" : "current",
2803
+ "syntax" : {
2804
+ "type" : { "module" :"", "name" : "Integer32"},
2805
+ },
2806
+ "access" : "readonly",
2807
+ "description" :
2808
+ """This value identifies the link over which the session
2809
+ passes. It is an index into snaNodeLinkAdminTable.
2810
+ If the index value is not known, the value of this
2811
+ object shall be zero.""",
2812
+ }, # column
2813
+ "snaLuSessnStatsTable" : {
2814
+ "nodetype" : "table",
2815
+ "moduleName" : "SNA-NAU-MIB",
2816
+ "oid" : "1.3.6.1.2.1.34.1.2.4",
2817
+ "status" : "current",
2818
+ "description" :
2819
+ """This table contains dynamic statistics information
2820
+ relating to LU sessions.
2821
+ The entries in this table augment the entries in
2822
+ the snaLuSessnTable and cannot be created by
2823
+ a Management Station.""",
2824
+ }, # table
2825
+ "snaLuSessnStatsEntry" : {
2826
+ "nodetype" : "row",
2827
+ "moduleName" : "SNA-NAU-MIB",
2828
+ "oid" : "1.3.6.1.2.1.34.1.2.4.1",
2829
+ "status" : "current",
2830
+ "linkage" : [
2831
+ { "SNA-NAU-MIB" : {
2832
+ "indexkind" : "augments",
2833
+ "relatedNode" : "snaLuSessnEntry",
2834
+ }},
2835
+ ],
2836
+ "description" :
2837
+ """Contains statistics information for an LU session.
2838
+ Each entry is created by the Agent.
2839
+ Objects in this table have read-only access.
2840
+ Each session from snaLuSessnTable
2841
+ has one entry in this table.""",
2842
+ }, # row
2843
+ "snaLuSessnStatsSentBytes" : {
2844
+ "nodetype" : "column",
2845
+ "moduleName" : "SNA-NAU-MIB",
2846
+ "oid" : "1.3.6.1.2.1.34.1.2.4.1.1",
2847
+ "status" : "current",
2848
+ "syntax" : {
2849
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2850
+ },
2851
+ "access" : "readonly",
2852
+ "description" :
2853
+ """The number of bytes sent by the local LU.""",
2854
+ }, # column
2855
+ "snaLuSessnStatsReceivedBytes" : {
2856
+ "nodetype" : "column",
2857
+ "moduleName" : "SNA-NAU-MIB",
2858
+ "oid" : "1.3.6.1.2.1.34.1.2.4.1.2",
2859
+ "status" : "current",
2860
+ "syntax" : {
2861
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2862
+ },
2863
+ "access" : "readonly",
2864
+ "description" :
2865
+ """The number of bytes received by the local LU.""",
2866
+ }, # column
2867
+ "snaLuSessnStatsSentRus" : {
2868
+ "nodetype" : "column",
2869
+ "moduleName" : "SNA-NAU-MIB",
2870
+ "oid" : "1.3.6.1.2.1.34.1.2.4.1.3",
2871
+ "status" : "current",
2872
+ "syntax" : {
2873
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2874
+ },
2875
+ "access" : "readonly",
2876
+ "description" :
2877
+ """The number of RUs sent by the local LU.""",
2878
+ }, # column
2879
+ "snaLuSessnStatsReceivedRus" : {
2880
+ "nodetype" : "column",
2881
+ "moduleName" : "SNA-NAU-MIB",
2882
+ "oid" : "1.3.6.1.2.1.34.1.2.4.1.4",
2883
+ "status" : "current",
2884
+ "syntax" : {
2885
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2886
+ },
2887
+ "access" : "readonly",
2888
+ "description" :
2889
+ """The number of RUs received by the local LU.""",
2890
+ }, # column
2891
+ "snaLuSessnStatsSentNegativeResps" : {
2892
+ "nodetype" : "column",
2893
+ "moduleName" : "SNA-NAU-MIB",
2894
+ "oid" : "1.3.6.1.2.1.34.1.2.4.1.5",
2895
+ "status" : "current",
2896
+ "syntax" : {
2897
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2898
+ },
2899
+ "access" : "readonly",
2900
+ "description" :
2901
+ """The number of negative responses sent by the
2902
+ local LU.""",
2903
+ }, # column
2904
+ "snaLuSessnStatsReceivedNegativeResps" : {
2905
+ "nodetype" : "column",
2906
+ "moduleName" : "SNA-NAU-MIB",
2907
+ "oid" : "1.3.6.1.2.1.34.1.2.4.1.6",
2908
+ "status" : "current",
2909
+ "syntax" : {
2910
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2911
+ },
2912
+ "access" : "readonly",
2913
+ "description" :
2914
+ """The number of negative responses received by the
2915
+ local LU.""",
2916
+ }, # column
2917
+ "snaLuTraps" : {
2918
+ "nodetype" : "node",
2919
+ "moduleName" : "SNA-NAU-MIB",
2920
+ "oid" : "1.3.6.1.2.1.34.1.2.5",
2921
+ }, # node
2922
+ "snaMgtTools" : {
2923
+ "nodetype" : "node",
2924
+ "moduleName" : "SNA-NAU-MIB",
2925
+ "oid" : "1.3.6.1.2.1.34.1.3",
2926
+ }, # node
2927
+ "snaLuRtmTable" : {
2928
+ "nodetype" : "table",
2929
+ "moduleName" : "SNA-NAU-MIB",
2930
+ "oid" : "1.3.6.1.2.1.34.1.3.1",
2931
+ "status" : "current",
2932
+ "description" :
2933
+ """This table contains Response Time Monitoring (RTM)
2934
+ information relating to an LU (Type 2). Each entry
2935
+ corresponds to an LU 2 entry in
2936
+ snaLuAdminTable.""",
2937
+ }, # table
2938
+ "snaLuRtmEntry" : {
2939
+ "nodetype" : "row",
2940
+ "moduleName" : "SNA-NAU-MIB",
2941
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1",
2942
+ "status" : "current",
2943
+ "linkage" : [
2944
+ "snaLuRtmPuIndex",
2945
+ "snaLuRtmLuIndex",
2946
+ ],
2947
+ "description" :
2948
+ """Contains RTM information for an LU (Type 2).
2949
+ Each entry is created by the Agent.""",
2950
+ }, # row
2951
+ "snaLuRtmPuIndex" : {
2952
+ "nodetype" : "column",
2953
+ "moduleName" : "SNA-NAU-MIB",
2954
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.1",
2955
+ "status" : "current",
2956
+ "syntax" : {
2957
+ "type" : { "module" :"", "name" : "Integer32"},
2958
+ },
2959
+ "access" : "noaccess",
2960
+ "description" :
2961
+ """The value identifies the PU 2.0 with which this LU is
2962
+ associated.""",
2963
+ }, # column
2964
+ "snaLuRtmLuIndex" : {
2965
+ "nodetype" : "column",
2966
+ "moduleName" : "SNA-NAU-MIB",
2967
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.2",
2968
+ "status" : "current",
2969
+ "syntax" : {
2970
+ "type" : { "module" :"", "name" : "Integer32"},
2971
+ },
2972
+ "access" : "noaccess",
2973
+ "description" :
2974
+ """The value uniquely identifies an LU in a PU 2.0.""",
2975
+ }, # column
2976
+ "snaLuRtmState" : {
2977
+ "nodetype" : "column",
2978
+ "moduleName" : "SNA-NAU-MIB",
2979
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.3",
2980
+ "status" : "current",
2981
+ "syntax" : {
2982
+ "type" : {
2983
+ "basetype" : "Enumeration",
2984
+ "off" : {
2985
+ "nodetype" : "namednumber",
2986
+ "number" : "1"
2987
+ },
2988
+ "on" : {
2989
+ "nodetype" : "namednumber",
2990
+ "number" : "2"
2991
+ },
2992
+ },
2993
+ },
2994
+ "access" : "readonly",
2995
+ "description" :
2996
+ """The value indicates the current RTM state of an LU.""",
2997
+ }, # column
2998
+ "snaLuRtmStateTime" : {
2999
+ "nodetype" : "column",
3000
+ "moduleName" : "SNA-NAU-MIB",
3001
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.4",
3002
+ "status" : "current",
3003
+ "syntax" : {
3004
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
3005
+ },
3006
+ "access" : "readonly",
3007
+ "description" :
3008
+ """The timestamp (e.g., the Agent's sysUpTime value)
3009
+ when this session's RTM state (e.g., snaLuRtmState)
3010
+ changes value.""",
3011
+ }, # column
3012
+ "snaLuRtmDef" : {
3013
+ "nodetype" : "column",
3014
+ "moduleName" : "SNA-NAU-MIB",
3015
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.5",
3016
+ "status" : "current",
3017
+ "syntax" : {
3018
+ "type" : {
3019
+ "basetype" : "Enumeration",
3020
+ "firstChar" : {
3021
+ "nodetype" : "namednumber",
3022
+ "number" : "1"
3023
+ },
3024
+ "kb" : {
3025
+ "nodetype" : "namednumber",
3026
+ "number" : "2"
3027
+ },
3028
+ "cdeb" : {
3029
+ "nodetype" : "namednumber",
3030
+ "number" : "3"
3031
+ },
3032
+ },
3033
+ },
3034
+ "access" : "readonly",
3035
+ "description" :
3036
+ """The value indicates the mode of measurement for this
3037
+ RTM request. The values have following meaning:
3038
+ firstChar(1) - time to first character on screen
3039
+ kb(2) - time to keyboard usable by operator
3040
+ cdeb(3) - time to Change Direction/End Bracket.""",
3041
+ }, # column
3042
+ "snaLuRtmBoundary1" : {
3043
+ "nodetype" : "column",
3044
+ "moduleName" : "SNA-NAU-MIB",
3045
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.6",
3046
+ "status" : "current",
3047
+ "syntax" : {
3048
+ "type" : { "module" :"", "name" : "Integer32"},
3049
+ },
3050
+ "access" : "readonly",
3051
+ "description" :
3052
+ """This object contains the value of the first boundary
3053
+ in units of 1/10th of a second.""",
3054
+ }, # column
3055
+ "snaLuRtmBoundary2" : {
3056
+ "nodetype" : "column",
3057
+ "moduleName" : "SNA-NAU-MIB",
3058
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.7",
3059
+ "status" : "current",
3060
+ "syntax" : {
3061
+ "type" : { "module" :"", "name" : "Integer32"},
3062
+ },
3063
+ "access" : "readonly",
3064
+ "description" :
3065
+ """This object contains the value of the second boundary
3066
+ in units of 1/10th of a second.""",
3067
+ }, # column
3068
+ "snaLuRtmBoundary3" : {
3069
+ "nodetype" : "column",
3070
+ "moduleName" : "SNA-NAU-MIB",
3071
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.8",
3072
+ "status" : "current",
3073
+ "syntax" : {
3074
+ "type" : { "module" :"", "name" : "Integer32"},
3075
+ },
3076
+ "access" : "readonly",
3077
+ "description" :
3078
+ """This object contains the value of the third boundary
3079
+ in units of 1/10th of a second.""",
3080
+ }, # column
3081
+ "snaLuRtmBoundary4" : {
3082
+ "nodetype" : "column",
3083
+ "moduleName" : "SNA-NAU-MIB",
3084
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.9",
3085
+ "status" : "current",
3086
+ "syntax" : {
3087
+ "type" : { "module" :"", "name" : "Integer32"},
3088
+ },
3089
+ "access" : "readonly",
3090
+ "description" :
3091
+ """This object contains the value of the fourth boundary
3092
+ in units of 1/10th of a second.""",
3093
+ }, # column
3094
+ "snaLuRtmCounter1" : {
3095
+ "nodetype" : "column",
3096
+ "moduleName" : "SNA-NAU-MIB",
3097
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.10",
3098
+ "status" : "current",
3099
+ "syntax" : {
3100
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3101
+ },
3102
+ "access" : "readonly",
3103
+ "description" :
3104
+ """This value indicates the number of transactions which
3105
+ fall in the range specified by the first boundary.""",
3106
+ }, # column
3107
+ "snaLuRtmCounter2" : {
3108
+ "nodetype" : "column",
3109
+ "moduleName" : "SNA-NAU-MIB",
3110
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.11",
3111
+ "status" : "current",
3112
+ "syntax" : {
3113
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3114
+ },
3115
+ "access" : "readonly",
3116
+ "description" :
3117
+ """This value indicates the number of transactions which
3118
+ fall in the range specified by the second boundary.""",
3119
+ }, # column
3120
+ "snaLuRtmCounter3" : {
3121
+ "nodetype" : "column",
3122
+ "moduleName" : "SNA-NAU-MIB",
3123
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.12",
3124
+ "status" : "current",
3125
+ "syntax" : {
3126
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3127
+ },
3128
+ "access" : "readonly",
3129
+ "description" :
3130
+ """This value indicates the number of transactions which
3131
+ fall in the range specified by the third boundary.""",
3132
+ }, # column
3133
+ "snaLuRtmCounter4" : {
3134
+ "nodetype" : "column",
3135
+ "moduleName" : "SNA-NAU-MIB",
3136
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.13",
3137
+ "status" : "current",
3138
+ "syntax" : {
3139
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3140
+ },
3141
+ "access" : "readonly",
3142
+ "description" :
3143
+ """This value indicates the number of transactions which
3144
+ fall in the range specified by the fourth boundary.""",
3145
+ }, # column
3146
+ "snaLuRtmOverFlows" : {
3147
+ "nodetype" : "column",
3148
+ "moduleName" : "SNA-NAU-MIB",
3149
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.14",
3150
+ "status" : "current",
3151
+ "syntax" : {
3152
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3153
+ },
3154
+ "access" : "readonly",
3155
+ "description" :
3156
+ """This value indicates the number of transactions which
3157
+ exceed the highest range specified by the
3158
+ boundaries.""",
3159
+ }, # column
3160
+ "snaLuRtmObjPercent" : {
3161
+ "nodetype" : "column",
3162
+ "moduleName" : "SNA-NAU-MIB",
3163
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.15",
3164
+ "status" : "current",
3165
+ "syntax" : {
3166
+ "type" : { "module" :"", "name" : "Integer32"},
3167
+ },
3168
+ "access" : "readonly",
3169
+ "description" :
3170
+ """This value indicates the desired percentage of
3171
+ transactions which should be under a designated
3172
+ boundary range indicated by snaLuRtmObjRange.""",
3173
+ }, # column
3174
+ "snaLuRtmObjRange" : {
3175
+ "nodetype" : "column",
3176
+ "moduleName" : "SNA-NAU-MIB",
3177
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.16",
3178
+ "status" : "current",
3179
+ "syntax" : {
3180
+ "type" : {
3181
+ "basetype" : "Enumeration",
3182
+ "other" : {
3183
+ "nodetype" : "namednumber",
3184
+ "number" : "1"
3185
+ },
3186
+ "range1" : {
3187
+ "nodetype" : "namednumber",
3188
+ "number" : "2"
3189
+ },
3190
+ "range2" : {
3191
+ "nodetype" : "namednumber",
3192
+ "number" : "3"
3193
+ },
3194
+ "range3" : {
3195
+ "nodetype" : "namednumber",
3196
+ "number" : "4"
3197
+ },
3198
+ "range4" : {
3199
+ "nodetype" : "namednumber",
3200
+ "number" : "5"
3201
+ },
3202
+ "range5" : {
3203
+ "nodetype" : "namednumber",
3204
+ "number" : "6"
3205
+ },
3206
+ },
3207
+ },
3208
+ "access" : "readonly",
3209
+ "description" :
3210
+ """This value indicates the designated boundary range to
3211
+ which the snaLuRtmObject refers.
3212
+ The values have the following meanings:
3213
+ other(1) - not specified
3214
+ range1(2) - less than boundary 1
3215
+ range2(3) - between boundary 1 and 2
3216
+ range3(4) - between boundary 2 and 3
3217
+ range4(5) - between boundary 3 and 4
3218
+ range5(6) - greater than boundary 4.""",
3219
+ }, # column
3220
+ "snaLuRtmNumTrans" : {
3221
+ "nodetype" : "column",
3222
+ "moduleName" : "SNA-NAU-MIB",
3223
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.17",
3224
+ "status" : "current",
3225
+ "syntax" : {
3226
+ "type" : { "module" :"", "name" : "Integer32"},
3227
+ },
3228
+ "access" : "readonly",
3229
+ "description" :
3230
+ """This value indicates the total number of transactions
3231
+ executed since the RTM monitoring began (i.e.,
3232
+ snaLuRtmState changed to 'on(2)') for this LU.""",
3233
+ }, # column
3234
+ "snaLuRtmLastRspTime" : {
3235
+ "nodetype" : "column",
3236
+ "moduleName" : "SNA-NAU-MIB",
3237
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.18",
3238
+ "status" : "current",
3239
+ "syntax" : {
3240
+ "type" : { "module" :"", "name" : "Integer32"},
3241
+ },
3242
+ "access" : "readonly",
3243
+ "description" :
3244
+ """This value indicates the response time for the last
3245
+ transaction in units of 1/10th of a second.""",
3246
+ }, # column
3247
+ "snaLuRtmAvgRspTime" : {
3248
+ "nodetype" : "column",
3249
+ "moduleName" : "SNA-NAU-MIB",
3250
+ "oid" : "1.3.6.1.2.1.34.1.3.1.1.19",
3251
+ "status" : "current",
3252
+ "syntax" : {
3253
+ "type" : { "module" :"", "name" : "Integer32"},
3254
+ },
3255
+ "access" : "readonly",
3256
+ "description" :
3257
+ """This value indicates the average response time for all
3258
+ transactions in units of 1/10th of a second.""",
3259
+ }, # column
3260
+ "snanauConformance" : {
3261
+ "nodetype" : "node",
3262
+ "moduleName" : "SNA-NAU-MIB",
3263
+ "oid" : "1.3.6.1.2.1.34.2",
3264
+ }, # node
3265
+ "snanauCompliances" : {
3266
+ "nodetype" : "node",
3267
+ "moduleName" : "SNA-NAU-MIB",
3268
+ "oid" : "1.3.6.1.2.1.34.2.1",
3269
+ }, # node
3270
+ "snanauGroups" : {
3271
+ "nodetype" : "node",
3272
+ "moduleName" : "SNA-NAU-MIB",
3273
+ "oid" : "1.3.6.1.2.1.34.2.2",
3274
+ }, # node
3275
+ }, # nodes
3276
+
3277
+ "notifications" : {
3278
+ "snaNodeStateChangeTrap" : {
3279
+ "nodetype" : "notification",
3280
+ "moduleName" : "SNA-NAU-MIB",
3281
+ "oid" : "1.3.6.1.2.1.34.1.1.10.1",
3282
+ "status" : "current",
3283
+ "objects" : {
3284
+ "snaNodeOperName" : {
3285
+ "nodetype" : "object",
3286
+ "module" : "SNA-NAU-MIB"
3287
+ },
3288
+ "snaNodeOperState" : {
3289
+ "nodetype" : "object",
3290
+ "module" : "SNA-NAU-MIB"
3291
+ },
3292
+ },
3293
+ "description" :
3294
+ """This trap indicates that the operational state
3295
+ (i.e., value of the snaNodeOperState object) of a Node
3296
+ has changed. The following variables are returned:
3297
+ snaNodeOperName - current name of the Node,
3298
+ with the instance identifying the Node; and,
3299
+ snaNodeOperState - current state after
3300
+ the change.""",
3301
+ }, # notification
3302
+ "snaNodeActFailTrap" : {
3303
+ "nodetype" : "notification",
3304
+ "moduleName" : "SNA-NAU-MIB",
3305
+ "oid" : "1.3.6.1.2.1.34.1.1.10.2",
3306
+ "status" : "current",
3307
+ "objects" : {
3308
+ "snaNodeOperName" : {
3309
+ "nodetype" : "object",
3310
+ "module" : "SNA-NAU-MIB"
3311
+ },
3312
+ "snaNodeOperState" : {
3313
+ "nodetype" : "object",
3314
+ "module" : "SNA-NAU-MIB"
3315
+ },
3316
+ "snaNodeOperActFailureReason" : {
3317
+ "nodetype" : "object",
3318
+ "module" : "SNA-NAU-MIB"
3319
+ },
3320
+ },
3321
+ "description" :
3322
+ """This trap indicates a Node activation failure.
3323
+ The value of snaNodeOperState indicates the current
3324
+ state after the activation attempt.
3325
+ The value of snaNodeOperActFailureReason indicates
3326
+ the failure reason.""",
3327
+ }, # notification
3328
+ "snaLuStateChangeTrap" : {
3329
+ "nodetype" : "notification",
3330
+ "moduleName" : "SNA-NAU-MIB",
3331
+ "oid" : "1.3.6.1.2.1.34.1.2.5.1",
3332
+ "status" : "current",
3333
+ "objects" : {
3334
+ "snaLuOperName" : {
3335
+ "nodetype" : "object",
3336
+ "module" : "SNA-NAU-MIB"
3337
+ },
3338
+ "snaLuOperSnaName" : {
3339
+ "nodetype" : "object",
3340
+ "module" : "SNA-NAU-MIB"
3341
+ },
3342
+ "snaLuOperState" : {
3343
+ "nodetype" : "object",
3344
+ "module" : "SNA-NAU-MIB"
3345
+ },
3346
+ },
3347
+ "description" :
3348
+ """This trap indicates that the operational state
3349
+ (i.e., snaLuOperState value) of the LU has changed.
3350
+ The value of snaLuOperName indicates the name of the
3351
+ LU.
3352
+ The value of snaLuOperSnaName indicates the SNA name
3353
+ of LU.
3354
+ The value of snaLuOperState indicates the current
3355
+ state after change.""",
3356
+ }, # notification
3357
+ "snaLuSessnBindFailTrap" : {
3358
+ "nodetype" : "notification",
3359
+ "moduleName" : "SNA-NAU-MIB",
3360
+ "oid" : "1.3.6.1.2.1.34.1.2.5.2",
3361
+ "status" : "current",
3362
+ "objects" : {
3363
+ "snaLuSessnLocalApplName" : {
3364
+ "nodetype" : "object",
3365
+ "module" : "SNA-NAU-MIB"
3366
+ },
3367
+ "snaLuSessnRemoteLuName" : {
3368
+ "nodetype" : "object",
3369
+ "module" : "SNA-NAU-MIB"
3370
+ },
3371
+ "snaLuSessnOperState" : {
3372
+ "nodetype" : "object",
3373
+ "module" : "SNA-NAU-MIB"
3374
+ },
3375
+ "snaLuSessnSenseData" : {
3376
+ "nodetype" : "object",
3377
+ "module" : "SNA-NAU-MIB"
3378
+ },
3379
+ },
3380
+ "description" :
3381
+ """This trap indicates the failure of a BIND.
3382
+ The value of snaLuSessnLocalApplName indicates the local
3383
+ application name.
3384
+ The value of snaLuSessnPartnerName indicates the partner
3385
+ name.
3386
+ The value of snaLuSessnOperState indicates the current
3387
+ state after change.
3388
+ The value of snaLuSessnBindFailureReason
3389
+ indicates the failure reason.
3390
+ The Agent should not generate more than 1 trap of this
3391
+ type per minute to minimize the level of management
3392
+ traffic on the network.""",
3393
+ }, # notification
3394
+ }, # notifications
3395
+
3396
+ "groups" : {
3397
+ "snaNodeGroup" : {
3398
+ "nodetype" : "group",
3399
+ "moduleName" : "SNA-NAU-MIB",
3400
+ "oid" : "1.3.6.1.2.1.34.2.2.1",
3401
+ "status" : "current",
3402
+ "members" : {
3403
+ "snaNodeAdminName" : {
3404
+ "nodetype" : "member",
3405
+ "module" : "SNA-NAU-MIB"
3406
+ },
3407
+ "snaNodeAdminType" : {
3408
+ "nodetype" : "member",
3409
+ "module" : "SNA-NAU-MIB"
3410
+ },
3411
+ "snaNodeAdminXidFormat" : {
3412
+ "nodetype" : "member",
3413
+ "module" : "SNA-NAU-MIB"
3414
+ },
3415
+ "snaNodeAdminBlockNum" : {
3416
+ "nodetype" : "member",
3417
+ "module" : "SNA-NAU-MIB"
3418
+ },
3419
+ "snaNodeAdminIdNum" : {
3420
+ "nodetype" : "member",
3421
+ "module" : "SNA-NAU-MIB"
3422
+ },
3423
+ "snaNodeAdminEnablingMethod" : {
3424
+ "nodetype" : "member",
3425
+ "module" : "SNA-NAU-MIB"
3426
+ },
3427
+ "snaNodeAdminLuTermDefault" : {
3428
+ "nodetype" : "member",
3429
+ "module" : "SNA-NAU-MIB"
3430
+ },
3431
+ "snaNodeAdminMaxLu" : {
3432
+ "nodetype" : "member",
3433
+ "module" : "SNA-NAU-MIB"
3434
+ },
3435
+ "snaNodeAdminHostDescription" : {
3436
+ "nodetype" : "member",
3437
+ "module" : "SNA-NAU-MIB"
3438
+ },
3439
+ "snaNodeAdminStopMethod" : {
3440
+ "nodetype" : "member",
3441
+ "module" : "SNA-NAU-MIB"
3442
+ },
3443
+ "snaNodeAdminState" : {
3444
+ "nodetype" : "member",
3445
+ "module" : "SNA-NAU-MIB"
3446
+ },
3447
+ "snaNodeAdminRowStatus" : {
3448
+ "nodetype" : "member",
3449
+ "module" : "SNA-NAU-MIB"
3450
+ },
3451
+ "snaNodeAdminTableLastChange" : {
3452
+ "nodetype" : "member",
3453
+ "module" : "SNA-NAU-MIB"
3454
+ },
3455
+ "snaNodeOperName" : {
3456
+ "nodetype" : "member",
3457
+ "module" : "SNA-NAU-MIB"
3458
+ },
3459
+ "snaNodeOperType" : {
3460
+ "nodetype" : "member",
3461
+ "module" : "SNA-NAU-MIB"
3462
+ },
3463
+ "snaNodeOperXidFormat" : {
3464
+ "nodetype" : "member",
3465
+ "module" : "SNA-NAU-MIB"
3466
+ },
3467
+ "snaNodeOperBlockNum" : {
3468
+ "nodetype" : "member",
3469
+ "module" : "SNA-NAU-MIB"
3470
+ },
3471
+ "snaNodeOperIdNum" : {
3472
+ "nodetype" : "member",
3473
+ "module" : "SNA-NAU-MIB"
3474
+ },
3475
+ "snaNodeOperEnablingMethod" : {
3476
+ "nodetype" : "member",
3477
+ "module" : "SNA-NAU-MIB"
3478
+ },
3479
+ "snaNodeOperLuTermDefault" : {
3480
+ "nodetype" : "member",
3481
+ "module" : "SNA-NAU-MIB"
3482
+ },
3483
+ "snaNodeOperMaxLu" : {
3484
+ "nodetype" : "member",
3485
+ "module" : "SNA-NAU-MIB"
3486
+ },
3487
+ "snaNodeOperHostDescription" : {
3488
+ "nodetype" : "member",
3489
+ "module" : "SNA-NAU-MIB"
3490
+ },
3491
+ "snaNodeOperStopMethod" : {
3492
+ "nodetype" : "member",
3493
+ "module" : "SNA-NAU-MIB"
3494
+ },
3495
+ "snaNodeOperState" : {
3496
+ "nodetype" : "member",
3497
+ "module" : "SNA-NAU-MIB"
3498
+ },
3499
+ "snaNodeOperHostSscpId" : {
3500
+ "nodetype" : "member",
3501
+ "module" : "SNA-NAU-MIB"
3502
+ },
3503
+ "snaNodeOperStartTime" : {
3504
+ "nodetype" : "member",
3505
+ "module" : "SNA-NAU-MIB"
3506
+ },
3507
+ "snaNodeOperLastStateChange" : {
3508
+ "nodetype" : "member",
3509
+ "module" : "SNA-NAU-MIB"
3510
+ },
3511
+ "snaNodeOperActFailures" : {
3512
+ "nodetype" : "member",
3513
+ "module" : "SNA-NAU-MIB"
3514
+ },
3515
+ "snaNodeOperActFailureReason" : {
3516
+ "nodetype" : "member",
3517
+ "module" : "SNA-NAU-MIB"
3518
+ },
3519
+ "snaNodeOperTableLastChange" : {
3520
+ "nodetype" : "member",
3521
+ "module" : "SNA-NAU-MIB"
3522
+ },
3523
+ "snaNodeLinkAdminSpecific" : {
3524
+ "nodetype" : "member",
3525
+ "module" : "SNA-NAU-MIB"
3526
+ },
3527
+ "snaNodeLinkAdminMaxPiu" : {
3528
+ "nodetype" : "member",
3529
+ "module" : "SNA-NAU-MIB"
3530
+ },
3531
+ "snaNodeLinkAdminRowStatus" : {
3532
+ "nodetype" : "member",
3533
+ "module" : "SNA-NAU-MIB"
3534
+ },
3535
+ "snaNodeLinkAdminTableLastChange" : {
3536
+ "nodetype" : "member",
3537
+ "module" : "SNA-NAU-MIB"
3538
+ },
3539
+ "snaNodeLinkOperSpecific" : {
3540
+ "nodetype" : "member",
3541
+ "module" : "SNA-NAU-MIB"
3542
+ },
3543
+ "snaNodeLinkOperMaxPiu" : {
3544
+ "nodetype" : "member",
3545
+ "module" : "SNA-NAU-MIB"
3546
+ },
3547
+ "snaNodeLinkOperTableLastChange" : {
3548
+ "nodetype" : "member",
3549
+ "module" : "SNA-NAU-MIB"
3550
+ },
3551
+ }, # members
3552
+ "description" :
3553
+ """A collection of objects providing the
3554
+ instrumentation of SNA nodes.""",
3555
+ }, # group
3556
+ "snaLuGroup" : {
3557
+ "nodetype" : "group",
3558
+ "moduleName" : "SNA-NAU-MIB",
3559
+ "oid" : "1.3.6.1.2.1.34.2.2.2",
3560
+ "status" : "current",
3561
+ "members" : {
3562
+ "snaLuAdminName" : {
3563
+ "nodetype" : "member",
3564
+ "module" : "SNA-NAU-MIB"
3565
+ },
3566
+ "snaLuAdminSnaName" : {
3567
+ "nodetype" : "member",
3568
+ "module" : "SNA-NAU-MIB"
3569
+ },
3570
+ "snaLuAdminType" : {
3571
+ "nodetype" : "member",
3572
+ "module" : "SNA-NAU-MIB"
3573
+ },
3574
+ "snaLuAdminDepType" : {
3575
+ "nodetype" : "member",
3576
+ "module" : "SNA-NAU-MIB"
3577
+ },
3578
+ "snaLuAdminLocalAddress" : {
3579
+ "nodetype" : "member",
3580
+ "module" : "SNA-NAU-MIB"
3581
+ },
3582
+ "snaLuAdminDisplayModel" : {
3583
+ "nodetype" : "member",
3584
+ "module" : "SNA-NAU-MIB"
3585
+ },
3586
+ "snaLuAdminTerm" : {
3587
+ "nodetype" : "member",
3588
+ "module" : "SNA-NAU-MIB"
3589
+ },
3590
+ "snaLuAdminRowStatus" : {
3591
+ "nodetype" : "member",
3592
+ "module" : "SNA-NAU-MIB"
3593
+ },
3594
+ "snaLuOperName" : {
3595
+ "nodetype" : "member",
3596
+ "module" : "SNA-NAU-MIB"
3597
+ },
3598
+ "snaLuOperSnaName" : {
3599
+ "nodetype" : "member",
3600
+ "module" : "SNA-NAU-MIB"
3601
+ },
3602
+ "snaLuOperType" : {
3603
+ "nodetype" : "member",
3604
+ "module" : "SNA-NAU-MIB"
3605
+ },
3606
+ "snaLuOperDepType" : {
3607
+ "nodetype" : "member",
3608
+ "module" : "SNA-NAU-MIB"
3609
+ },
3610
+ "snaLuOperLocalAddress" : {
3611
+ "nodetype" : "member",
3612
+ "module" : "SNA-NAU-MIB"
3613
+ },
3614
+ "snaLuOperDisplayModel" : {
3615
+ "nodetype" : "member",
3616
+ "module" : "SNA-NAU-MIB"
3617
+ },
3618
+ "snaLuOperTerm" : {
3619
+ "nodetype" : "member",
3620
+ "module" : "SNA-NAU-MIB"
3621
+ },
3622
+ "snaLuOperState" : {
3623
+ "nodetype" : "member",
3624
+ "module" : "SNA-NAU-MIB"
3625
+ },
3626
+ "snaLuOperSessnCount" : {
3627
+ "nodetype" : "member",
3628
+ "module" : "SNA-NAU-MIB"
3629
+ },
3630
+ }, # members
3631
+ "description" :
3632
+ """A collection of objects providing the
3633
+ instrumentation of SNA LUs.""",
3634
+ }, # group
3635
+ "snaSessionGroup" : {
3636
+ "nodetype" : "group",
3637
+ "moduleName" : "SNA-NAU-MIB",
3638
+ "oid" : "1.3.6.1.2.1.34.2.2.3",
3639
+ "status" : "current",
3640
+ "members" : {
3641
+ "snaLuSessnRluIndex" : {
3642
+ "nodetype" : "member",
3643
+ "module" : "SNA-NAU-MIB"
3644
+ },
3645
+ "snaLuSessnIndex" : {
3646
+ "nodetype" : "member",
3647
+ "module" : "SNA-NAU-MIB"
3648
+ },
3649
+ "snaLuSessnLocalApplName" : {
3650
+ "nodetype" : "member",
3651
+ "module" : "SNA-NAU-MIB"
3652
+ },
3653
+ "snaLuSessnRemoteLuName" : {
3654
+ "nodetype" : "member",
3655
+ "module" : "SNA-NAU-MIB"
3656
+ },
3657
+ "snaLuSessnMaxSndRuSize" : {
3658
+ "nodetype" : "member",
3659
+ "module" : "SNA-NAU-MIB"
3660
+ },
3661
+ "snaLuSessnMaxRcvRuSize" : {
3662
+ "nodetype" : "member",
3663
+ "module" : "SNA-NAU-MIB"
3664
+ },
3665
+ "snaLuSessnSndPacingSize" : {
3666
+ "nodetype" : "member",
3667
+ "module" : "SNA-NAU-MIB"
3668
+ },
3669
+ "snaLuSessnRcvPacingSize" : {
3670
+ "nodetype" : "member",
3671
+ "module" : "SNA-NAU-MIB"
3672
+ },
3673
+ "snaLuSessnActiveTime" : {
3674
+ "nodetype" : "member",
3675
+ "module" : "SNA-NAU-MIB"
3676
+ },
3677
+ "snaLuSessnAdminState" : {
3678
+ "nodetype" : "member",
3679
+ "module" : "SNA-NAU-MIB"
3680
+ },
3681
+ "snaLuSessnOperState" : {
3682
+ "nodetype" : "member",
3683
+ "module" : "SNA-NAU-MIB"
3684
+ },
3685
+ "snaLuSessnSenseData" : {
3686
+ "nodetype" : "member",
3687
+ "module" : "SNA-NAU-MIB"
3688
+ },
3689
+ "snaLuSessnTerminationRu" : {
3690
+ "nodetype" : "member",
3691
+ "module" : "SNA-NAU-MIB"
3692
+ },
3693
+ "snaLuSessnUnbindType" : {
3694
+ "nodetype" : "member",
3695
+ "module" : "SNA-NAU-MIB"
3696
+ },
3697
+ "snaLuSessnLinkIndex" : {
3698
+ "nodetype" : "member",
3699
+ "module" : "SNA-NAU-MIB"
3700
+ },
3701
+ "snaLuSessnStatsSentBytes" : {
3702
+ "nodetype" : "member",
3703
+ "module" : "SNA-NAU-MIB"
3704
+ },
3705
+ "snaLuSessnStatsReceivedBytes" : {
3706
+ "nodetype" : "member",
3707
+ "module" : "SNA-NAU-MIB"
3708
+ },
3709
+ "snaLuSessnStatsSentRus" : {
3710
+ "nodetype" : "member",
3711
+ "module" : "SNA-NAU-MIB"
3712
+ },
3713
+ "snaLuSessnStatsReceivedRus" : {
3714
+ "nodetype" : "member",
3715
+ "module" : "SNA-NAU-MIB"
3716
+ },
3717
+ "snaLuSessnStatsSentNegativeResps" : {
3718
+ "nodetype" : "member",
3719
+ "module" : "SNA-NAU-MIB"
3720
+ },
3721
+ "snaLuSessnStatsReceivedNegativeResps" : {
3722
+ "nodetype" : "member",
3723
+ "module" : "SNA-NAU-MIB"
3724
+ },
3725
+ }, # members
3726
+ "description" :
3727
+ """A collection of objects providing the
3728
+ instrumentation of SNA sessions.""",
3729
+ }, # group
3730
+ "snaPu20Group" : {
3731
+ "nodetype" : "group",
3732
+ "moduleName" : "SNA-NAU-MIB",
3733
+ "oid" : "1.3.6.1.2.1.34.2.2.4",
3734
+ "status" : "current",
3735
+ "members" : {
3736
+ "snaPu20StatsSentBytes" : {
3737
+ "nodetype" : "member",
3738
+ "module" : "SNA-NAU-MIB"
3739
+ },
3740
+ "snaPu20StatsReceivedBytes" : {
3741
+ "nodetype" : "member",
3742
+ "module" : "SNA-NAU-MIB"
3743
+ },
3744
+ "snaPu20StatsSentPius" : {
3745
+ "nodetype" : "member",
3746
+ "module" : "SNA-NAU-MIB"
3747
+ },
3748
+ "snaPu20StatsReceivedPius" : {
3749
+ "nodetype" : "member",
3750
+ "module" : "SNA-NAU-MIB"
3751
+ },
3752
+ "snaPu20StatsSentNegativeResps" : {
3753
+ "nodetype" : "member",
3754
+ "module" : "SNA-NAU-MIB"
3755
+ },
3756
+ "snaPu20StatsReceivedNegativeResps" : {
3757
+ "nodetype" : "member",
3758
+ "module" : "SNA-NAU-MIB"
3759
+ },
3760
+ "snaPu20StatsActLus" : {
3761
+ "nodetype" : "member",
3762
+ "module" : "SNA-NAU-MIB"
3763
+ },
3764
+ "snaPu20StatsInActLus" : {
3765
+ "nodetype" : "member",
3766
+ "module" : "SNA-NAU-MIB"
3767
+ },
3768
+ "snaPu20StatsBindLus" : {
3769
+ "nodetype" : "member",
3770
+ "module" : "SNA-NAU-MIB"
3771
+ },
3772
+ }, # members
3773
+ "description" :
3774
+ """A collection of objects providing the
3775
+ instrumentation of PU 2.0.""",
3776
+ }, # group
3777
+ "snaMgtToolsRtmGroup" : {
3778
+ "nodetype" : "group",
3779
+ "moduleName" : "SNA-NAU-MIB",
3780
+ "oid" : "1.3.6.1.2.1.34.2.2.5",
3781
+ "status" : "current",
3782
+ "members" : {
3783
+ "snaLuRtmState" : {
3784
+ "nodetype" : "member",
3785
+ "module" : "SNA-NAU-MIB"
3786
+ },
3787
+ "snaLuRtmStateTime" : {
3788
+ "nodetype" : "member",
3789
+ "module" : "SNA-NAU-MIB"
3790
+ },
3791
+ "snaLuRtmDef" : {
3792
+ "nodetype" : "member",
3793
+ "module" : "SNA-NAU-MIB"
3794
+ },
3795
+ "snaLuRtmBoundary1" : {
3796
+ "nodetype" : "member",
3797
+ "module" : "SNA-NAU-MIB"
3798
+ },
3799
+ "snaLuRtmBoundary2" : {
3800
+ "nodetype" : "member",
3801
+ "module" : "SNA-NAU-MIB"
3802
+ },
3803
+ "snaLuRtmBoundary3" : {
3804
+ "nodetype" : "member",
3805
+ "module" : "SNA-NAU-MIB"
3806
+ },
3807
+ "snaLuRtmBoundary4" : {
3808
+ "nodetype" : "member",
3809
+ "module" : "SNA-NAU-MIB"
3810
+ },
3811
+ "snaLuRtmCounter1" : {
3812
+ "nodetype" : "member",
3813
+ "module" : "SNA-NAU-MIB"
3814
+ },
3815
+ "snaLuRtmCounter2" : {
3816
+ "nodetype" : "member",
3817
+ "module" : "SNA-NAU-MIB"
3818
+ },
3819
+ "snaLuRtmCounter3" : {
3820
+ "nodetype" : "member",
3821
+ "module" : "SNA-NAU-MIB"
3822
+ },
3823
+ "snaLuRtmCounter4" : {
3824
+ "nodetype" : "member",
3825
+ "module" : "SNA-NAU-MIB"
3826
+ },
3827
+ "snaLuRtmOverFlows" : {
3828
+ "nodetype" : "member",
3829
+ "module" : "SNA-NAU-MIB"
3830
+ },
3831
+ "snaLuRtmObjPercent" : {
3832
+ "nodetype" : "member",
3833
+ "module" : "SNA-NAU-MIB"
3834
+ },
3835
+ "snaLuRtmObjRange" : {
3836
+ "nodetype" : "member",
3837
+ "module" : "SNA-NAU-MIB"
3838
+ },
3839
+ "snaLuRtmNumTrans" : {
3840
+ "nodetype" : "member",
3841
+ "module" : "SNA-NAU-MIB"
3842
+ },
3843
+ "snaLuRtmLastRspTime" : {
3844
+ "nodetype" : "member",
3845
+ "module" : "SNA-NAU-MIB"
3846
+ },
3847
+ "snaLuRtmAvgRspTime" : {
3848
+ "nodetype" : "member",
3849
+ "module" : "SNA-NAU-MIB"
3850
+ },
3851
+ }, # members
3852
+ "description" :
3853
+ """A collection of objects providing the
3854
+ instrumentation of RTM for SNA LU 2.0.""",
3855
+ }, # group
3856
+ }, # groups
3857
+
3858
+ "compliances" : {
3859
+ "snanauCompliance" : {
3860
+ "nodetype" : "compliance",
3861
+ "moduleName" : "SNA-NAU-MIB",
3862
+ "oid" : "1.3.6.1.2.1.34.2.1.1",
3863
+ "status" : "current",
3864
+ "description" :
3865
+ """The compliance statement for the SNMPv2 entities
3866
+ which implement the snanau MIB.""",
3867
+ "requires" : {
3868
+ "snaNodeGroup" : {
3869
+ "nodetype" : "mandatory",
3870
+ "module" : "SNA-NAU-MIB"
3871
+ },
3872
+ "snaLuGroup" : {
3873
+ "nodetype" : "mandatory",
3874
+ "module" : "SNA-NAU-MIB"
3875
+ },
3876
+ "snaSessionGroup" : {
3877
+ "nodetype" : "mandatory",
3878
+ "module" : "SNA-NAU-MIB"
3879
+ },
3880
+ "snaPu20Group" : {
3881
+ "nodetype" : "optional",
3882
+ "module" : "SNA-NAU-MIB",
3883
+ "description" :
3884
+ """The snaPu20Group is mandatory only for those
3885
+ entities which implement PU type 2.0""",
3886
+ },
3887
+ "snaMgtToolsRtmGroup" : {
3888
+ "nodetype" : "optional",
3889
+ "module" : "SNA-NAU-MIB",
3890
+ "description" :
3891
+ """The snaMgtToolsGroup is mandatory only for
3892
+ those entities which implement LU type 2
3893
+ and RTM.""",
3894
+ },
3895
+ }, # requires
3896
+ "refinements" : {
3897
+ "snaNodeAdminName" : {
3898
+ "module" : "SNA-NAU-MIB",
3899
+ "access" : "readwrite",
3900
+ "description" :
3901
+ """An Agent is required to implement read-write
3902
+ access to this object.""",
3903
+ },
3904
+ "snaNodeAdminType" : {
3905
+ "module" : "SNA-NAU-MIB",
3906
+ "access" : "readwrite",
3907
+ "description" :
3908
+ """An Agent is required to implement read-write
3909
+ access to this object.""",
3910
+ },
3911
+ "snaNodeAdminXidFormat" : {
3912
+ "module" : "SNA-NAU-MIB",
3913
+ "access" : "readwrite",
3914
+ "description" :
3915
+ """An Agent is required to implement read-write
3916
+ access to this object.""",
3917
+ },
3918
+ "snaNodeAdminBlockNum" : {
3919
+ "module" : "SNA-NAU-MIB",
3920
+ "access" : "readwrite",
3921
+ "description" :
3922
+ """An Agent is required to implement read-write
3923
+ access to this object.""",
3924
+ },
3925
+ "snaNodeAdminIdNum" : {
3926
+ "module" : "SNA-NAU-MIB",
3927
+ "access" : "readwrite",
3928
+ "description" :
3929
+ """An Agent is required to implement read-write
3930
+ access to this object.""",
3931
+ },
3932
+ "snaNodeAdminEnablingMethod" : {
3933
+ "module" : "SNA-NAU-MIB",
3934
+ "access" : "readwrite",
3935
+ "description" :
3936
+ """An Agent is required to implement read-write
3937
+ access to this object.""",
3938
+ },
3939
+ "snaNodeAdminLuTermDefault" : {
3940
+ "module" : "SNA-NAU-MIB",
3941
+ "access" : "readwrite",
3942
+ "description" :
3943
+ """An Agent is required to implement read-write
3944
+ access to this object.""",
3945
+ },
3946
+ "snaNodeAdminMaxLu" : {
3947
+ "module" : "SNA-NAU-MIB",
3948
+ "access" : "readwrite",
3949
+ "description" :
3950
+ """An Agent is required to implement read-write
3951
+ access to this object.""",
3952
+ },
3953
+ "snaNodeAdminHostDescription" : {
3954
+ "module" : "SNA-NAU-MIB",
3955
+ "access" : "readwrite",
3956
+ "description" :
3957
+ """An Agent is required to implement read-write
3958
+ access to this object.""",
3959
+ },
3960
+ "snaNodeAdminStopMethod" : {
3961
+ "module" : "SNA-NAU-MIB",
3962
+ "access" : "readwrite",
3963
+ "description" :
3964
+ """An Agent is required to implement read-write
3965
+ access to this object.""",
3966
+ },
3967
+ "snaNodeAdminState" : {
3968
+ "module" : "SNA-NAU-MIB",
3969
+ "access" : "readwrite",
3970
+ "description" :
3971
+ """An Agent is required to implement read-write
3972
+ access to this object.""",
3973
+ },
3974
+ "snaNodeLinkAdminSpecific" : {
3975
+ "module" : "SNA-NAU-MIB",
3976
+ "access" : "readwrite",
3977
+ "description" :
3978
+ """An Agent is required to implement read-write
3979
+ access to this object.""",
3980
+ },
3981
+ "snaNodeLinkAdminMaxPiu" : {
3982
+ "module" : "SNA-NAU-MIB",
3983
+ "access" : "readwrite",
3984
+ "description" :
3985
+ """An Agent is required to implement read-write
3986
+ access to this object.""",
3987
+ },
3988
+ "snaLuAdminName" : {
3989
+ "module" : "SNA-NAU-MIB",
3990
+ "access" : "readwrite",
3991
+ "description" :
3992
+ """An Agent is required to implement read-write
3993
+ access to this object.""",
3994
+ },
3995
+ "snaLuAdminSnaName" : {
3996
+ "module" : "SNA-NAU-MIB",
3997
+ "access" : "readwrite",
3998
+ "description" :
3999
+ """An Agent is required to implement read-write
4000
+ access to this object.""",
4001
+ },
4002
+ "snaLuAdminType" : {
4003
+ "module" : "SNA-NAU-MIB",
4004
+ "access" : "readwrite",
4005
+ "description" :
4006
+ """An Agent is required to implement read-write
4007
+ access to this object.""",
4008
+ },
4009
+ "snaLuAdminDepType" : {
4010
+ "module" : "SNA-NAU-MIB",
4011
+ "access" : "readwrite",
4012
+ "description" :
4013
+ """An Agent is required to implement read-write
4014
+ access to this object.""",
4015
+ },
4016
+ "snaLuAdminLocalAddress" : {
4017
+ "module" : "SNA-NAU-MIB",
4018
+ "access" : "readwrite",
4019
+ "description" :
4020
+ """An Agent is required to implement read-write
4021
+ access to this object.""",
4022
+ },
4023
+ "snaLuAdminDisplayModel" : {
4024
+ "module" : "SNA-NAU-MIB",
4025
+ "access" : "readwrite",
4026
+ "description" :
4027
+ """An Agent is required to implement read-write
4028
+ access to this object.""",
4029
+ },
4030
+ "snaLuAdminTerm" : {
4031
+ "module" : "SNA-NAU-MIB",
4032
+ "access" : "readwrite",
4033
+ "description" :
4034
+ """An Agent is required to implement read-write
4035
+ access to this object.""",
4036
+ },
4037
+ }, # refinements
4038
+
4039
+ }, # compliance
4040
+ }, # compliances
4041
+
4042
+ }