Difference between revisions of "Wireless"
Jump to navigation
Jump to search
m (add to Systems category) |
(added eduroam configs for netcfg(arch linux), wicd) |
||
Line 1: | Line 1: | ||
− | '''csc-wireless no longer exists. Members are advised to use |
+ | '''csc-wireless no longer exists. Members are advised to use eduroam or uw-unsecured.''' |
+ | |||
+ | |||
+ | == Rosetta Stone == |
||
+ | |||
+ | === Linux === |
||
+ | ==== netcfg ==== |
||
+ | Toss this into /etc/network.d/, making sure you edit identity and password. sudo netcfg eduroam |
||
+ | |||
+ | CONNECTION='wireless' |
||
+ | INTERFACE=wlan0 |
||
+ | SECURITY='wpa-configsection' |
||
+ | # Uncomment this if your ssid is hidden |
||
+ | #HIDDEN=yes |
||
+ | IP='dhcp' |
||
+ | CONFIGSECTION=' |
||
+ | ssid="eduroam" |
||
+ | proto=RSN |
||
+ | key_mgmt=WPA-EAP |
||
+ | pairwise=CCMP |
||
+ | group=CCMP |
||
+ | eap=PEAP |
||
+ | #anonymous_identity="anonymous" |
||
+ | identity="userid@uwaterloo.ca" |
||
+ | password="hunter2" |
||
+ | ca_cert="/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt" |
||
+ | phase2="auth=MSCHAPV2" |
||
+ | priority=1' |
||
+ | |||
+ | ==== wicd ==== |
||
+ | Toss this into /etc/wicd/encryption/templates/ and edit /etc/wicd/encryption/templates/active to include a line with eduroam. |
||
+ | |||
+ | name = Eduroam UW |
||
+ | author = Steven She |
||
+ | version = 1 |
||
+ | require username *Username password *Password |
||
+ | ----- |
||
+ | ctrl_interface=/var/run/wpa_supplicant |
||
+ | network={ |
||
+ | ssid="$_ESSID" |
||
+ | scan_ssid="$_SCAN" |
||
+ | proto=RSN |
||
+ | key_mgmt=WPA-EAP |
||
+ | pairwise=CCMP |
||
+ | group=CCMP |
||
+ | eap=PEAP |
||
+ | identity="$_USERNAME" |
||
+ | password="$_PASSWORD" |
||
+ | ca_cert="/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt" |
||
+ | phase2="auth=MSCHAPV2" |
||
+ | } |
||
The previous setup has been [http://wiki.csclub.uwaterloo.ca/Wireless?oldid=2297 archived] for posterity. |
The previous setup has been [http://wiki.csclub.uwaterloo.ca/Wireless?oldid=2297 archived] for posterity. |
Revision as of 12:47, 27 February 2012
csc-wireless no longer exists. Members are advised to use eduroam or uw-unsecured.
Rosetta Stone
Linux
netcfg
Toss this into /etc/network.d/, making sure you edit identity and password. sudo netcfg eduroam
CONNECTION='wireless' INTERFACE=wlan0 SECURITY='wpa-configsection' # Uncomment this if your ssid is hidden #HIDDEN=yes IP='dhcp' CONFIGSECTION=' ssid="eduroam" proto=RSN key_mgmt=WPA-EAP pairwise=CCMP group=CCMP eap=PEAP #anonymous_identity="anonymous" identity="userid@uwaterloo.ca" password="hunter2" ca_cert="/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt" phase2="auth=MSCHAPV2" priority=1'
wicd
Toss this into /etc/wicd/encryption/templates/ and edit /etc/wicd/encryption/templates/active to include a line with eduroam.
name = Eduroam UW author = Steven She version = 1 require username *Username password *Password ----- ctrl_interface=/var/run/wpa_supplicant network={ ssid="$_ESSID" scan_ssid="$_SCAN" proto=RSN key_mgmt=WPA-EAP pairwise=CCMP group=CCMP eap=PEAP identity="$_USERNAME" password="$_PASSWORD" ca_cert="/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt" phase2="auth=MSCHAPV2" }
The previous setup has been archived for posterity.