mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
Tune parameters related to TCP initial window.
Increase default values of "tcp_max_above_hole_without_any_acks" and "tcp_max_initial_window" from 4096 to 16384 bytes. BIT-1255 #close
This commit is contained in:
parent
6ebd80a8b4
commit
4c00729104
3 changed files with 9 additions and 3 deletions
6
CHANGES
6
CHANGES
|
@ -1,4 +1,10 @@
|
||||||
|
|
||||||
|
2.3-560 | 2015-03-19 13:17:39 -0500
|
||||||
|
|
||||||
|
* BIT-1255: Increase default values of
|
||||||
|
"tcp_max_above_hole_without_any_acks" and "tcp_max_initial_window"
|
||||||
|
from 4096 to 16384 bytes. (Jon Siwek)
|
||||||
|
|
||||||
2.3-559 | 2015-03-19 12:14:33 -0500
|
2.3-559 | 2015-03-19 12:14:33 -0500
|
||||||
|
|
||||||
* BIT-849: turn SMTP reporter warnings into weirds,
|
* BIT-849: turn SMTP reporter warnings into weirds,
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.3-559
|
2.3-560
|
||||||
|
|
|
@ -929,7 +929,7 @@ const tcp_storm_interarrival_thresh = 1 sec &redef;
|
||||||
## seeing our peer's ACKs. Set to zero to turn off this determination.
|
## seeing our peer's ACKs. Set to zero to turn off this determination.
|
||||||
##
|
##
|
||||||
## .. bro:see:: tcp_max_above_hole_without_any_acks tcp_excessive_data_without_further_acks
|
## .. bro:see:: tcp_max_above_hole_without_any_acks tcp_excessive_data_without_further_acks
|
||||||
const tcp_max_initial_window = 4096 &redef;
|
const tcp_max_initial_window = 16384 &redef;
|
||||||
|
|
||||||
## If we're not seeing our peer's ACKs, the maximum volume of data above a
|
## If we're not seeing our peer's ACKs, the maximum volume of data above a
|
||||||
## sequence hole that we'll tolerate before assuming that there's been a packet
|
## sequence hole that we'll tolerate before assuming that there's been a packet
|
||||||
|
@ -937,7 +937,7 @@ const tcp_max_initial_window = 4096 &redef;
|
||||||
## don't ever give up.
|
## don't ever give up.
|
||||||
##
|
##
|
||||||
## .. bro:see:: tcp_max_initial_window tcp_excessive_data_without_further_acks
|
## .. bro:see:: tcp_max_initial_window tcp_excessive_data_without_further_acks
|
||||||
const tcp_max_above_hole_without_any_acks = 4096 &redef;
|
const tcp_max_above_hole_without_any_acks = 16384 &redef;
|
||||||
|
|
||||||
## If we've seen this much data without any of it being acked, we give up
|
## If we've seen this much data without any of it being acked, we give up
|
||||||
## on that connection to avoid memory exhaustion due to buffering all that
|
## on that connection to avoid memory exhaustion due to buffering all that
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue