Hi Felix, I guess you missed the big in hostapd/config_file.c:
/* trunk val, such val contains only the ip address and not the secret */ *secret= '\0'; ------------------ static int hostapd_parse_das_client(struct hostapd_bss_config *bss, const char *val) { char *secret; secret = os_strchr(val, ' '); if (secret == NULL) return -1; /* trunk val, such val contains only the ip address and not the secret */ *secret= '\0'; secret++; if (hostapd_parse_ip_addr(val, &bss->radius_das_client_addr)) return -1; os_free(bss->radius_das_shared_secret); bss->radius_das_shared_secret = (u8 *) os_strdup(secret); if (bss->radius_das_shared_secret == NULL) return -1; bss->radius_das_shared_secret_len = os_strlen(secret); return 0; } ---- Best, JG > -----Oorspronkelijk bericht----- > Van: Lede-dev [mailto:lede-dev-boun...@lists.infradead.org] Namens Felix > Fietkau > Verzonden: maandag 18 juli 2016 13:38 > Aan: frm frm <f...@gordijn.org>; lede-dev@lists.infradead.org > Onderwerp: Re: [LEDE-DEV] How to compile hostapd such that there is a full > WPA2 Enterprise auhenticator/supplicant? > > On 2016-07-18 13:22, frm frm wrote: > > In package/network/services/hostapd/Makefile > > Disable CONFIG_IBSS_RSN (enables the dynamic vlan code) > Fixed in the 75329fc1618c (r1010) > > - Felix > > _______________________________________________ > Lede-dev mailing list > Lede-dev@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/lede-dev _______________________________________________ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev