Are you using a third-party program from the Ports Collection
My wpa is pretty minimal:A wifi access point can be configured to be "open", and not require a password to connect to it. Your wpa_supplicant.conf file probably has something in it that allows connecting to such a network automatically (no matter what the ssid is) if it can't connect to any other network.
ctrl_interface=/var/run/wpa_supplicant
eapol_version=2
ap_scan=1
fast_reauth=1
network={
ssid="my_ssid"
scan_ssid=0
psk="my_ssid_password"
priority=5
}
network={
priority=0
key_mgmt=NONE
}
I'm curious about this; on 16.0-CURRENT a few days ago I could have a wpa_supplicant with no mention of aOutstanding, this appears to be resolved. Deleting the second entry is the solution.
key_mgmt=NONE entry, and still get auto-connected to a nearby open xfinitywifi AP.ee '/etc/wpa_supplicant.conf'
network={
ssid="Main (5GHz)"
psk=x
key_mgmt=WPA-PSK
priority=4
}
network={
ssid="Hotspot1"
psk=x
key_mgmt=WPA-PSK
priority=3
}
network={
ssid="Hotspot2"
psk=x
key_mgmt=WPA-PSK
priority=2
}
# End
psk=x changed to encrypted keys from wpa_passphrase. wpa_supplicant on htop showed it using -c /etc/wpa_supplicant.conf (on the right file seemingly), but I don't know how it still can connect to xfinitywifi (it'd auto-connect to it if I broke the psk for Main) even with all priority lowered so Hotspot2 was 0 and Main 2.