Created
June 9, 2019 13:23
-
-
Save adil1214/74104745c11b4ddb995bfc0b1c2b3dcd to your computer and use it in GitHub Desktop.
crontab commands to shutdown wireless & client mode in wisp mode (openwrt)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#crontab | |
# disable/enable wireles interface (@wifi-iface)/(client) | |
# this is to disable (at 21:10 everyday) | |
10 21 * * * uci set wireless.@wifi-iface[3].disabled='1' ; wifi | |
# and this to enable (...) | |
13 21 * * * uci delete wireless.@wifi-iface[3].disabled ; wifi | |
# ================================= | |
# disable/enable ap (...) | |
10 21 * * * uci set wireless.@wifi-iface[1].disabled='1'; wifi | |
13 21 * * * uci set wireless.@wifi-iface[1].disabled='0'; wifi | |
# careful; if you enable 2+ ifaces at the same time = problems |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment