Categories: Ubuntu

How to change the IP address on Ubuntu

Changing the IP address on your Ubuntu system can be necessary for various situations, such as in the port forwarding process or when you want to run a media server on your network. In most cases, your router’s DHCP server dynamically assigns IP addresses to your network interface. However, you can easily change the assigned IP address on your system by using “netplan” or through the Ubuntu GUI Network settings.

In Ubuntu, the tool utilized for managing and configuring the network settings is known as “netplan”. netplan interacts with the kernel through the systemd-networkd and NetworkManager daemons which are also known as renderers. You have to choose any one from both of them. Netplan reads the network configurations from “/etc/netplan/*.yaml

Sponsored
files, saving the configuration settings for all network interfaces. If you use the netplan command in the Ubuntu terminal, it becomes easy to restart and change network settings.

Now, we will show you how to change the IP address on Ubuntu using terminal and GUI. So, let’s start!

How to change the IP address on Ubuntu terminal using netplan

First of all, list out the active network interfaces by using the “ip” command. The “ip” command is utilized in the Ubuntu terminal to assign, delete routes, put up or down interfaces, etc. Adding “link” in the “ip” command will display the link-layer information, name, and status of an interface, etc. Execute the below-given “ip link” command to know more about your network interfaces:

$ ip link

Next step is to open the “/etc/netplan/*.yaml” file in your nano editor:

$ sudo nano /etc/netplan/*.yaml

The opened “/etc/netplan/*.yaml” file will have the following information:

Now write out the following code in the “/etc/netplan/*.yaml” file to change the IP address on your system:

network:
version: 2
renderer: networkd
ethernets:
  enp0s3:
    dhcp4: no
    dhcp6: no
    addresses: [192.168.2.2/24]
    gateway4:  192.168.2.2
    nameservers:
            addresses: [8.8.4.4, 8.8.8.8]

Here:

  • dhcp4 and dhcp6 are IPv4 and IPv6 DHCP properties.
  • enp0s3 is the network interface name for which we will change the IP address.
  • addresses contain the sequence of addresses for the network interface.
  • gateway4 contains the default gateway’s IPv4 address.
  • nameservers comprise a series of IP addresses for nameservers.

Press “CTRL+O” to save the changes we made in the file:

Apply the modified settings by utilizing the below-given netplan command in your terminal:

$ sudo netplan apply

Sponsored

Now, check out that the IP address of the “enpos3” network interface is changed or not:

$ ip a

You can see that we have successfully changed the IP address on our Ubuntu system:

How to change the IP address on Ubuntu using GUI

Yes, you read it right! Ubuntu also provides the option to change the IP address of your network interface using its Graphical User Interface (GUI). To do so, open up your system “Settings” application by searching it manually in the Application’s search bar:

From the left side vertical menu, select the “Network” settings. After that, click on the “gear” icon to change the IP address of the selected network:

You will see a window displaying settings related to your wired network connection. Now, select the “IPv4” tab from the menu, and you will see that by default “Automatic (DHCP)” IPv4 method is enabled on your system:

Select the “Manual” option; then, add the new IP address, Netmask, Gateway, and DNS-related information in the given fields. Lastly, click on the “Apply” button:

All done! You can check out the updated information by selecting the “details” tab of your network interface:

Conclusion

Ubuntu provides you the option to change the IP address of your network interface, whether you want to do it for port forwarding or running any media server on your system. In an Ubuntu system, netplan” is the network management tool capable of configuring and managing the network settings. This article showed you how to change the IP address using the “netplan” utility in the Ubuntu terminal. The procedure for changing the IP address using Ubuntu GUI is also provided in the article.

Ubuntu Server Admin

Recent Posts

How to Install Google Cloud BigQuery Python client library on Linux

In this article, we will see how to Install Google Cloud BigQuery Python client library…

2 days ago

Wallpaper Contest for Xfce 4.20 open for voting

Nov 15,2024 Wallpaper Contest for Xfce 4.20 open for voting The submission phase for the…

2 days ago

Canonical announces the first MicroCloud LTS release

MicroCloud 2.1.0 LTS is now available, expanding the number of Canonical infrastructure solutions with a…

3 days ago

Join Canonical in Paris at Dell Technologies Forum

Canonical is thrilled to be joining forces with Dell Technologies at the upcoming Dell Technologies…

4 days ago

Bringing automation to open source 5G software at Ubuntu Summit 2024

In today’s massive private mobile network (PMN) market, one of the most common approaches to…

5 days ago

Ubuntu Weekly Newsletter Issue 865

Welcome to the Ubuntu Weekly Newsletter, Issue 865 for the week of November 3 –…

6 days ago