Here is my wpa_supplicant config file:
Code:
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=wheel
network={
ssid="ScotZone"
scan_ssid=1
key_mgmt=WPA-EAP
eap=PEAP
pairwise=CCMP TKIP
group=CCMP TKIP
identity="jwietelmann"
password="*********"
ca_cert="/etc/cert/ca.pem"
phase1="peaplabel=0"
phase2="auth=MSCHAPV2"
}
But I have this problem:
Code:
doctorworm:~ # wpa_supplicant -i ath0 -c /home/jwietelmann/wpa_test.conf
ioctl[PRISM2_IOCTL_PRISM2_PARAM]: Operation not supported
ioctl[PRISM2_IOCTL_PRISM2_PARAM]: Operation not supported
Failed to enable WPA in the driver.
ioctl[PRISM2_IOCTL_HOSTAPD]: Operation not supported
ioctl[PRISM2_IOCTL_PRISM2_PARAM]: Operation not supported
ioctl[PRISM2_IOCTL_PRISM2_PARAM]: Operation not supported
Failed to disable WPA in the driver.
ioctl[PRISM2_IOCTL_PRISM2_PARAM]: Operation not supported
ioctl[PRISM2_IOCTL_PRISM2_PARAM]: Operation not supported
doctorworm:~ #
And here is my xsupplicant config file:
Code:
first_auth_command = <BEGIN_COMMAND>dhclient %i<END_COMMAND>
logfile = /var/log/xsupplicant.log
network_list = all
reauth_command = <BEGIN_COMMAND>echo "authenticated user %i"<END_COMMAND>
startup_command = <BEGIN_COMMAND>echo "starting up..."<END_COMMAND>
default {
allow_types = all
identity = <BEGIN_ID>jwietelmann<END_ID>
eap-peap {
root_cert = /home/jwietelmann/certificates/root.pem
chunk_size = 1398
random_file = /dev/urandom
cncheck = wooster.edu
cnexact = no
session_resume = no
eap-mschapv2 {
username = <BEGIN_UNAME>jwietelmann<END_UNAME>
password = <BEGIN_PASS>*************<END_PASS>
}
}
}