Ultra W model missing connection by Wi-Fi
Posted: 2026-04-14 16:46
1. Scenario:
A Luckfox Pico Ultra W is connected via Wi-Fi using /etc/wpa_supplicant.conf. The device initially operates normally, but after approximately 0–15 minutes, it becomes unreachable via both SSH and ICMP (ping).
2. Steps to Reproduce
2.1 Configure Wi-Fi connection via /etc/wpa_supplicant.conf
2.2 Disable Wi-Fi power saving:
2.2.1 iw dev wlan0 set power_save off
2.3 Operate the device normally
2.4 Within 0–15 minutes:
2.4.1 SSH connection drops
2.4.2 Ping stops responding
3. Observed Behavior
3.1 The board remains powered on (no reboot or shutdown symptoms)
3.2 Network connectivity is completely lost (Wi-Fi and later Ethernet)
3.3 Even after plugging in Ethernet, SSH/ping cannot be restored
3.4 Recovery requires a manual power cycle
4. Key Finding
4.1 The issue appears specific to Wi-Fi environments using a single SSID with both 2.4 GHz and 5 GHz bands (band steering / dual-band SSID)
4.2 When connected to a 2.4 GHz-only SSID, the device:
4.2.1 Remains stable
4.2.2 Does not lose connectivity over time
Is it possible to restrict the device to 2.4 GHz only via /etc/wpa_supplicant.conf to avoid instability?
I've tried the following
network={
ssid="YOUR_SSID"
psk="YOUR_PASSWORD"
scan_freq=2412 2437 2462
}
network={
ssid="YOUR_SSID"
psk="YOUR_PASSWORD"
freq_list=2412
}
A Luckfox Pico Ultra W is connected via Wi-Fi using /etc/wpa_supplicant.conf. The device initially operates normally, but after approximately 0–15 minutes, it becomes unreachable via both SSH and ICMP (ping).
2. Steps to Reproduce
2.1 Configure Wi-Fi connection via /etc/wpa_supplicant.conf
2.2 Disable Wi-Fi power saving:
2.2.1 iw dev wlan0 set power_save off
2.3 Operate the device normally
2.4 Within 0–15 minutes:
2.4.1 SSH connection drops
2.4.2 Ping stops responding
3. Observed Behavior
3.1 The board remains powered on (no reboot or shutdown symptoms)
3.2 Network connectivity is completely lost (Wi-Fi and later Ethernet)
3.3 Even after plugging in Ethernet, SSH/ping cannot be restored
3.4 Recovery requires a manual power cycle
4. Key Finding
4.1 The issue appears specific to Wi-Fi environments using a single SSID with both 2.4 GHz and 5 GHz bands (band steering / dual-band SSID)
4.2 When connected to a 2.4 GHz-only SSID, the device:
4.2.1 Remains stable
4.2.2 Does not lose connectivity over time
Is it possible to restrict the device to 2.4 GHz only via /etc/wpa_supplicant.conf to avoid instability?
I've tried the following
network={
ssid="YOUR_SSID"
psk="YOUR_PASSWORD"
scan_freq=2412 2437 2462
}
network={
ssid="YOUR_SSID"
psk="YOUR_PASSWORD"
freq_list=2412
}