diff options
| author | Joseph Koshy <jkoshy@FreeBSD.org> | 1998-09-15 10:49:03 +0000 |
|---|---|---|
| committer | Joseph Koshy <jkoshy@FreeBSD.org> | 1998-09-15 10:49:03 +0000 |
| commit | 61a4defd549e94b2bc43b5e964ceca6a12241540 (patch) | |
| tree | de6599b93d2e926b858beafa6858eff9240177cf /etc/rc.network | |
| parent | bd9d336e408c5b3e3d81e66d745b7d30589f3c1a (diff) | |
Notes
Diffstat (limited to 'etc/rc.network')
| -rw-r--r-- | etc/rc.network | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/rc.network b/etc/rc.network index 526cf3cb1bd5..f807a89634fc 100644 --- a/etc/rc.network +++ b/etc/rc.network @@ -1,6 +1,6 @@ #!/bin/sh - # -# $Id: rc.network,v 1.29 1998/08/14 06:55:17 phk Exp $ +# $Id: rc.network,v 1.30 1998/09/06 08:20:11 phk Exp $ # From: @(#)netstart 5.9 (Berkeley) 3/30/91 # Note that almost all the user-configurable behavior is no longer in @@ -110,6 +110,11 @@ network_pass1() { sysctl -w net.inet.tcp.rfc1323=0 >/dev/null 2>&1 fi + if [ X"$icmp_bmcastecho" = X"YES" ]; then + echo -n ' broadcast ping responses=YES' + sysctl -w net.inet.icmp.bmcastecho=1 >/dev/null 2>&1 + fi + if [ "X$gateway_enable" = X"YES" ]; then echo -n ' IP gateway=YES' sysctl -w net.inet.ip.forwarding=1 >/dev/null 2>&1 |
