Zentraler Informatikdienst der TU Wien
> Zum Inhalt

eduroam für Linux

Voraussetzung für die Verwendung von eduroam ist, dass Ihr Gerät für WLAN konfiguriert ist!
Anleitung "WLAN Zugang zum TUNET (Linux)"

  • Installieren Sie auf Ihrem Gerät als WPA-Client "wpa_supplicant".
  • Erzeugen Sie das Konfigurationsfile "wpa_supplicant.conf" mit folgendem Inhalt:

 

network={   
   ssid="eduroam"
   scan_ssid=1
   key_mgmt=WPA-EAP
   eap=PEAP
   identity="username"
   password="pass"
   phase1="peaplabel=0"
   phase2="auth=MSCHAPV2"
}
  • Starten Sie den "wpa_supplicant" mittels:

    root@hostname:/home/username# wpa_supplicant -i ath0 -c /etc/wpa_supplicant/wpa_supplicant.conf