using FreeRADIUS I need to authenticate RADIUS users against a web backend and have been attempting to use the rlm_rest module to do it. See here.
In my site configuration I have something like this:
authorize {
rest
}
and in the authentication section I've tried things like these:
authenticate {
Auth-Type REST {
rest
}
}
or
authenticate {
rest
}
In either case I get the following error: (2) ERROR: No Auth-Type found: rejecting the user via Post-Auth-Type = Reject
On my web server, I am returning the 204 code
as it seems like that should authenticate the user without additional processes. See here. The authorization seems to work fine, but that error is returned once the authentication section is reached.
What I need to know is the combination of "users" file entry and sites-available entries that I need to allow the rlm_rest module to complete the authentication portion of the request. Thanks,