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,1924 @@
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 SCTP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SCTP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SCTP-MIB",
11
+
12
+ "SCTP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF SIGTRAN Working Group""",
17
+ "contact" :
18
+ """
19
+ WG EMail: sigtran@ietf.org
20
+
21
+ Web Page:
22
+ http://www.ietf.org/html.charters/sigtran-charter.html
23
+
24
+ Chair: Lyndon Ong
25
+ Ciena Corporation
26
+ 0480 Ridgeview Drive
27
+ Cupertino, CA 95014
28
+ USA
29
+ Tel:
30
+ Email: lyong@ciena.com
31
+
32
+ Editors: Maria-Carmen Belinchon
33
+ R&D Department
34
+ Ericsson Espana S. A.
35
+ Via de los Poblados, 13
36
+ 28033 Madrid
37
+ Spain
38
+ Tel: +34 91 339 3535
39
+ Email: Maria.C.Belinchon@ericsson.com
40
+
41
+ Jose-Javier Pastor-Balbas
42
+ R&D Department
43
+ Ericsson Espana S. A.
44
+ Via de los Poblados, 13
45
+ 28033 Madrid
46
+ Spain
47
+ Tel: +34 91 339 1397
48
+ Email: J.Javier.Pastor@ericsson.com""",
49
+ "description" :
50
+ """The MIB module for managing SCTP implementations.
51
+
52
+ Copyright (C) The Internet Society (2004). This version of
53
+ this MIB module is part of RFC 3873; see the RFC itself for
54
+ full legal notices. """,
55
+ "revisions" : (
56
+ {
57
+ "date" : "2004-09-02 00:00",
58
+ "description" :
59
+ """ Initial version, published as RFC 3873""",
60
+ },
61
+ ),
62
+ "identity node" : "sctpMIB",
63
+ },
64
+
65
+ "imports" : (
66
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
67
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
68
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
69
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
70
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
71
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
72
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
73
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
74
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
75
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
76
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
77
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
78
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
79
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
80
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
81
+ ),
82
+
83
+ "nodes" : {
84
+ "sctpMIB" : {
85
+ "nodetype" : "node",
86
+ "moduleName" : "SCTP-MIB",
87
+ "oid" : "1.3.6.1.2.1.104",
88
+ "status" : "current",
89
+ }, # node
90
+ "sctpObjects" : {
91
+ "nodetype" : "node",
92
+ "moduleName" : "SCTP-MIB",
93
+ "oid" : "1.3.6.1.2.1.104.1",
94
+ }, # node
95
+ "sctpStats" : {
96
+ "nodetype" : "node",
97
+ "moduleName" : "SCTP-MIB",
98
+ "oid" : "1.3.6.1.2.1.104.1.1",
99
+ }, # node
100
+ "sctpCurrEstab" : {
101
+ "nodetype" : "scalar",
102
+ "moduleName" : "SCTP-MIB",
103
+ "oid" : "1.3.6.1.2.1.104.1.1.1",
104
+ "status" : "current",
105
+ "syntax" : {
106
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
107
+ },
108
+ "access" : "readonly",
109
+ "description" :
110
+ """The number of associations for which the current state is
111
+ either ESTABLISHED, SHUTDOWN-RECEIVED or SHUTDOWN-PENDING.""",
112
+ "reference" :
113
+ """Section 4 in RFC2960 covers the SCTP Association state
114
+ diagram.""",
115
+ }, # scalar
116
+ "sctpActiveEstabs" : {
117
+ "nodetype" : "scalar",
118
+ "moduleName" : "SCTP-MIB",
119
+ "oid" : "1.3.6.1.2.1.104.1.1.2",
120
+ "status" : "current",
121
+ "syntax" : {
122
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
123
+ },
124
+ "access" : "readonly",
125
+ "description" :
126
+ """The number of times that associations have made a direct
127
+ transition to the ESTABLISHED state from the COOKIE-ECHOED
128
+ state: COOKIE-ECHOED -> ESTABLISHED. The upper layer initiated
129
+ the association attempt.""",
130
+ "reference" :
131
+ """Section 4 in RFC2960 covers the SCTP Association state
132
+ diagram.""",
133
+ }, # scalar
134
+ "sctpPassiveEstabs" : {
135
+ "nodetype" : "scalar",
136
+ "moduleName" : "SCTP-MIB",
137
+ "oid" : "1.3.6.1.2.1.104.1.1.3",
138
+ "status" : "current",
139
+ "syntax" : {
140
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
141
+ },
142
+ "access" : "readonly",
143
+ "description" :
144
+ """The number of times that associations have made a direct
145
+ transition to the ESTABLISHED state from the CLOSED state:
146
+ CLOSED -> ESTABLISHED. The remote endpoint initiated the
147
+ association attempt.""",
148
+ "reference" :
149
+ """Section 4 in RFC2960 covers the SCTP Association state
150
+ diagram.""",
151
+ }, # scalar
152
+ "sctpAborteds" : {
153
+ "nodetype" : "scalar",
154
+ "moduleName" : "SCTP-MIB",
155
+ "oid" : "1.3.6.1.2.1.104.1.1.4",
156
+ "status" : "current",
157
+ "syntax" : {
158
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
159
+ },
160
+ "access" : "readonly",
161
+ "description" :
162
+ """The number of times that associations have made a direct
163
+ transition to the CLOSED state from any state using the
164
+ primitive 'ABORT': AnyState --Abort--> CLOSED. Ungraceful
165
+ termination of the association.""",
166
+ "reference" :
167
+ """Section 4 in RFC2960 covers the SCTP Association state
168
+ diagram.""",
169
+ }, # scalar
170
+ "sctpShutdowns" : {
171
+ "nodetype" : "scalar",
172
+ "moduleName" : "SCTP-MIB",
173
+ "oid" : "1.3.6.1.2.1.104.1.1.5",
174
+ "status" : "current",
175
+ "syntax" : {
176
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
177
+ },
178
+ "access" : "readonly",
179
+ "description" :
180
+ """The number of times that associations have made a direct
181
+ transition to the CLOSED state from either the SHUTDOWN-SENT
182
+ state or the SHUTDOWN-ACK-SENT state. Graceful termination of
183
+ the association.""",
184
+ "reference" :
185
+ """Section 4 in RFC2960 covers the SCTP Association state
186
+ diagram.""",
187
+ }, # scalar
188
+ "sctpOutOfBlues" : {
189
+ "nodetype" : "scalar",
190
+ "moduleName" : "SCTP-MIB",
191
+ "oid" : "1.3.6.1.2.1.104.1.1.6",
192
+ "status" : "current",
193
+ "syntax" : {
194
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
195
+ },
196
+ "access" : "readonly",
197
+ "description" :
198
+ """The number of out of the blue packets received by the host.
199
+ An out of the blue packet is an SCTP packet correctly formed,
200
+ including the proper checksum, but for which the receiver was
201
+ unable to identify an appropriate association.""",
202
+ "reference" :
203
+ """Section 8.4 in RFC2960 deals with the Out-Of-The-Blue
204
+ (OOTB) packet definition and procedures.""",
205
+ }, # scalar
206
+ "sctpChecksumErrors" : {
207
+ "nodetype" : "scalar",
208
+ "moduleName" : "SCTP-MIB",
209
+ "oid" : "1.3.6.1.2.1.104.1.1.7",
210
+ "status" : "current",
211
+ "syntax" : {
212
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
213
+ },
214
+ "access" : "readonly",
215
+ "description" :
216
+ """The number of SCTP packets received with an invalid
217
+ checksum.""",
218
+ "reference" :
219
+ """The checksum is located at the end of the SCTP packet as per
220
+ Section 3.1 in RFC2960. RFC3309 updates SCTP to use a 32 bit
221
+ CRC checksum.""",
222
+ }, # scalar
223
+ "sctpOutCtrlChunks" : {
224
+ "nodetype" : "scalar",
225
+ "moduleName" : "SCTP-MIB",
226
+ "oid" : "1.3.6.1.2.1.104.1.1.8",
227
+ "status" : "current",
228
+ "syntax" : {
229
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
230
+ },
231
+ "access" : "readonly",
232
+ "description" :
233
+ """The number of SCTP control chunks sent (retransmissions are
234
+ not included). Control chunks are those chunks different from
235
+ DATA.""",
236
+ "reference" :
237
+ """Sections 1.3.5 and 1.4 in RFC2960 refer to control chunk as
238
+ those chunks different from those that contain user
239
+ information, i.e., DATA chunks.""",
240
+ }, # scalar
241
+ "sctpOutOrderChunks" : {
242
+ "nodetype" : "scalar",
243
+ "moduleName" : "SCTP-MIB",
244
+ "oid" : "1.3.6.1.2.1.104.1.1.9",
245
+ "status" : "current",
246
+ "syntax" : {
247
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
248
+ },
249
+ "access" : "readonly",
250
+ "description" :
251
+ """The number of SCTP ordered data chunks sent (retransmissions
252
+ are not included).""",
253
+ "reference" :
254
+ """Section 3.3.1 in RFC2960 defines the ordered data chunk.""",
255
+ }, # scalar
256
+ "sctpOutUnorderChunks" : {
257
+ "nodetype" : "scalar",
258
+ "moduleName" : "SCTP-MIB",
259
+ "oid" : "1.3.6.1.2.1.104.1.1.10",
260
+ "status" : "current",
261
+ "syntax" : {
262
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
263
+ },
264
+ "access" : "readonly",
265
+ "description" :
266
+ """The number of SCTP unordered chunks (data chunks in which the
267
+ U bit is set to 1) sent (retransmissions are not included).""",
268
+ "reference" :
269
+ """Section 3.3.1 in RFC2960 defines the unordered data chunk.""",
270
+ }, # scalar
271
+ "sctpInCtrlChunks" : {
272
+ "nodetype" : "scalar",
273
+ "moduleName" : "SCTP-MIB",
274
+ "oid" : "1.3.6.1.2.1.104.1.1.11",
275
+ "status" : "current",
276
+ "syntax" : {
277
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
278
+ },
279
+ "access" : "readonly",
280
+ "description" :
281
+ """The number of SCTP control chunks received (no duplicate
282
+ chunks included).""",
283
+ "reference" :
284
+ """Sections 1.3.5 and 1.4 in RFC2960 refer to control chunk as
285
+ those chunks different from those that contain user
286
+ information, i.e., DATA chunks.""",
287
+ }, # scalar
288
+ "sctpInOrderChunks" : {
289
+ "nodetype" : "scalar",
290
+ "moduleName" : "SCTP-MIB",
291
+ "oid" : "1.3.6.1.2.1.104.1.1.12",
292
+ "status" : "current",
293
+ "syntax" : {
294
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
295
+ },
296
+ "access" : "readonly",
297
+ "description" :
298
+ """The number of SCTP ordered data chunks received (no duplicate
299
+ chunks included).""",
300
+ "reference" :
301
+ """Section 3.3.1 in RFC2960 defines the ordered data chunk.""",
302
+ }, # scalar
303
+ "sctpInUnorderChunks" : {
304
+ "nodetype" : "scalar",
305
+ "moduleName" : "SCTP-MIB",
306
+ "oid" : "1.3.6.1.2.1.104.1.1.13",
307
+ "status" : "current",
308
+ "syntax" : {
309
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
310
+ },
311
+ "access" : "readonly",
312
+ "description" :
313
+ """The number of SCTP unordered chunks (data chunks in which the
314
+ U bit is set to 1) received (no duplicate chunks included).""",
315
+ "reference" :
316
+ """Section 3.3.1 in RFC2960 defines the unordered data chunk.""",
317
+ }, # scalar
318
+ "sctpFragUsrMsgs" : {
319
+ "nodetype" : "scalar",
320
+ "moduleName" : "SCTP-MIB",
321
+ "oid" : "1.3.6.1.2.1.104.1.1.14",
322
+ "status" : "current",
323
+ "syntax" : {
324
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
325
+ },
326
+ "access" : "readonly",
327
+ "description" :
328
+ """The number of user messages that have to be fragmented
329
+ because of the MTU.""",
330
+ }, # scalar
331
+ "sctpReasmUsrMsgs" : {
332
+ "nodetype" : "scalar",
333
+ "moduleName" : "SCTP-MIB",
334
+ "oid" : "1.3.6.1.2.1.104.1.1.15",
335
+ "status" : "current",
336
+ "syntax" : {
337
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
338
+ },
339
+ "access" : "readonly",
340
+ "description" :
341
+ """The number of user messages reassembled, after conversion
342
+ into DATA chunks.""",
343
+ "reference" :
344
+ """Section 6.9 in RFC2960 includes a description of the
345
+ reassembly process.""",
346
+ }, # scalar
347
+ "sctpOutSCTPPacks" : {
348
+ "nodetype" : "scalar",
349
+ "moduleName" : "SCTP-MIB",
350
+ "oid" : "1.3.6.1.2.1.104.1.1.16",
351
+ "status" : "current",
352
+ "syntax" : {
353
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
354
+ },
355
+ "access" : "readonly",
356
+ "description" :
357
+ """The number of SCTP packets sent. Retransmitted DATA chunks
358
+ are included.""",
359
+ }, # scalar
360
+ "sctpInSCTPPacks" : {
361
+ "nodetype" : "scalar",
362
+ "moduleName" : "SCTP-MIB",
363
+ "oid" : "1.3.6.1.2.1.104.1.1.17",
364
+ "status" : "current",
365
+ "syntax" : {
366
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
367
+ },
368
+ "access" : "readonly",
369
+ "description" :
370
+ """The number of SCTP packets received. Duplicates are
371
+ included.""",
372
+ }, # scalar
373
+ "sctpDiscontinuityTime" : {
374
+ "nodetype" : "scalar",
375
+ "moduleName" : "SCTP-MIB",
376
+ "oid" : "1.3.6.1.2.1.104.1.1.18",
377
+ "status" : "current",
378
+ "syntax" : {
379
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
380
+ },
381
+ "access" : "readonly",
382
+ "description" :
383
+ """The value of sysUpTime on the most recent occasion at which
384
+ any one or more of this general statistics counters suffered a
385
+ discontinuity. The relevant counters are the specific
386
+ instances associated with this interface of any Counter32 or
387
+ Counter64 object contained in the SCTP layer statistics
388
+ (defined below sctpStats branch). If no such discontinuities
389
+ have occurred since the last re-initialization of the local
390
+ management subsystem, then this object contains a zero value.""",
391
+ "reference" :
392
+ """The inclusion of this object is recommended by RFC2578.""",
393
+ }, # scalar
394
+ "sctpParams" : {
395
+ "nodetype" : "node",
396
+ "moduleName" : "SCTP-MIB",
397
+ "oid" : "1.3.6.1.2.1.104.1.2",
398
+ }, # node
399
+ "sctpRtoAlgorithm" : {
400
+ "nodetype" : "scalar",
401
+ "moduleName" : "SCTP-MIB",
402
+ "oid" : "1.3.6.1.2.1.104.1.2.1",
403
+ "status" : "current",
404
+ "syntax" : {
405
+ "type" : {
406
+ "basetype" : "Enumeration",
407
+ "other" : {
408
+ "nodetype" : "namednumber",
409
+ "number" : "1"
410
+ },
411
+ "vanj" : {
412
+ "nodetype" : "namednumber",
413
+ "number" : "2"
414
+ },
415
+ },
416
+ },
417
+ "access" : "readonly",
418
+ "default" : "vanj",
419
+ "description" :
420
+ """The algorithm used to determine the timeout value (T3-rtx)
421
+ used for re-transmitting unacknowledged chunks.""",
422
+ "reference" :
423
+ """Section 6.3.1 and 6.3.2 in RFC2960 cover the RTO calculation
424
+ and retransmission timer rules.""",
425
+ }, # scalar
426
+ "sctpRtoMin" : {
427
+ "nodetype" : "scalar",
428
+ "moduleName" : "SCTP-MIB",
429
+ "oid" : "1.3.6.1.2.1.104.1.2.2",
430
+ "status" : "current",
431
+ "syntax" : {
432
+ "type" : { "module" :"", "name" : "Unsigned32"},
433
+ },
434
+ "access" : "readonly",
435
+ "default" : "1000",
436
+ "units" : "milliseconds",
437
+ "description" :
438
+ """The minimum value permitted by a SCTP implementation for the
439
+ retransmission timeout value, measured in milliseconds. More
440
+ refined semantics for objects of this type depend upon the
441
+ algorithm used to determine the retransmission timeout value.
442
+
443
+ A retransmission time value of zero means immediate
444
+ retransmission.
445
+
446
+ The value of this object has to be lower than or equal to
447
+ stcpRtoMax's value.""",
448
+ }, # scalar
449
+ "sctpRtoMax" : {
450
+ "nodetype" : "scalar",
451
+ "moduleName" : "SCTP-MIB",
452
+ "oid" : "1.3.6.1.2.1.104.1.2.3",
453
+ "status" : "current",
454
+ "syntax" : {
455
+ "type" : { "module" :"", "name" : "Unsigned32"},
456
+ },
457
+ "access" : "readonly",
458
+ "default" : "60000",
459
+ "units" : "milliseconds",
460
+ "description" :
461
+ """The maximum value permitted by a SCTP implementation for the
462
+ retransmission timeout value, measured in milliseconds. More
463
+ refined semantics for objects of this type depend upon the
464
+ algorithm used to determine the retransmission timeout value.
465
+
466
+ A retransmission time value of zero means immediate re-
467
+ transmission.
468
+
469
+
470
+
471
+
472
+
473
+ The value of this object has to be greater than or equal to
474
+ stcpRtoMin's value.""",
475
+ }, # scalar
476
+ "sctpRtoInitial" : {
477
+ "nodetype" : "scalar",
478
+ "moduleName" : "SCTP-MIB",
479
+ "oid" : "1.3.6.1.2.1.104.1.2.4",
480
+ "status" : "current",
481
+ "syntax" : {
482
+ "type" : { "module" :"", "name" : "Unsigned32"},
483
+ },
484
+ "access" : "readonly",
485
+ "default" : "3000",
486
+ "units" : "milliseconds",
487
+ "description" :
488
+ """The initial value for the retransmission timer.
489
+
490
+ A retransmission time value of zero means immediate re-
491
+ transmission.""",
492
+ }, # scalar
493
+ "sctpMaxAssocs" : {
494
+ "nodetype" : "scalar",
495
+ "moduleName" : "SCTP-MIB",
496
+ "oid" : "1.3.6.1.2.1.104.1.2.5",
497
+ "status" : "current",
498
+ "syntax" : {
499
+ "type" : {
500
+ "basetype" : "Integer32",
501
+ "ranges" : [
502
+ {
503
+ "min" : "-1",
504
+ "max" : "2147483647"
505
+ },
506
+ ],
507
+ "range" : {
508
+ "min" : "-1",
509
+ "max" : "2147483647"
510
+ },
511
+ },
512
+ },
513
+ "access" : "readonly",
514
+ "description" :
515
+ """The limit on the total number of associations the entity can
516
+ support. In entities where the maximum number of associations
517
+ is dynamic, this object should contain the value -1.""",
518
+ }, # scalar
519
+ "sctpValCookieLife" : {
520
+ "nodetype" : "scalar",
521
+ "moduleName" : "SCTP-MIB",
522
+ "oid" : "1.3.6.1.2.1.104.1.2.6",
523
+ "status" : "current",
524
+ "syntax" : {
525
+ "type" : { "module" :"", "name" : "Unsigned32"},
526
+ },
527
+ "access" : "readonly",
528
+ "default" : "60000",
529
+ "units" : "milliseconds",
530
+ "description" :
531
+ """Valid cookie life in the 4-way start-up handshake procedure.""",
532
+ "reference" :
533
+ """Section 5.1.3 in RFC2960 explains the cookie generation
534
+ process. Recommended value is per section 14 in RFC2960.""",
535
+ }, # scalar
536
+ "sctpMaxInitRetr" : {
537
+ "nodetype" : "scalar",
538
+ "moduleName" : "SCTP-MIB",
539
+ "oid" : "1.3.6.1.2.1.104.1.2.7",
540
+ "status" : "current",
541
+ "syntax" : {
542
+ "type" : { "module" :"", "name" : "Unsigned32"},
543
+ },
544
+ "access" : "readonly",
545
+ "default" : "8",
546
+ "description" :
547
+ """The maximum number of retransmissions at the start-up phase
548
+ (INIT and COOKIE ECHO chunks). """,
549
+ "reference" :
550
+ """Section 5.1.4, 5.1.6 in RFC2960 refers to Max.Init.Retransmit
551
+ parameter. Recommended value is per section 14 in RFC2960.""",
552
+ }, # scalar
553
+ "sctpAssocTable" : {
554
+ "nodetype" : "table",
555
+ "moduleName" : "SCTP-MIB",
556
+ "oid" : "1.3.6.1.2.1.104.1.3",
557
+ "status" : "current",
558
+ "description" :
559
+ """A table containing SCTP association-specific information.""",
560
+ }, # table
561
+ "sctpAssocEntry" : {
562
+ "nodetype" : "row",
563
+ "moduleName" : "SCTP-MIB",
564
+ "oid" : "1.3.6.1.2.1.104.1.3.1",
565
+ "status" : "current",
566
+ "linkage" : [
567
+ "sctpAssocId",
568
+ ],
569
+ "description" :
570
+ """General common variables and statistics for the whole
571
+ association.""",
572
+ }, # row
573
+ "sctpAssocId" : {
574
+ "nodetype" : "column",
575
+ "moduleName" : "SCTP-MIB",
576
+ "oid" : "1.3.6.1.2.1.104.1.3.1.1",
577
+ "status" : "current",
578
+ "syntax" : {
579
+ "type" : {
580
+ "basetype" : "Unsigned32",
581
+ "ranges" : [
582
+ {
583
+ "min" : "1",
584
+ "max" : "4294967295"
585
+ },
586
+ ],
587
+ "range" : {
588
+ "min" : "1",
589
+ "max" : "4294967295"
590
+ },
591
+ },
592
+ },
593
+ "access" : "noaccess",
594
+ "description" :
595
+ """Association Identification. Value identifying the
596
+ association. """,
597
+ }, # column
598
+ "sctpAssocRemHostName" : {
599
+ "nodetype" : "column",
600
+ "moduleName" : "SCTP-MIB",
601
+ "oid" : "1.3.6.1.2.1.104.1.3.1.2",
602
+ "status" : "current",
603
+ "syntax" : {
604
+ "type" : {
605
+ "basetype" : "OctetString",
606
+ "ranges" : [
607
+ {
608
+ "min" : "0",
609
+ "max" : "255"
610
+ },
611
+ ],
612
+ "range" : {
613
+ "min" : "0",
614
+ "max" : "255"
615
+ },
616
+ },
617
+ },
618
+ "access" : "readonly",
619
+ "description" :
620
+ """The peer's DNS name. This object needs to have the same
621
+ format as the encoding in the DNS protocol. This implies that
622
+ the domain name can be up to 255 octets long, each octet being
623
+ 0<=x<=255 as value with US-ASCII A-Z having a case insensitive
624
+ matching.
625
+
626
+ If no DNS domain name was received from the peer at init time
627
+ (embedded in the INIT or INIT-ACK chunk), this object is
628
+ meaningless. In such cases the object MUST contain a zero-
629
+ length string value. Otherwise, it contains the remote host
630
+ name received at init time.""",
631
+ }, # column
632
+ "sctpAssocLocalPort" : {
633
+ "nodetype" : "column",
634
+ "moduleName" : "SCTP-MIB",
635
+ "oid" : "1.3.6.1.2.1.104.1.3.1.3",
636
+ "status" : "current",
637
+ "syntax" : {
638
+ "type" : {
639
+ "basetype" : "Unsigned32",
640
+ "parent module" : {
641
+ "name" : "INET-ADDRESS-MIB",
642
+ "type" : "InetPortNumber",
643
+ },
644
+ "ranges" : [
645
+ {
646
+ "min" : "1",
647
+ "max" : "65535"
648
+ },
649
+ ],
650
+ "range" : {
651
+ "min" : "1",
652
+ "max" : "65535"
653
+ },
654
+ },
655
+ },
656
+ "access" : "readonly",
657
+ "description" :
658
+ """The local SCTP port number used for this association.""",
659
+ }, # column
660
+ "sctpAssocRemPort" : {
661
+ "nodetype" : "column",
662
+ "moduleName" : "SCTP-MIB",
663
+ "oid" : "1.3.6.1.2.1.104.1.3.1.4",
664
+ "status" : "current",
665
+ "syntax" : {
666
+ "type" : {
667
+ "basetype" : "Unsigned32",
668
+ "parent module" : {
669
+ "name" : "INET-ADDRESS-MIB",
670
+ "type" : "InetPortNumber",
671
+ },
672
+ "ranges" : [
673
+ {
674
+ "min" : "1",
675
+ "max" : "65535"
676
+ },
677
+ ],
678
+ "range" : {
679
+ "min" : "1",
680
+ "max" : "65535"
681
+ },
682
+ },
683
+ },
684
+ "access" : "readonly",
685
+ "description" :
686
+ """The remote SCTP port number used for this association.""",
687
+ }, # column
688
+ "sctpAssocRemPrimAddrType" : {
689
+ "nodetype" : "column",
690
+ "moduleName" : "SCTP-MIB",
691
+ "oid" : "1.3.6.1.2.1.104.1.3.1.5",
692
+ "status" : "current",
693
+ "syntax" : {
694
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
695
+ },
696
+ "access" : "readonly",
697
+ "description" :
698
+ """The internet type of primary remote IP address. """,
699
+ }, # column
700
+ "sctpAssocRemPrimAddr" : {
701
+ "nodetype" : "column",
702
+ "moduleName" : "SCTP-MIB",
703
+ "oid" : "1.3.6.1.2.1.104.1.3.1.6",
704
+ "status" : "current",
705
+ "syntax" : {
706
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
707
+ },
708
+ "access" : "readonly",
709
+ "description" :
710
+ """The primary remote IP address. The type of this address is
711
+ determined by the value of sctpAssocRemPrimAddrType.
712
+
713
+ The client side will know this value after INIT_ACK message
714
+ reception, the server side will know this value when sending
715
+ INIT_ACK message. However, values will be filled in at
716
+ established(4) state.""",
717
+ }, # column
718
+ "sctpAssocHeartBeatInterval" : {
719
+ "nodetype" : "column",
720
+ "moduleName" : "SCTP-MIB",
721
+ "oid" : "1.3.6.1.2.1.104.1.3.1.7",
722
+ "status" : "current",
723
+ "syntax" : {
724
+ "type" : { "module" :"", "name" : "Unsigned32"},
725
+ },
726
+ "access" : "readonly",
727
+ "default" : "30000",
728
+ "units" : "milliseconds",
729
+ "description" :
730
+ """The current heartbeat interval..
731
+
732
+ Zero value means no HeartBeat, even when the concerned
733
+ sctpAssocRemAddrHBFlag object is true.""",
734
+ }, # column
735
+ "sctpAssocState" : {
736
+ "nodetype" : "column",
737
+ "moduleName" : "SCTP-MIB",
738
+ "oid" : "1.3.6.1.2.1.104.1.3.1.8",
739
+ "status" : "current",
740
+ "syntax" : {
741
+ "type" : {
742
+ "basetype" : "Enumeration",
743
+ "closed" : {
744
+ "nodetype" : "namednumber",
745
+ "number" : "1"
746
+ },
747
+ "cookieWait" : {
748
+ "nodetype" : "namednumber",
749
+ "number" : "2"
750
+ },
751
+ "cookieEchoed" : {
752
+ "nodetype" : "namednumber",
753
+ "number" : "3"
754
+ },
755
+ "established" : {
756
+ "nodetype" : "namednumber",
757
+ "number" : "4"
758
+ },
759
+ "shutdownPending" : {
760
+ "nodetype" : "namednumber",
761
+ "number" : "5"
762
+ },
763
+ "shutdownSent" : {
764
+ "nodetype" : "namednumber",
765
+ "number" : "6"
766
+ },
767
+ "shutdownReceived" : {
768
+ "nodetype" : "namednumber",
769
+ "number" : "7"
770
+ },
771
+ "shutdownAckSent" : {
772
+ "nodetype" : "namednumber",
773
+ "number" : "8"
774
+ },
775
+ "deleteTCB" : {
776
+ "nodetype" : "namednumber",
777
+ "number" : "9"
778
+ },
779
+ },
780
+ },
781
+ "access" : "readwrite",
782
+ "description" :
783
+ """The state of this SCTP association.
784
+
785
+ As in TCP, deleteTCB(9) is the only value that may be set by a
786
+ management station. If any other value is received, then the
787
+ agent must return a wrongValue error.
788
+
789
+ If a management station sets this object to the value
790
+ deleteTCB(9), then this has the effect of deleting the TCB (as
791
+ defined in SCTP) of the corresponding association on the
792
+ managed node, resulting in immediate termination of the
793
+ association.
794
+
795
+ As an implementation-specific option, an ABORT chunk may be
796
+ sent from the managed node to the other SCTP endpoint as a
797
+ result of setting the deleteTCB(9) value. The ABORT chunk
798
+ implies an ungraceful association shutdown.""",
799
+ "reference" :
800
+ """Section 4 in RFC2960 covers the SCTP Association state
801
+ diagram.""",
802
+ }, # column
803
+ "sctpAssocInStreams" : {
804
+ "nodetype" : "column",
805
+ "moduleName" : "SCTP-MIB",
806
+ "oid" : "1.3.6.1.2.1.104.1.3.1.9",
807
+ "status" : "current",
808
+ "syntax" : {
809
+ "type" : {
810
+ "basetype" : "Unsigned32",
811
+ "ranges" : [
812
+ {
813
+ "min" : "1",
814
+ "max" : "65535"
815
+ },
816
+ ],
817
+ "range" : {
818
+ "min" : "1",
819
+ "max" : "65535"
820
+ },
821
+ },
822
+ },
823
+ "access" : "readonly",
824
+ "description" :
825
+ """Inbound Streams according to the negotiation at association
826
+ start up.""",
827
+ "reference" :
828
+ """Section 1.3 in RFC2960 includes a definition of stream.
829
+ Section 5.1.1 in RFC2960 covers the streams negotiation
830
+ process.""",
831
+ }, # column
832
+ "sctpAssocOutStreams" : {
833
+ "nodetype" : "column",
834
+ "moduleName" : "SCTP-MIB",
835
+ "oid" : "1.3.6.1.2.1.104.1.3.1.10",
836
+ "status" : "current",
837
+ "syntax" : {
838
+ "type" : {
839
+ "basetype" : "Unsigned32",
840
+ "ranges" : [
841
+ {
842
+ "min" : "1",
843
+ "max" : "65535"
844
+ },
845
+ ],
846
+ "range" : {
847
+ "min" : "1",
848
+ "max" : "65535"
849
+ },
850
+ },
851
+ },
852
+ "access" : "readonly",
853
+ "description" :
854
+ """Outbound Streams according to the negotiation at association
855
+ start up. """,
856
+ "reference" :
857
+ """Section 1.3 in RFC2960 includes a definition of stream.
858
+ Section 5.1.1 in RFC2960 covers the streams negotiation
859
+ process.""",
860
+ }, # column
861
+ "sctpAssocMaxRetr" : {
862
+ "nodetype" : "column",
863
+ "moduleName" : "SCTP-MIB",
864
+ "oid" : "1.3.6.1.2.1.104.1.3.1.11",
865
+ "status" : "current",
866
+ "syntax" : {
867
+ "type" : { "module" :"", "name" : "Unsigned32"},
868
+ },
869
+ "access" : "readonly",
870
+ "default" : "10",
871
+ "description" :
872
+ """The maximum number of data retransmissions in the association
873
+ context. This value is specific for each association and the
874
+ upper layer can change it by calling the appropriate
875
+ primitives. This value has to be smaller than the addition of
876
+ all the maximum number for all the paths
877
+ (sctpAssocRemAddrMaxPathRtx).
878
+
879
+
880
+
881
+ A value of zero value means no retransmissions.""",
882
+ }, # column
883
+ "sctpAssocPrimProcess" : {
884
+ "nodetype" : "column",
885
+ "moduleName" : "SCTP-MIB",
886
+ "oid" : "1.3.6.1.2.1.104.1.3.1.12",
887
+ "status" : "current",
888
+ "syntax" : {
889
+ "type" : { "module" :"", "name" : "Unsigned32"},
890
+ },
891
+ "access" : "readonly",
892
+ "description" :
893
+ """This object identifies the system level process which holds
894
+ primary responsibility for the SCTP association.
895
+ Wherever possible, this should be the system's native unique
896
+ identification number. The special value 0 can be used to
897
+ indicate that no primary process is known.
898
+
899
+ Note that the value of this object can be used as a pointer
900
+ into the swRunTable of the HOST-RESOURCES-MIB(if the value is
901
+ smaller than 2147483647) or into the sysApplElmtRunTable of
902
+ the SYSAPPL-MIB.""",
903
+ }, # column
904
+ "sctpAssocT1expireds" : {
905
+ "nodetype" : "column",
906
+ "moduleName" : "SCTP-MIB",
907
+ "oid" : "1.3.6.1.2.1.104.1.3.1.13",
908
+ "status" : "current",
909
+ "syntax" : {
910
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
911
+ },
912
+ "access" : "readonly",
913
+ "description" :
914
+ """The T1 timer determines how long to wait for an
915
+ acknowledgement after sending an INIT or COOKIE-ECHO chunk.
916
+ This object reflects the number of times the T1 timer expires
917
+ without having received the acknowledgement.
918
+
919
+ Discontinuities in the value of this counter can occur at re-
920
+ initialization of the management system, and at other times as
921
+ indicated by the value of sctpAssocDiscontinuityTime.""",
922
+ "reference" :
923
+ """Section 5 in RFC2960.""",
924
+ }, # column
925
+ "sctpAssocT2expireds" : {
926
+ "nodetype" : "column",
927
+ "moduleName" : "SCTP-MIB",
928
+ "oid" : "1.3.6.1.2.1.104.1.3.1.14",
929
+ "status" : "current",
930
+ "syntax" : {
931
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
932
+ },
933
+ "access" : "readonly",
934
+ "description" :
935
+ """The T2 timer determines how long to wait for an
936
+ acknowledgement after sending a SHUTDOWN or SHUTDOWN-ACK
937
+ chunk. This object reflects the number of times that T2- timer
938
+ expired.
939
+
940
+ Discontinuities in the value of this counter can occur at re-
941
+ initialization of the management system, and at other times as
942
+ indicated by the value of sctpAssocDiscontinuityTime.""",
943
+ "reference" :
944
+ """Section 9.2 in RFC2960.""",
945
+ }, # column
946
+ "sctpAssocRtxChunks" : {
947
+ "nodetype" : "column",
948
+ "moduleName" : "SCTP-MIB",
949
+ "oid" : "1.3.6.1.2.1.104.1.3.1.15",
950
+ "status" : "current",
951
+ "syntax" : {
952
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
953
+ },
954
+ "access" : "readonly",
955
+ "description" :
956
+ """When T3-rtx expires, the DATA chunks that triggered the T3
957
+ timer will be re-sent according with the retransmissions
958
+ rules. Every DATA chunk that was included in the SCTP packet
959
+ that triggered the T3-rtx timer must be added to the value of
960
+ this counter.
961
+
962
+ Discontinuities in the value of this counter can occur at re-
963
+ initialization of the management system, and at other times as
964
+ indicated by the value of sctpAssocDiscontinuityTime.""",
965
+ "reference" :
966
+ """Section 6 in RFC2960 covers the retransmission process and
967
+ rules.""",
968
+ }, # column
969
+ "sctpAssocStartTime" : {
970
+ "nodetype" : "column",
971
+ "moduleName" : "SCTP-MIB",
972
+ "oid" : "1.3.6.1.2.1.104.1.3.1.16",
973
+ "status" : "current",
974
+ "syntax" : {
975
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
976
+ },
977
+ "access" : "readonly",
978
+ "description" :
979
+ """The value of sysUpTime at the time that the association
980
+ represented by this row enters the ESTABLISHED state, i.e.,
981
+ the sctpAssocState object is set to established(4). The
982
+ value of this object will be zero:
983
+ - before the association enters the established(4)
984
+ state, or
985
+
986
+
987
+
988
+
989
+ - if the established(4) state was entered prior to
990
+ the last re-initialization of the local network management
991
+ subsystem.""",
992
+ }, # column
993
+ "sctpAssocDiscontinuityTime" : {
994
+ "nodetype" : "column",
995
+ "moduleName" : "SCTP-MIB",
996
+ "oid" : "1.3.6.1.2.1.104.1.3.1.17",
997
+ "status" : "current",
998
+ "syntax" : {
999
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1000
+ },
1001
+ "access" : "readonly",
1002
+ "description" :
1003
+ """The value of sysUpTime on the most recent occasion at which
1004
+ any one or more of this SCTP association counters suffered a
1005
+ discontinuity. The relevant counters are the specific
1006
+ instances associated with this interface of any Counter32 or
1007
+ Counter64 object contained in the sctpAssocTable or
1008
+ sctpLocalAddrTable or sctpRemAddrTable. If no such
1009
+ discontinuities have occurred since the last re-initialization
1010
+ of the local management subsystem, then this object contains a
1011
+ zero value. """,
1012
+ "reference" :
1013
+ """The inclusion of this object is recommended by RFC2578.""",
1014
+ }, # column
1015
+ "sctpAssocLocalAddrTable" : {
1016
+ "nodetype" : "table",
1017
+ "moduleName" : "SCTP-MIB",
1018
+ "oid" : "1.3.6.1.2.1.104.1.4",
1019
+ "status" : "current",
1020
+ "description" :
1021
+ """Expanded table of sctpAssocTable based on the AssocId index.
1022
+ This table shows data related to each local IP address which
1023
+ is used by this association.""",
1024
+ }, # table
1025
+ "sctpAssocLocalAddrEntry" : {
1026
+ "nodetype" : "row",
1027
+ "moduleName" : "SCTP-MIB",
1028
+ "oid" : "1.3.6.1.2.1.104.1.4.1",
1029
+ "status" : "current",
1030
+ "linkage" : [
1031
+ "sctpAssocId",
1032
+ "sctpAssocLocalAddrType",
1033
+ "sctpAssocLocalAddr",
1034
+ ],
1035
+ "description" :
1036
+ """Local information about the available addresses. There will
1037
+ be an entry for every local IP address defined for this
1038
+
1039
+
1040
+
1041
+ association.
1042
+ Implementors need to be aware that if the size of
1043
+ sctpAssocLocalAddr exceeds 114 octets then OIDs of column
1044
+ instances in this table will have more than 128 sub-
1045
+ identifiers and cannot be accessed using SNMPv1, SNMPv2c, or
1046
+ SNMPv3.""",
1047
+ }, # row
1048
+ "sctpAssocLocalAddrType" : {
1049
+ "nodetype" : "column",
1050
+ "moduleName" : "SCTP-MIB",
1051
+ "oid" : "1.3.6.1.2.1.104.1.4.1.1",
1052
+ "status" : "current",
1053
+ "syntax" : {
1054
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1055
+ },
1056
+ "access" : "noaccess",
1057
+ "description" :
1058
+ """Internet type of local IP address used for this association.""",
1059
+ }, # column
1060
+ "sctpAssocLocalAddr" : {
1061
+ "nodetype" : "column",
1062
+ "moduleName" : "SCTP-MIB",
1063
+ "oid" : "1.3.6.1.2.1.104.1.4.1.2",
1064
+ "status" : "current",
1065
+ "syntax" : {
1066
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1067
+ },
1068
+ "access" : "noaccess",
1069
+ "description" :
1070
+ """The value of a local IP address available for this
1071
+ association. The type of this address is determined by the
1072
+ value of sctpAssocLocalAddrType.""",
1073
+ }, # column
1074
+ "sctpAssocLocalAddrStartTime" : {
1075
+ "nodetype" : "column",
1076
+ "moduleName" : "SCTP-MIB",
1077
+ "oid" : "1.3.6.1.2.1.104.1.4.1.3",
1078
+ "status" : "current",
1079
+ "syntax" : {
1080
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1081
+ },
1082
+ "access" : "readonly",
1083
+ "description" :
1084
+ """The value of sysUpTime at the time that this row was
1085
+ created.""",
1086
+ }, # column
1087
+ "sctpAssocRemAddrTable" : {
1088
+ "nodetype" : "table",
1089
+ "moduleName" : "SCTP-MIB",
1090
+ "oid" : "1.3.6.1.2.1.104.1.5",
1091
+ "status" : "current",
1092
+ "description" :
1093
+ """Expanded table of sctpAssocTable based on the AssocId index.
1094
+ This table shows data related to each remote peer IP address
1095
+ which is used by this association.""",
1096
+ }, # table
1097
+ "sctpAssocRemAddrEntry" : {
1098
+ "nodetype" : "row",
1099
+ "moduleName" : "SCTP-MIB",
1100
+ "oid" : "1.3.6.1.2.1.104.1.5.1",
1101
+ "status" : "current",
1102
+ "linkage" : [
1103
+ "sctpAssocId",
1104
+ "sctpAssocRemAddrType",
1105
+ "sctpAssocRemAddr",
1106
+ ],
1107
+ "description" :
1108
+ """Information about the most important variables for every
1109
+ remote IP address. There will be an entry for every remote IP
1110
+ address defined for this association.
1111
+
1112
+ Implementors need to be aware that if the size of
1113
+ sctpAssocRemAddr exceeds 114 octets then OIDs of column
1114
+ instances in this table will have more than 128 sub-
1115
+ identifiers and cannot be accessed using SNMPv1, SNMPv2c, or
1116
+ SNMPv3.""",
1117
+ }, # row
1118
+ "sctpAssocRemAddrType" : {
1119
+ "nodetype" : "column",
1120
+ "moduleName" : "SCTP-MIB",
1121
+ "oid" : "1.3.6.1.2.1.104.1.5.1.1",
1122
+ "status" : "current",
1123
+ "syntax" : {
1124
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1125
+ },
1126
+ "access" : "noaccess",
1127
+ "description" :
1128
+ """Internet type of a remote IP address available for this
1129
+ association.""",
1130
+ }, # column
1131
+ "sctpAssocRemAddr" : {
1132
+ "nodetype" : "column",
1133
+ "moduleName" : "SCTP-MIB",
1134
+ "oid" : "1.3.6.1.2.1.104.1.5.1.2",
1135
+ "status" : "current",
1136
+ "syntax" : {
1137
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1138
+ },
1139
+ "access" : "noaccess",
1140
+ "description" :
1141
+ """The value of a remote IP address available for this
1142
+ association. The type of this address is determined by the
1143
+ value of sctpAssocLocalAddrType.""",
1144
+ }, # column
1145
+ "sctpAssocRemAddrActive" : {
1146
+ "nodetype" : "column",
1147
+ "moduleName" : "SCTP-MIB",
1148
+ "oid" : "1.3.6.1.2.1.104.1.5.1.3",
1149
+ "status" : "current",
1150
+ "syntax" : {
1151
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1152
+ },
1153
+ "access" : "readonly",
1154
+ "description" :
1155
+ """This object gives information about the reachability of this
1156
+ specific remote IP address.
1157
+
1158
+ When the object is set to 'true' (1), the remote IP address is
1159
+ understood as Active. Active means that the threshold of no
1160
+ answers received from this IP address has not been reached.
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+ When the object is set to 'false' (2), the remote IP address
1168
+ is understood as Inactive. Inactive means that either no
1169
+ heartbeat or any other message was received from this address,
1170
+ reaching the threshold defined by the protocol.""",
1171
+ "reference" :
1172
+ """The remote transport states are defined as Active and
1173
+ Inactive in the SCTP, RFC2960.""",
1174
+ }, # column
1175
+ "sctpAssocRemAddrHBActive" : {
1176
+ "nodetype" : "column",
1177
+ "moduleName" : "SCTP-MIB",
1178
+ "oid" : "1.3.6.1.2.1.104.1.5.1.4",
1179
+ "status" : "current",
1180
+ "syntax" : {
1181
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1182
+ },
1183
+ "access" : "readonly",
1184
+ "description" :
1185
+ """This object indicates whether the optional Heartbeat check
1186
+ associated to one destination transport address is activated
1187
+ or not (value equal to true or false, respectively). """,
1188
+ }, # column
1189
+ "sctpAssocRemAddrRTO" : {
1190
+ "nodetype" : "column",
1191
+ "moduleName" : "SCTP-MIB",
1192
+ "oid" : "1.3.6.1.2.1.104.1.5.1.5",
1193
+ "status" : "current",
1194
+ "syntax" : {
1195
+ "type" : { "module" :"", "name" : "Unsigned32"},
1196
+ },
1197
+ "access" : "readonly",
1198
+ "units" : "milliseconds",
1199
+ "description" :
1200
+ """The current Retransmission Timeout. T3-rtx timer as defined
1201
+ in the protocol SCTP.""",
1202
+ "reference" :
1203
+ """Section 6.3 in RFC2960 deals with the Retransmission Timer
1204
+ Management.""",
1205
+ }, # column
1206
+ "sctpAssocRemAddrMaxPathRtx" : {
1207
+ "nodetype" : "column",
1208
+ "moduleName" : "SCTP-MIB",
1209
+ "oid" : "1.3.6.1.2.1.104.1.5.1.6",
1210
+ "status" : "current",
1211
+ "syntax" : {
1212
+ "type" : { "module" :"", "name" : "Unsigned32"},
1213
+ },
1214
+ "access" : "readonly",
1215
+ "default" : "5",
1216
+ "description" :
1217
+ """Maximum number of DATA chunks retransmissions allowed to a
1218
+ remote IP address before it is considered inactive, as defined
1219
+ in RFC2960.""",
1220
+ "reference" :
1221
+ """Section 8.2, 8.3 and 14 in RFC2960.""",
1222
+ }, # column
1223
+ "sctpAssocRemAddrRtx" : {
1224
+ "nodetype" : "column",
1225
+ "moduleName" : "SCTP-MIB",
1226
+ "oid" : "1.3.6.1.2.1.104.1.5.1.7",
1227
+ "status" : "current",
1228
+ "syntax" : {
1229
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1230
+ },
1231
+ "access" : "readonly",
1232
+ "description" :
1233
+ """Number of DATA chunks retransmissions to this specific IP
1234
+ address. When T3-rtx expires, the DATA chunk that triggered
1235
+ the T3 timer will be re-sent according to the retransmissions
1236
+ rules. Every DATA chunk that is included in a SCTP packet and
1237
+ was transmitted to this specific IP address before, will be
1238
+ included in this counter.
1239
+
1240
+ Discontinuities in the value of this counter can occur at re-
1241
+ initialization of the management system, and at other times as
1242
+ indicated by the value of sctpAssocDiscontinuityTime.""",
1243
+ }, # column
1244
+ "sctpAssocRemAddrStartTime" : {
1245
+ "nodetype" : "column",
1246
+ "moduleName" : "SCTP-MIB",
1247
+ "oid" : "1.3.6.1.2.1.104.1.5.1.8",
1248
+ "status" : "current",
1249
+ "syntax" : {
1250
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1251
+ },
1252
+ "access" : "readonly",
1253
+ "description" :
1254
+ """The value of sysUpTime at the time that this row was
1255
+ created.""",
1256
+ }, # column
1257
+ "sctpLookupLocalPortTable" : {
1258
+ "nodetype" : "table",
1259
+ "moduleName" : "SCTP-MIB",
1260
+ "oid" : "1.3.6.1.2.1.104.1.6",
1261
+ "status" : "current",
1262
+ "description" :
1263
+ """With the use of this table, a list of associations which are
1264
+
1265
+
1266
+
1267
+ using the specified local port can be retrieved.""",
1268
+ }, # table
1269
+ "sctpLookupLocalPortEntry" : {
1270
+ "nodetype" : "row",
1271
+ "moduleName" : "SCTP-MIB",
1272
+ "oid" : "1.3.6.1.2.1.104.1.6.1",
1273
+ "status" : "current",
1274
+ "linkage" : [
1275
+ "sctpAssocLocalPort",
1276
+ "sctpAssocId",
1277
+ ],
1278
+ "description" :
1279
+ """This table is indexed by local port and association ID.
1280
+ Specifying a local port, we would get a list of the
1281
+ associations whose local port is the one specified.""",
1282
+ }, # row
1283
+ "sctpLookupLocalPortStartTime" : {
1284
+ "nodetype" : "column",
1285
+ "moduleName" : "SCTP-MIB",
1286
+ "oid" : "1.3.6.1.2.1.104.1.6.1.1",
1287
+ "status" : "current",
1288
+ "syntax" : {
1289
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1290
+ },
1291
+ "access" : "readonly",
1292
+ "description" :
1293
+ """The value of sysUpTime at the time that this row was created.
1294
+
1295
+ As the table will be created after the sctpAssocTable
1296
+ creation, this value could be equal to the sctpAssocStartTime
1297
+ object from the main table.""",
1298
+ }, # column
1299
+ "sctpLookupRemPortTable" : {
1300
+ "nodetype" : "table",
1301
+ "moduleName" : "SCTP-MIB",
1302
+ "oid" : "1.3.6.1.2.1.104.1.7",
1303
+ "status" : "current",
1304
+ "description" :
1305
+ """With the use of this table, a list of associations which are
1306
+ using the specified remote port can be got""",
1307
+ }, # table
1308
+ "sctpLookupRemPortEntry" : {
1309
+ "nodetype" : "row",
1310
+ "moduleName" : "SCTP-MIB",
1311
+ "oid" : "1.3.6.1.2.1.104.1.7.1",
1312
+ "status" : "current",
1313
+ "linkage" : [
1314
+ "sctpAssocRemPort",
1315
+ "sctpAssocId",
1316
+ ],
1317
+ "description" :
1318
+ """This table is indexed by remote port and association ID.
1319
+ Specifying a remote port we would get a list of the
1320
+ associations whose local port is the one specified """,
1321
+ }, # row
1322
+ "sctpLookupRemPortStartTime" : {
1323
+ "nodetype" : "column",
1324
+ "moduleName" : "SCTP-MIB",
1325
+ "oid" : "1.3.6.1.2.1.104.1.7.1.1",
1326
+ "status" : "current",
1327
+ "syntax" : {
1328
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1329
+ },
1330
+ "access" : "readonly",
1331
+ "description" :
1332
+ """The value of sysUpTime at the time that this row was created.
1333
+
1334
+ As the table will be created after the sctpAssocTable
1335
+ creation, this value could be equal to the sctpAssocStartTime
1336
+ object from the main table.""",
1337
+ }, # column
1338
+ "sctpLookupRemHostNameTable" : {
1339
+ "nodetype" : "table",
1340
+ "moduleName" : "SCTP-MIB",
1341
+ "oid" : "1.3.6.1.2.1.104.1.8",
1342
+ "status" : "current",
1343
+ "description" :
1344
+ """With the use of this table, a list of associations with that
1345
+ particular host can be retrieved.""",
1346
+ }, # table
1347
+ "sctpLookupRemHostNameEntry" : {
1348
+ "nodetype" : "row",
1349
+ "moduleName" : "SCTP-MIB",
1350
+ "oid" : "1.3.6.1.2.1.104.1.8.1",
1351
+ "status" : "current",
1352
+ "linkage" : [
1353
+ "sctpAssocRemHostName",
1354
+ "sctpAssocId",
1355
+ ],
1356
+ "description" :
1357
+ """This table is indexed by remote host name and association ID.
1358
+ Specifying a host name we would get a list of the associations
1359
+ specifying that host name as the remote one.
1360
+
1361
+ Implementors need to be aware that if the size of
1362
+ sctpAssocRemHostName exceeds 115 octets then OIDs of column
1363
+ instances in this table will have more than 128 sub-
1364
+ identifiers and cannot be accessed using SNMPv1, SNMPv2c, or
1365
+ SNMPv3.""",
1366
+ }, # row
1367
+ "sctpLookupRemHostNameStartTime" : {
1368
+ "nodetype" : "column",
1369
+ "moduleName" : "SCTP-MIB",
1370
+ "oid" : "1.3.6.1.2.1.104.1.8.1.1",
1371
+ "status" : "current",
1372
+ "syntax" : {
1373
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1374
+ },
1375
+ "access" : "readonly",
1376
+ "description" :
1377
+ """The value of sysUpTime at the time that this row was created.
1378
+
1379
+ As the table will be created after the sctpAssocTable
1380
+ creation, this value could be equal to the sctpAssocStartTime
1381
+ object from the main table.""",
1382
+ }, # column
1383
+ "sctpLookupRemPrimIPAddrTable" : {
1384
+ "nodetype" : "table",
1385
+ "moduleName" : "SCTP-MIB",
1386
+ "oid" : "1.3.6.1.2.1.104.1.9",
1387
+ "status" : "current",
1388
+ "description" :
1389
+ """With the use of this table, a list of associations that have
1390
+ the specified IP address as primary within the remote set of
1391
+ active addresses can be retrieved.""",
1392
+ }, # table
1393
+ "sctpLookupRemPrimIPAddrEntry" : {
1394
+ "nodetype" : "row",
1395
+ "moduleName" : "SCTP-MIB",
1396
+ "oid" : "1.3.6.1.2.1.104.1.9.1",
1397
+ "status" : "current",
1398
+ "linkage" : [
1399
+ "sctpAssocRemPrimAddrType",
1400
+ "sctpAssocRemPrimAddr",
1401
+ "sctpAssocId",
1402
+ ],
1403
+ "description" :
1404
+ """This table is indexed by primary address and association ID.
1405
+ Specifying a primary address, we would get a list of the
1406
+ associations that have the specified remote IP address marked
1407
+ as primary.
1408
+ Implementors need to be aware that if the size of
1409
+ sctpAssocRemPrimAddr exceeds 114 octets then OIDs of column
1410
+ instances in this table will have more than 128 sub-
1411
+ identifiers and cannot be accessed using SNMPv1, SNMPv2c, or
1412
+ SNMPv3.""",
1413
+ }, # row
1414
+ "sctpLookupRemPrimIPAddrStartTime" : {
1415
+ "nodetype" : "column",
1416
+ "moduleName" : "SCTP-MIB",
1417
+ "oid" : "1.3.6.1.2.1.104.1.9.1.1",
1418
+ "status" : "current",
1419
+ "syntax" : {
1420
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1421
+ },
1422
+ "access" : "readonly",
1423
+ "description" :
1424
+ """The value of SysUpTime at the time that this row was created.
1425
+
1426
+ As the table will be created after the sctpAssocTable
1427
+ creation, this value could be equal to the sctpAssocStartTime
1428
+ object from the main table.""",
1429
+ }, # column
1430
+ "sctpLookupRemIPAddrTable" : {
1431
+ "nodetype" : "table",
1432
+ "moduleName" : "SCTP-MIB",
1433
+ "oid" : "1.3.6.1.2.1.104.1.10",
1434
+ "status" : "current",
1435
+ "description" :
1436
+ """With the use of this table, a list of associations that have
1437
+ the specified IP address as one of the remote ones can be
1438
+ retrieved. """,
1439
+ }, # table
1440
+ "sctpLookupRemIPAddrEntry" : {
1441
+ "nodetype" : "row",
1442
+ "moduleName" : "SCTP-MIB",
1443
+ "oid" : "1.3.6.1.2.1.104.1.10.1",
1444
+ "status" : "current",
1445
+ "linkage" : [
1446
+ "sctpAssocRemAddrType",
1447
+ "sctpAssocRemAddr",
1448
+ "sctpAssocId",
1449
+ ],
1450
+ "description" :
1451
+ """This table is indexed by a remote IP address and association
1452
+ ID. Specifying an IP address we would get a list of the
1453
+ associations that have the specified IP address included
1454
+ within the set of remote IP addresses.""",
1455
+ }, # row
1456
+ "sctpLookupRemIPAddrStartTime" : {
1457
+ "nodetype" : "column",
1458
+ "moduleName" : "SCTP-MIB",
1459
+ "oid" : "1.3.6.1.2.1.104.1.10.1.1",
1460
+ "status" : "current",
1461
+ "syntax" : {
1462
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1463
+ },
1464
+ "access" : "readonly",
1465
+ "description" :
1466
+ """The value of SysUpTime at the time that this row was created.
1467
+
1468
+ As the table will be created after the sctpAssocTable
1469
+ creation, this value could be equal to the sctpAssocStartTime
1470
+ object from the main table.""",
1471
+ }, # column
1472
+ "sctpMibConformance" : {
1473
+ "nodetype" : "node",
1474
+ "moduleName" : "SCTP-MIB",
1475
+ "oid" : "1.3.6.1.2.1.104.2",
1476
+ }, # node
1477
+ "sctpMibCompliances" : {
1478
+ "nodetype" : "node",
1479
+ "moduleName" : "SCTP-MIB",
1480
+ "oid" : "1.3.6.1.2.1.104.2.1",
1481
+ }, # node
1482
+ "sctpMibGroups" : {
1483
+ "nodetype" : "node",
1484
+ "moduleName" : "SCTP-MIB",
1485
+ "oid" : "1.3.6.1.2.1.104.2.2",
1486
+ }, # node
1487
+ }, # nodes
1488
+
1489
+ "groups" : {
1490
+ "sctpLayerParamsGroup" : {
1491
+ "nodetype" : "group",
1492
+ "moduleName" : "SCTP-MIB",
1493
+ "oid" : "1.3.6.1.2.1.104.2.2.1",
1494
+ "status" : "current",
1495
+ "members" : {
1496
+ "sctpRtoAlgorithm" : {
1497
+ "nodetype" : "member",
1498
+ "module" : "SCTP-MIB"
1499
+ },
1500
+ "sctpRtoMin" : {
1501
+ "nodetype" : "member",
1502
+ "module" : "SCTP-MIB"
1503
+ },
1504
+ "sctpRtoMax" : {
1505
+ "nodetype" : "member",
1506
+ "module" : "SCTP-MIB"
1507
+ },
1508
+ "sctpRtoInitial" : {
1509
+ "nodetype" : "member",
1510
+ "module" : "SCTP-MIB"
1511
+ },
1512
+ "sctpMaxAssocs" : {
1513
+ "nodetype" : "member",
1514
+ "module" : "SCTP-MIB"
1515
+ },
1516
+ "sctpValCookieLife" : {
1517
+ "nodetype" : "member",
1518
+ "module" : "SCTP-MIB"
1519
+ },
1520
+ "sctpMaxInitRetr" : {
1521
+ "nodetype" : "member",
1522
+ "module" : "SCTP-MIB"
1523
+ },
1524
+ }, # members
1525
+ "description" :
1526
+ """Common parameters for the SCTP layer, i.e., for all the
1527
+ associations. They can usually be referred to as configuration
1528
+ parameters.""",
1529
+ }, # group
1530
+ "sctpStatsGroup" : {
1531
+ "nodetype" : "group",
1532
+ "moduleName" : "SCTP-MIB",
1533
+ "oid" : "1.3.6.1.2.1.104.2.2.2",
1534
+ "status" : "current",
1535
+ "members" : {
1536
+ "sctpCurrEstab" : {
1537
+ "nodetype" : "member",
1538
+ "module" : "SCTP-MIB"
1539
+ },
1540
+ "sctpActiveEstabs" : {
1541
+ "nodetype" : "member",
1542
+ "module" : "SCTP-MIB"
1543
+ },
1544
+ "sctpPassiveEstabs" : {
1545
+ "nodetype" : "member",
1546
+ "module" : "SCTP-MIB"
1547
+ },
1548
+ "sctpAborteds" : {
1549
+ "nodetype" : "member",
1550
+ "module" : "SCTP-MIB"
1551
+ },
1552
+ "sctpShutdowns" : {
1553
+ "nodetype" : "member",
1554
+ "module" : "SCTP-MIB"
1555
+ },
1556
+ "sctpOutOfBlues" : {
1557
+ "nodetype" : "member",
1558
+ "module" : "SCTP-MIB"
1559
+ },
1560
+ "sctpChecksumErrors" : {
1561
+ "nodetype" : "member",
1562
+ "module" : "SCTP-MIB"
1563
+ },
1564
+ "sctpOutCtrlChunks" : {
1565
+ "nodetype" : "member",
1566
+ "module" : "SCTP-MIB"
1567
+ },
1568
+ "sctpOutOrderChunks" : {
1569
+ "nodetype" : "member",
1570
+ "module" : "SCTP-MIB"
1571
+ },
1572
+ "sctpOutUnorderChunks" : {
1573
+ "nodetype" : "member",
1574
+ "module" : "SCTP-MIB"
1575
+ },
1576
+ "sctpInCtrlChunks" : {
1577
+ "nodetype" : "member",
1578
+ "module" : "SCTP-MIB"
1579
+ },
1580
+ "sctpInOrderChunks" : {
1581
+ "nodetype" : "member",
1582
+ "module" : "SCTP-MIB"
1583
+ },
1584
+ "sctpInUnorderChunks" : {
1585
+ "nodetype" : "member",
1586
+ "module" : "SCTP-MIB"
1587
+ },
1588
+ "sctpFragUsrMsgs" : {
1589
+ "nodetype" : "member",
1590
+ "module" : "SCTP-MIB"
1591
+ },
1592
+ "sctpReasmUsrMsgs" : {
1593
+ "nodetype" : "member",
1594
+ "module" : "SCTP-MIB"
1595
+ },
1596
+ "sctpOutSCTPPacks" : {
1597
+ "nodetype" : "member",
1598
+ "module" : "SCTP-MIB"
1599
+ },
1600
+ "sctpInSCTPPacks" : {
1601
+ "nodetype" : "member",
1602
+ "module" : "SCTP-MIB"
1603
+ },
1604
+ "sctpDiscontinuityTime" : {
1605
+ "nodetype" : "member",
1606
+ "module" : "SCTP-MIB"
1607
+ },
1608
+ "sctpAssocT1expireds" : {
1609
+ "nodetype" : "member",
1610
+ "module" : "SCTP-MIB"
1611
+ },
1612
+ "sctpAssocT2expireds" : {
1613
+ "nodetype" : "member",
1614
+ "module" : "SCTP-MIB"
1615
+ },
1616
+ "sctpAssocRtxChunks" : {
1617
+ "nodetype" : "member",
1618
+ "module" : "SCTP-MIB"
1619
+ },
1620
+ "sctpAssocRemAddrRtx" : {
1621
+ "nodetype" : "member",
1622
+ "module" : "SCTP-MIB"
1623
+ },
1624
+ }, # members
1625
+ "description" :
1626
+ """Statistics group. It includes the objects to collect state
1627
+ changes in the SCTP protocol local layer and flow control
1628
+ statistics.""",
1629
+ }, # group
1630
+ "sctpPerAssocParamsGroup" : {
1631
+ "nodetype" : "group",
1632
+ "moduleName" : "SCTP-MIB",
1633
+ "oid" : "1.3.6.1.2.1.104.2.2.3",
1634
+ "status" : "current",
1635
+ "members" : {
1636
+ "sctpAssocRemHostName" : {
1637
+ "nodetype" : "member",
1638
+ "module" : "SCTP-MIB"
1639
+ },
1640
+ "sctpAssocLocalPort" : {
1641
+ "nodetype" : "member",
1642
+ "module" : "SCTP-MIB"
1643
+ },
1644
+ "sctpAssocRemPort" : {
1645
+ "nodetype" : "member",
1646
+ "module" : "SCTP-MIB"
1647
+ },
1648
+ "sctpAssocRemPrimAddrType" : {
1649
+ "nodetype" : "member",
1650
+ "module" : "SCTP-MIB"
1651
+ },
1652
+ "sctpAssocRemPrimAddr" : {
1653
+ "nodetype" : "member",
1654
+ "module" : "SCTP-MIB"
1655
+ },
1656
+ "sctpAssocHeartBeatInterval" : {
1657
+ "nodetype" : "member",
1658
+ "module" : "SCTP-MIB"
1659
+ },
1660
+ "sctpAssocState" : {
1661
+ "nodetype" : "member",
1662
+ "module" : "SCTP-MIB"
1663
+ },
1664
+ "sctpAssocInStreams" : {
1665
+ "nodetype" : "member",
1666
+ "module" : "SCTP-MIB"
1667
+ },
1668
+ "sctpAssocOutStreams" : {
1669
+ "nodetype" : "member",
1670
+ "module" : "SCTP-MIB"
1671
+ },
1672
+ "sctpAssocMaxRetr" : {
1673
+ "nodetype" : "member",
1674
+ "module" : "SCTP-MIB"
1675
+ },
1676
+ "sctpAssocPrimProcess" : {
1677
+ "nodetype" : "member",
1678
+ "module" : "SCTP-MIB"
1679
+ },
1680
+ "sctpAssocStartTime" : {
1681
+ "nodetype" : "member",
1682
+ "module" : "SCTP-MIB"
1683
+ },
1684
+ "sctpAssocDiscontinuityTime" : {
1685
+ "nodetype" : "member",
1686
+ "module" : "SCTP-MIB"
1687
+ },
1688
+ "sctpAssocLocalAddrStartTime" : {
1689
+ "nodetype" : "member",
1690
+ "module" : "SCTP-MIB"
1691
+ },
1692
+ "sctpAssocRemAddrActive" : {
1693
+ "nodetype" : "member",
1694
+ "module" : "SCTP-MIB"
1695
+ },
1696
+ "sctpAssocRemAddrHBActive" : {
1697
+ "nodetype" : "member",
1698
+ "module" : "SCTP-MIB"
1699
+ },
1700
+ "sctpAssocRemAddrRTO" : {
1701
+ "nodetype" : "member",
1702
+ "module" : "SCTP-MIB"
1703
+ },
1704
+ "sctpAssocRemAddrMaxPathRtx" : {
1705
+ "nodetype" : "member",
1706
+ "module" : "SCTP-MIB"
1707
+ },
1708
+ "sctpAssocRemAddrStartTime" : {
1709
+ "nodetype" : "member",
1710
+ "module" : "SCTP-MIB"
1711
+ },
1712
+ }, # members
1713
+ "description" :
1714
+ """The SCTP group of objects to manage per-association
1715
+ parameters. These variables include all the SCTP basic
1716
+ features.""",
1717
+ }, # group
1718
+ "sctpPerAssocStatsGroup" : {
1719
+ "nodetype" : "group",
1720
+ "moduleName" : "SCTP-MIB",
1721
+ "oid" : "1.3.6.1.2.1.104.2.2.4",
1722
+ "status" : "current",
1723
+ "members" : {
1724
+ "sctpAssocT1expireds" : {
1725
+ "nodetype" : "member",
1726
+ "module" : "SCTP-MIB"
1727
+ },
1728
+ "sctpAssocT2expireds" : {
1729
+ "nodetype" : "member",
1730
+ "module" : "SCTP-MIB"
1731
+ },
1732
+ "sctpAssocRtxChunks" : {
1733
+ "nodetype" : "member",
1734
+ "module" : "SCTP-MIB"
1735
+ },
1736
+ "sctpAssocRemAddrRtx" : {
1737
+ "nodetype" : "member",
1738
+ "module" : "SCTP-MIB"
1739
+ },
1740
+ }, # members
1741
+ "description" :
1742
+ """Per Association Statistics group. It includes the objects to
1743
+ collect flow control statistics per association.""",
1744
+ }, # group
1745
+ "sctpInverseGroup" : {
1746
+ "nodetype" : "group",
1747
+ "moduleName" : "SCTP-MIB",
1748
+ "oid" : "1.3.6.1.2.1.104.2.2.5",
1749
+ "status" : "current",
1750
+ "members" : {
1751
+ "sctpLookupLocalPortStartTime" : {
1752
+ "nodetype" : "member",
1753
+ "module" : "SCTP-MIB"
1754
+ },
1755
+ "sctpLookupRemPortStartTime" : {
1756
+ "nodetype" : "member",
1757
+ "module" : "SCTP-MIB"
1758
+ },
1759
+ "sctpLookupRemHostNameStartTime" : {
1760
+ "nodetype" : "member",
1761
+ "module" : "SCTP-MIB"
1762
+ },
1763
+ "sctpLookupRemPrimIPAddrStartTime" : {
1764
+ "nodetype" : "member",
1765
+ "module" : "SCTP-MIB"
1766
+ },
1767
+ "sctpLookupRemIPAddrStartTime" : {
1768
+ "nodetype" : "member",
1769
+ "module" : "SCTP-MIB"
1770
+ },
1771
+ }, # members
1772
+ "description" :
1773
+ """Objects used in the inverse lookup tables.""",
1774
+ }, # group
1775
+ }, # groups
1776
+
1777
+ "compliances" : {
1778
+ "sctpMibCompliance" : {
1779
+ "nodetype" : "compliance",
1780
+ "moduleName" : "SCTP-MIB",
1781
+ "oid" : "1.3.6.1.2.1.104.2.1.1",
1782
+ "status" : "current",
1783
+ "description" :
1784
+ """The compliance statement for SNMP entities which implement
1785
+ this SCTP MIB Module.
1786
+
1787
+ There are a number of INDEX objects that cannot be represented
1788
+ in the form of OBJECT clauses in SMIv2, but for which we have
1789
+ the following compliance requirements, expressed in OBJECT
1790
+ clause form in this description clause:
1791
+
1792
+ -- OBJECT sctpAssocLocalAddrType
1793
+ -- SYNTAX InetAddressType {ipv4(1), ipv6(2)}
1794
+ -- DESCRIPTION
1795
+ -- It is only required to have IPv4 and IPv6 addresses without
1796
+ -- zone indices.
1797
+ -- The address with zone indices is required if an
1798
+ -- implementation can connect multiple zones.
1799
+ --
1800
+ -- OBJECT sctpAssocLocalAddr
1801
+ -- SYNTAX InetAddress (SIZE(4|16))
1802
+ -- DESCRIPTION
1803
+ -- An implementation is only required to support globally
1804
+ -- unique IPv4 and IPv6 addresses.
1805
+ --
1806
+ -- OBJECT sctpAssocRemAddrType
1807
+ -- SYNTAX InetAddressType {ipv4(1), ipv6(2)}
1808
+ -- DESCRIPTION
1809
+ -- It is only required to have IPv4 and IPv6 addresses without
1810
+ -- zone indices.
1811
+ -- The address with zone indices is required if an
1812
+ -- implementation can connect multiple zones.
1813
+ --
1814
+ -- OBJECT sctpAssocRemAddr
1815
+ -- SYNTAX InetAddress (SIZE(4|16))
1816
+ -- DESCRIPTION
1817
+ -- An implementation is only required to support globally
1818
+ -- unique IPv4 and IPv6 addresses.
1819
+ --""",
1820
+ "requires" : {
1821
+ "sctpLayerParamsGroup" : {
1822
+ "nodetype" : "mandatory",
1823
+ "module" : "SCTP-MIB"
1824
+ },
1825
+ "sctpPerAssocParamsGroup" : {
1826
+ "nodetype" : "mandatory",
1827
+ "module" : "SCTP-MIB"
1828
+ },
1829
+ "sctpStatsGroup" : {
1830
+ "nodetype" : "mandatory",
1831
+ "module" : "SCTP-MIB"
1832
+ },
1833
+ "sctpPerAssocStatsGroup" : {
1834
+ "nodetype" : "mandatory",
1835
+ "module" : "SCTP-MIB"
1836
+ },
1837
+ "sctpInverseGroup" : {
1838
+ "nodetype" : "optional",
1839
+ "module" : "SCTP-MIB",
1840
+ "description" :
1841
+ """Objects used in inverse lookup tables. This should be
1842
+ implemented, at the discretion of the implementers, for
1843
+ easier lookups in the association tables""",
1844
+ },
1845
+ }, # requires
1846
+ "refinements" : {
1847
+ "sctpAssocRemPrimAddrType" : {
1848
+ "module" : "SCTP-MIB",
1849
+ "syntax" : {
1850
+ "type" : {
1851
+ "basetype" : "Enumeration",
1852
+ "parent module" : {
1853
+ "name" : "INET-ADDRESS-MIB",
1854
+ "type" : "InetAddressType",
1855
+ },
1856
+ "ipv4" : {
1857
+ "nodetype" : "namednumber",
1858
+ "number" : "1"
1859
+ },
1860
+ "ipv6" : {
1861
+ "nodetype" : "namednumber",
1862
+ "number" : "2"
1863
+ },
1864
+ },
1865
+ }, # syntax
1866
+ "description" :
1867
+ """It is only required to have IPv4 and IPv6 addresses
1868
+ without zone indices.
1869
+
1870
+ The address with zone indices is required if an
1871
+ implementation can connect multiple zones.""",
1872
+ },
1873
+ "sctpAssocRemPrimAddr" : {
1874
+ "module" : "SCTP-MIB",
1875
+ "syntax" : {
1876
+ "type" : {
1877
+ "basetype" : "OctetString",
1878
+ "parent module" : {
1879
+ "name" : "INET-ADDRESS-MIB",
1880
+ "type" : "InetAddress",
1881
+ },
1882
+ "ranges" : [
1883
+ {
1884
+ "min" : "4",
1885
+ "max" : "4"
1886
+ },
1887
+ {
1888
+ "min" : "16",
1889
+ "max" : "16"
1890
+ },
1891
+ ],
1892
+ "range" : {
1893
+ "min" : "4",
1894
+ "max" : "16"
1895
+ },
1896
+ },
1897
+ }, # syntax
1898
+ "description" :
1899
+ """An implementation is only required to support globally
1900
+ unique IPv4 and globally unique IPv6 addresses.""",
1901
+ },
1902
+ "sctpAssocState" : {
1903
+ "module" : "SCTP-MIB",
1904
+ "writesyntax" : {
1905
+ "type" : {
1906
+ "basetype" : "Enumeration",
1907
+ "deleteTCB" : {
1908
+ "nodetype" : "namednumber",
1909
+ "number" : "9"
1910
+ },
1911
+ },
1912
+ }, # writesyntax
1913
+ "access" : "readonly",
1914
+ "description" :
1915
+ """Only the deleteTCB(9) value MAY be set by a management
1916
+ station at most. A read-only option is also considered to
1917
+ be compliant with this MIB module description.""",
1918
+ },
1919
+ }, # refinements
1920
+
1921
+ }, # compliance
1922
+ }, # compliances
1923
+
1924
+ }