EDV:EDUROAM: Difference between revisions

From KIP Wiki
⧼kip-jumptonavigation⧽⧼kip-jumptosearch⧽
mNo edit summary
No edit summary
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''Eduroam''' can be set up either using [https://cat.eduroam.org/ '''Configuration Assistant Tool(CAT)''']) or [https://www.geteduroam.app/ '''geteduroam app''']
Generelle Anleitungen für verschiedene Systeme und Plattformen finden Sie auf der eduroam Seite des URZ.


'''Overview & How to (URZ):''' [https://www.urz.uni-heidelberg.de/de/service-katalog/netzwerk/wlan-ueber-eduroam Eduroam (deutsch)], [https://www.urz.uni-heidelberg.de/en/service-catalogue/network/wi-fi-via-eduroam Eduroam (english)]
[http://www.urz.uni-heidelberg.de/zugang/eduroam/ URZ Eduroam ]


=== Problems while updating eduroam certificates ===
Wichtige Infos findet man auch hier: (nur mit Login erreichbar)


==== Windows ====
https://portal.kip.uni-heidelberg.de/x2go


If no longer a connection to eduroam can be established you have to update the certificates by installing eduroam again. You can get the installation tool on [https://cat.eduroam.org/# Configuration Assistant Tool (CAT)].
== eduroam über wpa_supplicant (Linux) ==


If it's not able to open a connection after updating the certificates, you have to delete the installed ones. The possibility to do this in Windows is opening the certificate manager "certmgr.msc". There you have to search the certificate "T-TeleSec GlobalRoot Class 2" and remove all that are not valid till 2033. And then also search for certificates from "DFN-Verein Global Issuing CA" and remove all which are not valid till 2031.


==== Linux ====
Hierzu gibt es eine Konfigurationsdatei:
<br>
[[File:Wpa_supplicant.conf.txt|wpa_supplicant.conf]]
<br><br>
Die Datei sollte dann so aussehen:


For the installation on Linux you first download the installation script of the Universität Heidelberg from [https://cat.eduroam.org/# Configuration Assistant Tool (CAT)] (it's a python script called "eduroam-linux-Universitat_Heidelberg-Standard_ab_2024.py"). After that remove the old profile by opening the configuration form of eduroam on the "NetworkManager" and clicking "forget connection". Then run the script with python.
# path to UNIX socket control interface
ctrl_interface=/var/run/wpa_supplicant
#eapol_version=1
ap_scan=1
network={
ssid="eduroam"
key_mgmt=WPA-EAP
eap=TTLS
proto=WPA RSN
identity="uni-id@uni-heidelberg.de"
anonymous_identity="anonymous@uni-heidelberg.de"
ca_cert="/etc/ssl/certs/Deutsche_Telekom_Root_CA_2.pem"
phase2="auth=PAP"
# Hier entweder das Klartext Passwort oder einen Hash davon (mkntpwd)
password="xxxx"
}

Abspeichern zum Beispiel unter dem Namen eduroam.conf.

Das ganze kann man dann Starten mit:

wpa_supplicant -B -i wlan0 /etc/wpa_supplicant/eduroam.conf

Falls der Daemon schon läuft dann mit folgendem Befehl beenden:

killall -15 wpa_supplicant

Latest revision as of 11:08, 5 February 2024

Eduroam can be set up either using Configuration Assistant Tool(CAT)) or geteduroam app

Overview & How to (URZ): Eduroam (deutsch), Eduroam (english)

Problems while updating eduroam certificates

Windows

If no longer a connection to eduroam can be established you have to update the certificates by installing eduroam again. You can get the installation tool on Configuration Assistant Tool (CAT).

If it's not able to open a connection after updating the certificates, you have to delete the installed ones. The possibility to do this in Windows is opening the certificate manager "certmgr.msc". There you have to search the certificate "T-TeleSec GlobalRoot Class 2" and remove all that are not valid till 2033. And then also search for certificates from "DFN-Verein Global Issuing CA" and remove all which are not valid till 2031.

Linux

For the installation on Linux you first download the installation script of the Universität Heidelberg from Configuration Assistant Tool (CAT) (it's a python script called "eduroam-linux-Universitat_Heidelberg-Standard_ab_2024.py"). After that remove the old profile by opening the configuration form of eduroam on the "NetworkManager" and clicking "forget connection". Then run the script with python.