summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/netoptions
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2001-12-07 17:03:14 +0000
committerrwatson <rwatson@FreeBSD.org>2001-12-07 17:03:14 +0000
commit892dcf7c92773fcf45773f07dcb16feae1318247 (patch)
tree29398f5342416abd7e314eec77d5b92b4d157e79 /etc/rc.d/netoptions
parent02fc34fde9741cda8ef72482cc623f95b4aa9e4a (diff)
downloadFreeBSD-src-892dcf7c92773fcf45773f07dcb16feae1318247.zip
FreeBSD-src-892dcf7c92773fcf45773f07dcb16feae1318247.tar.gz
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.
Diffstat (limited to 'etc/rc.d/netoptions')
-rw-r--r--etc/rc.d/netoptions6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.d/netoptions b/etc/rc.d/netoptions
index 9422640..b9b67fe 100644
--- a/etc/rc.d/netoptions
+++ b/etc/rc.d/netoptions
@@ -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
OpenPOWER on IntegriCloud