Hello,
I've been trying lately to attach my crux server to a network with a Thompson SpeedTouch
ADSL router as a backbone. I want to have a static IP-address to it, and use this /etc/rc.d/net
$ more /etc/rc.d/net
#!/bin/sh
#
# /etc/rc.d/net: start/stop network
#
case $1 in
start)
/sbin/modprobe 3c59x
/sbin/ifconfig lo 127.0.0.1
/sbin/ifconfig eth0
10.0.0.50 netmask 255.255.255.0
/sbin/route add default gw 10.0.0.138
# /sbin/dhcpcd eth0
;;
stop)
# killall -q /sbin/dhcpcd
/sbin/ifconfig eth0 down
/sbin/ifconfig lo down
;;
restart)
$0 stop
$0 start
;;
*)
I'm managing to register internally with the SpeedTouch, and to ping all local
machines on that network. I'm also able to access this machine from other
PC's on the network, so things look promising.
However, I'm not able to reach internet like I do from other Windows PC's on
the same network. How come? Anything missing from my network setup?
Best regards,
Helge Fredriksen