[PATCH] 'hostapd_cli sta <mac-addr>' returned 'dot1xAuthSessionUsername=(null)', when the integrated eap_server was used. This fixes that so the actual username is returned.
Michael Baird
Michael.Baird at ecs.vuw.ac.nz
Wed Sep 13 21:00:07 PDT 2017
See also http://lists.infradead.org/pipermail/hostap/2017-September/037933.html
Signed-off-by: Michael Baird <Michael.Baird at ecs.vuw.ac.nz>
---
src/ap/ieee802_1x.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/ap/ieee802_1x.c b/src/ap/ieee802_1x.c
index 6ea1ebe..3517f7d 100644
--- a/src/ap/ieee802_1x.c
+++ b/src/ap/ieee802_1x.c
@@ -17,6 +17,7 @@
#include "radius/radius.h"
#include "radius/radius_client.h"
#include "eap_server/eap.h"
+#include "eap_server/eap_i.h"
#include "eap_common/eap_wsc_common.h"
#include "eapol_auth/eapol_auth_sm.h"
#include "eapol_auth/eapol_auth_sm_i.h"
@@ -2638,7 +2639,7 @@ int ieee802_1x_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
wpa_auth_sta_key_mgmt(sta->wpa_sm))) ?
1 : 2,
(unsigned int) diff.sec,
- sm->identity);
+ sm->eap->identity);
if (os_snprintf_error(buflen - len, ret))
return len;
len += ret;
--
2.7.4
More information about the Hostap
mailing list