Fastest reconnection possible

Hi all!
I’m new to GL.iNet. I’m using my arm300m16 as repeater. Since every time I’m connected to the network I’m repeating more than 15 minutes the bandwidth gets limited, I’d like to disconnect GL.iNet from the network and reconnect it. I’m currently using the scheduled task window and an “ifup interfacename” command to reconnect to the network interface related to the WiFi I’m repeating. Is there any more clever way to do it fastly?

Thanks!

Is this the upstream AP issue or AR300M16 issue?

OpenWRT supports schedule task. Here is an example of reconnecting every 15 minutes.

/etc/init.d/cron enable

vi /etc/crontabs/root
*/5 0 * * * ifdown wlan-sta; sleep 2; ifup wlan-sta

/etc/init.d/cron restart

Thanks for the answer!
Sorry but I’m too noob to know anything about the upstream issue. Could you please give me more information (maybe a link to a page where I can read something)?
Thanks again

advanced settings (luci) → system → scheduled tasks.

Fill the following

*/5 0 * * * ifdown wlan-sta; sleep 2; ifup wlan-sta

Then ssh to the router and execute the following. SSH docs can be found here: SSH to the Router - GL.iNet Docs

/etc/init.d/cron enable
/etc/init.d/cron restart