summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/routing
diff options
context:
space:
mode:
authormtm <mtm@FreeBSD.org>2007-05-02 15:49:30 +0000
committermtm <mtm@FreeBSD.org>2007-05-02 15:49:30 +0000
commit4d97bc072b62703a7ea41277e6a357771297a15b (patch)
tree0ccfea9a09944ac081fec9ed7d386151454746fc /etc/rc.d/routing
parent077bc38949116da2ce214e0fe10ba0de0a09024a (diff)
downloadFreeBSD-src-4d97bc072b62703a7ea41277e6a357771297a15b.zip
FreeBSD-src-4d97bc072b62703a7ea41277e6a357771297a15b.tar.gz
Move options that do not have anything to do with routing out of
rc.d/routing and in to rc.d/netoptions. Also instead of saying "TCP options" say "IP options".
Diffstat (limited to 'etc/rc.d/routing')
-rw-r--r--etc/rc.d/routing41
1 files changed, 0 insertions, 41 deletions
diff --git a/etc/rc.d/routing b/etc/rc.d/routing
index e251a97..874eda5 100644
--- a/etc/rc.d/routing
+++ b/etc/rc.d/routing
@@ -61,15 +61,6 @@ static_start()
options_start()
{
echo -n 'Additional routing options:'
- case ${tcp_extensions} in
- [Yy][Ee][Ss] | '')
- ;;
- *)
- echo -n ' tcp extensions=NO'
- sysctl net.inet.tcp.rfc1323=0 >/dev/null
- ;;
- esac
-
case ${icmp_bmcastecho} in
[Yy][Ee][Ss])
echo -n ' broadcast ping responses=YES'
@@ -112,20 +103,6 @@ options_start()
;;
esac
- case ${tcp_keepalive} in
- [Nn][Oo])
- echo -n ' TCP keepalive=NO'
- sysctl net.inet.tcp.always_keepalive=0 >/dev/null
- ;;
- esac
-
- case ${tcp_drop_synfin} in
- [Yy][Ee][Ss])
- echo -n ' drop SYN+FIN packets=YES'
- sysctl net.inet.tcp.drop_synfin=1 >/dev/null
- ;;
- esac
-
case ${ipxgateway_enable} in
[Yy][Ee][Ss])
echo -n ' IPX gateway=YES'
@@ -140,24 +117,6 @@ options_start()
;;
esac
- case ${ip_portrange_first} in
- [Nn][Oo] | '')
- ;;
- *)
- echo -n " ip_portrange_first=$ip_portrange_first"
- sysctl net.inet.ip.portrange.first=$ip_portrange_first >/dev/null
- ;;
- esac
-
- case ${ip_portrange_last} in
- [Nn][Oo] | '')
- ;;
- *)
- echo -n " ip_portrange_last=$ip_portrange_last"
- sysctl net.inet.ip.portrange.last=$ip_portrange_last >/dev/null
- ;;
- esac
-
echo '.'
}
OpenPOWER on IntegriCloud