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,1319 @@
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 TCP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TCP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TCP-MIB",
11
+
12
+ "TCP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPv6 MIB Revision Team
17
+ http://www.ietf.org/html.charters/ipv6-charter.html""",
18
+ "contact" :
19
+ """Rajiv Raghunarayan (editor)
20
+
21
+ Cisco Systems Inc.
22
+ 170 West Tasman Drive
23
+ San Jose, CA 95134
24
+
25
+ Phone: +1 408 853 9612
26
+ Email: <raraghun@cisco.com>
27
+
28
+ Send comments to <ipv6@ietf.org>""",
29
+ "description" :
30
+ """The MIB module for managing TCP implementations.
31
+
32
+ Copyright (C) The Internet Society (2005). This version
33
+ of this MIB module is a part of RFC 4022; see the RFC
34
+ itself for full legal notices.""",
35
+ "revisions" : (
36
+ {
37
+ "date" : "2005-02-18 00:00",
38
+ "description" :
39
+ """IP version neutral revision, published as RFC 4022.""",
40
+ },
41
+ {
42
+ "date" : "1994-11-01 00:00",
43
+ "description" :
44
+ """Initial SMIv2 version, published as RFC 2012.""",
45
+ },
46
+ {
47
+ "date" : "1991-03-31 00:00",
48
+ "description" :
49
+ """The initial revision of this MIB module was part of
50
+ MIB-II.""",
51
+ },
52
+ ),
53
+ "identity node" : "tcpMIB",
54
+ },
55
+
56
+ "imports" : (
57
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
58
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
59
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
60
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
61
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
62
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
63
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
64
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
65
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
66
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
67
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
68
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
69
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
70
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
71
+ ),
72
+
73
+ "nodes" : {
74
+ "tcp" : {
75
+ "nodetype" : "node",
76
+ "moduleName" : "TCP-MIB",
77
+ "oid" : "1.3.6.1.2.1.6",
78
+ }, # node
79
+ "tcpRtoAlgorithm" : {
80
+ "nodetype" : "scalar",
81
+ "moduleName" : "TCP-MIB",
82
+ "oid" : "1.3.6.1.2.1.6.1",
83
+ "status" : "current",
84
+ "syntax" : {
85
+ "type" : {
86
+ "basetype" : "Enumeration",
87
+ "other" : {
88
+ "nodetype" : "namednumber",
89
+ "number" : "1"
90
+ },
91
+ "constant" : {
92
+ "nodetype" : "namednumber",
93
+ "number" : "2"
94
+ },
95
+ "rsre" : {
96
+ "nodetype" : "namednumber",
97
+ "number" : "3"
98
+ },
99
+ "vanj" : {
100
+ "nodetype" : "namednumber",
101
+ "number" : "4"
102
+ },
103
+ "rfc2988" : {
104
+ "nodetype" : "namednumber",
105
+ "number" : "5"
106
+ },
107
+ },
108
+ },
109
+ "access" : "readonly",
110
+ "description" :
111
+ """The algorithm used to determine the timeout value used for
112
+ retransmitting unacknowledged octets.""",
113
+ }, # scalar
114
+ "tcpRtoMin" : {
115
+ "nodetype" : "scalar",
116
+ "moduleName" : "TCP-MIB",
117
+ "oid" : "1.3.6.1.2.1.6.2",
118
+ "status" : "current",
119
+ "syntax" : {
120
+ "type" : {
121
+ "basetype" : "Integer32",
122
+ "ranges" : [
123
+ {
124
+ "min" : "0",
125
+ "max" : "2147483647"
126
+ },
127
+ ],
128
+ "range" : {
129
+ "min" : "0",
130
+ "max" : "2147483647"
131
+ },
132
+ },
133
+ },
134
+ "access" : "readonly",
135
+ "units" : "milliseconds",
136
+ "description" :
137
+ """The minimum value permitted by a TCP implementation for
138
+ the retransmission timeout, measured in milliseconds.
139
+ More refined semantics for objects of this type depend
140
+ on the algorithm used to determine the retransmission
141
+ timeout; in particular, the IETF standard algorithm
142
+ rfc2988(5) provides a minimum value.""",
143
+ }, # scalar
144
+ "tcpRtoMax" : {
145
+ "nodetype" : "scalar",
146
+ "moduleName" : "TCP-MIB",
147
+ "oid" : "1.3.6.1.2.1.6.3",
148
+ "status" : "current",
149
+ "syntax" : {
150
+ "type" : {
151
+ "basetype" : "Integer32",
152
+ "ranges" : [
153
+ {
154
+ "min" : "0",
155
+ "max" : "2147483647"
156
+ },
157
+ ],
158
+ "range" : {
159
+ "min" : "0",
160
+ "max" : "2147483647"
161
+ },
162
+ },
163
+ },
164
+ "access" : "readonly",
165
+ "units" : "milliseconds",
166
+ "description" :
167
+ """The maximum value permitted by a TCP implementation for
168
+ the retransmission timeout, measured in milliseconds.
169
+ More refined semantics for objects of this type depend
170
+ on the algorithm used to determine the retransmission
171
+ timeout; in particular, the IETF standard algorithm
172
+ rfc2988(5) provides an upper bound (as part of an
173
+ adaptive backoff algorithm).""",
174
+ }, # scalar
175
+ "tcpMaxConn" : {
176
+ "nodetype" : "scalar",
177
+ "moduleName" : "TCP-MIB",
178
+ "oid" : "1.3.6.1.2.1.6.4",
179
+ "status" : "current",
180
+ "syntax" : {
181
+ "type" : {
182
+ "basetype" : "Integer32",
183
+ "ranges" : [
184
+ {
185
+ "min" : "-1",
186
+ "max" : "2147483647"
187
+ },
188
+ ],
189
+ "range" : {
190
+ "min" : "-1",
191
+ "max" : "2147483647"
192
+ },
193
+ },
194
+ },
195
+ "access" : "readonly",
196
+ "description" :
197
+ """The limit on the total number of TCP connections the entity
198
+ can support. In entities where the maximum number of
199
+ connections is dynamic, this object should contain the
200
+ value -1.""",
201
+ }, # scalar
202
+ "tcpActiveOpens" : {
203
+ "nodetype" : "scalar",
204
+ "moduleName" : "TCP-MIB",
205
+ "oid" : "1.3.6.1.2.1.6.5",
206
+ "status" : "current",
207
+ "syntax" : {
208
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
209
+ },
210
+ "access" : "readonly",
211
+ "description" :
212
+ """The number of times that TCP connections have made a direct
213
+ transition to the SYN-SENT state from the CLOSED state.
214
+
215
+ Discontinuities in the value of this counter are
216
+ indicated via discontinuities in the value of sysUpTime.""",
217
+ }, # scalar
218
+ "tcpPassiveOpens" : {
219
+ "nodetype" : "scalar",
220
+ "moduleName" : "TCP-MIB",
221
+ "oid" : "1.3.6.1.2.1.6.6",
222
+ "status" : "current",
223
+ "syntax" : {
224
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
225
+ },
226
+ "access" : "readonly",
227
+ "description" :
228
+ """The number of times TCP connections have made a direct
229
+ transition to the SYN-RCVD state from the LISTEN state.
230
+
231
+ Discontinuities in the value of this counter are
232
+ indicated via discontinuities in the value of sysUpTime.""",
233
+ }, # scalar
234
+ "tcpAttemptFails" : {
235
+ "nodetype" : "scalar",
236
+ "moduleName" : "TCP-MIB",
237
+ "oid" : "1.3.6.1.2.1.6.7",
238
+ "status" : "current",
239
+ "syntax" : {
240
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
241
+ },
242
+ "access" : "readonly",
243
+ "description" :
244
+ """The number of times that TCP connections have made a direct
245
+ transition to the CLOSED state from either the SYN-SENT
246
+ state or the SYN-RCVD state, plus the number of times that
247
+ TCP connections have made a direct transition to the
248
+ LISTEN state from the SYN-RCVD state.
249
+
250
+ Discontinuities in the value of this counter are
251
+ indicated via discontinuities in the value of sysUpTime.""",
252
+ }, # scalar
253
+ "tcpEstabResets" : {
254
+ "nodetype" : "scalar",
255
+ "moduleName" : "TCP-MIB",
256
+ "oid" : "1.3.6.1.2.1.6.8",
257
+ "status" : "current",
258
+ "syntax" : {
259
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
260
+ },
261
+ "access" : "readonly",
262
+ "description" :
263
+ """The number of times that TCP connections have made a direct
264
+ transition to the CLOSED state from either the ESTABLISHED
265
+ state or the CLOSE-WAIT state.
266
+
267
+ Discontinuities in the value of this counter are
268
+ indicated via discontinuities in the value of sysUpTime.""",
269
+ }, # scalar
270
+ "tcpCurrEstab" : {
271
+ "nodetype" : "scalar",
272
+ "moduleName" : "TCP-MIB",
273
+ "oid" : "1.3.6.1.2.1.6.9",
274
+ "status" : "current",
275
+ "syntax" : {
276
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
277
+ },
278
+ "access" : "readonly",
279
+ "description" :
280
+ """The number of TCP connections for which the current state
281
+ is either ESTABLISHED or CLOSE-WAIT.""",
282
+ }, # scalar
283
+ "tcpInSegs" : {
284
+ "nodetype" : "scalar",
285
+ "moduleName" : "TCP-MIB",
286
+ "oid" : "1.3.6.1.2.1.6.10",
287
+ "status" : "current",
288
+ "syntax" : {
289
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
290
+ },
291
+ "access" : "readonly",
292
+ "description" :
293
+ """The total number of segments received, including those
294
+ received in error. This count includes segments received
295
+ on currently established connections.
296
+
297
+ Discontinuities in the value of this counter are
298
+ indicated via discontinuities in the value of sysUpTime.""",
299
+ }, # scalar
300
+ "tcpOutSegs" : {
301
+ "nodetype" : "scalar",
302
+ "moduleName" : "TCP-MIB",
303
+ "oid" : "1.3.6.1.2.1.6.11",
304
+ "status" : "current",
305
+ "syntax" : {
306
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
307
+ },
308
+ "access" : "readonly",
309
+ "description" :
310
+ """The total number of segments sent, including those on
311
+ current connections but excluding those containing only
312
+ retransmitted octets.
313
+
314
+ Discontinuities in the value of this counter are
315
+ indicated via discontinuities in the value of sysUpTime.""",
316
+ }, # scalar
317
+ "tcpRetransSegs" : {
318
+ "nodetype" : "scalar",
319
+ "moduleName" : "TCP-MIB",
320
+ "oid" : "1.3.6.1.2.1.6.12",
321
+ "status" : "current",
322
+ "syntax" : {
323
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
324
+ },
325
+ "access" : "readonly",
326
+ "description" :
327
+ """The total number of segments retransmitted; that is, the
328
+ number of TCP segments transmitted containing one or more
329
+ previously transmitted octets.
330
+
331
+ Discontinuities in the value of this counter are
332
+ indicated via discontinuities in the value of sysUpTime.""",
333
+ }, # scalar
334
+ "tcpConnTable" : {
335
+ "nodetype" : "table",
336
+ "moduleName" : "TCP-MIB",
337
+ "oid" : "1.3.6.1.2.1.6.13",
338
+ "status" : "deprecated",
339
+ "description" :
340
+ """A table containing information about existing IPv4-specific
341
+ TCP connections or listeners. This table has been
342
+ deprecated in favor of the version neutral
343
+ tcpConnectionTable.""",
344
+ }, # table
345
+ "tcpConnEntry" : {
346
+ "nodetype" : "row",
347
+ "moduleName" : "TCP-MIB",
348
+ "oid" : "1.3.6.1.2.1.6.13.1",
349
+ "status" : "deprecated",
350
+ "linkage" : [
351
+ "tcpConnLocalAddress",
352
+ "tcpConnLocalPort",
353
+ "tcpConnRemAddress",
354
+ "tcpConnRemPort",
355
+ ],
356
+ "description" :
357
+ """A conceptual row of the tcpConnTable containing information
358
+ about a particular current IPv4 TCP connection. Each row
359
+ of this table is transient in that it ceases to exist when
360
+ (or soon after) the connection makes the transition to the
361
+ CLOSED state.""",
362
+ }, # row
363
+ "tcpConnState" : {
364
+ "nodetype" : "column",
365
+ "moduleName" : "TCP-MIB",
366
+ "oid" : "1.3.6.1.2.1.6.13.1.1",
367
+ "status" : "deprecated",
368
+ "syntax" : {
369
+ "type" : {
370
+ "basetype" : "Enumeration",
371
+ "closed" : {
372
+ "nodetype" : "namednumber",
373
+ "number" : "1"
374
+ },
375
+ "listen" : {
376
+ "nodetype" : "namednumber",
377
+ "number" : "2"
378
+ },
379
+ "synSent" : {
380
+ "nodetype" : "namednumber",
381
+ "number" : "3"
382
+ },
383
+ "synReceived" : {
384
+ "nodetype" : "namednumber",
385
+ "number" : "4"
386
+ },
387
+ "established" : {
388
+ "nodetype" : "namednumber",
389
+ "number" : "5"
390
+ },
391
+ "finWait1" : {
392
+ "nodetype" : "namednumber",
393
+ "number" : "6"
394
+ },
395
+ "finWait2" : {
396
+ "nodetype" : "namednumber",
397
+ "number" : "7"
398
+ },
399
+ "closeWait" : {
400
+ "nodetype" : "namednumber",
401
+ "number" : "8"
402
+ },
403
+ "lastAck" : {
404
+ "nodetype" : "namednumber",
405
+ "number" : "9"
406
+ },
407
+ "closing" : {
408
+ "nodetype" : "namednumber",
409
+ "number" : "10"
410
+ },
411
+ "timeWait" : {
412
+ "nodetype" : "namednumber",
413
+ "number" : "11"
414
+ },
415
+ "deleteTCB" : {
416
+ "nodetype" : "namednumber",
417
+ "number" : "12"
418
+ },
419
+ },
420
+ },
421
+ "access" : "readwrite",
422
+ "description" :
423
+ """The state of this TCP connection.
424
+
425
+ The only value that may be set by a management station is
426
+ deleteTCB(12). Accordingly, it is appropriate for an agent
427
+ to return a `badValue' response if a management station
428
+ attempts to set this object to any other value.
429
+
430
+ If a management station sets this object to the value
431
+ deleteTCB(12), then the TCB (as defined in [RFC793]) of
432
+ the corresponding connection on the managed node is
433
+ deleted, resulting in immediate termination of the
434
+ connection.
435
+
436
+ As an implementation-specific option, a RST segment may be
437
+ sent from the managed node to the other TCP endpoint (note,
438
+ however, that RST segments are not sent reliably).""",
439
+ }, # column
440
+ "tcpConnLocalAddress" : {
441
+ "nodetype" : "column",
442
+ "moduleName" : "TCP-MIB",
443
+ "oid" : "1.3.6.1.2.1.6.13.1.2",
444
+ "status" : "deprecated",
445
+ "syntax" : {
446
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
447
+ },
448
+ "access" : "readonly",
449
+ "description" :
450
+ """The local IP address for this TCP connection. In the case
451
+ of a connection in the listen state willing to
452
+ accept connections for any IP interface associated with the
453
+ node, the value 0.0.0.0 is used.""",
454
+ }, # column
455
+ "tcpConnLocalPort" : {
456
+ "nodetype" : "column",
457
+ "moduleName" : "TCP-MIB",
458
+ "oid" : "1.3.6.1.2.1.6.13.1.3",
459
+ "status" : "deprecated",
460
+ "syntax" : {
461
+ "type" : {
462
+ "basetype" : "Integer32",
463
+ "ranges" : [
464
+ {
465
+ "min" : "0",
466
+ "max" : "65535"
467
+ },
468
+ ],
469
+ "range" : {
470
+ "min" : "0",
471
+ "max" : "65535"
472
+ },
473
+ },
474
+ },
475
+ "access" : "readonly",
476
+ "description" :
477
+ """The local port number for this TCP connection.""",
478
+ }, # column
479
+ "tcpConnRemAddress" : {
480
+ "nodetype" : "column",
481
+ "moduleName" : "TCP-MIB",
482
+ "oid" : "1.3.6.1.2.1.6.13.1.4",
483
+ "status" : "deprecated",
484
+ "syntax" : {
485
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
486
+ },
487
+ "access" : "readonly",
488
+ "description" :
489
+ """The remote IP address for this TCP connection.""",
490
+ }, # column
491
+ "tcpConnRemPort" : {
492
+ "nodetype" : "column",
493
+ "moduleName" : "TCP-MIB",
494
+ "oid" : "1.3.6.1.2.1.6.13.1.5",
495
+ "status" : "deprecated",
496
+ "syntax" : {
497
+ "type" : {
498
+ "basetype" : "Integer32",
499
+ "ranges" : [
500
+ {
501
+ "min" : "0",
502
+ "max" : "65535"
503
+ },
504
+ ],
505
+ "range" : {
506
+ "min" : "0",
507
+ "max" : "65535"
508
+ },
509
+ },
510
+ },
511
+ "access" : "readonly",
512
+ "description" :
513
+ """The remote port number for this TCP connection.""",
514
+ }, # column
515
+ "tcpInErrs" : {
516
+ "nodetype" : "scalar",
517
+ "moduleName" : "TCP-MIB",
518
+ "oid" : "1.3.6.1.2.1.6.14",
519
+ "status" : "current",
520
+ "syntax" : {
521
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
522
+ },
523
+ "access" : "readonly",
524
+ "description" :
525
+ """The total number of segments received in error (e.g., bad
526
+ TCP checksums).
527
+
528
+ Discontinuities in the value of this counter are
529
+ indicated via discontinuities in the value of sysUpTime.""",
530
+ }, # scalar
531
+ "tcpOutRsts" : {
532
+ "nodetype" : "scalar",
533
+ "moduleName" : "TCP-MIB",
534
+ "oid" : "1.3.6.1.2.1.6.15",
535
+ "status" : "current",
536
+ "syntax" : {
537
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
538
+ },
539
+ "access" : "readonly",
540
+ "description" :
541
+ """The number of TCP segments sent containing the RST flag.
542
+
543
+ Discontinuities in the value of this counter are
544
+ indicated via discontinuities in the value of sysUpTime.""",
545
+ }, # scalar
546
+ "tcpHCInSegs" : {
547
+ "nodetype" : "scalar",
548
+ "moduleName" : "TCP-MIB",
549
+ "oid" : "1.3.6.1.2.1.6.17",
550
+ "status" : "current",
551
+ "syntax" : {
552
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
553
+ },
554
+ "access" : "readonly",
555
+ "description" :
556
+ """The total number of segments received, including those
557
+ received in error. This count includes segments received
558
+
559
+
560
+
561
+ on currently established connections. This object is
562
+ the 64-bit equivalent of tcpInSegs.
563
+
564
+ Discontinuities in the value of this counter are
565
+ indicated via discontinuities in the value of sysUpTime.""",
566
+ }, # scalar
567
+ "tcpHCOutSegs" : {
568
+ "nodetype" : "scalar",
569
+ "moduleName" : "TCP-MIB",
570
+ "oid" : "1.3.6.1.2.1.6.18",
571
+ "status" : "current",
572
+ "syntax" : {
573
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
574
+ },
575
+ "access" : "readonly",
576
+ "description" :
577
+ """The total number of segments sent, including those on
578
+ current connections but excluding those containing only
579
+ retransmitted octets. This object is the 64-bit
580
+ equivalent of tcpOutSegs.
581
+
582
+ Discontinuities in the value of this counter are
583
+ indicated via discontinuities in the value of sysUpTime.""",
584
+ }, # scalar
585
+ "tcpConnectionTable" : {
586
+ "nodetype" : "table",
587
+ "moduleName" : "TCP-MIB",
588
+ "oid" : "1.3.6.1.2.1.6.19",
589
+ "status" : "current",
590
+ "description" :
591
+ """A table containing information about existing TCP
592
+ connections. Note that unlike earlier TCP MIBs, there
593
+ is a separate table for connections in the LISTEN state.""",
594
+ }, # table
595
+ "tcpConnectionEntry" : {
596
+ "nodetype" : "row",
597
+ "moduleName" : "TCP-MIB",
598
+ "oid" : "1.3.6.1.2.1.6.19.1",
599
+ "status" : "current",
600
+ "linkage" : [
601
+ "tcpConnectionLocalAddressType",
602
+ "tcpConnectionLocalAddress",
603
+ "tcpConnectionLocalPort",
604
+ "tcpConnectionRemAddressType",
605
+ "tcpConnectionRemAddress",
606
+ "tcpConnectionRemPort",
607
+ ],
608
+ "description" :
609
+ """A conceptual row of the tcpConnectionTable containing
610
+ information about a particular current TCP connection.
611
+ Each row of this table is transient in that it ceases to
612
+ exist when (or soon after) the connection makes the
613
+ transition to the CLOSED state.""",
614
+ }, # row
615
+ "tcpConnectionLocalAddressType" : {
616
+ "nodetype" : "column",
617
+ "moduleName" : "TCP-MIB",
618
+ "oid" : "1.3.6.1.2.1.6.19.1.1",
619
+ "status" : "current",
620
+ "syntax" : {
621
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
622
+ },
623
+ "access" : "noaccess",
624
+ "description" :
625
+ """The address type of tcpConnectionLocalAddress.""",
626
+ }, # column
627
+ "tcpConnectionLocalAddress" : {
628
+ "nodetype" : "column",
629
+ "moduleName" : "TCP-MIB",
630
+ "oid" : "1.3.6.1.2.1.6.19.1.2",
631
+ "status" : "current",
632
+ "syntax" : {
633
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
634
+ },
635
+ "access" : "noaccess",
636
+ "description" :
637
+ """The local IP address for this TCP connection. The type
638
+ of this address is determined by the value of
639
+ tcpConnectionLocalAddressType.
640
+
641
+ As this object is used in the index for the
642
+ tcpConnectionTable, implementors should be
643
+ careful not to create entries that would result in OIDs
644
+ with more than 128 subidentifiers; otherwise the information
645
+ cannot be accessed by using SNMPv1, SNMPv2c, or SNMPv3.""",
646
+ }, # column
647
+ "tcpConnectionLocalPort" : {
648
+ "nodetype" : "column",
649
+ "moduleName" : "TCP-MIB",
650
+ "oid" : "1.3.6.1.2.1.6.19.1.3",
651
+ "status" : "current",
652
+ "syntax" : {
653
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
654
+ },
655
+ "access" : "noaccess",
656
+ "description" :
657
+ """The local port number for this TCP connection.""",
658
+ }, # column
659
+ "tcpConnectionRemAddressType" : {
660
+ "nodetype" : "column",
661
+ "moduleName" : "TCP-MIB",
662
+ "oid" : "1.3.6.1.2.1.6.19.1.4",
663
+ "status" : "current",
664
+ "syntax" : {
665
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
666
+ },
667
+ "access" : "noaccess",
668
+ "description" :
669
+ """The address type of tcpConnectionRemAddress.""",
670
+ }, # column
671
+ "tcpConnectionRemAddress" : {
672
+ "nodetype" : "column",
673
+ "moduleName" : "TCP-MIB",
674
+ "oid" : "1.3.6.1.2.1.6.19.1.5",
675
+ "status" : "current",
676
+ "syntax" : {
677
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
678
+ },
679
+ "access" : "noaccess",
680
+ "description" :
681
+ """The remote IP address for this TCP connection. The type
682
+ of this address is determined by the value of
683
+ tcpConnectionRemAddressType.
684
+
685
+ As this object is used in the index for the
686
+ tcpConnectionTable, implementors should be
687
+ careful not to create entries that would result in OIDs
688
+ with more than 128 subidentifiers; otherwise the information
689
+ cannot be accessed by using SNMPv1, SNMPv2c, or SNMPv3.""",
690
+ }, # column
691
+ "tcpConnectionRemPort" : {
692
+ "nodetype" : "column",
693
+ "moduleName" : "TCP-MIB",
694
+ "oid" : "1.3.6.1.2.1.6.19.1.6",
695
+ "status" : "current",
696
+ "syntax" : {
697
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
698
+ },
699
+ "access" : "noaccess",
700
+ "description" :
701
+ """The remote port number for this TCP connection.""",
702
+ }, # column
703
+ "tcpConnectionState" : {
704
+ "nodetype" : "column",
705
+ "moduleName" : "TCP-MIB",
706
+ "oid" : "1.3.6.1.2.1.6.19.1.7",
707
+ "status" : "current",
708
+ "syntax" : {
709
+ "type" : {
710
+ "basetype" : "Enumeration",
711
+ "closed" : {
712
+ "nodetype" : "namednumber",
713
+ "number" : "1"
714
+ },
715
+ "listen" : {
716
+ "nodetype" : "namednumber",
717
+ "number" : "2"
718
+ },
719
+ "synSent" : {
720
+ "nodetype" : "namednumber",
721
+ "number" : "3"
722
+ },
723
+ "synReceived" : {
724
+ "nodetype" : "namednumber",
725
+ "number" : "4"
726
+ },
727
+ "established" : {
728
+ "nodetype" : "namednumber",
729
+ "number" : "5"
730
+ },
731
+ "finWait1" : {
732
+ "nodetype" : "namednumber",
733
+ "number" : "6"
734
+ },
735
+ "finWait2" : {
736
+ "nodetype" : "namednumber",
737
+ "number" : "7"
738
+ },
739
+ "closeWait" : {
740
+ "nodetype" : "namednumber",
741
+ "number" : "8"
742
+ },
743
+ "lastAck" : {
744
+ "nodetype" : "namednumber",
745
+ "number" : "9"
746
+ },
747
+ "closing" : {
748
+ "nodetype" : "namednumber",
749
+ "number" : "10"
750
+ },
751
+ "timeWait" : {
752
+ "nodetype" : "namednumber",
753
+ "number" : "11"
754
+ },
755
+ "deleteTCB" : {
756
+ "nodetype" : "namednumber",
757
+ "number" : "12"
758
+ },
759
+ },
760
+ },
761
+ "access" : "readwrite",
762
+ "description" :
763
+ """The state of this TCP connection.
764
+
765
+ The value listen(2) is included only for parallelism to the
766
+ old tcpConnTable and should not be used. A connection in
767
+ LISTEN state should be present in the tcpListenerTable.
768
+
769
+ The only value that may be set by a management station is
770
+ deleteTCB(12). Accordingly, it is appropriate for an agent
771
+ to return a `badValue' response if a management station
772
+ attempts to set this object to any other value.
773
+
774
+ If a management station sets this object to the value
775
+ deleteTCB(12), then the TCB (as defined in [RFC793]) of
776
+ the corresponding connection on the managed node is
777
+ deleted, resulting in immediate termination of the
778
+ connection.
779
+
780
+ As an implementation-specific option, a RST segment may be
781
+ sent from the managed node to the other TCP endpoint (note,
782
+ however, that RST segments are not sent reliably).""",
783
+ }, # column
784
+ "tcpConnectionProcess" : {
785
+ "nodetype" : "column",
786
+ "moduleName" : "TCP-MIB",
787
+ "oid" : "1.3.6.1.2.1.6.19.1.8",
788
+ "status" : "current",
789
+ "syntax" : {
790
+ "type" : { "module" :"", "name" : "Unsigned32"},
791
+ },
792
+ "access" : "readonly",
793
+ "description" :
794
+ """The system's process ID for the process associated with
795
+ this connection, or zero if there is no such process. This
796
+ value is expected to be the same as HOST-RESOURCES-MIB::
797
+ hrSWRunIndex or SYSAPPL-MIB::sysApplElmtRunIndex for some
798
+ row in the appropriate tables.""",
799
+ }, # column
800
+ "tcpListenerTable" : {
801
+ "nodetype" : "table",
802
+ "moduleName" : "TCP-MIB",
803
+ "oid" : "1.3.6.1.2.1.6.20",
804
+ "status" : "current",
805
+ "description" :
806
+ """A table containing information about TCP listeners. A
807
+ listening application can be represented in three
808
+ possible ways:
809
+
810
+ 1. An application that is willing to accept both IPv4 and
811
+ IPv6 datagrams is represented by
812
+
813
+
814
+
815
+ a tcpListenerLocalAddressType of unknown (0) and
816
+ a tcpListenerLocalAddress of ''h (a zero-length
817
+ octet-string).
818
+
819
+ 2. An application that is willing to accept only IPv4 or
820
+ IPv6 datagrams is represented by a
821
+ tcpListenerLocalAddressType of the appropriate address
822
+ type and a tcpListenerLocalAddress of '0.0.0.0' or '::'
823
+ respectively.
824
+
825
+ 3. An application that is listening for data destined
826
+ only to a specific IP address, but from any remote
827
+ system, is represented by a tcpListenerLocalAddressType
828
+ of an appropriate address type, with
829
+ tcpListenerLocalAddress as the specific local address.
830
+
831
+ NOTE: The address type in this table represents the
832
+ address type used for the communication, irrespective
833
+ of the higher-layer abstraction. For example, an
834
+ application using IPv6 'sockets' to communicate via
835
+ IPv4 between ::ffff:10.0.0.1 and ::ffff:10.0.0.2 would
836
+ use InetAddressType ipv4(1)).""",
837
+ }, # table
838
+ "tcpListenerEntry" : {
839
+ "nodetype" : "row",
840
+ "moduleName" : "TCP-MIB",
841
+ "oid" : "1.3.6.1.2.1.6.20.1",
842
+ "status" : "current",
843
+ "linkage" : [
844
+ "tcpListenerLocalAddressType",
845
+ "tcpListenerLocalAddress",
846
+ "tcpListenerLocalPort",
847
+ ],
848
+ "description" :
849
+ """A conceptual row of the tcpListenerTable containing
850
+ information about a particular TCP listener.""",
851
+ }, # row
852
+ "tcpListenerLocalAddressType" : {
853
+ "nodetype" : "column",
854
+ "moduleName" : "TCP-MIB",
855
+ "oid" : "1.3.6.1.2.1.6.20.1.1",
856
+ "status" : "current",
857
+ "syntax" : {
858
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
859
+ },
860
+ "access" : "noaccess",
861
+ "description" :
862
+ """The address type of tcpListenerLocalAddress. The value
863
+ should be unknown (0) if connection initiations to all
864
+ local IP addresses are accepted.""",
865
+ }, # column
866
+ "tcpListenerLocalAddress" : {
867
+ "nodetype" : "column",
868
+ "moduleName" : "TCP-MIB",
869
+ "oid" : "1.3.6.1.2.1.6.20.1.2",
870
+ "status" : "current",
871
+ "syntax" : {
872
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
873
+ },
874
+ "access" : "noaccess",
875
+ "description" :
876
+ """The local IP address for this TCP connection.
877
+
878
+ The value of this object can be represented in three
879
+ possible ways, depending on the characteristics of the
880
+ listening application:
881
+
882
+ 1. For an application willing to accept both IPv4 and
883
+ IPv6 datagrams, the value of this object must be
884
+ ''h (a zero-length octet-string), with the value
885
+ of the corresponding tcpListenerLocalAddressType
886
+ object being unknown (0).
887
+
888
+ 2. For an application willing to accept only IPv4 or
889
+ IPv6 datagrams, the value of this object must be
890
+ '0.0.0.0' or '::' respectively, with
891
+ tcpListenerLocalAddressType representing the
892
+ appropriate address type.
893
+
894
+ 3. For an application which is listening for data
895
+ destined only to a specific IP address, the value
896
+ of this object is the specific local address, with
897
+ tcpListenerLocalAddressType representing the
898
+ appropriate address type.
899
+
900
+ As this object is used in the index for the
901
+ tcpListenerTable, implementors should be
902
+ careful not to create entries that would result in OIDs
903
+ with more than 128 subidentifiers; otherwise the information
904
+ cannot be accessed, using SNMPv1, SNMPv2c, or SNMPv3.""",
905
+ }, # column
906
+ "tcpListenerLocalPort" : {
907
+ "nodetype" : "column",
908
+ "moduleName" : "TCP-MIB",
909
+ "oid" : "1.3.6.1.2.1.6.20.1.3",
910
+ "status" : "current",
911
+ "syntax" : {
912
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
913
+ },
914
+ "access" : "noaccess",
915
+ "description" :
916
+ """The local port number for this TCP connection.""",
917
+ }, # column
918
+ "tcpListenerProcess" : {
919
+ "nodetype" : "column",
920
+ "moduleName" : "TCP-MIB",
921
+ "oid" : "1.3.6.1.2.1.6.20.1.4",
922
+ "status" : "current",
923
+ "syntax" : {
924
+ "type" : { "module" :"", "name" : "Unsigned32"},
925
+ },
926
+ "access" : "readonly",
927
+ "description" :
928
+ """The system's process ID for the process associated with
929
+ this listener, or zero if there is no such process. This
930
+ value is expected to be the same as HOST-RESOURCES-MIB::
931
+ hrSWRunIndex or SYSAPPL-MIB::sysApplElmtRunIndex for some
932
+ row in the appropriate tables.""",
933
+ }, # column
934
+ "tcpMIB" : {
935
+ "nodetype" : "node",
936
+ "moduleName" : "TCP-MIB",
937
+ "oid" : "1.3.6.1.2.1.49",
938
+ "status" : "current",
939
+ }, # node
940
+ "tcpMIBConformance" : {
941
+ "nodetype" : "node",
942
+ "moduleName" : "TCP-MIB",
943
+ "oid" : "1.3.6.1.2.1.49.2",
944
+ }, # node
945
+ "tcpMIBCompliances" : {
946
+ "nodetype" : "node",
947
+ "moduleName" : "TCP-MIB",
948
+ "oid" : "1.3.6.1.2.1.49.2.1",
949
+ }, # node
950
+ "tcpMIBGroups" : {
951
+ "nodetype" : "node",
952
+ "moduleName" : "TCP-MIB",
953
+ "oid" : "1.3.6.1.2.1.49.2.2",
954
+ }, # node
955
+ }, # nodes
956
+
957
+ "groups" : {
958
+ "tcpGroup" : {
959
+ "nodetype" : "group",
960
+ "moduleName" : "TCP-MIB",
961
+ "oid" : "1.3.6.1.2.1.49.2.2.1",
962
+ "status" : "deprecated",
963
+ "members" : {
964
+ "tcpRtoAlgorithm" : {
965
+ "nodetype" : "member",
966
+ "module" : "TCP-MIB"
967
+ },
968
+ "tcpRtoMin" : {
969
+ "nodetype" : "member",
970
+ "module" : "TCP-MIB"
971
+ },
972
+ "tcpRtoMax" : {
973
+ "nodetype" : "member",
974
+ "module" : "TCP-MIB"
975
+ },
976
+ "tcpMaxConn" : {
977
+ "nodetype" : "member",
978
+ "module" : "TCP-MIB"
979
+ },
980
+ "tcpActiveOpens" : {
981
+ "nodetype" : "member",
982
+ "module" : "TCP-MIB"
983
+ },
984
+ "tcpPassiveOpens" : {
985
+ "nodetype" : "member",
986
+ "module" : "TCP-MIB"
987
+ },
988
+ "tcpAttemptFails" : {
989
+ "nodetype" : "member",
990
+ "module" : "TCP-MIB"
991
+ },
992
+ "tcpEstabResets" : {
993
+ "nodetype" : "member",
994
+ "module" : "TCP-MIB"
995
+ },
996
+ "tcpCurrEstab" : {
997
+ "nodetype" : "member",
998
+ "module" : "TCP-MIB"
999
+ },
1000
+ "tcpInSegs" : {
1001
+ "nodetype" : "member",
1002
+ "module" : "TCP-MIB"
1003
+ },
1004
+ "tcpOutSegs" : {
1005
+ "nodetype" : "member",
1006
+ "module" : "TCP-MIB"
1007
+ },
1008
+ "tcpRetransSegs" : {
1009
+ "nodetype" : "member",
1010
+ "module" : "TCP-MIB"
1011
+ },
1012
+ "tcpConnState" : {
1013
+ "nodetype" : "member",
1014
+ "module" : "TCP-MIB"
1015
+ },
1016
+ "tcpConnLocalAddress" : {
1017
+ "nodetype" : "member",
1018
+ "module" : "TCP-MIB"
1019
+ },
1020
+ "tcpConnLocalPort" : {
1021
+ "nodetype" : "member",
1022
+ "module" : "TCP-MIB"
1023
+ },
1024
+ "tcpConnRemAddress" : {
1025
+ "nodetype" : "member",
1026
+ "module" : "TCP-MIB"
1027
+ },
1028
+ "tcpConnRemPort" : {
1029
+ "nodetype" : "member",
1030
+ "module" : "TCP-MIB"
1031
+ },
1032
+ "tcpInErrs" : {
1033
+ "nodetype" : "member",
1034
+ "module" : "TCP-MIB"
1035
+ },
1036
+ "tcpOutRsts" : {
1037
+ "nodetype" : "member",
1038
+ "module" : "TCP-MIB"
1039
+ },
1040
+ }, # members
1041
+ "description" :
1042
+ """The tcp group of objects providing for management of TCP
1043
+ entities.""",
1044
+ }, # group
1045
+ "tcpBaseGroup" : {
1046
+ "nodetype" : "group",
1047
+ "moduleName" : "TCP-MIB",
1048
+ "oid" : "1.3.6.1.2.1.49.2.2.2",
1049
+ "status" : "current",
1050
+ "members" : {
1051
+ "tcpRtoAlgorithm" : {
1052
+ "nodetype" : "member",
1053
+ "module" : "TCP-MIB"
1054
+ },
1055
+ "tcpRtoMin" : {
1056
+ "nodetype" : "member",
1057
+ "module" : "TCP-MIB"
1058
+ },
1059
+ "tcpRtoMax" : {
1060
+ "nodetype" : "member",
1061
+ "module" : "TCP-MIB"
1062
+ },
1063
+ "tcpMaxConn" : {
1064
+ "nodetype" : "member",
1065
+ "module" : "TCP-MIB"
1066
+ },
1067
+ "tcpActiveOpens" : {
1068
+ "nodetype" : "member",
1069
+ "module" : "TCP-MIB"
1070
+ },
1071
+ "tcpPassiveOpens" : {
1072
+ "nodetype" : "member",
1073
+ "module" : "TCP-MIB"
1074
+ },
1075
+ "tcpAttemptFails" : {
1076
+ "nodetype" : "member",
1077
+ "module" : "TCP-MIB"
1078
+ },
1079
+ "tcpEstabResets" : {
1080
+ "nodetype" : "member",
1081
+ "module" : "TCP-MIB"
1082
+ },
1083
+ "tcpCurrEstab" : {
1084
+ "nodetype" : "member",
1085
+ "module" : "TCP-MIB"
1086
+ },
1087
+ "tcpInSegs" : {
1088
+ "nodetype" : "member",
1089
+ "module" : "TCP-MIB"
1090
+ },
1091
+ "tcpOutSegs" : {
1092
+ "nodetype" : "member",
1093
+ "module" : "TCP-MIB"
1094
+ },
1095
+ "tcpRetransSegs" : {
1096
+ "nodetype" : "member",
1097
+ "module" : "TCP-MIB"
1098
+ },
1099
+ "tcpInErrs" : {
1100
+ "nodetype" : "member",
1101
+ "module" : "TCP-MIB"
1102
+ },
1103
+ "tcpOutRsts" : {
1104
+ "nodetype" : "member",
1105
+ "module" : "TCP-MIB"
1106
+ },
1107
+ }, # members
1108
+ "description" :
1109
+ """The group of counters common to TCP entities.""",
1110
+ }, # group
1111
+ "tcpConnectionGroup" : {
1112
+ "nodetype" : "group",
1113
+ "moduleName" : "TCP-MIB",
1114
+ "oid" : "1.3.6.1.2.1.49.2.2.3",
1115
+ "status" : "current",
1116
+ "members" : {
1117
+ "tcpConnectionState" : {
1118
+ "nodetype" : "member",
1119
+ "module" : "TCP-MIB"
1120
+ },
1121
+ "tcpConnectionProcess" : {
1122
+ "nodetype" : "member",
1123
+ "module" : "TCP-MIB"
1124
+ },
1125
+ }, # members
1126
+ "description" :
1127
+ """The group provides general information about TCP
1128
+ connections.""",
1129
+ }, # group
1130
+ "tcpListenerGroup" : {
1131
+ "nodetype" : "group",
1132
+ "moduleName" : "TCP-MIB",
1133
+ "oid" : "1.3.6.1.2.1.49.2.2.4",
1134
+ "status" : "current",
1135
+ "members" : {
1136
+ "tcpListenerProcess" : {
1137
+ "nodetype" : "member",
1138
+ "module" : "TCP-MIB"
1139
+ },
1140
+ }, # members
1141
+ "description" :
1142
+ """This group has objects providing general information about
1143
+ TCP listeners.""",
1144
+ }, # group
1145
+ "tcpHCGroup" : {
1146
+ "nodetype" : "group",
1147
+ "moduleName" : "TCP-MIB",
1148
+ "oid" : "1.3.6.1.2.1.49.2.2.5",
1149
+ "status" : "current",
1150
+ "members" : {
1151
+ "tcpHCInSegs" : {
1152
+ "nodetype" : "member",
1153
+ "module" : "TCP-MIB"
1154
+ },
1155
+ "tcpHCOutSegs" : {
1156
+ "nodetype" : "member",
1157
+ "module" : "TCP-MIB"
1158
+ },
1159
+ }, # members
1160
+ "description" :
1161
+ """The group of objects providing for counters of high speed
1162
+ TCP implementations.""",
1163
+ }, # group
1164
+ }, # groups
1165
+
1166
+ "compliances" : {
1167
+ "tcpMIBCompliance" : {
1168
+ "nodetype" : "compliance",
1169
+ "moduleName" : "TCP-MIB",
1170
+ "oid" : "1.3.6.1.2.1.49.2.1.1",
1171
+ "status" : "deprecated",
1172
+ "description" :
1173
+ """The compliance statement for IPv4-only systems that
1174
+ implement TCP. In order to be IP version independent, this
1175
+ compliance statement is deprecated in favor of
1176
+ tcpMIBCompliance2. However, agents are still encouraged
1177
+ to implement these objects in order to interoperate with
1178
+ the deployed base of managers.""",
1179
+ "requires" : {
1180
+ "tcpGroup" : {
1181
+ "nodetype" : "mandatory",
1182
+ "module" : "TCP-MIB"
1183
+ },
1184
+ }, # requires
1185
+ "refinements" : {
1186
+ "tcpConnState" : {
1187
+ "module" : "TCP-MIB",
1188
+ "access" : "readonly",
1189
+ "description" :
1190
+ """Write access is not required.""",
1191
+ },
1192
+ }, # refinements
1193
+
1194
+ }, # compliance
1195
+ "tcpMIBCompliance2" : {
1196
+ "nodetype" : "compliance",
1197
+ "moduleName" : "TCP-MIB",
1198
+ "oid" : "1.3.6.1.2.1.49.2.1.2",
1199
+ "status" : "current",
1200
+ "description" :
1201
+ """The compliance statement for systems that implement TCP.
1202
+
1203
+ A number of INDEX objects cannot be
1204
+ represented in the form of OBJECT clauses in SMIv2 but
1205
+ have the following compliance requirements,
1206
+ expressed in OBJECT clause form in this description
1207
+ clause:
1208
+
1209
+ -- OBJECT tcpConnectionLocalAddressType
1210
+ -- SYNTAX InetAddressType { ipv4(1), ipv6(2) }
1211
+ -- DESCRIPTION
1212
+ -- This MIB requires support for only global IPv4
1213
+
1214
+
1215
+
1216
+ -- and IPv6 address types.
1217
+ --
1218
+ -- OBJECT tcpConnectionRemAddressType
1219
+ -- SYNTAX InetAddressType { ipv4(1), ipv6(2) }
1220
+ -- DESCRIPTION
1221
+ -- This MIB requires support for only global IPv4
1222
+ -- and IPv6 address types.
1223
+ --
1224
+ -- OBJECT tcpListenerLocalAddressType
1225
+ -- SYNTAX InetAddressType { unknown(0), ipv4(1),
1226
+ -- ipv6(2) }
1227
+ -- DESCRIPTION
1228
+ -- This MIB requires support for only global IPv4
1229
+ -- and IPv6 address types. The type unknown also
1230
+ -- needs to be supported to identify a special
1231
+ -- case in the listener table: a listen using
1232
+ -- both IPv4 and IPv6 addresses on the device.
1233
+ --""",
1234
+ "requires" : {
1235
+ "tcpBaseGroup" : {
1236
+ "nodetype" : "mandatory",
1237
+ "module" : "TCP-MIB"
1238
+ },
1239
+ "tcpConnectionGroup" : {
1240
+ "nodetype" : "mandatory",
1241
+ "module" : "TCP-MIB"
1242
+ },
1243
+ "tcpListenerGroup" : {
1244
+ "nodetype" : "mandatory",
1245
+ "module" : "TCP-MIB"
1246
+ },
1247
+ "tcpHCGroup" : {
1248
+ "nodetype" : "optional",
1249
+ "module" : "TCP-MIB",
1250
+ "description" :
1251
+ """This group is mandatory for systems that are capable
1252
+ of receiving or transmitting more than 1 million TCP
1253
+ segments per second. 1 million segments per second will
1254
+ cause a Counter32 to wrap in just over an hour.""",
1255
+ },
1256
+ }, # requires
1257
+ "refinements" : {
1258
+ "tcpConnectionState" : {
1259
+ "module" : "TCP-MIB",
1260
+ "syntax" : {
1261
+ "type" : {
1262
+ "basetype" : "Enumeration",
1263
+ "closed" : {
1264
+ "nodetype" : "namednumber",
1265
+ "number" : "1"
1266
+ },
1267
+ "listen" : {
1268
+ "nodetype" : "namednumber",
1269
+ "number" : "2"
1270
+ },
1271
+ "synSent" : {
1272
+ "nodetype" : "namednumber",
1273
+ "number" : "3"
1274
+ },
1275
+ "synReceived" : {
1276
+ "nodetype" : "namednumber",
1277
+ "number" : "4"
1278
+ },
1279
+ "established" : {
1280
+ "nodetype" : "namednumber",
1281
+ "number" : "5"
1282
+ },
1283
+ "finWait1" : {
1284
+ "nodetype" : "namednumber",
1285
+ "number" : "6"
1286
+ },
1287
+ "finWait2" : {
1288
+ "nodetype" : "namednumber",
1289
+ "number" : "7"
1290
+ },
1291
+ "closeWait" : {
1292
+ "nodetype" : "namednumber",
1293
+ "number" : "8"
1294
+ },
1295
+ "lastAck" : {
1296
+ "nodetype" : "namednumber",
1297
+ "number" : "9"
1298
+ },
1299
+ "closing" : {
1300
+ "nodetype" : "namednumber",
1301
+ "number" : "10"
1302
+ },
1303
+ "timeWait" : {
1304
+ "nodetype" : "namednumber",
1305
+ "number" : "11"
1306
+ },
1307
+ },
1308
+ }, # syntax
1309
+ "access" : "readonly",
1310
+ "description" :
1311
+ """Write access is not required, nor is support for the value
1312
+ deleteTCB (12).""",
1313
+ },
1314
+ }, # refinements
1315
+
1316
+ }, # compliance
1317
+ }, # compliances
1318
+
1319
+ }