Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[SOLVED] ERROR: interface eth0 does not exist
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Networking & Security
View previous topic :: View next topic  
Author Message
microchiroptera
n00b
n00b


Joined: 23 Jul 2011
Posts: 26
Location: Russia

PostPosted: Fri Aug 05, 2011 4:00 pm    Post subject: [SOLVED] ERROR: interface eth0 does not exist Reply with quote

When I try to connect to my wired connection, I see this:
Code:
# /etc/init.d/net.eth0 start
 * Bringing up interface eth0
 *   ERROR: interface eth0 does not exist
 *   Ensure that you have loaded the correct kernel module for your hardware
 * ERROR: net.eth0 failed to start

I have
Code:
# lspci | grep Ethernet
09:00.0 Ethernet controller: Attansic Technology Corp. Atheros AR8132 / L1c Gigabit Ethernet Adapter (rev c0)

I've checked my kernel configuration. I had
Code:
 Device Drivers --->
     [*] Network device support --->
     [*]   Ethernet (1000 Mbit) --->
     <*>     Atheros L1C Gigabite Ethernet support (experimental)

This feachure is experimental, so I googled that my problem can disappear if I change configuration to this:
Code:
 Device Drivers --->
     [*] Network device support --->
     [*]   Ethernet (1000 Mbit) --->
     <*>     Atheros/Attansic L1 Gigabit Ethernet support

But it still doesn't work. What can I do to fix this?


Last edited by microchiroptera on Sat Aug 06, 2011 8:47 am; edited 1 time in total
Back to top
View user's profile Send private message
albright
Advocate
Advocate


Joined: 16 Nov 2003
Posts: 2588
Location: Near Toronto

PostPosted: Fri Aug 05, 2011 4:51 pm    Post subject: Reply with quote

you might try to build the driver as a module ...
_________________
.... there is nothing - absolutely nothing - half so much worth
doing as simply messing about with Linux ...
(apologies to Kenneth Graeme)
Back to top
View user's profile Send private message
tetromino
Retired Dev
Retired Dev


Joined: 02 Dec 2003
Posts: 215

PostPosted: Fri Aug 05, 2011 5:36 pm    Post subject: Reply with quote

I would suggest building all 3 Atheros drivers ("Atheros/Attansic L1 Gigabit Ethernet support", "Atheros L1E Gigabit Ethernet support (EXPERIMENTAL)", and "Atheros L1C Gigabit Ethernet support (EXPERIMENTAL)") as modules, and then reboot to see if any of them get loaded and bring up the network interface.
Also, maybe your network card additionally needs a separate a PHY driver (see Device drivers → Network device support → PHY Device support and infrastructure).

If that doesn't help, you should look in the kernel log (dmesg) to see if there are any errors related to the network, Atheros, atl1, atl1c, or atl1e.
Back to top
View user's profile Send private message
microchiroptera
n00b
n00b


Joined: 23 Jul 2011
Posts: 26
Location: Russia

PostPosted: Fri Aug 05, 2011 7:34 pm    Post subject: Reply with quote

Thank you for your replies!

I've built drivers as modules and added PHY driver, but it didn't help. But I have this:
Code:
# dmesg | grep atl1c
atl1c: disagrees about version of symbol alloc_etherdev_mqs
atl1c: Unknown symbol alloc_etherdev_mqs (err -22)
atl1c: disagrees about version of symbol __vlan_hwaccel_rx
atl1c: Unknown symbol __vlan_hwaccel_rx (err -22)
atl1c: disagrees about version of symbol skb_put
atl1c: Unknown symbol skb_put (err -22)
atl1c: disagrees about version of symbol consume_skb
atl1c: Unknown symbol consume_skb (err -22)
atl1c: disagrees about version of symbol __netif_schedule
atl1c: Unknown symbol __netif_schedule (err -22)
atl1c: disagrees about version of symbol unregister_netdev
atl1c: Unknown symbol unregister_netdev (err -22)
atl1c: disagrees about version of symbol ___pskb_trim
atl1c: Unknown symbol ___pskb_trim (err -22)
atl1c: disagrees about version of symbol eth_validate_addr
atl1c: Unknown symbol eth_validate_addr (err -22)
atl1c: disagrees about version of symbol pskb_expand_head
atl1c: Unknown symbol pskb_expand_head (err -22)
atl1c: disagrees about version of symbol eth_type_trans
atl1c: Unknown symbol eth_type_trans (err -22)
atl1c: disagrees about version of symbol __napi_schedule
atl1c: Unknown symbol __napi_schedule (err -22)
atl1c: disagrees about version of symbol ethtool_op_set_sg
atl1c: Unknown symbol ethtool_op_set_sg (err -22)
atl1c: disagrees about version of symbol netif_device_detach
atl1c: Unknown symbol netif_device_detach (err -22)
atl1c: disagrees about version of symbol netif_device_attach
atl1c: Unknown symbol netif_device_attach (err -22)
atl1c: disagrees about version of symbol dev_kfree_skb_irq
atl1c: Unknown symbol dev_kfree_skb_irq (err -22)
atl1c: disagrees about version of symbol dev_kfree_skb_any
atl1c: Unknown symbol dev_kfree_skb_any (err -22)
atl1c: disagrees about version of symbol netif_napi_add
atl1c: Unknown symbol netif_napi_add (err -22)
atl1c: disagrees about version of symbol netif_receive_skb
atl1c: Unknown symbol netif_receive_skb (err -22)
atl1c: disagrees about version of symbol register_netdev
atl1c: Unknown symbol register_netdev (err -22)
atl1c: disagrees about version of symbol free_netdev
atl1c: Unknown symbol free_netdev (err -22)
atl1c: disagrees about version of symbol ethtool_op_get_link
atl1c: Unknown symbol ethtool_op_get_link (err -22)
atl1c: disagrees about version of symbol dev_alloc_skb
atl1c: Unknown symbol dev_alloc_skb (err -22)
atl1c: disagrees about version of symbol netif_carrier_off
atl1c: Unknown symbol netif_carrier_off (err -22)
atl1c: disagrees about version of symbol ethtool_op_get_sg
atl1c: Unknown symbol ethtool_op_get_sg (err -22)
atl1c: disagrees about version of symbol netif_carrier_on
atl1c: Unknown symbol netif_carrier_on (err -22)
atl1c: disagrees about version of symbol napi_complete
atl1c: Unknown symbol napi_complete (err -22)
Back to top
View user's profile Send private message
tetromino
Retired Dev
Retired Dev


Joined: 02 Dec 2003
Posts: 215

PostPosted: Fri Aug 05, 2011 8:10 pm    Post subject: Reply with quote

The "disagrees about version of symbol" errors seem to imply that your kernel and atl1c modules were built with different compiler versions or very different configurations.

Try rebuilding the kernel (including the Atheros/Attansic modules) from scratch:
make clean
make
make modules_install
Back to top
View user's profile Send private message
microchiroptera
n00b
n00b


Joined: 23 Jul 2011
Posts: 26
Location: Russia

PostPosted: Fri Aug 05, 2011 8:20 pm    Post subject: Reply with quote

tetromino,

I used genkernel and I'm afraid to build kernel manually. And I used --clean flag, isn't it similar?
Back to top
View user's profile Send private message
tetromino
Retired Dev
Retired Dev


Joined: 02 Dec 2003
Posts: 215

PostPosted: Fri Aug 05, 2011 8:32 pm    Post subject: Reply with quote

Strange, the --clean argument should have helped. But perhaps doing the following will make a difference:

1. back up your kernel .config file (cp /usr/src/linux/.config /usr/src/my.config)
2. cd /usr/src/linux; make mrproper
3. restore the .config file (cp /usr/src/my.config /usr/src/linux/.config)
4. and finally, run genkernel.
Back to top
View user's profile Send private message
microchiroptera
n00b
n00b


Joined: 23 Jul 2011
Posts: 26
Location: Russia

PostPosted: Sat Aug 06, 2011 8:46 am    Post subject: Reply with quote

Thank you! Now everything is working correctly. --clean argument helped with --install (previously I used --no-install)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Networking & Security All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum