How to automate running the dhclient in ubuntu?

2

2

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?

Devoted

Posted 2010-06-13T03:40:23.227

Reputation: 705

Answers

9

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.

SiRGt

Posted 2010-06-13T03:40:23.227

Reputation: 106