Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[SOLVED] Error, eth0: timed out
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
bloedie
Tux's lil' helper
Tux's lil' helper


Joined: 03 Jul 2006
Posts: 87
Location: Germany

PostPosted: Sat Sep 29, 2007 7:10 pm    Post subject: [SOLVED] Error, eth0: timed out Reply with quote

Hi.

I've got the following problem.
Since today I am getting the following error message
when the system boots.

Error, eth0: timed out

After this I could not connect to the network. If I use a static IP-Address
everything is fine. So I switched to Suse 10.2 and booted the system.
dhcp connect fine. No error Messages.

Does anyone know a solution.

Cu.
Bloedie

Ps.: Before I forgot to tell, I did a emerge -avuND world after this a revdep-rebuild and I
re-emerged dhcpcd too. Nothing helps.


Last edited by bloedie on Mon Oct 01, 2007 9:41 am; edited 1 time in total
Back to top
View user's profile Send private message
thumper
Guru
Guru


Joined: 06 Dec 2002
Posts: 396
Location: Venice FL

PostPosted: Sat Sep 29, 2007 9:12 pm    Post subject: Reply with quote

I don't know if your problem is related to mine but since updating to dhcpcd 3.1.5 I had to make the following change to /etc/conf.d/net for it to work as before.
Code:
# This prevents that funky long ugly ID from showing up and futzing
# up our ip by mac address in the dlink
dhcpcd_eth0="-I ''"


George
Back to top
View user's profile Send private message
scottt
n00b
n00b


Joined: 05 Jun 2007
Posts: 29

PostPosted: Sat Sep 29, 2007 11:29 pm    Post subject: Reply with quote

same problem here - i spend nearly 2 hour on this. above written change in /etc/conf.d/net should work.

dont forget the space dhcpcd_eth0="-I ''" between I and ' !


here some more keywords for searchengines:
"Error, no interface specified"
"Configuration not set for eth0 - assuming DHCP"
dhcpcd



thanks!
Back to top
View user's profile Send private message
bloedie
Tux's lil' helper
Tux's lil' helper


Joined: 03 Jul 2006
Posts: 87
Location: Germany

PostPosted: Sun Sep 30, 2007 10:00 am    Post subject: Reply with quote

Hi.

This did not work for me. I downgraded to dhcpcd-3.0.16-r1
and it works like before.

It looks like there's something wrong in the new version of dhcpcd-3.1.5

Cu.
Bloedie
Back to top
View user's profile Send private message
UberLord
Retired Dev
Retired Dev


Joined: 18 Sep 2003
Posts: 6274
Location: Blighty

PostPosted: Sun Sep 30, 2007 4:19 pm    Post subject: Reply with quote

Nothing is wrong with dhcpcd-3.1.5

What is wrong is your dhcp server requiring the MAC address in the optional ClientID option in the DHCP message. What it should be using is the chaddr bit, which is required for DHCP.
_________________
When baselayout tells you to update config files or things break WE REALLY DO MEAN IT

Please add SOLVED to the thread title if your issue has been
Strip comments from configs please
Back to top
View user's profile Send private message
bloedie
Tux's lil' helper
Tux's lil' helper


Joined: 03 Jul 2006
Posts: 87
Location: Germany

PostPosted: Sun Sep 30, 2007 6:28 pm    Post subject: Reply with quote

Hi.

So what I have to do? My dhcp Server is the router.

Cu.
Bloedie
Back to top
View user's profile Send private message
jkoerner
Apprentice
Apprentice


Joined: 04 Nov 2006
Posts: 270

PostPosted: Sun Sep 30, 2007 6:42 pm    Post subject: Reply with quote

The above solution works for me, just this
Quote:
* Starting eth0
* Configuration not set for eth0 - assuming DHCP

as a hint with a yellow star
So there is still something wrong

@UberLord
would be kind of you to explain it in words for dummies(like me :wink: )
Back to top
View user's profile Send private message
thumper
Guru
Guru


Joined: 06 Dec 2002
Posts: 396
Location: Venice FL

PostPosted: Sun Sep 30, 2007 6:57 pm    Post subject: Reply with quote

could you post your /etc/conf.d/net file?

And feel free to remove comments and mask private info.

George
Back to top
View user's profile Send private message
jkoerner
Apprentice
Apprentice


Joined: 04 Nov 2006
Posts: 270

PostPosted: Sun Sep 30, 2007 7:06 pm    Post subject: Reply with quote

Code:
#config_eth0=( "dhcp" )
dhcpcd_eth0="-I ''"

The router provides a static address, the commented first line worked before the update.
Back to top
View user's profile Send private message
thumper
Guru
Guru


Joined: 06 Dec 2002
Posts: 396
Location: Venice FL

PostPosted: Sun Sep 30, 2007 7:13 pm    Post subject: Reply with quote

Interesting......

Try this:
Code:

modules=( "dhcpcd" )
config_eth0=( "dhcp" )
dhcpcd_eth0="-I ''"


then:
/etc/init.d/net.eth0 restart

What happens?

George
Back to top
View user's profile Send private message
thumper
Guru
Guru


Joined: 06 Dec 2002
Posts: 396
Location: Venice FL

PostPosted: Sun Sep 30, 2007 7:17 pm    Post subject: Reply with quote

Is your router a Linux box, or an appliance like Linksys or Dlink?
Back to top
View user's profile Send private message
jkoerner
Apprentice
Apprentice


Joined: 04 Nov 2006
Posts: 270

PostPosted: Sun Sep 30, 2007 7:17 pm    Post subject: Reply with quote

Works perfectly!

Great, THANKS :D

My router is a FRITZ!Box Fon 5012
Back to top
View user's profile Send private message
bloedie
Tux's lil' helper
Tux's lil' helper


Joined: 03 Jul 2006
Posts: 87
Location: Germany

PostPosted: Mon Oct 01, 2007 6:57 am    Post subject: Reply with quote

Hi thumper.

This works perfectly. Thanks. :D

Cu.
Bloedie

PS.: My router is a T-COM Speedport W 701V
Back to top
View user's profile Send private message
UberLord
Retired Dev
Retired Dev


Joined: 18 Sep 2003
Posts: 6274
Location: Blighty

PostPosted: Mon Oct 01, 2007 11:23 am    Post subject: Reply with quote

And have you configured the DHCP server to hand out address to only specific MAC addresses?
_________________
When baselayout tells you to update config files or things break WE REALLY DO MEAN IT

Please add SOLVED to the thread title if your issue has been
Strip comments from configs please
Back to top
View user's profile Send private message
bloedie
Tux's lil' helper
Tux's lil' helper


Joined: 03 Jul 2006
Posts: 87
Location: Germany

PostPosted: Mon Oct 01, 2007 2:40 pm    Post subject: Reply with quote

Hi.

This is not possible with my aktive router. In my older one it was possible, but
I can't turn back to the older one.

Is just me and my wifes PC in the network, and wireless lan is turned
off anyway.

Cu.
Bloedie
Back to top
View user's profile Send private message
thumper
Guru
Guru


Joined: 06 Dec 2002
Posts: 396
Location: Venice FL

PostPosted: Mon Oct 01, 2007 6:40 pm    Post subject: Reply with quote

UberLord wrote:
And have you configured the DHCP server to hand out address to only specific MAC addresses?


I have, well not "Only", one for my test server and my workstation so they always get the same IP (much easier than static assignments in each box), my son's machine and my craptop are plain ole dhcp. :)

Works dandy.

George
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