如何在Sierra上重新启动网络服务?


14

在FreeBSD / Linux上,可以通过重新启动守护程序来重新启动网络服务。

macOS Sierra中有类似的东西吗?

Answers:


15

您可以使用以下方法拆除并启动网络接口:

sudo ifconfig en0 down
sudo ifconfig en0 up

8

也可以在“系统偏好设置”-“网络”中禁用和启用网络接口。

使服务处于非活动状态


7

不重启的Wi-Fi sudo。有谁知道如何用一个命令来做到这一点?

networksetup -setairportpower en0 off
networksetup -setairportpower en0 on

1
用这两行创建一个shell脚本,或者使用Automator通过这两行从一个shell脚本创建一个应用程序。我只是做后者,似乎工作正常。
Magnus

3
您也许可以&&这样使用:networksetup -setairportpower en0 off && networksetup -setairportpower en0 on对于单个命令。
Atul Yadav
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.