Last active
November 20, 2017 19:37
-
-
Save casouri/fc445085eeb1c87785bab800c9fe11ee to your computer and use it in GitHub Desktop.
connect to psu wireless # linux # wpa_supplicant example #raspberry pi
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
# After several days experiment, I finally connected my RPi to psu wireless. | |
# Hope this helps anyone with the same issue | |
# Note: to convert the downloaded .der certidifate to .pem format, | |
# use `openssl x509 -inform der -in certificatename.der -out certificatename.pem` as provided at https://search.thawte.com/support/ssl-digital-certificates/index?page=content&actp=CROSSLINK&id=SO26449 | |
network={ | |
ssid="psu" | |
key_mgmt=WPA-EAP | |
eap=TTLS | |
identity="[email protected]" | |
password="your-password" | |
ca_cert="downloaded-ca-certificate.pem" | |
phase2="auth=PAP" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment