Page 1 of 1

Multiple WiFi APs with the same SSID?

Posted: Wed Aug 29, 2018 7:27 pm
by vonnieda
Hi all,

Can anyone tell me how the ESP32 decides which AP to connect to when there are multiple APs with the same SSID? For instance, in mesh networks there may be several APs with the same SSID and different BSSID. If I tell the ESP32 to connect to the SSID (and not the BSSID) how does it pick one? Does it use the lowest RSSI?

Thanks,
Jason

Re: Multiple WiFi APs with the same SSID?

Posted: Wed Aug 29, 2018 8:47 pm
by Deouss
I guess first one that catches the signal

Re: Multiple WiFi APs with the same SSID?

Posted: Thu Aug 30, 2018 3:16 pm
by fly135
vonnieda wrote:Does it use the lowest RSSI?
Testing on my project has indicated it does not choose the one with the lowest RSSI. And you need to use BSSI if you want to use a specific AP.

John A

Re: Multiple WiFi APs with the same SSID?

Posted: Thu Aug 30, 2018 3:33 pm
by vonnieda
fly135 wrote:
vonnieda wrote:Does it use the lowest RSSI?
Testing on my project has indicated it does not choose the one with the lowest RSSI. And you need to use BSSI if you want to use a specific AP.

John A
Thanks John! We're starting to deal with more WiFi "mesh" networks and these seem to present as a bunch of APs with the same SSID but different BSSIDs. Right now we connect by SSID but if that's not connecting to the strongest signal it seems like we might need to start scanning and connect by BSSID.

Jason