ifconfig -a
produces:
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:65536 Metric:1
RX packets:1812 errors:0 dropped:0 overruns:0 frame:0
TX packets:1812 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:209274 (209.2 KB) TX bytes:209274 (209.2 KB)
wlan0 Link encap:Ethernet HWaddr 28:cf:e9:1a:43:cd
inet addr:192.168.12.11 Bcast:192.168.12.255 Mask:255.255.255.0
inet6 addr: fe80::2acf:e9ff:fe1a:43cd/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:11512 errors:0 dropped:0 overruns:0 frame:0
TX packets:11320 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:9240182 (9.2 MB) TX bytes:2316647 (2.3 MB)
lspci -nn | grep Ethernet
produces:
03:00.0 Ethernet controller [0200]: Broadcom Corporation Device [14e4:16a3] (rev 10)
cat /etc/network/interfaces
produces:
auto lo
iface lo inet loopback
Any ideas on how I can get eth0? Thanks!
allow-hotplug eth0
andiface eth0 inet dhcp
to the interfaces file should work, if you use DHCP and no network manager. – Alex May 04 '14 at 04:23ifdown wlan0
(will disconnect from the internet, useifup
to bring it back)ifdown eth0
ifup eth0
. Report back if it doesn't work. (Note all commands must be issued as root or withsudo
, as well as making the changes to the interfaces file). – Alex May 04 '14 at 04:35-a
) only shows the interfaces that are up. Usually,eth0
is bring up even if you're not connected to an ethernet cable if you haveauto-hotplug eth0
(I didn't see your comment saying it still didn't show up on ifconfig). So it seems like a driver issue, yes. Remove the lines added to the interfaces file as you seem to be using a network manager (in my first comment I mentioned it should only be added if no network manager is being used). – Alex May 04 '14 at 05:02