EZ Linux Admin random header image

How do I restart Linux network service?

May 14th, 2012 by EZ linux · No Comments

RedHat Linux command to reload or restart network (login as root user):

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

To start Linux network service:
# service network start

To stop Linux network service:
# service network stop

Debian Linux command to reload or restart network:
# /etc/init.d/networking restart

To start Linux network service:
# /etc/init.d/networking start

To stop Linux network service:
# /etc/init.d/networking stop

Ubuntu Linux user use sudo command with above Debian Linux command:
# sudo /etc/init.d/networking restart

To start Linux network service:
# sudo /etc/init.d/networking start

To stop Linux network service:
# sudo /etc/init.d/networking stop

Tags: Cheat Sheets · Linux Software / Scripts · Linux Tricks

0 responses so far ↓

  • There are no comments yet...Kick things off by filling out the form below.

Leave a Comment