eric
14
There are many ways to disable the service from the shell:
/etc/init.d/mwan3 stop
/etc/init.d/mwan3 disable
You can re-enable it with:
/etc/init.d/mwan3 enable
or you can just rename the start link or the start script. By renaming it back to the original, the service will be re-enabled.
mv /etc/rc.d/Smwan3 /etc/rc.d/smwan3
or
mv /etc/init.d/mwan3 /etc/init.d/mwan3.save
My preference is just to be done with it, and remove it with:
opkg remove mwan3
1 Like