ltm rule command TCP lossfilterburstΒΆ

iRule(1)					  BIG-IP TMSH Manual					     iRule(1)

TCP::lossfilterburst
       Gets the TCP Loss Ignore Burst Parameter.

SYNOPSIS
       TCP::lossfilterburst

DESCRIPTION
       Gets the maximum size burst loss (in packets) before triggering congestion response.
	 * Burst range is valid from 0 to 32. Higher values decrease the
	   chance of performing congestion control.

       Syntax

       TCP::lossfilterburst

RETURN VALUE
       TCP Loss Ignore Burst in packets.

VALID DURING
       ANY_EVENT

EXAMPLES
	when SERVER_CONNECTED {
	    # Set loss filter burst to a maximum of 3
	    if { [TCP::lossfilterburst] > 3 } {
		TCP::lossfilter [TCP::lossfilterrate] 3
	    }
	}

HINTS
SEE ALSO
       TCP::lossfilter TCP::lossfilterrate

CHANGE LOG
       @BIGIP-13.0.0 --First introduced the command.

BIG-IP						      2020-06-23					     iRule(1)