aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/ifup-ipx
blob: 53871cca55765f6dd408f8a3d9af634d613448d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
# configures IPX on $1 if appropriate

PATH=/sbin:/usr/sbin:/bin:/usr/bin

if [ "$1" = "" ]; then
	echo $"usage: $0 <net-device>"
	exit 1
fi

if [ ! -x /sbin/ipx_interface ] ; then
	# cannot configure IPX with non-existant utilities
	exit 0
fi

. /etc/sysconfig/network

case $IPX in yes|true) ;; *) exit 0 ;; esac

cd /etc/sysconfig/network-scripts
. network-functions

CONFIG=$1
[ -f "$CONFIG" ] || CONFIG=ifcfg-$CONFIG
source_config

for frametype in 802.2 802.3 ETHERII SNAP ; do
    # Yes, this kind of evaluation is really necessary to do this.
    # Welcome to shell programming...  No, we were not smoking some
    # particularly good floppies while we wrote this.  :-)
    framename=$(echo $frametype | sed 's/\./_/')
    case $(eval echo $(echo \$`echo IPXACTIVE_$framename`)) in
	yes|true)
		case $(eval echo $(echo \$`echo IPXPRIMARY_$framename`)) in
		    yes|true) primary=-p ;;
		    *) primary= ;;
		esac
		/sbin/ipx_interface add $primary $1 $frametype \
		  $(eval echo $(echo \$`echo IPXNETNUM_$framename`))
		;;
    esac
done

exit 0