Linux reboot network interface

How to Restart the Network on Ubuntu 22.04

In Linux distribution, the network manager is responsible for managing the network on your system. The latest release of Ubuntu 22.04 provides the facility to change or restart the network status with the help of the Command Line Interface or Graphical User Interface. Restarting the network helps in setting the connection and resolving network connection issues.

In this write-up, we will provide you with a deep insight into the methods to restart the network on Ubuntu 22.04. The outcomes are as follows:

Let’s dig into the CLI method first:

Method 1: Restarting the Network on Ubuntu 22.04 Using CLI

The CLI of Ubuntu 22.04 offers various commands to manage the network. This section enlists various commands that can be used to restart the network on Ubuntu 22.04.

Method 1.1: Using nmcli Command

The nmcli utility is used to control the network’s connections. Using the nmcli utility, users restart the network on Ubuntu 22.04. For this purpose, follow the given steps one by one.

Step 1: Check device status

First, check the network status, whether it is connected or not. For this purpose, run the following command:

The output shows that the network is connected.

Step 2: Turn off the Network

To turn off the network, run the following command:

$ sudo nmcli networking off

The successful execution of the command shows that the network is disabled now.

Step 3: Switch on the Network

Now, to reconnect the network, utilize the below script:

After this connection, the network’s active state will be restored.

Method 1.2: Using the Network Manager Service

The network manager service manages the network and connectivity settings on your device.

First, to check the network status on your device, use the below script:

$ systemctl status NetworkManager.service

The output showed that the network is in an active state.

To restart the network on Ubuntu 22.04, execute the below script in the terminal:

$ sudo systemctl restart NetworkManager.service

Upon successful execution, the network will take a quick restart.

Method 2: Restarting Network on Ubuntu 22.04 Using GUI

The Graphical-User-Interface is the utility that provides an easy and user-friendly interface to the user. You can graphically interact with Ubuntu 22.04 to restart the network using the following steps.

Читайте также:  Linux посмотреть чем заняты диски

Step 1: Open the Network Menu

First, open the network menu and check the network status:

The wire is connected, and the network icon shows that the network is in an active state.

Step 2: Turn off Network

To turn off the network, click on “Wired Connected” and then click on the “Turn off” option:

It will disconnect the network of your device.

Step 3: Turn on Network

After turning off the network, choose the“Connect” button to turn on the network again:

It will connect to the network of your device.

Step 4: Check Network Status

Furthermore, the network restarts the process, and the user can check the network status of their device:

The output shows that the device is connected to the network.

Congratulations! You have learned the process for restarting the network on Ubuntu 22.04.

Conclusion

A user can restart the network on Ubuntu 22.04 with the help of the Command Line Interface or Graphical User Interface. Restarting the network refreshes the network connection quickly and resolves the errors, if any. This short blog illustrated the knowledge to restart the network on Ubuntu 22.04 using CLI and GUI. The CLI uses the nmcli utility and NetworkManager service while the GUI restarts the network graphically on Ubuntu 22.04.

TUTORIALS ON LINUX, PROGRAMMING & TECHNOLOGY

Источник

Как перезагрузить сеть в Ubuntu?

img

Вы используете систему на основе Ubuntu и просто не можете подключиться к своей сети? Вы будете удивлены, сколько проблем можно исправить простым перезапуском.

Nmtui

Перезагрузка сети в Ubuntu с помощью командной строки

Если вы используете Ubuntu Server Edition, вы уже находитесь в терминале. Если вы используете настольную версию, вы можете получить доступ к терминалу с помощью сочетания клавиш Ctrl + Alt + T в Ubuntu.

Теперь у вас есть несколько команд для перезагрузки сети в Ubuntu. Некоторые (или, возможно, большинство) упомянутые здесь команды должны быть применимы для перезапуска сети в Debian и других дистрибутивах Linux.

Network manager service

Это самый простой способ перезагрузить сеть с помощью командной строки. Это эквивалентно графическому способу сделать это (перезапускает службу Network-Manager).

sudo service network-manager restart

Значок сети должен на мгновение исчезнуть, а затем снова появиться.

systemd

Второй способ – это команда systemctl, которая гораздо более универсальна, чем service.

sudo systemctl restart NetworkManager.service

Значок сети снова должен исчезнуть на мгновение. Чтобы проверить другие параметры systemctl, вы можете обратиться к его справочной странице.

nmcli

Это еще один инструмент для работы с сетями на компьютере с Linux. Это довольно мощный инструмент, и многие системные администраторы предпочитают его, поскольку он прост в использовании.

Этот метод состоит из двух шагов: выключить сеть, а затем снова включить ее.

sudo nmcli networking off

Сеть отключится и значок исчезнет. Чтобы включить его снова:

Вы можете проверить справочную страницу nmcli для большего количества вариантов.

ifup & ifdown

Эти команды управляют сетевым интерфейсом напрямую, изменяя его состояние на состояние, при котором он может или не может передавать и получать данные. Это одна из самых известных сетевых команд в Linux.

Читайте также:  Linux узнать где лежит исполняемый файл

Чтобы закрыть все сетевые интерфейсы, используйте ifdown, а затем используйте ifup, чтобы снова включить все сетевые интерфейсы.

Хорошей практикой было бы объединить обе эти команды:

sudo ifdown -a && sudo ifup -a
nmtui

Это еще один метод, часто используемый системными администраторами. Это текстовое меню для управления сетями прямо в вашем терминале.

Это должно открыть следующее меню:

Nmtui

Обратите внимание, что в nmtui вы можете выбрать другой вариант, используя клавиши со стрелками вверх и вниз.

Выберите Activate a connection

Nmtui

Нажмите Enter. Должно открыться меню с соединениями.

Nmtui

Далее, выберите сеть со звездочкой (*) рядом с ней и нажмите Enter. Это должно деактивировать это соединение.

Nmtui

Выберите соединение, которое вы хотите активировать

Nmtui

Нажмите Enter, соединение должно снова стать активным.

Nmtui

Дважды нажмите Tab чтобы выбрать пункт Back

Nmtui

Нажмите Enter, это вернет вас в главное меню.

Nmtui

Nmtui

Это должно закрыть приложение и вернуть вас в ваш терминал.

Перезапуск сети в Ubuntu графически

Это, конечно, самый простой способ перезапустить сеть для пользователей настольных компьютеров Ubuntu. Если это не работает, вы можете сделать это из командной строки как было описано в предыдущем разделе.

Чтобы открыть окно управления сетью, щелкните правой кнопкой мыши значок сети в правом верхнем углу и найдите сетевое соединение, которое вы хотите перезагрузить, затем нажмите «Выключить».

GUI

Значок сети исчезнет. Чтобы снова включить сеть, щелкните левой кнопкой мыши в правом верхнем углу стрелку вниз, найдите сетевой интерфейс и нажмите «Подключиться».

Источник

How to restart Network Interface / Network Adapter on Linux & Windows Cloud Servers

Once you make changes in the server network configuration file, then require to restart the server networking service in order to reflect the changes.

This guide will describe the steps to restart the network interface or network adapter in the Linux and Windows servers.

Restarting Network interface/adapter in Linux OS

Ubuntu / Debian

    Use the following command to restart the server networking service.

# sudo /etc/init.d/networking restart or # sudo /etc/init.d/networking stop # sudo /etc/init.d/networking start else # sudo systemctl restart networking 

networkadapter1networkadapter2
Once this is done, use the following command to check the server network status.

# sudo /etc/init.d/networking status or # sudo systemctl status networking 

networkadapter3networkadapter4

Ubuntu 17.10 and higher versions use NetPlan as the default network management tool and its configuration files are written in YAML syntax with a .yaml file extension .

Run the below command to update networking and then any changes that have been made to the network will take effect:

networkadapter5

AlmaLinux

    Use the following command to restart the server networking service.

# nmcli networking off # nmcli networking on or # systemctl restart NetworkManager 

networkadapter6networkadapter7
Once this is done, use the following command to check the server network status.

# nmcli -o or # systemctl status NetworkManager 

networkadapter8networkadapter9

Rocky Linux

    Use the following command to restart the server networking service.

# nmcli networking off # nmcli networking on or # systemctl restart NetworkManager 

restartnetworkrockylinux1restartnetworkrockylinux2
Either of the below commands can be executed to check the status of the networking service.

# nmcli -o or # systemctl status NetworkManager 

restartnetworkrockylinux3restartnetworkrockylinux14

Читайте также:  Linux сколько весит система

CentOS 8

    Use the following command to restart the server networking service.

# nmcli networking off # nmcli networking on or # systemctl restart NetworkManager.service 

networkadapter11networkadapter10
Either of the below commands can be executed to check the status of the networking service.

# systemctl status NetworkManager.service or # nmcli -o 

networkadapter12networkadapter13

CentOS 7

    Use the following command to restart the server networking service.

# systemctl restart network.service or # service network restart or # /etc/init.d/network restart 

networkadapter14networkadapter15
The status of the networking service can be checked by making use of any of the below commands.

# systemctl status network.service or # service network status or # /etc/init.d/network status 

networkadapter17networkadapter16networkadapter19

CentOS 6

    Use the following command to restart the server networking service.

# service network restart or # /etc/init.d/network restart 

networkadapter20networkadapter21
Once this is done, use the following command to check the server network status.

# service network status or # /etc/init.d/network status 

networkadapter22networkadapter23

Windows OS

Using the Enable/Disable mode of network adapter

  1. Click on the Windows key to open start and search Settings and go to the Network and Internet then click on Change adapter option which is shown in the below image. restartnetworkwin1Then will get the below page: restartnetworkwin2
  2. Right-click the Ethernet device and click on Disable option. restartnetworkwin3restartnetworkwin4
  3. Again, Right-click the Ethernet device and click on enable option. restartnetworkwin5
  4. Once this is done, Right-click the Ethernet device and click on status . restartnetworkwin6restartnetworkwin7

Using the netsh command

In Windows OS, the command line method involves using the netsh command for resetting the network and TCP/IP stack.

restartnetworkwin8

  1. Go to Start and type CMD in the search window.
  2. Once opened the Command Prompt , the command for restarting the network interface, as provided below, can be executed.

restartnetworkwin9

  • Regularize the networking process as indicated in the message after restarting the server.
  • In addition to the above command, may also use the command which resets the TCP/IP stack. The command is as follows.

    restartnetworkwin10

    The output will be as follows:

    Using the Network Reset option (Windows 10/11)

    The reset button method can be used in Windows 10 & 11 versions by which the user can restart the Network interface. The steps for this are given below.

    1. Click on Windows Start Menu button and then select Settings . restartnetworkwin11
    2. From the Settings option, select Network & Internet option. restartnetworkwin12
    3. Here you would be able to see the adapter options i.e Advanced Network Settings , from which you can click on Network Reset option. restartnetworkwin13
    4. Click on the Reset Now button on the right side of Network reset option and you will be prompted for the confirmation. Choose Yes for proceeding with resetting the network settings. restartnetworkwin14
      Once clicked on Yes , the network adapter will start to reset and you will be able to restart the network interface. restartnetworkwin15

    Источник

  • Оцените статью
    Adblock
    detector