Freeradius: Request without User-Password attribute for rest module

后端 未结 2 892
抹茶落季
抹茶落季 2021-01-07 10:45

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

<
2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-07 11:05

    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
        }
    }
    

提交回复
热议问题