Monday, 21 October 2019

networking - How to automate running the dhclient in ubuntu?


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?



Answer



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.


No comments:

Post a Comment

How can I VLOOKUP in multiple Excel documents?

I am trying to VLOOKUP reference data with around 400 seperate Excel files. Is it possible to do this in a quick way rather than doing it m...