Created
August 20, 2013 15:43
-
-
Save nullvariable/6283189 to your computer and use it in GitHub Desktop.
connect Raspberry Pi to Wifi
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
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf | |
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
network={ | |
ssid="YOURSSID" | |
psk="YOURPASSWORD" | |
# Protocol type can be: RSN (for WP2) and WPA (for WPA1) | |
proto=WPA | |
# Key management type can be: WPA-PSK or WPA-EAP (Pre-Shared or Enterprise) | |
key_mgmt=WPA-PSK | |
# Pairwise can be CCMP or TKIP (for WPA2 or WPA1) | |
pairwise=TKIP | |
#Authorization option should be OPEN for both WPA1/WPA2 (in less commonly used are SHARED and LEAP) | |
auth_alg=OPEN | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment