-2

What is the proper format of adding in multiple SSID's? I have the following below. Do I add a comma like in JSON format?

    # For more configuration option please see:
    # https://w1.fi/cgit/hostap/plain/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
ap_scan=1

network={
ssid="x"
    # Uncomment to connect to Hidden SSIDs
    #scan_ssid=1 
    key_mgmt=WPA-PSK
    pairwise=CCMP TKIP
    group=CCMP TKIP WEP104 WEP40
    psk="_______"
    priority=2
}

JoSSte
  • 147
  • 10
Patoshi パトシ
  • 559
  • 3
  • 9
  • 16

1 Answers1

0

You add multiple network stanzas.

What you have listed is incorrect for the Pi (and most Linux OS) - among other things you omitted Country Code.

See https://raspberrypi.stackexchange.com/a/37921/8697

Milliways
  • 62,573
  • 32
  • 113
  • 225