I need to run sudo dhclient eth0 every time I unplug and plug the Ethernet back in.

This is pretty annoying! How can I fix it?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

You should check your network configuration in:

/etc/nework/interfaces

If you want DHCP it should be something like this:

auto eth0
iface eth0 inet dhcp

If you want a static IP it should go like this:

auto eth0
iface eth0 inet static
address xxx.xxx.xxx.xxx
gateway xxx.xxx.xxx.xxx
netmask xxx.xxx.xxx.xxx
network xxx.xxx.xxx.xxx
broadcast xxx.xxx.xxx.xxx

You can read this too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.