Skip to content

Instantly share code, notes, and snippets.

@mbmccormick
Created February 4, 2011 18:10
Show Gist options
  • Save mbmccormick/811480 to your computer and use it in GitHub Desktop.
Save mbmccormick/811480 to your computer and use it in GitHub Desktop.
Connect your Google Cr-48 laptop to PAL2.0 at Purdue.
shell
sudo su
wpa_cli
add_network # using the number returned by this command as XX below...
set_network XX ssid "PAL2.0"
set_network XX scan_ssid 1
set_network XX proto WPA
set_network XX priority 1
set_network XX key_mgmt WPA-EAP
set_network XX eap PEAP
set_network XX identity "yourusername"
set_network XX password "yourpassword"
set_network XX phase2 "auth=MSCHAPV2"
select_network XX
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment