Created
February 4, 2011 18:10
-
-
Save mbmccormick/811480 to your computer and use it in GitHub Desktop.
Connect your Google Cr-48 laptop to PAL2.0 at Purdue.
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
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