Learn how to Reboot Networking on Mac from CLI

0
6
Adv1


Adv2

If it’s essential to reboot, or restart the networking interface in your Mac, by utilizing the CLI, then you possibly can difficulty the next instructions:

Utilizing the ifconfig main interface

Tear down the networking interface

sudo ifconfig en0 down

Restart the networking interface

sudo ifconfig en0 up

Confirm the networking restart

ifconfig -u en0

Various with out sudo, utilizing networksetup

If it’s essential to carry out the identical consequence, however not capable of run sudo, then look to the networksetup.

Tear down the networking interface

networksetup -setairportpower en0 off
# or
networksetup -setairportpower "Wi-Fi" off

Restart the networking interface

networksetup -setairportpower en0 on
# or
networksetup -setairportpower "Wi-Fi" on

For extra data

For extra data on the above instructions, check out the person pages.

man ifconfig
man networksetup
Adv3