How to assign dynamic ip address in linux [DHCP-CLIENT]
DHCP IP ADDRESS-CLIENT
if you are using VirtualBox then advance
VirtualBox connect with existing adapters, be in bridge, NAT, etc.
This time I bridge VirtualBox with a wireless NIC on my laptop ..
On the client side using the Linux operating system, use the following command. If there is a dhcp server, then the computer will get an IP address automatically.
To be fixed configuration dhcp, although we reboot the computer, then we have to edit the interfaces file first. Then change it to dhcp mode.
nano / etc / network / interfaces
# …
auto eth0
iface eth0 inet dhcp
do not forget to
service networking restart
by Re_Tech
linux dhcp client