Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
tcp_keepalive options
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks
View previous topic :: View next topic  
Author Message
Bones McCracker
Veteran
Veteran


Joined: 14 Mar 2006
Posts: 1611
Location: U.S.A.

PostPosted: Tue Feb 05, 2008 5:30 am    Post subject: tcp_keepalive options Reply with quote

Keepalive is part of TCP/IP intended to distinguish between active and dead connections that appear to be idle, keep the active ones open, and close dead ones.
  • If keepalive is enabled on a given connection, after the connection remains idle for a period of time (configurable), a heartbeat probe is sent to the remote node.
  • If the remote node does not acknowledge the probe within a time interval (configurable), the probe has failed.
  • If too many probes fail (configurable), the connection is closed.

The kernel parameters that govern this are kept in /proc/sys/net/ipv4, and their default values (which are given in seconds) seem sensible to me, but might be excessive for some situations:
Code:
cat /proc/sys/net/ipv4/tcp_keepalive_time
7200
cat /proc/sys/net/ipv4/tcp_keepalive_intvl
75
cat /proc/sys/net/ipv4/tcp_keepalive_probes
9

With those settings, no action is taken by the kernel's tcp/ip stack until a connection has been apparently idle for 2 hours.
Then probes are sent. For each probe, we listen for a response for 75 seconds.
A total of 9 probes must be sent and fail, before the connection is closed.

The total elapsed idle time is 2 hours, 11 minutes, and 15 seconds.

More aggressive settings may be useful to some people in two ways: preventing active service sessions from being artificially terminated (by keeping them alive), and in cleaning up half-closed connections. The down side is a few additional packets, which might have been more of an issue in days past. Note that probing only starts if the connection appears to be idle -- this does not occur during normal, active connections. Also note this only applies to connections for which you have enabled the keepalive option.

Nearly every service operates behind a firewall. Depending on how it is configured, a firewall may terminate an apparently idle connection as quickly as 15 minutes on a busy host. On the other hand, the default "close_wait" time on a stateful Linux iptables firewall is 3 days (last time I looked).

So, the default values may be fine for 95% of use cases, but modified settings may be beneficial to those whose connections are inexplicably dying or those whose firewalls are overloaded by tracking dead connections (e.g. from "hang-up call" -style probes from skript kiddies).

These would be set like any other kernel parameter (these are example values only - not suggested values):
Code:
echo 600 >/proc/sys/net/ipv4/tcp_keepalive_time
echo 45 > /proc/sys/net/ipv4/tcp_keepalive_intvl
echo 4 > /proc/sys/net/ipv4/tcp_keepalive_probes


The changes would be rendered persistent with an addition such as the following to /etc/sysctl.conf
Code:
## Keepalive at 10 minutes; terminate idle at 13 minutes

# start probing for heartbeat after 10 idle minutes (default 7200 sec)
net.ipv4.tcp_keepalive_time=600

# close connection after 4 unanswered probes (default 9)
net.ipv4.tcp_keepalive_probes=4 

# wait 45 seconds for reponse to each probe (default 75
net.ipv4.tcp_keepalive_intvl=45


[Edit: typos]


Last edited by Bones McCracker on Wed Feb 06, 2008 12:06 am; edited 1 time in total
Back to top
View user's profile Send private message
Sadako
Advocate
Advocate


Joined: 05 Aug 2004
Posts: 3792
Location: sleeping in the bathtub

PostPosted: Tue Feb 05, 2008 6:19 pm    Post subject: Reply with quote

This is nice, you very rarely see settings like this explained so clearly, along with recommended values.

Any more tips like this are quite welcome, thanks.
_________________
"You have to invite me in"
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum