I try to setup a eap testbed on wired.  I run hostapd on ubuntu(vmware) and wpa_supplicant on another ubuntu(vmware) host.<br>But when hostapd receives identity response, following mesasge is given out:<br><br>IEEE 802.1X: 46 bytes from 00:0c:29:13:68:99<br>
IEEE 802.1X data frame from not associated STA<br><br><br>What does that mean?  For wired, associated is needed? If yes, how to associate it?<br><br><br>configuration is as fillowing :<br>wired.conf<br>====================================================================================================<br>
<br>interface=eth1<br>driver=wired<br>logger_stdout=-1<br>logger_stdout_level=1<br>debug=2<br>dump_file=/tmp/hostapd.dump<br><br>ieee8021x=1<br>eap_reauth_period=3600<br><br>use_pae_group_addr=1<br><br><br>##### RADIUS configuration ####################################################<br>
# for IEEE 802.1X with external Authentication Server, IEEE 802.11<br># authentication with external ACL for MAC addresses, and accounting<br><br># The own IP address of the access point (used as NAS-IP-Address)<br>own_ip_addr=127.0.0.1<br>
<br># Optional NAS-Identifier string for RADIUS messages. When used, this should be<br># a unique to the NAS within the scope of the RADIUS server. For example, a<br># fully qualified domain name can be used here.<br># nas_identifier=<a href="http://ap.example.com">ap.example.com</a><br>
<br># RADIUS authentication server<br>auth_server_addr=127.0.0.1<br>auth_server_port=1812<br>auth_server_shared_secret=radius<br><br># RADIUS accounting server<br>#acct_server_addr=127.0.0.1<br>#acct_server_port=1813<br>#acct_server_shared_secret=radius<br>
<br><br><br>run command for hostapd: sudo ./hostapd -dddd ./wired.conf <br><br><br>=================================================================<br>configuration for wpa_supplicant:<br><br>test.conf:<br>==============================================<br>
ctrl_interface=/var/run/wpa_supplicant<br><br>ctrl_interface_group=root<br><br>ap_scan=0<br><br>network={<br><br>key_mgmt=IEEE8021X<br><br>eap=MD5<br><br>identity=&quot;user&quot;<br><br>password=&quot;password&quot;<br>eapol_flags=0<br>
<br>}<br><br><br>run command for wpa_supplicant: sudo ./wpa_supplicant  -dd -i eth1 -c ./test.conf -D wired<br><br><br><br><br><br><br><br><br><br><br>If someone has done this, giving me the typical configuration is very appreciated.<br>