IMHO:change rc.custom so that it tries to use DHCP
if that fails, then use the static address in setting.s
something like:
--------------------------------------------------
ifconfig lo up
route add -net 127.0.0.0 lo
echo -e "Trying DHCP...\c"
dhcpcd eth0
sleep 25
if test -e '/var/run/dhcpcd-cache.eth0' ; then
echo "DONE"
ln -s -f /etc/dhcpc/resolv.conf /etc/resolv/conf
else
echo "FAILED"
echo "Using static address"
ifconfig eth0 $IPADDR up
route add -net $NETWORK
fi
---------------------------------------------
> ----------
> From: [EMAIL PROTECTED][SMTP:[EMAIL PROTECTED]]
> Sent: Wednesday, 26 January 2000 10:38
> To: Tom Oehser
> Cc: [EMAIL PROTECTED]
> Subject: [tomsrtbt] Network access
>
> I work on two systems connected with the
> network with a Ethernet card. One system has fixed
> IP another has IP dynamically asigned. What
> is easy and quick way to customize my
> tomsrtbt floppy to be able to access network
> (with telnet, ftp etc ...) ?
>
> Martin Mankowski
>
application/ms-tnef