How To

How to Configure Static IP on Ubuntu Settings Easily

Setting up a Static IP on Ubuntu configuration is essential for servers, remote access systems, media servers, and devices that require a permanent network address. By default, Ubuntu receives IP addresses dynamically from a DHCP server, but many advanced networking tasks work better with a fixed IP.

Whether you manage an Ubuntu server or desktop machine, configuring a static IP improves stability and simplifies remote connectivity.

Why Use a Static IP on Ubuntu Configuration

Dynamic IP addresses can change after router reboots or network reconnects. This may interrupt SSH access, port forwarding, DNS records, or locally hosted services.

A static IP solves these issues by assigning a permanent address to your Ubuntu system. It is especially useful for:

  • Web servers
  • NAS systems
  • Home labs
  • Remote desktop access
  • Docker and virtualization setups

Ubuntu uses Netplan for network management on modern releases, making static IP configuration more consistent across systems.

Static IP Setup on Servers

Before assigning a static address, identify your network interface name using:

ip link

Ubuntu systems often use interface names such as ens3, enp0s3, or eth0.

Next, locate the Netplan configuration file:

ls /etc/netplan/

Open the YAML file with a text editor:

sudo nano /etc/netplan/01-netcfg.yaml

A basic static IP configuration may look like this:

network:  version: 2  renderer: networkd  ethernets:    ens3:      dhcp4: false      addresses:        - 192.168.1.50/24      routes:        - to: default          via: 192.168.1.1      nameservers:        addresses:          - 8.8.8.8          - 1.1.1.1

Make sure the indentation remains correct because YAML formatting is strict.

Before applying changes permanently, test the configuration safely:

sudo netplan try

If everything works correctly, apply the configuration:

sudo netplan apply

Static IP Configuration on Desktop

Desktop users can configure networking without editing files manually.

Open:

Settings → Network

Select the active network interface and open IPv4 settings. Switch the method from Automatic (DHCP) to Manual.

Enter:

  • IP address
  • Netmask
  • Gateway
  • DNS servers

After saving the settings, reconnect the network adapter to apply the new configuration.

Common Static IP Problems on Ubuntu

Incorrect interface names are one of the most common issues. Always verify them with the ip link command.

Another frequent problem involves YAML indentation errors in Netplan files. Even a single misplaced space can prevent the network configuration from loading correctly.

If DNS stops working after the change, double-check the nameserver section and confirm the DNS addresses are properly formatted.

Conclusion

Configuring a Static IP on Ubuntu setup helps create a more stable and predictable networking environment for servers and desktop systems alike. Netplan offers a powerful way to manage networking from the command line, while Ubuntu Desktop provides an easy graphical method for less technical users.

For remote systems accessed through SSH, always test changes with netplan try before applying them permanently.

Cyber Defence

Recent Posts

How to Change Ubuntu Timezone Using Terminal or GUI

Keeping the correct system clock is important for servers, desktop systems, scheduled tasks, and application…

3 hours ago

How to Perform Ubuntu Hostname Change Without Rebooting

An Ubuntu Hostname Change is a common administrative task used to rename Linux servers, desktops,…

6 hours ago

How to Add Ubuntu Swap Space for Better System Stability

Ubuntu Swap Space helps Linux systems stay responsive when physical RAM starts running low. Instead…

9 hours ago

Install TeamViewer on Ubuntu 26.04: Complete Setup Guide

If you need secure remote desktop access on Linux, learning how to Install TeamViewer on…

1 day ago

Install VirtualBox Ubuntu 26.04 for Easy VM Setup

If you want to test operating systems, build development labs, or safely run isolated environments,…

1 day ago

How to Install Node.js and npm on Ubuntu

If you want to build JavaScript applications on Linux, learning how to Install Node.js Ubuntu…

1 day ago