aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/init.d/network
diff options
context:
space:
mode:
Diffstat (limited to 'rc.d/init.d/network')
-rwxr-xr-xrc.d/init.d/network21
1 files changed, 0 insertions, 21 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network
index 0eb00e6b..28c6c905 100755
--- a/rc.d/init.d/network
+++ b/rc.d/init.d/network
@@ -33,9 +33,6 @@ fi
# if the ip configuration utility isn't around we can't function.
[ -x /sbin/ip ] || exit 1
-# Even if IPX is configured, without the utilities we can't do much
-[ ! -x /sbin/ipx_internal_net -o ! -x /sbin/ipx_configure ] && IPX=
-
# Even if VLAN is configured, without the utility we can't do much
[ ! -x /sbin/vconfig ] && VLAN=
@@ -69,16 +66,6 @@ case "$1" in
# bring up loopback interface
action $"Bringing up loopback interface: " ./ifup ifcfg-lo
- case "$IPX" in
- yes|true)
- /sbin/ipx_configure --auto_primary=$IPXAUTOPRIMARY \
- --auto_interface=$IPXAUTOFRAME
- if [ "$IPXINTERNALNETNUM" != "0" ]; then
- /sbin/ipx_internal_net add $IPXINTERNALNETNUM $IPXINTERNALNODENUM
- fi
- ;;
- esac
-
case "$VLAN" in
yes)
if [ -d /proc/net/vlan ] || modprobe 8021q >/dev/null 2>&1 ; then
@@ -248,14 +235,6 @@ case "$1" in
)
done
- case "$IPX" in
- yes|true)
- if [ "$IPXINTERNALNETNUM" != "0" ]; then
- /sbin/ipx_internal_net del
- fi
- ;;
- esac
-
action $"Shutting down loopback interface: " ./ifdown ifcfg-lo
if [ -d /proc/sys/net/ipv4 ]; then