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,2785 @@
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 TN3270E-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TN3270E-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TN3270E-MIB",
11
+
12
+ "TN3270E-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """TN3270E Working Group""",
17
+ "contact" :
18
+ """Kenneth White (kennethw@vnet.ibm.com)
19
+ IBM Corp. - Dept. BRQA/Bldg. 501/G114
20
+ P.O. Box 12195
21
+ 3039 Cornwallis
22
+ RTP, NC 27709-2195
23
+ USA
24
+
25
+ Robert Moore (remoore@us.ibm.com)
26
+ IBM Corp. - Dept. BRQA/Bldg. 501/G114
27
+ P.O. Box 12195
28
+ 3039 Cornwallis
29
+ RTP, NC 27709-2195
30
+ USA
31
+ +1-919-254-4436""",
32
+ "description" :
33
+ """This module defines a portion of the management
34
+ information base (MIB) for managing TN3270E servers.""",
35
+ "revisions" : (
36
+ {
37
+ "date" : "1998-07-27 00:00",
38
+ "description" :
39
+ """RFC nnnn (Proposed Standard)""",
40
+ },
41
+ ),
42
+ "identity node" : "tn3270eMIB",
43
+ },
44
+
45
+ "imports" : (
46
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
47
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
48
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
49
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
50
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
51
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
52
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
53
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
54
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
55
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
56
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
57
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
58
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
59
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
60
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
61
+ {"module" : "SNA-NAU-MIB", "name" : "snanauMIB"},
62
+ {"module" : "SYSAPPL-MIB", "name" : "Utf8String"},
63
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
64
+ {"module" : "IANATn3270eTC-MIB", "name" : "IANATn3270eAddrType"},
65
+ {"module" : "IANATn3270eTC-MIB", "name" : "IANATn3270eAddress"},
66
+ {"module" : "IANATn3270eTC-MIB", "name" : "IANATn3270eClientType"},
67
+ {"module" : "IANATn3270eTC-MIB", "name" : "IANATn3270Functions"},
68
+ {"module" : "IANATn3270eTC-MIB", "name" : "IANATn3270ResourceType"},
69
+ {"module" : "IANATn3270eTC-MIB", "name" : "IANATn3270DeviceType"},
70
+ {"module" : "IANATn3270eTC-MIB", "name" : "IANATn3270eLogData"},
71
+ ),
72
+
73
+ "typedefs" : {
74
+ "SnaResourceName" : {
75
+ "basetype" : "OctetString",
76
+ "status" : "current",
77
+ "ranges" : [
78
+ {
79
+ "min" : "0",
80
+ "max" : "17"
81
+ },
82
+ ],
83
+ "range" : {
84
+ "min" : "0",
85
+ "max" : "17"
86
+ },
87
+ "description" :
88
+ """The textual convention for defining an SNA resource
89
+ name. A fully qualified SNA resource name, consisting
90
+ of a 1 to 8 character network identifier (NetId), a
91
+ period ('.'), and a 1 to 8 character resource name
92
+ (ResName).
93
+
94
+ The NetId and ResName are constructed from the
95
+ uppercase letters 'A' - 'Z' and the numerics '0' - '9',
96
+ all encoded in ASCII, with the restriction that the
97
+ first character of each must be a letter. Blanks are
98
+ not allowed.
99
+
100
+ Earlier versions of SNA permitted three additional
101
+ characters in NetIds and ResNames: '#', '@', and '$'.
102
+ While this use of these characters has been retired,
103
+ a Management Station should still accept them for
104
+ backward compatibility.
105
+
106
+ Note: This Textual Convention is not subject to
107
+ internationalization, and does not use the character
108
+ encodings used by the Utf8String Textual Convention.""",
109
+ },
110
+ "Tn3270eTraceData" : {
111
+ "basetype" : "OctetString",
112
+ "status" : "current",
113
+ "ranges" : [
114
+ {
115
+ "min" : "0",
116
+ "max" : "0"
117
+ },
118
+ {
119
+ "min" : "3",
120
+ "max" : "4096"
121
+ },
122
+ ],
123
+ "range" : {
124
+ "min" : "0",
125
+ "max" : "4096"
126
+ },
127
+ "description" :
128
+ """An octet string representing trace data from the
129
+ Telnet half of a TN3270E session, from the SNA half,
130
+ or from both. The octet string contains a sequence
131
+ of trace elements, with the trace elements in the
132
+ string ordered from earliest to latest.
133
+
134
+ Each trace element has the following form:
135
+
136
+ +---+---+----+----------------------+
137
+ !length !type!data !
138
+ +---+---+----+----------------------+
139
+ where:
140
+
141
+ length = two-octet length of the data portion of the
142
+ trace element, not including the length and
143
+ type octets
144
+
145
+ type = one-octet code point characterizing the data;
146
+ defined values are:
147
+
148
+ X'01' telnet PDU from the server to the client
149
+ X'02' telnet PDU from the client to the server
150
+ X'03' SNA data from the server to the SNA host
151
+ X'04' SNA data from the SNA host to the server
152
+
153
+ data = initial part of a PDU.
154
+
155
+ It is implementation-dependent where the 'initial part of
156
+ a PDU' starts. For SNA data, however, the starting point
157
+ SHOULD be the first byte of the TH. For IP data the
158
+ starting point SHOULD be the first byte of the IP header.
159
+
160
+ It is left to implementations to determine how much of
161
+ each PDU to return in a trace element.
162
+
163
+ The zero-length string indicates that no trace
164
+ data is available.""",
165
+ },
166
+ }, # typedefs
167
+
168
+ "nodes" : {
169
+ "tn3270eMIB" : {
170
+ "nodetype" : "node",
171
+ "moduleName" : "TN3270E-MIB",
172
+ "oid" : "1.3.6.1.2.1.34.8",
173
+ "status" : "current",
174
+ }, # node
175
+ "tn3270eNotifications" : {
176
+ "nodetype" : "node",
177
+ "moduleName" : "TN3270E-MIB",
178
+ "oid" : "1.3.6.1.2.1.34.8.0",
179
+ }, # node
180
+ "tn3270eObjects" : {
181
+ "nodetype" : "node",
182
+ "moduleName" : "TN3270E-MIB",
183
+ "oid" : "1.3.6.1.2.1.34.8.1",
184
+ }, # node
185
+ "tn3270eSrvrConfTable" : {
186
+ "nodetype" : "table",
187
+ "moduleName" : "TN3270E-MIB",
188
+ "oid" : "1.3.6.1.2.1.34.8.1.1",
189
+ "status" : "current",
190
+ "description" :
191
+ """This table defines the configuration elements for
192
+ TN3270E servers. The number of entries in this table
193
+ is expected to vary depending on the location of the
194
+ table. A particular TN3270E server is expected to
195
+ have a single entry. Modeling of the configuration
196
+ elements as a table allows multiple TN3270E
197
+ servers to be serviced by the same SNMP agent.
198
+ An implementation SHOULD NOT retain an SNMP-created
199
+ entry in this table across re-IPLs (Initial Program
200
+ Loads) of the corresponding TN3270E server.""",
201
+ }, # table
202
+ "tn3270eSrvrConfEntry" : {
203
+ "nodetype" : "row",
204
+ "moduleName" : "TN3270E-MIB",
205
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1",
206
+ "create" : "true",
207
+ "status" : "current",
208
+ "linkage" : [
209
+ "tn3270eSrvrConfIndex",
210
+ ],
211
+ "description" :
212
+ """Definition of the configuration elements for a single
213
+ TN3270E server.""",
214
+ }, # row
215
+ "tn3270eSrvrConfIndex" : {
216
+ "nodetype" : "column",
217
+ "moduleName" : "TN3270E-MIB",
218
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.1",
219
+ "status" : "current",
220
+ "syntax" : {
221
+ "type" : {
222
+ "basetype" : "Unsigned32",
223
+ "ranges" : [
224
+ {
225
+ "min" : "1",
226
+ "max" : "4294967295"
227
+ },
228
+ ],
229
+ "range" : {
230
+ "min" : "1",
231
+ "max" : "4294967295"
232
+ },
233
+ },
234
+ },
235
+ "access" : "noaccess",
236
+ "description" :
237
+ """Identifier for a single TN3270E server.
238
+
239
+ tn3270eSrvrConfIndex values need not be
240
+ contiguous.""",
241
+ }, # column
242
+ "tn3270eSrvrConfInactivityTimeout" : {
243
+ "nodetype" : "column",
244
+ "moduleName" : "TN3270E-MIB",
245
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.2",
246
+ "status" : "current",
247
+ "syntax" : {
248
+ "type" : {
249
+ "basetype" : "Unsigned32",
250
+ "ranges" : [
251
+ {
252
+ "min" : "0",
253
+ "max" : "99999999"
254
+ },
255
+ ],
256
+ "range" : {
257
+ "min" : "0",
258
+ "max" : "99999999"
259
+ },
260
+ },
261
+ },
262
+ "access" : "readwrite",
263
+ "default" : "0",
264
+ "units" : "seconds",
265
+ "description" :
266
+ """The inactivity time-out specified in seconds. When a
267
+ connection has been inactive for the number of seconds
268
+ specified by this object it is closed. Only user traffic
269
+ is considered when determining whether there has been
270
+ activity on a connection.
271
+
272
+ The default value 0 means that no inactivity time-out is
273
+ in effect.""",
274
+ }, # column
275
+ "tn3270eSrvrConfConnectivityChk" : {
276
+ "nodetype" : "column",
277
+ "moduleName" : "TN3270E-MIB",
278
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.3",
279
+ "status" : "current",
280
+ "syntax" : {
281
+ "type" : {
282
+ "basetype" : "Enumeration",
283
+ "timingMark" : {
284
+ "nodetype" : "namednumber",
285
+ "number" : "1"
286
+ },
287
+ "nop" : {
288
+ "nodetype" : "namednumber",
289
+ "number" : "2"
290
+ },
291
+ "noCheck" : {
292
+ "nodetype" : "namednumber",
293
+ "number" : "3"
294
+ },
295
+ },
296
+ },
297
+ "access" : "readwrite",
298
+ "default" : "noCheck",
299
+ "description" :
300
+ """This object enables TIMING-MARK processing, NOP
301
+ processing, or neither for a TN3270E server.""",
302
+ }, # column
303
+ "tn3270eSrvrConfTmNopInactTime" : {
304
+ "nodetype" : "column",
305
+ "moduleName" : "TN3270E-MIB",
306
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.4",
307
+ "status" : "current",
308
+ "syntax" : {
309
+ "type" : {
310
+ "basetype" : "Unsigned32",
311
+ "ranges" : [
312
+ {
313
+ "min" : "1",
314
+ "max" : "86400"
315
+ },
316
+ ],
317
+ "range" : {
318
+ "min" : "1",
319
+ "max" : "86400"
320
+ },
321
+ },
322
+ },
323
+ "access" : "readwrite",
324
+ "default" : "600",
325
+ "units" : "seconds",
326
+ "description" :
327
+ """The amount of time a connection must have had no
328
+ traffic on it in order for a TIMING-MARK or NOP request
329
+ to be sent on the connection. This value applies only
330
+ when connections are being examined for recent activity
331
+ on a scan interval controlled by the value of the
332
+ tn3270eSrvrConfTmNopInterval object.""",
333
+ }, # column
334
+ "tn3270eSrvrConfTmNopInterval" : {
335
+ "nodetype" : "column",
336
+ "moduleName" : "TN3270E-MIB",
337
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.5",
338
+ "status" : "current",
339
+ "syntax" : {
340
+ "type" : {
341
+ "basetype" : "Unsigned32",
342
+ "ranges" : [
343
+ {
344
+ "min" : "1",
345
+ "max" : "86400"
346
+ },
347
+ ],
348
+ "range" : {
349
+ "min" : "1",
350
+ "max" : "86400"
351
+ },
352
+ },
353
+ },
354
+ "access" : "readwrite",
355
+ "default" : "120",
356
+ "units" : "seconds",
357
+ "description" :
358
+ """The scan interval to be used by a TN3270E server when
359
+ it examines its Telnet connections for recent activity.
360
+ The server scans its Telnet connections on the interval
361
+ provided by this object, looking for ones that have been
362
+ idle for more than the value provided by the
363
+ tn3270eSrvrConfTmNopInactTime object. A TIMING-MARK or
364
+ NOP request is sent for each connection that has
365
+ exhibited no activity for this period of time.""",
366
+ }, # column
367
+ "tn3270eSrvrFunctionsSupported" : {
368
+ "nodetype" : "column",
369
+ "moduleName" : "TN3270E-MIB",
370
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.6",
371
+ "status" : "current",
372
+ "syntax" : {
373
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270Functions"},
374
+ },
375
+ "access" : "readonly",
376
+ "default" : "(scsCtlCodes, dataStreamCtl, responses, bindImage, sysreq)",
377
+ "description" :
378
+ """This object indicates the functions supported by a
379
+ TN3270E server.""",
380
+ }, # column
381
+ "tn3270eSrvrConfAdminStatus" : {
382
+ "nodetype" : "column",
383
+ "moduleName" : "TN3270E-MIB",
384
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.7",
385
+ "status" : "current",
386
+ "syntax" : {
387
+ "type" : {
388
+ "basetype" : "Enumeration",
389
+ "up" : {
390
+ "nodetype" : "namednumber",
391
+ "number" : "1"
392
+ },
393
+ "down" : {
394
+ "nodetype" : "namednumber",
395
+ "number" : "2"
396
+ },
397
+ "stopImmediate" : {
398
+ "nodetype" : "namednumber",
399
+ "number" : "3"
400
+ },
401
+ },
402
+ },
403
+ "access" : "readwrite",
404
+ "default" : "up",
405
+ "description" :
406
+ """The desired state of the TN3270E server represented
407
+ by this entry in the table:
408
+
409
+ up(1) - Activate this TN3270E server.
410
+ down(2) - Informs the associated TN3270E
411
+ server to gracefully terminate
412
+ its processing.
413
+ stopImmediate(3) - Informs the associated TN3270E
414
+ server to terminate itself
415
+ immediately.
416
+
417
+ When a managed system creates an entry in this table,
418
+ tn3270eSrvrConfAdminStatus and tn3270eSrvrConfOperStatus
419
+ are initialized as up(1) by default.
420
+
421
+ The exact behavior of a server in response to a down(2)
422
+ or stopImmediate(3) command is left implementation-
423
+ dependent. A TN3270E server that is capable of it
424
+ SHOULD close all of its TN3270 and TN3270E sessions
425
+ during a graceful termination.
426
+
427
+ Often the function enabled via stopImmediate(3) is used
428
+ as a last resort by a system administrator, to attempt
429
+ to either bring down a hung TN3270E server or free up
430
+ its resources immediately to aid in general system
431
+ availability, or to shut down a TN3270E server that is
432
+ not recognizing a down(2) request.
433
+
434
+ A TN3270E server that does not distinguish between
435
+ down(2) or stopImmediate(3) transitions should not
436
+ support stopImmediate(3).""",
437
+ }, # column
438
+ "tn3270eSrvrConfOperStatus" : {
439
+ "nodetype" : "column",
440
+ "moduleName" : "TN3270E-MIB",
441
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.8",
442
+ "status" : "current",
443
+ "syntax" : {
444
+ "type" : {
445
+ "basetype" : "Enumeration",
446
+ "up" : {
447
+ "nodetype" : "namednumber",
448
+ "number" : "1"
449
+ },
450
+ "down" : {
451
+ "nodetype" : "namednumber",
452
+ "number" : "2"
453
+ },
454
+ "busy" : {
455
+ "nodetype" : "namednumber",
456
+ "number" : "3"
457
+ },
458
+ "shuttingDown" : {
459
+ "nodetype" : "namednumber",
460
+ "number" : "4"
461
+ },
462
+ },
463
+ },
464
+ "access" : "readonly",
465
+ "default" : "up",
466
+ "description" :
467
+ """The current operational state of a TN3270E server.
468
+ The following values are defined:
469
+
470
+ up(1) - the server is active and accepting
471
+ new client connections
472
+ down(2) - the server is not active
473
+ busy(3) - the server is active, but is not
474
+ accepting new client connections
475
+ because it lacks the resources to
476
+ do so
477
+ shuttingDown(4) - the server is active, but is not
478
+ accepting new client connections
479
+ because it is in the process of
480
+ performing a graceful shutdown.""",
481
+ }, # column
482
+ "tn3270eSrvrConfSessionTermState" : {
483
+ "nodetype" : "column",
484
+ "moduleName" : "TN3270E-MIB",
485
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.9",
486
+ "status" : "current",
487
+ "syntax" : {
488
+ "type" : {
489
+ "basetype" : "Enumeration",
490
+ "terminate" : {
491
+ "nodetype" : "namednumber",
492
+ "number" : "1"
493
+ },
494
+ "luSessionPend" : {
495
+ "nodetype" : "namednumber",
496
+ "number" : "2"
497
+ },
498
+ "queueSession" : {
499
+ "nodetype" : "namednumber",
500
+ "number" : "3"
501
+ },
502
+ },
503
+ },
504
+ "access" : "readwrite",
505
+ "default" : "terminate",
506
+ "description" :
507
+ """This object determines what a TN3270E server
508
+ should do when a TN3270 Session terminates:
509
+ terminate(1) => Terminate the TCP connection.
510
+ luSessionPend(2) => Do not drop the TCP connection
511
+ associated with a client when its
512
+ TN3270 session ends. Processing
513
+ should redrive session initialization
514
+ as if the client were first connecting.
515
+ queueSession(3) => This value relates to the Close
516
+ Destination PASS (CLSDST PASS) operation
517
+ in VTAM. An example provides the
518
+ easiest explanation. Suppose a TN3270E
519
+ client is in session with APPL1, and
520
+ APPL1 does a CLSDST PASS of the client's
521
+ session to APPL2. queueSession(3)
522
+ specifies that the TN3270E server must
523
+ keep the TCP connection with the client
524
+ active after it receives the UNBIND from
525
+ APPL1, waiting for the BIND from APPL2.""",
526
+ }, # column
527
+ "tn3270eSrvrConfSrvrType" : {
528
+ "nodetype" : "column",
529
+ "moduleName" : "TN3270E-MIB",
530
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.10",
531
+ "status" : "current",
532
+ "syntax" : {
533
+ "type" : {
534
+ "basetype" : "Enumeration",
535
+ "host" : {
536
+ "nodetype" : "namednumber",
537
+ "number" : "1"
538
+ },
539
+ "gateway" : {
540
+ "nodetype" : "namednumber",
541
+ "number" : "2"
542
+ },
543
+ },
544
+ },
545
+ "access" : "readonly",
546
+ "description" :
547
+ """This object indicates the type of TN3270E server.
548
+ The existence of MIB tables and objects that will be
549
+ defined by follow-on MIBs may be predicated on whether
550
+ the TN3270E server can be local to the same host as a
551
+ target application (host(1)) or will always be remote
552
+ (gateway(2)).
553
+
554
+ A host TN3270E server refers to an implementation where
555
+ the TN3270E server is collocated with the Systems
556
+ Network Architecture (SNA) System Services Control Point
557
+ (SSCP) for the dependent Secondary Logical Units (SLUs)
558
+ that the server makes available to its clients for
559
+ connecting into an SNA network.
560
+ A gateway TN3270E server resides on an SNA node other
561
+ than an SSCP, either an SNA type 2.0 node or an APPN node
562
+ acting in the role of a Dependent LU Requester (DLUR).
563
+
564
+ Host and gateway TN3270E server implementations typically
565
+ differ greatly as to their internal implementation and
566
+ system definition (SYSDEF) requirements.""",
567
+ }, # column
568
+ "tn3270eSrvrConfContact" : {
569
+ "nodetype" : "column",
570
+ "moduleName" : "TN3270E-MIB",
571
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.11",
572
+ "status" : "current",
573
+ "syntax" : {
574
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
575
+ },
576
+ "access" : "readwrite",
577
+ "default" : "",
578
+ "description" :
579
+ """This object provides a scratch pad for a TN3270E
580
+ server administrator for storing information for
581
+ later retrieval.""",
582
+ }, # column
583
+ "tn3270eSrvrConfRowStatus" : {
584
+ "nodetype" : "column",
585
+ "moduleName" : "TN3270E-MIB",
586
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.12",
587
+ "status" : "current",
588
+ "syntax" : {
589
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
590
+ },
591
+ "access" : "readwrite",
592
+ "description" :
593
+ """This object allows entries to be created and deleted
594
+ in the tn3270eSrvrConfTable. Entries may also be
595
+ created and deleted as a result of implementation-
596
+ dependent operations.
597
+
598
+ With the exception of tn3270eSrvrConfSrvrType, which
599
+ an implementation can easily fill in for itself, all
600
+ the columnar objects in this table have DEFVALs
601
+ associated with them. Consequently, a Management
602
+ Station can create a conceptual row via a SET
603
+ operation that specifies a value only for this object.
604
+
605
+ When a tn3270eSrvrConfEntry is deleted (by setting
606
+ this object to destroy(6)), this has the side-effect
607
+ of removing all the associated entries (i.e., those
608
+ having the same tn3270eSrvrConfIndex) from the
609
+ tn3270eSrvrPortTable, the tn3270eSrvrStatsTable, the
610
+ tn3270eClientGroupTable, the tn3270eResPoolTable,
611
+ the tn3270eSnaMapTable, the tn3270eClientResMapTable,
612
+ and the tn3270eResMapTable. All entries in the
613
+ tn3270eTcpConnTable that belong to a TN3270E server
614
+ that has been deleted MUST also be removed.
615
+ In other words, a tn3270eSrvrConfEntry must exist for
616
+ a TN3270E server in order for it to have entries in
617
+ any of the other tables defined by this MIB.""",
618
+ "reference" :
619
+ """RFC 1903, 'Textual Conventions for version 2 of the
620
+ Simple Network Management Protocol (SNMPv2).'""",
621
+ }, # column
622
+ "tn3270eSrvrConfLastActTime" : {
623
+ "nodetype" : "column",
624
+ "moduleName" : "TN3270E-MIB",
625
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.13",
626
+ "status" : "current",
627
+ "syntax" : {
628
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
629
+ },
630
+ "access" : "readonly",
631
+ "default" : "0x0000000000000000",
632
+ "description" :
633
+ """This object reports the DateAndTime when a TN3270E
634
+ server was most recently activated.
635
+
636
+ The special value of all '00'Hs indicates that the
637
+ server has never been active, i.e., that the value of
638
+ tn3270eSrvrOperStatus has never been anything other
639
+ than down(2).""",
640
+ }, # column
641
+ "tn3270eSrvrConfTmTimeout" : {
642
+ "nodetype" : "column",
643
+ "moduleName" : "TN3270E-MIB",
644
+ "oid" : "1.3.6.1.2.1.34.8.1.1.1.14",
645
+ "status" : "current",
646
+ "syntax" : {
647
+ "type" : {
648
+ "basetype" : "Unsigned32",
649
+ "ranges" : [
650
+ {
651
+ "min" : "1",
652
+ "max" : "600"
653
+ },
654
+ ],
655
+ "range" : {
656
+ "min" : "1",
657
+ "max" : "600"
658
+ },
659
+ },
660
+ },
661
+ "access" : "readwrite",
662
+ "default" : "5",
663
+ "units" : "seconds",
664
+ "description" :
665
+ """The TIMING-MARK time-out, specified in seconds.""",
666
+ }, # column
667
+ "tn3270eSrvrPortTable" : {
668
+ "nodetype" : "table",
669
+ "moduleName" : "TN3270E-MIB",
670
+ "oid" : "1.3.6.1.2.1.34.8.1.2",
671
+ "status" : "current",
672
+ "description" :
673
+ """This table defines the TCP ports associated with
674
+ TN3270E servers. No entry in this table shall exist
675
+ without a corresponding (same tn3270eSrvrConfIndex)
676
+ entry in the tn3270eSrvrConfTable existing.
677
+
678
+ An implementation SHOULD NOT retain SNMP-created
679
+ entries in this table across re-IPLs (Initial Program
680
+ Loads) of the corresponding TN3270E server.""",
681
+ }, # table
682
+ "tn3270eSrvrPortEntry" : {
683
+ "nodetype" : "row",
684
+ "moduleName" : "TN3270E-MIB",
685
+ "oid" : "1.3.6.1.2.1.34.8.1.2.1",
686
+ "create" : "true",
687
+ "status" : "current",
688
+ "linkage" : [
689
+ "tn3270eSrvrConfIndex",
690
+ "tn3270eSrvrPort",
691
+ "tn3270eSrvrPortAddrType",
692
+ "tn3270eSrvrPortAddress",
693
+ ],
694
+ "description" :
695
+ """Definition of a single TCP port assignment to a
696
+ TN3270E server. Assignment of a port on a local
697
+ address basis is enabled though use of
698
+ tn3270eSrvrPortAddrType and tn3270eSrvrPortAddress.
699
+
700
+ A TCP port assignment that is not restricted to
701
+ a local address SHALL specify a tn3270eSrvrPortAddrType
702
+ of unknown(0), and SHALL use a zero-length octet string
703
+ for the tn3270eSrvrPortAddress.""",
704
+ }, # row
705
+ "tn3270eSrvrPort" : {
706
+ "nodetype" : "column",
707
+ "moduleName" : "TN3270E-MIB",
708
+ "oid" : "1.3.6.1.2.1.34.8.1.2.1.1",
709
+ "status" : "current",
710
+ "syntax" : {
711
+ "type" : {
712
+ "basetype" : "Unsigned32",
713
+ "ranges" : [
714
+ {
715
+ "min" : "0",
716
+ "max" : "65535"
717
+ },
718
+ ],
719
+ "range" : {
720
+ "min" : "0",
721
+ "max" : "65535"
722
+ },
723
+ },
724
+ },
725
+ "access" : "noaccess",
726
+ "description" :
727
+ """Indicates a port assigned to a server.""",
728
+ }, # column
729
+ "tn3270eSrvrPortAddrType" : {
730
+ "nodetype" : "column",
731
+ "moduleName" : "TN3270E-MIB",
732
+ "oid" : "1.3.6.1.2.1.34.8.1.2.1.2",
733
+ "status" : "current",
734
+ "syntax" : {
735
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddrType"},
736
+ },
737
+ "access" : "noaccess",
738
+ "description" :
739
+ """Indicates the type of an address local to the host on
740
+ which the TN3270E server resides that is represented
741
+ in tn3270eSrvrPortAddress. A value of unknown(0)
742
+ SHALL be used for this object when the port is not
743
+ to be restricted to a local address.""",
744
+ }, # column
745
+ "tn3270eSrvrPortAddress" : {
746
+ "nodetype" : "column",
747
+ "moduleName" : "TN3270E-MIB",
748
+ "oid" : "1.3.6.1.2.1.34.8.1.2.1.3",
749
+ "status" : "current",
750
+ "syntax" : {
751
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddress"},
752
+ },
753
+ "access" : "noaccess",
754
+ "description" :
755
+ """A local address on the host that a TN3270E server
756
+ resides on that is associated with a TCP port that
757
+ is to be used or is in use by a TN3270E server.
758
+ tn3270eClientGroupAddrType indicates the
759
+ address type (IPv4 or IPv6, for example).
760
+
761
+ A zero-length octet string SHALL be used as the
762
+ value of this object when a local address isn't
763
+ being specified.""",
764
+ }, # column
765
+ "tn3270eSrvrPortRowStatus" : {
766
+ "nodetype" : "column",
767
+ "moduleName" : "TN3270E-MIB",
768
+ "oid" : "1.3.6.1.2.1.34.8.1.2.1.4",
769
+ "status" : "current",
770
+ "syntax" : {
771
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
772
+ },
773
+ "access" : "readwrite",
774
+ "description" :
775
+ """This object allows entries to be created and deleted
776
+ in the tn3270eSrvrPortTable. Entries may also be
777
+ created and deleted as a result of implementation-
778
+ dependent operations.
779
+
780
+ Since this is the only accessible object in this table,
781
+ a Management Station can create a conceptual row via a SET
782
+ operation that specifies a value only for this object.
783
+
784
+ An entry in this table is deleted by setting this object
785
+ to destroy(6). Deletion of a tn3270eSrvrPortEntry has
786
+ no effect on any other table entry defined by this MIB.""",
787
+ "reference" :
788
+ """RFC 1903, 'Textual Conventions for version 2 of the
789
+ Simple Network Management Protocol (SNMPv2).'""",
790
+ }, # column
791
+ "tn3270eSrvrStatsTable" : {
792
+ "nodetype" : "table",
793
+ "moduleName" : "TN3270E-MIB",
794
+ "oid" : "1.3.6.1.2.1.34.8.1.3",
795
+ "status" : "current",
796
+ "description" :
797
+ """This table defines a set of statistics concerning
798
+ TN3270E server performance.
799
+
800
+ No entry in this table shall exist without
801
+ a corresponding (same tn3270eSrvrConfIndex) entry in
802
+ the tn3270eSrvrConfTable existing.""",
803
+ }, # table
804
+ "tn3270eSrvrStatsEntry" : {
805
+ "nodetype" : "row",
806
+ "moduleName" : "TN3270E-MIB",
807
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1",
808
+ "status" : "current",
809
+ "linkage" : [
810
+ "tn3270eSrvrConfIndex",
811
+ "tn3270eSrvrPort",
812
+ "tn3270eSrvrPortAddrType",
813
+ "tn3270eSrvrPortAddress",
814
+ ],
815
+ "description" :
816
+ """A collection of statistical and maximum usage objects
817
+ for a single TN3270 server. An entry can represent the total
818
+ activity of the server, or it can represent the activity
819
+ occurring at the server on either a port or a
820
+ port-and-local-address basis.
821
+
822
+ Collection of the statistics represented by the objects
823
+ in this table is not mandatory. An implementation
824
+ of this table MUST use only one of the three levels of
825
+ refinement that this table supports for the entries
826
+ associated with each TN3270E server.
827
+
828
+ The indexing for a row that represents total server
829
+ statistics is as follows:
830
+
831
+ tn3270eSrvrConfIndex value identifying the server
832
+ tn3270eSrvrPort 0
833
+ tn3270eSrvrPortAddrType unknown(0)
834
+ tn3270eSrvrPortAddress zero-length octet string.
835
+
836
+ On a port basis:
837
+
838
+ tn3270eSrvrConfIndex value identifying the server
839
+ tn3270eSrvrPort > 0
840
+ tn3270eSrvrPortAddrType unknown(0)
841
+ tn3270eSrvrPortAddress zero-length octet string.
842
+
843
+ On a port-and-local-address basis:
844
+
845
+ tn3270eSrvrConfIndex value identifying the server
846
+ tn3270eSrvrPort > 0
847
+ tn3270eSrvrPortAddrType valid value other than unknown(0)
848
+ tn3270eSrvrPortAddress non-zero-length octet string.""",
849
+ }, # row
850
+ "tn3270eSrvrStatsUpTime" : {
851
+ "nodetype" : "column",
852
+ "moduleName" : "TN3270E-MIB",
853
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.2",
854
+ "status" : "current",
855
+ "syntax" : {
856
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
857
+ },
858
+ "access" : "readonly",
859
+ "description" :
860
+ """The value of the sysUpTime object the last time
861
+ the TN3270E server was re-initialized.
862
+
863
+ Server re-initialization is the only discontinuity
864
+ event for the counters in this table. Even if table
865
+ entries are on a port or port-and-local-address
866
+ basis, port deactivation and reactivation do not
867
+ result in counter discontinuities.""",
868
+ }, # column
869
+ "tn3270eSrvrStatsMaxTerms" : {
870
+ "nodetype" : "column",
871
+ "moduleName" : "TN3270E-MIB",
872
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.3",
873
+ "status" : "current",
874
+ "syntax" : {
875
+ "type" : { "module" :"", "name" : "Unsigned32"},
876
+ },
877
+ "access" : "readonly",
878
+ "units" : "LUs",
879
+ "description" :
880
+ """Indicates the maximum number of terminal LUs available
881
+ for use at a TN3270E server for the granularity of this
882
+ conceptual row (server-wide, port, or
883
+ port-and-local-address).""",
884
+ }, # column
885
+ "tn3270eSrvrStatsInUseTerms" : {
886
+ "nodetype" : "column",
887
+ "moduleName" : "TN3270E-MIB",
888
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.4",
889
+ "status" : "current",
890
+ "syntax" : {
891
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
892
+ },
893
+ "access" : "readonly",
894
+ "units" : "LUs",
895
+ "description" :
896
+ """Indicates the number of terminal LUs currently in
897
+ use at a TN3270E server for the granularity of this
898
+ conceptual row (server-wide, port, or
899
+ port-and-local-address).""",
900
+ }, # column
901
+ "tn3270eSrvrStatsSpareTerms" : {
902
+ "nodetype" : "column",
903
+ "moduleName" : "TN3270E-MIB",
904
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.5",
905
+ "status" : "current",
906
+ "syntax" : {
907
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
908
+ },
909
+ "access" : "readonly",
910
+ "units" : "LUs",
911
+ "description" :
912
+ """Indicates the number of free terminal LUs at a TN3270E
913
+ server for the granularity of this conceptual row
914
+ (server-wide, port, or port-and-local-address).
915
+
916
+ It is possible that the difference between
917
+ tn3270eSrvrStatsMaxTerms and tn3270eSrvrStatsInUseTerms
918
+ in a conceptual row does not equal the value of
919
+ tn3270eSrvrStatsSpareTerms in that row: an LU may
920
+ exist but not be usable by a client connection.
921
+
922
+ Alternatively, the administrative ceiling represented
923
+ by tn3270eSrvrStatsMaxTerms may have been lowered to
924
+ a point where it is less than the current value of
925
+ tn3270eSrvrStatsInUseTerms. In this case
926
+ tn3270eSrvrStatsSpareTerms returns the value 0.""",
927
+ }, # column
928
+ "tn3270eSrvrStatsMaxPtrs" : {
929
+ "nodetype" : "column",
930
+ "moduleName" : "TN3270E-MIB",
931
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.6",
932
+ "status" : "current",
933
+ "syntax" : {
934
+ "type" : { "module" :"", "name" : "Unsigned32"},
935
+ },
936
+ "access" : "readonly",
937
+ "units" : "Printer Resources",
938
+ "description" :
939
+ """Indicates the maximum number of printer resources
940
+ available for use by a TN3270E server for the
941
+ granularity of this conceptual row (server-wide,
942
+ port, or port-and-local-address).""",
943
+ }, # column
944
+ "tn3270eSrvrStatsInUsePtrs" : {
945
+ "nodetype" : "column",
946
+ "moduleName" : "TN3270E-MIB",
947
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.7",
948
+ "status" : "current",
949
+ "syntax" : {
950
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
951
+ },
952
+ "access" : "readonly",
953
+ "units" : "Printer Resources",
954
+ "description" :
955
+ """Indicates the number of printer resources
956
+ currently in use by a TN3270E server for the
957
+ granularity of this conceptual row (server-wide,
958
+ port, or port-and-local-address).""",
959
+ }, # column
960
+ "tn3270eSrvrStatsSparePtrs" : {
961
+ "nodetype" : "column",
962
+ "moduleName" : "TN3270E-MIB",
963
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.8",
964
+ "status" : "current",
965
+ "syntax" : {
966
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
967
+ },
968
+ "access" : "readonly",
969
+ "units" : "Spare Printer Resources",
970
+ "description" :
971
+ """Indicates the number of free printer resources at
972
+ a TN3270E server for the granularity of this conceptual
973
+ row (server-wide, port, or port-and-local-address).
974
+
975
+ It is possible that the difference between
976
+ tn3270eSrvrStatsMaxPtrs and tn3270eSrvrStatsInUsePtrs
977
+ in a conceptual row does not equal the value of
978
+ tn3270eSrvrStatsSparePtrs in that row: a printer
979
+ resource may exist but not be usable by a client
980
+ connection.
981
+
982
+ Alternatively, the administrative ceiling represented
983
+ by tn3270eSrvrStatsMaxPtrs may have been lowered to
984
+ a point where it is less than the current value of
985
+ tn3270eSrvrStatsInUsePtrs. In this case
986
+ tn3270eSrvrStatsSparePtrs returns the value 0.""",
987
+ }, # column
988
+ "tn3270eSrvrStatsInConnects" : {
989
+ "nodetype" : "column",
990
+ "moduleName" : "TN3270E-MIB",
991
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.9",
992
+ "status" : "current",
993
+ "syntax" : {
994
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
995
+ },
996
+ "access" : "readonly",
997
+ "units" : "connections",
998
+ "description" :
999
+ """Indicates the number of client (TCP) connections
1000
+ that succeeded at a TN3270E server for the
1001
+ granularity of this conceptual row (server-wide,
1002
+ port, or port-and-local-address).
1003
+
1004
+ The tn3270eSrvrStatsConnResrceRejs and
1005
+ tn3270eSrvrStatsConnErrorRejs objects provide a count
1006
+ of failed connection attempts.
1007
+
1008
+ A Management Station can detect discontinuities in
1009
+ this counter by monitoring the tn3270eSrvrStatsUpTime
1010
+ object.""",
1011
+ }, # column
1012
+ "tn3270eSrvrStatsConnResrceRejs" : {
1013
+ "nodetype" : "column",
1014
+ "moduleName" : "TN3270E-MIB",
1015
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.10",
1016
+ "status" : "current",
1017
+ "syntax" : {
1018
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1019
+ },
1020
+ "access" : "readonly",
1021
+ "units" : "connection attempts",
1022
+ "description" :
1023
+ """Indicates the number of (TCP) connections rejected
1024
+ during connection setup at a TN3270E server for the
1025
+ granularity of this conceptual row (server-wide,
1026
+ port, or port-and-local-address) due to a lack of
1027
+ resources at the server. An example of when this
1028
+ counter would be incremented is when no terminal
1029
+ or printer resource is available to associate with a
1030
+ client's TCP connection.
1031
+
1032
+ A Management Station can detect discontinuities in
1033
+ this counter by monitoring the tn3270eSrvrStatsUpTime
1034
+ object.""",
1035
+ }, # column
1036
+ "tn3270eSrvrStatsDisconnects" : {
1037
+ "nodetype" : "column",
1038
+ "moduleName" : "TN3270E-MIB",
1039
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.11",
1040
+ "status" : "current",
1041
+ "syntax" : {
1042
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1043
+ },
1044
+ "access" : "readonly",
1045
+ "units" : "disconnections",
1046
+ "description" :
1047
+ """Indicates the number of (TCP) connections that were
1048
+ disconnected at a TN3270E server for the
1049
+ granularity of this conceptual row (server-wide,
1050
+ port, or port-and-local-address).
1051
+
1052
+ A Management Station can detect discontinuities in
1053
+ this counter by monitoring the tn3270eSrvrStatsUpTime
1054
+ object.""",
1055
+ }, # column
1056
+ "tn3270eSrvrStatsHCInOctets" : {
1057
+ "nodetype" : "column",
1058
+ "moduleName" : "TN3270E-MIB",
1059
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.12",
1060
+ "status" : "current",
1061
+ "syntax" : {
1062
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1063
+ },
1064
+ "access" : "readonly",
1065
+ "units" : "octets",
1066
+ "description" :
1067
+ """Indicates the number of octets received from TN3270
1068
+ and TN3270E clients for the granularity of this
1069
+ conceptual row (server-wide, port, or
1070
+ port-and-local-address).
1071
+
1072
+ A Management Station can detect discontinuities in
1073
+ this counter by monitoring the tn3270eSrvrStatsUpTime
1074
+ object.""",
1075
+ }, # column
1076
+ "tn3270eSrvrStatsInOctets" : {
1077
+ "nodetype" : "column",
1078
+ "moduleName" : "TN3270E-MIB",
1079
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.13",
1080
+ "status" : "current",
1081
+ "syntax" : {
1082
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1083
+ },
1084
+ "access" : "readonly",
1085
+ "units" : "octets",
1086
+ "description" :
1087
+ """Low-order 32 bits of tn3270eSrvrStatsHCInOctets for
1088
+ this conceptual row.
1089
+
1090
+ A Management Station can detect discontinuities in
1091
+ this counter by monitoring the tn3270eSrvrStatsUpTime
1092
+ object.""",
1093
+ }, # column
1094
+ "tn3270eSrvrStatsHCOutOctets" : {
1095
+ "nodetype" : "column",
1096
+ "moduleName" : "TN3270E-MIB",
1097
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.14",
1098
+ "status" : "current",
1099
+ "syntax" : {
1100
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1101
+ },
1102
+ "access" : "readonly",
1103
+ "units" : "octets",
1104
+ "description" :
1105
+ """Indicates the number of octets sent to TN3270
1106
+ and TN3270E clients for the granularity of this
1107
+ conceptual row (server-wide, port, or
1108
+ port-and-local-address).
1109
+
1110
+ A Management Station can detect discontinuities in
1111
+ this counter by monitoring the tn3270eSrvrStatsUpTime
1112
+ object.""",
1113
+ }, # column
1114
+ "tn3270eSrvrStatsOutOctets" : {
1115
+ "nodetype" : "column",
1116
+ "moduleName" : "TN3270E-MIB",
1117
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.15",
1118
+ "status" : "current",
1119
+ "syntax" : {
1120
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1121
+ },
1122
+ "access" : "readonly",
1123
+ "units" : "octets",
1124
+ "description" :
1125
+ """Low-order 32 bits of tn3270eSrvrStatsHCOutOctets for
1126
+ this conceptual row.
1127
+
1128
+ A Management Station can detect discontinuities in
1129
+ this counter by monitoring the tn3270eSrvrStatsUpTime
1130
+ object.""",
1131
+ }, # column
1132
+ "tn3270eSrvrStatsConnErrorRejs" : {
1133
+ "nodetype" : "column",
1134
+ "moduleName" : "TN3270E-MIB",
1135
+ "oid" : "1.3.6.1.2.1.34.8.1.3.1.16",
1136
+ "status" : "current",
1137
+ "syntax" : {
1138
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1139
+ },
1140
+ "access" : "readonly",
1141
+ "units" : "connection attempts",
1142
+ "description" :
1143
+ """Indicates the number of (TCP) connections rejected
1144
+ during connection setup at a TN3270E server for the
1145
+ granularity of this conceptual row (server-wide,
1146
+ port, or port-and-local-address) due to an error
1147
+ of some type. An example of when this counter would
1148
+ be incremented is when the client and the server
1149
+ cannot agree on a common set of TN3270E functions for
1150
+ the connection.
1151
+
1152
+ A Management Station can detect discontinuities in
1153
+ this counter by monitoring the tn3270eSrvrStatsUpTime
1154
+ object.""",
1155
+ }, # column
1156
+ "tn3270eClientGroupTable" : {
1157
+ "nodetype" : "table",
1158
+ "moduleName" : "TN3270E-MIB",
1159
+ "oid" : "1.3.6.1.2.1.34.8.1.4",
1160
+ "status" : "current",
1161
+ "description" :
1162
+ """This table defines client address groupings for use
1163
+ by a TN3270E server.
1164
+
1165
+ No entry in this table shall exist without
1166
+ a corresponding (same tn3270eSrvrConfIndex) entry in
1167
+ the tn3270eSrvrConfTable existing.
1168
+
1169
+ An implementation SHOULD NOT retain SNMP-created
1170
+ entries in this table across re-IPLs (Initial Program
1171
+ Loads) of the corresponding TN3270E server.""",
1172
+ }, # table
1173
+ "tn3270eClientGroupEntry" : {
1174
+ "nodetype" : "row",
1175
+ "moduleName" : "TN3270E-MIB",
1176
+ "oid" : "1.3.6.1.2.1.34.8.1.4.1",
1177
+ "create" : "true",
1178
+ "status" : "current",
1179
+ "linkage" : [
1180
+ "tn3270eSrvrConfIndex",
1181
+ "tn3270eClientGroupName",
1182
+ "tn3270eClientGroupAddrType",
1183
+ "tn3270eClientGroupAddress",
1184
+ ],
1185
+ "description" :
1186
+ """Definition of a single client address entry. All
1187
+ entries with the same first two indexes,
1188
+ tn3270eSrvrConfIndex and tn3270eClientGroupName, are
1189
+ considered to be in the same client group.""",
1190
+ }, # row
1191
+ "tn3270eClientGroupName" : {
1192
+ "nodetype" : "column",
1193
+ "moduleName" : "TN3270E-MIB",
1194
+ "oid" : "1.3.6.1.2.1.34.8.1.4.1.1",
1195
+ "status" : "current",
1196
+ "syntax" : {
1197
+ "type" : {
1198
+ "basetype" : "OctetString",
1199
+ "parent module" : {
1200
+ "name" : "SYSAPPL-MIB",
1201
+ "type" : "Utf8String",
1202
+ },
1203
+ "ranges" : [
1204
+ {
1205
+ "min" : "1",
1206
+ "max" : "24"
1207
+ },
1208
+ ],
1209
+ "range" : {
1210
+ "min" : "1",
1211
+ "max" : "24"
1212
+ },
1213
+ },
1214
+ },
1215
+ "access" : "noaccess",
1216
+ "description" :
1217
+ """The name of a client group. Note: client group
1218
+ names are required to be unique only with respect
1219
+ to a single TN3270E server.""",
1220
+ }, # column
1221
+ "tn3270eClientGroupAddrType" : {
1222
+ "nodetype" : "column",
1223
+ "moduleName" : "TN3270E-MIB",
1224
+ "oid" : "1.3.6.1.2.1.34.8.1.4.1.2",
1225
+ "status" : "current",
1226
+ "syntax" : {
1227
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddrType"},
1228
+ },
1229
+ "access" : "noaccess",
1230
+ "description" :
1231
+ """Indicates the type of the address represented in
1232
+ tn3270eClientGroupAddress.""",
1233
+ }, # column
1234
+ "tn3270eClientGroupAddress" : {
1235
+ "nodetype" : "column",
1236
+ "moduleName" : "TN3270E-MIB",
1237
+ "oid" : "1.3.6.1.2.1.34.8.1.4.1.3",
1238
+ "status" : "current",
1239
+ "syntax" : {
1240
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddress"},
1241
+ },
1242
+ "access" : "noaccess",
1243
+ "description" :
1244
+ """The client address of a member of a client group.
1245
+ The value of tn3270eClientGroupAddrType indicates
1246
+ the address type (IPv4 or IPv6, for example).""",
1247
+ }, # column
1248
+ "tn3270eClientGroupSubnetMask" : {
1249
+ "nodetype" : "column",
1250
+ "moduleName" : "TN3270E-MIB",
1251
+ "oid" : "1.3.6.1.2.1.34.8.1.4.1.4",
1252
+ "status" : "current",
1253
+ "syntax" : {
1254
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1255
+ },
1256
+ "access" : "readwrite",
1257
+ "default" : "0xffffffff",
1258
+ "description" :
1259
+ """The corresponding subnet mask associated with
1260
+ tn3270eClientGroupAddress. A single IP address is
1261
+ represented by having this object contain the value
1262
+ of 255.255.255.255.
1263
+
1264
+ This object's value is meaningful only if
1265
+ tn3270eClientGroupAddrType has a value of ipv4(1).""",
1266
+ }, # column
1267
+ "tn3270eClientGroupPfxLength" : {
1268
+ "nodetype" : "column",
1269
+ "moduleName" : "TN3270E-MIB",
1270
+ "oid" : "1.3.6.1.2.1.34.8.1.4.1.5",
1271
+ "status" : "current",
1272
+ "syntax" : {
1273
+ "type" : {
1274
+ "basetype" : "Unsigned32",
1275
+ "ranges" : [
1276
+ {
1277
+ "min" : "0",
1278
+ "max" : "128"
1279
+ },
1280
+ ],
1281
+ "range" : {
1282
+ "min" : "0",
1283
+ "max" : "128"
1284
+ },
1285
+ },
1286
+ },
1287
+ "access" : "readwrite",
1288
+ "default" : "0",
1289
+ "units" : "bits",
1290
+ "description" :
1291
+ """The corresponding IPv6 network prefix length.
1292
+
1293
+ This object's value is meaningful only if
1294
+ tn3270eClientGroupAddrType has a value of ipv6(2).""",
1295
+ }, # column
1296
+ "tn3270eClientGroupRowStatus" : {
1297
+ "nodetype" : "column",
1298
+ "moduleName" : "TN3270E-MIB",
1299
+ "oid" : "1.3.6.1.2.1.34.8.1.4.1.6",
1300
+ "status" : "current",
1301
+ "syntax" : {
1302
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1303
+ },
1304
+ "access" : "readwrite",
1305
+ "description" :
1306
+ """This object allows entries to be created and deleted
1307
+ in the tn3270eClientGroupTable. Entries may also be
1308
+ created and deleted as a result of implementation-
1309
+ dependent operations.
1310
+
1311
+ An entry in this table is deleted by setting this object
1312
+ to destroy(6). When the number of entries in this table
1313
+ for a given client group becomes 0, this has the side-
1314
+ effect of removing any entries for the group in the
1315
+ tn3270eClientResMapTable.""",
1316
+ "reference" :
1317
+ """RFC 1903, 'Textual Conventions for version 2 of the
1318
+ Simple Network Management Protocol (SNMPv2).'""",
1319
+ }, # column
1320
+ "tn3270eResPoolTable" : {
1321
+ "nodetype" : "table",
1322
+ "moduleName" : "TN3270E-MIB",
1323
+ "oid" : "1.3.6.1.2.1.34.8.1.5",
1324
+ "status" : "current",
1325
+ "description" :
1326
+ """This table defines resource groupings; the term
1327
+ 'pool' is used as it is defined by RFC 2355.
1328
+
1329
+ No entry in this table shall exist without
1330
+ a corresponding (same tn3270eSrvrConfIndex) entry in
1331
+ the tn3270eSrvrConfTable existing.
1332
+
1333
+ An implementation SHOULD NOT retain SNMP-created
1334
+ entries in this table across re-IPLs (Initial Program
1335
+ Loads) of the corresponding TN3270E server.""",
1336
+ }, # table
1337
+ "tn3270eResPoolEntry" : {
1338
+ "nodetype" : "row",
1339
+ "moduleName" : "TN3270E-MIB",
1340
+ "oid" : "1.3.6.1.2.1.34.8.1.5.1",
1341
+ "create" : "true",
1342
+ "status" : "current",
1343
+ "linkage" : [
1344
+ "tn3270eSrvrConfIndex",
1345
+ "tn3270eResPoolName",
1346
+ "tn3270eResPoolElementName",
1347
+ ],
1348
+ "description" :
1349
+ """Definition of a single resource pool member. All entries
1350
+ with the same first two indexes, tn3270eSrvrConfIndex and
1351
+ tn3270eResPoolName, are considered to be in the same pool.""",
1352
+ }, # row
1353
+ "tn3270eResPoolName" : {
1354
+ "nodetype" : "column",
1355
+ "moduleName" : "TN3270E-MIB",
1356
+ "oid" : "1.3.6.1.2.1.34.8.1.5.1.1",
1357
+ "status" : "current",
1358
+ "syntax" : {
1359
+ "type" : {
1360
+ "basetype" : "OctetString",
1361
+ "parent module" : {
1362
+ "name" : "SYSAPPL-MIB",
1363
+ "type" : "Utf8String",
1364
+ },
1365
+ "ranges" : [
1366
+ {
1367
+ "min" : "1",
1368
+ "max" : "24"
1369
+ },
1370
+ ],
1371
+ "range" : {
1372
+ "min" : "1",
1373
+ "max" : "24"
1374
+ },
1375
+ },
1376
+ },
1377
+ "access" : "noaccess",
1378
+ "description" :
1379
+ """The name of a resource pool.""",
1380
+ }, # column
1381
+ "tn3270eResPoolElementName" : {
1382
+ "nodetype" : "column",
1383
+ "moduleName" : "TN3270E-MIB",
1384
+ "oid" : "1.3.6.1.2.1.34.8.1.5.1.2",
1385
+ "status" : "current",
1386
+ "syntax" : {
1387
+ "type" : { "module" :"TN3270E-MIB", "name" : "SnaResourceName"},
1388
+ },
1389
+ "access" : "noaccess",
1390
+ "description" :
1391
+ """The name of a member of a resource pool.""",
1392
+ }, # column
1393
+ "tn3270eResPoolElementType" : {
1394
+ "nodetype" : "column",
1395
+ "moduleName" : "TN3270E-MIB",
1396
+ "oid" : "1.3.6.1.2.1.34.8.1.5.1.3",
1397
+ "status" : "current",
1398
+ "syntax" : {
1399
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270ResourceType"},
1400
+ },
1401
+ "access" : "readwrite",
1402
+ "description" :
1403
+ """The type of the entity in a resource pool.""",
1404
+ }, # column
1405
+ "tn3270eResPoolRowStatus" : {
1406
+ "nodetype" : "column",
1407
+ "moduleName" : "TN3270E-MIB",
1408
+ "oid" : "1.3.6.1.2.1.34.8.1.5.1.4",
1409
+ "status" : "current",
1410
+ "syntax" : {
1411
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1412
+ },
1413
+ "access" : "readwrite",
1414
+ "description" :
1415
+ """This object allows entries to be created and deleted
1416
+ in the tn3270eResPoolTable. Entries may also be
1417
+ created and deleted as a result of implementation-
1418
+ dependent operations.
1419
+
1420
+ An entry in this table is deleted by setting this object
1421
+ to destroy(6). When all entries in this table associated
1422
+ with the same tn3270eResPoolElementName have been removed,
1423
+ then any associated (tn3270eResPoolElementName matching
1424
+ tn3270eClientResMapPoolName with same tn3270eSrvrConfIndex
1425
+ values) entries in the tn3270eClientResMapTable SHALL
1426
+ also be removed.""",
1427
+ "reference" :
1428
+ """RFC 1903, 'Textual Conventions for version 2 of the
1429
+ Simple Network Management Protocol (SNMPv2).'""",
1430
+ }, # column
1431
+ "tn3270eSnaMapTable" : {
1432
+ "nodetype" : "table",
1433
+ "moduleName" : "TN3270E-MIB",
1434
+ "oid" : "1.3.6.1.2.1.34.8.1.6",
1435
+ "status" : "current",
1436
+ "description" :
1437
+ """This table provide a mapping from the name by which
1438
+ a secondary LU is known in the SNA network to the
1439
+ name by which it is known locally at the TN3270e
1440
+ server. This latter name serves as an index into
1441
+ the tn3270eResPoolTable and the tn3270eResMapTable.
1442
+ No entry in this table shall exist without
1443
+ a corresponding (same tn3270eSrvrConfIndex) entry in
1444
+ the tn3270eSrvrConfTable existing.""",
1445
+ }, # table
1446
+ "tn3270eSnaMapEntry" : {
1447
+ "nodetype" : "row",
1448
+ "moduleName" : "TN3270E-MIB",
1449
+ "oid" : "1.3.6.1.2.1.34.8.1.6.1",
1450
+ "status" : "current",
1451
+ "linkage" : [
1452
+ "tn3270eSrvrConfIndex",
1453
+ "tn3270eSnaMapSscpSuppliedName",
1454
+ ],
1455
+ "description" :
1456
+ """Definition of a single mapping from an SSCP-supplied
1457
+ SLU name to a local SLU name.
1458
+
1459
+ Note: In certain pathological cases, it is possible
1460
+ that an SSCP will send on an ACTLU for a local LU an
1461
+ SLU name currently represented by an entry in this
1462
+ table that associates it with a different local LU.
1463
+ In these cases the association from the newer ACTLU
1464
+ SHOULD be the one represented in this table.""",
1465
+ }, # row
1466
+ "tn3270eSnaMapSscpSuppliedName" : {
1467
+ "nodetype" : "column",
1468
+ "moduleName" : "TN3270E-MIB",
1469
+ "oid" : "1.3.6.1.2.1.34.8.1.6.1.1",
1470
+ "status" : "current",
1471
+ "syntax" : {
1472
+ "type" : { "module" :"TN3270E-MIB", "name" : "SnaResourceName"},
1473
+ },
1474
+ "access" : "noaccess",
1475
+ "description" :
1476
+ """The name of the secondary LU (SLU) as it is known in
1477
+ the SNA network. This name is sent by the SSCP on
1478
+ the Activate Logical Unit (ACTLU) request.""",
1479
+ }, # column
1480
+ "tn3270eSnaMapLocalName" : {
1481
+ "nodetype" : "column",
1482
+ "moduleName" : "TN3270E-MIB",
1483
+ "oid" : "1.3.6.1.2.1.34.8.1.6.1.2",
1484
+ "status" : "current",
1485
+ "syntax" : {
1486
+ "type" : { "module" :"TN3270E-MIB", "name" : "SnaResourceName"},
1487
+ },
1488
+ "access" : "readonly",
1489
+ "description" :
1490
+ """The local name of the secondary LU (SLU).""",
1491
+ }, # column
1492
+ "tn3270eSnaMapPrimaryLuName" : {
1493
+ "nodetype" : "column",
1494
+ "moduleName" : "TN3270E-MIB",
1495
+ "oid" : "1.3.6.1.2.1.34.8.1.6.1.3",
1496
+ "status" : "current",
1497
+ "syntax" : {
1498
+ "type" : { "module" :"TN3270E-MIB", "name" : "SnaResourceName"},
1499
+ },
1500
+ "access" : "readonly",
1501
+ "description" :
1502
+ """When there is a currently active LU-LU session for
1503
+ this connection, this object returns the primary LU
1504
+ (PLU) name from the BIND. When there is no active
1505
+ LU-LU session, or when the PLU name is unavailable
1506
+ for some other reason, this object returns a
1507
+ zero-length octet string.""",
1508
+ }, # column
1509
+ "tn3270eClientResMapTable" : {
1510
+ "nodetype" : "table",
1511
+ "moduleName" : "TN3270E-MIB",
1512
+ "oid" : "1.3.6.1.2.1.34.8.1.7",
1513
+ "status" : "current",
1514
+ "description" :
1515
+ """This table defines resource-pool to client-group
1516
+ mappings. Since both the resource pool name and client
1517
+ group name are included in the index clause of this
1518
+ table, multiple resource pools can be assigned to the
1519
+ same client group. This enables use of multiple
1520
+ resource pools for use in client to resource mapping.
1521
+ Assigning multiple client groups to the same resource
1522
+ pool is also allowed, but is not the primary purpose
1523
+ for how the indexing is structured.
1524
+
1525
+ Assignment of a resource pool to client group can be
1526
+ restricted based on TCP port. An index value of 0 for
1527
+ tn3270eClientResMapClientPort disables restriction of
1528
+ resource assignment based on client target port
1529
+ selection.
1530
+
1531
+ No entry in this table shall exist without
1532
+ a corresponding (same tn3270eSrvrConfIndex) entry in
1533
+ the tn3270eSrvrConfTable existing.
1534
+
1535
+ An implementation SHOULD NOT retain SNMP-created
1536
+ entries in this table across re-IPLs (Initial Program
1537
+ Loads) of the corresponding TN3270E server.""",
1538
+ }, # table
1539
+ "tn3270eClientResMapEntry" : {
1540
+ "nodetype" : "row",
1541
+ "moduleName" : "TN3270E-MIB",
1542
+ "oid" : "1.3.6.1.2.1.34.8.1.7.1",
1543
+ "create" : "true",
1544
+ "status" : "current",
1545
+ "linkage" : [
1546
+ "tn3270eSrvrConfIndex",
1547
+ "tn3270eClientResMapPoolName",
1548
+ "tn3270eClientResMapClientGroupName",
1549
+ "tn3270eClientResMapClientPort",
1550
+ ],
1551
+ "description" :
1552
+ """Definition of a single resource pool to client group
1553
+ mapping.""",
1554
+ }, # row
1555
+ "tn3270eClientResMapPoolName" : {
1556
+ "nodetype" : "column",
1557
+ "moduleName" : "TN3270E-MIB",
1558
+ "oid" : "1.3.6.1.2.1.34.8.1.7.1.1",
1559
+ "status" : "current",
1560
+ "syntax" : {
1561
+ "type" : {
1562
+ "basetype" : "OctetString",
1563
+ "parent module" : {
1564
+ "name" : "SYSAPPL-MIB",
1565
+ "type" : "Utf8String",
1566
+ },
1567
+ "ranges" : [
1568
+ {
1569
+ "min" : "1",
1570
+ "max" : "24"
1571
+ },
1572
+ ],
1573
+ "range" : {
1574
+ "min" : "1",
1575
+ "max" : "24"
1576
+ },
1577
+ },
1578
+ },
1579
+ "access" : "noaccess",
1580
+ "description" :
1581
+ """The name of a resource pool.""",
1582
+ }, # column
1583
+ "tn3270eClientResMapClientGroupName" : {
1584
+ "nodetype" : "column",
1585
+ "moduleName" : "TN3270E-MIB",
1586
+ "oid" : "1.3.6.1.2.1.34.8.1.7.1.2",
1587
+ "status" : "current",
1588
+ "syntax" : {
1589
+ "type" : {
1590
+ "basetype" : "OctetString",
1591
+ "parent module" : {
1592
+ "name" : "SYSAPPL-MIB",
1593
+ "type" : "Utf8String",
1594
+ },
1595
+ "ranges" : [
1596
+ {
1597
+ "min" : "1",
1598
+ "max" : "24"
1599
+ },
1600
+ ],
1601
+ "range" : {
1602
+ "min" : "1",
1603
+ "max" : "24"
1604
+ },
1605
+ },
1606
+ },
1607
+ "access" : "noaccess",
1608
+ "description" :
1609
+ """The name of the client group that is mapped to a
1610
+ resource pool.""",
1611
+ }, # column
1612
+ "tn3270eClientResMapClientPort" : {
1613
+ "nodetype" : "column",
1614
+ "moduleName" : "TN3270E-MIB",
1615
+ "oid" : "1.3.6.1.2.1.34.8.1.7.1.3",
1616
+ "status" : "current",
1617
+ "syntax" : {
1618
+ "type" : {
1619
+ "basetype" : "Unsigned32",
1620
+ "ranges" : [
1621
+ {
1622
+ "min" : "0",
1623
+ "max" : "65535"
1624
+ },
1625
+ ],
1626
+ "range" : {
1627
+ "min" : "0",
1628
+ "max" : "65535"
1629
+ },
1630
+ },
1631
+ },
1632
+ "access" : "noaccess",
1633
+ "description" :
1634
+ """A port number restricting the scope of a mapping
1635
+ from a resource pool to a client group. The
1636
+ value 0 for this object indicates that the scope
1637
+ of the mapping is not restricted.""",
1638
+ }, # column
1639
+ "tn3270eClientResMapRowStatus" : {
1640
+ "nodetype" : "column",
1641
+ "moduleName" : "TN3270E-MIB",
1642
+ "oid" : "1.3.6.1.2.1.34.8.1.7.1.4",
1643
+ "status" : "current",
1644
+ "syntax" : {
1645
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1646
+ },
1647
+ "access" : "readwrite",
1648
+ "description" :
1649
+ """This object allows entries to be created and deleted
1650
+ in the tn3270eClientResMapTable. Entries may also be
1651
+ created and deleted as a result of implementation-
1652
+ dependent operations.
1653
+
1654
+ An entry in this table is deleted by setting this object
1655
+ to destroy(6). Removing an entry from this table doesn't
1656
+ affect any other table entry defined in this MIB.""",
1657
+ "reference" :
1658
+ """RFC 1903, 'Textual Conventions for version 2 of the
1659
+ Simple Network Management Protocol (SNMPv2).'""",
1660
+ }, # column
1661
+ "tn3270eResMapTable" : {
1662
+ "nodetype" : "table",
1663
+ "moduleName" : "TN3270E-MIB",
1664
+ "oid" : "1.3.6.1.2.1.34.8.1.8",
1665
+ "status" : "current",
1666
+ "description" :
1667
+ """This table defines the actual mapping of a resource
1668
+ to a client address.
1669
+
1670
+ No entry in this table shall exist without
1671
+ a corresponding (same tn3270eSrvrConfIndex) entry in
1672
+ the tn3270eSrvrConfTable existing.""",
1673
+ }, # table
1674
+ "tn3270eResMapEntry" : {
1675
+ "nodetype" : "row",
1676
+ "moduleName" : "TN3270E-MIB",
1677
+ "oid" : "1.3.6.1.2.1.34.8.1.8.1",
1678
+ "status" : "current",
1679
+ "linkage" : [
1680
+ "tn3270eSrvrConfIndex",
1681
+ "tn3270eResMapElementName",
1682
+ ],
1683
+ "description" :
1684
+ """Definition of the mapping of a Resource Element to
1685
+ a client address.""",
1686
+ }, # row
1687
+ "tn3270eResMapElementName" : {
1688
+ "nodetype" : "column",
1689
+ "moduleName" : "TN3270E-MIB",
1690
+ "oid" : "1.3.6.1.2.1.34.8.1.8.1.1",
1691
+ "status" : "current",
1692
+ "syntax" : {
1693
+ "type" : { "module" :"TN3270E-MIB", "name" : "SnaResourceName"},
1694
+ },
1695
+ "access" : "noaccess",
1696
+ "description" :
1697
+ """The name of a resource element. This is the name by
1698
+ which the server implementing this table knows the
1699
+ resource. It may be different from the name by which
1700
+ the resource is known in the SNA network. This latter
1701
+ name is returned in the tn3270eResMapSscpSuppliedName
1702
+ object.""",
1703
+ }, # column
1704
+ "tn3270eResMapAddrType" : {
1705
+ "nodetype" : "column",
1706
+ "moduleName" : "TN3270E-MIB",
1707
+ "oid" : "1.3.6.1.2.1.34.8.1.8.1.2",
1708
+ "status" : "current",
1709
+ "syntax" : {
1710
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddrType"},
1711
+ },
1712
+ "access" : "readonly",
1713
+ "description" :
1714
+ """Indicates the type of the client address represented
1715
+ in tn3270eResMapAddress.""",
1716
+ }, # column
1717
+ "tn3270eResMapAddress" : {
1718
+ "nodetype" : "column",
1719
+ "moduleName" : "TN3270E-MIB",
1720
+ "oid" : "1.3.6.1.2.1.34.8.1.8.1.3",
1721
+ "status" : "current",
1722
+ "syntax" : {
1723
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddress"},
1724
+ },
1725
+ "access" : "readonly",
1726
+ "description" :
1727
+ """A client address.""",
1728
+ }, # column
1729
+ "tn3270eResMapPort" : {
1730
+ "nodetype" : "column",
1731
+ "moduleName" : "TN3270E-MIB",
1732
+ "oid" : "1.3.6.1.2.1.34.8.1.8.1.4",
1733
+ "status" : "current",
1734
+ "syntax" : {
1735
+ "type" : {
1736
+ "basetype" : "Unsigned32",
1737
+ "ranges" : [
1738
+ {
1739
+ "min" : "0",
1740
+ "max" : "65535"
1741
+ },
1742
+ ],
1743
+ "range" : {
1744
+ "min" : "0",
1745
+ "max" : "65535"
1746
+ },
1747
+ },
1748
+ },
1749
+ "access" : "readonly",
1750
+ "description" :
1751
+ """A client port.""",
1752
+ }, # column
1753
+ "tn3270eResMapElementType" : {
1754
+ "nodetype" : "column",
1755
+ "moduleName" : "TN3270E-MIB",
1756
+ "oid" : "1.3.6.1.2.1.34.8.1.8.1.5",
1757
+ "status" : "current",
1758
+ "syntax" : {
1759
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270ResourceType"},
1760
+ },
1761
+ "access" : "readonly",
1762
+ "description" :
1763
+ """The type of the associated resource element.""",
1764
+ }, # column
1765
+ "tn3270eResMapSscpSuppliedName" : {
1766
+ "nodetype" : "column",
1767
+ "moduleName" : "TN3270E-MIB",
1768
+ "oid" : "1.3.6.1.2.1.34.8.1.8.1.6",
1769
+ "status" : "current",
1770
+ "syntax" : {
1771
+ "type" : { "module" :"TN3270E-MIB", "name" : "SnaResourceName"},
1772
+ },
1773
+ "access" : "readonly",
1774
+ "description" :
1775
+ """The name of the secondary LU (SLU) as it is known
1776
+ in a SNA network. This name is sent by the SSCP on
1777
+ the Activate Logical Unit (ACTLU) request. If this
1778
+ name is not known, this object returns a zero-length
1779
+ octet string.""",
1780
+ }, # column
1781
+ "tn3270eTcpConnTable" : {
1782
+ "nodetype" : "table",
1783
+ "moduleName" : "TN3270E-MIB",
1784
+ "oid" : "1.3.6.1.2.1.34.8.1.9",
1785
+ "status" : "current",
1786
+ "description" :
1787
+ """This table has an entry for each TN3270(E) client
1788
+ connection that is currently active at a TN3270E server.
1789
+ An implementation MAY retain entries for connections
1790
+ that have been terminated, but which entries are
1791
+ retained, how many entries are retained, and how long
1792
+ they are retained is entirely implementation-dependent.
1793
+
1794
+ The indexing for this table is designed to support the
1795
+ use of an SNMP GET-NEXT operation using only the remote
1796
+ address type, remote address, and remote port, as a way
1797
+ for a Management Station to retrieve the table entries
1798
+ related to a particular TN3270(E) client.""",
1799
+ }, # table
1800
+ "tn3270eTcpConnEntry" : {
1801
+ "nodetype" : "row",
1802
+ "moduleName" : "TN3270E-MIB",
1803
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1",
1804
+ "status" : "current",
1805
+ "linkage" : [
1806
+ "tn3270eTcpConnRemAddrType",
1807
+ "tn3270eTcpConnRemAddress",
1808
+ "tn3270eTcpConnRemPort",
1809
+ "tn3270eTcpConnLocalAddrType",
1810
+ "tn3270eTcpConnLocalAddress",
1811
+ "tn3270eTcpConnLocalPort",
1812
+ ],
1813
+ "description" :
1814
+ """Provides information about a single TN3270/TN3270E
1815
+ session. Note: a tn3270eSrvrConfIndex is not needed
1816
+ in this table, since the combination of remote and
1817
+ local addresses and ports is sufficient to
1818
+ guarantee uniqueness across the TN3270E servers
1819
+ serviced by an SNMP agent. Because of this indexing
1820
+ structure, however, this table does not support
1821
+ view-based access control policies that provide
1822
+ access to table rows on a per-server basis.""",
1823
+ }, # row
1824
+ "tn3270eTcpConnRemAddrType" : {
1825
+ "nodetype" : "column",
1826
+ "moduleName" : "TN3270E-MIB",
1827
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.1",
1828
+ "status" : "current",
1829
+ "syntax" : {
1830
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddrType"},
1831
+ },
1832
+ "access" : "noaccess",
1833
+ "description" :
1834
+ """Indicates the type of the value of the
1835
+ tn3270eTcpConnRemAddress object. For example,
1836
+ ipv4(1) or ipv6(2).""",
1837
+ }, # column
1838
+ "tn3270eTcpConnRemAddress" : {
1839
+ "nodetype" : "column",
1840
+ "moduleName" : "TN3270E-MIB",
1841
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.2",
1842
+ "status" : "current",
1843
+ "syntax" : {
1844
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddress"},
1845
+ },
1846
+ "access" : "noaccess",
1847
+ "description" :
1848
+ """The remote address associated with a TN3270E client.
1849
+ tn3270eTcpConnRemAddrType indicates the address type
1850
+ (IPv4 or IPv6, for example).
1851
+
1852
+ If a TN3270(E) client is connected to its
1853
+ server via a proxy client the address represented by
1854
+ the value of this object shall be the remote client's
1855
+ address, not the proxy client's address.""",
1856
+ }, # column
1857
+ "tn3270eTcpConnRemPort" : {
1858
+ "nodetype" : "column",
1859
+ "moduleName" : "TN3270E-MIB",
1860
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.3",
1861
+ "status" : "current",
1862
+ "syntax" : {
1863
+ "type" : {
1864
+ "basetype" : "Unsigned32",
1865
+ "ranges" : [
1866
+ {
1867
+ "min" : "0",
1868
+ "max" : "65535"
1869
+ },
1870
+ ],
1871
+ "range" : {
1872
+ "min" : "0",
1873
+ "max" : "65535"
1874
+ },
1875
+ },
1876
+ },
1877
+ "access" : "noaccess",
1878
+ "description" :
1879
+ """The remote port associated with a TN3270E client. The value 0
1880
+ is used if the tn3270eTcpConnRemAddrType identifies an address
1881
+ type that does not support ports.
1882
+
1883
+ If a TN3270(E) client is connected to its server via a proxy
1884
+ client, the port represented by the value of this object shall
1885
+ be the remote client's port, not the proxy client's port.""",
1886
+ }, # column
1887
+ "tn3270eTcpConnLocalAddrType" : {
1888
+ "nodetype" : "column",
1889
+ "moduleName" : "TN3270E-MIB",
1890
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.4",
1891
+ "status" : "current",
1892
+ "syntax" : {
1893
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddrType"},
1894
+ },
1895
+ "access" : "noaccess",
1896
+ "description" :
1897
+ """Indicates the type of the value of the
1898
+ tn3270eTcpConnLocalAddress object. For example,
1899
+ ipv4(1) or ipv6(2).""",
1900
+ }, # column
1901
+ "tn3270eTcpConnLocalAddress" : {
1902
+ "nodetype" : "column",
1903
+ "moduleName" : "TN3270E-MIB",
1904
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.5",
1905
+ "status" : "current",
1906
+ "syntax" : {
1907
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddress"},
1908
+ },
1909
+ "access" : "noaccess",
1910
+ "description" :
1911
+ """The local address associated with a TN3270E client.
1912
+ tn3270eTcpConnRemAddrType indicates the address type
1913
+ (IPv4 or IPv6, for example).""",
1914
+ }, # column
1915
+ "tn3270eTcpConnLocalPort" : {
1916
+ "nodetype" : "column",
1917
+ "moduleName" : "TN3270E-MIB",
1918
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.6",
1919
+ "status" : "current",
1920
+ "syntax" : {
1921
+ "type" : {
1922
+ "basetype" : "Unsigned32",
1923
+ "ranges" : [
1924
+ {
1925
+ "min" : "1",
1926
+ "max" : "65535"
1927
+ },
1928
+ ],
1929
+ "range" : {
1930
+ "min" : "1",
1931
+ "max" : "65535"
1932
+ },
1933
+ },
1934
+ },
1935
+ "access" : "noaccess",
1936
+ "description" :
1937
+ """The remote port associated with a TN3270E client.""",
1938
+ }, # column
1939
+ "tn3270eTcpConnLastActivity" : {
1940
+ "nodetype" : "column",
1941
+ "moduleName" : "TN3270E-MIB",
1942
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.7",
1943
+ "status" : "current",
1944
+ "syntax" : {
1945
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1946
+ },
1947
+ "access" : "readonly",
1948
+ "default" : "0",
1949
+ "description" :
1950
+ """The number of 100ths of seconds since any data was
1951
+ transferred for the associated TCP Connection.""",
1952
+ }, # column
1953
+ "tn3270eTcpConnBytesIn" : {
1954
+ "nodetype" : "column",
1955
+ "moduleName" : "TN3270E-MIB",
1956
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.8",
1957
+ "status" : "current",
1958
+ "syntax" : {
1959
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1960
+ },
1961
+ "access" : "readonly",
1962
+ "units" : "octets",
1963
+ "description" :
1964
+ """The number of bytes received by the server from TCP
1965
+ for this connection.
1966
+
1967
+ A Management Station can detect discontinuities in
1968
+ this counter by monitoring the
1969
+ tn3270eTcpConnActivationTime object.""",
1970
+ }, # column
1971
+ "tn3270eTcpConnBytesOut" : {
1972
+ "nodetype" : "column",
1973
+ "moduleName" : "TN3270E-MIB",
1974
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.9",
1975
+ "status" : "current",
1976
+ "syntax" : {
1977
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1978
+ },
1979
+ "access" : "readonly",
1980
+ "units" : "octets",
1981
+ "description" :
1982
+ """The number of bytes sent to TCP for this connection.
1983
+
1984
+ A Management Station can detect discontinuities in
1985
+ this counter by monitoring the
1986
+ tn3270eTcpConnActivationTime object.""",
1987
+ }, # column
1988
+ "tn3270eTcpConnResourceElement" : {
1989
+ "nodetype" : "column",
1990
+ "moduleName" : "TN3270E-MIB",
1991
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.10",
1992
+ "status" : "current",
1993
+ "syntax" : {
1994
+ "type" : { "module" :"TN3270E-MIB", "name" : "SnaResourceName"},
1995
+ },
1996
+ "access" : "readonly",
1997
+ "description" :
1998
+ """LU/Print secondary name for connecting an client
1999
+ into an SNA network.""",
2000
+ }, # column
2001
+ "tn3270eTcpConnResourceType" : {
2002
+ "nodetype" : "column",
2003
+ "moduleName" : "TN3270E-MIB",
2004
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.11",
2005
+ "status" : "current",
2006
+ "syntax" : {
2007
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270ResourceType"},
2008
+ },
2009
+ "access" : "readonly",
2010
+ "description" :
2011
+ """Indicates the type of resource identified by
2012
+ tn3270eTcpConnResourceElement.""",
2013
+ }, # column
2014
+ "tn3270eTcpConnDeviceType" : {
2015
+ "nodetype" : "column",
2016
+ "moduleName" : "TN3270E-MIB",
2017
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.12",
2018
+ "status" : "current",
2019
+ "syntax" : {
2020
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270DeviceType"},
2021
+ },
2022
+ "access" : "readonly",
2023
+ "description" :
2024
+ """Indicates the device type if negotiated with the
2025
+ client. A value of unknown(100) should be used as
2026
+ the value of this object when a device type is not
2027
+ negotiated. Refer to RFC 2355 for how device types
2028
+ can be negotiated.""",
2029
+ }, # column
2030
+ "tn3270eTcpConnFunctions" : {
2031
+ "nodetype" : "column",
2032
+ "moduleName" : "TN3270E-MIB",
2033
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.13",
2034
+ "status" : "current",
2035
+ "syntax" : {
2036
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270Functions"},
2037
+ },
2038
+ "access" : "readonly",
2039
+ "description" :
2040
+ """This object indicates which of the TN3270 and TN3270E
2041
+ functions were negotiated by the server and the client
2042
+ for this TCP connection.
2043
+
2044
+ Refer to tn3270eSrvrFunctionsSupported for the list of
2045
+ these functions supported by the server.""",
2046
+ }, # column
2047
+ "tn3270eTcpConnId" : {
2048
+ "nodetype" : "column",
2049
+ "moduleName" : "TN3270E-MIB",
2050
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.14",
2051
+ "status" : "current",
2052
+ "syntax" : {
2053
+ "type" : { "module" :"", "name" : "Unsigned32"},
2054
+ },
2055
+ "access" : "readonly",
2056
+ "description" :
2057
+ """The connection identifier associated with a TN3270 or
2058
+ a TN3270E session's TCP connection. TCP implementations
2059
+ often assign a unique (with respect to itself) unsigned
2060
+ integer as an identifier for a TCP connection.
2061
+
2062
+ The value 0 indicates that a connection does not have
2063
+ a valid connection identifier.""",
2064
+ }, # column
2065
+ "tn3270eTcpConnClientIdFormat" : {
2066
+ "nodetype" : "column",
2067
+ "moduleName" : "TN3270E-MIB",
2068
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.15",
2069
+ "status" : "current",
2070
+ "syntax" : {
2071
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eClientType"},
2072
+ },
2073
+ "access" : "readonly",
2074
+ "description" :
2075
+ """The format of a corresponding tn3270eTcpConnClientId
2076
+ object as defined by the IANSTn3270eClientType textual
2077
+ convention imported from the IANATn3270eTC-MIB.""",
2078
+ }, # column
2079
+ "tn3270eTcpConnClientId" : {
2080
+ "nodetype" : "column",
2081
+ "moduleName" : "TN3270E-MIB",
2082
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.16",
2083
+ "status" : "current",
2084
+ "syntax" : {
2085
+ "type" : {
2086
+ "basetype" : "OctetString",
2087
+ "ranges" : [
2088
+ {
2089
+ "min" : "0",
2090
+ "max" : "512"
2091
+ },
2092
+ ],
2093
+ "range" : {
2094
+ "min" : "0",
2095
+ "max" : "512"
2096
+ },
2097
+ },
2098
+ },
2099
+ "access" : "readonly",
2100
+ "description" :
2101
+ """Additional client identification information. The
2102
+ type of this information is indicated by the value of
2103
+ the corresponding tn3270eTcpConnClientIdFormat object.
2104
+ All values are returned in network-byte order.
2105
+
2106
+ The purpose of this object is to provide an alternate
2107
+ means of identifying a client, other than though the
2108
+ remote address returned in tn3270eTcpConnRemAddress.""",
2109
+ }, # column
2110
+ "tn3270eTcpConnTraceData" : {
2111
+ "nodetype" : "column",
2112
+ "moduleName" : "TN3270E-MIB",
2113
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.17",
2114
+ "status" : "current",
2115
+ "syntax" : {
2116
+ "type" : { "module" :"TN3270E-MIB", "name" : "Tn3270eTraceData"},
2117
+ },
2118
+ "access" : "readonly",
2119
+ "description" :
2120
+ """Trace data for this session.""",
2121
+ }, # column
2122
+ "tn3270eTcpConnLogInfo" : {
2123
+ "nodetype" : "column",
2124
+ "moduleName" : "TN3270E-MIB",
2125
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.18",
2126
+ "status" : "current",
2127
+ "syntax" : {
2128
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eLogData"},
2129
+ },
2130
+ "access" : "readonly",
2131
+ "description" :
2132
+ """Log information, encoded as specified in the
2133
+ IANATn3270eLogData textual convention from the
2134
+ IANAtn3270eTC-MIB.""",
2135
+ }, # column
2136
+ "tn3270eTcpConnLuLuBindImage" : {
2137
+ "nodetype" : "column",
2138
+ "moduleName" : "TN3270E-MIB",
2139
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.19",
2140
+ "status" : "current",
2141
+ "syntax" : {
2142
+ "type" : {
2143
+ "basetype" : "OctetString",
2144
+ "ranges" : [
2145
+ {
2146
+ "min" : "0",
2147
+ "max" : "256"
2148
+ },
2149
+ ],
2150
+ "range" : {
2151
+ "min" : "0",
2152
+ "max" : "256"
2153
+ },
2154
+ },
2155
+ },
2156
+ "access" : "readonly",
2157
+ "description" :
2158
+ """When there is a currently active LU-LU session for
2159
+ this connection, this object returns the BIND Image
2160
+ (defined to be bytes 1-p of the complete BIND Request
2161
+ Unit -- see 'SNA Formats' for more information)
2162
+ that was received from the PLU during session
2163
+ activation. When there is no active LU-LU session,
2164
+ or when a BIND image is unavailable for some other
2165
+ reason, this object returns a zero-length octet
2166
+ string.""",
2167
+ "reference" :
2168
+ """'Systems Network Architecture Formats', IBM
2169
+ Publication GA27-3136.""",
2170
+ }, # column
2171
+ "tn3270eTcpConnSnaState" : {
2172
+ "nodetype" : "column",
2173
+ "moduleName" : "TN3270E-MIB",
2174
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.20",
2175
+ "status" : "current",
2176
+ "syntax" : {
2177
+ "type" : {
2178
+ "basetype" : "Enumeration",
2179
+ "unknown" : {
2180
+ "nodetype" : "namednumber",
2181
+ "number" : "1"
2182
+ },
2183
+ "noSluSession" : {
2184
+ "nodetype" : "namednumber",
2185
+ "number" : "2"
2186
+ },
2187
+ "sscpLuSession" : {
2188
+ "nodetype" : "namednumber",
2189
+ "number" : "3"
2190
+ },
2191
+ "luLuSession" : {
2192
+ "nodetype" : "namednumber",
2193
+ "number" : "4"
2194
+ },
2195
+ "sscpLuSessionAndLuLuSession" : {
2196
+ "nodetype" : "namednumber",
2197
+ "number" : "5"
2198
+ },
2199
+ },
2200
+ },
2201
+ "access" : "readonly",
2202
+ "description" :
2203
+ """The current state of the SNA side of the end-to-end
2204
+ TN3270 connection. The following states are defined:
2205
+
2206
+ unknown(1) - The true state is not known.
2207
+ noSluSession(2) - The SLU has neither an SSCP-LU
2208
+ nor an LU-LU session active.
2209
+ sscpLuSession(3) - The SSCP-LU session for the SLU
2210
+ is active, but the SLU is not
2211
+ currently in session with a PLU.
2212
+ luLuSession(4) - The SLU is currently in session
2213
+ with a PLU, but the SSCP-LU
2214
+ session for the LU is not active.
2215
+ sscpLuSessionAndLuLuSession(5) - The SLU currently has
2216
+ an active session with a PLU,
2217
+ and the SSCP-LU session for the
2218
+ SLU is active.""",
2219
+ }, # column
2220
+ "tn3270eTcpConnStateLastDiscReason" : {
2221
+ "nodetype" : "column",
2222
+ "moduleName" : "TN3270E-MIB",
2223
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.21",
2224
+ "status" : "current",
2225
+ "syntax" : {
2226
+ "type" : {
2227
+ "basetype" : "Enumeration",
2228
+ "unknown" : {
2229
+ "nodetype" : "namednumber",
2230
+ "number" : "1"
2231
+ },
2232
+ "hostSendsUnbind" : {
2233
+ "nodetype" : "namednumber",
2234
+ "number" : "2"
2235
+ },
2236
+ "hostDontAcceptConnection" : {
2237
+ "nodetype" : "namednumber",
2238
+ "number" : "3"
2239
+ },
2240
+ "outOfResource" : {
2241
+ "nodetype" : "namednumber",
2242
+ "number" : "4"
2243
+ },
2244
+ "clientProtocolError" : {
2245
+ "nodetype" : "namednumber",
2246
+ "number" : "5"
2247
+ },
2248
+ "invalidDeviceName" : {
2249
+ "nodetype" : "namednumber",
2250
+ "number" : "6"
2251
+ },
2252
+ "deviceInUse" : {
2253
+ "nodetype" : "namednumber",
2254
+ "number" : "7"
2255
+ },
2256
+ "inactivityTimeout" : {
2257
+ "nodetype" : "namednumber",
2258
+ "number" : "8"
2259
+ },
2260
+ "hostNotResponding" : {
2261
+ "nodetype" : "namednumber",
2262
+ "number" : "9"
2263
+ },
2264
+ "clientNotResponding" : {
2265
+ "nodetype" : "namednumber",
2266
+ "number" : "10"
2267
+ },
2268
+ "serverClose" : {
2269
+ "nodetype" : "namednumber",
2270
+ "number" : "11"
2271
+ },
2272
+ "sysreqLogoff" : {
2273
+ "nodetype" : "namednumber",
2274
+ "number" : "12"
2275
+ },
2276
+ "serverSpecificHexCode" : {
2277
+ "nodetype" : "namednumber",
2278
+ "number" : "13"
2279
+ },
2280
+ },
2281
+ },
2282
+ "access" : "readonly",
2283
+ "description" :
2284
+ """The last disconnect reason. A session that has not
2285
+ experienced a disconnect shall use the value unknown(1)
2286
+ for this object. Depending on when an implementation
2287
+ removes entries from this table, certain states may
2288
+ never be returned.""",
2289
+ }, # column
2290
+ "tn3270eTcpConnSrvrConfIndex" : {
2291
+ "nodetype" : "column",
2292
+ "moduleName" : "TN3270E-MIB",
2293
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.22",
2294
+ "status" : "current",
2295
+ "syntax" : {
2296
+ "type" : {
2297
+ "basetype" : "Unsigned32",
2298
+ "ranges" : [
2299
+ {
2300
+ "min" : "1",
2301
+ "max" : "4294967295"
2302
+ },
2303
+ ],
2304
+ "range" : {
2305
+ "min" : "1",
2306
+ "max" : "4294967295"
2307
+ },
2308
+ },
2309
+ },
2310
+ "access" : "readonly",
2311
+ "description" :
2312
+ """tn3270eSrvrConfIndex of the tn3270eSrvrConfEntry
2313
+ belonging to the TN3270E server to which this entry
2314
+ belongs.""",
2315
+ }, # column
2316
+ "tn3270eTcpConnActivationTime" : {
2317
+ "nodetype" : "column",
2318
+ "moduleName" : "TN3270E-MIB",
2319
+ "oid" : "1.3.6.1.2.1.34.8.1.9.1.23",
2320
+ "status" : "current",
2321
+ "syntax" : {
2322
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2323
+ },
2324
+ "access" : "readonly",
2325
+ "description" :
2326
+ """The value of the sysUpTime object the last time
2327
+ this TCP connection became active.""",
2328
+ }, # column
2329
+ "tn3270eConfSpinLock" : {
2330
+ "nodetype" : "scalar",
2331
+ "moduleName" : "TN3270E-MIB",
2332
+ "oid" : "1.3.6.1.2.1.34.8.1.10",
2333
+ "status" : "current",
2334
+ "syntax" : {
2335
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
2336
+ },
2337
+ "access" : "readwrite",
2338
+ "description" :
2339
+ """An advisory lock used to allow cooperating
2340
+ TN3270E-MIB applications to coordinate their use
2341
+ of the tn3270eSrvrConfTable, the tn3270eSrvrPortTable,
2342
+ the tn3270eClientGroupTable, the tn3270eResPoolTable,
2343
+ and the tn3270eClientResMapTable.
2344
+
2345
+ When creating a new entry or altering an existing entry
2346
+ in the any of the tables mentioned above, an application
2347
+ should make use of tn3270eRtSpinLock to serialize
2348
+ application changes or additions.
2349
+
2350
+ Since this is an advisory lock, the use of this lock is
2351
+ not enforced.""",
2352
+ }, # scalar
2353
+ "tn3270eConformance" : {
2354
+ "nodetype" : "node",
2355
+ "moduleName" : "TN3270E-MIB",
2356
+ "oid" : "1.3.6.1.2.1.34.8.3",
2357
+ }, # node
2358
+ "tn3270eGroups" : {
2359
+ "nodetype" : "node",
2360
+ "moduleName" : "TN3270E-MIB",
2361
+ "oid" : "1.3.6.1.2.1.34.8.3.1",
2362
+ }, # node
2363
+ "tn3270eCompliances" : {
2364
+ "nodetype" : "node",
2365
+ "moduleName" : "TN3270E-MIB",
2366
+ "oid" : "1.3.6.1.2.1.34.8.3.2",
2367
+ }, # node
2368
+ }, # nodes
2369
+
2370
+ "groups" : {
2371
+ "tn3270eBasicGroup" : {
2372
+ "nodetype" : "group",
2373
+ "moduleName" : "TN3270E-MIB",
2374
+ "oid" : "1.3.6.1.2.1.34.8.3.1.1",
2375
+ "status" : "current",
2376
+ "members" : {
2377
+ "tn3270eSrvrConfInactivityTimeout" : {
2378
+ "nodetype" : "member",
2379
+ "module" : "TN3270E-MIB"
2380
+ },
2381
+ "tn3270eSrvrConfConnectivityChk" : {
2382
+ "nodetype" : "member",
2383
+ "module" : "TN3270E-MIB"
2384
+ },
2385
+ "tn3270eSrvrConfTmNopInactTime" : {
2386
+ "nodetype" : "member",
2387
+ "module" : "TN3270E-MIB"
2388
+ },
2389
+ "tn3270eSrvrConfTmNopInterval" : {
2390
+ "nodetype" : "member",
2391
+ "module" : "TN3270E-MIB"
2392
+ },
2393
+ "tn3270eSrvrFunctionsSupported" : {
2394
+ "nodetype" : "member",
2395
+ "module" : "TN3270E-MIB"
2396
+ },
2397
+ "tn3270eSrvrConfAdminStatus" : {
2398
+ "nodetype" : "member",
2399
+ "module" : "TN3270E-MIB"
2400
+ },
2401
+ "tn3270eSrvrConfOperStatus" : {
2402
+ "nodetype" : "member",
2403
+ "module" : "TN3270E-MIB"
2404
+ },
2405
+ "tn3270eSrvrConfSessionTermState" : {
2406
+ "nodetype" : "member",
2407
+ "module" : "TN3270E-MIB"
2408
+ },
2409
+ "tn3270eSrvrConfSrvrType" : {
2410
+ "nodetype" : "member",
2411
+ "module" : "TN3270E-MIB"
2412
+ },
2413
+ "tn3270eSrvrConfContact" : {
2414
+ "nodetype" : "member",
2415
+ "module" : "TN3270E-MIB"
2416
+ },
2417
+ "tn3270eSrvrConfRowStatus" : {
2418
+ "nodetype" : "member",
2419
+ "module" : "TN3270E-MIB"
2420
+ },
2421
+ "tn3270eSrvrConfLastActTime" : {
2422
+ "nodetype" : "member",
2423
+ "module" : "TN3270E-MIB"
2424
+ },
2425
+ "tn3270eSrvrConfTmTimeout" : {
2426
+ "nodetype" : "member",
2427
+ "module" : "TN3270E-MIB"
2428
+ },
2429
+ "tn3270eSrvrPortRowStatus" : {
2430
+ "nodetype" : "member",
2431
+ "module" : "TN3270E-MIB"
2432
+ },
2433
+ "tn3270eSrvrStatsUpTime" : {
2434
+ "nodetype" : "member",
2435
+ "module" : "TN3270E-MIB"
2436
+ },
2437
+ "tn3270eSrvrStatsMaxTerms" : {
2438
+ "nodetype" : "member",
2439
+ "module" : "TN3270E-MIB"
2440
+ },
2441
+ "tn3270eSrvrStatsInUseTerms" : {
2442
+ "nodetype" : "member",
2443
+ "module" : "TN3270E-MIB"
2444
+ },
2445
+ "tn3270eSrvrStatsSpareTerms" : {
2446
+ "nodetype" : "member",
2447
+ "module" : "TN3270E-MIB"
2448
+ },
2449
+ "tn3270eSrvrStatsMaxPtrs" : {
2450
+ "nodetype" : "member",
2451
+ "module" : "TN3270E-MIB"
2452
+ },
2453
+ "tn3270eSrvrStatsInUsePtrs" : {
2454
+ "nodetype" : "member",
2455
+ "module" : "TN3270E-MIB"
2456
+ },
2457
+ "tn3270eSrvrStatsSparePtrs" : {
2458
+ "nodetype" : "member",
2459
+ "module" : "TN3270E-MIB"
2460
+ },
2461
+ "tn3270eSrvrStatsInConnects" : {
2462
+ "nodetype" : "member",
2463
+ "module" : "TN3270E-MIB"
2464
+ },
2465
+ "tn3270eSrvrStatsConnResrceRejs" : {
2466
+ "nodetype" : "member",
2467
+ "module" : "TN3270E-MIB"
2468
+ },
2469
+ "tn3270eSrvrStatsDisconnects" : {
2470
+ "nodetype" : "member",
2471
+ "module" : "TN3270E-MIB"
2472
+ },
2473
+ "tn3270eSrvrStatsInOctets" : {
2474
+ "nodetype" : "member",
2475
+ "module" : "TN3270E-MIB"
2476
+ },
2477
+ "tn3270eSrvrStatsOutOctets" : {
2478
+ "nodetype" : "member",
2479
+ "module" : "TN3270E-MIB"
2480
+ },
2481
+ "tn3270eSrvrStatsConnErrorRejs" : {
2482
+ "nodetype" : "member",
2483
+ "module" : "TN3270E-MIB"
2484
+ },
2485
+ "tn3270eClientGroupSubnetMask" : {
2486
+ "nodetype" : "member",
2487
+ "module" : "TN3270E-MIB"
2488
+ },
2489
+ "tn3270eClientGroupPfxLength" : {
2490
+ "nodetype" : "member",
2491
+ "module" : "TN3270E-MIB"
2492
+ },
2493
+ "tn3270eClientGroupRowStatus" : {
2494
+ "nodetype" : "member",
2495
+ "module" : "TN3270E-MIB"
2496
+ },
2497
+ "tn3270eSnaMapLocalName" : {
2498
+ "nodetype" : "member",
2499
+ "module" : "TN3270E-MIB"
2500
+ },
2501
+ "tn3270eSnaMapPrimaryLuName" : {
2502
+ "nodetype" : "member",
2503
+ "module" : "TN3270E-MIB"
2504
+ },
2505
+ "tn3270eConfSpinLock" : {
2506
+ "nodetype" : "member",
2507
+ "module" : "TN3270E-MIB"
2508
+ },
2509
+ }, # members
2510
+ "description" :
2511
+ """This group is mandatory for all hosts supporting the
2512
+ TN3270E-MIB.""",
2513
+ }, # group
2514
+ "tn3270eSessionGroup" : {
2515
+ "nodetype" : "group",
2516
+ "moduleName" : "TN3270E-MIB",
2517
+ "oid" : "1.3.6.1.2.1.34.8.3.1.2",
2518
+ "status" : "current",
2519
+ "members" : {
2520
+ "tn3270eResMapAddrType" : {
2521
+ "nodetype" : "member",
2522
+ "module" : "TN3270E-MIB"
2523
+ },
2524
+ "tn3270eResMapAddress" : {
2525
+ "nodetype" : "member",
2526
+ "module" : "TN3270E-MIB"
2527
+ },
2528
+ "tn3270eResMapPort" : {
2529
+ "nodetype" : "member",
2530
+ "module" : "TN3270E-MIB"
2531
+ },
2532
+ "tn3270eResMapElementType" : {
2533
+ "nodetype" : "member",
2534
+ "module" : "TN3270E-MIB"
2535
+ },
2536
+ "tn3270eResMapSscpSuppliedName" : {
2537
+ "nodetype" : "member",
2538
+ "module" : "TN3270E-MIB"
2539
+ },
2540
+ "tn3270eTcpConnLastActivity" : {
2541
+ "nodetype" : "member",
2542
+ "module" : "TN3270E-MIB"
2543
+ },
2544
+ "tn3270eTcpConnBytesIn" : {
2545
+ "nodetype" : "member",
2546
+ "module" : "TN3270E-MIB"
2547
+ },
2548
+ "tn3270eTcpConnBytesOut" : {
2549
+ "nodetype" : "member",
2550
+ "module" : "TN3270E-MIB"
2551
+ },
2552
+ "tn3270eTcpConnResourceElement" : {
2553
+ "nodetype" : "member",
2554
+ "module" : "TN3270E-MIB"
2555
+ },
2556
+ "tn3270eTcpConnResourceType" : {
2557
+ "nodetype" : "member",
2558
+ "module" : "TN3270E-MIB"
2559
+ },
2560
+ "tn3270eTcpConnDeviceType" : {
2561
+ "nodetype" : "member",
2562
+ "module" : "TN3270E-MIB"
2563
+ },
2564
+ "tn3270eTcpConnFunctions" : {
2565
+ "nodetype" : "member",
2566
+ "module" : "TN3270E-MIB"
2567
+ },
2568
+ "tn3270eTcpConnSrvrConfIndex" : {
2569
+ "nodetype" : "member",
2570
+ "module" : "TN3270E-MIB"
2571
+ },
2572
+ "tn3270eTcpConnActivationTime" : {
2573
+ "nodetype" : "member",
2574
+ "module" : "TN3270E-MIB"
2575
+ },
2576
+ }, # members
2577
+ "description" :
2578
+ """This group is mandatory for all hosts supporting the
2579
+ TN3270E-MIB.""",
2580
+ }, # group
2581
+ "tn3270eResMapGroup" : {
2582
+ "nodetype" : "group",
2583
+ "moduleName" : "TN3270E-MIB",
2584
+ "oid" : "1.3.6.1.2.1.34.8.3.1.3",
2585
+ "status" : "current",
2586
+ "members" : {
2587
+ "tn3270eResPoolElementType" : {
2588
+ "nodetype" : "member",
2589
+ "module" : "TN3270E-MIB"
2590
+ },
2591
+ "tn3270eResPoolRowStatus" : {
2592
+ "nodetype" : "member",
2593
+ "module" : "TN3270E-MIB"
2594
+ },
2595
+ "tn3270eClientResMapRowStatus" : {
2596
+ "nodetype" : "member",
2597
+ "module" : "TN3270E-MIB"
2598
+ },
2599
+ "tn3270eTcpConnId" : {
2600
+ "nodetype" : "member",
2601
+ "module" : "TN3270E-MIB"
2602
+ },
2603
+ "tn3270eTcpConnClientIdFormat" : {
2604
+ "nodetype" : "member",
2605
+ "module" : "TN3270E-MIB"
2606
+ },
2607
+ "tn3270eTcpConnClientId" : {
2608
+ "nodetype" : "member",
2609
+ "module" : "TN3270E-MIB"
2610
+ },
2611
+ "tn3270eTcpConnTraceData" : {
2612
+ "nodetype" : "member",
2613
+ "module" : "TN3270E-MIB"
2614
+ },
2615
+ "tn3270eTcpConnLogInfo" : {
2616
+ "nodetype" : "member",
2617
+ "module" : "TN3270E-MIB"
2618
+ },
2619
+ "tn3270eTcpConnLuLuBindImage" : {
2620
+ "nodetype" : "member",
2621
+ "module" : "TN3270E-MIB"
2622
+ },
2623
+ "tn3270eTcpConnSnaState" : {
2624
+ "nodetype" : "member",
2625
+ "module" : "TN3270E-MIB"
2626
+ },
2627
+ "tn3270eTcpConnStateLastDiscReason" : {
2628
+ "nodetype" : "member",
2629
+ "module" : "TN3270E-MIB"
2630
+ },
2631
+ }, # members
2632
+ "description" :
2633
+ """This group is optional for all hosts supporting the
2634
+ TN3270E-MIB.""",
2635
+ }, # group
2636
+ "tn3270eHiCapacityGroup" : {
2637
+ "nodetype" : "group",
2638
+ "moduleName" : "TN3270E-MIB",
2639
+ "oid" : "1.3.6.1.2.1.34.8.3.1.4",
2640
+ "status" : "current",
2641
+ "members" : {
2642
+ "tn3270eSrvrStatsHCInOctets" : {
2643
+ "nodetype" : "member",
2644
+ "module" : "TN3270E-MIB"
2645
+ },
2646
+ "tn3270eSrvrStatsHCOutOctets" : {
2647
+ "nodetype" : "member",
2648
+ "module" : "TN3270E-MIB"
2649
+ },
2650
+ }, # members
2651
+ "description" :
2652
+ """Support of these objects is REQUIRED when the
2653
+ Counter32 versions can potentially wrap too
2654
+ frequently. This group is optional for all other
2655
+ hosts supporting the TN3270E-MIB.
2656
+
2657
+ The IF-MIB (RFC 2233) requires that the 64-bit
2658
+ versions of its counters be implemented when an
2659
+ interface can support rates of around 20 million
2660
+ bits per second or greater. This implies a minimum
2661
+ wrap rate of just over 28 minutes. It is recommended
2662
+ that this same guideline be used for determining
2663
+ whether an implementation implements these objects.
2664
+
2665
+ This group contains two objects with the syntax
2666
+ Counter64. An implementation that doesn't support
2667
+ these objects should return noSuchObject, since
2668
+ returning a zero is misleading.""",
2669
+ }, # group
2670
+ }, # groups
2671
+
2672
+ "compliances" : {
2673
+ "tn3270eCompliance" : {
2674
+ "nodetype" : "compliance",
2675
+ "moduleName" : "TN3270E-MIB",
2676
+ "oid" : "1.3.6.1.2.1.34.8.3.2.1",
2677
+ "status" : "current",
2678
+ "description" :
2679
+ """The compliance statement for agents that support the
2680
+ TN3270E-MIB.""",
2681
+ "requires" : {
2682
+ "tn3270eBasicGroup" : {
2683
+ "nodetype" : "mandatory",
2684
+ "module" : "TN3270E-MIB"
2685
+ },
2686
+ "tn3270eSessionGroup" : {
2687
+ "nodetype" : "mandatory",
2688
+ "module" : "TN3270E-MIB"
2689
+ },
2690
+ "tn3270eResMapGroup" : {
2691
+ "nodetype" : "optional",
2692
+ "module" : "TN3270E-MIB",
2693
+ "description" :
2694
+ """This group is optional and provides a method of
2695
+ performing tn3270eClientGroup to tn3270eResPool
2696
+ mapping.""",
2697
+ },
2698
+ "tn3270eHiCapacityGroup" : {
2699
+ "nodetype" : "optional",
2700
+ "module" : "TN3270E-MIB",
2701
+ "description" :
2702
+ """This group is optional and provides for support
2703
+ of high capacity counters.""",
2704
+ },
2705
+ }, # requires
2706
+ "refinements" : {
2707
+ "tn3270eSrvrConfConnectivityChk" : {
2708
+ "module" : "TN3270E-MIB",
2709
+ "access" : "readonly",
2710
+ "description" :
2711
+ """The agent is not required to support a set to this
2712
+ object if the associated TN3270E server doesn't
2713
+ support either TIMING-MARK or NOP processing. In
2714
+ this case an agent should return noCheck on
2715
+ retrieval.""",
2716
+ },
2717
+ "tn3270eSrvrConfTmNopInactTime" : {
2718
+ "module" : "TN3270E-MIB",
2719
+ "access" : "readonly",
2720
+ "description" :
2721
+ """The agent is not required to support a set to this
2722
+ object if the functions enabled by
2723
+ tn3270eSrvrConfConnectivityChk are not supported.
2724
+ An agent in this case should return a value of 0.""",
2725
+ },
2726
+ "tn3270eSrvrConfTmNopInterval" : {
2727
+ "module" : "TN3270E-MIB",
2728
+ "access" : "readonly",
2729
+ "description" :
2730
+ """The agent is not required to support a set to this
2731
+ object if the functions enabled by
2732
+ tn3270eSrvrConfConnectivityChk are not supported.
2733
+ An agent in this case should return a value of 0.""",
2734
+ },
2735
+ "tn3270eSrvrConfAdminStatus" : {
2736
+ "module" : "TN3270E-MIB",
2737
+ "description" :
2738
+ """A TN3270E server is not required to support a
2739
+ stopImmediate state transition.""",
2740
+ },
2741
+ "tn3270eSrvrConfRowStatus" : {
2742
+ "module" : "TN3270E-MIB",
2743
+ "access" : "readonly",
2744
+ "description" :
2745
+ """Write access is not required.""",
2746
+ },
2747
+ "tn3270eSrvrConfTmTimeout" : {
2748
+ "module" : "TN3270E-MIB",
2749
+ "access" : "readonly",
2750
+ "description" :
2751
+ """The agent is not required to support a set to this
2752
+ object if the functions enabled by
2753
+ tn3270eSrvrConfConnectivityChk are not supported.
2754
+ An agent in this case should return a value of 0.""",
2755
+ },
2756
+ "tn3270eSrvrPortRowStatus" : {
2757
+ "module" : "TN3270E-MIB",
2758
+ "access" : "readonly",
2759
+ "description" :
2760
+ """Write access is not required.""",
2761
+ },
2762
+ "tn3270eClientGroupRowStatus" : {
2763
+ "module" : "TN3270E-MIB",
2764
+ "access" : "readonly",
2765
+ "description" :
2766
+ """Write access is not required.""",
2767
+ },
2768
+ "tn3270eResPoolRowStatus" : {
2769
+ "module" : "TN3270E-MIB",
2770
+ "access" : "readonly",
2771
+ "description" :
2772
+ """Write access is not required.""",
2773
+ },
2774
+ "tn3270eClientResMapRowStatus" : {
2775
+ "module" : "TN3270E-MIB",
2776
+ "access" : "readonly",
2777
+ "description" :
2778
+ """Write access is not required.""",
2779
+ },
2780
+ }, # refinements
2781
+
2782
+ }, # compliance
2783
+ }, # compliances
2784
+
2785
+ }