Differences between revisions 1 and 2
Revision 1 as of 2017-08-04 00:07:39
Size: 440
Editor: CarlNobile
Comment:
Revision 2 as of 2017-08-04 00:10:23
Size: 571
Editor: CarlNobile
Comment:
Deletions are marked like this. Additions are marked like this.
Line 26: Line 26:

Make sure the wlan0 interface is up:

{{{
$ sudo ifdown wlan0 # May give an error if not up already.
$ sudo ifup wlan0
}}}

Raspberry Pi WIFI Conf

Edit the /etc/wpa_supplicant/wpa_supplicant.conf

$ sudo nano wpa_supplicant/wpa_supplicant.conf

Add lines to what already is there, like so:

network={
        ssid="MyHome-A"
        psk="MyHome-A Password"
        id_str="HomeA"
        priority=1
}

network={
        ssid="MyHome-B"
        psk="MyHome-B Password"
        id_str="HomeB"
        priority=2
}

Make sure the wlan0 interface is up:

$ sudo ifdown wlan0 # May give an error if not up already.
$ sudo ifup wlan0

RPI-WIFI-Conf (last edited 2017-08-04 00:10:23 by CarlNobile)