I\'m trying to set up a radius server using a rest backend for authentication. I used the following project as example: https://github.com/fgsants/REST-API-FreeRADIUS
<
I have spent an enormous amount of time, trying to figure out, how is this thing suppose to work, as I am a newbie, regarding freeradius. I am also using the nodejs rest api and was able to succeed with the second approach, but in order to do it, I had to add some more bits, inside the inner-tunnel file as follows:
authorize {
update control {
MS-CHAP-Use-NTLM-Auth := No
}
rest
inner-eap
}
authenticate {
inner-eap
Auth-Type PAP {
pap
}
Auth-Type MS-CHAP {
mschap
}
}