This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
WiFi access point stability
#1
Has anyone found the RPI5 WiFi AP unstable? VNC keeps freezing and disconnecting, and OpenCPN on a tablet keeps losing connection every few seconds. I've disabled power-saving on the AP endpoint, but it didn't make any difference. Spent literally two hours trying different "fixes" the AI suggested, and nothing made any difference.

From what I've read, this seems to be a common issue, but has anyone found a solution? I'm thinking it may be time to give up and get an external router.
Reply
#2
Most disconnection issues i have had have been on the laptop/tablet connecting to the Pi, though a recent session on claude pro change a few settings which seem to have helped.

This will backup your existing settings (assuming name is OpenPlotter-Hotspot)
Quote:
Code:
sudo cp /etc/NetworkManager/system-connections/OpenPlotter-Hotspot.nmconnection ~/OpenPlotter-Hotspot.nmconnection.bak


Changes
Quote:Changes made on the Raspberry Pi
1. DTIM period tuning
Code:
sudo nano /etc/NetworkManager/system-connections/OpenPlotter-Hotspot.nmconnection

Added to the [wifi] section:
Code:
dtim-period=1

2. Disabled AP powersave
Code:
sudo nmcli connection modify OpenPlotter-Hotspot 802-11-wireless.powersave 2
sudo nmcli connection reload
sudo nmcli connection down OpenPlotter-Hotspot
sudo nmcli connection up OpenPlotter-Hotspot

3. Hotspot reset (fixed Windows failing to connect)
Code:
sudo nmcli connection down OpenPlotter-Hotspot && sudo nmcli connection up OpenPlotter-Hotspot

4. Installed missing OpenCPN plugin (separate issue — peer discovery)
sudo apt install opencpn-plugin-send2peer
Diagnostic-only commands (no changes), used to confirm root cause:
Code:
sudo iw dev wlan0 scan | grep -E "SSID|signal|channel"
sudo iw dev wlan0 station dump
ss -ulnp | grep opencpn
nmcli connection show OpenPlotter-Hotspot
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)