Why can't my machine connect to the Internet?

1

I have a self-built desktop running Ubuntu 10.04 LTS. It is connected by an Ethernet cable (not wireless!) to a Apple Time Capsule (identical to an Airport Extreme). The Time Capsule has an illuminated LED on that port indicating that it is connected to the machine. However, the computer cannot access either the network or the Internet, and my other computers don't see it on the network. What could be causing this?

ifconfig displays:

lo    Link encap:Local Loopback
      inet addr:127.0.0.1 Mask:255.0.0.0
      inet6 addr: ::1/128 Scope:Host
      UP LOOPBACK RUNNING MTU:16436 Metric:1
      RX Packets:308 errors:0 dropped:0 overruns:0 frames:0
      TX Packets:308 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueueline:0
      RX bytes:23600 (23.6 KB) TX bytes:23600 (23.6 KB)

waiwai933

Posted 2010-08-27T00:04:17.653

Reputation: 2 293

Does it have an IP address? Can you ping said IP address? How did you configure the network settings? Just looking for some background info. – John T – 2010-08-27T00:09:51.557

type ifconfig into teminal. that should display the network connections and settings. – Diskilla – 2010-08-27T00:35:52.997

it would be interesting to know what you get when you type:

"dmesg | grep eth0"

apparently your Ethernet card isn't configured or isn't recognized. – gbroiles – 2010-08-27T01:23:56.993

@gbroiles Nothing comes up. Motherboards typically do come with Ethernet cards, right? – waiwai933 – 2010-08-27T03:31:13.843

1usually, yes - but it's possible that either the Ethernet port is disabled in the BIOS, or else Ubuntu doesn't have a driver for it. – gbroiles – 2010-08-27T14:54:58.787

@gbro A bit late, but I finally got around to messing with the BIOS, and it fixed it. If you want to post your comment as an answer, I'll accept it. – waiwai933 – 2010-09-20T03:41:51.300

Answers

2

It only displays your localhost. So either Ubuntu has no driver for your card or the networking daemon isn´t running. Try this command sudo /etc/init.d/networking start It should restart the daemon. You can use this command with the params start|stop|restart|force-reload

Diskilla

Posted 2010-08-27T00:04:17.653

Reputation: 1 516