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,3858 @@
1
+ # python version 1.0 DO NOT EDIT
2
+ #
3
+ # This python file has been generated by smidump version 0.5.0:
4
+ #
5
+ # smidump -f python SNA-SDLC-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SNA-SDLC-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SNA-SDLC-MIB",
11
+
12
+ "SNA-SDLC-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF SNA DLC MIB Working Group""",
17
+ "contact" :
18
+ """ Wayne Clark
19
+
20
+ Postal: cisco Systems, Inc.
21
+ 3100 Smoketree Ct.
22
+ Suite 1000
23
+ Raleigh, NC 27604
24
+ US
25
+
26
+ Tel: +1 919 878 6958
27
+
28
+ E-Mail: wclark@cisco.com""",
29
+ "description" :
30
+ """This is the MIB module for objects used to
31
+ manage SDLC devices.""",
32
+ "revisions" : (
33
+ {
34
+ "date" : "1994-11-15 00:00",
35
+ "description" :
36
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
37
+ },
38
+ ),
39
+ "identity node" : "snaDLC",
40
+ },
41
+
42
+ "imports" : (
43
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
44
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
45
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
46
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
47
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
48
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
49
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
50
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
51
+ {"module" : "SNMPv2-TC", "name" : "TimeInterval"},
52
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
53
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
54
+ {"module" : "RFC1213-MIB", "name" : "mib-2"},
55
+ {"module" : "RFC1213-MIB", "name" : "ifIndex"},
56
+ {"module" : "RFC1213-MIB", "name" : "ifAdminStatus"},
57
+ {"module" : "RFC1213-MIB", "name" : "ifOperStatus"},
58
+ ),
59
+
60
+ "nodes" : {
61
+ "snaDLC" : {
62
+ "nodetype" : "node",
63
+ "moduleName" : "SNA-SDLC-MIB",
64
+ "oid" : "1.3.6.1.2.1.41",
65
+ "status" : "current",
66
+ }, # node
67
+ "sdlc" : {
68
+ "nodetype" : "node",
69
+ "moduleName" : "SNA-SDLC-MIB",
70
+ "oid" : "1.3.6.1.2.1.41.1",
71
+ }, # node
72
+ "sdlcPortGroup" : {
73
+ "nodetype" : "node",
74
+ "moduleName" : "SNA-SDLC-MIB",
75
+ "oid" : "1.3.6.1.2.1.41.1.1",
76
+ }, # node
77
+ "sdlcPortAdminTable" : {
78
+ "nodetype" : "table",
79
+ "moduleName" : "SNA-SDLC-MIB",
80
+ "oid" : "1.3.6.1.2.1.41.1.1.1",
81
+ "status" : "current",
82
+ "description" :
83
+ """This table contains objects that can be
84
+ changed to manage an SDLC port. Changing one
85
+ of these parameters may take effect in the
86
+ operating port immediately or may wait until
87
+ the interface is restarted depending on the
88
+ details of the implementation.
89
+
90
+ Most of the objects in this read-write table
91
+ have corresponding read-only objects in the
92
+ sdlcPortOperTable that return the current
93
+ operating value.
94
+
95
+ The operating values may be different from
96
+ these configured values if a configured
97
+ parameter was changed after the interface was
98
+ started.""",
99
+ }, # table
100
+ "sdlcPortAdminEntry" : {
101
+ "nodetype" : "row",
102
+ "moduleName" : "SNA-SDLC-MIB",
103
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1",
104
+ "status" : "current",
105
+ "linkage" : [
106
+ "ifIndex",
107
+ ],
108
+ "description" :
109
+ """A list of configured values for an SDLC port.""",
110
+ }, # row
111
+ "sdlcPortAdminName" : {
112
+ "nodetype" : "column",
113
+ "moduleName" : "SNA-SDLC-MIB",
114
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1.1",
115
+ "status" : "current",
116
+ "syntax" : {
117
+ "type" : {
118
+ "basetype" : "OctetString",
119
+ "parent module" : {
120
+ "name" : "SNMPv2-TC",
121
+ "type" : "DisplayString",
122
+ },
123
+ "ranges" : [
124
+ {
125
+ "min" : "1",
126
+ "max" : "10"
127
+ },
128
+ ],
129
+ "range" : {
130
+ "min" : "1",
131
+ "max" : "10"
132
+ },
133
+ },
134
+ },
135
+ "access" : "readwrite",
136
+ "description" :
137
+ """An octet string that defines the physical port
138
+ to which this interface is assigned. It has
139
+ implementation-specific significance. Its value
140
+ shall be unique within the administered
141
+ system. It must contain only ASCII printable
142
+ characters. Should an implementation choose to
143
+ accept a write operation for this object, it
144
+ causes the logical port definition associated
145
+ with the table instance to be moved to a
146
+ different physical port. A write operation
147
+ shall not take effect until the port is cycled
148
+ inactive.""",
149
+ }, # column
150
+ "sdlcPortAdminRole" : {
151
+ "nodetype" : "column",
152
+ "moduleName" : "SNA-SDLC-MIB",
153
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1.2",
154
+ "status" : "current",
155
+ "syntax" : {
156
+ "type" : {
157
+ "basetype" : "Enumeration",
158
+ "primary" : {
159
+ "nodetype" : "namednumber",
160
+ "number" : "1"
161
+ },
162
+ "secondary" : {
163
+ "nodetype" : "namednumber",
164
+ "number" : "2"
165
+ },
166
+ "negotiable" : {
167
+ "nodetype" : "namednumber",
168
+ "number" : "3"
169
+ },
170
+ },
171
+ },
172
+ "access" : "readwrite",
173
+ "description" :
174
+ """This object describes the role that the link
175
+ station shall assume the next time a connection
176
+ is established.
177
+
178
+ Even though this is defined as a port object,
179
+ it is a link station attribute in the sense
180
+ that a role is per link station. However, it
181
+ is not possible to vary link station roles on a
182
+ particular port. For example, if an SDLC port
183
+ is configured to primary, all link stations on
184
+ that port must be primary.""",
185
+ }, # column
186
+ "sdlcPortAdminType" : {
187
+ "nodetype" : "column",
188
+ "moduleName" : "SNA-SDLC-MIB",
189
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1.3",
190
+ "status" : "current",
191
+ "syntax" : {
192
+ "type" : {
193
+ "basetype" : "Enumeration",
194
+ "leased" : {
195
+ "nodetype" : "namednumber",
196
+ "number" : "1"
197
+ },
198
+ "switched" : {
199
+ "nodetype" : "namednumber",
200
+ "number" : "2"
201
+ },
202
+ },
203
+ },
204
+ "access" : "readwrite",
205
+ "default" : "leased",
206
+ "description" :
207
+ """This parameter defines whether the SDLC port
208
+ is to connect to a leased or switched line. A
209
+ write operation to this administrative value
210
+ shall not take effect until the SDLC port has
211
+ been cycled inactive.""",
212
+ }, # column
213
+ "sdlcPortAdminTopology" : {
214
+ "nodetype" : "column",
215
+ "moduleName" : "SNA-SDLC-MIB",
216
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1.4",
217
+ "status" : "current",
218
+ "syntax" : {
219
+ "type" : {
220
+ "basetype" : "Enumeration",
221
+ "pointToPoint" : {
222
+ "nodetype" : "namednumber",
223
+ "number" : "1"
224
+ },
225
+ "multipoint" : {
226
+ "nodetype" : "namednumber",
227
+ "number" : "2"
228
+ },
229
+ },
230
+ },
231
+ "access" : "readwrite",
232
+ "default" : "pointToPoint",
233
+ "description" :
234
+ """This parameter defines whether the SDLC port is
235
+ capable of operating in either a point-to-point
236
+ or multipoint topology.
237
+
238
+ sdlcPortAdminTopology == multipoint implies the
239
+ port can also operate in a point-to-point
240
+ topology. sdlcPortAdminTopology ==
241
+ pointToPoint does not imply the port can
242
+ operate in a multipoint topology.
243
+
244
+ A write operation to this administrative value
245
+ shall not take effect until the SDLC port has
246
+ been cycled inactive.""",
247
+ }, # column
248
+ "sdlcPortAdminISTATUS" : {
249
+ "nodetype" : "column",
250
+ "moduleName" : "SNA-SDLC-MIB",
251
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1.5",
252
+ "status" : "current",
253
+ "syntax" : {
254
+ "type" : {
255
+ "basetype" : "Enumeration",
256
+ "inactive" : {
257
+ "nodetype" : "namednumber",
258
+ "number" : "1"
259
+ },
260
+ "active" : {
261
+ "nodetype" : "namednumber",
262
+ "number" : "2"
263
+ },
264
+ },
265
+ },
266
+ "access" : "readwrite",
267
+ "default" : "active",
268
+ "description" :
269
+ """This parameter controls the initial value of
270
+ the administrative status, ifAdminStatus, of
271
+ this SDLC port at port start-up. Depending
272
+ on the implementation, a write operation to
273
+ this administrative object may not take effect
274
+ until the SDLC port has been cycled inactive.""",
275
+ }, # column
276
+ "sdlcPortAdminACTIVTO" : {
277
+ "nodetype" : "column",
278
+ "moduleName" : "SNA-SDLC-MIB",
279
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1.6",
280
+ "status" : "current",
281
+ "syntax" : {
282
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
283
+ },
284
+ "access" : "readwrite",
285
+ "default" : "0",
286
+ "description" :
287
+ """This parameter defines the period of time (in
288
+ 1/100ths of a second) that the port will allow a
289
+ switched line to remain inactive before
290
+ disconnecting. A switched line is considered
291
+ to be inactive if there are no I-Frames being
292
+ transferred. A value of zero indicates no
293
+ timeout. Depending on the implementation, a
294
+ write operation to this administered value may
295
+ not take effect until the port is cycled
296
+ inactive.
297
+
298
+ This object only has meaning for SDLC ports
299
+ where sdlcPortAdminType == switched
300
+
301
+ The object descriptor contains the name of an
302
+ NCP configuration parameter, ACTIVTO. Please
303
+ note that the value of this object represents
304
+ 1/100ths of a second while the NCP ACTIVTO is
305
+ represented in seconds.""",
306
+ }, # column
307
+ "sdlcPortAdminPAUSE" : {
308
+ "nodetype" : "column",
309
+ "moduleName" : "SNA-SDLC-MIB",
310
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1.7",
311
+ "status" : "current",
312
+ "syntax" : {
313
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
314
+ },
315
+ "access" : "readwrite",
316
+ "default" : "200",
317
+ "description" :
318
+ """This object defines the minimum elapsed time
319
+ (in 1/100ths of a second) between any two
320
+ traversals of the poll list for a primary SDLC
321
+ port. Depending on the implementation, a write
322
+ operation to this administered value may not
323
+ take effect until the port is cycled inactive.
324
+ The object descriptor contains the name of an
325
+ NCP configuration parameter, PAUSE. Please
326
+ note that the value of this object represents
327
+ 1/100ths of a second while the NCP PAUSE is
328
+ represented in 1/10ths of a second.
329
+
330
+ This object only has meaning for SDLC ports
331
+ where sdlcPortAdminRole == primary """,
332
+ }, # column
333
+ "sdlcPortAdminSERVLIM" : {
334
+ "nodetype" : "column",
335
+ "moduleName" : "SNA-SDLC-MIB",
336
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1.8",
337
+ "status" : "current",
338
+ "syntax" : {
339
+ "type" : { "module" :"", "name" : "Integer32"},
340
+ },
341
+ "access" : "readwrite",
342
+ "default" : "20",
343
+ "description" :
344
+ """This object defines the number of times the
345
+ active poll list will be traversed before
346
+ polling a station on the slow poll list for a
347
+ primary, multipoint SDLC port. Depending on
348
+ the implementation, a write operation to this
349
+ administered value may not take effect until
350
+ the port is cycled inactive.
351
+
352
+ This object only has meaning for SDLC ports
353
+ where
354
+ sdlcPortAdminRole == primary
355
+ and
356
+ sdlcPortAdminTopology == multipoint """,
357
+ }, # column
358
+ "sdlcPortAdminSlowPollTimer" : {
359
+ "nodetype" : "column",
360
+ "moduleName" : "SNA-SDLC-MIB",
361
+ "oid" : "1.3.6.1.2.1.41.1.1.1.1.9",
362
+ "status" : "current",
363
+ "syntax" : {
364
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
365
+ },
366
+ "access" : "readwrite",
367
+ "default" : "2000",
368
+ "description" :
369
+ """This object describes the elapsed time (in
370
+ 1/100ths of a second) between polls for failed
371
+ secondary link station addresses. Depending
372
+ on the implementation, a write operation to
373
+ this administered value may not take effect
374
+ until the port is cycled inactive.
375
+
376
+ This object only has meaning for SDLC ports
377
+ where
378
+ sdlcPortAdminRole == primary
379
+ and
380
+ sdlcPortAdminTopology == multipoint """,
381
+ }, # column
382
+ "sdlcPortOperTable" : {
383
+ "nodetype" : "table",
384
+ "moduleName" : "SNA-SDLC-MIB",
385
+ "oid" : "1.3.6.1.2.1.41.1.1.2",
386
+ "status" : "current",
387
+ "description" :
388
+ """This table contains current SDLC port
389
+ parameters. Many of these objects have
390
+ corresponding objects inthe sdlcPortAdminTable.""",
391
+ }, # table
392
+ "sdlcPortOperEntry" : {
393
+ "nodetype" : "row",
394
+ "moduleName" : "SNA-SDLC-MIB",
395
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1",
396
+ "status" : "current",
397
+ "linkage" : [
398
+ "ifIndex",
399
+ ],
400
+ "description" :
401
+ """Currently set parameters for a specific SDLC
402
+ port.""",
403
+ }, # row
404
+ "sdlcPortOperName" : {
405
+ "nodetype" : "column",
406
+ "moduleName" : "SNA-SDLC-MIB",
407
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.1",
408
+ "status" : "current",
409
+ "syntax" : {
410
+ "type" : {
411
+ "basetype" : "OctetString",
412
+ "parent module" : {
413
+ "name" : "SNMPv2-TC",
414
+ "type" : "DisplayString",
415
+ },
416
+ "ranges" : [
417
+ {
418
+ "min" : "1",
419
+ "max" : "8"
420
+ },
421
+ ],
422
+ "range" : {
423
+ "min" : "1",
424
+ "max" : "8"
425
+ },
426
+ },
427
+ },
428
+ "access" : "readonly",
429
+ "description" :
430
+ """An octet string that describes the physical
431
+ port to which this interface is currently
432
+ attached. It has implementation-specific
433
+ significance.""",
434
+ }, # column
435
+ "sdlcPortOperRole" : {
436
+ "nodetype" : "column",
437
+ "moduleName" : "SNA-SDLC-MIB",
438
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.2",
439
+ "status" : "current",
440
+ "syntax" : {
441
+ "type" : {
442
+ "basetype" : "Enumeration",
443
+ "primary" : {
444
+ "nodetype" : "namednumber",
445
+ "number" : "1"
446
+ },
447
+ "secondary" : {
448
+ "nodetype" : "namednumber",
449
+ "number" : "2"
450
+ },
451
+ "undefined" : {
452
+ "nodetype" : "namednumber",
453
+ "number" : "3"
454
+ },
455
+ },
456
+ },
457
+ "access" : "readonly",
458
+ "description" :
459
+ """This object describes the role that the link
460
+ station has assumed on this connection.
461
+
462
+ Even though this is defined as a port object,
463
+ it is a link station attribute in the sense
464
+ that a role is per link station. However, it
465
+ is not possible to vary link station roles on a
466
+ particular port. For example, if an SDLC port
467
+ is configured to primary, all link stations on
468
+ that port must be primary.
469
+
470
+ The value of sdlcPortOperRole is undefined(3)
471
+ whenever the link station role has not yet been
472
+ established by the mode setting command.""",
473
+ }, # column
474
+ "sdlcPortOperType" : {
475
+ "nodetype" : "column",
476
+ "moduleName" : "SNA-SDLC-MIB",
477
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.3",
478
+ "status" : "current",
479
+ "syntax" : {
480
+ "type" : {
481
+ "basetype" : "Enumeration",
482
+ "leased" : {
483
+ "nodetype" : "namednumber",
484
+ "number" : "1"
485
+ },
486
+ "switched" : {
487
+ "nodetype" : "namednumber",
488
+ "number" : "2"
489
+ },
490
+ },
491
+ },
492
+ "access" : "readonly",
493
+ "description" :
494
+ """This parameter defines whether the SDLC port
495
+ is currently operating as though connected to a
496
+ leased or switched line.""",
497
+ }, # column
498
+ "sdlcPortOperTopology" : {
499
+ "nodetype" : "column",
500
+ "moduleName" : "SNA-SDLC-MIB",
501
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.4",
502
+ "status" : "current",
503
+ "syntax" : {
504
+ "type" : {
505
+ "basetype" : "Enumeration",
506
+ "pointToPoint" : {
507
+ "nodetype" : "namednumber",
508
+ "number" : "1"
509
+ },
510
+ "multipoint" : {
511
+ "nodetype" : "namednumber",
512
+ "number" : "2"
513
+ },
514
+ },
515
+ },
516
+ "access" : "readonly",
517
+ "description" :
518
+ """This parameter defines whether the SDLC port is
519
+ currently operating in a point-to-point or
520
+ multipoint topology.""",
521
+ }, # column
522
+ "sdlcPortOperISTATUS" : {
523
+ "nodetype" : "column",
524
+ "moduleName" : "SNA-SDLC-MIB",
525
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.5",
526
+ "status" : "current",
527
+ "syntax" : {
528
+ "type" : {
529
+ "basetype" : "Enumeration",
530
+ "inactive" : {
531
+ "nodetype" : "namednumber",
532
+ "number" : "1"
533
+ },
534
+ "active" : {
535
+ "nodetype" : "namednumber",
536
+ "number" : "2"
537
+ },
538
+ },
539
+ },
540
+ "access" : "readonly",
541
+ "description" :
542
+ """This parameter describes the initial value of
543
+ the administrative status, ifAdminStatus, of
544
+ this SDLC port at last port start-up.""",
545
+ }, # column
546
+ "sdlcPortOperACTIVTO" : {
547
+ "nodetype" : "column",
548
+ "moduleName" : "SNA-SDLC-MIB",
549
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.6",
550
+ "status" : "current",
551
+ "syntax" : {
552
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
553
+ },
554
+ "access" : "readonly",
555
+ "description" :
556
+ """This parameter defines the period of time (in
557
+ 100ths of a second) that the port will allow a
558
+ switched line to remain inactive before
559
+ disconnecting. A switched line is considered
560
+ to be inactive if there are no I-Frames being
561
+ transferred.
562
+
563
+ The object descriptor contains the name of an
564
+ NCP configuration parameter, ACTIVTO. Please
565
+ note that the value of this object represents
566
+ 1/100ths of a second while the NCP ACTIVTO is
567
+ represented in seconds.
568
+ A value of zero indicates no timeout.""",
569
+ }, # column
570
+ "sdlcPortOperPAUSE" : {
571
+ "nodetype" : "column",
572
+ "moduleName" : "SNA-SDLC-MIB",
573
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.7",
574
+ "status" : "current",
575
+ "syntax" : {
576
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
577
+ },
578
+ "access" : "readonly",
579
+ "description" :
580
+ """This object describes the current minimum
581
+ elapsed time (in 1/100ths of a second) between
582
+ any two traversals of the poll list for a
583
+ primary SDLC port.
584
+
585
+ The object descriptor contains the name of an
586
+ NCP configuration parameter, PAUSE. Please
587
+ note that the value of this object represents
588
+ 1/100ths of a second while the NCP PAUSE is
589
+ represented in 1/10ths of a second.
590
+
591
+ This object only has meaning for SDLC ports
592
+ where
593
+ sdlcPortAdminRole == primary """,
594
+ }, # column
595
+ "sdlcPortOperSlowPollMethod" : {
596
+ "nodetype" : "column",
597
+ "moduleName" : "SNA-SDLC-MIB",
598
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.8",
599
+ "status" : "current",
600
+ "syntax" : {
601
+ "type" : {
602
+ "basetype" : "Enumeration",
603
+ "servlim" : {
604
+ "nodetype" : "namednumber",
605
+ "number" : "1"
606
+ },
607
+ "pollpause" : {
608
+ "nodetype" : "namednumber",
609
+ "number" : "2"
610
+ },
611
+ "other" : {
612
+ "nodetype" : "namednumber",
613
+ "number" : "3"
614
+ },
615
+ },
616
+ },
617
+ "access" : "readonly",
618
+ "description" :
619
+ """This object defines the exact method that is in
620
+ effect for periodically polling failed secondary
621
+ link station addresses.
622
+
623
+ If sdlcPortOperSlowPollMethod == servlim, then
624
+ sdlcPortOperSERVLIM defines the actual polling
625
+ characteristics.
626
+
627
+ If sdlcPortOperSlowPollMethod == pollpause,
628
+ then sdlcPortOperSlowPollTimer defines the
629
+ actual polling characteristics.
630
+
631
+ If sdlcPortOperSlowPollMethod == other, then
632
+ the polling characteristics are modeled in
633
+ vendor-specific objects.
634
+
635
+ This object only has meaning for SDLC ports
636
+ where
637
+ sdlcPortOperRole == primary
638
+ and
639
+ sdlcPortOperTopology == multipoint """,
640
+ }, # column
641
+ "sdlcPortOperSERVLIM" : {
642
+ "nodetype" : "column",
643
+ "moduleName" : "SNA-SDLC-MIB",
644
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.9",
645
+ "status" : "current",
646
+ "syntax" : {
647
+ "type" : { "module" :"", "name" : "Integer32"},
648
+ },
649
+ "access" : "readonly",
650
+ "description" :
651
+ """This object describes the number of times the
652
+ active poll list is currently being traversed
653
+ before polling a station on the slow poll list
654
+ for a primary, multipoint SDLC port.
655
+
656
+ This object only has meaning for SDLC ports
657
+ where
658
+ sdlcPortOperRole == primary
659
+ and
660
+ sdlcPortOperTopology == multipoint """,
661
+ }, # column
662
+ "sdlcPortOperSlowPollTimer" : {
663
+ "nodetype" : "column",
664
+ "moduleName" : "SNA-SDLC-MIB",
665
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.10",
666
+ "status" : "current",
667
+ "syntax" : {
668
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
669
+ },
670
+ "access" : "readonly",
671
+ "description" :
672
+ """This object describes the elapsed time (in
673
+ 1/100ths of a second) between polls for failed
674
+ secondary link station addresses.
675
+
676
+ This object only has meaning for SDLC ports
677
+ where
678
+ sdlcPortOperRole == primary
679
+ and
680
+ sdlcPortOperTopology == multipoint """,
681
+ }, # column
682
+ "sdlcPortOperLastModifyTime" : {
683
+ "nodetype" : "column",
684
+ "moduleName" : "SNA-SDLC-MIB",
685
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.11",
686
+ "status" : "current",
687
+ "syntax" : {
688
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
689
+ },
690
+ "access" : "readonly",
691
+ "description" :
692
+ """This object describes the value of sysUpTime
693
+ when this port definition was last modified.
694
+ If the port has not been modified, then this
695
+ value shall be zero.""",
696
+ }, # column
697
+ "sdlcPortOperLastFailTime" : {
698
+ "nodetype" : "column",
699
+ "moduleName" : "SNA-SDLC-MIB",
700
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.12",
701
+ "status" : "current",
702
+ "syntax" : {
703
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
704
+ },
705
+ "access" : "readonly",
706
+ "description" :
707
+ """This object describes the value of sysUpTime
708
+ when this SDLC port last failed. If the port
709
+ has not failed, then this value shall be zero.""",
710
+ }, # column
711
+ "sdlcPortOperLastFailCause" : {
712
+ "nodetype" : "column",
713
+ "moduleName" : "SNA-SDLC-MIB",
714
+ "oid" : "1.3.6.1.2.1.41.1.1.2.1.13",
715
+ "status" : "current",
716
+ "syntax" : {
717
+ "type" : {
718
+ "basetype" : "Enumeration",
719
+ "undefined" : {
720
+ "nodetype" : "namednumber",
721
+ "number" : "1"
722
+ },
723
+ "physical" : {
724
+ "nodetype" : "namednumber",
725
+ "number" : "2"
726
+ },
727
+ },
728
+ },
729
+ "access" : "readonly",
730
+ "default" : "undefined",
731
+ "description" :
732
+ """This enumerated object describes the cause of
733
+ the last failure of this SDLC port. If the
734
+ port has not failed, then this object has a
735
+ value of undefined(1).""",
736
+ }, # column
737
+ "sdlcPortStatsTable" : {
738
+ "nodetype" : "table",
739
+ "moduleName" : "SNA-SDLC-MIB",
740
+ "oid" : "1.3.6.1.2.1.41.1.1.3",
741
+ "status" : "current",
742
+ "description" :
743
+ """Each entry in this table contains statistics
744
+ for a specific SDLC port.""",
745
+ }, # table
746
+ "sdlcPortStatsEntry" : {
747
+ "nodetype" : "row",
748
+ "moduleName" : "SNA-SDLC-MIB",
749
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1",
750
+ "status" : "current",
751
+ "linkage" : [
752
+ "ifIndex",
753
+ ],
754
+ "description" :
755
+ """A list of statistics for an SDLC port.""",
756
+ }, # row
757
+ "sdlcPortStatsPhysicalFailures" : {
758
+ "nodetype" : "column",
759
+ "moduleName" : "SNA-SDLC-MIB",
760
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.1",
761
+ "status" : "current",
762
+ "syntax" : {
763
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
764
+ },
765
+ "access" : "readonly",
766
+ "description" :
767
+ """This object reflects the total number of times
768
+ this port has failed due to its physical media
769
+ since port startup. At port startup time,
770
+ this object must be initialized to zero.""",
771
+ }, # column
772
+ "sdlcPortStatsInvalidAddresses" : {
773
+ "nodetype" : "column",
774
+ "moduleName" : "SNA-SDLC-MIB",
775
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.2",
776
+ "status" : "current",
777
+ "syntax" : {
778
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
779
+ },
780
+ "access" : "readonly",
781
+ "description" :
782
+ """This object reflects the total number of
783
+ frames received by this port with invalid link
784
+ station addresses.""",
785
+ }, # column
786
+ "sdlcPortStatsDwarfFrames" : {
787
+ "nodetype" : "column",
788
+ "moduleName" : "SNA-SDLC-MIB",
789
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.3",
790
+ "status" : "current",
791
+ "syntax" : {
792
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
793
+ },
794
+ "access" : "readonly",
795
+ "description" :
796
+ """This object reflects the total number of
797
+ frames received by this port which were
798
+ delivered intact by the physical layer but were
799
+ too short to be legal.
800
+
801
+ Ignoring the frame check sequence (FCS), a
802
+ frame is considered to be too short if it
803
+ is less than 2 bytes for sdlcLSOperMODULO of
804
+ eight, or if it is less than 3 bytes for
805
+ sdlcLSOperMODULO of onetwentyeight.""",
806
+ }, # column
807
+ "sdlcPortStatsPollsIn" : {
808
+ "nodetype" : "column",
809
+ "moduleName" : "SNA-SDLC-MIB",
810
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.4",
811
+ "status" : "current",
812
+ "syntax" : {
813
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
814
+ },
815
+ "access" : "readonly",
816
+ "description" :
817
+ """This object reflects the total number of polls
818
+ received by this port since the port was
819
+ created.""",
820
+ }, # column
821
+ "sdlcPortStatsPollsOut" : {
822
+ "nodetype" : "column",
823
+ "moduleName" : "SNA-SDLC-MIB",
824
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.5",
825
+ "status" : "current",
826
+ "syntax" : {
827
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
828
+ },
829
+ "access" : "readonly",
830
+ "description" :
831
+ """This object reflects the total number of polls
832
+ sent by this port since the port was created.""",
833
+ }, # column
834
+ "sdlcPortStatsPollRspsIn" : {
835
+ "nodetype" : "column",
836
+ "moduleName" : "SNA-SDLC-MIB",
837
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.6",
838
+ "status" : "current",
839
+ "syntax" : {
840
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
841
+ },
842
+ "access" : "readonly",
843
+ "description" :
844
+ """This object reflects the total number of poll
845
+ responses received by this port since the port
846
+ was created.""",
847
+ }, # column
848
+ "sdlcPortStatsPollRspsOut" : {
849
+ "nodetype" : "column",
850
+ "moduleName" : "SNA-SDLC-MIB",
851
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.7",
852
+ "status" : "current",
853
+ "syntax" : {
854
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
855
+ },
856
+ "access" : "readonly",
857
+ "description" :
858
+ """This object reflects the total number of poll
859
+ responses sent by this port since the port was
860
+ created.""",
861
+ }, # column
862
+ "sdlcPortStatsLocalBusies" : {
863
+ "nodetype" : "column",
864
+ "moduleName" : "SNA-SDLC-MIB",
865
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.8",
866
+ "status" : "current",
867
+ "syntax" : {
868
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
869
+ },
870
+ "access" : "readonly",
871
+ "description" :
872
+ """This object reflects the total number of
873
+ times that the local SDLC link stations on
874
+ this port have entered a busy state (RNR).
875
+ This object is initialized to zero when the
876
+ port is created.""",
877
+ }, # column
878
+ "sdlcPortStatsRemoteBusies" : {
879
+ "nodetype" : "column",
880
+ "moduleName" : "SNA-SDLC-MIB",
881
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.9",
882
+ "status" : "current",
883
+ "syntax" : {
884
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
885
+ },
886
+ "access" : "readonly",
887
+ "description" :
888
+ """This object reflects the total number of
889
+ times that the adjacent (i.e., remote) SDLC
890
+ link stations on this port have entered a busy
891
+ state (RNR). This object is initialized to
892
+ zero when the port is created.""",
893
+ }, # column
894
+ "sdlcPortStatsIFramesIn" : {
895
+ "nodetype" : "column",
896
+ "moduleName" : "SNA-SDLC-MIB",
897
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.10",
898
+ "status" : "current",
899
+ "syntax" : {
900
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
901
+ },
902
+ "access" : "readonly",
903
+ "description" :
904
+ """This object reflects the total number of
905
+ I-Frames that have been received by SDLC link
906
+ stations on this port. This object is
907
+ initialized to zero when the port is created.""",
908
+ }, # column
909
+ "sdlcPortStatsIFramesOut" : {
910
+ "nodetype" : "column",
911
+ "moduleName" : "SNA-SDLC-MIB",
912
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.11",
913
+ "status" : "current",
914
+ "syntax" : {
915
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
916
+ },
917
+ "access" : "readonly",
918
+ "description" :
919
+ """This object reflects the total number of
920
+ I-Frames that have been transmitted by SDLC
921
+ link stations on this port. This object is
922
+ initialized to zero when the port is created.""",
923
+ }, # column
924
+ "sdlcPortStatsOctetsIn" : {
925
+ "nodetype" : "column",
926
+ "moduleName" : "SNA-SDLC-MIB",
927
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.12",
928
+ "status" : "current",
929
+ "syntax" : {
930
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
931
+ },
932
+ "access" : "readonly",
933
+ "description" :
934
+ """This object reflects the total octets
935
+ received from adjacent SDLC link stations on
936
+ this port. This object covers the address,
937
+ control, and information field of I-Frames
938
+ only. This object is initialized to zero when
939
+ the port is created.""",
940
+ }, # column
941
+ "sdlcPortStatsOctetsOut" : {
942
+ "nodetype" : "column",
943
+ "moduleName" : "SNA-SDLC-MIB",
944
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.13",
945
+ "status" : "current",
946
+ "syntax" : {
947
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
948
+ },
949
+ "access" : "readonly",
950
+ "description" :
951
+ """This object reflects the total octets
952
+ transmitted to adjacent SDLC link stations on
953
+ this port. This object covers the address,
954
+ control, and information field of I-Frames
955
+ only. This object is initialized to zero when
956
+ the port is created.""",
957
+ }, # column
958
+ "sdlcPortStatsProtocolErrs" : {
959
+ "nodetype" : "column",
960
+ "moduleName" : "SNA-SDLC-MIB",
961
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.14",
962
+ "status" : "current",
963
+ "syntax" : {
964
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
965
+ },
966
+ "access" : "readonly",
967
+ "description" :
968
+ """This object reflects the total number of
969
+ times that the SDLC link stations on this port
970
+ have deactivated the link as a result of
971
+ having received a protocol violation from the
972
+ adjacent link station. This object is
973
+ initialized to zero when the port is created.""",
974
+ }, # column
975
+ "sdlcPortStatsActivityTOs" : {
976
+ "nodetype" : "column",
977
+ "moduleName" : "SNA-SDLC-MIB",
978
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.15",
979
+ "status" : "current",
980
+ "syntax" : {
981
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
982
+ },
983
+ "access" : "readonly",
984
+ "description" :
985
+ """This object reflects the total number of
986
+ times that the SDLC link stations on this port
987
+ have deactivated the link as a result of no
988
+ activity on the link. This object is
989
+ initialized to zero when the port is created.""",
990
+ }, # column
991
+ "sdlcPortStatsRNRLIMITs" : {
992
+ "nodetype" : "column",
993
+ "moduleName" : "SNA-SDLC-MIB",
994
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.16",
995
+ "status" : "current",
996
+ "syntax" : {
997
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
998
+ },
999
+ "access" : "readonly",
1000
+ "description" :
1001
+ """This object reflects the total number of
1002
+ times that the SDLC link stations on this port
1003
+ have deactivated the link as a result of its
1004
+ RNRLIMIT timer expiring. This object is
1005
+ initialized to zero when the port is created.""",
1006
+ }, # column
1007
+ "sdlcPortStatsRetriesExps" : {
1008
+ "nodetype" : "column",
1009
+ "moduleName" : "SNA-SDLC-MIB",
1010
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.17",
1011
+ "status" : "current",
1012
+ "syntax" : {
1013
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1014
+ },
1015
+ "access" : "readonly",
1016
+ "description" :
1017
+ """This object reflects the total number of
1018
+ times that the SDLC link stations on this port
1019
+ have deactivated the link as a result of a
1020
+ retry sequence being exhausted. This object
1021
+ is initialized to zero when the port is
1022
+ created.""",
1023
+ }, # column
1024
+ "sdlcPortStatsRetransmitsIn" : {
1025
+ "nodetype" : "column",
1026
+ "moduleName" : "SNA-SDLC-MIB",
1027
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.18",
1028
+ "status" : "current",
1029
+ "syntax" : {
1030
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1031
+ },
1032
+ "access" : "readonly",
1033
+ "description" :
1034
+ """This object reflects the total number of
1035
+ I-Frames retransmitted by remote link stations
1036
+ for all SDLC link stations on this port. This
1037
+ object is initialized to zero when the port is
1038
+ created.""",
1039
+ }, # column
1040
+ "sdlcPortStatsRetransmitsOut" : {
1041
+ "nodetype" : "column",
1042
+ "moduleName" : "SNA-SDLC-MIB",
1043
+ "oid" : "1.3.6.1.2.1.41.1.1.3.1.19",
1044
+ "status" : "current",
1045
+ "syntax" : {
1046
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1047
+ },
1048
+ "access" : "readonly",
1049
+ "description" :
1050
+ """This object reflects the total number of
1051
+ I-Frames retransmitted by all local SDLC link
1052
+ stations on this port. This object is
1053
+ initialized to zero when the port is created.""",
1054
+ }, # column
1055
+ "sdlcLSGroup" : {
1056
+ "nodetype" : "node",
1057
+ "moduleName" : "SNA-SDLC-MIB",
1058
+ "oid" : "1.3.6.1.2.1.41.1.2",
1059
+ }, # node
1060
+ "sdlcLSAdminTable" : {
1061
+ "nodetype" : "table",
1062
+ "moduleName" : "SNA-SDLC-MIB",
1063
+ "oid" : "1.3.6.1.2.1.41.1.2.1",
1064
+ "status" : "current",
1065
+ "description" :
1066
+ """This table contains objects that can be
1067
+ changed to manage an SDLC link station.
1068
+ Changing one of these parameters may take
1069
+ effect in the operating link immediately or may
1070
+ wait until the link is restarted depending on
1071
+ the details of the implementation.
1072
+
1073
+ The entries in sdlcLSAdminTable can be created
1074
+ either by an agent or a management station. The
1075
+ management station can create an entry in
1076
+ sdlcLSAdminTable by setting the appropriate
1077
+ value in sdlcLSAdminRowStatus.
1078
+
1079
+ Most of the objects in this read-create table
1080
+ have corresponding read-only objects in the
1081
+ sdlcLSOperTable that reflect the current
1082
+ operating value.
1083
+
1084
+ The operating values may be different from
1085
+ these configured values if changed by XID
1086
+ negotiation or if a configured parameter was
1087
+ changed after the link was started.""",
1088
+ }, # table
1089
+ "sdlcLSAdminEntry" : {
1090
+ "nodetype" : "row",
1091
+ "moduleName" : "SNA-SDLC-MIB",
1092
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1",
1093
+ "create" : "true",
1094
+ "status" : "current",
1095
+ "linkage" : [
1096
+ "ifIndex",
1097
+ "sdlcLSAddress",
1098
+ ],
1099
+ "description" :
1100
+ """A list of configured values for an SDLC link
1101
+ station.""",
1102
+ }, # row
1103
+ "sdlcLSAddress" : {
1104
+ "nodetype" : "column",
1105
+ "moduleName" : "SNA-SDLC-MIB",
1106
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.1",
1107
+ "status" : "current",
1108
+ "syntax" : {
1109
+ "type" : {
1110
+ "basetype" : "Integer32",
1111
+ "ranges" : [
1112
+ {
1113
+ "min" : "1",
1114
+ "max" : "255"
1115
+ },
1116
+ ],
1117
+ "range" : {
1118
+ "min" : "1",
1119
+ "max" : "255"
1120
+ },
1121
+ },
1122
+ },
1123
+ "access" : "readwrite",
1124
+ "description" :
1125
+ """This value is the poll address of the
1126
+ secondary link station for this SDLC link. It
1127
+ uniquely identifies the SDLC link station
1128
+ within a single SDLC port.""",
1129
+ }, # column
1130
+ "sdlcLSAdminName" : {
1131
+ "nodetype" : "column",
1132
+ "moduleName" : "SNA-SDLC-MIB",
1133
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.2",
1134
+ "status" : "current",
1135
+ "syntax" : {
1136
+ "type" : {
1137
+ "basetype" : "OctetString",
1138
+ "parent module" : {
1139
+ "name" : "SNMPv2-TC",
1140
+ "type" : "DisplayString",
1141
+ },
1142
+ "ranges" : [
1143
+ {
1144
+ "min" : "1",
1145
+ "max" : "10"
1146
+ },
1147
+ ],
1148
+ "range" : {
1149
+ "min" : "1",
1150
+ "max" : "10"
1151
+ },
1152
+ },
1153
+ },
1154
+ "access" : "readwrite",
1155
+ "description" :
1156
+ """An octet string that defines the local name of
1157
+ the SDLC link station. This field may be sent
1158
+ in the XID3 control vector 0x0E, type 0xF7.""",
1159
+ }, # column
1160
+ "sdlcLSAdminState" : {
1161
+ "nodetype" : "column",
1162
+ "moduleName" : "SNA-SDLC-MIB",
1163
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.3",
1164
+ "status" : "current",
1165
+ "syntax" : {
1166
+ "type" : {
1167
+ "basetype" : "Enumeration",
1168
+ "inactive" : {
1169
+ "nodetype" : "namednumber",
1170
+ "number" : "1"
1171
+ },
1172
+ "active" : {
1173
+ "nodetype" : "namednumber",
1174
+ "number" : "2"
1175
+ },
1176
+ },
1177
+ },
1178
+ "access" : "readwrite",
1179
+ "default" : "active",
1180
+ "description" :
1181
+ """This object controls the desired state of the
1182
+ SDLC station. The managed system shall attempt
1183
+ to keep the operational state, sdlcLSOperState,
1184
+ consistent with this value.""",
1185
+ }, # column
1186
+ "sdlcLSAdminISTATUS" : {
1187
+ "nodetype" : "column",
1188
+ "moduleName" : "SNA-SDLC-MIB",
1189
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.4",
1190
+ "status" : "current",
1191
+ "syntax" : {
1192
+ "type" : {
1193
+ "basetype" : "Enumeration",
1194
+ "inactive" : {
1195
+ "nodetype" : "namednumber",
1196
+ "number" : "1"
1197
+ },
1198
+ "active" : {
1199
+ "nodetype" : "namednumber",
1200
+ "number" : "2"
1201
+ },
1202
+ },
1203
+ },
1204
+ "access" : "readwrite",
1205
+ "default" : "active",
1206
+ "description" :
1207
+ """This parameter controls the desired state,
1208
+ sdlcLSAdminState, of the SDLC link station at
1209
+ link station start-up.""",
1210
+ }, # column
1211
+ "sdlcLSAdminMAXDATASend" : {
1212
+ "nodetype" : "column",
1213
+ "moduleName" : "SNA-SDLC-MIB",
1214
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.5",
1215
+ "status" : "current",
1216
+ "syntax" : {
1217
+ "type" : { "module" :"", "name" : "Integer32"},
1218
+ },
1219
+ "access" : "readwrite",
1220
+ "description" :
1221
+ """This object contains the maximum PDU size that
1222
+ the local link station thinks it can send to
1223
+ the adjacent link station before having
1224
+ received any XID from the ALS. After the
1225
+ maximum PDU size that the ALS can receive is
1226
+ known (via XID exchange) that value is
1227
+ reflected in sdlcLSOperMAXDATASend and takes
1228
+ precedence over this object.
1229
+
1230
+ This value includes the Transmission Header
1231
+ (TH) and the Request Header (RH).""",
1232
+ }, # column
1233
+ "sdlcLSAdminMAXDATARcv" : {
1234
+ "nodetype" : "column",
1235
+ "moduleName" : "SNA-SDLC-MIB",
1236
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.6",
1237
+ "status" : "current",
1238
+ "syntax" : {
1239
+ "type" : { "module" :"", "name" : "Integer32"},
1240
+ },
1241
+ "access" : "readwrite",
1242
+ "description" :
1243
+ """This object contains the maximum PDU size that
1244
+ the local link station can receive from the
1245
+ adjacent link station. This value is sent in
1246
+ the XID to the ALS.
1247
+
1248
+ This value includes the Transmission Header
1249
+ (TH) and the Request Header (RH).""",
1250
+ }, # column
1251
+ "sdlcLSAdminREPLYTO" : {
1252
+ "nodetype" : "column",
1253
+ "moduleName" : "SNA-SDLC-MIB",
1254
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.7",
1255
+ "status" : "current",
1256
+ "syntax" : {
1257
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1258
+ },
1259
+ "access" : "readwrite",
1260
+ "default" : "100",
1261
+ "description" :
1262
+ """This object controls the reply timeout (in
1263
+ 1/100ths of a second) for an SDLC link
1264
+ station. If the link station does not receive
1265
+ a response to a poll or message before the
1266
+ specified time expires then the appropriate
1267
+ error recovery shall be initiated.
1268
+
1269
+ The object descriptor contains the name of an
1270
+ NCP configuration parameter, REPLYTO. Please
1271
+ note that the value of this object represents
1272
+ 1/100ths of a second while the NCP REPLYTO is
1273
+ represented in 1/10ths of a second.
1274
+
1275
+ Depending on the implementation, a write
1276
+ operation to this administered value may not
1277
+ change the operational value, sdlcLSOperREPLYTO,
1278
+ until the link station is cycled inactive.
1279
+
1280
+ This object only has meaning for SDLC ports
1281
+ where sdlcPortAdminRole == primary """,
1282
+ }, # column
1283
+ "sdlcLSAdminMAXIN" : {
1284
+ "nodetype" : "column",
1285
+ "moduleName" : "SNA-SDLC-MIB",
1286
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.8",
1287
+ "status" : "current",
1288
+ "syntax" : {
1289
+ "type" : {
1290
+ "basetype" : "Integer32",
1291
+ "ranges" : [
1292
+ {
1293
+ "min" : "1",
1294
+ "max" : "127"
1295
+ },
1296
+ ],
1297
+ "range" : {
1298
+ "min" : "1",
1299
+ "max" : "127"
1300
+ },
1301
+ },
1302
+ },
1303
+ "access" : "readwrite",
1304
+ "default" : "7",
1305
+ "description" :
1306
+ """This object controls the maximum number of
1307
+ unacknowledged I-frames which an SDLC link
1308
+ station may receive. This should range from 1
1309
+ to (sdlcLSAdminMODULO - 1). This value is sent
1310
+ in the XID to the ALS.
1311
+
1312
+ A write operation to this administered value
1313
+ will not change the operational value,
1314
+ sdlcLSOperMAXIN, until the link station is
1315
+ cycled inactive.""",
1316
+ }, # column
1317
+ "sdlcLSAdminMAXOUT" : {
1318
+ "nodetype" : "column",
1319
+ "moduleName" : "SNA-SDLC-MIB",
1320
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.9",
1321
+ "status" : "current",
1322
+ "syntax" : {
1323
+ "type" : {
1324
+ "basetype" : "Integer32",
1325
+ "ranges" : [
1326
+ {
1327
+ "min" : "1",
1328
+ "max" : "127"
1329
+ },
1330
+ ],
1331
+ "range" : {
1332
+ "min" : "1",
1333
+ "max" : "127"
1334
+ },
1335
+ },
1336
+ },
1337
+ "access" : "readwrite",
1338
+ "default" : "1",
1339
+ "description" :
1340
+ """This object controls the maximum number of
1341
+ consecutive unacknowledged I-frames which an
1342
+ SDLC link station shall send without an
1343
+ acknowledgement. This shall range from 1 to
1344
+ (sdlcLSAdminMODULO - 1).
1345
+
1346
+ For link stations on switched SDLC lines,
1347
+ certain implementions may choose to override
1348
+ this administered value with the value
1349
+ received in the XID exchange.
1350
+
1351
+ Depending on the implementation, a write
1352
+ operation to this administered value may not
1353
+ change the operational value,
1354
+ sdlcLSOperMAXOUT, until the link station is
1355
+ cycled inactive.
1356
+
1357
+ An implementation can support only modulo 8,
1358
+ only modulo 128, or both.""",
1359
+ }, # column
1360
+ "sdlcLSAdminMODULO" : {
1361
+ "nodetype" : "column",
1362
+ "moduleName" : "SNA-SDLC-MIB",
1363
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.10",
1364
+ "status" : "current",
1365
+ "syntax" : {
1366
+ "type" : {
1367
+ "basetype" : "Enumeration",
1368
+ "eight" : {
1369
+ "nodetype" : "namednumber",
1370
+ "number" : "8"
1371
+ },
1372
+ "onetwentyeight" : {
1373
+ "nodetype" : "namednumber",
1374
+ "number" : "128"
1375
+ },
1376
+ },
1377
+ },
1378
+ "access" : "readwrite",
1379
+ "default" : "eight",
1380
+ "description" :
1381
+ """This object controls the modulus for an SDLC
1382
+ link station. This modulus determines the size
1383
+ of the rotating acknowledgement window used the
1384
+ SDLC link station pair.
1385
+
1386
+ A write operation to this administered value
1387
+ will not change the operational value,
1388
+ sdlcLSOperMODULO, until the link station is
1389
+ cycled inactive.
1390
+
1391
+ An implementation can support only modulo 8,
1392
+ only modulo 128, or both.""",
1393
+ }, # column
1394
+ "sdlcLSAdminRETRIESm" : {
1395
+ "nodetype" : "column",
1396
+ "moduleName" : "SNA-SDLC-MIB",
1397
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.11",
1398
+ "status" : "current",
1399
+ "syntax" : {
1400
+ "type" : {
1401
+ "basetype" : "Integer32",
1402
+ "ranges" : [
1403
+ {
1404
+ "min" : "0",
1405
+ "max" : "128"
1406
+ },
1407
+ ],
1408
+ "range" : {
1409
+ "min" : "0",
1410
+ "max" : "128"
1411
+ },
1412
+ },
1413
+ },
1414
+ "access" : "readwrite",
1415
+ "default" : "15",
1416
+ "description" :
1417
+ """This object controls number of retries in a
1418
+ retry sequence for the local SDLC link
1419
+ station. A retry sequence is a series of
1420
+ retransmitted frames ( data or control) for
1421
+ which no positive acknowledgement is received.
1422
+
1423
+ The number of times that the retry sequence is
1424
+ to be repeated is controlled by the object:
1425
+ sdlcLSAdminRETRIESn. The interval between retry
1426
+ sequences is controlled by the object:
1427
+ sdlcLSAdminRETRIESt.
1428
+
1429
+ A value of zero indicates no retries. If the
1430
+ value of sdlcLSAdminRETRIESm is zero, then the
1431
+ values of sdlcLSAdminRETRIESt and
1432
+ sdlcLSAdminRETRIESn should also be zero.
1433
+
1434
+ Depending on the implementation, a write
1435
+ operation to this administered value may not
1436
+ change the operational value,
1437
+ sdlcLSOperRETRIESm, until the link station is
1438
+ cycled inactive.""",
1439
+ }, # column
1440
+ "sdlcLSAdminRETRIESt" : {
1441
+ "nodetype" : "column",
1442
+ "moduleName" : "SNA-SDLC-MIB",
1443
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.12",
1444
+ "status" : "current",
1445
+ "syntax" : {
1446
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1447
+ },
1448
+ "access" : "readwrite",
1449
+ "default" : "0",
1450
+ "description" :
1451
+ """This object controls the interval (in 1/100ths
1452
+ of a second) between retry sequences for the
1453
+ local SDLC link station if multiple retry
1454
+ sequences are specified . A retry sequence is
1455
+ a series of retransmitted frames ( data or
1456
+ control) for which no positive acknowledgement
1457
+ is received.
1458
+
1459
+ The number of repeated retries sequences is
1460
+ controlled by the object: sdlcLSAdminRETRIESn.
1461
+ The retries per sequence is controlled by the
1462
+ object: sdlcLSAdminRETRIESm.
1463
+
1464
+ The object descriptor contains the name of an
1465
+ NCP configuration parameter, RETRIESt. Please
1466
+ note that the value of this object represents
1467
+ 1/100ths of a second while the NCP RETRIESt is
1468
+ represented in seconds.
1469
+
1470
+ Depending on the implementation, a write
1471
+ operation to this administered value may not
1472
+ change the operational value,
1473
+ sdlcLSOperRETRIESt, until the link station is
1474
+ cycled inactive.""",
1475
+ }, # column
1476
+ "sdlcLSAdminRETRIESn" : {
1477
+ "nodetype" : "column",
1478
+ "moduleName" : "SNA-SDLC-MIB",
1479
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.13",
1480
+ "status" : "current",
1481
+ "syntax" : {
1482
+ "type" : { "module" :"", "name" : "Integer32"},
1483
+ },
1484
+ "access" : "readwrite",
1485
+ "default" : "0",
1486
+ "description" :
1487
+ """This object controls the number of times that
1488
+ a retry sequence is repeated for the local SDLC
1489
+ link station. A retry sequence is a series of
1490
+ retransmitted frames ( data or control) for
1491
+ which no positive acknowledgement is received.
1492
+
1493
+ The interval between retry sequences is
1494
+ controlled by the object: sdlcLSAdminRETRIESn.
1495
+ The retries per sequence is controlled by the
1496
+ object: sdlcLSAdminRETRIESm.
1497
+
1498
+ Depending on the implementation, a write
1499
+ operation to this administered value may not
1500
+ change the operational value,
1501
+ sdlcLSOperRETRIESn, until the link station is
1502
+ cycled inactive.""",
1503
+ }, # column
1504
+ "sdlcLSAdminRNRLIMIT" : {
1505
+ "nodetype" : "column",
1506
+ "moduleName" : "SNA-SDLC-MIB",
1507
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.14",
1508
+ "status" : "current",
1509
+ "syntax" : {
1510
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1511
+ },
1512
+ "access" : "readwrite",
1513
+ "default" : "18000",
1514
+ "description" :
1515
+ """This object controls the length of time (in
1516
+ 1/100ths of a second) that an SDLC link station
1517
+ will allow its adjacent link station to remain
1518
+ in a busy (RNR) state before declaring it
1519
+ inoperative.
1520
+
1521
+ A value of sdlcLSAdminRNRLIMIT == 0 means there
1522
+ is no limit.
1523
+
1524
+ The object descriptor contains the name of an
1525
+ NCP configuration parameter, RNRLIMIT. Please
1526
+ note that the value of this object represents
1527
+ 1/100ths of a second while the NCP RNRLIMIT is
1528
+ represented in minutes.
1529
+
1530
+ Depending on the implementation, a write
1531
+ operation to this administered value may not
1532
+ change the operational value,
1533
+ sdlcLSOperRNRLIMIT, until the link station is
1534
+ cycled inactive.""",
1535
+ }, # column
1536
+ "sdlcLSAdminDATMODE" : {
1537
+ "nodetype" : "column",
1538
+ "moduleName" : "SNA-SDLC-MIB",
1539
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.15",
1540
+ "status" : "current",
1541
+ "syntax" : {
1542
+ "type" : {
1543
+ "basetype" : "Enumeration",
1544
+ "half" : {
1545
+ "nodetype" : "namednumber",
1546
+ "number" : "1"
1547
+ },
1548
+ "full" : {
1549
+ "nodetype" : "namednumber",
1550
+ "number" : "2"
1551
+ },
1552
+ },
1553
+ },
1554
+ "access" : "readwrite",
1555
+ "default" : "half",
1556
+ "description" :
1557
+ """This object controls whether communications
1558
+ mode with the adjacent link station is
1559
+ two-way-alternate (half) or two-way-simultaneous
1560
+ (full).
1561
+
1562
+ A write operation to this administered value
1563
+ will not change the operational value,
1564
+ sdlcLSOperDATMODE, until the link station is
1565
+ cycled inactive.""",
1566
+ }, # column
1567
+ "sdlcLSAdminGPoll" : {
1568
+ "nodetype" : "column",
1569
+ "moduleName" : "SNA-SDLC-MIB",
1570
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.16",
1571
+ "status" : "current",
1572
+ "syntax" : {
1573
+ "type" : {
1574
+ "basetype" : "Integer32",
1575
+ "ranges" : [
1576
+ {
1577
+ "min" : "0",
1578
+ "max" : "254"
1579
+ },
1580
+ ],
1581
+ "range" : {
1582
+ "min" : "0",
1583
+ "max" : "254"
1584
+ },
1585
+ },
1586
+ },
1587
+ "access" : "readwrite",
1588
+ "description" :
1589
+ """This object describes the group poll address
1590
+ for this link station instance. If group poll
1591
+ is not in effect for this link station
1592
+ instance, the value for sdlcLSAdminGPoll should
1593
+ be zero.
1594
+
1595
+ Depending on the implementation, a write
1596
+ operation to this administered value may not
1597
+ change the operational value, sdlcLSOperGPoll,
1598
+ until the link station is cycled inactive.""",
1599
+ }, # column
1600
+ "sdlcLSAdminSimRim" : {
1601
+ "nodetype" : "column",
1602
+ "moduleName" : "SNA-SDLC-MIB",
1603
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.17",
1604
+ "status" : "current",
1605
+ "syntax" : {
1606
+ "type" : {
1607
+ "basetype" : "Enumeration",
1608
+ "no" : {
1609
+ "nodetype" : "namednumber",
1610
+ "number" : "1"
1611
+ },
1612
+ "yes" : {
1613
+ "nodetype" : "namednumber",
1614
+ "number" : "2"
1615
+ },
1616
+ },
1617
+ },
1618
+ "access" : "readwrite",
1619
+ "default" : "no",
1620
+ "description" :
1621
+ """This object controls the support for
1622
+ transmission and receipt of SIM and RIM control
1623
+ frames for this link station. The value of
1624
+ this object controls the setting of the
1625
+ transmit-receive capability sent in the XID
1626
+ field.""",
1627
+ }, # column
1628
+ "sdlcLSAdminXmitRcvCap" : {
1629
+ "nodetype" : "column",
1630
+ "moduleName" : "SNA-SDLC-MIB",
1631
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.18",
1632
+ "status" : "current",
1633
+ "syntax" : {
1634
+ "type" : {
1635
+ "basetype" : "Enumeration",
1636
+ "twa" : {
1637
+ "nodetype" : "namednumber",
1638
+ "number" : "1"
1639
+ },
1640
+ "tws" : {
1641
+ "nodetype" : "namednumber",
1642
+ "number" : "2"
1643
+ },
1644
+ },
1645
+ },
1646
+ "access" : "readwrite",
1647
+ "default" : "twa",
1648
+ "description" :
1649
+ """This object controls the transmit-receive
1650
+ capabilities for this SDLC link station. The
1651
+ value of this object establishes the value of
1652
+ the transmit-receive capability indicator sent
1653
+ in the XID image to the adjacent link station.""",
1654
+ }, # column
1655
+ "sdlcLSAdminRowStatus" : {
1656
+ "nodetype" : "column",
1657
+ "moduleName" : "SNA-SDLC-MIB",
1658
+ "oid" : "1.3.6.1.2.1.41.1.2.1.1.19",
1659
+ "status" : "current",
1660
+ "syntax" : {
1661
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1662
+ },
1663
+ "access" : "readwrite",
1664
+ "description" :
1665
+ """This object is used by a management station to
1666
+ create or delete the row entry in
1667
+ sdlcLSAdminTable following the RowStatus
1668
+ textual convention.
1669
+
1670
+ Upon successful creation of the row, an agent
1671
+ automatically creates a corresponding entry in
1672
+ the sdlcLSOperTable with sdlcLSOperState equal
1673
+ to 'discontacted (1)'.""",
1674
+ }, # column
1675
+ "sdlcLSOperTable" : {
1676
+ "nodetype" : "table",
1677
+ "moduleName" : "SNA-SDLC-MIB",
1678
+ "oid" : "1.3.6.1.2.1.41.1.2.2",
1679
+ "status" : "current",
1680
+ "description" :
1681
+ """This table contains current SDLC link
1682
+ parameters. Many of these objects have
1683
+ corresponding objects in the
1684
+ sdlcLSAdminTable.""",
1685
+ }, # table
1686
+ "sdlcLSOperEntry" : {
1687
+ "nodetype" : "row",
1688
+ "moduleName" : "SNA-SDLC-MIB",
1689
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1",
1690
+ "status" : "current",
1691
+ "linkage" : [
1692
+ "ifIndex",
1693
+ "sdlcLSAddress",
1694
+ ],
1695
+ "description" :
1696
+ """A list of status and control values for an
1697
+ SDLC link station.""",
1698
+ }, # row
1699
+ "sdlcLSOperName" : {
1700
+ "nodetype" : "column",
1701
+ "moduleName" : "SNA-SDLC-MIB",
1702
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.1",
1703
+ "status" : "current",
1704
+ "syntax" : {
1705
+ "type" : {
1706
+ "basetype" : "OctetString",
1707
+ "parent module" : {
1708
+ "name" : "SNMPv2-TC",
1709
+ "type" : "DisplayString",
1710
+ },
1711
+ "ranges" : [
1712
+ {
1713
+ "min" : "1",
1714
+ "max" : "10"
1715
+ },
1716
+ ],
1717
+ "range" : {
1718
+ "min" : "1",
1719
+ "max" : "10"
1720
+ },
1721
+ },
1722
+ },
1723
+ "access" : "readonly",
1724
+ "description" :
1725
+ """An octet string that defines the name of the
1726
+ remote SDLC link station. This field is
1727
+ received in the XID3 control vector 0x0E, type
1728
+ 0xF7.""",
1729
+ }, # column
1730
+ "sdlcLSOperRole" : {
1731
+ "nodetype" : "column",
1732
+ "moduleName" : "SNA-SDLC-MIB",
1733
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.2",
1734
+ "status" : "current",
1735
+ "syntax" : {
1736
+ "type" : {
1737
+ "basetype" : "Enumeration",
1738
+ "primary" : {
1739
+ "nodetype" : "namednumber",
1740
+ "number" : "1"
1741
+ },
1742
+ "secondary" : {
1743
+ "nodetype" : "namednumber",
1744
+ "number" : "2"
1745
+ },
1746
+ "undefined" : {
1747
+ "nodetype" : "namednumber",
1748
+ "number" : "3"
1749
+ },
1750
+ },
1751
+ },
1752
+ "access" : "readonly",
1753
+ "description" :
1754
+ """This object reflects the current role that the
1755
+ link station is assuming.
1756
+
1757
+ The value of sdlcLSOperRole is undefined(3)
1758
+ whenever the link station role has not yet been
1759
+ established by the mode setting command.""",
1760
+ }, # column
1761
+ "sdlcLSOperState" : {
1762
+ "nodetype" : "column",
1763
+ "moduleName" : "SNA-SDLC-MIB",
1764
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.3",
1765
+ "status" : "current",
1766
+ "syntax" : {
1767
+ "type" : {
1768
+ "basetype" : "Enumeration",
1769
+ "discontacted" : {
1770
+ "nodetype" : "namednumber",
1771
+ "number" : "1"
1772
+ },
1773
+ "contactPending" : {
1774
+ "nodetype" : "namednumber",
1775
+ "number" : "2"
1776
+ },
1777
+ "contacted" : {
1778
+ "nodetype" : "namednumber",
1779
+ "number" : "3"
1780
+ },
1781
+ "discontactPending" : {
1782
+ "nodetype" : "namednumber",
1783
+ "number" : "4"
1784
+ },
1785
+ },
1786
+ },
1787
+ "access" : "readonly",
1788
+ "description" :
1789
+ """This object describes the operational state of
1790
+ the SDLC link station. The managed system
1791
+ shall attempt to keep this value consistent
1792
+ with the administered state, sdlcLSAdminState""",
1793
+ }, # column
1794
+ "sdlcLSOperMAXDATASend" : {
1795
+ "nodetype" : "column",
1796
+ "moduleName" : "SNA-SDLC-MIB",
1797
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.4",
1798
+ "status" : "current",
1799
+ "syntax" : {
1800
+ "type" : { "module" :"", "name" : "Integer32"},
1801
+ },
1802
+ "access" : "readonly",
1803
+ "description" :
1804
+ """This object contains the actual maximum PDU
1805
+ size that the local link station can send to
1806
+ the adjacent link station. This object is
1807
+ established from the value received in the XID
1808
+ from the adjacent link station. If no XID
1809
+ is received, then this value is implementation
1810
+ dependent (for instance, it could be the value
1811
+ of sdlcLSAdminMAXDATASend).
1812
+ This value includes the Transmission Header
1813
+ (TH) and the Request Header (RH).""",
1814
+ }, # column
1815
+ "sdlcLSOperREPLYTO" : {
1816
+ "nodetype" : "column",
1817
+ "moduleName" : "SNA-SDLC-MIB",
1818
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.5",
1819
+ "status" : "current",
1820
+ "syntax" : {
1821
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1822
+ },
1823
+ "access" : "readonly",
1824
+ "description" :
1825
+ """This object reflects the current reply timeout
1826
+ (in 1/100ths of a second) for an SDLC link
1827
+ station. If the link station does not receive
1828
+ a response to a poll or message before the
1829
+ specified time expires then the appropriate
1830
+ error recovery shall be initiated.
1831
+
1832
+ The object descriptor contains the name of an
1833
+ NCP configuration parameter, REPLYTO. Please
1834
+ note that the value of this object represents
1835
+ 1/100ths of a second while the NCP REPLYTO is
1836
+ represented in 1/10ths of a second.
1837
+
1838
+ This object only has meaning for SDLC ports
1839
+ where sdlcPortOperRole == primary """,
1840
+ }, # column
1841
+ "sdlcLSOperMAXIN" : {
1842
+ "nodetype" : "column",
1843
+ "moduleName" : "SNA-SDLC-MIB",
1844
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.6",
1845
+ "status" : "current",
1846
+ "syntax" : {
1847
+ "type" : {
1848
+ "basetype" : "Integer32",
1849
+ "ranges" : [
1850
+ {
1851
+ "min" : "1",
1852
+ "max" : "127"
1853
+ },
1854
+ ],
1855
+ "range" : {
1856
+ "min" : "1",
1857
+ "max" : "127"
1858
+ },
1859
+ },
1860
+ },
1861
+ "access" : "readonly",
1862
+ "description" :
1863
+ """This object reflects the current maximum
1864
+ number of unacknowledged I-frames which an SDLC
1865
+ link station may receive. This shall range
1866
+ from 1 to (sdlcLSOperMODULO - 1).""",
1867
+ }, # column
1868
+ "sdlcLSOperMAXOUT" : {
1869
+ "nodetype" : "column",
1870
+ "moduleName" : "SNA-SDLC-MIB",
1871
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.7",
1872
+ "status" : "current",
1873
+ "syntax" : {
1874
+ "type" : {
1875
+ "basetype" : "Integer32",
1876
+ "ranges" : [
1877
+ {
1878
+ "min" : "1",
1879
+ "max" : "127"
1880
+ },
1881
+ ],
1882
+ "range" : {
1883
+ "min" : "1",
1884
+ "max" : "127"
1885
+ },
1886
+ },
1887
+ },
1888
+ "access" : "readonly",
1889
+ "description" :
1890
+ """This object controls the maximum number of
1891
+ consecutive unacknowledged I-frames which an
1892
+ SDLC link station shall send without an
1893
+ acknowledgement. This shall range from 1 to
1894
+ (sdlcLSAdminMODULO - 1).
1895
+ This value may controlled by the administered
1896
+ MAXOUT, sdlcLSAdminMAXOUT, or by the MAXIN value
1897
+ received during the XID exchange.""",
1898
+ }, # column
1899
+ "sdlcLSOperMODULO" : {
1900
+ "nodetype" : "column",
1901
+ "moduleName" : "SNA-SDLC-MIB",
1902
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.8",
1903
+ "status" : "current",
1904
+ "syntax" : {
1905
+ "type" : {
1906
+ "basetype" : "Enumeration",
1907
+ "eight" : {
1908
+ "nodetype" : "namednumber",
1909
+ "number" : "8"
1910
+ },
1911
+ "onetwentyeight" : {
1912
+ "nodetype" : "namednumber",
1913
+ "number" : "128"
1914
+ },
1915
+ },
1916
+ },
1917
+ "access" : "readonly",
1918
+ "default" : "eight",
1919
+ "description" :
1920
+ """This object reflects the current modulus for
1921
+ an SDLC link station. This modulus determines
1922
+ the size of rotating acknowledgement window
1923
+ used by the SDLC link station pair.""",
1924
+ }, # column
1925
+ "sdlcLSOperRETRIESm" : {
1926
+ "nodetype" : "column",
1927
+ "moduleName" : "SNA-SDLC-MIB",
1928
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.9",
1929
+ "status" : "current",
1930
+ "syntax" : {
1931
+ "type" : {
1932
+ "basetype" : "Integer32",
1933
+ "ranges" : [
1934
+ {
1935
+ "min" : "0",
1936
+ "max" : "128"
1937
+ },
1938
+ ],
1939
+ "range" : {
1940
+ "min" : "0",
1941
+ "max" : "128"
1942
+ },
1943
+ },
1944
+ },
1945
+ "access" : "readonly",
1946
+ "description" :
1947
+ """This object controls number of retries in a
1948
+ retry sequence for an SDLC link station. A
1949
+ retry sequence is a series of retransmitted
1950
+ frames ( data or control) for which no positive
1951
+ acknowledgement is received.
1952
+
1953
+ The current number of times that the retry
1954
+ sequence is to be repeated is reflected by the
1955
+ object: sdlcLSOperRETRIESn. The current
1956
+ interval between retry sequences is reflected
1957
+ by the object: sdlcLSOperRETRIESt.""",
1958
+ }, # column
1959
+ "sdlcLSOperRETRIESt" : {
1960
+ "nodetype" : "column",
1961
+ "moduleName" : "SNA-SDLC-MIB",
1962
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.10",
1963
+ "status" : "current",
1964
+ "syntax" : {
1965
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1966
+ },
1967
+ "access" : "readonly",
1968
+ "description" :
1969
+ """This object reflects the current interval (in
1970
+ 1/100ths of a second) between retry sequences
1971
+ for an SDLC link station if multiple retry
1972
+ sequences are specified. A retry sequence is a
1973
+ series of retransmitted frames ( data or
1974
+ control) for which no positive acknowledgement
1975
+ is received.
1976
+
1977
+ The object descriptor contains the name of an
1978
+ NCP configuration parameter, RETRIESt. Please
1979
+ note that the value of this object represents
1980
+ 1/100ths of a second while the NCP RETRIESt is
1981
+ represented in seconds.
1982
+
1983
+ The current number of repeated retries
1984
+ sequences is reflected by the object:
1985
+ sdlcLSOperRETRIESn. The current retries per
1986
+ sequence is reflected by the object:
1987
+ sdlcLSOperRETRIESm.""",
1988
+ }, # column
1989
+ "sdlcLSOperRETRIESn" : {
1990
+ "nodetype" : "column",
1991
+ "moduleName" : "SNA-SDLC-MIB",
1992
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.11",
1993
+ "status" : "current",
1994
+ "syntax" : {
1995
+ "type" : {
1996
+ "basetype" : "Integer32",
1997
+ "ranges" : [
1998
+ {
1999
+ "min" : "0",
2000
+ "max" : "127"
2001
+ },
2002
+ ],
2003
+ "range" : {
2004
+ "min" : "0",
2005
+ "max" : "127"
2006
+ },
2007
+ },
2008
+ },
2009
+ "access" : "readonly",
2010
+ "description" :
2011
+ """This object reflects the current number of
2012
+ times that a retry sequence is repeated for an
2013
+ SDLC link station. A retry sequence is a
2014
+ series of retransmitted frames ( data or
2015
+ control) for which no positive acknowledgement
2016
+ is received.
2017
+
2018
+ The current interval between retry sequences is
2019
+ reflected by the object: sdlcLSOperRETRIESn.
2020
+ The current retries per sequence is reflected
2021
+ by the object: sdlcLSOperRETRIESm.""",
2022
+ }, # column
2023
+ "sdlcLSOperRNRLIMIT" : {
2024
+ "nodetype" : "column",
2025
+ "moduleName" : "SNA-SDLC-MIB",
2026
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.12",
2027
+ "status" : "current",
2028
+ "syntax" : {
2029
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
2030
+ },
2031
+ "access" : "readonly",
2032
+ "description" :
2033
+ """This object reflects the current length of
2034
+ time (in 1/100ths of a second) that an SDLC
2035
+ link station will allow its adjacent link
2036
+ station to remain in a busy (RNR) state before
2037
+ declaring it inoperative.
2038
+
2039
+ The object descriptor contains the name of an
2040
+ NCP configuration parameter, RNRLIMIT. Please
2041
+ note that the value of this object represents
2042
+ 1/100ths of a second while the NCP RNRLIMIT is
2043
+ represented in minutes.
2044
+
2045
+ A value of sdlcLSOperRNRLIMIT == 0 means there
2046
+ is no limit.""",
2047
+ }, # column
2048
+ "sdlcLSOperDATMODE" : {
2049
+ "nodetype" : "column",
2050
+ "moduleName" : "SNA-SDLC-MIB",
2051
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.13",
2052
+ "status" : "current",
2053
+ "syntax" : {
2054
+ "type" : {
2055
+ "basetype" : "Enumeration",
2056
+ "half" : {
2057
+ "nodetype" : "namednumber",
2058
+ "number" : "1"
2059
+ },
2060
+ "full" : {
2061
+ "nodetype" : "namednumber",
2062
+ "number" : "2"
2063
+ },
2064
+ },
2065
+ },
2066
+ "access" : "readonly",
2067
+ "description" :
2068
+ """This object reflects whether the current
2069
+ communications mode with the adjacent link
2070
+ station is two-way-alternate (half) or
2071
+ two-way-simultaneous (full).""",
2072
+ }, # column
2073
+ "sdlcLSOperLastModifyTime" : {
2074
+ "nodetype" : "column",
2075
+ "moduleName" : "SNA-SDLC-MIB",
2076
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.14",
2077
+ "status" : "current",
2078
+ "syntax" : {
2079
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
2080
+ },
2081
+ "access" : "readonly",
2082
+ "description" :
2083
+ """This object describes the value of sysUpTime
2084
+ when this link station definition was last
2085
+ modified. If the link station has not been
2086
+ modified, then this value shall be zero.""",
2087
+ }, # column
2088
+ "sdlcLSOperLastFailTime" : {
2089
+ "nodetype" : "column",
2090
+ "moduleName" : "SNA-SDLC-MIB",
2091
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.15",
2092
+ "status" : "current",
2093
+ "syntax" : {
2094
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
2095
+ },
2096
+ "access" : "readonly",
2097
+ "description" :
2098
+ """This object describes the value of sysUpTime
2099
+ when this SDLC link station last failed. If
2100
+ the link station has not failed, then this
2101
+ value shall be zero.""",
2102
+ }, # column
2103
+ "sdlcLSOperLastFailCause" : {
2104
+ "nodetype" : "column",
2105
+ "moduleName" : "SNA-SDLC-MIB",
2106
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.16",
2107
+ "status" : "current",
2108
+ "syntax" : {
2109
+ "type" : {
2110
+ "basetype" : "Enumeration",
2111
+ "undefined" : {
2112
+ "nodetype" : "namednumber",
2113
+ "number" : "1"
2114
+ },
2115
+ "rxFRMR" : {
2116
+ "nodetype" : "namednumber",
2117
+ "number" : "2"
2118
+ },
2119
+ "txFRMR" : {
2120
+ "nodetype" : "namednumber",
2121
+ "number" : "3"
2122
+ },
2123
+ "noResponse" : {
2124
+ "nodetype" : "namednumber",
2125
+ "number" : "4"
2126
+ },
2127
+ "protocolErr" : {
2128
+ "nodetype" : "namednumber",
2129
+ "number" : "5"
2130
+ },
2131
+ "noActivity" : {
2132
+ "nodetype" : "namednumber",
2133
+ "number" : "6"
2134
+ },
2135
+ "rnrLimit" : {
2136
+ "nodetype" : "namednumber",
2137
+ "number" : "7"
2138
+ },
2139
+ "retriesExpired" : {
2140
+ "nodetype" : "namednumber",
2141
+ "number" : "8"
2142
+ },
2143
+ },
2144
+ },
2145
+ "access" : "readonly",
2146
+ "default" : "undefined",
2147
+ "description" :
2148
+ """This enumerated object reflects the cause of
2149
+ the last failure of this SDLC link station. If
2150
+ the link station has not failed, then this
2151
+ object will have a value of undefined(1).""",
2152
+ }, # column
2153
+ "sdlcLSOperLastFailCtrlIn" : {
2154
+ "nodetype" : "column",
2155
+ "moduleName" : "SNA-SDLC-MIB",
2156
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.17",
2157
+ "status" : "current",
2158
+ "syntax" : {
2159
+ "type" : {
2160
+ "basetype" : "OctetString",
2161
+ "ranges" : [
2162
+ {
2163
+ "min" : "1",
2164
+ "max" : "2"
2165
+ },
2166
+ ],
2167
+ "range" : {
2168
+ "min" : "1",
2169
+ "max" : "2"
2170
+ },
2171
+ },
2172
+ },
2173
+ "access" : "readonly",
2174
+ "description" :
2175
+ """This object reflects the last control octet or
2176
+ octets (depending on modulus) received by this
2177
+ SDLC link station at the time of the last
2178
+ failure. If the link station has not failed,
2179
+ then this value has no meaning.""",
2180
+ }, # column
2181
+ "sdlcLSOperLastFailCtrlOut" : {
2182
+ "nodetype" : "column",
2183
+ "moduleName" : "SNA-SDLC-MIB",
2184
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.18",
2185
+ "status" : "current",
2186
+ "syntax" : {
2187
+ "type" : {
2188
+ "basetype" : "OctetString",
2189
+ "ranges" : [
2190
+ {
2191
+ "min" : "1",
2192
+ "max" : "2"
2193
+ },
2194
+ ],
2195
+ "range" : {
2196
+ "min" : "1",
2197
+ "max" : "2"
2198
+ },
2199
+ },
2200
+ },
2201
+ "access" : "readonly",
2202
+ "description" :
2203
+ """This object reflects the last control octet or
2204
+ octets (depending on modulus) sent by this SDLC
2205
+ link station at the time of the last failure.
2206
+ If the link station has not failed, then this
2207
+ value has no meaning.""",
2208
+ }, # column
2209
+ "sdlcLSOperLastFailFRMRInfo" : {
2210
+ "nodetype" : "column",
2211
+ "moduleName" : "SNA-SDLC-MIB",
2212
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.19",
2213
+ "status" : "current",
2214
+ "syntax" : {
2215
+ "type" : {
2216
+ "basetype" : "OctetString",
2217
+ "ranges" : [
2218
+ {
2219
+ "min" : "3",
2220
+ "max" : "3"
2221
+ },
2222
+ ],
2223
+ "range" : {
2224
+ "min" : "3",
2225
+ "max" : "3"
2226
+ },
2227
+ },
2228
+ },
2229
+ "access" : "readonly",
2230
+ "description" :
2231
+ """This object reflects the information field of
2232
+ the FRMR frame if the last failure for this
2233
+ SDLC link station was as a result of an invalid
2234
+ frame. Otherwise, this field has no meaning.""",
2235
+ }, # column
2236
+ "sdlcLSOperLastFailREPLYTOs" : {
2237
+ "nodetype" : "column",
2238
+ "moduleName" : "SNA-SDLC-MIB",
2239
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.20",
2240
+ "status" : "current",
2241
+ "syntax" : {
2242
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2243
+ },
2244
+ "access" : "readonly",
2245
+ "description" :
2246
+ """This object reflects the number of times that
2247
+ the REPLYTO timer had expired for an SDLC link
2248
+ station at the time of the last failure. If the
2249
+ link station has not failed, then this value
2250
+ has no meaning.""",
2251
+ }, # column
2252
+ "sdlcLSOperEcho" : {
2253
+ "nodetype" : "column",
2254
+ "moduleName" : "SNA-SDLC-MIB",
2255
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.21",
2256
+ "status" : "current",
2257
+ "syntax" : {
2258
+ "type" : {
2259
+ "basetype" : "Enumeration",
2260
+ "no" : {
2261
+ "nodetype" : "namednumber",
2262
+ "number" : "1"
2263
+ },
2264
+ "yes" : {
2265
+ "nodetype" : "namednumber",
2266
+ "number" : "2"
2267
+ },
2268
+ },
2269
+ },
2270
+ "access" : "readonly",
2271
+ "default" : "no",
2272
+ "description" :
2273
+ """This object identifies whether the echo bit is
2274
+ in effect for this particular link station.""",
2275
+ }, # column
2276
+ "sdlcLSOperGPoll" : {
2277
+ "nodetype" : "column",
2278
+ "moduleName" : "SNA-SDLC-MIB",
2279
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.22",
2280
+ "status" : "current",
2281
+ "syntax" : {
2282
+ "type" : {
2283
+ "basetype" : "Integer32",
2284
+ "ranges" : [
2285
+ {
2286
+ "min" : "0",
2287
+ "max" : "254"
2288
+ },
2289
+ ],
2290
+ "range" : {
2291
+ "min" : "0",
2292
+ "max" : "254"
2293
+ },
2294
+ },
2295
+ },
2296
+ "access" : "readonly",
2297
+ "default" : "0",
2298
+ "description" :
2299
+ """This object describes the group poll address
2300
+ in effect for this link station instance.""",
2301
+ }, # column
2302
+ "sdlcLSOperSimRim" : {
2303
+ "nodetype" : "column",
2304
+ "moduleName" : "SNA-SDLC-MIB",
2305
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.23",
2306
+ "status" : "current",
2307
+ "syntax" : {
2308
+ "type" : {
2309
+ "basetype" : "Enumeration",
2310
+ "no" : {
2311
+ "nodetype" : "namednumber",
2312
+ "number" : "1"
2313
+ },
2314
+ "yes" : {
2315
+ "nodetype" : "namednumber",
2316
+ "number" : "2"
2317
+ },
2318
+ },
2319
+ },
2320
+ "access" : "readonly",
2321
+ "default" : "no",
2322
+ "description" :
2323
+ """This object reflects the support for
2324
+ transmission and receipt of SIM and RIM control
2325
+ frames for the adjacent link station. The
2326
+ value of this object is set from the XID field
2327
+ received from the adjacent link station.""",
2328
+ }, # column
2329
+ "sdlcLSOperXmitRcvCap" : {
2330
+ "nodetype" : "column",
2331
+ "moduleName" : "SNA-SDLC-MIB",
2332
+ "oid" : "1.3.6.1.2.1.41.1.2.2.1.24",
2333
+ "status" : "current",
2334
+ "syntax" : {
2335
+ "type" : {
2336
+ "basetype" : "Enumeration",
2337
+ "twa" : {
2338
+ "nodetype" : "namednumber",
2339
+ "number" : "1"
2340
+ },
2341
+ "tws" : {
2342
+ "nodetype" : "namednumber",
2343
+ "number" : "2"
2344
+ },
2345
+ },
2346
+ },
2347
+ "access" : "readonly",
2348
+ "default" : "twa",
2349
+ "description" :
2350
+ """This object reflects the transmit-receive
2351
+ capabilities for the adjacent SDLC link
2352
+ station. The value of this object is the value
2353
+ of the transmit-receive capability indicator
2354
+ received in the XID image from the adjacent
2355
+ link station.""",
2356
+ }, # column
2357
+ "sdlcLSStatsTable" : {
2358
+ "nodetype" : "table",
2359
+ "moduleName" : "SNA-SDLC-MIB",
2360
+ "oid" : "1.3.6.1.2.1.41.1.2.3",
2361
+ "status" : "current",
2362
+ "description" :
2363
+ """Each entry in this table contains statistics
2364
+ for a specific SDLC link station.""",
2365
+ }, # table
2366
+ "sdlcLSStatsEntry" : {
2367
+ "nodetype" : "row",
2368
+ "moduleName" : "SNA-SDLC-MIB",
2369
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1",
2370
+ "status" : "current",
2371
+ "linkage" : [
2372
+ "ifIndex",
2373
+ "sdlcLSAddress",
2374
+ ],
2375
+ "description" :
2376
+ """A list of statistics for an SDLC link station.""",
2377
+ }, # row
2378
+ "sdlcLSStatsBLUsIn" : {
2379
+ "nodetype" : "column",
2380
+ "moduleName" : "SNA-SDLC-MIB",
2381
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.1",
2382
+ "status" : "current",
2383
+ "syntax" : {
2384
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2385
+ },
2386
+ "access" : "readonly",
2387
+ "description" :
2388
+ """This object reflects the total basic link
2389
+ units (BLUs; frames) received from an adjacent
2390
+ SDLC link station since link station startup.
2391
+ At link station startup time, this object must
2392
+ be initialized to zero.""",
2393
+ }, # column
2394
+ "sdlcLSStatsBLUsOut" : {
2395
+ "nodetype" : "column",
2396
+ "moduleName" : "SNA-SDLC-MIB",
2397
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.2",
2398
+ "status" : "current",
2399
+ "syntax" : {
2400
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2401
+ },
2402
+ "access" : "readonly",
2403
+ "description" :
2404
+ """This object reflects the total basic link
2405
+ units (BLUs; frames), transmitted to an
2406
+ adjacent SDLC link station since link station
2407
+ startup. At link station startup time, this
2408
+ object must be initialized to zero.""",
2409
+ }, # column
2410
+ "sdlcLSStatsOctetsIn" : {
2411
+ "nodetype" : "column",
2412
+ "moduleName" : "SNA-SDLC-MIB",
2413
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.3",
2414
+ "status" : "current",
2415
+ "syntax" : {
2416
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2417
+ },
2418
+ "access" : "readonly",
2419
+ "description" :
2420
+ """This object reflects the total octets received
2421
+ from an adjacent SDLC link station since link
2422
+ station startup. This object covers the
2423
+ address, control, and information field of
2424
+ I-Frames only. At link station startup time,
2425
+ this object must be initialized to zero.""",
2426
+ }, # column
2427
+ "sdlcLSStatsOctetsOut" : {
2428
+ "nodetype" : "column",
2429
+ "moduleName" : "SNA-SDLC-MIB",
2430
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.4",
2431
+ "status" : "current",
2432
+ "syntax" : {
2433
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2434
+ },
2435
+ "access" : "readonly",
2436
+ "description" :
2437
+ """This object reflects the total octets
2438
+ transmitted to an adjacent SDLC link station
2439
+ since link station startup. This object covers
2440
+ the address, control, and information field of
2441
+ I-Frames only. At link station startup time,
2442
+ this object must be initialized to zero.""",
2443
+ }, # column
2444
+ "sdlcLSStatsPollsIn" : {
2445
+ "nodetype" : "column",
2446
+ "moduleName" : "SNA-SDLC-MIB",
2447
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.5",
2448
+ "status" : "current",
2449
+ "syntax" : {
2450
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2451
+ },
2452
+ "access" : "readonly",
2453
+ "description" :
2454
+ """This object reflects the total polls received
2455
+ from an adjacent SDLC link station since link
2456
+ station startup. At link station startup time,
2457
+ this object must be initialized to zero.""",
2458
+ }, # column
2459
+ "sdlcLSStatsPollsOut" : {
2460
+ "nodetype" : "column",
2461
+ "moduleName" : "SNA-SDLC-MIB",
2462
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.6",
2463
+ "status" : "current",
2464
+ "syntax" : {
2465
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2466
+ },
2467
+ "access" : "readonly",
2468
+ "description" :
2469
+ """This object reflects the total polls sent to
2470
+ an adjacent SDLC link station since link
2471
+ station startup. At link station startup time,
2472
+ this object must be initialized to zero.""",
2473
+ }, # column
2474
+ "sdlcLSStatsPollRspsOut" : {
2475
+ "nodetype" : "column",
2476
+ "moduleName" : "SNA-SDLC-MIB",
2477
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.7",
2478
+ "status" : "current",
2479
+ "syntax" : {
2480
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2481
+ },
2482
+ "access" : "readonly",
2483
+ "description" :
2484
+ """This object reflects the total number of poll
2485
+ responses sent to the adjacent SDLC link
2486
+ station since link station startup. This value
2487
+ includes I-frames that are sent in response to
2488
+ a poll.
2489
+
2490
+ At link station startup time, this object must
2491
+ be initialized to zero.""",
2492
+ }, # column
2493
+ "sdlcLSStatsPollRspsIn" : {
2494
+ "nodetype" : "column",
2495
+ "moduleName" : "SNA-SDLC-MIB",
2496
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.8",
2497
+ "status" : "current",
2498
+ "syntax" : {
2499
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2500
+ },
2501
+ "access" : "readonly",
2502
+ "description" :
2503
+ """This object reflects the total number of poll
2504
+ responses received from the adjacent SDLC link
2505
+ station since station startup. This value
2506
+ includes I-frames that are received in response
2507
+ to a poll.
2508
+
2509
+ At link station startup time, this object must
2510
+ be initialized to zero.""",
2511
+ }, # column
2512
+ "sdlcLSStatsLocalBusies" : {
2513
+ "nodetype" : "column",
2514
+ "moduleName" : "SNA-SDLC-MIB",
2515
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.9",
2516
+ "status" : "current",
2517
+ "syntax" : {
2518
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2519
+ },
2520
+ "access" : "readonly",
2521
+ "description" :
2522
+ """This object reflects the total number of times
2523
+ that the local SDLC link station has entered a
2524
+ busy state (RNR) since link station startup.
2525
+ At link station startup time, this object must
2526
+ be initialized to zero.""",
2527
+ }, # column
2528
+ "sdlcLSStatsRemoteBusies" : {
2529
+ "nodetype" : "column",
2530
+ "moduleName" : "SNA-SDLC-MIB",
2531
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.10",
2532
+ "status" : "current",
2533
+ "syntax" : {
2534
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2535
+ },
2536
+ "access" : "readonly",
2537
+ "description" :
2538
+ """This object reflects the total number of times
2539
+ that an adjacent ( remote) SDLC link station
2540
+ has entered a busy state (RNR) since link
2541
+ station startup. At link station startup time,
2542
+ this object must be initialized to zero.""",
2543
+ }, # column
2544
+ "sdlcLSStatsIFramesIn" : {
2545
+ "nodetype" : "column",
2546
+ "moduleName" : "SNA-SDLC-MIB",
2547
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.11",
2548
+ "status" : "current",
2549
+ "syntax" : {
2550
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2551
+ },
2552
+ "access" : "readonly",
2553
+ "description" :
2554
+ """This object reflects the total I-frames
2555
+ received from an adjacent SDLC link station
2556
+ since link station startup. At link station
2557
+ startup time, this object must be initialized
2558
+ to zero.""",
2559
+ }, # column
2560
+ "sdlcLSStatsIFramesOut" : {
2561
+ "nodetype" : "column",
2562
+ "moduleName" : "SNA-SDLC-MIB",
2563
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.12",
2564
+ "status" : "current",
2565
+ "syntax" : {
2566
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2567
+ },
2568
+ "access" : "readonly",
2569
+ "description" :
2570
+ """This object reflects the total I-frames
2571
+ transmitted to an adjacent SDLC link station
2572
+ since link station startup. At link station
2573
+ startup time, this object must be initialized
2574
+ to zero.""",
2575
+ }, # column
2576
+ "sdlcLSStatsUIFramesIn" : {
2577
+ "nodetype" : "column",
2578
+ "moduleName" : "SNA-SDLC-MIB",
2579
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.13",
2580
+ "status" : "current",
2581
+ "syntax" : {
2582
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2583
+ },
2584
+ "access" : "readonly",
2585
+ "description" :
2586
+ """This object reflects the total UI-frames
2587
+ received from an adjacent SDLC link station
2588
+ since link station startup.""",
2589
+ }, # column
2590
+ "sdlcLSStatsUIFramesOut" : {
2591
+ "nodetype" : "column",
2592
+ "moduleName" : "SNA-SDLC-MIB",
2593
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.14",
2594
+ "status" : "current",
2595
+ "syntax" : {
2596
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2597
+ },
2598
+ "access" : "readonly",
2599
+ "description" :
2600
+ """This object reflects the total UI-frames
2601
+ transmitted to an adjacent SDLC link station
2602
+ since link station startup.""",
2603
+ }, # column
2604
+ "sdlcLSStatsXIDsIn" : {
2605
+ "nodetype" : "column",
2606
+ "moduleName" : "SNA-SDLC-MIB",
2607
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.15",
2608
+ "status" : "current",
2609
+ "syntax" : {
2610
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2611
+ },
2612
+ "access" : "readonly",
2613
+ "description" :
2614
+ """This object reflects the total XID frames
2615
+ received from an adjacent SDLC link station
2616
+ since link station startup.""",
2617
+ }, # column
2618
+ "sdlcLSStatsXIDsOut" : {
2619
+ "nodetype" : "column",
2620
+ "moduleName" : "SNA-SDLC-MIB",
2621
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.16",
2622
+ "status" : "current",
2623
+ "syntax" : {
2624
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2625
+ },
2626
+ "access" : "readonly",
2627
+ "description" :
2628
+ """This object reflects the total XID frames
2629
+ transmitted to an adjacent SDLC link station
2630
+ since link station startup.""",
2631
+ }, # column
2632
+ "sdlcLSStatsTESTsIn" : {
2633
+ "nodetype" : "column",
2634
+ "moduleName" : "SNA-SDLC-MIB",
2635
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.17",
2636
+ "status" : "current",
2637
+ "syntax" : {
2638
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2639
+ },
2640
+ "access" : "readonly",
2641
+ "description" :
2642
+ """This object reflects the total TEST frames,
2643
+ commands or responses, received from an
2644
+ adjacent SDLC link station since link station
2645
+ startup.""",
2646
+ }, # column
2647
+ "sdlcLSStatsTESTsOut" : {
2648
+ "nodetype" : "column",
2649
+ "moduleName" : "SNA-SDLC-MIB",
2650
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.18",
2651
+ "status" : "current",
2652
+ "syntax" : {
2653
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2654
+ },
2655
+ "access" : "readonly",
2656
+ "description" :
2657
+ """This object reflects the total TEST frames,
2658
+ commands or responses, transmitted to an
2659
+ adjacent SDLC link station since link station
2660
+ startup.""",
2661
+ }, # column
2662
+ "sdlcLSStatsREJsIn" : {
2663
+ "nodetype" : "column",
2664
+ "moduleName" : "SNA-SDLC-MIB",
2665
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.19",
2666
+ "status" : "current",
2667
+ "syntax" : {
2668
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2669
+ },
2670
+ "access" : "readonly",
2671
+ "description" :
2672
+ """This object reflects the total REJ frames
2673
+ received from an adjacent SDLC link station
2674
+ since link station startup.""",
2675
+ }, # column
2676
+ "sdlcLSStatsREJsOut" : {
2677
+ "nodetype" : "column",
2678
+ "moduleName" : "SNA-SDLC-MIB",
2679
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.20",
2680
+ "status" : "current",
2681
+ "syntax" : {
2682
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2683
+ },
2684
+ "access" : "readonly",
2685
+ "description" :
2686
+ """This object reflects the total REJ frames
2687
+ transmitted to an adjacent SDLC link station
2688
+ since link station startup.""",
2689
+ }, # column
2690
+ "sdlcLSStatsFRMRsIn" : {
2691
+ "nodetype" : "column",
2692
+ "moduleName" : "SNA-SDLC-MIB",
2693
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.21",
2694
+ "status" : "current",
2695
+ "syntax" : {
2696
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2697
+ },
2698
+ "access" : "readonly",
2699
+ "description" :
2700
+ """This object reflects the total frame reject
2701
+ (FRMR) frames received from an adjacent SDLC
2702
+ link station since link station startup.""",
2703
+ }, # column
2704
+ "sdlcLSStatsFRMRsOut" : {
2705
+ "nodetype" : "column",
2706
+ "moduleName" : "SNA-SDLC-MIB",
2707
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.22",
2708
+ "status" : "current",
2709
+ "syntax" : {
2710
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2711
+ },
2712
+ "access" : "readonly",
2713
+ "description" :
2714
+ """This object reflects the total frame reject
2715
+ (FRMR) frames transmitted to an adjacent SDLC
2716
+ link station since link station startup.""",
2717
+ }, # column
2718
+ "sdlcLSStatsSIMsIn" : {
2719
+ "nodetype" : "column",
2720
+ "moduleName" : "SNA-SDLC-MIB",
2721
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.23",
2722
+ "status" : "current",
2723
+ "syntax" : {
2724
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2725
+ },
2726
+ "access" : "readonly",
2727
+ "description" :
2728
+ """This object reflects the total set
2729
+ initialization mode (SIM) frames received from
2730
+ an adjacent SDLC link station since link station
2731
+ startup.""",
2732
+ }, # column
2733
+ "sdlcLSStatsSIMsOut" : {
2734
+ "nodetype" : "column",
2735
+ "moduleName" : "SNA-SDLC-MIB",
2736
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.24",
2737
+ "status" : "current",
2738
+ "syntax" : {
2739
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2740
+ },
2741
+ "access" : "readonly",
2742
+ "description" :
2743
+ """This object reflects the total set
2744
+ initialization mode (SIM) frames transmitted to
2745
+ an adjacent SDLC link station since link station
2746
+ startup. At link station startup time, this
2747
+ object must be initialized to zero.""",
2748
+ }, # column
2749
+ "sdlcLSStatsRIMsIn" : {
2750
+ "nodetype" : "column",
2751
+ "moduleName" : "SNA-SDLC-MIB",
2752
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.25",
2753
+ "status" : "current",
2754
+ "syntax" : {
2755
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2756
+ },
2757
+ "access" : "readonly",
2758
+ "description" :
2759
+ """This object reflects the total request
2760
+ initialization mode (RIM) frames received from
2761
+ an adjacent SDLC link station since link station
2762
+ startup. At link station startup time, this
2763
+ object must be initialized to zero.""",
2764
+ }, # column
2765
+ "sdlcLSStatsRIMsOut" : {
2766
+ "nodetype" : "column",
2767
+ "moduleName" : "SNA-SDLC-MIB",
2768
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.26",
2769
+ "status" : "current",
2770
+ "syntax" : {
2771
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2772
+ },
2773
+ "access" : "readonly",
2774
+ "description" :
2775
+ """This object reflects the total request
2776
+ initialization mode (RIM) frames transmitted to
2777
+ an adjacent SDLC link station since link station
2778
+ startup. At link station startup time, this
2779
+ object must be initialized to zero.""",
2780
+ }, # column
2781
+ "sdlcLSStatsDISCIn" : {
2782
+ "nodetype" : "column",
2783
+ "moduleName" : "SNA-SDLC-MIB",
2784
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.27",
2785
+ "status" : "current",
2786
+ "syntax" : {
2787
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2788
+ },
2789
+ "access" : "readonly",
2790
+ "description" :
2791
+ """This object reflects the total number of
2792
+ disconnect (DISC) requests received from an
2793
+ adjacent SDLC link station since link station
2794
+ startup. At link station startup time, this
2795
+ object must be initialized to zero.""",
2796
+ }, # column
2797
+ "sdlcLSStatsDISCOut" : {
2798
+ "nodetype" : "column",
2799
+ "moduleName" : "SNA-SDLC-MIB",
2800
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.28",
2801
+ "status" : "current",
2802
+ "syntax" : {
2803
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2804
+ },
2805
+ "access" : "readonly",
2806
+ "description" :
2807
+ """This object reflects the total number of
2808
+ disconnect (DISC) requests transmited to an
2809
+ adjacent SDLC link station since link station
2810
+ startup. At link station startup time, this
2811
+ object must be initialized to zero.""",
2812
+ }, # column
2813
+ "sdlcLSStatsUAIn" : {
2814
+ "nodetype" : "column",
2815
+ "moduleName" : "SNA-SDLC-MIB",
2816
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.29",
2817
+ "status" : "current",
2818
+ "syntax" : {
2819
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2820
+ },
2821
+ "access" : "readonly",
2822
+ "description" :
2823
+ """This object reflects the total number of
2824
+ unnumbered acknowledgements (UA) requests
2825
+ received from an adjacent SDLC link station
2826
+ since link station startup. At link station
2827
+ startup time, this object must be initialized
2828
+ to zero.""",
2829
+ }, # column
2830
+ "sdlcLSStatsUAOut" : {
2831
+ "nodetype" : "column",
2832
+ "moduleName" : "SNA-SDLC-MIB",
2833
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.30",
2834
+ "status" : "current",
2835
+ "syntax" : {
2836
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2837
+ },
2838
+ "access" : "readonly",
2839
+ "description" :
2840
+ """This object reflects the total number of
2841
+ unnumbered acknowledgements (UA) requests
2842
+ transmited to an adjacent SDLC link station
2843
+ since link station startup. At link station
2844
+ startup time, this object must be initialized
2845
+ to zero.""",
2846
+ }, # column
2847
+ "sdlcLSStatsDMIn" : {
2848
+ "nodetype" : "column",
2849
+ "moduleName" : "SNA-SDLC-MIB",
2850
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.31",
2851
+ "status" : "current",
2852
+ "syntax" : {
2853
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2854
+ },
2855
+ "access" : "readonly",
2856
+ "description" :
2857
+ """This object reflects the total number of
2858
+ disconnect mode (DM) requests received from an
2859
+ adjacent SDLC link station since link station
2860
+ startup. At link station startup time, this
2861
+ object must be initialized to zero.""",
2862
+ }, # column
2863
+ "sdlcLSStatsDMOut" : {
2864
+ "nodetype" : "column",
2865
+ "moduleName" : "SNA-SDLC-MIB",
2866
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.32",
2867
+ "status" : "current",
2868
+ "syntax" : {
2869
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2870
+ },
2871
+ "access" : "readonly",
2872
+ "description" :
2873
+ """This object reflects the total number of
2874
+ disconnect mode (DM) requests transmited to an
2875
+ adjacent SDLC link station since link station
2876
+ startup. At link station startup time, this
2877
+ object must be initialized to zero.""",
2878
+ }, # column
2879
+ "sdlcLSStatsSNRMIn" : {
2880
+ "nodetype" : "column",
2881
+ "moduleName" : "SNA-SDLC-MIB",
2882
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.33",
2883
+ "status" : "current",
2884
+ "syntax" : {
2885
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2886
+ },
2887
+ "access" : "readonly",
2888
+ "description" :
2889
+ """This object reflects the total number of
2890
+ set normal response mode (SNRM/SNRME) requests
2891
+ received from an adjacent SDLC link station
2892
+ since link station startup. At link station
2893
+ startup time, this object must be initialized
2894
+ to zero.""",
2895
+ }, # column
2896
+ "sdlcLSStatsSNRMOut" : {
2897
+ "nodetype" : "column",
2898
+ "moduleName" : "SNA-SDLC-MIB",
2899
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.34",
2900
+ "status" : "current",
2901
+ "syntax" : {
2902
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2903
+ },
2904
+ "access" : "readonly",
2905
+ "description" :
2906
+ """This object reflects the total number of
2907
+ set normal response mode (SNRM/SNRME) requests
2908
+ transmited to an adjacent SDLC link station
2909
+ since link station startup. At link station
2910
+ startup time, this object must be initialized
2911
+ to zero.""",
2912
+ }, # column
2913
+ "sdlcLSStatsProtocolErrs" : {
2914
+ "nodetype" : "column",
2915
+ "moduleName" : "SNA-SDLC-MIB",
2916
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.35",
2917
+ "status" : "current",
2918
+ "syntax" : {
2919
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2920
+ },
2921
+ "access" : "readonly",
2922
+ "description" :
2923
+ """This object reflects the total occurrences,
2924
+ since link station startup, where this SDLC
2925
+ link station has inactivated the link as a
2926
+ result of receiving a frame from its adjacent
2927
+ link station which was in violation of the
2928
+ protocol. At link station startup time, this
2929
+ object must be initialized to zero.""",
2930
+ }, # column
2931
+ "sdlcLSStatsActivityTOs" : {
2932
+ "nodetype" : "column",
2933
+ "moduleName" : "SNA-SDLC-MIB",
2934
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.36",
2935
+ "status" : "current",
2936
+ "syntax" : {
2937
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2938
+ },
2939
+ "access" : "readonly",
2940
+ "description" :
2941
+ """This object reflects the total occurrences,
2942
+ since startup, where this SDLC link station has
2943
+ inactivated the link as a result of no activity
2944
+ on the link. At link station startup time,
2945
+ this object must be initialized to zero.""",
2946
+ }, # column
2947
+ "sdlcLSStatsRNRLIMITs" : {
2948
+ "nodetype" : "column",
2949
+ "moduleName" : "SNA-SDLC-MIB",
2950
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.37",
2951
+ "status" : "current",
2952
+ "syntax" : {
2953
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2954
+ },
2955
+ "access" : "readonly",
2956
+ "description" :
2957
+ """This object reflects the total occurrences,
2958
+ since startup, where this SDLC link station has
2959
+ inactivated the link as a result of its
2960
+ RNRLIMIT timer expiring. At link station
2961
+ startup time, this object must be initialized
2962
+ to zero.""",
2963
+ }, # column
2964
+ "sdlcLSStatsRetriesExps" : {
2965
+ "nodetype" : "column",
2966
+ "moduleName" : "SNA-SDLC-MIB",
2967
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.38",
2968
+ "status" : "current",
2969
+ "syntax" : {
2970
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2971
+ },
2972
+ "access" : "readonly",
2973
+ "description" :
2974
+ """This object reflects the total occurrences,
2975
+ since startup, where this SDLC link station has
2976
+ inactivated the link as a result of a retry
2977
+ sequence being exhausted. At link station
2978
+ startup time, this object must be initialized
2979
+ to zero.""",
2980
+ }, # column
2981
+ "sdlcLSStatsRetransmitsIn" : {
2982
+ "nodetype" : "column",
2983
+ "moduleName" : "SNA-SDLC-MIB",
2984
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.39",
2985
+ "status" : "current",
2986
+ "syntax" : {
2987
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2988
+ },
2989
+ "access" : "readonly",
2990
+ "description" :
2991
+ """This object reflects the total number of
2992
+ information frames retransmitted by the remote
2993
+ link station because the N(s) received from
2994
+ that link station indicated that one or more
2995
+ information frames sent by that station were
2996
+ lost. This event causes the first missing
2997
+ information frame of a window and all
2998
+ subsequent information frames to be
2999
+ retransmitted. At link station startup time,
3000
+ this object must be initialized to zero.
3001
+
3002
+ Management: If the value of
3003
+ sdlcLSStatsRetransmitsIn grows over time, then
3004
+ the quality of the serial line is in
3005
+ question. You might want to look at
3006
+ decreasing the value for
3007
+ sdlcLSAdminMAXDATASend to compensate for the
3008
+ lower quality line.""",
3009
+ }, # column
3010
+ "sdlcLSStatsRetransmitsOut" : {
3011
+ "nodetype" : "column",
3012
+ "moduleName" : "SNA-SDLC-MIB",
3013
+ "oid" : "1.3.6.1.2.1.41.1.2.3.1.40",
3014
+ "status" : "current",
3015
+ "syntax" : {
3016
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3017
+ },
3018
+ "access" : "readonly",
3019
+ "description" :
3020
+ """This object reflects the total number of
3021
+ information frames retransmitted to a remote
3022
+ link station because the N(r) received from
3023
+ that link station indicated that one or more
3024
+ information frames sent to that station were
3025
+ lost. This event causes the first missing
3026
+ information frame of a window and all
3027
+ subsequent information frames to be
3028
+ retransmitted. At link station startup time,
3029
+ this object must be initialized to zero.
3030
+
3031
+ Management: If the value of
3032
+ sdlcLSStatsRetransmitsOut grows over time,
3033
+ then the quality of the serial line is in
3034
+ question. You might want to look at
3035
+ decreasing the value for sdlcLSAdminMAXDATASend
3036
+ to compensate for the lower quality line.""",
3037
+ }, # column
3038
+ "sdlcTraps" : {
3039
+ "nodetype" : "node",
3040
+ "moduleName" : "SNA-SDLC-MIB",
3041
+ "oid" : "1.3.6.1.2.1.41.1.3",
3042
+ }, # node
3043
+ "sdlcConformance" : {
3044
+ "nodetype" : "node",
3045
+ "moduleName" : "SNA-SDLC-MIB",
3046
+ "oid" : "1.3.6.1.2.1.41.1.4",
3047
+ }, # node
3048
+ "sdlcCompliances" : {
3049
+ "nodetype" : "node",
3050
+ "moduleName" : "SNA-SDLC-MIB",
3051
+ "oid" : "1.3.6.1.2.1.41.1.4.1",
3052
+ }, # node
3053
+ "sdlcGroups" : {
3054
+ "nodetype" : "node",
3055
+ "moduleName" : "SNA-SDLC-MIB",
3056
+ "oid" : "1.3.6.1.2.1.41.1.4.2",
3057
+ }, # node
3058
+ "sdlcCoreGroups" : {
3059
+ "nodetype" : "node",
3060
+ "moduleName" : "SNA-SDLC-MIB",
3061
+ "oid" : "1.3.6.1.2.1.41.1.4.2.1",
3062
+ }, # node
3063
+ "sdlcPrimaryGroups" : {
3064
+ "nodetype" : "node",
3065
+ "moduleName" : "SNA-SDLC-MIB",
3066
+ "oid" : "1.3.6.1.2.1.41.1.4.2.2",
3067
+ }, # node
3068
+ }, # nodes
3069
+
3070
+ "notifications" : {
3071
+ "sdlcPortStatusChange" : {
3072
+ "nodetype" : "notification",
3073
+ "moduleName" : "SNA-SDLC-MIB",
3074
+ "oid" : "1.3.6.1.2.1.41.1.3.1",
3075
+ "status" : "current",
3076
+ "objects" : {
3077
+ "ifIndex" : {
3078
+ "nodetype" : "object",
3079
+ "module" : "RFC1213-MIB"
3080
+ },
3081
+ "ifAdminStatus" : {
3082
+ "nodetype" : "object",
3083
+ "module" : "RFC1213-MIB"
3084
+ },
3085
+ "ifOperStatus" : {
3086
+ "nodetype" : "object",
3087
+ "module" : "RFC1213-MIB"
3088
+ },
3089
+ "sdlcPortOperLastFailTime" : {
3090
+ "nodetype" : "object",
3091
+ "module" : "SNA-SDLC-MIB"
3092
+ },
3093
+ "sdlcPortOperLastFailCause" : {
3094
+ "nodetype" : "object",
3095
+ "module" : "SNA-SDLC-MIB"
3096
+ },
3097
+ },
3098
+ "description" :
3099
+ """This trap indicates that the state of an SDLC
3100
+ port has transitioned to active or inactive.""",
3101
+ }, # notification
3102
+ "sdlcLSStatusChange" : {
3103
+ "nodetype" : "notification",
3104
+ "moduleName" : "SNA-SDLC-MIB",
3105
+ "oid" : "1.3.6.1.2.1.41.1.3.2",
3106
+ "status" : "current",
3107
+ "objects" : {
3108
+ "ifIndex" : {
3109
+ "nodetype" : "object",
3110
+ "module" : "RFC1213-MIB"
3111
+ },
3112
+ "sdlcLSAddress" : {
3113
+ "nodetype" : "object",
3114
+ "module" : "SNA-SDLC-MIB"
3115
+ },
3116
+ "sdlcLSOperState" : {
3117
+ "nodetype" : "object",
3118
+ "module" : "SNA-SDLC-MIB"
3119
+ },
3120
+ "sdlcLSAdminState" : {
3121
+ "nodetype" : "object",
3122
+ "module" : "SNA-SDLC-MIB"
3123
+ },
3124
+ "sdlcLSOperLastFailTime" : {
3125
+ "nodetype" : "object",
3126
+ "module" : "SNA-SDLC-MIB"
3127
+ },
3128
+ "sdlcLSOperLastFailCause" : {
3129
+ "nodetype" : "object",
3130
+ "module" : "SNA-SDLC-MIB"
3131
+ },
3132
+ "sdlcLSOperLastFailFRMRInfo" : {
3133
+ "nodetype" : "object",
3134
+ "module" : "SNA-SDLC-MIB"
3135
+ },
3136
+ "sdlcLSOperLastFailCtrlIn" : {
3137
+ "nodetype" : "object",
3138
+ "module" : "SNA-SDLC-MIB"
3139
+ },
3140
+ "sdlcLSOperLastFailCtrlOut" : {
3141
+ "nodetype" : "object",
3142
+ "module" : "SNA-SDLC-MIB"
3143
+ },
3144
+ "sdlcLSOperLastFailREPLYTOs" : {
3145
+ "nodetype" : "object",
3146
+ "module" : "SNA-SDLC-MIB"
3147
+ },
3148
+ },
3149
+ "description" :
3150
+ """This trap indicates that the state of an SDLC
3151
+ link station has transitioned to contacted or
3152
+ discontacted.""",
3153
+ }, # notification
3154
+ }, # notifications
3155
+
3156
+ "groups" : {
3157
+ "sdlcCorePortAdminGroup" : {
3158
+ "nodetype" : "group",
3159
+ "moduleName" : "SNA-SDLC-MIB",
3160
+ "oid" : "1.3.6.1.2.1.41.1.4.2.1.1",
3161
+ "status" : "current",
3162
+ "members" : {
3163
+ "sdlcPortAdminName" : {
3164
+ "nodetype" : "member",
3165
+ "module" : "SNA-SDLC-MIB"
3166
+ },
3167
+ "sdlcPortAdminRole" : {
3168
+ "nodetype" : "member",
3169
+ "module" : "SNA-SDLC-MIB"
3170
+ },
3171
+ "sdlcPortAdminType" : {
3172
+ "nodetype" : "member",
3173
+ "module" : "SNA-SDLC-MIB"
3174
+ },
3175
+ "sdlcPortAdminTopology" : {
3176
+ "nodetype" : "member",
3177
+ "module" : "SNA-SDLC-MIB"
3178
+ },
3179
+ "sdlcPortAdminISTATUS" : {
3180
+ "nodetype" : "member",
3181
+ "module" : "SNA-SDLC-MIB"
3182
+ },
3183
+ }, # members
3184
+ "description" :
3185
+ """The sdlcCorePortAdminGroup defines objects
3186
+ which are common to the PortAdmin group of all
3187
+ compliant link stations.""",
3188
+ }, # group
3189
+ "sdlcCorePortOperGroup" : {
3190
+ "nodetype" : "group",
3191
+ "moduleName" : "SNA-SDLC-MIB",
3192
+ "oid" : "1.3.6.1.2.1.41.1.4.2.1.2",
3193
+ "status" : "current",
3194
+ "members" : {
3195
+ "sdlcPortOperName" : {
3196
+ "nodetype" : "member",
3197
+ "module" : "SNA-SDLC-MIB"
3198
+ },
3199
+ "sdlcPortOperRole" : {
3200
+ "nodetype" : "member",
3201
+ "module" : "SNA-SDLC-MIB"
3202
+ },
3203
+ "sdlcPortOperType" : {
3204
+ "nodetype" : "member",
3205
+ "module" : "SNA-SDLC-MIB"
3206
+ },
3207
+ "sdlcPortOperTopology" : {
3208
+ "nodetype" : "member",
3209
+ "module" : "SNA-SDLC-MIB"
3210
+ },
3211
+ "sdlcPortOperISTATUS" : {
3212
+ "nodetype" : "member",
3213
+ "module" : "SNA-SDLC-MIB"
3214
+ },
3215
+ "sdlcPortOperACTIVTO" : {
3216
+ "nodetype" : "member",
3217
+ "module" : "SNA-SDLC-MIB"
3218
+ },
3219
+ "sdlcPortOperLastFailTime" : {
3220
+ "nodetype" : "member",
3221
+ "module" : "SNA-SDLC-MIB"
3222
+ },
3223
+ "sdlcPortOperLastFailCause" : {
3224
+ "nodetype" : "member",
3225
+ "module" : "SNA-SDLC-MIB"
3226
+ },
3227
+ }, # members
3228
+ "description" :
3229
+ """The sdlcCorePortOperGroup defines objects
3230
+ which are common to the PortOper group of all
3231
+ compliant link stations.""",
3232
+ }, # group
3233
+ "sdlcCorePortStatsGroup" : {
3234
+ "nodetype" : "group",
3235
+ "moduleName" : "SNA-SDLC-MIB",
3236
+ "oid" : "1.3.6.1.2.1.41.1.4.2.1.3",
3237
+ "status" : "current",
3238
+ "members" : {
3239
+ "sdlcPortStatsPhysicalFailures" : {
3240
+ "nodetype" : "member",
3241
+ "module" : "SNA-SDLC-MIB"
3242
+ },
3243
+ "sdlcPortStatsInvalidAddresses" : {
3244
+ "nodetype" : "member",
3245
+ "module" : "SNA-SDLC-MIB"
3246
+ },
3247
+ "sdlcPortStatsDwarfFrames" : {
3248
+ "nodetype" : "member",
3249
+ "module" : "SNA-SDLC-MIB"
3250
+ },
3251
+ }, # members
3252
+ "description" :
3253
+ """The sdlcCorePortStatsGroup defines objects
3254
+ which are common to the PortStats group of all
3255
+ compliant link stations.""",
3256
+ }, # group
3257
+ "sdlcCoreLSAdminGroup" : {
3258
+ "nodetype" : "group",
3259
+ "moduleName" : "SNA-SDLC-MIB",
3260
+ "oid" : "1.3.6.1.2.1.41.1.4.2.1.4",
3261
+ "status" : "current",
3262
+ "members" : {
3263
+ "sdlcLSAddress" : {
3264
+ "nodetype" : "member",
3265
+ "module" : "SNA-SDLC-MIB"
3266
+ },
3267
+ "sdlcLSAdminName" : {
3268
+ "nodetype" : "member",
3269
+ "module" : "SNA-SDLC-MIB"
3270
+ },
3271
+ "sdlcLSAdminState" : {
3272
+ "nodetype" : "member",
3273
+ "module" : "SNA-SDLC-MIB"
3274
+ },
3275
+ "sdlcLSAdminISTATUS" : {
3276
+ "nodetype" : "member",
3277
+ "module" : "SNA-SDLC-MIB"
3278
+ },
3279
+ "sdlcLSAdminMAXDATASend" : {
3280
+ "nodetype" : "member",
3281
+ "module" : "SNA-SDLC-MIB"
3282
+ },
3283
+ "sdlcLSAdminMAXDATARcv" : {
3284
+ "nodetype" : "member",
3285
+ "module" : "SNA-SDLC-MIB"
3286
+ },
3287
+ "sdlcLSAdminMAXIN" : {
3288
+ "nodetype" : "member",
3289
+ "module" : "SNA-SDLC-MIB"
3290
+ },
3291
+ "sdlcLSAdminMAXOUT" : {
3292
+ "nodetype" : "member",
3293
+ "module" : "SNA-SDLC-MIB"
3294
+ },
3295
+ "sdlcLSAdminMODULO" : {
3296
+ "nodetype" : "member",
3297
+ "module" : "SNA-SDLC-MIB"
3298
+ },
3299
+ "sdlcLSAdminRETRIESm" : {
3300
+ "nodetype" : "member",
3301
+ "module" : "SNA-SDLC-MIB"
3302
+ },
3303
+ "sdlcLSAdminRETRIESt" : {
3304
+ "nodetype" : "member",
3305
+ "module" : "SNA-SDLC-MIB"
3306
+ },
3307
+ "sdlcLSAdminRETRIESn" : {
3308
+ "nodetype" : "member",
3309
+ "module" : "SNA-SDLC-MIB"
3310
+ },
3311
+ "sdlcLSAdminRNRLIMIT" : {
3312
+ "nodetype" : "member",
3313
+ "module" : "SNA-SDLC-MIB"
3314
+ },
3315
+ "sdlcLSAdminDATMODE" : {
3316
+ "nodetype" : "member",
3317
+ "module" : "SNA-SDLC-MIB"
3318
+ },
3319
+ "sdlcLSAdminGPoll" : {
3320
+ "nodetype" : "member",
3321
+ "module" : "SNA-SDLC-MIB"
3322
+ },
3323
+ "sdlcLSAdminSimRim" : {
3324
+ "nodetype" : "member",
3325
+ "module" : "SNA-SDLC-MIB"
3326
+ },
3327
+ "sdlcLSAdminRowStatus" : {
3328
+ "nodetype" : "member",
3329
+ "module" : "SNA-SDLC-MIB"
3330
+ },
3331
+ }, # members
3332
+ "description" :
3333
+ """The sdlcCorePortAdminGroup defines objects
3334
+ which are common to the PortAdmin group of all
3335
+ compliant link stations.""",
3336
+ }, # group
3337
+ "sdlcCoreLSOperGroup" : {
3338
+ "nodetype" : "group",
3339
+ "moduleName" : "SNA-SDLC-MIB",
3340
+ "oid" : "1.3.6.1.2.1.41.1.4.2.1.5",
3341
+ "status" : "current",
3342
+ "members" : {
3343
+ "sdlcLSOperRole" : {
3344
+ "nodetype" : "member",
3345
+ "module" : "SNA-SDLC-MIB"
3346
+ },
3347
+ "sdlcLSOperState" : {
3348
+ "nodetype" : "member",
3349
+ "module" : "SNA-SDLC-MIB"
3350
+ },
3351
+ "sdlcLSOperMAXDATASend" : {
3352
+ "nodetype" : "member",
3353
+ "module" : "SNA-SDLC-MIB"
3354
+ },
3355
+ "sdlcLSOperMAXIN" : {
3356
+ "nodetype" : "member",
3357
+ "module" : "SNA-SDLC-MIB"
3358
+ },
3359
+ "sdlcLSOperMAXOUT" : {
3360
+ "nodetype" : "member",
3361
+ "module" : "SNA-SDLC-MIB"
3362
+ },
3363
+ "sdlcLSOperMODULO" : {
3364
+ "nodetype" : "member",
3365
+ "module" : "SNA-SDLC-MIB"
3366
+ },
3367
+ "sdlcLSOperRETRIESm" : {
3368
+ "nodetype" : "member",
3369
+ "module" : "SNA-SDLC-MIB"
3370
+ },
3371
+ "sdlcLSOperRETRIESt" : {
3372
+ "nodetype" : "member",
3373
+ "module" : "SNA-SDLC-MIB"
3374
+ },
3375
+ "sdlcLSOperRETRIESn" : {
3376
+ "nodetype" : "member",
3377
+ "module" : "SNA-SDLC-MIB"
3378
+ },
3379
+ "sdlcLSOperRNRLIMIT" : {
3380
+ "nodetype" : "member",
3381
+ "module" : "SNA-SDLC-MIB"
3382
+ },
3383
+ "sdlcLSOperDATMODE" : {
3384
+ "nodetype" : "member",
3385
+ "module" : "SNA-SDLC-MIB"
3386
+ },
3387
+ "sdlcLSOperLastFailTime" : {
3388
+ "nodetype" : "member",
3389
+ "module" : "SNA-SDLC-MIB"
3390
+ },
3391
+ "sdlcLSOperLastFailCause" : {
3392
+ "nodetype" : "member",
3393
+ "module" : "SNA-SDLC-MIB"
3394
+ },
3395
+ "sdlcLSOperLastFailCtrlIn" : {
3396
+ "nodetype" : "member",
3397
+ "module" : "SNA-SDLC-MIB"
3398
+ },
3399
+ "sdlcLSOperLastFailCtrlOut" : {
3400
+ "nodetype" : "member",
3401
+ "module" : "SNA-SDLC-MIB"
3402
+ },
3403
+ "sdlcLSOperLastFailFRMRInfo" : {
3404
+ "nodetype" : "member",
3405
+ "module" : "SNA-SDLC-MIB"
3406
+ },
3407
+ "sdlcLSOperLastFailREPLYTOs" : {
3408
+ "nodetype" : "member",
3409
+ "module" : "SNA-SDLC-MIB"
3410
+ },
3411
+ "sdlcLSOperEcho" : {
3412
+ "nodetype" : "member",
3413
+ "module" : "SNA-SDLC-MIB"
3414
+ },
3415
+ "sdlcLSOperGPoll" : {
3416
+ "nodetype" : "member",
3417
+ "module" : "SNA-SDLC-MIB"
3418
+ },
3419
+ }, # members
3420
+ "description" :
3421
+ """The sdlcCorePortOperGroup defines objects
3422
+ which are common to the PortOper group of all
3423
+ compliant link stations.""",
3424
+ }, # group
3425
+ "sdlcCoreLSStatsGroup" : {
3426
+ "nodetype" : "group",
3427
+ "moduleName" : "SNA-SDLC-MIB",
3428
+ "oid" : "1.3.6.1.2.1.41.1.4.2.1.6",
3429
+ "status" : "current",
3430
+ "members" : {
3431
+ "sdlcLSStatsBLUsIn" : {
3432
+ "nodetype" : "member",
3433
+ "module" : "SNA-SDLC-MIB"
3434
+ },
3435
+ "sdlcLSStatsBLUsOut" : {
3436
+ "nodetype" : "member",
3437
+ "module" : "SNA-SDLC-MIB"
3438
+ },
3439
+ "sdlcLSStatsOctetsIn" : {
3440
+ "nodetype" : "member",
3441
+ "module" : "SNA-SDLC-MIB"
3442
+ },
3443
+ "sdlcLSStatsOctetsOut" : {
3444
+ "nodetype" : "member",
3445
+ "module" : "SNA-SDLC-MIB"
3446
+ },
3447
+ "sdlcLSStatsPollsIn" : {
3448
+ "nodetype" : "member",
3449
+ "module" : "SNA-SDLC-MIB"
3450
+ },
3451
+ "sdlcLSStatsPollsOut" : {
3452
+ "nodetype" : "member",
3453
+ "module" : "SNA-SDLC-MIB"
3454
+ },
3455
+ "sdlcLSStatsPollRspsIn" : {
3456
+ "nodetype" : "member",
3457
+ "module" : "SNA-SDLC-MIB"
3458
+ },
3459
+ "sdlcLSStatsPollRspsOut" : {
3460
+ "nodetype" : "member",
3461
+ "module" : "SNA-SDLC-MIB"
3462
+ },
3463
+ "sdlcLSStatsLocalBusies" : {
3464
+ "nodetype" : "member",
3465
+ "module" : "SNA-SDLC-MIB"
3466
+ },
3467
+ "sdlcLSStatsRemoteBusies" : {
3468
+ "nodetype" : "member",
3469
+ "module" : "SNA-SDLC-MIB"
3470
+ },
3471
+ "sdlcLSStatsIFramesIn" : {
3472
+ "nodetype" : "member",
3473
+ "module" : "SNA-SDLC-MIB"
3474
+ },
3475
+ "sdlcLSStatsIFramesOut" : {
3476
+ "nodetype" : "member",
3477
+ "module" : "SNA-SDLC-MIB"
3478
+ },
3479
+ "sdlcLSStatsRetransmitsIn" : {
3480
+ "nodetype" : "member",
3481
+ "module" : "SNA-SDLC-MIB"
3482
+ },
3483
+ "sdlcLSStatsRetransmitsOut" : {
3484
+ "nodetype" : "member",
3485
+ "module" : "SNA-SDLC-MIB"
3486
+ },
3487
+ "sdlcLSStatsUIFramesIn" : {
3488
+ "nodetype" : "member",
3489
+ "module" : "SNA-SDLC-MIB"
3490
+ },
3491
+ "sdlcLSStatsUIFramesOut" : {
3492
+ "nodetype" : "member",
3493
+ "module" : "SNA-SDLC-MIB"
3494
+ },
3495
+ "sdlcLSStatsXIDsIn" : {
3496
+ "nodetype" : "member",
3497
+ "module" : "SNA-SDLC-MIB"
3498
+ },
3499
+ "sdlcLSStatsXIDsOut" : {
3500
+ "nodetype" : "member",
3501
+ "module" : "SNA-SDLC-MIB"
3502
+ },
3503
+ "sdlcLSStatsTESTsIn" : {
3504
+ "nodetype" : "member",
3505
+ "module" : "SNA-SDLC-MIB"
3506
+ },
3507
+ "sdlcLSStatsTESTsOut" : {
3508
+ "nodetype" : "member",
3509
+ "module" : "SNA-SDLC-MIB"
3510
+ },
3511
+ "sdlcLSStatsREJsIn" : {
3512
+ "nodetype" : "member",
3513
+ "module" : "SNA-SDLC-MIB"
3514
+ },
3515
+ "sdlcLSStatsREJsOut" : {
3516
+ "nodetype" : "member",
3517
+ "module" : "SNA-SDLC-MIB"
3518
+ },
3519
+ "sdlcLSStatsFRMRsIn" : {
3520
+ "nodetype" : "member",
3521
+ "module" : "SNA-SDLC-MIB"
3522
+ },
3523
+ "sdlcLSStatsFRMRsOut" : {
3524
+ "nodetype" : "member",
3525
+ "module" : "SNA-SDLC-MIB"
3526
+ },
3527
+ "sdlcLSStatsSIMsIn" : {
3528
+ "nodetype" : "member",
3529
+ "module" : "SNA-SDLC-MIB"
3530
+ },
3531
+ "sdlcLSStatsSIMsOut" : {
3532
+ "nodetype" : "member",
3533
+ "module" : "SNA-SDLC-MIB"
3534
+ },
3535
+ "sdlcLSStatsRIMsIn" : {
3536
+ "nodetype" : "member",
3537
+ "module" : "SNA-SDLC-MIB"
3538
+ },
3539
+ "sdlcLSStatsRIMsOut" : {
3540
+ "nodetype" : "member",
3541
+ "module" : "SNA-SDLC-MIB"
3542
+ },
3543
+ "sdlcLSStatsProtocolErrs" : {
3544
+ "nodetype" : "member",
3545
+ "module" : "SNA-SDLC-MIB"
3546
+ },
3547
+ "sdlcLSStatsRNRLIMITs" : {
3548
+ "nodetype" : "member",
3549
+ "module" : "SNA-SDLC-MIB"
3550
+ },
3551
+ "sdlcLSStatsRetriesExps" : {
3552
+ "nodetype" : "member",
3553
+ "module" : "SNA-SDLC-MIB"
3554
+ },
3555
+ }, # members
3556
+ "description" :
3557
+ """The sdlcCorePortStatsGroup defines objects
3558
+ which are common to the PortStats group of all
3559
+ compliant link stations.""",
3560
+ }, # group
3561
+ "sdlcPrimaryGroup" : {
3562
+ "nodetype" : "group",
3563
+ "moduleName" : "SNA-SDLC-MIB",
3564
+ "oid" : "1.3.6.1.2.1.41.1.4.2.2.1",
3565
+ "status" : "current",
3566
+ "members" : {
3567
+ "sdlcPortAdminPAUSE" : {
3568
+ "nodetype" : "member",
3569
+ "module" : "SNA-SDLC-MIB"
3570
+ },
3571
+ "sdlcPortOperPAUSE" : {
3572
+ "nodetype" : "member",
3573
+ "module" : "SNA-SDLC-MIB"
3574
+ },
3575
+ "sdlcLSAdminREPLYTO" : {
3576
+ "nodetype" : "member",
3577
+ "module" : "SNA-SDLC-MIB"
3578
+ },
3579
+ "sdlcLSOperREPLYTO" : {
3580
+ "nodetype" : "member",
3581
+ "module" : "SNA-SDLC-MIB"
3582
+ },
3583
+ }, # members
3584
+ "description" :
3585
+ """The sdlcPrimaryGroup defines objects which
3586
+ are common to all compliant primary link
3587
+ stations.""",
3588
+ }, # group
3589
+ "sdlcPrimaryMultipointGroup" : {
3590
+ "nodetype" : "group",
3591
+ "moduleName" : "SNA-SDLC-MIB",
3592
+ "oid" : "1.3.6.1.2.1.41.1.4.2.2.2",
3593
+ "status" : "current",
3594
+ "members" : {
3595
+ "sdlcPortAdminSERVLIM" : {
3596
+ "nodetype" : "member",
3597
+ "module" : "SNA-SDLC-MIB"
3598
+ },
3599
+ "sdlcPortAdminSlowPollTimer" : {
3600
+ "nodetype" : "member",
3601
+ "module" : "SNA-SDLC-MIB"
3602
+ },
3603
+ "sdlcPortOperSlowPollMethod" : {
3604
+ "nodetype" : "member",
3605
+ "module" : "SNA-SDLC-MIB"
3606
+ },
3607
+ "sdlcPortOperSERVLIM" : {
3608
+ "nodetype" : "member",
3609
+ "module" : "SNA-SDLC-MIB"
3610
+ },
3611
+ "sdlcPortOperSlowPollTimer" : {
3612
+ "nodetype" : "member",
3613
+ "module" : "SNA-SDLC-MIB"
3614
+ },
3615
+ }, # members
3616
+ "description" :
3617
+ """The sdlcPrimaryMultipointGroup defines objects
3618
+ which are common to all compliant primary link
3619
+ stations that are in a multipoint topology.""",
3620
+ }, # group
3621
+ }, # groups
3622
+
3623
+ "compliances" : {
3624
+ "sdlcCoreCompliance" : {
3625
+ "nodetype" : "compliance",
3626
+ "moduleName" : "SNA-SDLC-MIB",
3627
+ "oid" : "1.3.6.1.2.1.41.1.4.1.1",
3628
+ "status" : "current",
3629
+ "description" :
3630
+ """The core compliance statement for all SDLC
3631
+ nodes.""",
3632
+ "requires" : {
3633
+ "sdlcCorePortAdminGroup" : {
3634
+ "nodetype" : "mandatory",
3635
+ "module" : "SNA-SDLC-MIB"
3636
+ },
3637
+ "sdlcCorePortOperGroup" : {
3638
+ "nodetype" : "mandatory",
3639
+ "module" : "SNA-SDLC-MIB"
3640
+ },
3641
+ "sdlcCorePortStatsGroup" : {
3642
+ "nodetype" : "mandatory",
3643
+ "module" : "SNA-SDLC-MIB"
3644
+ },
3645
+ "sdlcCoreLSAdminGroup" : {
3646
+ "nodetype" : "mandatory",
3647
+ "module" : "SNA-SDLC-MIB"
3648
+ },
3649
+ "sdlcCoreLSOperGroup" : {
3650
+ "nodetype" : "mandatory",
3651
+ "module" : "SNA-SDLC-MIB"
3652
+ },
3653
+ "sdlcCoreLSStatsGroup" : {
3654
+ "nodetype" : "mandatory",
3655
+ "module" : "SNA-SDLC-MIB"
3656
+ },
3657
+ }, # requires
3658
+ "refinements" : {
3659
+ "sdlcPortAdminName" : {
3660
+ "module" : "SNA-SDLC-MIB",
3661
+ "access" : "readonly",
3662
+ "description" :
3663
+ """Write access is not required.""",
3664
+ },
3665
+ "sdlcPortAdminRole" : {
3666
+ "module" : "SNA-SDLC-MIB",
3667
+ "access" : "readonly",
3668
+ "description" :
3669
+ """Write access is not required.""",
3670
+ },
3671
+ "sdlcPortAdminType" : {
3672
+ "module" : "SNA-SDLC-MIB",
3673
+ "access" : "readonly",
3674
+ "description" :
3675
+ """Write access is not required.""",
3676
+ },
3677
+ "sdlcPortAdminTopology" : {
3678
+ "module" : "SNA-SDLC-MIB",
3679
+ "access" : "readonly",
3680
+ "description" :
3681
+ """Write access is not required.""",
3682
+ },
3683
+ "sdlcPortAdminISTATUS" : {
3684
+ "module" : "SNA-SDLC-MIB",
3685
+ "access" : "readonly",
3686
+ "description" :
3687
+ """Write access is not required.""",
3688
+ },
3689
+ "sdlcLSAddress" : {
3690
+ "module" : "SNA-SDLC-MIB",
3691
+ "access" : "readonly",
3692
+ "description" :
3693
+ """Write access is not required.""",
3694
+ },
3695
+ "sdlcLSAdminName" : {
3696
+ "module" : "SNA-SDLC-MIB",
3697
+ "access" : "readonly",
3698
+ "description" :
3699
+ """Write access is not required.""",
3700
+ },
3701
+ "sdlcLSAdminState" : {
3702
+ "module" : "SNA-SDLC-MIB",
3703
+ "access" : "readonly",
3704
+ "description" :
3705
+ """Write access is not required.""",
3706
+ },
3707
+ "sdlcLSAdminISTATUS" : {
3708
+ "module" : "SNA-SDLC-MIB",
3709
+ "access" : "readonly",
3710
+ "description" :
3711
+ """Write access is not required.""",
3712
+ },
3713
+ "sdlcLSAdminMAXDATASend" : {
3714
+ "module" : "SNA-SDLC-MIB",
3715
+ "access" : "readonly",
3716
+ "description" :
3717
+ """Write access is not required.""",
3718
+ },
3719
+ "sdlcLSAdminMAXDATARcv" : {
3720
+ "module" : "SNA-SDLC-MIB",
3721
+ "access" : "readonly",
3722
+ "description" :
3723
+ """Write access is not required.""",
3724
+ },
3725
+ "sdlcLSAdminMAXIN" : {
3726
+ "module" : "SNA-SDLC-MIB",
3727
+ "access" : "readonly",
3728
+ "description" :
3729
+ """Write access is not required.""",
3730
+ },
3731
+ "sdlcLSAdminMAXOUT" : {
3732
+ "module" : "SNA-SDLC-MIB",
3733
+ "access" : "readonly",
3734
+ "description" :
3735
+ """Write access is not required.""",
3736
+ },
3737
+ "sdlcLSAdminMODULO" : {
3738
+ "module" : "SNA-SDLC-MIB",
3739
+ "access" : "readonly",
3740
+ "description" :
3741
+ """Write access is not required.""",
3742
+ },
3743
+ "sdlcLSAdminRETRIESm" : {
3744
+ "module" : "SNA-SDLC-MIB",
3745
+ "access" : "readonly",
3746
+ "description" :
3747
+ """Write access is not required.""",
3748
+ },
3749
+ "sdlcLSAdminRETRIESt" : {
3750
+ "module" : "SNA-SDLC-MIB",
3751
+ "access" : "readonly",
3752
+ "description" :
3753
+ """Write access is not required.""",
3754
+ },
3755
+ "sdlcLSAdminRETRIESn" : {
3756
+ "module" : "SNA-SDLC-MIB",
3757
+ "access" : "readonly",
3758
+ "description" :
3759
+ """Write access is not required.""",
3760
+ },
3761
+ "sdlcLSAdminRNRLIMIT" : {
3762
+ "module" : "SNA-SDLC-MIB",
3763
+ "access" : "readonly",
3764
+ "description" :
3765
+ """Write access is not required.""",
3766
+ },
3767
+ "sdlcLSAdminDATMODE" : {
3768
+ "module" : "SNA-SDLC-MIB",
3769
+ "access" : "readonly",
3770
+ "description" :
3771
+ """Write access is not required.""",
3772
+ },
3773
+ "sdlcLSAdminGPoll" : {
3774
+ "module" : "SNA-SDLC-MIB",
3775
+ "access" : "readonly",
3776
+ "description" :
3777
+ """Write access is not required.""",
3778
+ },
3779
+ "sdlcLSAdminSimRim" : {
3780
+ "module" : "SNA-SDLC-MIB",
3781
+ "access" : "readonly",
3782
+ "description" :
3783
+ """Write access is not required.""",
3784
+ },
3785
+ "sdlcLSAdminRowStatus" : {
3786
+ "module" : "SNA-SDLC-MIB",
3787
+ "access" : "readonly",
3788
+ "description" :
3789
+ """Write access is not required.""",
3790
+ },
3791
+ }, # refinements
3792
+
3793
+ }, # compliance
3794
+ "sdlcPrimaryCompliance" : {
3795
+ "nodetype" : "compliance",
3796
+ "moduleName" : "SNA-SDLC-MIB",
3797
+ "oid" : "1.3.6.1.2.1.41.1.4.1.2",
3798
+ "status" : "current",
3799
+ "description" :
3800
+ """The compliance statement for all nodes that
3801
+ are performing the role of a Primary link
3802
+ station.""",
3803
+ "requires" : {
3804
+ "sdlcPrimaryGroup" : {
3805
+ "nodetype" : "mandatory",
3806
+ "module" : "SNA-SDLC-MIB"
3807
+ },
3808
+ }, # requires
3809
+ "refinements" : {
3810
+ "sdlcPortAdminPAUSE" : {
3811
+ "module" : "SNA-SDLC-MIB",
3812
+ "access" : "readonly",
3813
+ "description" :
3814
+ """Write access is not required.""",
3815
+ },
3816
+ "sdlcLSAdminREPLYTO" : {
3817
+ "module" : "SNA-SDLC-MIB",
3818
+ "access" : "readonly",
3819
+ "description" :
3820
+ """Write access is not required.""",
3821
+ },
3822
+ }, # refinements
3823
+
3824
+ }, # compliance
3825
+ "sdlcPrimaryMultipointCompliance" : {
3826
+ "nodetype" : "compliance",
3827
+ "moduleName" : "SNA-SDLC-MIB",
3828
+ "oid" : "1.3.6.1.2.1.41.1.4.1.3",
3829
+ "status" : "current",
3830
+ "description" :
3831
+ """The compliance statement for all nodes that
3832
+ are performing the role of a primary link
3833
+ station on a multipoint line.""",
3834
+ "requires" : {
3835
+ "sdlcPrimaryMultipointGroup" : {
3836
+ "nodetype" : "mandatory",
3837
+ "module" : "SNA-SDLC-MIB"
3838
+ },
3839
+ }, # requires
3840
+ "refinements" : {
3841
+ "sdlcPortAdminSERVLIM" : {
3842
+ "module" : "SNA-SDLC-MIB",
3843
+ "access" : "readonly",
3844
+ "description" :
3845
+ """Write access is not required.""",
3846
+ },
3847
+ "sdlcPortAdminSlowPollTimer" : {
3848
+ "module" : "SNA-SDLC-MIB",
3849
+ "access" : "readonly",
3850
+ "description" :
3851
+ """Write access is not required.""",
3852
+ },
3853
+ }, # refinements
3854
+
3855
+ }, # compliance
3856
+ }, # compliances
3857
+
3858
+ }