From the Web UI of the Asus Router there is no option to limit the guest network bandwidth, but it is a feature that would sure be useful.Does anyone know of a way to limit the amount of bandwidth that the guest network can consume?
Thanks
If you decide to go the additional hardware approach vs a script consider just taking an old WiFi router and repurpose it as an AP and set the radio to connect as a B only radio. Let your guests only connect to this router's SSID. This will limit the guest clients connecting on the guest AP to no more than 5 - 7 Mbps on a link rate of 11 Mbps.Does anyone know of a way to limit the amount of bandwidth that the guest network can consume?
Thanks
Does anyone know of a way to limit the amount of bandwidth that the guest network can consume?
Thanks
Not sure if ASUS enabled it yet, but try putting the interface name for the guest network in the target field (wl0.1 for the first 2.4GHz guest, wl1.1 for the first 5GHz guest, etc.)From the Web UI of the Asus Router there is no option to limit the guest network bandwidth, but it is a feature that would sure be useful.
If I add wl0.1 from the UI it disappears.Not sure if ASUS enabled it yet, but try putting the interface name for the guest network in the target field (wl0.1 for the first 2.4GHz guest, wl1.1 for the first 5GHz guest, etc.)
EDIT: I have it enabled on my fork, and it appears to work well.
Looks like Merlin called it then.....not yet implemented in the gui. They may also be continuing work on trying to make it compatible with CTF on.If I add wl0.1 from the UI it disappears.
Hi,
an unrelated question to the thread :
is the "qos type" options i see in the screenshot only present in newer asus routers ?
I have an RT-AC66U, and i dont have such options, can i enable them somehow ?
Thank you !
#!/bin/sh
tc qdisc add dev wl0.1 handle 1: root htb default 11
tc class add dev wl0.1 parent 1: classid 1:1 htb rate 250kbps
tc class add dev wl0.1 parent 1:1 classid 1:11 htb rate 15kbps
touch /tmp/000wanstarted
EDIT: Cannot be used to bandwidth limit a guest network interfaceAny help?
#!/bin/sh
/usr/sbin/nvram set qos_enable=1
/usr/sbin/nvram set qos_type=2
/usr/sbin/nvram set qos_bw_rulelist="1>AA:BB:CC:DD:EE:FF>250>15>0"
/usr/sbin/nvram commit
/sbin/service restart_qos
/sbin/service restart_firewall
/sbin/service restart_vpnserver1
I correct the script above with MAC address.... it doesn't work.
#!/bin/sh
/usr/sbin/nvram set qos_enable=1
/usr/sbin/nvram set qos_type=2
/usr/sbin/nvram set wl0.1_bw_enabled=1
/usr/sbin/nvram set wl0.1_bw_dl=250
/usr/sbin/nvram set wl0.1_bw_ul=15
/usr/sbin/nvram commit
/sbin/reboot # to disable CTF?
#!/bin/sh
/usr/sbin/nvram set qos_enable=1
/usr/sbin/nvram set qos_type=2
/usr/sbin/nvram set wl0.1_bw_enabled=1
/usr/sbin/nvram set wl0.1_bw_dl=800
/usr/sbin/nvram set wl0.1_bw_ul=100
/usr/sbin/nvram commit
/sbin/reboot # to disable CTF?
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!