FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

14455 questions

17168 answers

28195 comments

0 members

We are migrating to our new platform at https://community.teltonika.lt. Moving forward, you can continue discussions on this new platform. This current platform will be temporarily maintained for reference purposes.
0 votes
253 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 anonymous
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