ltm rule command TCP lossfilterrateΒΆ

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

TCP::lossfilterrate
       Gets the TCP Loss Ignore Rate Parameter.

SYNOPSIS
       TCP::lossfilterrate

DESCRIPTION
       Gets the maximum number of packets per million lost before triggering congestion response.
	 * Rate range is valid from 0 to 1,000,000. Rate is X packets lost per
	   million before congestion control kicks in.

       Syntax

       TCP::lossfilterrate

RETURN VALUE
       TCP Loss Ignore Rate in packets per million.

VALID DURING
       ANY_EVENT

EXAMPLES
	when SERVER_CONNECTED {
	    # Remove loss filter if present
	    if { [TCP::lossfilterrate] > 0 } {
		TCP::lossfilter 0 0
	    }
	}

HINTS
SEE ALSO
       TCP::lossfilter TCP::lossfilterburst

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

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