What's new

Guest network - what am I missing?

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

dlandiss

Very Senior Member
ASUS RT-AC86U, Merlin 384.19,
Guest network WPA-Auto-Personal / AES
Bandwidth Limiter Yes, Setting 80Mbps down / 5Mbps up
Access Intranet Disable
(same settings for 2.4G & 5G)
On QoS page, QoS Type Bandwidth Limiter shows enabled

But logged into the guest network I see no limiting, still getting 220Mbps d/l on 5G band. Local network is blocked as requested (ie, cannot reach 192.168.1.1)

What else shall I look for? Thanks!
 
ASUS RT-AC86U, Merlin 384.19,
Guest network WPA-Auto-Personal / AES
Bandwidth Limiter Yes, Setting 80Mbps down / 5Mbps up
Access Intranet Disable
(same settings for 2.4G & 5G)
On QoS page, QoS Type Bandwidth Limiter shows enabled

But logged into the guest network I see no limiting, still getting 220Mbps d/l on 5G band. Local network is blocked as requested (ie, cannot reach 192.168.1.1)

What else shall I look for? Thanks!
You need to update your firmware.
 
Are you saying that the Guest Network is broken in 384.19? We have no need for mesh.
 
Can you post the contents of /tmp/qos
 
SSH into the router and run cat /tmp/qosand then copy/paste the output into a post.
Thanks, Dave. Assume I have never used SSH (I'm best at hardware). I see an attribute for "address" but using "SSH -R 192.168.1.1" returns an error message.
 
Thanks, Dave. Assume I have never used SSH (I'm best at hardware). I see an attribute for "address" but using "SSH -R 192.168.1.1" returns an error message.
Use the following (change admin if applicable):
Code:
ssh admin@192.168.1.1
 
PS C:\WINDOWS\system32> ssh admin@192.168.1.1
admin@192.168.1.1's password:


ASUSWRT-Merlin RT-AC86U 384.19_0 Fri Aug 14 19:19:51 UTC 2020
admin@RT-AC86U-1B60:/tmp/home/root# cat /tmp/qos
cat: can't open '/tmp/qos': No such file or directory
admin@RT-AC86U-1B60:/tmp/home/root#
 
Dave, thanks for your help. I'm going to have to postpone this for a while and get back to it later.
 
Dave, thanks for your help. I'm going to have to postpone this for a while and get back to it later.
It seems like QoS isn’t really enabled if there is no /tmp/qos file.
 
It seems like QoS isn’t really enabled if there is no /tmp/qos file.
Rookie error. I have actually built another local network while setting this up for a friend, and I was looking at the wrong router! From the subject router:

PS C:\WINDOWS\system32> ssh admin@192.168.1.1
The authenticity of host '192.168.1.1 (192.168.1.1)' can't be established.
ECDSA key fingerprint is SHA256:3UqqFkMCiqTDFv7azjioZKNd4tU01hQFRkShIxOaxRA.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '192.168.1.1' (ECDSA) to the list of known hosts.
admin@192.168.1.1's password:


ASUSWRT-Merlin RT-AC86U 384.19_0 Fri Aug 14 19:19:51 UTC 2020
admin@RT-AC86U-Leif:/tmp/home/root# cat /tmp/qos
#!/bin/sh
WAN=eth0
tc qdisc del dev $WAN root 2>/dev/null
tc qdisc del dev $WAN ingress 2>/dev/null
tc qdisc del dev br0 root 2>/dev/null
tc qdisc del dev br0 ingress 2>/dev/null

TQAU="tc qdisc add dev $WAN"
TCAU="tc class add dev $WAN"
TFAU="tc filter add dev $WAN"
SFQ="sfq perturb 10"
TQA="tc qdisc add dev br0"
TCA="tc class add dev br0"
TFA="tc filter add dev br0"

start()
{
$TQA root handle 1: htb
$TCA parent 1: classid 1:1 htb rate 1024000kbit

$TQAU root handle 2: htb
$TCAU parent 2: classid 2:1 htb rate 1024000kbit

$TCA parent 1:1 classid 1:9 htb rate 10240000kbit ceil 10240000kbit prio 1
$TQA parent 1:9 handle 9: sfq perturb 10
$TFA parent 1: prio 1 protocol ip handle 9 fw flowid 1:9

$TCAU parent 2:1 classid 2:9 htb rate 10240000kbit ceil 10240000kbit prio 1
$TQAU parent 2:9 handle 9: sfq perturb 10
$TFAU parent 2: prio 1 protocol ip handle 9 fw flowid 2:9

tc qdisc del dev wl0.2 root 2>/dev/null
GUEST02=wl0.2
TQA02="tc qdisc add dev $GUEST02"
TCA02="tc class add dev $GUEST02"
TFA02="tc filter add dev $GUEST02"

$TQA02 root handle 3: htb
$TCA02 parent 3: classid 3:1 htb rate 81920kbit

$TCA02 parent 3:1 classid 3:10 htb rate 1kbit ceil 81920kbit prio 10
$TQA02 parent 3:10 handle 10: sfq perturb 10
$TFA02 parent 3: prio 10 protocol ip handle 10 fw flowid 3:10

$TCAU parent 2:1 classid 2:10 htb rate 1kbit ceil 5120kbit prio 10
$TQAU parent 2:10 handle 10: sfq perturb 10
$TFAU parent 2: prio 10 protocol ip handle 10 fw flowid 2:10

tc qdisc del dev wl1.2 root 2>/dev/null
GUEST12=wl1.2
TQA12="tc qdisc add dev $GUEST12"
TCA12="tc class add dev $GUEST12"
TFA12="tc filter add dev $GUEST12"

$TQA12 root handle 4: htb
$TCA12 parent 4: classid 4:1 htb rate 81920kbit

$TCA12 parent 4:1 classid 4:11 htb rate 1kbit ceil 81920kbit prio 11
$TQA12 parent 4:11 handle 11: sfq perturb 10
$TFA12 parent 4: prio 11 protocol ip handle 11 fw flowid 4:11

$TCAU parent 2:1 classid 2:11 htb rate 1kbit ceil 5120kbit prio 11
$TQAU parent 2:11 handle 11: sfq perturb 10
$TFAU parent 2: prio 11 protocol ip handle 11 fw flowid 2:11
}

stop()
{
#ebtables -t nat -F

tc qdisc del dev $WAN root 2>/dev/null
tc qdisc del dev br0 root 2>/dev/null
tc qdisc del dev wl0.2 root 2>/dev/null
tc qdisc del dev wl1.2 root 2>/dev/null
}

show()
{
tc -s -d class ls dev $WAN
tc -s -d class ls dev br0
}

if [ $# != 1 ]; then
echo "Usage: $0 start/stop/restart"
else
if [ $1 = "start" ]; then
start
elif [ $1 = "stop" ]; then
stop
elif [ $1 = "restart" ]; then
stop
start
fi
fi
admin@RT-AC86U-Leif:/tmp/home/root#
 

Attachments

  • GuestConfig1.jpg
    GuestConfig1.jpg
    93 KB · Views: 105
But still no bandwidth cap.:confused:
 
2.4GHz Guest Network is capped under 100Mbps anyway, remove the 5GHz one. The hardware solution. :)
 
2.4GHz Guest Network is capped under 100Mbps anyway, remove the 5GHz one. The hardware solution. :)
Great idea, Tech9 :D . I will do that until we find the cause.
 
Check what Tools page shows for Runner and Flow Cache when Bandwidth Limiter is activated. It may not work correctly with hardware acceleration.
 
Check what Tools page shows for Runner and Flow Cache when Bandwidth Limiter is activated. It may not work correctly with hardware acceleration.
Thanks -- I have already boxed them up to return to the friend (with the Guest Network offering 2.4GHz only).
 
I believe Bandwidth Limiter disables Runner and Flow Cache. There is a chance you converted your friend's Gigabit router into up to 300Mbps router. If he has >300Mbps ISP, he may find entire network limited by the CPU processing speed.
 
I believe Bandwidth Limiter disables Runner and Flow Cache. There is a chance you converted your friend's Gigabit router into up to 300Mbps router. If he has >300Mbps ISP, he may find entire network limited by the CPU processing speed.
Thanks for the tip, 9. Whatever degradation may be taking place does not appear to affect her. She is paying Spectrum for 400Mbps down, and getting 450.
 

Similar threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top