If you had upgraded to our v3.x firmware, it supports Qos, but it only can limit the bandwidth for device, not for interface.

If you want to limit the bandwidth for interface, you should reset it to factory setting, and ssh to the router, commands looks like:

upload:

tc qdisc add dev WAN_INTERFACE handle 1: root htb default 11

tc class add dev WAN_INTERFACE parent 1: classid 1:1 htb rate 1000Mbps

tc class add dev WAN_INTERFACE parent 1:1 classid 1:11 htb rate 1Mbit

下载

tc qdisc add dev br-guest handle 1: root htb default 11

tc class add dev br-guest parent 1: classid 1:1 htb rate 1000Mbps

tc class add dev br-guest parent 1:1 classid 1:11 htb rate 1Mbit

Not sure which model are you using, please change the WAN_INTERFACE to its wan interface.

1 Like