Created
April 18, 2020 14:03
-
-
Save StanBoyet/59c5eeca68b1d8be6d06cc2bff2d058a to your computer and use it in GitHub Desktop.
Raspberry Pi Headless Wifi Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To place /etc/wpa_supplicant/wpa_supplicant.conf | |
# Adapted from https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md | |
# Needed for compability with the latest Buster Raspbian release | |
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
country=FR | |
network={ | |
ssid="ssid name" | |
scan_ssid=1 # Needed for hidden SSID | |
id_str="home" | |
psk="yourPassword" | |
priority=1 | |
} | |
network={ | |
ssid="ssid name 2" | |
id_str="work" | |
psk="yourPassword" | |
priority=2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment