I have a file /etc/init.d/network that is called from /etc/init.d/boot, and
it looks like this...
#! /bin/sh
ifconfig lo 127.0.0.1
route add -net 127.0.0.0
IPADDR=207.236.16.59
NETMASK=255.255.255.0
NETWORK=207.236.16.0
BROADCAST=207.236.16.255
GATEWAY=207.236.16.1
ifconfig eth0 ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST}
route add -net ${NETWORK}
[ "${GATEWAY}" ] && route add default gw ${GATEWAY} metric 1
ifconfig eth0:0 192.168.1.1 broadcast 192.168.1.255
route add -net 192.168.1.0 netmask 255.255.255.0 dev eth0:0
#end file network
my problem is, that at boot time, the ifconfig eth0:0 doesn't work, but after
my machine is up, if I run the network script, eth0:0 gets setup fine.
(what's the official technical name for eth0:0 ?)
what needs to be run before eth0:0 gets configured? I know how to change
the order of things, I just don't know what needs to get done.
thanks
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For daily digest info, email [EMAIL PROTECTED]