From 67b86547daa68169d208f733254b861d4a010cab Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Fri, 7 Dec 2001 17:03:14 +0000 Subject: o Update rc.network to reflect the recent change of default in the kernel TCP timer code: rather than checking for tcp_keepalive being set to "YES", check for "NO" and turn off keepalives if the variable is set in that manner. o Note: eventually, it would make sense to remove this variable from rc.conf management, and instead rely on sysctl.conf. In fact, this is probably true of a number of rc.conf variables whose sole aim is to drive the setting of sysctls at boot time. --- etc/rc.network | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'etc/rc.network') diff --git a/etc/rc.network b/etc/rc.network index 9422640fef5f..b9b67fef20d2 100644 --- a/etc/rc.network +++ b/etc/rc.network @@ -456,9 +456,9 @@ network_pass1() { esac case ${tcp_keepalive} in - [Yy][Ee][Ss]) - echo -n ' TCP keepalive=YES' - sysctl -w net.inet.tcp.always_keepalive=1 >/dev/null + [Nn][Oo]) + echo -n ' TCP keepalive=NO' + sysctl -w net.inet.tcp.always_keepalive=0 >/dev/null ;; esac -- cgit v1.2.3