Ubuntu 18.04
Sponsored Link

Configure DHCP Client : Ubuntu2018/05/09

 
Configure DHCP Client. DHCP Client uses 68/UDP.
[1] It's the example for configuring Ubuntu Client.
root@dlp:~#
vi /etc/netplan/01-netcfg.yaml
# enable dhcp4 and comment out static IP related settings

network:
  version: 2
  renderer: networkd
  ethernets:
    ens3:
      dhcp4: yes
      #addresses: [10.0.0.31/24]
      #gateway4: 10.0.0.1
      #nameservers:
      #  addresses: [10.0.0.10]

root@dlp:~#
netplan apply


Configure DHCP Client : Windows
 
It's the example for configuring on Windows 10 Client.
[2] Open network settings and select [internet protocol] and click [Properties] button.
[3] Check boxes like follows, then IP address is re-configured automatically.
[4] See the network status. Automatical configuration is done.
Matched Content