Vects <[EMAIL PROTECTED]> wrote: > Could you help me with configuration of the freeradius 0.7 ? > I want to use '@' and '%' as delimiter for realms. I added realmpercent > before suffix in authorisation but it's not working properly.
It's also telling you what it's doing. Read the messages you posted to the list. > modcall[authorize]: module "preprocess" returns ok > rlm_realm: Looking up realm NULL for User-Name = "user@MMMM" > rlm_realm: Found realm NULL > rlm_realm: Adding Stripped-User-Name = "user@MMMM" > rlm_realm: Proxying request from user user@MMMM to realm NULL > rlm_realm: Adding Realm = "NULL" > rlm_realm: Authentication realm is LOCAL. > rlm_realm: auth_port is not set. proxy cancelled You've got a NULL realm set up, which is a catch-all for user names not matching any other realm. There's no '%' in 'user@MMMM', so the 'realmpercent' configuration says it must be a local realm. Then, the 'suffix' realm doesn't even look for the '@', because the request is already marked up as being a LOCAL realm. The error messages you posted pretty much describe what's happening. A solution would be to remove the NULL realm, or to use a different method for discovering realms. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
