Hi All,
We have the separate button for Wifi ON/OFF in our custom board. I want to know how to turn OFF the Wifi module
by linux command. Or any other possibilies.
Regards
Balaji
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi All,
We have the separate button for Wifi ON/OFF in our custom board. I want to know how to turn OFF the Wifi module
by linux command. Or any other possibilies.
Regards
Balaji
Hi Balaji,
ifconfig -a - this will list all your interfaces (active and non-active)
ifconfig - this will list only your active interfaces
Find the name of the wireless interface (usually wlan0)
ifconfig wlan0 down - disable it
ifconfig wlan0 up - enable it
Best regards,
Miroslav