- 论坛徽章:
- 0
|
Use sysctl -A to get a list of available kernel variables
and grep this list for net.ipv4 settings (sysctl -A | grep net.ipv4).
There should exist the following variables:
- net.ipv4.tcp_keepalive_time - time of connection inactivity after which
the first keep alive request is sent
- net.ipv4.tcp_keepalive_probes - number of keep alive requests retransmitted
before the connection is considered broken
- net.ipv4.tcp_keepalive_intvl - time interval between keep alive probes
You can manipulate with these settings using the following command:
sysctl -w net.ipv4.tcp_keepalive_time=60 net.ipv4.tcp_keepalive_probes=3 net.ipv4.tcp_keepalive_intvl=10
This sample command changes tcp keepalive timeout to 60 seconds with 3 probes,
10 seconds gap between each. With this, your application will detect dead tcp
connections after 90 seconds (60 + 10 + 10 + 10)
照这个也没用 郁闷了
没人知道? |
|