Configuring Static IP Address Using DHCP
Configuring Static IP Address Using DHCP
The easiest and the recommended way to assign a static IP address to a device on your LAN is
by setting up a Static DHCP on your router. Static DHCP or DHCP reservation is a feature found
on most routers which makes the DHCP server to automatically assign the same IP address to a
specific network device, every time the device requests an address from the DHCP server. This
works by assigning a static IP to the device’s unique MAC address. The steps for configuring a
DHCP reservation vary from router to router, and it’s advisable to consult the vendor’s
documentation.
Netplan
Starting with 17.10 release, Netplan is the default network management tool on Ubuntu,
replacing the configuration file /etc/network/interfaces that had previously been used to
configure the network on Ubuntu.
Netplan uses configuration files in YAML syntax. To configure a network interface with
Netplan, you need to create a YAML description for that interface, and Netplan will generate the
required configuration files for your chosen renderer tool.
The first step is to identify the name of the ethernet interface you want to configure. To do so use
the ip link command, as shown below:
ip link
The command will print a list of all the available network interfaces. In this case, the name of the
interface is ens3:
Netplan configuration files are stored in the /etc/netplan directory and have the extension
.yaml. You’ll probably find one or two YAML files in this directory. The file may differ from
setup to setup. Usually, the file is named either 01-netcfg.yaml, 50-cloud-init.yaml, or
NN_interfaceName.yaml, but in your system it may be different.
Each Netplan Yaml file starts with the network key that has at least two required elements. The
first required element is the version of the network configuration format, and the second one is
the device type. The device type can be ethernets, bonds, bridges, or vlans.
The configuration above also includes the renderer type. Out of the box, if you installed
Ubuntu in server mode, the renderer is configured to use networkd as the back end.
Under the device’s type (in this case ethernets), you can specify one or more network
interfaces. In this example, we have only one interface ens3 that is configured to obtain IP
addressing from a DHCP server dhcp4: yes.
/etc/netplan/01-netcfg.yaml
network:
version: 2
renderer: networkd
ethernets:
ens3:
dhcp4: no
addresses:
- 192.168.121.199/24
gateway4: 192.168.121.1
nameservers:
addresses: [8.8.8.8, 1.1.1.1]
When editing Yaml files, make sure you follow the YAML code indent standards. If there are
syntax errors in the configuration, the changes will not ne applied.
Once done save and close the file and apply the changes with:
1. In the Activities screen, search for “network” and click on the Network icon. This will
open the GNOME Network configuration settings. Click on the cog icon.
3. In “IPV4” Method" section, select “Manual” and enter your static IP address, Netmask
and Gateway. Once done, click on the “Apply” button.
Now that you have set up a static IP Address, open your terminal either by using the Ctrl+Alt+T
keyboard shortcut or by clicking on the terminal icon and verify the changes by typing:
ip addr