diff options
author | des <des@FreeBSD.org> | 2001-03-19 22:07:32 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-03-19 22:07:32 +0000 |
commit | 097a9d6bae16257ca039fa6a77f1c9a2b8adbc26 (patch) | |
tree | b237d1b327a05d1bbf33edfc981119f3994f77ef /etc/network.subr | |
parent | d0f798c1511603114cebeb179c36e5b22f827f1b (diff) | |
download | FreeBSD-src-097a9d6bae16257ca039fa6a77f1c9a2b8adbc26.zip FreeBSD-src-097a9d6bae16257ca039fa6a77f1c9a2b8adbc26.tar.gz |
Axe TCP_RESTRICT_RST. It was never a particularly good idea except for a few
very specific scenarios, and now that we have had net.inet.tcp.blackhole for
quite some time there is really no reason to use it any more.
(second of three commits)
Diffstat (limited to 'etc/network.subr')
-rw-r--r-- | etc/network.subr | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/etc/network.subr b/etc/network.subr index c1ffb37..fbe8bf3 100644 --- a/etc/network.subr +++ b/etc/network.subr @@ -394,13 +394,6 @@ network_pass1() { ;; esac - case ${tcp_restrict_rst} in - [Yy][Ee][Ss]) - echo -n ' restrict TCP reset=YES' - sysctl -w net.inet.tcp.restrict_rst=1 >/dev/null - ;; - esac - case ${tcp_drop_synfin} in [Yy][Ee][Ss]) echo -n ' drop SYN+FIN packets=YES' |