Wittfella
Group: Members
Posts: 33
Joined: Sep. 2006 |
|
Posted: Feb. 16 2007,00:09 |
|
It sounds like your gateway is not set up. How are you configuring your network, statically or using DHCP. If DHCP it should be setup automatically for you, you can check this using
Code Sample | sudo pump -i eth0 --status |
where eth0 is your network interface, it might be something else like 'wlan0'. This tells you a bunch of info about your network, dns servers, gateway server etc.
If you set up your network manually you need to define your own default gateway using 'route'
Code Sample | route add default gw 192.168.1.1 |
where the IP number points to your modem/router for example.
Hope this helps some. Wittfella
|