Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2017-03-15 08:09:53
Size: 40
Editor: hgiger
Comment:
Revision 3 as of 2017-03-15 08:25:02
Size: 802
Editor: hgiger
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Describe FAQ/raspberryPiTo802.1x here. == How to authorize a RaspberryPi device for 802.1x WLAN ==

The problem with RaspberryPi devices is, that they cannot authorize themselfs in 802.1x networks. With 'wpa_supplicant' authorizing on a 802.1x networks will be possible. Proceed as followed:

 1. Change to '/etc/wpa_supplicant/'
 1. Create the file 'wpa_supplicant.conf' and make following entries (in this case for the 'eth' SSID):
 {{{
    network={
    ssid="eth"
    proto=RSN
    key_mgmt=WPA-EAP
    pairwise=CCMP
    auth_alg=OPEN
    eap=PEAP
    identity="NETHZ login"
    password="Netzwerk Passwort"
    phase1="peaplabel=auto peapver=0"
    phase2="auth=PAP"
    }
 }}}

See here for further informations (german):

https://emanuelduss.ch/2012/01/eine-wpa2-wlan-verbindung-herstellen-mit-wpa_supplicant/

How to authorize a RaspberryPi device for 802.1x WLAN

The problem with RaspberryPi devices is, that they cannot authorize themselfs in 802.1x networks. With 'wpa_supplicant' authorizing on a 802.1x networks will be possible. Proceed as followed:

  1. Change to '/etc/wpa_supplicant/'
  2. Create the file 'wpa_supplicant.conf' and make following entries (in this case for the 'eth' SSID):
        network={
        ssid="eth"
        proto=RSN
        key_mgmt=WPA-EAP
        pairwise=CCMP
        auth_alg=OPEN
        eap=PEAP
        identity="NETHZ login"
        password="Netzwerk Passwort"
        phase1="peaplabel=auto peapver=0"
        phase2="auth=PAP"
        }

See here for further informations (german):

https://emanuelduss.ch/2012/01/eine-wpa2-wlan-verbindung-herstellen-mit-wpa_supplicant/

FAQ/raspberryPiTo802.1x (last edited 2020-09-10 07:29:39 by hgiger)