321

I tried to use

sudo service networking restart

and

sudo /etc/init.d/network restart

but they both crash the window manager and I can no longer use my keyboard for input into X.

when I use the /etc/init.d/ method it complains saying that I should use the service utility

e.g. service networking restart

but it crashes just the same.

Is there a GUI method of restarting networking?

Jorge Castro
  • 71,754
waspinator
  • 4,722
  • Note that you might reanimate your keyboard, if you unplug and replug it - and it is hot pluggable, i.e. USB. – user unknown Dec 19 '12 at 20:02
  • I also faced similar issue on Gnome 3 on Ubuntu 13.03. Screen disorted as top bar gone. Short keys not worked. As no menu/Activies shown I get no way to operate the system. Luckily console was opened already. So reboot command can be typed. – kuldeep.kamboj Jul 22 '13 at 10:48
  • 2
    if you are looking for GUI method just open dash, type "Network" and select that. now press "On/Off" button to turn off and again click to on. your networking is restarted now. – αғsнιη Sep 01 '14 at 18:28

18 Answers18

338

For Desktops

Try

sudo service network-manager restart

Or on recent Ubuntu versions:

sudo systemctl restart systemd-networkd

instead.

Ubuntu uses network-manager instead of the traditional Linux networking model. so you should restart the network-manager service instead of the network service. Or use ifup/down.

For Servers

Check this answer.

Zanna
  • 70,465
jrg
  • 60,611
123

For Servers

Restarting networking on a desktop machine will cause dbus and a bunch of service to stop and never be started again, usually leading to the whole system being unusable.

As Ubuntu does event based network bring up, there quite simply isn't a way to undo it all and redo it all, so a restart just isn't plain possible. The recommended way instead is to use ifdown and ifup on the interfaces you actually want to reconfigure:

sudo ifdown --exclude=lo -a && sudo ifup --exclude=lo -a
Jorge Castro
  • 71,754
45

You could try

ifconfig eth0 down && ifconfig eth0 up

(or whatever your network interface is called) to restart the network.

Neojames
  • 1,704
  • 3
    ... as far as I know, this doesn't update the interface's config according to /etc/network/interfaces ... which you might want – moritz Mar 22 '15 at 11:24
  • 1
    When using sudo: sudo ifconfig eth0 down && sudo ifconfig eth0 up. Otherwise if you are connected over ssh, you will have to reboot machine. – tarkeshwar Apr 23 '15 at 11:06
  • after trying ifup/ifdown and the reg service networking call, this finally worked for me – Jon B Nov 09 '15 at 04:15
  • I think it's better than the accepted answer because ifup doesn't handle bonded interfaces correctly, while ifconfig does – gilad905 Jun 05 '18 at 12:49
22

ubuntu CLI: to restart the network service either

sudo /etc/init.d/networking restart

or

ifdown eth0
ifup eth0
Javier Rivera
  • 35,153
redlakpa
  • 255
  • 2
  • 2
18

For ubuntu server 18.04, this works :

sudo systemctl restart systemd-networkd
18

These days the most direct way to restart network services is to use systemd controls, namely the commandline systemd control utility systemctl. This command will restart the NetworkManager:

sudo systemctl restart NetworkManager.service

More information can be found here.

muru
  • 197,895
  • 55
  • 485
  • 740
dagrha
  • 962
9

service network-manager restart doesn't work:

stop: Unknown job network-manager
start: Unknown job network-manager

The only thing that works is:

ifconfig eth0 down
ifconfig eth0 up
Seth
  • 58,122
George
  • 91
  • 1
  • 1
7
sudo service network-manager restart

nor:

sudo service networking restart

Doesn't work on Ubuntu server 14.04

only:

sudo ifdown eth0:0
sudo ifup eth0:0

Works. Change eth0:0 to your interface.

6

Try using the indicator (top menu bar) to disable and then enable networking.

jdthood
  • 12,467
6

I've got the same issue. Its a known bug https://bugs.launchpad.net/ubuntu/+source/dbus/+bug/1102507

Using service network-manager restart works through

Heidi
  • 77
  • 1
  • 3
  • This is solution which works always on 16.04. In my experience Ubuntu 16.04 have issues to restart Wi-Fi after returning from hibernation. – danijelc Feb 04 '17 at 15:19
5

I do not really think there's GUI method - by default at least.

I'm also not sure what do You mean by 'restarting networking service', but I feel that the following could help.

Before Ubuntu 16.04

sudo killall NetworkManager 

It kills NetworkManger which automatically restarts after this. It doesn't break the system.

Ubuntu 16.04

sudo killall NetworkManager && sudo NetworkManager

Based on my personal experience, it seems that in Ubuntu 16.04 NetworkManager does not always restart by itself and it's better to start it manually.

kcpr
  • 1,433
5

If you can restart the network using the applet of NetworkManager, you do not need to restart NetworkManager itself (at least, most of the time).

In that case to restart all the connections, use this code from a shell or in a script:

nmcli nm enable false
sleep 5
nmcli nm enable true 

Details can be found in the NetworkManagar command-line interface manual page.

Notice that these commands acts as the applet, so they do not need any additional privilege (no sudo or whatever).

Rmano
  • 31,947
4

In ubuntu 14.04 they have a new "feature" that makes it impossible to restart. Force the interface down and up works.

  sudo ip link set eth0 down
  sudo ip link set eth0 up
2

I am able to restart the network service on ubuntu with command.

 sudo systemctl restart network-manager
2

if ubuntu 14.04 Desktop or Server, you can restart you network by:

sudo -i
( ifdown $(ifquery --list -X lo|xargs echo) && ifup $(ifquery --list -X lo|xargs echo) )&
scue
  • 37
  • I get a ifdown: interface eth0 not configured RTNETLINK answers: File exists Failed to bring up eth0. – wolfgang Sep 22 '15 at 15:58
1

An alternative approach for the server (as of Ubuntu 18.04):

  1. Install ifupdown2 package : apt install ifupdown2

  2. Use service networking restart command

MAQ
  • 141
1

rmano's answer is brilliant. Solves so many issues.

Remark to improve: In U15 I experience a different syntax for nmcli:

For analysis do:

nmcli networking connectivity

To stop service do:

nmcli networking off

and to restart do:

nmcli networking on

No sudo required. Thanks rmano!

muru
  • 197,895
  • 55
  • 485
  • 740
1

This uses Ubuntu's network-manager to disable, then enable eth0:

nmcli nm enable false eth0 && nmcli nm enable true eth0

If your connection has a different name, use it. You can learn your connections name by using the command:

nmcli c status
muru
  • 197,895
  • 55
  • 485
  • 740