jonr at destar.net wrote:
> How do I set up a freeradius server so that if the password fails for
> the primary radius server it tries the secondary for the password.
In 2.0.1, you should be able to do:
authenticate {
...
Auth-Type pap {
pap
if (reject) {
update control {
Proxy-To-Realm := "realm"
}
ok
}
}
...
}
Alan DeKok.