On Fri, 25 Apr 1997, Dennis Groves wrote: > now my problem was that everthing worked but ifconfig and route add were > not run automagicaly :( > can anybody help me? > > [EMAIL PROTECTED] >
I suppose 'automagically' means 'at boot time' in this article ? If so, you have to edit /etc/init.d/network (it gets called by /etc/init.d/boot ) Mine was created by the installation process : #! /bin/sh ifconfig lo 127.0.0.1 route add -net 127.0.0.0 IPADDR=134.130.50.22 NETMASK=255.255.255.0 NETWORK=134.130.50.0 BROADCAST=134.130.50.255 GATEWAY=134.130.50.254 ifconfig eth0 ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST} route add -net ${NETWORK} [ "${GATEWAY}" ] && route add default gw ${GATEWAY} metric 1 I don't know if there is a facility to configure it after installation. But vi (or even ae ) is already a good tool. Bye, Alexandre -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .