Wifi -- how to configure anonymous ztanza in wpa_supplicant.conf?

Hi all,

I have wifi working great from my house, with an SSID and password and the whole thing, but I can't figure out how to write a stanza in wpa_supplicant.conf for anonymous connections, like from a cafe or the like.

Any ideas/ models?

I think that if I have scan_ssid=10 for my home network, and scan_ssid=1 for the anonymous, then I can add lots of scan_ssid=5 for specific networks that I only use rarely (xyz hotel, etc)

Thanks!
 
To connect to any unencrypted network use
Code:
network={
      key_mgmt=NONE
}
 
Back
Top