Linux: tcp keep alive setting
Linux: tcp keep alive setting http://www.r71.nl/wp-content/themes/blade/images/empty/thumbnail.jpg 150 150 Roderick Derks https://secure.gravatar.com/avatar/3959ba05a8e569b2d8ca79bdd57021e5?s=96&d=mm&r=gSometimes it’s handy to change the time interval that Linux has to check tcp connection statusses. Current setting in seconds:# cat /proc/sys/net/ipv4/tcp_keepalive_time Change to 15 minutes: # echo 900 > /proc/sys/net/ipv4/tcp_keepalive_time This is not permanent .. and you must place in an init proc… # vi /etc/sysctl.conf net.ipv4.tcp_keepalive_time =900 The following settings I used for…
read more