Device: GL.iNet GL-BE3600 (Slate 7)
SoC: Qualcomm IPQ5332/AP-MI04.1-C2
Firmware: Admin Panel v4.10.0
Kernel: Linux 5.4.213 #0 SMP PREEMPT Fri Sep 11 12:40:19 2026
Base: OpenWrt 23.05-SNAPSHOT r0-3601c2a49
Timeline:
- Router ran stably in WISP client (repeater) mode.
- After a firmware update the device became unstable (general malfunction, no further detail captured). Reboot and a hard power cycle did not restore normal operation.
- Only a full factory reset restored basic function. LAN IP changed as a side effect of the reset (192.168.7.1 -> 192.168.11.1), noted here only as context, not itself a bug.
- After the reset, WISP client mode stopped working entirely: no scan results, no connection attempt, no error shown in the Admin Panel — reproduced against two different target APs (the previously-used office AP and a freshly selected phone hotspot).
Root cause 1 — STA interface left disabled after reset:
uci show wireless showed the client interface fully configured (target SSID, BSSID, PSK) but with disabled='1':
wireless.sta=wifi-iface
wireless.sta.mode='sta'
wireless.sta.device='wifi1'
wireless.sta.network='wwan'
wireless.sta.ssid='<redacted>'
wireless.sta.disabled='1'
ubus call network.wireless status did not list this interface among active ones at all — the Admin Panel repeater UI gave no indication that the underlying interface was switched off.
Fix: uci set wireless.sta.disabled='0'; uci commit wireless; wifi reload. Radio association then succeeded immediately (iwinfo sta1 info: RSSI -33dBm, 688 MBit/s link rate, full link quality) — confirms the wifi hardware/driver was fine the whole time; the interface was just never brought up.
Root cause 2 — wwan logical interface missing device binding:
Despite a successful L2 association, traffic still did not pass. ifstatus wwan returned:
{"up": false, "available": false, "errors": [{"subsystem": "interface", "code": "NO_DEVICE"}]}
uci show network.wwan had proto/metric/mtu set but no device field at all, so netifd had nothing to bind the DHCP client to.
Fix: uci set network.wwan.device='sta1'; uci commit network; ifup wwan. DHCP completed immediately after.
Secondary observation (possibly related): wireless.sta.sae='1' is set in config, but the live negotiated encryption reported by iwinfo sta1 info was WPA2 PSK (CCMP), not SAE. The SAE flag does not appear to be enforced or reflected in the actual association. Did not block connectivity once the interface was enabled, but looks like a config/UI inconsistency worth checking.
Expected: after a factory reset, either WISP client mode is fully functional again after reconfiguration through the Admin Panel, or the UI surfaces a clear error when the underlying STA interface is disabled or the wwan network has no device bound — instead of silently doing nothing.
Actual: both failures were completely silent from the Admin Panel's perspective; diagnosis required SSH + uci/ubus/iwinfo/logread.
This looks related to a long-standing, recurring class of issue reported across multiple GL.iNet models and firmware versions:
- "Repeater (STA) is disabled" after a while
- "Repeater (STA) is disabled, can't enable" (topic #43421)
- "GL-AXT1800 4.1.0 r7 wireless repeater shown as disabled" (topic #25930)
Checked the v4.10.1 changelog before updating — no mention of a fix for repeater/STA/wwan handling, so filing this against v4.10.0 behavior which likely still applies.

