You can easily restart, stop, or start networking service under Ubuntu Linux using a shell prompt. You can also restart networking remotely over ssh session. However, please do not stop networking service over ssh session as you will loss connectivity to the remote server. You can use the following tools:
Tutorial details | |
---|---|
Difficulty | Easy (rss) |
Root privileges | Yes |
Requirements | None |
Time | 1m |
- /etc/init.d/networking restart script based command.
- service restart networking – Use service to run a System V init script such as networking.
- systemctl restart networking – Restart networking for the latest version of Ubuntu server.
The syntax is as follows to restart the networking on Ubuntu or Debian based operating systems.
Task: Restart networking under Ubuntu Linux
Open the terminal (bash shell command line) and type the following commands on the latest version of Ubuntu 16.04 or above:
$ sudo systemctl restart networking
OR
$ sudo systemctl restart networking.service
To verify status and connectivity, enter:
$ sudo systemctl status networking.service
$ ip r ## show routing info ##
$ ip a show eth0 ## show info for eth0 interface ##
$ ip a show br0 ## show info for br0 interface replace br0 with your actual interface ##
$ ping cyberciti.biz
Sample session from above commands:
Fig.01: How to restart network service in Ubuntu server
$ sudo /etc/init.d/networking restart
How to restart the networking service (Ubuntu version 14.04LTS or older)?
You can use the service command following as well:
$ sudo service networking restart
Warning: Do not stop networking service over ssh session.
To start networking service, enter :
$ sudo /etc/init.d/networking start
OR
$ sudo service networking start
To stop networking service, enter:
$ sudo /etc/init.d/networking stop
OR
$ sudo service networking stop
A note about desktop users
If above command failed, try the following command:
$ sudo service network-manager restart
OR systemd based Ubuntu system (latest version:
$ sudo systemctl restart network-manager
See also:
- See how to make changes to Ubuntu Linux network configuration by editing /etc/network/interfaces file.
🐧 6 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Interestingly enough, this command now says it is deprecated (due to a change in Debian code[1]). I think it still works, though probably for a limited time.
[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565187
I like this site , really rich collection of solutions
i am from bangladesh , working as Project Manager
My wish to developed myself as a High level linux administrator
this site help me a lot daily
slam i want to learn networking configuration in ubuntu using terminal
i cannot execute the “service network restart”
it”ll display network unrecogonized service.
And also my apache is not working well.
after restarting apache ,apache page is not displaying after typing the localhost in my ubuntu system.
please help me guys.
thanks in advance.
thnq.
such a helpfull site!!
The correct syntax to restart network in Ubuntu Server for the second option is:
2. service networking restart Use service to run a System V init script such as networking.