How to Restart Network on Ubuntu 22.04

Whenever a problem occurs with the system, the main solution is to perform a restart or reboot the system. Similarly, if a problem occurs with the network, then its easy treatment is to restart the network. There are many scenarios where you may need to restart the network on Ubuntu like settings of the network were changed or the active network connection not working properly. Restarting the network services is equally important for all Linux systems.

In this article, we will check how to restart the network on Ubuntu 22.04 and Ubuntu 20.04 systems.

Using the following different methods, you can restart the network on Ubuntu.

  1. Restart network using GUI
  2. Restart network using the command line

Depending on your ease, you can choose one that suits you.

Prerequisites

We are assuming that you are using the Gnome desktop on your Linux system. You should be logged in as a root user or you have sudo privileges to run all commands.

Method 1: Restart Network using GUI

When you restart the network using the GUI, then you can follow the following two different options.

Restart Network from the Desktop

In this method, you can restart the network from the Desktop. To do that, right-click on the top right corner on the network icon, and the following drop-down list will display on the right corner:

Desktop network Icon on Ubuntu

Click on the ‘wired connected’ option from the list and select ‘Turn off’ that will disable the network connection.

Turn off network connection

Now, follow the above-mentioned process and again enable the network by clicking the connect option as follows:

Connect to network

The network connection has been re-establish now.

Network Restart using Gnome Settings

Click on the arrow sign located at the top right corner and then choose ‘Settings’.

Open Settings

You can also go into the Settings by using the application search bar as follows:

GNOME settings manager

You will see the following window on the desktop. Select the ‘network’ option from the left sidebar and here you can enable or disable the connected network connection.

Network settings

Method 2: Restart network using the command line

Using this method, you can restart the network using the following different ways:

Restart Network using the service manager

The most simple and easiest way to restart the network using the network service manager. Launch the terminal and type the following command on it:

$ sudo service network-manager restart

Restart network manager service

Verify

Use Systemd to Restart Network

Systemd has an array of system components that can also handle network services. Restart network service using systemd, directly restart the network services instead of going through any other hoops.

$ sudo systemctl restart NetworkManager.service

Use systemctl command to restart network on Ubuntu

verify

Restart Network through the Nmcli

Nmcli is the most commonly used tool for managing network connections. You can turn off the connect using the following command:

$ sudo nmcli networking off

network restart with nmcli

Use the command below to turn on the network connection.

$ sudo nmcli networking on

Turn on network using nmcli

Verify

Using ifdown and ifup commands Restart Network

The ifdown and ifup commands are used to handle the different network interfaces on Linux.

These two packages are not preinstalled on Ubuntu. Therefore, you need to install these packages by using the following command:

$ sudo apt update && sudo apt install ifupdown -y

Install ifup and ifdown scripts

To turn off the network, use the ifdown and turn it on by using the ifup command as follows:

$ sudo ifdown -a && sudo ifup -a

Restart Network using the nmtui

Nmtui is another tool for managing network connections and provides an interactive environment. This tool comes pre-installed by default on Ubuntu. Therefore, just launch it using the following command:

$ sudo nmtui

The following interface will display on the terminal:

Start nmtui

Choose ‘Activate a connection’ using the downward arrow key and then hit ‘Enter’.Now, deactivate this connection by selecting the ‘deactivate’ option and hitting ‘Enter’.

Deactivate network connection

Once the connection is deactivated, again ‘Activate’ this connection as follows:

Activate network connection

Once the network is restarted, quit this application as follows:

Quit nmtui

Restart network using the IP command

The IP command is one more alternative that you can use in managing the network connections on Linux.

First, you will find your target network interface by using the following command:

$ ip link show

get network device name with ip command

Here, enp0s3 is our target network. Start the network by typing the following command:

$ sudo ip link set enp0s3 down

Shutdown network link using ip command

$ sudo ip link set enp0s3 up

Turn on network link with the help of the ip command

Conclusion

Restarting the network is a good solution for solving a network problem. If you still have the same problem then you can also reboot or restart your system. From the above all mentioned ways, I hope you have learned a lot.  But, in case of any issue, you can send us your feedback.

How to Restart Network on Ubuntu 22.04