Shawn Adams <[EMAIL PROTECTED]> wrote: > I think my Radius is using the system /etc/passwd, as this is the default. > This seems not to be an option, since /etc/passwd is not cleartext.
Exactly. > giving the user a specific entry in the users.conf: > > Auth-Type := Local, User-Password = "Hello" > > does not seem to help. Of course. You told it to use 'Local' authentication, not EAP. Change the line to: Auth-Type += Local, User-Password = "Hello" Then, list the EAP module BEFORE 'files' in the authorize section. If it sees an EAP-Message, then EAP module will add 'Auth-Type := EAP', and the 'files' module will add 'Auth-Type += Local' AFTER that. The EAP will take priority, and it will all work... Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
