通过命令行关闭Wifi


Answers:


16

您可以使用此功能将其关闭:

sudo ifconfig en1 down

如果你想要得到它备份,只需键入起来,而不是下降

只要确保en1是正确的接口,否则您就可以轻松终止ssh访问:)

PS如Lri在下面的注释中所述,您可以仅用1行快速禁用正确的网络接口:

sudo ifconfig `networksetup -listallhardwareports | grep -E '(Wi-Fi|AirPort)' -A 1 | grep -o "en."` down

这将检测到正确的机场/无线设备并将其关闭


en0在MacBook Air上。您可以使用查找设备名称networksetup -listallhardwareports | grep -E '(Wi-Fi|AirPort)' -A 1 | grep -o "en."
Lri 2012年

4

尝试

networksetup -setairportpower en0 off
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.