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

git fetch vs git pull: How They Work and When to Use Each

Both git fetch and git pull talk to a remote repository, but they do very different things to your…

3 days ago

git cherry-pick Command: Apply Commits from Another Branch

Sometimes the change you need already exists, just on the wrong branch. A hotfix lands…

3 days ago

Best Email APIs for Secure Business Email: Why Developers Are Moving Beyond SMTP

Email is still one of the most important communication channels inside modern applications. Password resets,…

4 days ago

Nginx Commands in Linux: Start, Stop, Reload, Test, and Log

Nginx is a high-performance web server and reverse proxy trusted by some of the largest…

7 days ago

ufw Command in Linux: Manage Firewall Rules with Examples

ufw (Uncomplicated Firewall) sits on top of iptables (or nftables on newer systems) and replaces…

7 days ago

who Command in Linux: Show All Logged-In Users and Sessions

When you share a server with a team or investigate unexpected activity, the first question…

7 days ago