diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2001-12-07 17:03:14 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2001-12-07 17:03:14 +0000 |
commit | 67b86547daa68169d208f733254b861d4a010cab (patch) | |
tree | 29398f5342416abd7e314eec77d5b92b4d157e79 /etc/rc.d/network1 | |
parent | c39a614e0d2bb7de7e9414f5937f75da4c18abae (diff) | |
download | src-67b86547daa68169d208f733254b861d4a010cab.tar.gz src-67b86547daa68169d208f733254b861d4a010cab.zip |
Notes
Diffstat (limited to 'etc/rc.d/network1')
-rw-r--r-- | etc/rc.d/network1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.d/network1 b/etc/rc.d/network1 index 9422640fef5f..b9b67fef20d2 100644 --- a/etc/rc.d/network1 +++ b/etc/rc.d/network1 @@ -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 |