tcp_rexmit_interval_initial
tcp_rexmit_interval_max
Description | The default maximum retransmission timeout value (RTO) in milliseconds. The calculated RTO for all TCP connections cannot exceed this value. See also "tcp_ip_abort_interval". |
Default | 60 seconds |
Range | 1 millisecond to 2 hours |
Dynamic? | Yes |
When to Change | Do not change the value in a normal network environment. If in some special circumstances, the round trip time (RTT) for a connection is in the order of 10 seconds, you can change the value to a higher value. If you change this value, you should also change the tcp_ip_abort_interval parameter to match it. Change the value of tcp_ip_abort_interval to at least four times the value of tcp_rexmit_interval_max. |
Commitment Level | Unstable |
tcp_rexmit_interval_min
Description | The default minimum retransmission time-out (RTO) value in milliseconds. The calculated RTO for all TCP connections cannot be lower than this value. See also "tcp_rexmit_interval_max". |
Default | 400 milliseconds |
Range | 1 millisecond to 20 seconds |
Dynamic? | Yes |
When to Change | Do not change the value in a normal network environment. TCP's RTO calculation should be able to cope with most RTT fluctuations. If in some very special circumstances such that the round trip time (RTT) for a connection is in the order of 10 seconds, change to a higher value. If you change this value, you should change the tcp_rexmit_interval_max parameter to match it. You should change the value of tcp_rexmit_interval_max to at least eight times the value of tcp_rexmit_interval_min. |
Commitment Level | Unstable |
tcp_rexmit_interval_extra
tcp_tstamp_if_wscale
tcp_recv_hiwat_minmss
tcp_compression_enabled
Description | If set to 1, protocol control blocks of TCP connections in TIME-WAIT state are compressed to reduce memory usage. If set to 0, no compression is done. See "tcp_time_wait_interval" also. |
Default | 1 (enabled) |
Range | 0 (disabled), 1 (enabled) |
Dynamic? | Yes |
When to Change | Do not turn off the compression mechanism. |
Commitment Level | Unstable |
UDP Tunable Parameters
This section describes some of the UDP tunable parameters.
udp_xmit_hiwat
Description | The default maximum UDP socket datagram size in bytes. For more information, see "udp_max_buf". |
Default | 8192 bytes |
Range | 4096 to 65,536 |
Dynamic? | Yes |
When to Change | Note that an application can use setsockopt(3XNET) SO_SNDBUF to change the size for an individual socket. In general, you do not need to change the default value. |
Commitment Level | Unstable |