Last active
July 9, 2019 06:32
-
-
Save zsewa/27fc7604854340b35cc4b2fdc28e2a88 to your computer and use it in GitHub Desktop.
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
# config file for eduroam with netctl | |
# you need a TUM LRZ identifier and to be a TUM (Technical University of Munich) student/employee | |
# | |
# 1. place file in '/etc/netctl' e.g. named 'eduroam' (where the file name will be the profile name) | |
# 2. replace details in commented lines with your information | |
# 3. then run 'netctl up eduroam' (or any other profile name) | |
# 4. happy networking ;) (e.g. do a 'curl ifconfig.co' or any 'ping' to test) | |
# | |
Description='eduroam' | |
Interface='wlp2s0' # you may need to replace 'wlp2s0' with your wifi interface name (run 'iw dev' to see availible interfaces) | |
Connection='wireless' | |
IP='dhcp' | |
ESSID='eduroam' | |
Security='wpa-configsection' | |
WPAConfigSection=( | |
'ssid="eduroam"' | |
'key_mgmt=WPA-EAP' | |
'eap=TTLS' | |
'proto=WPA RSN' | |
'anonymous_identity="[email protected]"' | |
'ca_cert="/etc/ssl/certs/T-TeleSec_GlobalRoot_Class_2.pem"' # this cert is installed in Arch (and others); you may want to evaluate this by running 'cat /etc/ssl/certs/T-TeleSec_GlobalRoot_Class_2.pem' | |
'phase2="auth=PAP"' | |
'identity="[email protected]"' # replace 'xx00xxx' with your TUM LRZ identifier (it consists of two charcters ('ga' for TUM IDs), then two numbers and three characters again, e.g. ga01abc) | |
'password="mypass"' # replace 'mypass' with your password associated with your TUM LRZ account | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment