aboutsummaryrefslogtreecommitdiff
path: root/etc/netstart
diff options
context:
space:
mode:
authorJohn Hay <jhay@FreeBSD.org>1996-11-05 20:10:37 +0000
committerJohn Hay <jhay@FreeBSD.org>1996-11-05 20:10:37 +0000
commitf4fb1da19fd656d83205ea51db343b240bc4b483 (patch)
treed2fe6c15d54373e1f180b0126aec5e269588ab53 /etc/netstart
parent01961df54d2aac2cecda376ae68272cdfb86c825 (diff)
Notes
Diffstat (limited to 'etc/netstart')
-rwxr-xr-xetc/netstart17
1 files changed, 16 insertions, 1 deletions
diff --git a/etc/netstart b/etc/netstart
index 99277d0df846..af5ebf6254ad 100755
--- a/etc/netstart
+++ b/etc/netstart
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: netstart,v 1.44 1996/04/06 09:24:48 mpp Exp $
+# $Id: netstart,v 1.45 1996/10/27 06:30:43 peter Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -60,6 +60,11 @@ for ifn in ${network_interfaces}; do
break;
fi
done
+ # Do ipx address if specified
+ eval ifconfig_args=\$ifconfig_${ifn}_ipx
+ if [ -n "${ifconfig_args}" ]; then
+ ifconfig ${ifn} ${ifconfig_args}
+ fi
ifconfig ${ifn}
done
@@ -86,3 +91,13 @@ if [ "x$router" != "xNO" ] ; then
echo -n " ${router}"; ${router} ${routerflags}
echo '.'
fi
+
+if [ "x$ipxgateway" != "xNO" ]; then
+ echo 'configuring host as an ipx gateway.'
+ sysctl -w net.ipx.ipx.ipxforwarding=1 >/dev/null 2>&1
+fi
+
+if [ "x$ipxrouted" != "xNO" ] ; then
+ echo -n "starting IPXrouted"; IPXrouted ${ipxrouted}
+ echo '.'
+fi