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
Hi, On Thu, Aug 31, 2006 at 11:10:38 +0200, Helge Fredriksen wrote:
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 [...] 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? What exactly are the errors you get, i.e. when pinging crux.nu? Do you get the same error when you ping its IP (217.25.252.140)?
If the later works, it's likely a problem with your DNS settings. HTH, Johannes -- Johannes Winkelmann mailto:jw@smts.ch Zurich, Switzerland http://jw.smts.ch
participants (2)
-
Helge Fredriksen
-
Johannes Winkelmann