FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

13387 questions

15914 answers

25762 comments

50508 members

0 votes
212 views 0 comments
by
Is there a way to temporarily disable the WIFI access point of RUT240 without going through the WebUI? (e.g. with a special command via the LAN port)

1 Answer

0 votes
by
Use UCI to do it from the command prompt or programatically, this will do interface 1 but you can add more for interface 2 etc.
#disable 
                        uci set wireless.@wifi-iface[1].user_enable=0 
                        uci set wireless.@wifi-iface[1].disabled=1
 

 # enable
                        uci set wireless.@wifi-iface[1].user_enable=1 
                        uci delete wireless.@wifi-iface[1].disabled
 
Best answer