This is what chatGPT said but my goal in posting on this forum was to get expert advice from the forum as I know AI isn't always correct. I'm not sure I can configure professional settings on VLAN. I'll have to look at some of this stuff later when family isn't on internet.
I have Merlin v3006.102.5 on GT-AX6000. I set up "Guest Network Pro - IoT Network" and noticed roku device reported "fair" signal when connected to that versus "excellent" when connected to main network.
ChatGPT said:
Excellent observation — and yes, what you’re seeing
can absolutely happen, and it’s not a coincidence.
Your setup (GT-AX6000 running
ASUSWRT-Merlin 3006.102.5) uses the new
Guest Network Pro (GNP) implementation, which relies on
VLAN-based segmentation under the hood. The “IoT Network” you created is not just a renamed SSID — it’s an
entirely separate virtual interface, with its own VLAN tag, virtual bridge (
brX
), and sometimes
different wireless scheduling and airtime rules.
Let’s break down
why your Roku reports “fair” signal on the IoT VLAN but “excellent” on the main SSID.
1. Different Virtual Interface Path
When you create an IoT SSID under Guest Network Pro:
- ASUSWRT internally creates a separate virtual wireless interface, e.g.
- Main 2.4GHz →
wl0
- IoT 2.4GHz →
wl0.1
- Main 5GHz →
wl1
- IoT 5GHz →
wl1.1
- Each virtual interface has its own beacon, BSSID (MAC address), and sometimes different transmit power and airtime priority.
This means your Roku is not actually connecting to the same physical radio instance — it’s connecting to a
VAP (Virtual Access Point) layered on the same hardware but possibly with:
- Lower transmit power, or
- Different QoS weighting, or
- Extra VLAN encapsulation overhead.
2. Guest Network Pro – IoT Mode Behavior
Guest Network Pro is designed to
isolate IoT devices for security, not optimize for throughput. It applies:
- VLAN tagging and firewall isolation (
br2
or br3
instead of br0
)
- Optionally disables multicast-to-unicast conversions (affects discovery)
- May disable 802.11k/v/r roaming optimizations on those VAPs
- Sometimes reduces beacon interval or transmit power slightly to prevent overlapping with main SSIDs
That last factor (slightly lower Tx power or reduced MCS rate adaptation aggressiveness) can cause devices like Roku — which rely on signal-to-noise and rate adaptation feedback — to label it as “fair” signal even though physically it’s the same antenna.
3. Signal Quality vs. PHY Rate
Roku’s “signal quality” metric is derived from
RSSI + SNR + PHY rate negotiation, not just power.
Because the IoT VLAN interface might:
- Use a different basic rate set
- Enforce legacy compatibility (802.11b/g/n only) on the 2.4GHz IoT SSID
- Omit beamforming or MU-MIMO flags
… the reported “signal quality” can drop even though RSSI in dBm hasn’t changed.
You can verify this by comparing the two in the router UI or SSH:
Code:
wl -i wl0.1 rssi
wl -i wl0 rssi
If RSSI is identical, it’s not signal power — it’s PHY rate differences.
4. How to Fix or Improve It
If you want your IoT SSID to behave
identically to your main one in radio performance but still keep VLAN isolation:
- Use the same band and channel settings as the main SSID
→ Ensure the IoT SSID isn’t limited to 2.4GHz if your Roku supports 5GHz.
- Enable “Smart Connect” exclusions manually
→ Sometimes Smart Connect prioritizes main SSIDs with higher airtime weight.
- In the Wireless > Professional tab, for your IoT VAP (e.g. wl0.1 or wl1.1):
- Disable Airtime Fairness
- Enable Explicit Beamforming
- Set Tx Power Adjustment = 0 dB (default)
- Ensure Multicast rate = “Auto” (not fixed low)
- Optionally test without VLAN isolation
Temporarily assign the IoT SSID to br0
(main LAN bridge) to confirm it’s not radio-level — if signal returns to “excellent,” it’s a VLAN interface policy difference, not RF attenuation.
5. Summary
Factor | Main SSID | IoT SSID (Guest Network Pro) | Effect |
---|
Bridge | br0 | br2 / br3 | Isolated VLAN |
Interface | wl0 / wl1 | wl0.1 / wl1.1 | Separate virtual radio |
Tx power | Full | Sometimes reduced | |
802.11k/v/r | Enabled | Often disabled | |
Beamforming | On | May be off | |
QoS/Airtime | Normal | Deprioritized | |
Roku Signal | Excellent | Fair | |