diff --git a/CHANGES b/CHANGES index 3022c72c6f..595bab9f65 100644 --- a/CHANGES +++ b/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 * BIT-849: turn SMTP reporter warnings into weirds, diff --git a/VERSION b/VERSION index 71ed2d9268..33e07faf42 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3-559 +2.3-560 diff --git a/scripts/base/init-bare.bro b/scripts/base/init-bare.bro index c62549f8b3..20b05e3600 100644 --- a/scripts/base/init-bare.bro +++ b/scripts/base/init-bare.bro @@ -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. ## ## .. 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 ## 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. ## ## .. 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 ## on that connection to avoid memory exhaustion due to buffering all that