Comment 8 for bug 1173152

Revision history for this message
Daniel Ferradal (dferradal) wrote :

Only possible workaround. Configure wpa_supplicant manually.

For those who need:

/etc/wpa_supplicant.conf

ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=2
ap_scan=0

network={
       key_mgmt=IEEE8021X
       eap=PEAP
       phase2="auth=MSCHAPV2"
       identity="YOURUSER"
       password="YOURPASSWORD"
}

###########

/etc/network/interfaces

# LO
auto lo
iface lo inet loopback

# ETH0
auto eth0
iface eth0 inet dhcp
wpa-driver wired
wpa-conf /etc/wpa_supplicant.conf

##############