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,3926 @@
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-ESTATS-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TCP-ESTATS-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TCP-ESTATS-MIB",
11
+
12
+ "TCP-ESTATS-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF TSV Working Group""",
17
+ "contact" :
18
+ """Matt Mathis
19
+ John Heffner
20
+ Web100 Project
21
+ Pittsburgh Supercomputing Center
22
+ 300 S. Craig St.
23
+ Pittsburgh, PA 15213
24
+ Email: mathis@psc.edu, jheffner@psc.edu
25
+
26
+ Rajiv Raghunarayan
27
+ Cisco Systems Inc.
28
+ San Jose, CA 95134
29
+ Phone: 408 853 9612
30
+ Email: raraghun@cisco.com
31
+
32
+ Jon Saperia
33
+ 84 Kettell Plain Road
34
+ Stow, MA 01775
35
+ Phone: 617-201-2655
36
+ Email: saperia@jdscons.com """,
37
+ "description" :
38
+ """Documentation of TCP Extended Performance Instrumentation
39
+ variables from the Web100 project. [Web100]
40
+
41
+ All of the objects in this MIB MUST have the same
42
+ persistence properties as the underlying TCP implementation.
43
+ On a reboot, all zero-based counters MUST be cleared, all
44
+ dynamically created table rows MUST be deleted, and all
45
+ read-write objects MUST be restored to their default values.
46
+
47
+ It is assumed that all TCP implementation have some
48
+ initialization code (if nothing else to set IP addresses)
49
+ that has the opportunity to adjust tcpEStatsConnTableLatency
50
+ and other read-write scalars controlling the creation of the
51
+ various tables, before establishing the first TCP
52
+ connection. Implementations MAY also choose to make these
53
+ control scalars persist across reboots.
54
+
55
+ Copyright (C) The IETF Trust (2007). This version
56
+ of this MIB module is a part of RFC 4898; see the RFC
57
+ itself for full legal notices.""",
58
+ "revisions" : (
59
+ {
60
+ "date" : "2007-05-18 00:00",
61
+ "description" :
62
+ """Initial version, published as RFC 4898.""",
63
+ },
64
+ ),
65
+ "identity node" : "tcpEStatsMIB",
66
+ },
67
+
68
+ "imports" : (
69
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
70
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
71
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
72
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
73
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
74
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
75
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
76
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
77
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
78
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
79
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
80
+ {"module" : "RMON2-MIB", "name" : "ZeroBasedCounter32"},
81
+ {"module" : "HCNUM-TC", "name" : "ZeroBasedCounter64"},
82
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
83
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
84
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
85
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
86
+ {"module" : "TCP-MIB", "name" : "tcpListenerEntry"},
87
+ {"module" : "TCP-MIB", "name" : "tcpConnectionEntry"},
88
+ ),
89
+
90
+ "typedefs" : {
91
+ "TcpEStatsNegotiated" : {
92
+ "basetype" : "Enumeration",
93
+ "status" : "current",
94
+ "enabled" : {
95
+ "nodetype" : "namednumber",
96
+ "number" : "1"
97
+ },
98
+ "selfDisabled" : {
99
+ "nodetype" : "namednumber",
100
+ "number" : "2"
101
+ },
102
+ "peerDisabled" : {
103
+ "nodetype" : "namednumber",
104
+ "number" : "3"
105
+ },
106
+ "description" :
107
+ """Indicates if some optional TCP feature was negotiated.
108
+
109
+ Enabled(1) indicates that the feature was successfully
110
+ negotiated on, which generally requires both hosts to agree
111
+ to use the feature.
112
+
113
+ selfDisabled(2) indicates that the local host refused the
114
+ feature because it is not implemented, configured off, or
115
+ refused for some other reason, such as the lack of
116
+ resources.
117
+
118
+ peerDisabled(3) indicates that the local host was willing
119
+ to negotiate the feature, but the remote host did not
120
+ do so.""",
121
+ },
122
+ }, # typedefs
123
+
124
+ "nodes" : {
125
+ "tcpEStatsMIB" : {
126
+ "nodetype" : "node",
127
+ "moduleName" : "TCP-ESTATS-MIB",
128
+ "oid" : "1.3.6.1.2.1.156",
129
+ "status" : "current",
130
+ }, # node
131
+ "tcpEStatsNotifications" : {
132
+ "nodetype" : "node",
133
+ "moduleName" : "TCP-ESTATS-MIB",
134
+ "oid" : "1.3.6.1.2.1.156.0",
135
+ }, # node
136
+ "tcpEStatsMIBObjects" : {
137
+ "nodetype" : "node",
138
+ "moduleName" : "TCP-ESTATS-MIB",
139
+ "oid" : "1.3.6.1.2.1.156.1",
140
+ }, # node
141
+ "tcpEStats" : {
142
+ "nodetype" : "node",
143
+ "moduleName" : "TCP-ESTATS-MIB",
144
+ "oid" : "1.3.6.1.2.1.156.1.1",
145
+ }, # node
146
+ "tcpEStatsListenerTable" : {
147
+ "nodetype" : "table",
148
+ "moduleName" : "TCP-ESTATS-MIB",
149
+ "oid" : "1.3.6.1.2.1.156.1.1.1",
150
+ "status" : "current",
151
+ "description" :
152
+ """This table contains information about TCP Listeners,
153
+ in addition to the information maintained by the
154
+ tcpListenerTable RFC 4022.""",
155
+ }, # table
156
+ "tcpEStatsListenerEntry" : {
157
+ "nodetype" : "row",
158
+ "moduleName" : "TCP-ESTATS-MIB",
159
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1",
160
+ "status" : "current",
161
+ "linkage" : [
162
+ { "TCP-MIB" : {
163
+ "indexkind" : "augments",
164
+ "relatedNode" : "tcpListenerEntry",
165
+ }},
166
+ ],
167
+ "description" :
168
+ """Each entry in the table contains information about
169
+ a specific TCP Listener.""",
170
+ }, # row
171
+ "tcpEStatsListenerStartTime" : {
172
+ "nodetype" : "column",
173
+ "moduleName" : "TCP-ESTATS-MIB",
174
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.1",
175
+ "status" : "current",
176
+ "syntax" : {
177
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
178
+ },
179
+ "access" : "readonly",
180
+ "description" :
181
+ """The value of sysUpTime at the time this listener was
182
+ established. If the current state was entered prior to
183
+ the last re-initialization of the local network management
184
+ subsystem, then this object contains a zero value.""",
185
+ }, # column
186
+ "tcpEStatsListenerSynRcvd" : {
187
+ "nodetype" : "column",
188
+ "moduleName" : "TCP-ESTATS-MIB",
189
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.2",
190
+ "status" : "current",
191
+ "syntax" : {
192
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
193
+ },
194
+ "access" : "readonly",
195
+ "description" :
196
+ """The number of SYNs which have been received for this
197
+ listener. The total number of failed connections for
198
+ all reasons can be estimated to be tcpEStatsListenerSynRcvd
199
+ minus tcpEStatsListenerAccepted and
200
+ tcpEStatsListenerCurBacklog.""",
201
+ }, # column
202
+ "tcpEStatsListenerInitial" : {
203
+ "nodetype" : "column",
204
+ "moduleName" : "TCP-ESTATS-MIB",
205
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.3",
206
+ "status" : "current",
207
+ "syntax" : {
208
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
209
+ },
210
+ "access" : "readonly",
211
+ "description" :
212
+ """The total number of connections for which the Listener
213
+ has allocated initial state and placed the
214
+ connection in the backlog. This may happen in the
215
+ SYN-RCVD or ESTABLISHED states, depending on the
216
+ implementation.""",
217
+ }, # column
218
+ "tcpEStatsListenerEstablished" : {
219
+ "nodetype" : "column",
220
+ "moduleName" : "TCP-ESTATS-MIB",
221
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.4",
222
+ "status" : "current",
223
+ "syntax" : {
224
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
225
+ },
226
+ "access" : "readonly",
227
+ "description" :
228
+ """The number of connections that have been established to
229
+ this endpoint (e.g., the number of first ACKs that have
230
+ been received for this listener).""",
231
+ }, # column
232
+ "tcpEStatsListenerAccepted" : {
233
+ "nodetype" : "column",
234
+ "moduleName" : "TCP-ESTATS-MIB",
235
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.5",
236
+ "status" : "current",
237
+ "syntax" : {
238
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
239
+ },
240
+ "access" : "readonly",
241
+ "description" :
242
+ """The total number of connections for which the Listener
243
+ has successfully issued an accept, removing the connection
244
+ from the backlog.""",
245
+ }, # column
246
+ "tcpEStatsListenerExceedBacklog" : {
247
+ "nodetype" : "column",
248
+ "moduleName" : "TCP-ESTATS-MIB",
249
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.6",
250
+ "status" : "current",
251
+ "syntax" : {
252
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
253
+ },
254
+ "access" : "readonly",
255
+ "description" :
256
+ """The total number of connections dropped from the
257
+ backlog by this listener due to all reasons. This
258
+ includes all connections that are allocated initial
259
+ resources, but are not accepted for some reason.""",
260
+ }, # column
261
+ "tcpEStatsListenerHCSynRcvd" : {
262
+ "nodetype" : "column",
263
+ "moduleName" : "TCP-ESTATS-MIB",
264
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.7",
265
+ "status" : "current",
266
+ "syntax" : {
267
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
268
+ },
269
+ "access" : "readonly",
270
+ "description" :
271
+ """The number of SYNs that have been received for this
272
+ listener on systems that can process (or reject) more
273
+ than 1 million connections per second. See
274
+ tcpEStatsListenerSynRcvd.""",
275
+ }, # column
276
+ "tcpEStatsListenerHCInitial" : {
277
+ "nodetype" : "column",
278
+ "moduleName" : "TCP-ESTATS-MIB",
279
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.8",
280
+ "status" : "current",
281
+ "syntax" : {
282
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
283
+ },
284
+ "access" : "readonly",
285
+ "description" :
286
+ """The total number of connections for which the Listener
287
+ has allocated initial state and placed the connection
288
+ in the backlog on systems that can process (or reject)
289
+ more than 1 million connections per second. See
290
+ tcpEStatsListenerInitial.""",
291
+ }, # column
292
+ "tcpEStatsListenerHCEstablished" : {
293
+ "nodetype" : "column",
294
+ "moduleName" : "TCP-ESTATS-MIB",
295
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.9",
296
+ "status" : "current",
297
+ "syntax" : {
298
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
299
+ },
300
+ "access" : "readonly",
301
+ "description" :
302
+ """The number of connections that have been established to
303
+ this endpoint on systems that can process (or reject) more
304
+ than 1 million connections per second. See
305
+ tcpEStatsListenerEstablished.""",
306
+ }, # column
307
+ "tcpEStatsListenerHCAccepted" : {
308
+ "nodetype" : "column",
309
+ "moduleName" : "TCP-ESTATS-MIB",
310
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.10",
311
+ "status" : "current",
312
+ "syntax" : {
313
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
314
+ },
315
+ "access" : "readonly",
316
+ "description" :
317
+ """The total number of connections for which the Listener
318
+ has successfully issued an accept, removing the connection
319
+ from the backlog on systems that can process (or reject)
320
+ more than 1 million connections per second. See
321
+ tcpEStatsListenerAccepted.""",
322
+ }, # column
323
+ "tcpEStatsListenerHCExceedBacklog" : {
324
+ "nodetype" : "column",
325
+ "moduleName" : "TCP-ESTATS-MIB",
326
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.11",
327
+ "status" : "current",
328
+ "syntax" : {
329
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
330
+ },
331
+ "access" : "readonly",
332
+ "description" :
333
+ """The total number of connections dropped from the
334
+ backlog by this listener due to all reasons on
335
+ systems that can process (or reject) more than
336
+ 1 million connections per second. See
337
+ tcpEStatsListenerExceedBacklog.""",
338
+ }, # column
339
+ "tcpEStatsListenerCurConns" : {
340
+ "nodetype" : "column",
341
+ "moduleName" : "TCP-ESTATS-MIB",
342
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.12",
343
+ "status" : "current",
344
+ "syntax" : {
345
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
346
+ },
347
+ "access" : "readonly",
348
+ "description" :
349
+ """The current number of connections in the ESTABLISHED
350
+ state, which have also been accepted. It excludes
351
+ connections that have been established but not accepted
352
+ because they are still subject to being discarded to
353
+ shed load without explicit action by either endpoint.""",
354
+ }, # column
355
+ "tcpEStatsListenerMaxBacklog" : {
356
+ "nodetype" : "column",
357
+ "moduleName" : "TCP-ESTATS-MIB",
358
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.13",
359
+ "status" : "current",
360
+ "syntax" : {
361
+ "type" : { "module" :"", "name" : "Unsigned32"},
362
+ },
363
+ "access" : "readonly",
364
+ "description" :
365
+ """The maximum number of connections allowed in the
366
+ backlog at one time.""",
367
+ }, # column
368
+ "tcpEStatsListenerCurBacklog" : {
369
+ "nodetype" : "column",
370
+ "moduleName" : "TCP-ESTATS-MIB",
371
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.14",
372
+ "status" : "current",
373
+ "syntax" : {
374
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
375
+ },
376
+ "access" : "readonly",
377
+ "description" :
378
+ """The current number of connections that are in the backlog.
379
+ This gauge includes connections in ESTABLISHED or
380
+ SYN-RECEIVED states for which the Listener has not yet
381
+ issued an accept.
382
+
383
+ If this listener is using some technique to implicitly
384
+ represent the SYN-RECEIVED states (e.g., by
385
+ cryptographically encoding the state information in the
386
+ initial sequence number, ISS), it MAY elect to exclude
387
+ connections in the SYN-RECEIVED state from the backlog.""",
388
+ }, # column
389
+ "tcpEStatsListenerCurEstabBacklog" : {
390
+ "nodetype" : "column",
391
+ "moduleName" : "TCP-ESTATS-MIB",
392
+ "oid" : "1.3.6.1.2.1.156.1.1.1.1.15",
393
+ "status" : "current",
394
+ "syntax" : {
395
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
396
+ },
397
+ "access" : "readonly",
398
+ "description" :
399
+ """The current number of connections in the backlog that are
400
+ in the ESTABLISHED state, but for which the Listener has
401
+ not yet issued an accept.""",
402
+ }, # column
403
+ "tcpEStatsConnectIdTable" : {
404
+ "nodetype" : "table",
405
+ "moduleName" : "TCP-ESTATS-MIB",
406
+ "oid" : "1.3.6.1.2.1.156.1.1.2",
407
+ "status" : "current",
408
+ "description" :
409
+ """This table maps information that uniquely identifies
410
+ each active TCP connection to the connection ID used by
411
+
412
+
413
+
414
+ other tables in this MIB Module. It is an extension of
415
+ tcpConnectionTable in RFC 4022.
416
+
417
+ Entries are retained in this table for the number of
418
+ seconds indicated by the tcpEStatsConnTableLatency
419
+ object, after the TCP connection first enters the closed
420
+ state.""",
421
+ }, # table
422
+ "tcpEStatsConnectIdEntry" : {
423
+ "nodetype" : "row",
424
+ "moduleName" : "TCP-ESTATS-MIB",
425
+ "oid" : "1.3.6.1.2.1.156.1.1.2.1",
426
+ "status" : "current",
427
+ "linkage" : [
428
+ { "TCP-MIB" : {
429
+ "indexkind" : "augments",
430
+ "relatedNode" : "tcpConnectionEntry",
431
+ }},
432
+ ],
433
+ "description" :
434
+ """Each entry in this table maps a TCP connection
435
+ 4-tuple to a connection index.""",
436
+ }, # row
437
+ "tcpEStatsConnectIndex" : {
438
+ "nodetype" : "column",
439
+ "moduleName" : "TCP-ESTATS-MIB",
440
+ "oid" : "1.3.6.1.2.1.156.1.1.2.1.1",
441
+ "status" : "current",
442
+ "syntax" : {
443
+ "type" : {
444
+ "basetype" : "Unsigned32",
445
+ "ranges" : [
446
+ {
447
+ "min" : "1",
448
+ "max" : "4294967295"
449
+ },
450
+ ],
451
+ "range" : {
452
+ "min" : "1",
453
+ "max" : "4294967295"
454
+ },
455
+ },
456
+ },
457
+ "access" : "readonly",
458
+ "description" :
459
+ """A unique integer value assigned to each TCP Connection
460
+ entry.
461
+
462
+ The RECOMMENDED algorithm is to begin at 1 and increase to
463
+ some implementation-specific maximum value and then start
464
+ again at 1 skipping values already in use.""",
465
+ }, # column
466
+ "tcpEStatsPerfTable" : {
467
+ "nodetype" : "table",
468
+ "moduleName" : "TCP-ESTATS-MIB",
469
+ "oid" : "1.3.6.1.2.1.156.1.1.3",
470
+ "status" : "current",
471
+ "description" :
472
+ """This table contains objects that are useful for
473
+
474
+
475
+
476
+ measuring TCP performance and first line problem
477
+ diagnosis. Most objects in this table directly expose
478
+ some TCP state variable or are easily implemented as
479
+ simple functions (e.g., the maximum value) of TCP
480
+ state variables.
481
+
482
+ Entries are retained in this table for the number of
483
+ seconds indicated by the tcpEStatsConnTableLatency
484
+ object, after the TCP connection first enters the closed
485
+ state.""",
486
+ }, # table
487
+ "tcpEStatsPerfEntry" : {
488
+ "nodetype" : "row",
489
+ "moduleName" : "TCP-ESTATS-MIB",
490
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1",
491
+ "status" : "current",
492
+ "linkage" : [
493
+ "tcpEStatsConnectIndex",
494
+ ],
495
+ "description" :
496
+ """Each entry in this table has information about the
497
+ characteristics of each active and recently closed TCP
498
+ connection.""",
499
+ }, # row
500
+ "tcpEStatsPerfSegsOut" : {
501
+ "nodetype" : "column",
502
+ "moduleName" : "TCP-ESTATS-MIB",
503
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.1",
504
+ "status" : "current",
505
+ "syntax" : {
506
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
507
+ },
508
+ "access" : "readonly",
509
+ "description" :
510
+ """The total number of segments sent.""",
511
+ }, # column
512
+ "tcpEStatsPerfDataSegsOut" : {
513
+ "nodetype" : "column",
514
+ "moduleName" : "TCP-ESTATS-MIB",
515
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.2",
516
+ "status" : "current",
517
+ "syntax" : {
518
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
519
+ },
520
+ "access" : "readonly",
521
+ "description" :
522
+ """The number of segments sent containing a positive length
523
+ data segment.""",
524
+ }, # column
525
+ "tcpEStatsPerfDataOctetsOut" : {
526
+ "nodetype" : "column",
527
+ "moduleName" : "TCP-ESTATS-MIB",
528
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.3",
529
+ "status" : "current",
530
+ "syntax" : {
531
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
532
+ },
533
+ "access" : "readonly",
534
+ "units" : "octets",
535
+ "description" :
536
+ """The number of octets of data contained in transmitted
537
+ segments, including retransmitted data. Note that this does
538
+ not include TCP headers.""",
539
+ }, # column
540
+ "tcpEStatsPerfHCDataOctetsOut" : {
541
+ "nodetype" : "column",
542
+ "moduleName" : "TCP-ESTATS-MIB",
543
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.4",
544
+ "status" : "current",
545
+ "syntax" : {
546
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
547
+ },
548
+ "access" : "readonly",
549
+ "units" : "octets",
550
+ "description" :
551
+ """The number of octets of data contained in transmitted
552
+ segments, including retransmitted data, on systems that can
553
+ transmit more than 10 million bits per second. Note that
554
+ this does not include TCP headers.""",
555
+ }, # column
556
+ "tcpEStatsPerfSegsRetrans" : {
557
+ "nodetype" : "column",
558
+ "moduleName" : "TCP-ESTATS-MIB",
559
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.5",
560
+ "status" : "current",
561
+ "syntax" : {
562
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
563
+ },
564
+ "access" : "readonly",
565
+ "description" :
566
+ """The number of segments transmitted containing at least some
567
+ retransmitted data.""",
568
+ "reference" :
569
+ """RFC 793, Transmission Control Protocol""",
570
+ }, # column
571
+ "tcpEStatsPerfOctetsRetrans" : {
572
+ "nodetype" : "column",
573
+ "moduleName" : "TCP-ESTATS-MIB",
574
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.6",
575
+ "status" : "current",
576
+ "syntax" : {
577
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
578
+ },
579
+ "access" : "readonly",
580
+ "units" : "octets",
581
+ "description" :
582
+ """The number of octets retransmitted.""",
583
+ "reference" :
584
+ """RFC 793, Transmission Control Protocol""",
585
+ }, # column
586
+ "tcpEStatsPerfSegsIn" : {
587
+ "nodetype" : "column",
588
+ "moduleName" : "TCP-ESTATS-MIB",
589
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.7",
590
+ "status" : "current",
591
+ "syntax" : {
592
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
593
+ },
594
+ "access" : "readonly",
595
+ "description" :
596
+ """The total number of segments received.""",
597
+ }, # column
598
+ "tcpEStatsPerfDataSegsIn" : {
599
+ "nodetype" : "column",
600
+ "moduleName" : "TCP-ESTATS-MIB",
601
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.8",
602
+ "status" : "current",
603
+ "syntax" : {
604
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
605
+ },
606
+ "access" : "readonly",
607
+ "description" :
608
+ """The number of segments received containing a positive
609
+
610
+
611
+
612
+ length data segment.""",
613
+ }, # column
614
+ "tcpEStatsPerfDataOctetsIn" : {
615
+ "nodetype" : "column",
616
+ "moduleName" : "TCP-ESTATS-MIB",
617
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.9",
618
+ "status" : "current",
619
+ "syntax" : {
620
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
621
+ },
622
+ "access" : "readonly",
623
+ "units" : "octets",
624
+ "description" :
625
+ """The number of octets contained in received data segments,
626
+ including retransmitted data. Note that this does not
627
+ include TCP headers.""",
628
+ }, # column
629
+ "tcpEStatsPerfHCDataOctetsIn" : {
630
+ "nodetype" : "column",
631
+ "moduleName" : "TCP-ESTATS-MIB",
632
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.10",
633
+ "status" : "current",
634
+ "syntax" : {
635
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
636
+ },
637
+ "access" : "readonly",
638
+ "units" : "octets",
639
+ "description" :
640
+ """The number of octets contained in received data segments,
641
+ including retransmitted data, on systems that can receive
642
+ more than 10 million bits per second. Note that this does
643
+ not include TCP headers.""",
644
+ }, # column
645
+ "tcpEStatsPerfElapsedSecs" : {
646
+ "nodetype" : "column",
647
+ "moduleName" : "TCP-ESTATS-MIB",
648
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.11",
649
+ "status" : "current",
650
+ "syntax" : {
651
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
652
+ },
653
+ "access" : "readonly",
654
+ "units" : "seconds",
655
+ "description" :
656
+ """The seconds part of the time elapsed between
657
+ tcpEStatsPerfStartTimeStamp and the most recent protocol
658
+ event (segment sent or received).""",
659
+ }, # column
660
+ "tcpEStatsPerfElapsedMicroSecs" : {
661
+ "nodetype" : "column",
662
+ "moduleName" : "TCP-ESTATS-MIB",
663
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.12",
664
+ "status" : "current",
665
+ "syntax" : {
666
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
667
+ },
668
+ "access" : "readonly",
669
+ "units" : "microseconds",
670
+ "description" :
671
+ """The micro-second part of time elapsed between
672
+ tcpEStatsPerfStartTimeStamp to the most recent protocol
673
+ event (segment sent or received). This may be updated in
674
+ whatever time granularity is the system supports.""",
675
+ }, # column
676
+ "tcpEStatsPerfStartTimeStamp" : {
677
+ "nodetype" : "column",
678
+ "moduleName" : "TCP-ESTATS-MIB",
679
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.13",
680
+ "status" : "current",
681
+ "syntax" : {
682
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
683
+ },
684
+ "access" : "readonly",
685
+ "description" :
686
+ """Time at which this row was created and all
687
+ ZeroBasedCounters in the row were initialized to zero.""",
688
+ }, # column
689
+ "tcpEStatsPerfCurMSS" : {
690
+ "nodetype" : "column",
691
+ "moduleName" : "TCP-ESTATS-MIB",
692
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.14",
693
+ "status" : "current",
694
+ "syntax" : {
695
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
696
+ },
697
+ "access" : "readonly",
698
+ "units" : "octets",
699
+ "description" :
700
+ """The current maximum segment size (MSS), in octets.""",
701
+ "reference" :
702
+ """RFC 1122, Requirements for Internet Hosts - Communication
703
+ Layers""",
704
+ }, # column
705
+ "tcpEStatsPerfPipeSize" : {
706
+ "nodetype" : "column",
707
+ "moduleName" : "TCP-ESTATS-MIB",
708
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.15",
709
+ "status" : "current",
710
+ "syntax" : {
711
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
712
+ },
713
+ "access" : "readonly",
714
+ "units" : "octets",
715
+ "description" :
716
+ """The TCP senders current estimate of the number of
717
+ unacknowledged data octets in the network.
718
+
719
+ While not in recovery (e.g., while the receiver is not
720
+ reporting missing data to the sender), this is precisely the
721
+ same as 'Flight size' as defined in RFC 2581, which can be
722
+ computed as SND.NXT minus SND.UNA. [RFC793]
723
+
724
+ During recovery, the TCP sender has incomplete information
725
+ about the state of the network (e.g., which segments are
726
+ lost vs reordered, especially if the return path is also
727
+ dropping TCP acknowledgments). Current TCP standards do not
728
+ mandate any specific algorithm for estimating the number of
729
+ unacknowledged data octets in the network.
730
+
731
+ RFC 3517 describes a conservative algorithm to use SACK
732
+
733
+
734
+
735
+ information to estimate the number of unacknowledged data
736
+ octets in the network. tcpEStatsPerfPipeSize object SHOULD
737
+ be the same as 'pipe' as defined in RFC 3517 if it is
738
+ implemented. (Note that while not in recovery the pipe
739
+ algorithm yields the same values as flight size).
740
+
741
+ If RFC 3517 is not implemented, the data octets in flight
742
+ SHOULD be estimated as SND.NXT minus SND.UNA adjusted by
743
+ some measure of the data that has left the network and
744
+ retransmitted data. For example, with Reno or NewReno style
745
+ TCP, the number of duplicate acknowledgment is used to
746
+ count the number of segments that have left the network.
747
+ That is,
748
+ PipeSize=SND.NXT-SND.UNA+(retransmits-dupacks)*CurMSS""",
749
+ "reference" :
750
+ """RFC 793, RFC 2581, RFC 3517""",
751
+ }, # column
752
+ "tcpEStatsPerfMaxPipeSize" : {
753
+ "nodetype" : "column",
754
+ "moduleName" : "TCP-ESTATS-MIB",
755
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.16",
756
+ "status" : "current",
757
+ "syntax" : {
758
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
759
+ },
760
+ "access" : "readonly",
761
+ "units" : "octets",
762
+ "description" :
763
+ """The maximum value of tcpEStatsPerfPipeSize, for this
764
+ connection.""",
765
+ "reference" :
766
+ """RFC 793, RFC 2581, RFC 3517""",
767
+ }, # column
768
+ "tcpEStatsPerfSmoothedRTT" : {
769
+ "nodetype" : "column",
770
+ "moduleName" : "TCP-ESTATS-MIB",
771
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.17",
772
+ "status" : "current",
773
+ "syntax" : {
774
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
775
+ },
776
+ "access" : "readonly",
777
+ "units" : "milliseconds",
778
+ "description" :
779
+ """The smoothed round trip time used in calculation of the
780
+ RTO. See SRTT in [RFC2988].""",
781
+ "reference" :
782
+ """RFC 2988, Computing TCP's Retransmission Timer""",
783
+ }, # column
784
+ "tcpEStatsPerfCurRTO" : {
785
+ "nodetype" : "column",
786
+ "moduleName" : "TCP-ESTATS-MIB",
787
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.18",
788
+ "status" : "current",
789
+ "syntax" : {
790
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
791
+ },
792
+ "access" : "readonly",
793
+ "units" : "milliseconds",
794
+ "description" :
795
+ """The current value of the retransmit timer RTO.""",
796
+ "reference" :
797
+ """RFC 2988, Computing TCP's Retransmission Timer""",
798
+ }, # column
799
+ "tcpEStatsPerfCongSignals" : {
800
+ "nodetype" : "column",
801
+ "moduleName" : "TCP-ESTATS-MIB",
802
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.19",
803
+ "status" : "current",
804
+ "syntax" : {
805
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
806
+ },
807
+ "access" : "readonly",
808
+ "description" :
809
+ """The number of multiplicative downward congestion window
810
+ adjustments due to all forms of congestion signals,
811
+ including Fast Retransmit, Explicit Congestion Notification
812
+ (ECN), and timeouts. This object summarizes all events that
813
+ invoke the MD portion of Additive Increase Multiplicative
814
+ Decrease (AIMD) congestion control, and as such is the best
815
+ indicator of how a cwnd is being affected by congestion.
816
+
817
+ Note that retransmission timeouts multiplicatively reduce
818
+ the window implicitly by setting ssthresh, and SHOULD be
819
+ included in tcpEStatsPerfCongSignals. In order to minimize
820
+ spurious congestion indications due to out-of-order
821
+ segments, tcpEStatsPerfCongSignals SHOULD be incremented in
822
+ association with the Fast Retransmit algorithm.""",
823
+ "reference" :
824
+ """RFC 2581, TCP Congestion Control""",
825
+ }, # column
826
+ "tcpEStatsPerfCurCwnd" : {
827
+ "nodetype" : "column",
828
+ "moduleName" : "TCP-ESTATS-MIB",
829
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.20",
830
+ "status" : "current",
831
+ "syntax" : {
832
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
833
+ },
834
+ "access" : "readonly",
835
+ "units" : "octets",
836
+ "description" :
837
+ """The current congestion window, in octets.""",
838
+ "reference" :
839
+ """RFC 2581, TCP Congestion Control""",
840
+ }, # column
841
+ "tcpEStatsPerfCurSsthresh" : {
842
+ "nodetype" : "column",
843
+ "moduleName" : "TCP-ESTATS-MIB",
844
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.21",
845
+ "status" : "current",
846
+ "syntax" : {
847
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
848
+ },
849
+ "access" : "readonly",
850
+ "units" : "octets",
851
+ "description" :
852
+ """The current slow start threshold in octets.""",
853
+ "reference" :
854
+ """RFC 2581, TCP Congestion Control""",
855
+ }, # column
856
+ "tcpEStatsPerfTimeouts" : {
857
+ "nodetype" : "column",
858
+ "moduleName" : "TCP-ESTATS-MIB",
859
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.22",
860
+ "status" : "current",
861
+ "syntax" : {
862
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
863
+ },
864
+ "access" : "readonly",
865
+ "description" :
866
+ """The number of times the retransmit timeout has expired when
867
+ the RTO backoff multiplier is equal to one.""",
868
+ "reference" :
869
+ """RFC 2988, Computing TCP's Retransmission Timer""",
870
+ }, # column
871
+ "tcpEStatsPerfCurRwinSent" : {
872
+ "nodetype" : "column",
873
+ "moduleName" : "TCP-ESTATS-MIB",
874
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.23",
875
+ "status" : "current",
876
+ "syntax" : {
877
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
878
+ },
879
+ "access" : "readonly",
880
+ "units" : "octets",
881
+ "description" :
882
+ """The most recent window advertisement sent, in octets.""",
883
+ "reference" :
884
+ """RFC 793, Transmission Control Protocol""",
885
+ }, # column
886
+ "tcpEStatsPerfMaxRwinSent" : {
887
+ "nodetype" : "column",
888
+ "moduleName" : "TCP-ESTATS-MIB",
889
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.24",
890
+ "status" : "current",
891
+ "syntax" : {
892
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
893
+ },
894
+ "access" : "readonly",
895
+ "units" : "octets",
896
+ "description" :
897
+ """The maximum window advertisement sent, in octets.""",
898
+ "reference" :
899
+ """RFC 793, Transmission Control Protocol""",
900
+ }, # column
901
+ "tcpEStatsPerfZeroRwinSent" : {
902
+ "nodetype" : "column",
903
+ "moduleName" : "TCP-ESTATS-MIB",
904
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.25",
905
+ "status" : "current",
906
+ "syntax" : {
907
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
908
+ },
909
+ "access" : "readonly",
910
+ "description" :
911
+ """The number of acknowledgments sent announcing a zero
912
+
913
+
914
+
915
+ receive window, when the previously announced window was
916
+ not zero.""",
917
+ "reference" :
918
+ """RFC 793, Transmission Control Protocol""",
919
+ }, # column
920
+ "tcpEStatsPerfCurRwinRcvd" : {
921
+ "nodetype" : "column",
922
+ "moduleName" : "TCP-ESTATS-MIB",
923
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.26",
924
+ "status" : "current",
925
+ "syntax" : {
926
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
927
+ },
928
+ "access" : "readonly",
929
+ "units" : "octets",
930
+ "description" :
931
+ """The most recent window advertisement received, in octets.""",
932
+ "reference" :
933
+ """RFC 793, Transmission Control Protocol""",
934
+ }, # column
935
+ "tcpEStatsPerfMaxRwinRcvd" : {
936
+ "nodetype" : "column",
937
+ "moduleName" : "TCP-ESTATS-MIB",
938
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.27",
939
+ "status" : "current",
940
+ "syntax" : {
941
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
942
+ },
943
+ "access" : "readonly",
944
+ "units" : "octets",
945
+ "description" :
946
+ """The maximum window advertisement received, in octets.""",
947
+ "reference" :
948
+ """RFC 793, Transmission Control Protocol""",
949
+ }, # column
950
+ "tcpEStatsPerfZeroRwinRcvd" : {
951
+ "nodetype" : "column",
952
+ "moduleName" : "TCP-ESTATS-MIB",
953
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.28",
954
+ "status" : "current",
955
+ "syntax" : {
956
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
957
+ },
958
+ "access" : "readonly",
959
+ "description" :
960
+ """The number of acknowledgments received announcing a zero
961
+ receive window, when the previously announced window was
962
+ not zero.""",
963
+ "reference" :
964
+ """RFC 793, Transmission Control Protocol""",
965
+ }, # column
966
+ "tcpEStatsPerfSndLimTransRwin" : {
967
+ "nodetype" : "column",
968
+ "moduleName" : "TCP-ESTATS-MIB",
969
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.31",
970
+ "status" : "current",
971
+ "syntax" : {
972
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
973
+ },
974
+ "access" : "readonly",
975
+ "description" :
976
+ """The number of transitions into the 'Receiver Limited' state
977
+ from either the 'Congestion Limited' or 'Sender Limited'
978
+ states. This state is entered whenever TCP transmission
979
+ stops because the sender has filled the announced receiver
980
+ window, i.e., when SND.NXT has advanced to SND.UNA +
981
+ SND.WND - 1 as described in RFC 793.""",
982
+ "reference" :
983
+ """RFC 793, Transmission Control Protocol""",
984
+ }, # column
985
+ "tcpEStatsPerfSndLimTransCwnd" : {
986
+ "nodetype" : "column",
987
+ "moduleName" : "TCP-ESTATS-MIB",
988
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.32",
989
+ "status" : "current",
990
+ "syntax" : {
991
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
992
+ },
993
+ "access" : "readonly",
994
+ "description" :
995
+ """The number of transitions into the 'Congestion Limited'
996
+ state from either the 'Receiver Limited' or 'Sender
997
+ Limited' states. This state is entered whenever TCP
998
+ transmission stops because the sender has reached some
999
+ limit defined by congestion control (e.g., cwnd) or other
1000
+ algorithms (retransmission timeouts) designed to control
1001
+ network traffic. See the definition of 'CONGESTION WINDOW'
1002
+
1003
+
1004
+
1005
+ in RFC 2581.""",
1006
+ "reference" :
1007
+ """RFC 2581, TCP Congestion Control""",
1008
+ }, # column
1009
+ "tcpEStatsPerfSndLimTransSnd" : {
1010
+ "nodetype" : "column",
1011
+ "moduleName" : "TCP-ESTATS-MIB",
1012
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.33",
1013
+ "status" : "current",
1014
+ "syntax" : {
1015
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1016
+ },
1017
+ "access" : "readonly",
1018
+ "description" :
1019
+ """The number of transitions into the 'Sender Limited' state
1020
+ from either the 'Receiver Limited' or 'Congestion Limited'
1021
+ states. This state is entered whenever TCP transmission
1022
+ stops due to some sender limit such as running out of
1023
+ application data or other resources and the Karn algorithm.
1024
+ When TCP stops sending data for any reason, which cannot be
1025
+ classified as Receiver Limited or Congestion Limited, it
1026
+ MUST be treated as Sender Limited.""",
1027
+ }, # column
1028
+ "tcpEStatsPerfSndLimTimeRwin" : {
1029
+ "nodetype" : "column",
1030
+ "moduleName" : "TCP-ESTATS-MIB",
1031
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.34",
1032
+ "status" : "current",
1033
+ "syntax" : {
1034
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1035
+ },
1036
+ "access" : "readonly",
1037
+ "units" : "milliseconds",
1038
+ "description" :
1039
+ """The cumulative time spent in the 'Receiver Limited' state.
1040
+ See tcpEStatsPerfSndLimTransRwin.""",
1041
+ }, # column
1042
+ "tcpEStatsPerfSndLimTimeCwnd" : {
1043
+ "nodetype" : "column",
1044
+ "moduleName" : "TCP-ESTATS-MIB",
1045
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.35",
1046
+ "status" : "current",
1047
+ "syntax" : {
1048
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1049
+ },
1050
+ "access" : "readonly",
1051
+ "units" : "milliseconds",
1052
+ "description" :
1053
+ """The cumulative time spent in the 'Congestion Limited'
1054
+ state. See tcpEStatsPerfSndLimTransCwnd. When there is a
1055
+ retransmission timeout, it SHOULD be counted in
1056
+ tcpEStatsPerfSndLimTimeCwnd (and not the cumulative time
1057
+ for some other state.)""",
1058
+ }, # column
1059
+ "tcpEStatsPerfSndLimTimeSnd" : {
1060
+ "nodetype" : "column",
1061
+ "moduleName" : "TCP-ESTATS-MIB",
1062
+ "oid" : "1.3.6.1.2.1.156.1.1.3.1.36",
1063
+ "status" : "current",
1064
+ "syntax" : {
1065
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1066
+ },
1067
+ "access" : "readonly",
1068
+ "units" : "milliseconds",
1069
+ "description" :
1070
+ """The cumulative time spent in the 'Sender Limited' state.
1071
+ See tcpEStatsPerfSndLimTransSnd.""",
1072
+ }, # column
1073
+ "tcpEStatsPathTable" : {
1074
+ "nodetype" : "table",
1075
+ "moduleName" : "TCP-ESTATS-MIB",
1076
+ "oid" : "1.3.6.1.2.1.156.1.1.4",
1077
+ "status" : "current",
1078
+ "description" :
1079
+ """This table contains objects that can be used to infer
1080
+ detailed behavior of the Internet path, such as the
1081
+ extent that there is reordering, ECN bits, and if
1082
+ RTT fluctuations are correlated to losses.
1083
+
1084
+ Entries are retained in this table for the number of
1085
+ seconds indicated by the tcpEStatsConnTableLatency
1086
+ object, after the TCP connection first enters the closed
1087
+ state.""",
1088
+ }, # table
1089
+ "tcpEStatsPathEntry" : {
1090
+ "nodetype" : "row",
1091
+ "moduleName" : "TCP-ESTATS-MIB",
1092
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1",
1093
+ "status" : "current",
1094
+ "linkage" : [
1095
+ "tcpEStatsConnectIndex",
1096
+ ],
1097
+ "description" :
1098
+ """Each entry in this table has information about the
1099
+ characteristics of each active and recently closed TCP
1100
+ connection.""",
1101
+ }, # row
1102
+ "tcpEStatsPathRetranThresh" : {
1103
+ "nodetype" : "column",
1104
+ "moduleName" : "TCP-ESTATS-MIB",
1105
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.1",
1106
+ "status" : "current",
1107
+ "syntax" : {
1108
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1109
+ },
1110
+ "access" : "readonly",
1111
+ "description" :
1112
+ """The number of duplicate acknowledgments required to trigger
1113
+ Fast Retransmit. Note that although this is constant in
1114
+ traditional Reno TCP implementations, it is adaptive in
1115
+ many newer TCPs.""",
1116
+ "reference" :
1117
+ """RFC 2581, TCP Congestion Control""",
1118
+ }, # column
1119
+ "tcpEStatsPathNonRecovDAEpisodes" : {
1120
+ "nodetype" : "column",
1121
+ "moduleName" : "TCP-ESTATS-MIB",
1122
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.2",
1123
+ "status" : "current",
1124
+ "syntax" : {
1125
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1126
+ },
1127
+ "access" : "readonly",
1128
+ "description" :
1129
+ """The number of duplicate acknowledgment episodes that did
1130
+ not trigger a Fast Retransmit because ACK advanced prior to
1131
+ the number of duplicate acknowledgments reaching
1132
+ RetranThresh.
1133
+
1134
+
1135
+
1136
+
1137
+ In many implementations this is the number of times the
1138
+ 'dupacks' counter is set to zero when it is non-zero but
1139
+ less than RetranThresh.
1140
+
1141
+ Note that the change in tcpEStatsPathNonRecovDAEpisodes
1142
+ divided by the change in tcpEStatsPerfDataSegsOut is an
1143
+ estimate of the frequency of data reordering on the forward
1144
+ path over some interval.""",
1145
+ "reference" :
1146
+ """RFC 2581, TCP Congestion Control""",
1147
+ }, # column
1148
+ "tcpEStatsPathSumOctetsReordered" : {
1149
+ "nodetype" : "column",
1150
+ "moduleName" : "TCP-ESTATS-MIB",
1151
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.3",
1152
+ "status" : "current",
1153
+ "syntax" : {
1154
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1155
+ },
1156
+ "access" : "readonly",
1157
+ "units" : "octets",
1158
+ "description" :
1159
+ """The sum of the amounts SND.UNA advances on the
1160
+ acknowledgment which ends a dup-ack episode without a
1161
+ retransmission.
1162
+
1163
+ Note the change in tcpEStatsPathSumOctetsReordered divided
1164
+ by the change in tcpEStatsPathNonRecovDAEpisodes is an
1165
+ estimates of the average reordering distance, over some
1166
+ interval.""",
1167
+ }, # column
1168
+ "tcpEStatsPathNonRecovDA" : {
1169
+ "nodetype" : "column",
1170
+ "moduleName" : "TCP-ESTATS-MIB",
1171
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.4",
1172
+ "status" : "current",
1173
+ "syntax" : {
1174
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1175
+ },
1176
+ "access" : "readonly",
1177
+ "description" :
1178
+ """Duplicate acks (or SACKS) that did not trigger a Fast
1179
+ Retransmit because ACK advanced prior to the number of
1180
+ duplicate acknowledgments reaching RetranThresh.
1181
+
1182
+ In many implementations, this is the sum of the 'dupacks'
1183
+ counter, just before it is set to zero because ACK advanced
1184
+ without a Fast Retransmit.
1185
+
1186
+ Note that the change in tcpEStatsPathNonRecovDA divided by
1187
+ the change in tcpEStatsPathNonRecovDAEpisodes is an
1188
+ estimate of the average reordering distance in segments
1189
+ over some interval.""",
1190
+ "reference" :
1191
+ """RFC 2581, TCP Congestion Control""",
1192
+ }, # column
1193
+ "tcpEStatsPathSampleRTT" : {
1194
+ "nodetype" : "column",
1195
+ "moduleName" : "TCP-ESTATS-MIB",
1196
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.11",
1197
+ "status" : "current",
1198
+ "syntax" : {
1199
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1200
+ },
1201
+ "access" : "readonly",
1202
+ "units" : "milliseconds",
1203
+ "description" :
1204
+ """The most recent raw round trip time measurement used in
1205
+ calculation of the RTO.""",
1206
+ "reference" :
1207
+ """RFC 2988, Computing TCP's Retransmission Timer""",
1208
+ }, # column
1209
+ "tcpEStatsPathRTTVar" : {
1210
+ "nodetype" : "column",
1211
+ "moduleName" : "TCP-ESTATS-MIB",
1212
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.12",
1213
+ "status" : "current",
1214
+ "syntax" : {
1215
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1216
+ },
1217
+ "access" : "readonly",
1218
+ "units" : "milliseconds",
1219
+ "description" :
1220
+ """The round trip time variation used in calculation of the
1221
+ RTO. See RTTVAR in [RFC2988].""",
1222
+ "reference" :
1223
+ """RFC 2988, Computing TCP's Retransmission Timer""",
1224
+ }, # column
1225
+ "tcpEStatsPathMaxRTT" : {
1226
+ "nodetype" : "column",
1227
+ "moduleName" : "TCP-ESTATS-MIB",
1228
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.13",
1229
+ "status" : "current",
1230
+ "syntax" : {
1231
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1232
+ },
1233
+ "access" : "readonly",
1234
+ "units" : "milliseconds",
1235
+ "description" :
1236
+ """The maximum sampled round trip time.""",
1237
+ "reference" :
1238
+ """RFC 2988, Computing TCP's Retransmission Timer""",
1239
+ }, # column
1240
+ "tcpEStatsPathMinRTT" : {
1241
+ "nodetype" : "column",
1242
+ "moduleName" : "TCP-ESTATS-MIB",
1243
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.14",
1244
+ "status" : "current",
1245
+ "syntax" : {
1246
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1247
+ },
1248
+ "access" : "readonly",
1249
+ "units" : "milliseconds",
1250
+ "description" :
1251
+ """The minimum sampled round trip time.""",
1252
+ "reference" :
1253
+ """RFC 2988, Computing TCP's Retransmission Timer""",
1254
+ }, # column
1255
+ "tcpEStatsPathSumRTT" : {
1256
+ "nodetype" : "column",
1257
+ "moduleName" : "TCP-ESTATS-MIB",
1258
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.15",
1259
+ "status" : "current",
1260
+ "syntax" : {
1261
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1262
+ },
1263
+ "access" : "readonly",
1264
+ "units" : "milliseconds",
1265
+ "description" :
1266
+ """The sum of all sampled round trip times.
1267
+
1268
+ Note that the change in tcpEStatsPathSumRTT divided by the
1269
+ change in tcpEStatsPathCountRTT is the mean RTT, uniformly
1270
+ averaged over an enter interval.""",
1271
+ "reference" :
1272
+ """RFC 2988, Computing TCP's Retransmission Timer""",
1273
+ }, # column
1274
+ "tcpEStatsPathHCSumRTT" : {
1275
+ "nodetype" : "column",
1276
+ "moduleName" : "TCP-ESTATS-MIB",
1277
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.16",
1278
+ "status" : "current",
1279
+ "syntax" : {
1280
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1281
+ },
1282
+ "access" : "readonly",
1283
+ "units" : "milliseconds",
1284
+ "description" :
1285
+ """The sum of all sampled round trip times, on all systems
1286
+ that implement multiple concurrent RTT measurements.
1287
+
1288
+ Note that the change in tcpEStatsPathHCSumRTT divided by
1289
+ the change in tcpEStatsPathCountRTT is the mean RTT,
1290
+ uniformly averaged over an enter interval.""",
1291
+ "reference" :
1292
+ """RFC 2988, Computing TCP's Retransmission Timer""",
1293
+ }, # column
1294
+ "tcpEStatsPathCountRTT" : {
1295
+ "nodetype" : "column",
1296
+ "moduleName" : "TCP-ESTATS-MIB",
1297
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.17",
1298
+ "status" : "current",
1299
+ "syntax" : {
1300
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1301
+ },
1302
+ "access" : "readonly",
1303
+ "description" :
1304
+ """The number of round trip time samples included in
1305
+ tcpEStatsPathSumRTT and tcpEStatsPathHCSumRTT.""",
1306
+ "reference" :
1307
+ """RFC 2988, Computing TCP's Retransmission Timer""",
1308
+ }, # column
1309
+ "tcpEStatsPathMaxRTO" : {
1310
+ "nodetype" : "column",
1311
+ "moduleName" : "TCP-ESTATS-MIB",
1312
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.18",
1313
+ "status" : "current",
1314
+ "syntax" : {
1315
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1316
+ },
1317
+ "access" : "readonly",
1318
+ "units" : "milliseconds",
1319
+ "description" :
1320
+ """The maximum value of the retransmit timer RTO.""",
1321
+ "reference" :
1322
+ """RFC 2988, Computing TCP's Retransmission Timer""",
1323
+ }, # column
1324
+ "tcpEStatsPathMinRTO" : {
1325
+ "nodetype" : "column",
1326
+ "moduleName" : "TCP-ESTATS-MIB",
1327
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.19",
1328
+ "status" : "current",
1329
+ "syntax" : {
1330
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1331
+ },
1332
+ "access" : "readonly",
1333
+ "units" : "milliseconds",
1334
+ "description" :
1335
+ """The minimum value of the retransmit timer RTO.""",
1336
+ "reference" :
1337
+ """RFC 2988, Computing TCP's Retransmission Timer""",
1338
+ }, # column
1339
+ "tcpEStatsPathIpTtl" : {
1340
+ "nodetype" : "column",
1341
+ "moduleName" : "TCP-ESTATS-MIB",
1342
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.20",
1343
+ "status" : "current",
1344
+ "syntax" : {
1345
+ "type" : { "module" :"", "name" : "Unsigned32"},
1346
+ },
1347
+ "access" : "readonly",
1348
+ "description" :
1349
+ """The value of the TTL field carried in the most recently
1350
+ received IP header. This is sometimes useful to detect
1351
+ changing or unstable routes.""",
1352
+ "reference" :
1353
+ """RFC 791, Internet Protocol""",
1354
+ }, # column
1355
+ "tcpEStatsPathIpTosIn" : {
1356
+ "nodetype" : "column",
1357
+ "moduleName" : "TCP-ESTATS-MIB",
1358
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.21",
1359
+ "status" : "current",
1360
+ "syntax" : {
1361
+ "type" : {
1362
+ "basetype" : "OctetString",
1363
+ "ranges" : [
1364
+ {
1365
+ "min" : "1",
1366
+ "max" : "1"
1367
+ },
1368
+ ],
1369
+ "range" : {
1370
+ "min" : "1",
1371
+ "max" : "1"
1372
+ },
1373
+ },
1374
+ },
1375
+ "access" : "readonly",
1376
+ "description" :
1377
+ """The value of the IPv4 Type of Service octet, or the IPv6
1378
+ traffic class octet, carried in the most recently received
1379
+ IP header.
1380
+
1381
+ This is useful to diagnose interactions between TCP and any
1382
+ IP layer packet scheduling and delivery policy, which might
1383
+ be in effect to implement Diffserv.""",
1384
+ "reference" :
1385
+ """RFC 3260, New Terminology and Clarifications for Diffserv""",
1386
+ }, # column
1387
+ "tcpEStatsPathIpTosOut" : {
1388
+ "nodetype" : "column",
1389
+ "moduleName" : "TCP-ESTATS-MIB",
1390
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.22",
1391
+ "status" : "current",
1392
+ "syntax" : {
1393
+ "type" : {
1394
+ "basetype" : "OctetString",
1395
+ "ranges" : [
1396
+ {
1397
+ "min" : "1",
1398
+ "max" : "1"
1399
+ },
1400
+ ],
1401
+ "range" : {
1402
+ "min" : "1",
1403
+ "max" : "1"
1404
+ },
1405
+ },
1406
+ },
1407
+ "access" : "readonly",
1408
+ "description" :
1409
+ """The value of the IPv4 Type Of Service octet, or the IPv6
1410
+ traffic class octet, carried in the most recently
1411
+ transmitted IP header.
1412
+
1413
+ This is useful to diagnose interactions between TCP and any
1414
+ IP layer packet scheduling and delivery policy, which might
1415
+ be in effect to implement Diffserv.""",
1416
+ "reference" :
1417
+ """RFC 3260, New Terminology and Clarifications for Diffserv""",
1418
+ }, # column
1419
+ "tcpEStatsPathPreCongSumCwnd" : {
1420
+ "nodetype" : "column",
1421
+ "moduleName" : "TCP-ESTATS-MIB",
1422
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.23",
1423
+ "status" : "current",
1424
+ "syntax" : {
1425
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1426
+ },
1427
+ "access" : "readonly",
1428
+ "units" : "octets",
1429
+ "description" :
1430
+ """The sum of the values of the congestion window, in octets,
1431
+ captured each time a congestion signal is received. This
1432
+ MUST be updated each time tcpEStatsPerfCongSignals is
1433
+ incremented, such that the change in
1434
+ tcpEStatsPathPreCongSumCwnd divided by the change in
1435
+ tcpEStatsPerfCongSignals is the average window (over some
1436
+ interval) just prior to a congestion signal.""",
1437
+ }, # column
1438
+ "tcpEStatsPathPreCongSumRTT" : {
1439
+ "nodetype" : "column",
1440
+ "moduleName" : "TCP-ESTATS-MIB",
1441
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.24",
1442
+ "status" : "current",
1443
+ "syntax" : {
1444
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1445
+ },
1446
+ "access" : "readonly",
1447
+ "units" : "milliseconds",
1448
+ "description" :
1449
+ """Sum of the last sample of the RTT (tcpEStatsPathSampleRTT)
1450
+ prior to the received congestion signals. This MUST be
1451
+ updated each time tcpEStatsPerfCongSignals is incremented,
1452
+ such that the change in tcpEStatsPathPreCongSumRTT divided by
1453
+ the change in tcpEStatsPerfCongSignals is the average RTT
1454
+ (over some interval) just prior to a congestion signal.""",
1455
+ }, # column
1456
+ "tcpEStatsPathPostCongSumRTT" : {
1457
+ "nodetype" : "column",
1458
+ "moduleName" : "TCP-ESTATS-MIB",
1459
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.25",
1460
+ "status" : "current",
1461
+ "syntax" : {
1462
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1463
+ },
1464
+ "access" : "readonly",
1465
+ "units" : "octets",
1466
+ "description" :
1467
+ """Sum of the first sample of the RTT (tcpEStatsPathSampleRTT)
1468
+ following each congestion signal. Such that the change in
1469
+ tcpEStatsPathPostCongSumRTT divided by the change in
1470
+ tcpEStatsPathPostCongCountRTT is the average RTT (over some
1471
+ interval) just after a congestion signal.""",
1472
+ }, # column
1473
+ "tcpEStatsPathPostCongCountRTT" : {
1474
+ "nodetype" : "column",
1475
+ "moduleName" : "TCP-ESTATS-MIB",
1476
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.26",
1477
+ "status" : "current",
1478
+ "syntax" : {
1479
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1480
+ },
1481
+ "access" : "readonly",
1482
+ "units" : "milliseconds",
1483
+ "description" :
1484
+ """The number of RTT samples included in
1485
+ tcpEStatsPathPostCongSumRTT such that the change in
1486
+ tcpEStatsPathPostCongSumRTT divided by the change in
1487
+ tcpEStatsPathPostCongCountRTT is the average RTT (over some
1488
+ interval) just after a congestion signal.""",
1489
+ }, # column
1490
+ "tcpEStatsPathECNsignals" : {
1491
+ "nodetype" : "column",
1492
+ "moduleName" : "TCP-ESTATS-MIB",
1493
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.27",
1494
+ "status" : "current",
1495
+ "syntax" : {
1496
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1497
+ },
1498
+ "access" : "readonly",
1499
+ "description" :
1500
+ """The number of congestion signals delivered to the TCP
1501
+ sender via explicit congestion notification (ECN). This is
1502
+ typically the number of segments bearing Echo Congestion
1503
+
1504
+
1505
+
1506
+ Experienced (ECE) bits, but
1507
+ should also include segments failing the ECN nonce check or
1508
+ other explicit congestion signals.""",
1509
+ "reference" :
1510
+ """RFC 3168, The Addition of Explicit Congestion Notification
1511
+ (ECN) to IP""",
1512
+ }, # column
1513
+ "tcpEStatsPathDupAckEpisodes" : {
1514
+ "nodetype" : "column",
1515
+ "moduleName" : "TCP-ESTATS-MIB",
1516
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.28",
1517
+ "status" : "current",
1518
+ "syntax" : {
1519
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1520
+ },
1521
+ "access" : "readonly",
1522
+ "description" :
1523
+ """The number of Duplicate Acks Sent when prior Ack was not
1524
+ duplicate. This is the number of times that a contiguous
1525
+ series of duplicate acknowledgments have been sent.
1526
+
1527
+ This is an indication of the number of data segments lost
1528
+ or reordered on the path from the remote TCP endpoint to
1529
+ the near TCP endpoint.""",
1530
+ "reference" :
1531
+ """RFC 2581, TCP Congestion Control""",
1532
+ }, # column
1533
+ "tcpEStatsPathRcvRTT" : {
1534
+ "nodetype" : "column",
1535
+ "moduleName" : "TCP-ESTATS-MIB",
1536
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.29",
1537
+ "status" : "current",
1538
+ "syntax" : {
1539
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1540
+ },
1541
+ "access" : "readonly",
1542
+ "description" :
1543
+ """The receiver's estimate of the Path RTT.
1544
+
1545
+ Adaptive receiver window algorithms depend on the receiver
1546
+ to having a good estimate of the path RTT.""",
1547
+ }, # column
1548
+ "tcpEStatsPathDupAcksOut" : {
1549
+ "nodetype" : "column",
1550
+ "moduleName" : "TCP-ESTATS-MIB",
1551
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.30",
1552
+ "status" : "current",
1553
+ "syntax" : {
1554
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1555
+ },
1556
+ "access" : "readonly",
1557
+ "description" :
1558
+ """The number of duplicate ACKs sent. The ratio of the change
1559
+ in tcpEStatsPathDupAcksOut to the change in
1560
+ tcpEStatsPathDupAckEpisodes is an indication of reorder or
1561
+ recovery distance over some interval.""",
1562
+ "reference" :
1563
+ """RFC 2581, TCP Congestion Control""",
1564
+ }, # column
1565
+ "tcpEStatsPathCERcvd" : {
1566
+ "nodetype" : "column",
1567
+ "moduleName" : "TCP-ESTATS-MIB",
1568
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.31",
1569
+ "status" : "current",
1570
+ "syntax" : {
1571
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1572
+ },
1573
+ "access" : "readonly",
1574
+ "description" :
1575
+ """The number of segments received with IP headers bearing
1576
+ Congestion Experienced (CE) markings.""",
1577
+ "reference" :
1578
+ """RFC 3168, The Addition of Explicit Congestion Notification
1579
+ (ECN) to IP""",
1580
+ }, # column
1581
+ "tcpEStatsPathECESent" : {
1582
+ "nodetype" : "column",
1583
+ "moduleName" : "TCP-ESTATS-MIB",
1584
+ "oid" : "1.3.6.1.2.1.156.1.1.4.1.32",
1585
+ "status" : "current",
1586
+ "syntax" : {
1587
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1588
+ },
1589
+ "access" : "readonly",
1590
+ "description" :
1591
+ """Number of times the Echo Congestion Experienced (ECE) bit
1592
+ in the TCP header has been set (transitioned from 0 to 1),
1593
+ due to a Congestion Experienced (CE) marking on an IP
1594
+ header. Note that ECE can be set and reset only once per
1595
+ RTT, while CE can be set on many segments per RTT.""",
1596
+ "reference" :
1597
+ """RFC 3168, The Addition of Explicit Congestion Notification
1598
+ (ECN) to IP""",
1599
+ }, # column
1600
+ "tcpEStatsStackTable" : {
1601
+ "nodetype" : "table",
1602
+ "moduleName" : "TCP-ESTATS-MIB",
1603
+ "oid" : "1.3.6.1.2.1.156.1.1.5",
1604
+ "status" : "current",
1605
+ "description" :
1606
+ """This table contains objects that are most useful for
1607
+ determining how well some of the TCP control
1608
+ algorithms are coping with this particular
1609
+
1610
+
1611
+
1612
+ path.
1613
+
1614
+ Entries are retained in this table for the number of
1615
+ seconds indicated by the tcpEStatsConnTableLatency
1616
+ object, after the TCP connection first enters the closed
1617
+ state.""",
1618
+ }, # table
1619
+ "tcpEStatsStackEntry" : {
1620
+ "nodetype" : "row",
1621
+ "moduleName" : "TCP-ESTATS-MIB",
1622
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1",
1623
+ "status" : "current",
1624
+ "linkage" : [
1625
+ "tcpEStatsConnectIndex",
1626
+ ],
1627
+ "description" :
1628
+ """Each entry in this table has information about the
1629
+ characteristics of each active and recently closed TCP
1630
+ connection.""",
1631
+ }, # row
1632
+ "tcpEStatsStackActiveOpen" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "TCP-ESTATS-MIB",
1635
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.1",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1639
+ },
1640
+ "access" : "readonly",
1641
+ "description" :
1642
+ """True(1) if the local connection traversed the SYN-SENT
1643
+ state, else false(2).""",
1644
+ "reference" :
1645
+ """RFC 793, Transmission Control Protocol""",
1646
+ }, # column
1647
+ "tcpEStatsStackMSSSent" : {
1648
+ "nodetype" : "column",
1649
+ "moduleName" : "TCP-ESTATS-MIB",
1650
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.2",
1651
+ "status" : "current",
1652
+ "syntax" : {
1653
+ "type" : { "module" :"", "name" : "Unsigned32"},
1654
+ },
1655
+ "access" : "readonly",
1656
+ "description" :
1657
+ """The value sent in an MSS option, or zero if none.""",
1658
+ "reference" :
1659
+ """RFC 1122, Requirements for Internet Hosts - Communication
1660
+ Layers""",
1661
+ }, # column
1662
+ "tcpEStatsStackMSSRcvd" : {
1663
+ "nodetype" : "column",
1664
+ "moduleName" : "TCP-ESTATS-MIB",
1665
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.3",
1666
+ "status" : "current",
1667
+ "syntax" : {
1668
+ "type" : { "module" :"", "name" : "Unsigned32"},
1669
+ },
1670
+ "access" : "readonly",
1671
+ "description" :
1672
+ """The value received in an MSS option, or zero if none.""",
1673
+ "reference" :
1674
+ """RFC 1122, Requirements for Internet Hosts - Communication
1675
+ Layers""",
1676
+ }, # column
1677
+ "tcpEStatsStackWinScaleSent" : {
1678
+ "nodetype" : "column",
1679
+ "moduleName" : "TCP-ESTATS-MIB",
1680
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.4",
1681
+ "status" : "current",
1682
+ "syntax" : {
1683
+ "type" : {
1684
+ "basetype" : "Integer32",
1685
+ "ranges" : [
1686
+ {
1687
+ "min" : "-1",
1688
+ "max" : "14"
1689
+ },
1690
+ ],
1691
+ "range" : {
1692
+ "min" : "-1",
1693
+ "max" : "14"
1694
+ },
1695
+ },
1696
+ },
1697
+ "access" : "readonly",
1698
+ "description" :
1699
+ """The value of the transmitted window scale option if one was
1700
+ sent; otherwise, a value of -1.
1701
+
1702
+ Note that if both tcpEStatsStackWinScaleSent and
1703
+ tcpEStatsStackWinScaleRcvd are not -1, then Rcv.Wind.Scale
1704
+ will be the same as this value and used to scale receiver
1705
+ window announcements from the local host to the remote
1706
+ host.""",
1707
+ "reference" :
1708
+ """RFC 1323, TCP Extensions for High Performance""",
1709
+ }, # column
1710
+ "tcpEStatsStackWinScaleRcvd" : {
1711
+ "nodetype" : "column",
1712
+ "moduleName" : "TCP-ESTATS-MIB",
1713
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.5",
1714
+ "status" : "current",
1715
+ "syntax" : {
1716
+ "type" : {
1717
+ "basetype" : "Integer32",
1718
+ "ranges" : [
1719
+ {
1720
+ "min" : "-1",
1721
+ "max" : "14"
1722
+ },
1723
+ ],
1724
+ "range" : {
1725
+ "min" : "-1",
1726
+ "max" : "14"
1727
+ },
1728
+ },
1729
+ },
1730
+ "access" : "readonly",
1731
+ "description" :
1732
+ """The value of the received window scale option if one was
1733
+ received; otherwise, a value of -1.
1734
+
1735
+ Note that if both tcpEStatsStackWinScaleSent and
1736
+ tcpEStatsStackWinScaleRcvd are not -1, then Snd.Wind.Scale
1737
+ will be the same as this value and used to scale receiver
1738
+ window announcements from the remote host to the local
1739
+ host.""",
1740
+ "reference" :
1741
+ """RFC 1323, TCP Extensions for High Performance""",
1742
+ }, # column
1743
+ "tcpEStatsStackTimeStamps" : {
1744
+ "nodetype" : "column",
1745
+ "moduleName" : "TCP-ESTATS-MIB",
1746
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.6",
1747
+ "status" : "current",
1748
+ "syntax" : {
1749
+ "type" : { "module" :"TCP-ESTATS-MIB", "name" : "TcpEStatsNegotiated"},
1750
+ },
1751
+ "access" : "readonly",
1752
+ "description" :
1753
+ """Enabled(1) if TCP timestamps have been negotiated on,
1754
+ selfDisabled(2) if they are disabled or not implemented on
1755
+ the local host, or peerDisabled(3) if not negotiated by the
1756
+ remote hosts.""",
1757
+ "reference" :
1758
+ """RFC 1323, TCP Extensions for High Performance""",
1759
+ }, # column
1760
+ "tcpEStatsStackECN" : {
1761
+ "nodetype" : "column",
1762
+ "moduleName" : "TCP-ESTATS-MIB",
1763
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.7",
1764
+ "status" : "current",
1765
+ "syntax" : {
1766
+ "type" : { "module" :"TCP-ESTATS-MIB", "name" : "TcpEStatsNegotiated"},
1767
+ },
1768
+ "access" : "readonly",
1769
+ "description" :
1770
+ """Enabled(1) if Explicit Congestion Notification (ECN) has
1771
+ been negotiated on, selfDisabled(2) if it is disabled or
1772
+ not implemented on the local host, or peerDisabled(3) if
1773
+ not negotiated by the remote hosts.""",
1774
+ "reference" :
1775
+ """RFC 3168, The Addition of Explicit Congestion Notification
1776
+ (ECN) to IP""",
1777
+ }, # column
1778
+ "tcpEStatsStackWillSendSACK" : {
1779
+ "nodetype" : "column",
1780
+ "moduleName" : "TCP-ESTATS-MIB",
1781
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.8",
1782
+ "status" : "current",
1783
+ "syntax" : {
1784
+ "type" : { "module" :"TCP-ESTATS-MIB", "name" : "TcpEStatsNegotiated"},
1785
+ },
1786
+ "access" : "readonly",
1787
+ "description" :
1788
+ """Enabled(1) if the local host will send SACK options,
1789
+ selfDisabled(2) if SACK is disabled or not implemented on
1790
+ the local host, or peerDisabled(3) if the remote host did
1791
+ not send the SACK-permitted option.
1792
+
1793
+ Note that SACK negotiation is not symmetrical. SACK can
1794
+ enabled on one side of the connection and not the other.""",
1795
+ "reference" :
1796
+ """RFC 2018, TCP Selective Acknowledgement Options""",
1797
+ }, # column
1798
+ "tcpEStatsStackWillUseSACK" : {
1799
+ "nodetype" : "column",
1800
+ "moduleName" : "TCP-ESTATS-MIB",
1801
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.9",
1802
+ "status" : "current",
1803
+ "syntax" : {
1804
+ "type" : { "module" :"TCP-ESTATS-MIB", "name" : "TcpEStatsNegotiated"},
1805
+ },
1806
+ "access" : "readonly",
1807
+ "description" :
1808
+ """Enabled(1) if the local host will process SACK options,
1809
+ selfDisabled(2) if SACK is disabled or not implemented on
1810
+ the local host, or peerDisabled(3) if the remote host sends
1811
+
1812
+
1813
+
1814
+ duplicate ACKs without SACK options, or the local host
1815
+ otherwise decides not to process received SACK options.
1816
+
1817
+ Unlike other TCP options, the remote data receiver cannot
1818
+ explicitly indicate if it is able to generate SACK options.
1819
+ When sending data, the local host has to deduce if the
1820
+ remote receiver is sending SACK options. This object can
1821
+ transition from Enabled(1) to peerDisabled(3) after the SYN
1822
+ exchange.
1823
+
1824
+ Note that SACK negotiation is not symmetrical. SACK can
1825
+ enabled on one side of the connection and not the other.""",
1826
+ "reference" :
1827
+ """RFC 2018, TCP Selective Acknowledgement Options""",
1828
+ }, # column
1829
+ "tcpEStatsStackState" : {
1830
+ "nodetype" : "column",
1831
+ "moduleName" : "TCP-ESTATS-MIB",
1832
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.10",
1833
+ "status" : "current",
1834
+ "syntax" : {
1835
+ "type" : {
1836
+ "basetype" : "Enumeration",
1837
+ "tcpESStateClosed" : {
1838
+ "nodetype" : "namednumber",
1839
+ "number" : "1"
1840
+ },
1841
+ "tcpESStateListen" : {
1842
+ "nodetype" : "namednumber",
1843
+ "number" : "2"
1844
+ },
1845
+ "tcpESStateSynSent" : {
1846
+ "nodetype" : "namednumber",
1847
+ "number" : "3"
1848
+ },
1849
+ "tcpESStateSynReceived" : {
1850
+ "nodetype" : "namednumber",
1851
+ "number" : "4"
1852
+ },
1853
+ "tcpESStateEstablished" : {
1854
+ "nodetype" : "namednumber",
1855
+ "number" : "5"
1856
+ },
1857
+ "tcpESStateFinWait1" : {
1858
+ "nodetype" : "namednumber",
1859
+ "number" : "6"
1860
+ },
1861
+ "tcpESStateFinWait2" : {
1862
+ "nodetype" : "namednumber",
1863
+ "number" : "7"
1864
+ },
1865
+ "tcpESStateCloseWait" : {
1866
+ "nodetype" : "namednumber",
1867
+ "number" : "8"
1868
+ },
1869
+ "tcpESStateLastAck" : {
1870
+ "nodetype" : "namednumber",
1871
+ "number" : "9"
1872
+ },
1873
+ "tcpESStateClosing" : {
1874
+ "nodetype" : "namednumber",
1875
+ "number" : "10"
1876
+ },
1877
+ "tcpESStateTimeWait" : {
1878
+ "nodetype" : "namednumber",
1879
+ "number" : "11"
1880
+ },
1881
+ "tcpESStateDeleteTcb" : {
1882
+ "nodetype" : "namednumber",
1883
+ "number" : "12"
1884
+ },
1885
+ },
1886
+ },
1887
+ "access" : "readonly",
1888
+ "description" :
1889
+ """An integer value representing the connection state from the
1890
+ TCP State Transition Diagram.
1891
+
1892
+ The value listen(2) is included only for parallelism to the
1893
+ old tcpConnTable, and SHOULD NOT be used because the listen
1894
+ state in managed by the tcpListenerTable.
1895
+
1896
+ The value DeleteTcb(12) is included only for parallelism to
1897
+ the tcpConnTable mechanism for terminating connections,
1898
+
1899
+
1900
+
1901
+ although this table does not permit writing.""",
1902
+ "reference" :
1903
+ """RFC 793, Transmission Control Protocol""",
1904
+ }, # column
1905
+ "tcpEStatsStackNagle" : {
1906
+ "nodetype" : "column",
1907
+ "moduleName" : "TCP-ESTATS-MIB",
1908
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.11",
1909
+ "status" : "current",
1910
+ "syntax" : {
1911
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1912
+ },
1913
+ "access" : "readonly",
1914
+ "description" :
1915
+ """True(1) if the Nagle algorithm is being used, else
1916
+ false(2).""",
1917
+ "reference" :
1918
+ """RFC 1122, Requirements for Internet Hosts - Communication
1919
+ Layers""",
1920
+ }, # column
1921
+ "tcpEStatsStackMaxSsCwnd" : {
1922
+ "nodetype" : "column",
1923
+ "moduleName" : "TCP-ESTATS-MIB",
1924
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.12",
1925
+ "status" : "current",
1926
+ "syntax" : {
1927
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1928
+ },
1929
+ "access" : "readonly",
1930
+ "units" : "octets",
1931
+ "description" :
1932
+ """The maximum congestion window used during Slow Start, in
1933
+ octets.""",
1934
+ "reference" :
1935
+ """RFC 2581, TCP Congestion Control""",
1936
+ }, # column
1937
+ "tcpEStatsStackMaxCaCwnd" : {
1938
+ "nodetype" : "column",
1939
+ "moduleName" : "TCP-ESTATS-MIB",
1940
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.13",
1941
+ "status" : "current",
1942
+ "syntax" : {
1943
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1944
+ },
1945
+ "access" : "readonly",
1946
+ "units" : "octets",
1947
+ "description" :
1948
+ """The maximum congestion window used during Congestion
1949
+ Avoidance, in octets.""",
1950
+ "reference" :
1951
+ """RFC 2581, TCP Congestion Control""",
1952
+ }, # column
1953
+ "tcpEStatsStackMaxSsthresh" : {
1954
+ "nodetype" : "column",
1955
+ "moduleName" : "TCP-ESTATS-MIB",
1956
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.14",
1957
+ "status" : "current",
1958
+ "syntax" : {
1959
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1960
+ },
1961
+ "access" : "readonly",
1962
+ "units" : "octets",
1963
+ "description" :
1964
+ """The maximum slow start threshold, excluding the initial
1965
+ value.""",
1966
+ "reference" :
1967
+ """RFC 2581, TCP Congestion Control""",
1968
+ }, # column
1969
+ "tcpEStatsStackMinSsthresh" : {
1970
+ "nodetype" : "column",
1971
+ "moduleName" : "TCP-ESTATS-MIB",
1972
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.15",
1973
+ "status" : "current",
1974
+ "syntax" : {
1975
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1976
+ },
1977
+ "access" : "readonly",
1978
+ "units" : "octets",
1979
+ "description" :
1980
+ """The minimum slow start threshold.""",
1981
+ "reference" :
1982
+ """RFC 2581, TCP Congestion Control""",
1983
+ }, # column
1984
+ "tcpEStatsStackInRecovery" : {
1985
+ "nodetype" : "column",
1986
+ "moduleName" : "TCP-ESTATS-MIB",
1987
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.16",
1988
+ "status" : "current",
1989
+ "syntax" : {
1990
+ "type" : {
1991
+ "basetype" : "Enumeration",
1992
+ "tcpESDataContiguous" : {
1993
+ "nodetype" : "namednumber",
1994
+ "number" : "1"
1995
+ },
1996
+ "tcpESDataUnordered" : {
1997
+ "nodetype" : "namednumber",
1998
+ "number" : "2"
1999
+ },
2000
+ "tcpESDataRecovery" : {
2001
+ "nodetype" : "namednumber",
2002
+ "number" : "3"
2003
+ },
2004
+ },
2005
+ },
2006
+ "access" : "readonly",
2007
+ "description" :
2008
+ """An integer value representing the state of the loss
2009
+ recovery for this connection.
2010
+
2011
+ tcpESDataContiguous(1) indicates that the remote receiver
2012
+ is reporting contiguous data (no duplicate acknowledgments
2013
+ or SACK options) and that there are no unacknowledged
2014
+ retransmissions.
2015
+
2016
+ tcpESDataUnordered(2) indicates that the remote receiver is
2017
+ reporting missing or out-of-order data (e.g., sending
2018
+ duplicate acknowledgments or SACK options) and that there
2019
+ are no unacknowledged retransmissions (because the missing
2020
+ data has not yet been retransmitted).
2021
+
2022
+ tcpESDataRecovery(3) indicates that the sender has
2023
+ outstanding retransmitted data that is still
2024
+
2025
+
2026
+
2027
+ unacknowledged.""",
2028
+ "reference" :
2029
+ """RFC 2581, TCP Congestion Control""",
2030
+ }, # column
2031
+ "tcpEStatsStackDupAcksIn" : {
2032
+ "nodetype" : "column",
2033
+ "moduleName" : "TCP-ESTATS-MIB",
2034
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.17",
2035
+ "status" : "current",
2036
+ "syntax" : {
2037
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2038
+ },
2039
+ "access" : "readonly",
2040
+ "description" :
2041
+ """The number of duplicate ACKs received.""",
2042
+ "reference" :
2043
+ """RFC 2581, TCP Congestion Control""",
2044
+ }, # column
2045
+ "tcpEStatsStackSpuriousFrDetected" : {
2046
+ "nodetype" : "column",
2047
+ "moduleName" : "TCP-ESTATS-MIB",
2048
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.18",
2049
+ "status" : "current",
2050
+ "syntax" : {
2051
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2052
+ },
2053
+ "access" : "readonly",
2054
+ "description" :
2055
+ """The number of acknowledgments reporting out-of-order
2056
+ segments after the Fast Retransmit algorithm has already
2057
+ retransmitted the segments. (For example as detected by the
2058
+ Eifel algorithm).'""",
2059
+ "reference" :
2060
+ """RFC 3522, The Eifel Detection Algorithm for TCP""",
2061
+ }, # column
2062
+ "tcpEStatsStackSpuriousRtoDetected" : {
2063
+ "nodetype" : "column",
2064
+ "moduleName" : "TCP-ESTATS-MIB",
2065
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.19",
2066
+ "status" : "current",
2067
+ "syntax" : {
2068
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2069
+ },
2070
+ "access" : "readonly",
2071
+ "description" :
2072
+ """The number of acknowledgments reporting segments that have
2073
+ already been retransmitted due to a Retransmission Timeout.""",
2074
+ }, # column
2075
+ "tcpEStatsStackSoftErrors" : {
2076
+ "nodetype" : "column",
2077
+ "moduleName" : "TCP-ESTATS-MIB",
2078
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.21",
2079
+ "status" : "current",
2080
+ "syntax" : {
2081
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2082
+ },
2083
+ "access" : "readonly",
2084
+ "description" :
2085
+ """The number of segments that fail various consistency tests
2086
+ during TCP input processing. Soft errors might cause the
2087
+ segment to be discarded but some do not. Some of these soft
2088
+ errors cause the generation of a TCP acknowledgment, while
2089
+ others are silently discarded.""",
2090
+ "reference" :
2091
+ """RFC 793, Transmission Control Protocol""",
2092
+ }, # column
2093
+ "tcpEStatsStackSoftErrorReason" : {
2094
+ "nodetype" : "column",
2095
+ "moduleName" : "TCP-ESTATS-MIB",
2096
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.22",
2097
+ "status" : "current",
2098
+ "syntax" : {
2099
+ "type" : {
2100
+ "basetype" : "Enumeration",
2101
+ "belowDataWindow" : {
2102
+ "nodetype" : "namednumber",
2103
+ "number" : "1"
2104
+ },
2105
+ "aboveDataWindow" : {
2106
+ "nodetype" : "namednumber",
2107
+ "number" : "2"
2108
+ },
2109
+ "belowAckWindow" : {
2110
+ "nodetype" : "namednumber",
2111
+ "number" : "3"
2112
+ },
2113
+ "aboveAckWindow" : {
2114
+ "nodetype" : "namednumber",
2115
+ "number" : "4"
2116
+ },
2117
+ "belowTSWindow" : {
2118
+ "nodetype" : "namednumber",
2119
+ "number" : "5"
2120
+ },
2121
+ "aboveTSWindow" : {
2122
+ "nodetype" : "namednumber",
2123
+ "number" : "6"
2124
+ },
2125
+ "dataCheckSum" : {
2126
+ "nodetype" : "namednumber",
2127
+ "number" : "7"
2128
+ },
2129
+ "otherSoftError" : {
2130
+ "nodetype" : "namednumber",
2131
+ "number" : "8"
2132
+ },
2133
+ },
2134
+ },
2135
+ "access" : "readonly",
2136
+ "description" :
2137
+ """This object identifies which consistency test most recently
2138
+ failed during TCP input processing. This object SHOULD be
2139
+ set every time tcpEStatsStackSoftErrors is incremented. The
2140
+ codes are as follows:
2141
+
2142
+ belowDataWindow(1) - All data in the segment is below
2143
+ SND.UNA. (Normal for keep-alives and zero window probes).
2144
+
2145
+ aboveDataWindow(2) - Some data in the segment is above
2146
+ SND.WND. (Indicates an implementation bug or possible
2147
+ attack).
2148
+
2149
+ belowAckWindow(3) - ACK below SND.UNA. (Indicates that the
2150
+ return path is reordering ACKs)
2151
+
2152
+ aboveAckWindow(4) - An ACK for data that we have not sent.
2153
+ (Indicates an implementation bug or possible attack).
2154
+
2155
+ belowTSWindow(5) - TSecr on the segment is older than the
2156
+ current TS.Recent (Normal for the rare case where PAWS
2157
+ detects data reordered by the network).
2158
+
2159
+ aboveTSWindow(6) - TSecr on the segment is newer than the
2160
+ current TS.Recent. (Indicates an implementation bug or
2161
+ possible attack).
2162
+
2163
+
2164
+
2165
+
2166
+ dataCheckSum(7) - Incorrect checksum. Note that this value
2167
+ is intrinsically fragile, because the header fields used to
2168
+ identify the connection may have been corrupted.
2169
+
2170
+ otherSoftError(8) - All other soft errors not listed
2171
+ above.""",
2172
+ "reference" :
2173
+ """RFC 793, Transmission Control Protocol""",
2174
+ }, # column
2175
+ "tcpEStatsStackSlowStart" : {
2176
+ "nodetype" : "column",
2177
+ "moduleName" : "TCP-ESTATS-MIB",
2178
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.23",
2179
+ "status" : "current",
2180
+ "syntax" : {
2181
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2182
+ },
2183
+ "access" : "readonly",
2184
+ "description" :
2185
+ """The number of times the congestion window has been
2186
+ increased by the Slow Start algorithm.""",
2187
+ "reference" :
2188
+ """RFC 2581, TCP Congestion Control""",
2189
+ }, # column
2190
+ "tcpEStatsStackCongAvoid" : {
2191
+ "nodetype" : "column",
2192
+ "moduleName" : "TCP-ESTATS-MIB",
2193
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.24",
2194
+ "status" : "current",
2195
+ "syntax" : {
2196
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2197
+ },
2198
+ "access" : "readonly",
2199
+ "description" :
2200
+ """The number of times the congestion window has been
2201
+ increased by the Congestion Avoidance algorithm.""",
2202
+ "reference" :
2203
+ """RFC 2581, TCP Congestion Control""",
2204
+ }, # column
2205
+ "tcpEStatsStackOtherReductions" : {
2206
+ "nodetype" : "column",
2207
+ "moduleName" : "TCP-ESTATS-MIB",
2208
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.25",
2209
+ "status" : "current",
2210
+ "syntax" : {
2211
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2212
+ },
2213
+ "access" : "readonly",
2214
+ "description" :
2215
+ """The number of congestion window reductions made as a result
2216
+ of anything other than AIMD congestion control algorithms.
2217
+ Examples of non-multiplicative window reductions include
2218
+ Congestion Window Validation [RFC2861] and experimental
2219
+ algorithms such as Vegas [Bra94].
2220
+
2221
+
2222
+
2223
+
2224
+ All window reductions MUST be counted as either
2225
+ tcpEStatsPerfCongSignals or tcpEStatsStackOtherReductions.""",
2226
+ "reference" :
2227
+ """RFC 2861, TCP Congestion Window Validation""",
2228
+ }, # column
2229
+ "tcpEStatsStackCongOverCount" : {
2230
+ "nodetype" : "column",
2231
+ "moduleName" : "TCP-ESTATS-MIB",
2232
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.26",
2233
+ "status" : "current",
2234
+ "syntax" : {
2235
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2236
+ },
2237
+ "access" : "readonly",
2238
+ "description" :
2239
+ """The number of congestion events that were 'backed out' of
2240
+ the congestion control state machine such that the
2241
+ congestion window was restored to a prior value. This can
2242
+ happen due to the Eifel algorithm [RFC3522] or other
2243
+ algorithms that can be used to detect and cancel spurious
2244
+ invocations of the Fast Retransmit Algorithm.
2245
+
2246
+ Although it may be feasible to undo the effects of spurious
2247
+ invocation of the Fast Retransmit congestion events cannot
2248
+ easily be backed out of tcpEStatsPerfCongSignals and
2249
+ tcpEStatsPathPreCongSumCwnd, etc.""",
2250
+ "reference" :
2251
+ """RFC 3522, The Eifel Detection Algorithm for TCP""",
2252
+ }, # column
2253
+ "tcpEStatsStackFastRetran" : {
2254
+ "nodetype" : "column",
2255
+ "moduleName" : "TCP-ESTATS-MIB",
2256
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.27",
2257
+ "status" : "current",
2258
+ "syntax" : {
2259
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2260
+ },
2261
+ "access" : "readonly",
2262
+ "description" :
2263
+ """The number of invocations of the Fast Retransmit algorithm.""",
2264
+ "reference" :
2265
+ """RFC 2581, TCP Congestion Control""",
2266
+ }, # column
2267
+ "tcpEStatsStackSubsequentTimeouts" : {
2268
+ "nodetype" : "column",
2269
+ "moduleName" : "TCP-ESTATS-MIB",
2270
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.28",
2271
+ "status" : "current",
2272
+ "syntax" : {
2273
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2274
+ },
2275
+ "access" : "readonly",
2276
+ "description" :
2277
+ """The number of times the retransmit timeout has expired after
2278
+ the RTO has been doubled. See Section 5.5 of RFC 2988.""",
2279
+ "reference" :
2280
+ """RFC 2988, Computing TCP's Retransmission Timer""",
2281
+ }, # column
2282
+ "tcpEStatsStackCurTimeoutCount" : {
2283
+ "nodetype" : "column",
2284
+ "moduleName" : "TCP-ESTATS-MIB",
2285
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.29",
2286
+ "status" : "current",
2287
+ "syntax" : {
2288
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2289
+ },
2290
+ "access" : "readonly",
2291
+ "description" :
2292
+ """The current number of times the retransmit timeout has
2293
+ expired without receiving an acknowledgment for new data.
2294
+ tcpEStatsStackCurTimeoutCount is reset to zero when new
2295
+ data is acknowledged and incremented for each invocation of
2296
+ Section 5.5 of RFC 2988.""",
2297
+ "reference" :
2298
+ """RFC 2988, Computing TCP's Retransmission Timer""",
2299
+ }, # column
2300
+ "tcpEStatsStackAbruptTimeouts" : {
2301
+ "nodetype" : "column",
2302
+ "moduleName" : "TCP-ESTATS-MIB",
2303
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.30",
2304
+ "status" : "current",
2305
+ "syntax" : {
2306
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2307
+ },
2308
+ "access" : "readonly",
2309
+ "description" :
2310
+ """The number of timeouts that occurred without any
2311
+ immediately preceding duplicate acknowledgments or other
2312
+ indications of congestion. Abrupt Timeouts indicate that
2313
+ the path lost an entire window of data or acknowledgments.
2314
+
2315
+ Timeouts that are preceded by duplicate acknowledgments or
2316
+ other congestion signals (e.g., ECN) are not counted as
2317
+ abrupt, and might have been avoided by a more sophisticated
2318
+ Fast Retransmit algorithm.""",
2319
+ "reference" :
2320
+ """RFC 2581, TCP Congestion Control""",
2321
+ }, # column
2322
+ "tcpEStatsStackSACKsRcvd" : {
2323
+ "nodetype" : "column",
2324
+ "moduleName" : "TCP-ESTATS-MIB",
2325
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.31",
2326
+ "status" : "current",
2327
+ "syntax" : {
2328
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2329
+ },
2330
+ "access" : "readonly",
2331
+ "description" :
2332
+ """The number of SACK options received.""",
2333
+ "reference" :
2334
+ """RFC 2018, TCP Selective Acknowledgement Options""",
2335
+ }, # column
2336
+ "tcpEStatsStackSACKBlocksRcvd" : {
2337
+ "nodetype" : "column",
2338
+ "moduleName" : "TCP-ESTATS-MIB",
2339
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.32",
2340
+ "status" : "current",
2341
+ "syntax" : {
2342
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2343
+ },
2344
+ "access" : "readonly",
2345
+ "description" :
2346
+ """The number of SACK blocks received (within SACK options).""",
2347
+ "reference" :
2348
+ """RFC 2018, TCP Selective Acknowledgement Options""",
2349
+ }, # column
2350
+ "tcpEStatsStackSendStall" : {
2351
+ "nodetype" : "column",
2352
+ "moduleName" : "TCP-ESTATS-MIB",
2353
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.33",
2354
+ "status" : "current",
2355
+ "syntax" : {
2356
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2357
+ },
2358
+ "access" : "readonly",
2359
+ "description" :
2360
+ """The number of interface stalls or other sender local
2361
+ resource limitations that are treated as congestion
2362
+ signals.""",
2363
+ }, # column
2364
+ "tcpEStatsStackDSACKDups" : {
2365
+ "nodetype" : "column",
2366
+ "moduleName" : "TCP-ESTATS-MIB",
2367
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.34",
2368
+ "status" : "current",
2369
+ "syntax" : {
2370
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2371
+ },
2372
+ "access" : "readonly",
2373
+ "description" :
2374
+ """The number of duplicate segments reported to the local host
2375
+ by D-SACK blocks.""",
2376
+ "reference" :
2377
+ """RFC 2883, An Extension to the Selective Acknowledgement
2378
+ (SACK) Option for TCP""",
2379
+ }, # column
2380
+ "tcpEStatsStackMaxMSS" : {
2381
+ "nodetype" : "column",
2382
+ "moduleName" : "TCP-ESTATS-MIB",
2383
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.35",
2384
+ "status" : "current",
2385
+ "syntax" : {
2386
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2387
+ },
2388
+ "access" : "readonly",
2389
+ "units" : "octets",
2390
+ "description" :
2391
+ """The maximum MSS, in octets.""",
2392
+ "reference" :
2393
+ """RFC 1191, Path MTU discovery""",
2394
+ }, # column
2395
+ "tcpEStatsStackMinMSS" : {
2396
+ "nodetype" : "column",
2397
+ "moduleName" : "TCP-ESTATS-MIB",
2398
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.36",
2399
+ "status" : "current",
2400
+ "syntax" : {
2401
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2402
+ },
2403
+ "access" : "readonly",
2404
+ "units" : "octets",
2405
+ "description" :
2406
+ """The minimum MSS, in octets.""",
2407
+ "reference" :
2408
+ """RFC 1191, Path MTU discovery""",
2409
+ }, # column
2410
+ "tcpEStatsStackSndInitial" : {
2411
+ "nodetype" : "column",
2412
+ "moduleName" : "TCP-ESTATS-MIB",
2413
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.37",
2414
+ "status" : "current",
2415
+ "syntax" : {
2416
+ "type" : { "module" :"", "name" : "Unsigned32"},
2417
+ },
2418
+ "access" : "readonly",
2419
+ "description" :
2420
+ """Initial send sequence number. Note that by definition
2421
+ tcpEStatsStackSndInitial never changes for a given
2422
+ connection.""",
2423
+ "reference" :
2424
+ """RFC 793, Transmission Control Protocol""",
2425
+ }, # column
2426
+ "tcpEStatsStackRecInitial" : {
2427
+ "nodetype" : "column",
2428
+ "moduleName" : "TCP-ESTATS-MIB",
2429
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.38",
2430
+ "status" : "current",
2431
+ "syntax" : {
2432
+ "type" : { "module" :"", "name" : "Unsigned32"},
2433
+ },
2434
+ "access" : "readonly",
2435
+ "description" :
2436
+ """Initial receive sequence number. Note that by definition
2437
+ tcpEStatsStackRecInitial never changes for a given
2438
+ connection.""",
2439
+ "reference" :
2440
+ """RFC 793, Transmission Control Protocol""",
2441
+ }, # column
2442
+ "tcpEStatsStackCurRetxQueue" : {
2443
+ "nodetype" : "column",
2444
+ "moduleName" : "TCP-ESTATS-MIB",
2445
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.39",
2446
+ "status" : "current",
2447
+ "syntax" : {
2448
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2449
+ },
2450
+ "access" : "readonly",
2451
+ "units" : "octets",
2452
+ "description" :
2453
+ """The current number of octets of data occupying the
2454
+ retransmit queue.""",
2455
+ }, # column
2456
+ "tcpEStatsStackMaxRetxQueue" : {
2457
+ "nodetype" : "column",
2458
+ "moduleName" : "TCP-ESTATS-MIB",
2459
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.40",
2460
+ "status" : "current",
2461
+ "syntax" : {
2462
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2463
+ },
2464
+ "access" : "readonly",
2465
+ "units" : "octets",
2466
+ "description" :
2467
+ """The maximum number of octets of data occupying the
2468
+ retransmit queue.""",
2469
+ }, # column
2470
+ "tcpEStatsStackCurReasmQueue" : {
2471
+ "nodetype" : "column",
2472
+ "moduleName" : "TCP-ESTATS-MIB",
2473
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.41",
2474
+ "status" : "current",
2475
+ "syntax" : {
2476
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2477
+ },
2478
+ "access" : "readonly",
2479
+ "units" : "octets",
2480
+ "description" :
2481
+ """The current number of octets of sequence space spanned by
2482
+ the reassembly queue. This is generally the difference
2483
+ between rcv.nxt and the sequence number of the right most
2484
+ edge of the reassembly queue.""",
2485
+ }, # column
2486
+ "tcpEStatsStackMaxReasmQueue" : {
2487
+ "nodetype" : "column",
2488
+ "moduleName" : "TCP-ESTATS-MIB",
2489
+ "oid" : "1.3.6.1.2.1.156.1.1.5.1.42",
2490
+ "status" : "current",
2491
+ "syntax" : {
2492
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2493
+ },
2494
+ "access" : "readonly",
2495
+ "description" :
2496
+ """The maximum value of tcpEStatsStackCurReasmQueue""",
2497
+ }, # column
2498
+ "tcpEStatsAppTable" : {
2499
+ "nodetype" : "table",
2500
+ "moduleName" : "TCP-ESTATS-MIB",
2501
+ "oid" : "1.3.6.1.2.1.156.1.1.6",
2502
+ "status" : "current",
2503
+ "description" :
2504
+ """This table contains objects that are useful for
2505
+ determining if the application using TCP is
2506
+
2507
+
2508
+
2509
+ limiting TCP performance.
2510
+
2511
+ Entries are retained in this table for the number of
2512
+ seconds indicated by the tcpEStatsConnTableLatency
2513
+ object, after the TCP connection first enters the closed
2514
+ state.""",
2515
+ }, # table
2516
+ "tcpEStatsAppEntry" : {
2517
+ "nodetype" : "row",
2518
+ "moduleName" : "TCP-ESTATS-MIB",
2519
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1",
2520
+ "status" : "current",
2521
+ "linkage" : [
2522
+ "tcpEStatsConnectIndex",
2523
+ ],
2524
+ "description" :
2525
+ """Each entry in this table has information about the
2526
+ characteristics of each active and recently closed TCP
2527
+ connection.""",
2528
+ }, # row
2529
+ "tcpEStatsAppSndUna" : {
2530
+ "nodetype" : "column",
2531
+ "moduleName" : "TCP-ESTATS-MIB",
2532
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.1",
2533
+ "status" : "current",
2534
+ "syntax" : {
2535
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2536
+ },
2537
+ "access" : "readonly",
2538
+ "description" :
2539
+ """The value of SND.UNA, the oldest unacknowledged sequence
2540
+ number.
2541
+
2542
+ Note that SND.UNA is a TCP state variable that is congruent
2543
+ to Counter32 semantics.""",
2544
+ "reference" :
2545
+ """RFC 793, Transmission Control Protocol""",
2546
+ }, # column
2547
+ "tcpEStatsAppSndNxt" : {
2548
+ "nodetype" : "column",
2549
+ "moduleName" : "TCP-ESTATS-MIB",
2550
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.2",
2551
+ "status" : "current",
2552
+ "syntax" : {
2553
+ "type" : { "module" :"", "name" : "Unsigned32"},
2554
+ },
2555
+ "access" : "readonly",
2556
+ "description" :
2557
+ """The value of SND.NXT, the next sequence number to be sent.
2558
+ Note that tcpEStatsAppSndNxt is not monotonic (and thus not
2559
+ a counter) because TCP sometimes retransmits lost data by
2560
+ pulling tcpEStatsAppSndNxt back to the missing data.""",
2561
+ "reference" :
2562
+ """RFC 793, Transmission Control Protocol""",
2563
+ }, # column
2564
+ "tcpEStatsAppSndMax" : {
2565
+ "nodetype" : "column",
2566
+ "moduleName" : "TCP-ESTATS-MIB",
2567
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.3",
2568
+ "status" : "current",
2569
+ "syntax" : {
2570
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2571
+ },
2572
+ "access" : "readonly",
2573
+ "description" :
2574
+ """The farthest forward (right most or largest) SND.NXT value.
2575
+ Note that this will be equal to tcpEStatsAppSndNxt except
2576
+ when tcpEStatsAppSndNxt is pulled back during recovery.""",
2577
+ "reference" :
2578
+ """RFC 793, Transmission Control Protocol""",
2579
+ }, # column
2580
+ "tcpEStatsAppThruOctetsAcked" : {
2581
+ "nodetype" : "column",
2582
+ "moduleName" : "TCP-ESTATS-MIB",
2583
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.4",
2584
+ "status" : "current",
2585
+ "syntax" : {
2586
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2587
+ },
2588
+ "access" : "readonly",
2589
+ "units" : "octets",
2590
+ "description" :
2591
+ """The number of octets for which cumulative acknowledgments
2592
+ have been received. Note that this will be the sum of
2593
+ changes to tcpEStatsAppSndUna.""",
2594
+ }, # column
2595
+ "tcpEStatsAppHCThruOctetsAcked" : {
2596
+ "nodetype" : "column",
2597
+ "moduleName" : "TCP-ESTATS-MIB",
2598
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.5",
2599
+ "status" : "current",
2600
+ "syntax" : {
2601
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2602
+ },
2603
+ "access" : "readonly",
2604
+ "units" : "octets",
2605
+ "description" :
2606
+ """The number of octets for which cumulative acknowledgments
2607
+ have been received, on systems that can receive more than
2608
+ 10 million bits per second. Note that this will be the sum
2609
+ of changes in tcpEStatsAppSndUna.""",
2610
+ }, # column
2611
+ "tcpEStatsAppRcvNxt" : {
2612
+ "nodetype" : "column",
2613
+ "moduleName" : "TCP-ESTATS-MIB",
2614
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.6",
2615
+ "status" : "current",
2616
+ "syntax" : {
2617
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2618
+ },
2619
+ "access" : "readonly",
2620
+ "description" :
2621
+ """The value of RCV.NXT. The next sequence number expected on
2622
+ an incoming segment, and the left or lower edge of the
2623
+ receive window.
2624
+
2625
+ Note that RCV.NXT is a TCP state variable that is congruent
2626
+ to Counter32 semantics.""",
2627
+ "reference" :
2628
+ """RFC 793, Transmission Control Protocol""",
2629
+ }, # column
2630
+ "tcpEStatsAppThruOctetsReceived" : {
2631
+ "nodetype" : "column",
2632
+ "moduleName" : "TCP-ESTATS-MIB",
2633
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.7",
2634
+ "status" : "current",
2635
+ "syntax" : {
2636
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2637
+ },
2638
+ "access" : "readonly",
2639
+ "units" : "octets",
2640
+ "description" :
2641
+ """The number of octets for which cumulative acknowledgments
2642
+ have been sent. Note that this will be the sum of changes
2643
+ to tcpEStatsAppRcvNxt.""",
2644
+ }, # column
2645
+ "tcpEStatsAppHCThruOctetsReceived" : {
2646
+ "nodetype" : "column",
2647
+ "moduleName" : "TCP-ESTATS-MIB",
2648
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.8",
2649
+ "status" : "current",
2650
+ "syntax" : {
2651
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2652
+ },
2653
+ "access" : "readonly",
2654
+ "units" : "octets",
2655
+ "description" :
2656
+ """The number of octets for which cumulative acknowledgments
2657
+ have been sent, on systems that can transmit more than 10
2658
+ million bits per second. Note that this will be the sum of
2659
+ changes in tcpEStatsAppRcvNxt.""",
2660
+ }, # column
2661
+ "tcpEStatsAppCurAppWQueue" : {
2662
+ "nodetype" : "column",
2663
+ "moduleName" : "TCP-ESTATS-MIB",
2664
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.11",
2665
+ "status" : "current",
2666
+ "syntax" : {
2667
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2668
+ },
2669
+ "access" : "readonly",
2670
+ "units" : "octets",
2671
+ "description" :
2672
+ """The current number of octets of application data buffered
2673
+ by TCP, pending first transmission, i.e., to the left of
2674
+ SND.NXT or SndMax. This data will generally be transmitted
2675
+ (and SND.NXT advanced to the left) as soon as there is an
2676
+ available congestion window (cwnd) or receiver window
2677
+ (rwin). This is the amount of data readily available for
2678
+ transmission, without scheduling the application. TCP
2679
+ performance may suffer if there is insufficient queued
2680
+ write data.""",
2681
+ }, # column
2682
+ "tcpEStatsAppMaxAppWQueue" : {
2683
+ "nodetype" : "column",
2684
+ "moduleName" : "TCP-ESTATS-MIB",
2685
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.12",
2686
+ "status" : "current",
2687
+ "syntax" : {
2688
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2689
+ },
2690
+ "access" : "readonly",
2691
+ "units" : "octets",
2692
+ "description" :
2693
+ """The maximum number of octets of application data buffered
2694
+ by TCP, pending first transmission. This is the maximum
2695
+ value of tcpEStatsAppCurAppWQueue. This pair of objects can
2696
+ be used to determine if insufficient queued data is steady
2697
+ state (suggesting insufficient queue space) or transient
2698
+ (suggesting insufficient application performance or
2699
+ excessive CPU load or scheduler latency).""",
2700
+ }, # column
2701
+ "tcpEStatsAppCurAppRQueue" : {
2702
+ "nodetype" : "column",
2703
+ "moduleName" : "TCP-ESTATS-MIB",
2704
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.13",
2705
+ "status" : "current",
2706
+ "syntax" : {
2707
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2708
+ },
2709
+ "access" : "readonly",
2710
+ "units" : "octets",
2711
+ "description" :
2712
+ """The current number of octets of application data that has
2713
+ been acknowledged by TCP but not yet delivered to the
2714
+ application.""",
2715
+ }, # column
2716
+ "tcpEStatsAppMaxAppRQueue" : {
2717
+ "nodetype" : "column",
2718
+ "moduleName" : "TCP-ESTATS-MIB",
2719
+ "oid" : "1.3.6.1.2.1.156.1.1.6.1.14",
2720
+ "status" : "current",
2721
+ "syntax" : {
2722
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2723
+ },
2724
+ "access" : "readonly",
2725
+ "units" : "octets",
2726
+ "description" :
2727
+ """The maximum number of octets of application data that has
2728
+ been acknowledged by TCP but not yet delivered to the
2729
+ application.""",
2730
+ }, # column
2731
+ "tcpEStatsTuneTable" : {
2732
+ "nodetype" : "table",
2733
+ "moduleName" : "TCP-ESTATS-MIB",
2734
+ "oid" : "1.3.6.1.2.1.156.1.1.7",
2735
+ "status" : "current",
2736
+ "description" :
2737
+ """This table contains per-connection controls that can
2738
+ be used to work around a number of common problems that
2739
+ plague TCP over some paths. All can be characterized as
2740
+ limiting the growth of the congestion window so as to
2741
+ prevent TCP from overwhelming some component in the
2742
+ path.
2743
+
2744
+ Entries are retained in this table for the number of
2745
+ seconds indicated by the tcpEStatsConnTableLatency
2746
+ object, after the TCP connection first enters the closed
2747
+ state.""",
2748
+ }, # table
2749
+ "tcpEStatsTuneEntry" : {
2750
+ "nodetype" : "row",
2751
+ "moduleName" : "TCP-ESTATS-MIB",
2752
+ "oid" : "1.3.6.1.2.1.156.1.1.7.1",
2753
+ "status" : "current",
2754
+ "linkage" : [
2755
+ "tcpEStatsConnectIndex",
2756
+ ],
2757
+ "description" :
2758
+ """Each entry in this table is a control that can be used to
2759
+ place limits on each active TCP connection.""",
2760
+ }, # row
2761
+ "tcpEStatsTuneLimCwnd" : {
2762
+ "nodetype" : "column",
2763
+ "moduleName" : "TCP-ESTATS-MIB",
2764
+ "oid" : "1.3.6.1.2.1.156.1.1.7.1.1",
2765
+ "status" : "current",
2766
+ "syntax" : {
2767
+ "type" : { "module" :"", "name" : "Unsigned32"},
2768
+ },
2769
+ "access" : "readwrite",
2770
+ "units" : "octets",
2771
+ "description" :
2772
+ """A control to set the maximum congestion window that may be
2773
+ used, in octets.""",
2774
+ "reference" :
2775
+ """RFC 2581, TCP Congestion Control""",
2776
+ }, # column
2777
+ "tcpEStatsTuneLimSsthresh" : {
2778
+ "nodetype" : "column",
2779
+ "moduleName" : "TCP-ESTATS-MIB",
2780
+ "oid" : "1.3.6.1.2.1.156.1.1.7.1.2",
2781
+ "status" : "current",
2782
+ "syntax" : {
2783
+ "type" : { "module" :"", "name" : "Unsigned32"},
2784
+ },
2785
+ "access" : "readwrite",
2786
+ "units" : "octets",
2787
+ "description" :
2788
+ """A control to limit the maximum queue space (in octets) that
2789
+ this TCP connection is likely to occupy during slowstart.
2790
+
2791
+ It can be implemented with the algorithm described in
2792
+ RFC 3742 by setting the max_ssthresh parameter to twice
2793
+ tcpEStatsTuneLimSsthresh.
2794
+
2795
+ This algorithm can be used to overcome some TCP performance
2796
+ problems over network paths that do not have sufficient
2797
+ buffering to withstand the bursts normally present during
2798
+ slowstart.""",
2799
+ "reference" :
2800
+ """RFC 3742, Limited Slow-Start for TCP with Large Congestion
2801
+ Windows""",
2802
+ }, # column
2803
+ "tcpEStatsTuneLimRwin" : {
2804
+ "nodetype" : "column",
2805
+ "moduleName" : "TCP-ESTATS-MIB",
2806
+ "oid" : "1.3.6.1.2.1.156.1.1.7.1.3",
2807
+ "status" : "current",
2808
+ "syntax" : {
2809
+ "type" : { "module" :"", "name" : "Unsigned32"},
2810
+ },
2811
+ "access" : "readwrite",
2812
+ "units" : "octets",
2813
+ "description" :
2814
+ """A control to set the maximum window advertisement that may
2815
+ be sent, in octets.""",
2816
+ "reference" :
2817
+ """RFC 793, Transmission Control Protocol""",
2818
+ }, # column
2819
+ "tcpEStatsTuneLimMSS" : {
2820
+ "nodetype" : "column",
2821
+ "moduleName" : "TCP-ESTATS-MIB",
2822
+ "oid" : "1.3.6.1.2.1.156.1.1.7.1.4",
2823
+ "status" : "current",
2824
+ "syntax" : {
2825
+ "type" : { "module" :"", "name" : "Unsigned32"},
2826
+ },
2827
+ "access" : "readwrite",
2828
+ "units" : "octets",
2829
+ "description" :
2830
+ """A control to limit the maximum segment size in octets, that
2831
+ this TCP connection can use.""",
2832
+ "reference" :
2833
+ """RFC 1191, Path MTU discovery""",
2834
+ }, # column
2835
+ "tcpEStatsControl" : {
2836
+ "nodetype" : "node",
2837
+ "moduleName" : "TCP-ESTATS-MIB",
2838
+ "oid" : "1.3.6.1.2.1.156.1.2",
2839
+ }, # node
2840
+ "tcpEStatsControlPath" : {
2841
+ "nodetype" : "scalar",
2842
+ "moduleName" : "TCP-ESTATS-MIB",
2843
+ "oid" : "1.3.6.1.2.1.156.1.2.1",
2844
+ "status" : "current",
2845
+ "syntax" : {
2846
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2847
+ },
2848
+ "access" : "readwrite",
2849
+ "default" : "false",
2850
+ "description" :
2851
+ """Controls the activation of the TCP Path Statistics
2852
+ table.
2853
+
2854
+ A value 'true' indicates that the TCP Path Statistics
2855
+ table is active, while 'false' indicates that the
2856
+ table is inactive.""",
2857
+ }, # scalar
2858
+ "tcpEStatsControlStack" : {
2859
+ "nodetype" : "scalar",
2860
+ "moduleName" : "TCP-ESTATS-MIB",
2861
+ "oid" : "1.3.6.1.2.1.156.1.2.2",
2862
+ "status" : "current",
2863
+ "syntax" : {
2864
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2865
+ },
2866
+ "access" : "readwrite",
2867
+ "default" : "false",
2868
+ "description" :
2869
+ """Controls the activation of the TCP Stack Statistics
2870
+ table.
2871
+
2872
+ A value 'true' indicates that the TCP Stack Statistics
2873
+ table is active, while 'false' indicates that the
2874
+ table is inactive.""",
2875
+ }, # scalar
2876
+ "tcpEStatsControlApp" : {
2877
+ "nodetype" : "scalar",
2878
+ "moduleName" : "TCP-ESTATS-MIB",
2879
+ "oid" : "1.3.6.1.2.1.156.1.2.3",
2880
+ "status" : "current",
2881
+ "syntax" : {
2882
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2883
+ },
2884
+ "access" : "readwrite",
2885
+ "default" : "false",
2886
+ "description" :
2887
+ """Controls the activation of the TCP Application
2888
+ Statistics table.
2889
+
2890
+ A value 'true' indicates that the TCP Application
2891
+ Statistics table is active, while 'false' indicates
2892
+ that the table is inactive.""",
2893
+ }, # scalar
2894
+ "tcpEStatsControlTune" : {
2895
+ "nodetype" : "scalar",
2896
+ "moduleName" : "TCP-ESTATS-MIB",
2897
+ "oid" : "1.3.6.1.2.1.156.1.2.4",
2898
+ "status" : "current",
2899
+ "syntax" : {
2900
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2901
+ },
2902
+ "access" : "readwrite",
2903
+ "default" : "false",
2904
+ "description" :
2905
+ """Controls the activation of the TCP Tuning table.
2906
+
2907
+ A value 'true' indicates that the TCP Tuning
2908
+ table is active, while 'false' indicates that the
2909
+ table is inactive.""",
2910
+ }, # scalar
2911
+ "tcpEStatsControlNotify" : {
2912
+ "nodetype" : "scalar",
2913
+ "moduleName" : "TCP-ESTATS-MIB",
2914
+ "oid" : "1.3.6.1.2.1.156.1.2.5",
2915
+ "status" : "current",
2916
+ "syntax" : {
2917
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2918
+ },
2919
+ "access" : "readwrite",
2920
+ "default" : "false",
2921
+ "description" :
2922
+ """Controls the generation of all notifications defined in
2923
+ this MIB.
2924
+
2925
+ A value 'true' indicates that the notifications
2926
+ are active, while 'false' indicates that the
2927
+ notifications are inactive.""",
2928
+ }, # scalar
2929
+ "tcpEStatsConnTableLatency" : {
2930
+ "nodetype" : "scalar",
2931
+ "moduleName" : "TCP-ESTATS-MIB",
2932
+ "oid" : "1.3.6.1.2.1.156.1.2.6",
2933
+ "status" : "current",
2934
+ "syntax" : {
2935
+ "type" : { "module" :"", "name" : "Unsigned32"},
2936
+ },
2937
+ "access" : "readwrite",
2938
+ "default" : "0",
2939
+ "units" : "seconds",
2940
+ "description" :
2941
+ """Specifies the number of seconds that the entity will
2942
+ retain entries in the TCP connection tables, after the
2943
+ connection first enters the closed state. The entity
2944
+ SHOULD provide a configuration option to enable
2945
+
2946
+
2947
+
2948
+ customization of this value. A value of 0
2949
+ results in entries being removed from the tables as soon as
2950
+ the connection enters the closed state. The value of
2951
+ this object pertains to the following tables:
2952
+ tcpEStatsConnectIdTable
2953
+ tcpEStatsPerfTable
2954
+ tcpEStatsPathTable
2955
+ tcpEStatsStackTable
2956
+ tcpEStatsAppTable
2957
+ tcpEStatsTuneTable""",
2958
+ }, # scalar
2959
+ "tcpEStatsScalar" : {
2960
+ "nodetype" : "node",
2961
+ "moduleName" : "TCP-ESTATS-MIB",
2962
+ "oid" : "1.3.6.1.2.1.156.1.3",
2963
+ }, # node
2964
+ "tcpEStatsListenerTableLastChange" : {
2965
+ "nodetype" : "scalar",
2966
+ "moduleName" : "TCP-ESTATS-MIB",
2967
+ "oid" : "1.3.6.1.2.1.156.1.3.3",
2968
+ "status" : "current",
2969
+ "syntax" : {
2970
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2971
+ },
2972
+ "access" : "readonly",
2973
+ "description" :
2974
+ """The value of sysUpTime at the time of the last
2975
+ creation or deletion of an entry in the tcpListenerTable.
2976
+ If the number of entries has been unchanged since the
2977
+ last re-initialization of the local network management
2978
+ subsystem, then this object contains a zero value.""",
2979
+ }, # scalar
2980
+ "tcpEStatsConformance" : {
2981
+ "nodetype" : "node",
2982
+ "moduleName" : "TCP-ESTATS-MIB",
2983
+ "oid" : "1.3.6.1.2.1.156.2",
2984
+ }, # node
2985
+ "tcpEStatsCompliances" : {
2986
+ "nodetype" : "node",
2987
+ "moduleName" : "TCP-ESTATS-MIB",
2988
+ "oid" : "1.3.6.1.2.1.156.2.1",
2989
+ }, # node
2990
+ "tcpEStatsGroups" : {
2991
+ "nodetype" : "node",
2992
+ "moduleName" : "TCP-ESTATS-MIB",
2993
+ "oid" : "1.3.6.1.2.1.156.2.2",
2994
+ }, # node
2995
+ }, # nodes
2996
+
2997
+ "notifications" : {
2998
+ "tcpEStatsEstablishNotification" : {
2999
+ "nodetype" : "notification",
3000
+ "moduleName" : "TCP-ESTATS-MIB",
3001
+ "oid" : "1.3.6.1.2.1.156.0.1",
3002
+ "status" : "current",
3003
+ "objects" : {
3004
+ "tcpEStatsConnectIndex" : {
3005
+ "nodetype" : "object",
3006
+ "module" : "TCP-ESTATS-MIB"
3007
+ },
3008
+ },
3009
+ "description" :
3010
+ """The indicated connection has been accepted
3011
+ (or alternatively entered the established state).""",
3012
+ }, # notification
3013
+ "tcpEStatsCloseNotification" : {
3014
+ "nodetype" : "notification",
3015
+ "moduleName" : "TCP-ESTATS-MIB",
3016
+ "oid" : "1.3.6.1.2.1.156.0.2",
3017
+ "status" : "current",
3018
+ "objects" : {
3019
+ "tcpEStatsConnectIndex" : {
3020
+ "nodetype" : "object",
3021
+ "module" : "TCP-ESTATS-MIB"
3022
+ },
3023
+ },
3024
+ "description" :
3025
+ """The indicated connection has left the
3026
+ established state""",
3027
+ }, # notification
3028
+ }, # notifications
3029
+
3030
+ "groups" : {
3031
+ "tcpEStatsListenerGroup" : {
3032
+ "nodetype" : "group",
3033
+ "moduleName" : "TCP-ESTATS-MIB",
3034
+ "oid" : "1.3.6.1.2.1.156.2.2.1",
3035
+ "status" : "current",
3036
+ "members" : {
3037
+ "tcpEStatsListenerTableLastChange" : {
3038
+ "nodetype" : "member",
3039
+ "module" : "TCP-ESTATS-MIB"
3040
+ },
3041
+ "tcpEStatsListenerStartTime" : {
3042
+ "nodetype" : "member",
3043
+ "module" : "TCP-ESTATS-MIB"
3044
+ },
3045
+ "tcpEStatsListenerSynRcvd" : {
3046
+ "nodetype" : "member",
3047
+ "module" : "TCP-ESTATS-MIB"
3048
+ },
3049
+ "tcpEStatsListenerInitial" : {
3050
+ "nodetype" : "member",
3051
+ "module" : "TCP-ESTATS-MIB"
3052
+ },
3053
+ "tcpEStatsListenerEstablished" : {
3054
+ "nodetype" : "member",
3055
+ "module" : "TCP-ESTATS-MIB"
3056
+ },
3057
+ "tcpEStatsListenerAccepted" : {
3058
+ "nodetype" : "member",
3059
+ "module" : "TCP-ESTATS-MIB"
3060
+ },
3061
+ "tcpEStatsListenerExceedBacklog" : {
3062
+ "nodetype" : "member",
3063
+ "module" : "TCP-ESTATS-MIB"
3064
+ },
3065
+ "tcpEStatsListenerCurConns" : {
3066
+ "nodetype" : "member",
3067
+ "module" : "TCP-ESTATS-MIB"
3068
+ },
3069
+ "tcpEStatsListenerMaxBacklog" : {
3070
+ "nodetype" : "member",
3071
+ "module" : "TCP-ESTATS-MIB"
3072
+ },
3073
+ "tcpEStatsListenerCurBacklog" : {
3074
+ "nodetype" : "member",
3075
+ "module" : "TCP-ESTATS-MIB"
3076
+ },
3077
+ "tcpEStatsListenerCurEstabBacklog" : {
3078
+ "nodetype" : "member",
3079
+ "module" : "TCP-ESTATS-MIB"
3080
+ },
3081
+ }, # members
3082
+ "description" :
3083
+ """The tcpEStatsListener group includes objects that
3084
+ provide valuable statistics and debugging
3085
+ information for TCP Listeners.""",
3086
+ }, # group
3087
+ "tcpEStatsListenerHCGroup" : {
3088
+ "nodetype" : "group",
3089
+ "moduleName" : "TCP-ESTATS-MIB",
3090
+ "oid" : "1.3.6.1.2.1.156.2.2.2",
3091
+ "status" : "current",
3092
+ "members" : {
3093
+ "tcpEStatsListenerHCSynRcvd" : {
3094
+ "nodetype" : "member",
3095
+ "module" : "TCP-ESTATS-MIB"
3096
+ },
3097
+ "tcpEStatsListenerHCInitial" : {
3098
+ "nodetype" : "member",
3099
+ "module" : "TCP-ESTATS-MIB"
3100
+ },
3101
+ "tcpEStatsListenerHCEstablished" : {
3102
+ "nodetype" : "member",
3103
+ "module" : "TCP-ESTATS-MIB"
3104
+ },
3105
+ "tcpEStatsListenerHCAccepted" : {
3106
+ "nodetype" : "member",
3107
+ "module" : "TCP-ESTATS-MIB"
3108
+ },
3109
+ "tcpEStatsListenerHCExceedBacklog" : {
3110
+ "nodetype" : "member",
3111
+ "module" : "TCP-ESTATS-MIB"
3112
+ },
3113
+ }, # members
3114
+ "description" :
3115
+ """The tcpEStatsListenerHC group includes 64-bit
3116
+ counters in tcpEStatsListenerTable.""",
3117
+ }, # group
3118
+ "tcpEStatsConnectIdGroup" : {
3119
+ "nodetype" : "group",
3120
+ "moduleName" : "TCP-ESTATS-MIB",
3121
+ "oid" : "1.3.6.1.2.1.156.2.2.3",
3122
+ "status" : "current",
3123
+ "members" : {
3124
+ "tcpEStatsConnTableLatency" : {
3125
+ "nodetype" : "member",
3126
+ "module" : "TCP-ESTATS-MIB"
3127
+ },
3128
+ "tcpEStatsConnectIndex" : {
3129
+ "nodetype" : "member",
3130
+ "module" : "TCP-ESTATS-MIB"
3131
+ },
3132
+ }, # members
3133
+ "description" :
3134
+ """The tcpEStatsConnectId group includes objects that
3135
+ identify TCP connections and control how long TCP
3136
+ connection entries are retained in the tables.""",
3137
+ }, # group
3138
+ "tcpEStatsPerfGroup" : {
3139
+ "nodetype" : "group",
3140
+ "moduleName" : "TCP-ESTATS-MIB",
3141
+ "oid" : "1.3.6.1.2.1.156.2.2.4",
3142
+ "status" : "current",
3143
+ "members" : {
3144
+ "tcpEStatsPerfSegsOut" : {
3145
+ "nodetype" : "member",
3146
+ "module" : "TCP-ESTATS-MIB"
3147
+ },
3148
+ "tcpEStatsPerfDataSegsOut" : {
3149
+ "nodetype" : "member",
3150
+ "module" : "TCP-ESTATS-MIB"
3151
+ },
3152
+ "tcpEStatsPerfDataOctetsOut" : {
3153
+ "nodetype" : "member",
3154
+ "module" : "TCP-ESTATS-MIB"
3155
+ },
3156
+ "tcpEStatsPerfSegsRetrans" : {
3157
+ "nodetype" : "member",
3158
+ "module" : "TCP-ESTATS-MIB"
3159
+ },
3160
+ "tcpEStatsPerfOctetsRetrans" : {
3161
+ "nodetype" : "member",
3162
+ "module" : "TCP-ESTATS-MIB"
3163
+ },
3164
+ "tcpEStatsPerfSegsIn" : {
3165
+ "nodetype" : "member",
3166
+ "module" : "TCP-ESTATS-MIB"
3167
+ },
3168
+ "tcpEStatsPerfDataSegsIn" : {
3169
+ "nodetype" : "member",
3170
+ "module" : "TCP-ESTATS-MIB"
3171
+ },
3172
+ "tcpEStatsPerfDataOctetsIn" : {
3173
+ "nodetype" : "member",
3174
+ "module" : "TCP-ESTATS-MIB"
3175
+ },
3176
+ "tcpEStatsPerfElapsedSecs" : {
3177
+ "nodetype" : "member",
3178
+ "module" : "TCP-ESTATS-MIB"
3179
+ },
3180
+ "tcpEStatsPerfElapsedMicroSecs" : {
3181
+ "nodetype" : "member",
3182
+ "module" : "TCP-ESTATS-MIB"
3183
+ },
3184
+ "tcpEStatsPerfStartTimeStamp" : {
3185
+ "nodetype" : "member",
3186
+ "module" : "TCP-ESTATS-MIB"
3187
+ },
3188
+ "tcpEStatsPerfCurMSS" : {
3189
+ "nodetype" : "member",
3190
+ "module" : "TCP-ESTATS-MIB"
3191
+ },
3192
+ "tcpEStatsPerfPipeSize" : {
3193
+ "nodetype" : "member",
3194
+ "module" : "TCP-ESTATS-MIB"
3195
+ },
3196
+ "tcpEStatsPerfMaxPipeSize" : {
3197
+ "nodetype" : "member",
3198
+ "module" : "TCP-ESTATS-MIB"
3199
+ },
3200
+ "tcpEStatsPerfSmoothedRTT" : {
3201
+ "nodetype" : "member",
3202
+ "module" : "TCP-ESTATS-MIB"
3203
+ },
3204
+ "tcpEStatsPerfCurRTO" : {
3205
+ "nodetype" : "member",
3206
+ "module" : "TCP-ESTATS-MIB"
3207
+ },
3208
+ "tcpEStatsPerfCongSignals" : {
3209
+ "nodetype" : "member",
3210
+ "module" : "TCP-ESTATS-MIB"
3211
+ },
3212
+ "tcpEStatsPerfCurCwnd" : {
3213
+ "nodetype" : "member",
3214
+ "module" : "TCP-ESTATS-MIB"
3215
+ },
3216
+ "tcpEStatsPerfCurSsthresh" : {
3217
+ "nodetype" : "member",
3218
+ "module" : "TCP-ESTATS-MIB"
3219
+ },
3220
+ "tcpEStatsPerfTimeouts" : {
3221
+ "nodetype" : "member",
3222
+ "module" : "TCP-ESTATS-MIB"
3223
+ },
3224
+ "tcpEStatsPerfCurRwinSent" : {
3225
+ "nodetype" : "member",
3226
+ "module" : "TCP-ESTATS-MIB"
3227
+ },
3228
+ "tcpEStatsPerfMaxRwinSent" : {
3229
+ "nodetype" : "member",
3230
+ "module" : "TCP-ESTATS-MIB"
3231
+ },
3232
+ "tcpEStatsPerfZeroRwinSent" : {
3233
+ "nodetype" : "member",
3234
+ "module" : "TCP-ESTATS-MIB"
3235
+ },
3236
+ "tcpEStatsPerfCurRwinRcvd" : {
3237
+ "nodetype" : "member",
3238
+ "module" : "TCP-ESTATS-MIB"
3239
+ },
3240
+ "tcpEStatsPerfMaxRwinRcvd" : {
3241
+ "nodetype" : "member",
3242
+ "module" : "TCP-ESTATS-MIB"
3243
+ },
3244
+ "tcpEStatsPerfZeroRwinRcvd" : {
3245
+ "nodetype" : "member",
3246
+ "module" : "TCP-ESTATS-MIB"
3247
+ },
3248
+ }, # members
3249
+ "description" :
3250
+ """The tcpEStatsPerf group includes those objects that
3251
+ provide basic performance data for a TCP connection.""",
3252
+ }, # group
3253
+ "tcpEStatsPerfOptionalGroup" : {
3254
+ "nodetype" : "group",
3255
+ "moduleName" : "TCP-ESTATS-MIB",
3256
+ "oid" : "1.3.6.1.2.1.156.2.2.5",
3257
+ "status" : "current",
3258
+ "members" : {
3259
+ "tcpEStatsPerfSndLimTransRwin" : {
3260
+ "nodetype" : "member",
3261
+ "module" : "TCP-ESTATS-MIB"
3262
+ },
3263
+ "tcpEStatsPerfSndLimTransCwnd" : {
3264
+ "nodetype" : "member",
3265
+ "module" : "TCP-ESTATS-MIB"
3266
+ },
3267
+ "tcpEStatsPerfSndLimTransSnd" : {
3268
+ "nodetype" : "member",
3269
+ "module" : "TCP-ESTATS-MIB"
3270
+ },
3271
+ "tcpEStatsPerfSndLimTimeRwin" : {
3272
+ "nodetype" : "member",
3273
+ "module" : "TCP-ESTATS-MIB"
3274
+ },
3275
+ "tcpEStatsPerfSndLimTimeCwnd" : {
3276
+ "nodetype" : "member",
3277
+ "module" : "TCP-ESTATS-MIB"
3278
+ },
3279
+ "tcpEStatsPerfSndLimTimeSnd" : {
3280
+ "nodetype" : "member",
3281
+ "module" : "TCP-ESTATS-MIB"
3282
+ },
3283
+ }, # members
3284
+ "description" :
3285
+ """The tcpEStatsPerf group includes those objects that
3286
+ provide basic performance data for a TCP connection.""",
3287
+ }, # group
3288
+ "tcpEStatsPerfHCGroup" : {
3289
+ "nodetype" : "group",
3290
+ "moduleName" : "TCP-ESTATS-MIB",
3291
+ "oid" : "1.3.6.1.2.1.156.2.2.6",
3292
+ "status" : "current",
3293
+ "members" : {
3294
+ "tcpEStatsPerfHCDataOctetsOut" : {
3295
+ "nodetype" : "member",
3296
+ "module" : "TCP-ESTATS-MIB"
3297
+ },
3298
+ "tcpEStatsPerfHCDataOctetsIn" : {
3299
+ "nodetype" : "member",
3300
+ "module" : "TCP-ESTATS-MIB"
3301
+ },
3302
+ }, # members
3303
+ "description" :
3304
+ """The tcpEStatsPerfHC group includes 64-bit
3305
+ counters in the tcpEStatsPerfTable.""",
3306
+ }, # group
3307
+ "tcpEStatsPathGroup" : {
3308
+ "nodetype" : "group",
3309
+ "moduleName" : "TCP-ESTATS-MIB",
3310
+ "oid" : "1.3.6.1.2.1.156.2.2.7",
3311
+ "status" : "current",
3312
+ "members" : {
3313
+ "tcpEStatsControlPath" : {
3314
+ "nodetype" : "member",
3315
+ "module" : "TCP-ESTATS-MIB"
3316
+ },
3317
+ "tcpEStatsPathRetranThresh" : {
3318
+ "nodetype" : "member",
3319
+ "module" : "TCP-ESTATS-MIB"
3320
+ },
3321
+ "tcpEStatsPathNonRecovDAEpisodes" : {
3322
+ "nodetype" : "member",
3323
+ "module" : "TCP-ESTATS-MIB"
3324
+ },
3325
+ "tcpEStatsPathSumOctetsReordered" : {
3326
+ "nodetype" : "member",
3327
+ "module" : "TCP-ESTATS-MIB"
3328
+ },
3329
+ "tcpEStatsPathNonRecovDA" : {
3330
+ "nodetype" : "member",
3331
+ "module" : "TCP-ESTATS-MIB"
3332
+ },
3333
+ }, # members
3334
+ "description" :
3335
+ """The tcpEStatsPath group includes objects that
3336
+ control the creation of the tcpEStatsPathTable,
3337
+ and provide information about the path
3338
+ for each TCP connection.""",
3339
+ }, # group
3340
+ "tcpEStatsPathOptionalGroup" : {
3341
+ "nodetype" : "group",
3342
+ "moduleName" : "TCP-ESTATS-MIB",
3343
+ "oid" : "1.3.6.1.2.1.156.2.2.8",
3344
+ "status" : "current",
3345
+ "members" : {
3346
+ "tcpEStatsPathSampleRTT" : {
3347
+ "nodetype" : "member",
3348
+ "module" : "TCP-ESTATS-MIB"
3349
+ },
3350
+ "tcpEStatsPathRTTVar" : {
3351
+ "nodetype" : "member",
3352
+ "module" : "TCP-ESTATS-MIB"
3353
+ },
3354
+ "tcpEStatsPathMaxRTT" : {
3355
+ "nodetype" : "member",
3356
+ "module" : "TCP-ESTATS-MIB"
3357
+ },
3358
+ "tcpEStatsPathMinRTT" : {
3359
+ "nodetype" : "member",
3360
+ "module" : "TCP-ESTATS-MIB"
3361
+ },
3362
+ "tcpEStatsPathSumRTT" : {
3363
+ "nodetype" : "member",
3364
+ "module" : "TCP-ESTATS-MIB"
3365
+ },
3366
+ "tcpEStatsPathCountRTT" : {
3367
+ "nodetype" : "member",
3368
+ "module" : "TCP-ESTATS-MIB"
3369
+ },
3370
+ "tcpEStatsPathMaxRTO" : {
3371
+ "nodetype" : "member",
3372
+ "module" : "TCP-ESTATS-MIB"
3373
+ },
3374
+ "tcpEStatsPathMinRTO" : {
3375
+ "nodetype" : "member",
3376
+ "module" : "TCP-ESTATS-MIB"
3377
+ },
3378
+ "tcpEStatsPathIpTtl" : {
3379
+ "nodetype" : "member",
3380
+ "module" : "TCP-ESTATS-MIB"
3381
+ },
3382
+ "tcpEStatsPathIpTosIn" : {
3383
+ "nodetype" : "member",
3384
+ "module" : "TCP-ESTATS-MIB"
3385
+ },
3386
+ "tcpEStatsPathIpTosOut" : {
3387
+ "nodetype" : "member",
3388
+ "module" : "TCP-ESTATS-MIB"
3389
+ },
3390
+ "tcpEStatsPathPreCongSumCwnd" : {
3391
+ "nodetype" : "member",
3392
+ "module" : "TCP-ESTATS-MIB"
3393
+ },
3394
+ "tcpEStatsPathPreCongSumRTT" : {
3395
+ "nodetype" : "member",
3396
+ "module" : "TCP-ESTATS-MIB"
3397
+ },
3398
+ "tcpEStatsPathPostCongSumRTT" : {
3399
+ "nodetype" : "member",
3400
+ "module" : "TCP-ESTATS-MIB"
3401
+ },
3402
+ "tcpEStatsPathPostCongCountRTT" : {
3403
+ "nodetype" : "member",
3404
+ "module" : "TCP-ESTATS-MIB"
3405
+ },
3406
+ "tcpEStatsPathECNsignals" : {
3407
+ "nodetype" : "member",
3408
+ "module" : "TCP-ESTATS-MIB"
3409
+ },
3410
+ "tcpEStatsPathDupAckEpisodes" : {
3411
+ "nodetype" : "member",
3412
+ "module" : "TCP-ESTATS-MIB"
3413
+ },
3414
+ "tcpEStatsPathRcvRTT" : {
3415
+ "nodetype" : "member",
3416
+ "module" : "TCP-ESTATS-MIB"
3417
+ },
3418
+ "tcpEStatsPathDupAcksOut" : {
3419
+ "nodetype" : "member",
3420
+ "module" : "TCP-ESTATS-MIB"
3421
+ },
3422
+ "tcpEStatsPathCERcvd" : {
3423
+ "nodetype" : "member",
3424
+ "module" : "TCP-ESTATS-MIB"
3425
+ },
3426
+ "tcpEStatsPathECESent" : {
3427
+ "nodetype" : "member",
3428
+ "module" : "TCP-ESTATS-MIB"
3429
+ },
3430
+ }, # members
3431
+ "description" :
3432
+ """The tcpEStatsPath group includes objects that
3433
+ provide additional information about the path
3434
+ for each TCP connection.""",
3435
+ }, # group
3436
+ "tcpEStatsPathHCGroup" : {
3437
+ "nodetype" : "group",
3438
+ "moduleName" : "TCP-ESTATS-MIB",
3439
+ "oid" : "1.3.6.1.2.1.156.2.2.9",
3440
+ "status" : "current",
3441
+ "members" : {
3442
+ "tcpEStatsPathHCSumRTT" : {
3443
+ "nodetype" : "member",
3444
+ "module" : "TCP-ESTATS-MIB"
3445
+ },
3446
+ }, # members
3447
+ "description" :
3448
+ """The tcpEStatsPathHC group includes 64-bit
3449
+ counters in the tcpEStatsPathTable.""",
3450
+ }, # group
3451
+ "tcpEStatsStackGroup" : {
3452
+ "nodetype" : "group",
3453
+ "moduleName" : "TCP-ESTATS-MIB",
3454
+ "oid" : "1.3.6.1.2.1.156.2.2.10",
3455
+ "status" : "current",
3456
+ "members" : {
3457
+ "tcpEStatsControlStack" : {
3458
+ "nodetype" : "member",
3459
+ "module" : "TCP-ESTATS-MIB"
3460
+ },
3461
+ "tcpEStatsStackActiveOpen" : {
3462
+ "nodetype" : "member",
3463
+ "module" : "TCP-ESTATS-MIB"
3464
+ },
3465
+ "tcpEStatsStackMSSSent" : {
3466
+ "nodetype" : "member",
3467
+ "module" : "TCP-ESTATS-MIB"
3468
+ },
3469
+ "tcpEStatsStackMSSRcvd" : {
3470
+ "nodetype" : "member",
3471
+ "module" : "TCP-ESTATS-MIB"
3472
+ },
3473
+ "tcpEStatsStackWinScaleSent" : {
3474
+ "nodetype" : "member",
3475
+ "module" : "TCP-ESTATS-MIB"
3476
+ },
3477
+ "tcpEStatsStackWinScaleRcvd" : {
3478
+ "nodetype" : "member",
3479
+ "module" : "TCP-ESTATS-MIB"
3480
+ },
3481
+ "tcpEStatsStackTimeStamps" : {
3482
+ "nodetype" : "member",
3483
+ "module" : "TCP-ESTATS-MIB"
3484
+ },
3485
+ "tcpEStatsStackECN" : {
3486
+ "nodetype" : "member",
3487
+ "module" : "TCP-ESTATS-MIB"
3488
+ },
3489
+ "tcpEStatsStackWillSendSACK" : {
3490
+ "nodetype" : "member",
3491
+ "module" : "TCP-ESTATS-MIB"
3492
+ },
3493
+ "tcpEStatsStackWillUseSACK" : {
3494
+ "nodetype" : "member",
3495
+ "module" : "TCP-ESTATS-MIB"
3496
+ },
3497
+ "tcpEStatsStackState" : {
3498
+ "nodetype" : "member",
3499
+ "module" : "TCP-ESTATS-MIB"
3500
+ },
3501
+ "tcpEStatsStackNagle" : {
3502
+ "nodetype" : "member",
3503
+ "module" : "TCP-ESTATS-MIB"
3504
+ },
3505
+ "tcpEStatsStackMaxSsCwnd" : {
3506
+ "nodetype" : "member",
3507
+ "module" : "TCP-ESTATS-MIB"
3508
+ },
3509
+ "tcpEStatsStackMaxCaCwnd" : {
3510
+ "nodetype" : "member",
3511
+ "module" : "TCP-ESTATS-MIB"
3512
+ },
3513
+ "tcpEStatsStackMaxSsthresh" : {
3514
+ "nodetype" : "member",
3515
+ "module" : "TCP-ESTATS-MIB"
3516
+ },
3517
+ "tcpEStatsStackMinSsthresh" : {
3518
+ "nodetype" : "member",
3519
+ "module" : "TCP-ESTATS-MIB"
3520
+ },
3521
+ "tcpEStatsStackInRecovery" : {
3522
+ "nodetype" : "member",
3523
+ "module" : "TCP-ESTATS-MIB"
3524
+ },
3525
+ "tcpEStatsStackDupAcksIn" : {
3526
+ "nodetype" : "member",
3527
+ "module" : "TCP-ESTATS-MIB"
3528
+ },
3529
+ "tcpEStatsStackSpuriousFrDetected" : {
3530
+ "nodetype" : "member",
3531
+ "module" : "TCP-ESTATS-MIB"
3532
+ },
3533
+ "tcpEStatsStackSpuriousRtoDetected" : {
3534
+ "nodetype" : "member",
3535
+ "module" : "TCP-ESTATS-MIB"
3536
+ },
3537
+ }, # members
3538
+ "description" :
3539
+ """The tcpEStatsConnState group includes objects that
3540
+ control the creation of the tcpEStatsStackTable,
3541
+ and provide information about the operation of
3542
+ algorithms used within TCP.""",
3543
+ }, # group
3544
+ "tcpEStatsStackOptionalGroup" : {
3545
+ "nodetype" : "group",
3546
+ "moduleName" : "TCP-ESTATS-MIB",
3547
+ "oid" : "1.3.6.1.2.1.156.2.2.11",
3548
+ "status" : "current",
3549
+ "members" : {
3550
+ "tcpEStatsStackSoftErrors" : {
3551
+ "nodetype" : "member",
3552
+ "module" : "TCP-ESTATS-MIB"
3553
+ },
3554
+ "tcpEStatsStackSoftErrorReason" : {
3555
+ "nodetype" : "member",
3556
+ "module" : "TCP-ESTATS-MIB"
3557
+ },
3558
+ "tcpEStatsStackSlowStart" : {
3559
+ "nodetype" : "member",
3560
+ "module" : "TCP-ESTATS-MIB"
3561
+ },
3562
+ "tcpEStatsStackCongAvoid" : {
3563
+ "nodetype" : "member",
3564
+ "module" : "TCP-ESTATS-MIB"
3565
+ },
3566
+ "tcpEStatsStackOtherReductions" : {
3567
+ "nodetype" : "member",
3568
+ "module" : "TCP-ESTATS-MIB"
3569
+ },
3570
+ "tcpEStatsStackCongOverCount" : {
3571
+ "nodetype" : "member",
3572
+ "module" : "TCP-ESTATS-MIB"
3573
+ },
3574
+ "tcpEStatsStackFastRetran" : {
3575
+ "nodetype" : "member",
3576
+ "module" : "TCP-ESTATS-MIB"
3577
+ },
3578
+ "tcpEStatsStackSubsequentTimeouts" : {
3579
+ "nodetype" : "member",
3580
+ "module" : "TCP-ESTATS-MIB"
3581
+ },
3582
+ "tcpEStatsStackCurTimeoutCount" : {
3583
+ "nodetype" : "member",
3584
+ "module" : "TCP-ESTATS-MIB"
3585
+ },
3586
+ "tcpEStatsStackAbruptTimeouts" : {
3587
+ "nodetype" : "member",
3588
+ "module" : "TCP-ESTATS-MIB"
3589
+ },
3590
+ "tcpEStatsStackSACKsRcvd" : {
3591
+ "nodetype" : "member",
3592
+ "module" : "TCP-ESTATS-MIB"
3593
+ },
3594
+ "tcpEStatsStackSACKBlocksRcvd" : {
3595
+ "nodetype" : "member",
3596
+ "module" : "TCP-ESTATS-MIB"
3597
+ },
3598
+ "tcpEStatsStackSendStall" : {
3599
+ "nodetype" : "member",
3600
+ "module" : "TCP-ESTATS-MIB"
3601
+ },
3602
+ "tcpEStatsStackDSACKDups" : {
3603
+ "nodetype" : "member",
3604
+ "module" : "TCP-ESTATS-MIB"
3605
+ },
3606
+ "tcpEStatsStackMaxMSS" : {
3607
+ "nodetype" : "member",
3608
+ "module" : "TCP-ESTATS-MIB"
3609
+ },
3610
+ "tcpEStatsStackMinMSS" : {
3611
+ "nodetype" : "member",
3612
+ "module" : "TCP-ESTATS-MIB"
3613
+ },
3614
+ "tcpEStatsStackSndInitial" : {
3615
+ "nodetype" : "member",
3616
+ "module" : "TCP-ESTATS-MIB"
3617
+ },
3618
+ "tcpEStatsStackRecInitial" : {
3619
+ "nodetype" : "member",
3620
+ "module" : "TCP-ESTATS-MIB"
3621
+ },
3622
+ "tcpEStatsStackCurRetxQueue" : {
3623
+ "nodetype" : "member",
3624
+ "module" : "TCP-ESTATS-MIB"
3625
+ },
3626
+ "tcpEStatsStackMaxRetxQueue" : {
3627
+ "nodetype" : "member",
3628
+ "module" : "TCP-ESTATS-MIB"
3629
+ },
3630
+ "tcpEStatsStackCurReasmQueue" : {
3631
+ "nodetype" : "member",
3632
+ "module" : "TCP-ESTATS-MIB"
3633
+ },
3634
+ "tcpEStatsStackMaxReasmQueue" : {
3635
+ "nodetype" : "member",
3636
+ "module" : "TCP-ESTATS-MIB"
3637
+ },
3638
+ }, # members
3639
+ "description" :
3640
+ """The tcpEStatsConnState group includes objects that
3641
+ provide additional information about the operation of
3642
+ algorithms used within TCP.""",
3643
+ }, # group
3644
+ "tcpEStatsAppGroup" : {
3645
+ "nodetype" : "group",
3646
+ "moduleName" : "TCP-ESTATS-MIB",
3647
+ "oid" : "1.3.6.1.2.1.156.2.2.12",
3648
+ "status" : "current",
3649
+ "members" : {
3650
+ "tcpEStatsControlApp" : {
3651
+ "nodetype" : "member",
3652
+ "module" : "TCP-ESTATS-MIB"
3653
+ },
3654
+ "tcpEStatsAppSndUna" : {
3655
+ "nodetype" : "member",
3656
+ "module" : "TCP-ESTATS-MIB"
3657
+ },
3658
+ "tcpEStatsAppSndNxt" : {
3659
+ "nodetype" : "member",
3660
+ "module" : "TCP-ESTATS-MIB"
3661
+ },
3662
+ "tcpEStatsAppSndMax" : {
3663
+ "nodetype" : "member",
3664
+ "module" : "TCP-ESTATS-MIB"
3665
+ },
3666
+ "tcpEStatsAppThruOctetsAcked" : {
3667
+ "nodetype" : "member",
3668
+ "module" : "TCP-ESTATS-MIB"
3669
+ },
3670
+ "tcpEStatsAppRcvNxt" : {
3671
+ "nodetype" : "member",
3672
+ "module" : "TCP-ESTATS-MIB"
3673
+ },
3674
+ "tcpEStatsAppThruOctetsReceived" : {
3675
+ "nodetype" : "member",
3676
+ "module" : "TCP-ESTATS-MIB"
3677
+ },
3678
+ }, # members
3679
+ "description" :
3680
+ """The tcpEStatsConnState group includes objects that
3681
+ control the creation of the tcpEStatsAppTable,
3682
+ and provide information about the operation of
3683
+ algorithms used within TCP.""",
3684
+ }, # group
3685
+ "tcpEStatsAppHCGroup" : {
3686
+ "nodetype" : "group",
3687
+ "moduleName" : "TCP-ESTATS-MIB",
3688
+ "oid" : "1.3.6.1.2.1.156.2.2.13",
3689
+ "status" : "current",
3690
+ "members" : {
3691
+ "tcpEStatsAppHCThruOctetsAcked" : {
3692
+ "nodetype" : "member",
3693
+ "module" : "TCP-ESTATS-MIB"
3694
+ },
3695
+ "tcpEStatsAppHCThruOctetsReceived" : {
3696
+ "nodetype" : "member",
3697
+ "module" : "TCP-ESTATS-MIB"
3698
+ },
3699
+ }, # members
3700
+ "description" :
3701
+ """The tcpEStatsStackHC group includes 64-bit
3702
+ counters in the tcpEStatsStackTable.""",
3703
+ }, # group
3704
+ "tcpEStatsAppOptionalGroup" : {
3705
+ "nodetype" : "group",
3706
+ "moduleName" : "TCP-ESTATS-MIB",
3707
+ "oid" : "1.3.6.1.2.1.156.2.2.14",
3708
+ "status" : "current",
3709
+ "members" : {
3710
+ "tcpEStatsAppCurAppWQueue" : {
3711
+ "nodetype" : "member",
3712
+ "module" : "TCP-ESTATS-MIB"
3713
+ },
3714
+ "tcpEStatsAppMaxAppWQueue" : {
3715
+ "nodetype" : "member",
3716
+ "module" : "TCP-ESTATS-MIB"
3717
+ },
3718
+ "tcpEStatsAppCurAppRQueue" : {
3719
+ "nodetype" : "member",
3720
+ "module" : "TCP-ESTATS-MIB"
3721
+ },
3722
+ "tcpEStatsAppMaxAppRQueue" : {
3723
+ "nodetype" : "member",
3724
+ "module" : "TCP-ESTATS-MIB"
3725
+ },
3726
+ }, # members
3727
+ "description" :
3728
+ """The tcpEStatsConnState group includes objects that
3729
+ provide additional information about how applications
3730
+ are interacting with each TCP connection.""",
3731
+ }, # group
3732
+ "tcpEStatsTuneOptionalGroup" : {
3733
+ "nodetype" : "group",
3734
+ "moduleName" : "TCP-ESTATS-MIB",
3735
+ "oid" : "1.3.6.1.2.1.156.2.2.15",
3736
+ "status" : "current",
3737
+ "members" : {
3738
+ "tcpEStatsControlTune" : {
3739
+ "nodetype" : "member",
3740
+ "module" : "TCP-ESTATS-MIB"
3741
+ },
3742
+ "tcpEStatsTuneLimCwnd" : {
3743
+ "nodetype" : "member",
3744
+ "module" : "TCP-ESTATS-MIB"
3745
+ },
3746
+ "tcpEStatsTuneLimSsthresh" : {
3747
+ "nodetype" : "member",
3748
+ "module" : "TCP-ESTATS-MIB"
3749
+ },
3750
+ "tcpEStatsTuneLimRwin" : {
3751
+ "nodetype" : "member",
3752
+ "module" : "TCP-ESTATS-MIB"
3753
+ },
3754
+ "tcpEStatsTuneLimMSS" : {
3755
+ "nodetype" : "member",
3756
+ "module" : "TCP-ESTATS-MIB"
3757
+ },
3758
+ }, # members
3759
+ "description" :
3760
+ """The tcpEStatsConnState group includes objects that
3761
+ control the creation of the tcpEStatsConnectionTable,
3762
+ which can be used to set tuning parameters
3763
+ for each TCP connection.""",
3764
+ }, # group
3765
+ "tcpEStatsNotificationsGroup" : {
3766
+ "nodetype" : "group",
3767
+ "moduleName" : "TCP-ESTATS-MIB",
3768
+ "oid" : "1.3.6.1.2.1.156.2.2.16",
3769
+ "status" : "current",
3770
+ "members" : {
3771
+ "tcpEStatsEstablishNotification" : {
3772
+ "nodetype" : "member",
3773
+ "module" : "TCP-ESTATS-MIB"
3774
+ },
3775
+ "tcpEStatsCloseNotification" : {
3776
+ "nodetype" : "member",
3777
+ "module" : "TCP-ESTATS-MIB"
3778
+ },
3779
+ }, # members
3780
+ "description" :
3781
+ """Notifications sent by a TCP extended statistics agent.""",
3782
+ }, # group
3783
+ "tcpEStatsNotificationsCtlGroup" : {
3784
+ "nodetype" : "group",
3785
+ "moduleName" : "TCP-ESTATS-MIB",
3786
+ "oid" : "1.3.6.1.2.1.156.2.2.17",
3787
+ "status" : "current",
3788
+ "members" : {
3789
+ "tcpEStatsControlNotify" : {
3790
+ "nodetype" : "member",
3791
+ "module" : "TCP-ESTATS-MIB"
3792
+ },
3793
+ }, # members
3794
+ "description" :
3795
+ """The tcpEStatsNotificationsCtl group includes the
3796
+ object that controls the creation of the events
3797
+ in the tcpEStatsNotificationsGroup.""",
3798
+ }, # group
3799
+ }, # groups
3800
+
3801
+ "compliances" : {
3802
+ "tcpEStatsCompliance" : {
3803
+ "nodetype" : "compliance",
3804
+ "moduleName" : "TCP-ESTATS-MIB",
3805
+ "oid" : "1.3.6.1.2.1.156.2.1.1",
3806
+ "status" : "current",
3807
+ "description" :
3808
+ """Compliance statement for all systems that implement TCP
3809
+ extended statistics.""",
3810
+ "requires" : {
3811
+ "tcpEStatsListenerGroup" : {
3812
+ "nodetype" : "mandatory",
3813
+ "module" : "TCP-ESTATS-MIB"
3814
+ },
3815
+ "tcpEStatsConnectIdGroup" : {
3816
+ "nodetype" : "mandatory",
3817
+ "module" : "TCP-ESTATS-MIB"
3818
+ },
3819
+ "tcpEStatsPerfGroup" : {
3820
+ "nodetype" : "mandatory",
3821
+ "module" : "TCP-ESTATS-MIB"
3822
+ },
3823
+ "tcpEStatsPathGroup" : {
3824
+ "nodetype" : "mandatory",
3825
+ "module" : "TCP-ESTATS-MIB"
3826
+ },
3827
+ "tcpEStatsStackGroup" : {
3828
+ "nodetype" : "mandatory",
3829
+ "module" : "TCP-ESTATS-MIB"
3830
+ },
3831
+ "tcpEStatsAppGroup" : {
3832
+ "nodetype" : "mandatory",
3833
+ "module" : "TCP-ESTATS-MIB"
3834
+ },
3835
+ "tcpEStatsListenerHCGroup" : {
3836
+ "nodetype" : "optional",
3837
+ "module" : "TCP-ESTATS-MIB",
3838
+ "description" :
3839
+ """This group is mandatory for all systems that can
3840
+ wrap the values of the 32-bit counters in
3841
+ tcpEStatsListenerGroup in less than one hour.""",
3842
+ },
3843
+ "tcpEStatsPerfOptionalGroup" : {
3844
+ "nodetype" : "optional",
3845
+ "module" : "TCP-ESTATS-MIB",
3846
+ "description" :
3847
+ """This group is optional for all systems.""",
3848
+ },
3849
+ "tcpEStatsPerfHCGroup" : {
3850
+ "nodetype" : "optional",
3851
+ "module" : "TCP-ESTATS-MIB",
3852
+ "description" :
3853
+ """This group is mandatory for systems that can
3854
+ wrap the values of the 32-bit counters in
3855
+ tcpEStatsPerfGroup in less than one hour.
3856
+
3857
+ Note that any system that can attain 10 Mb/s
3858
+ can potentially wrap 32-Bit Octet counters in
3859
+ under one hour.""",
3860
+ },
3861
+ "tcpEStatsPathOptionalGroup" : {
3862
+ "nodetype" : "optional",
3863
+ "module" : "TCP-ESTATS-MIB",
3864
+ "description" :
3865
+ """This group is optional for all systems.""",
3866
+ },
3867
+ "tcpEStatsPathHCGroup" : {
3868
+ "nodetype" : "optional",
3869
+ "module" : "TCP-ESTATS-MIB",
3870
+ "description" :
3871
+ """This group is mandatory for systems that can
3872
+ wrap the values of the 32-bit counters in
3873
+ tcpEStatsPathGroup in less than one hour.
3874
+
3875
+ Note that any system that can attain 10 Mb/s
3876
+ can potentially wrap 32-Bit Octet counters in
3877
+ under one hour.""",
3878
+ },
3879
+ "tcpEStatsStackOptionalGroup" : {
3880
+ "nodetype" : "optional",
3881
+ "module" : "TCP-ESTATS-MIB",
3882
+ "description" :
3883
+ """This group is optional for all systems.""",
3884
+ },
3885
+ "tcpEStatsAppHCGroup" : {
3886
+ "nodetype" : "optional",
3887
+ "module" : "TCP-ESTATS-MIB",
3888
+ "description" :
3889
+ """This group is mandatory for systems that can
3890
+ wrap the values of the 32-bit counters in
3891
+ tcpEStatsStackGroup in less than one hour.
3892
+
3893
+ Note that any system that can attain 10 Mb/s
3894
+ can potentially wrap 32-Bit Octet counters in
3895
+ under one hour.""",
3896
+ },
3897
+ "tcpEStatsAppOptionalGroup" : {
3898
+ "nodetype" : "optional",
3899
+ "module" : "TCP-ESTATS-MIB",
3900
+ "description" :
3901
+ """This group is optional for all systems.""",
3902
+ },
3903
+ "tcpEStatsTuneOptionalGroup" : {
3904
+ "nodetype" : "optional",
3905
+ "module" : "TCP-ESTATS-MIB",
3906
+ "description" :
3907
+ """This group is optional for all systems.""",
3908
+ },
3909
+ "tcpEStatsNotificationsGroup" : {
3910
+ "nodetype" : "optional",
3911
+ "module" : "TCP-ESTATS-MIB",
3912
+ "description" :
3913
+ """This group is optional for all systems.""",
3914
+ },
3915
+ "tcpEStatsNotificationsCtlGroup" : {
3916
+ "nodetype" : "optional",
3917
+ "module" : "TCP-ESTATS-MIB",
3918
+ "description" :
3919
+ """This group is mandatory for systems that include the
3920
+ tcpEStatsNotificationGroup.""",
3921
+ },
3922
+ }, # requires
3923
+ }, # compliance
3924
+ }, # compliances
3925
+
3926
+ }