# Attach the loopback device.
/sbin/ifconfig lo localhost
# Attach an alias for gryphon's demon address
/sbin/ifconfig lo:0 gryphon.demon.co.uk
# Configure the ethernet card for the local network
/sbin/ifconfig eth0 gryphon.looking-glass.org
# Somewhere around 2.1.10 auto routing was added, thus we avoid adding routes
# on new kernels
case "`uname -r`" in
1.*|2.0.*|2.1.?)
/sbin/route add -net loopback
/sbin/route add gryphon.demon.co.uk
/sbin/route add -net looking ;;
*) ;;
esac
localhost is 127.0.0.1, gryphon.demon.co.uk is 158.152.42.76,
gryphon.looking-glass.org is 192.168.1.1, loopback is 127.0.0.1 and
looking is 192.168.1.0.
-- Brian http://www.wonderland.org/~eternal/