Created
November 19, 2018 13:00
-
-
Save davidhoness/5ee50e881b63c7944c25b8de33453823 to your computer and use it in GitHub Desktop.
Connecting a Raspberry Pi to WPA2 Enterprise Wireless Network
This file contains 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
network={ | |
ssid="ssid" | |
scan_ssid=1 | |
key_mgmt=WPA-EAP | |
group=CCMP TKIP | |
eap=PEAP | |
identity="username" | |
password=hash:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | |
phase1="peapver=0" | |
phase2="MSCHAPV2" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tested on Raspbian Stretch.
Never store your password as plain text on a Raspberry Pi file system. Generate a password hash
Take the 32 character long code and replace the X's in the password line of the template
wpa_supplicant.conf
Also update the
ssid
andidentity
fields with the correct information.Ctrl - O
followed byEnter
to save, andCtrl - X
to quit from nanoApply the config and the Raspberry Pi should connect after a moment
Clear the command line history to remove a record of your password being typed into the terminal