Darren Nay <[EMAIL PROTECTED]> wrote: > I've now got the server configured, but I'm having a problem > authenticating users. I keep getting a "No Password configured for the > user" error.
Yes, you're using Auth-Type := Local, which means a locally supplied plain-text password. Since the DEFAULT examples you posted didn't have a password, the authentication fails. Instead, you've got to use Auth-Type := Accept. Then, in your Exec-Program-Wait script, return 0 for OK, and 1 for authentication failure. The server will send an Access-Reject on authentication failure. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
