Skip to content

Instantly share code, notes, and snippets.

@casouri
Last active November 20, 2017 19:37
Show Gist options
  • Save casouri/fc445085eeb1c87785bab800c9fe11ee to your computer and use it in GitHub Desktop.
Save casouri/fc445085eeb1c87785bab800c9fe11ee to your computer and use it in GitHub Desktop.
connect to psu wireless # linux # wpa_supplicant example #raspberry pi
# 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="your-id@psu.edu"
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