On Fri, 26 Jul 2002 [EMAIL PROTECTED] wrote:

> Has anyone have any ideas on how to set up FreeRADIUS to check for a user
> in multiple LDAP directories.  I currently have my RADIUS servers doing
> authentication against the users file and I have a redundant LDAP setup(see
> below for snippet of code).  I need an auth request to check against the
> users file and the first LDAP directories first (10.0.4.x and 10.0.4.y),
> and finally try to auth against the second LDAP directory.  Any help will
> be greatly appreciated.

Normally that should be quite straight forward. Just do an:

authenticate{
        authtype ldap{
                redundant {
                        ldap1
                        ldap2
                }
                ldap3
        }
}

authorize{
        [...]
        redundant{
                ldap1
                ldap2
        }
        ldap3
}

notfound has a result code of '1' and not 'return' so something like that should
probably work fine.

--
Kostas Kalevras         Network Operations Center
[EMAIL PROTECTED]      National Technical University of Athens, Greece
Work Phone:             +30 10 7721861
'Go back to the shadow' Gandalf



- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Reply via email to