Hey All,

I want to configure freeradius server to use redundant ldap servers.

My configuration is:
authorize {
    preprocess
    #etc_passwd
    #etc_group
    chap
    mschap
    suffix_oblic
    prefix_oblic
    suffix_at
    prefix_at
    suffix_percent
    prefix_percent
    files
    redundant{
            ldap_primary
            ldap_secondary
        }
    eap
}

authenticate {
    Auth-Type PAP {
        pap
    }

    Auth-Type CHAP {
        chap
    }

    Auth-Type MS-CHAP {
        mschap
    }

    Auth-Type LDAP {
        redundant {
            ldap_primary
            ldap_secondary
        }
    }

    #unix
    eap
}

ldap ldap_primary {
....
..
}

ldap ldap_secondary {
..
..
}


The free radius server is keep on sending the request to secondary server, even though the primary server is reachable.

Could you plz guide me where am i missing the configuration ?

Any other attribute needs to be defined inside redundant module ?

Awaiting for your earliest reply.

Thanks,
Sumi