Hi all,

I'm trying to do failoverusing redundant section but it seems not working:

file : site-enable/eduroam (here the redundant section works fine)
authorize {
    preprocess
    if ("%{User-Name}" == "L3Test") {
       redundant {
           sql_l3Test
           files
       }
    }
    mschap
    suffix
    eap {
        ok = return
    }
    pap
}
authenticate {
    Auth-Type PAP {
        pap
    }
    Auth-Type CHAP {
        chap
    }
    Auth-Type MS-CHAP {
        mschap
    }
    eap
}
preacct {
    preprocess
    acct_unique
    suffix
    files
}
accounting {
    detail
    radutmp
    sql_acct
    exec
    attr_filter.accounting_response
}
session {
    radutmp
}
post-auth {
    exec
    Post-Auth-Type REJECT {
        attr_filter.access_reject
    }
}
pre-proxy {
}
post-proxy {
    eap
}



file : site-enable/eduroam-inner-tunnel where the redundant section doesn't work
server eduroam-inner-tunnel {
listen {
       ipaddr = 127.0.0.1
       port = 18120
       type = auth
}
authorize {
    chap
    mschap
    suffix
    update control {
           Proxy-To-Realm := LOCAL
    }
    eap {
        ok = return
    }
    redundant {
        ldap
        sql_auth
    }
    pap
}
authenticate {
    Auth-Type PAP {
        pap
    }
    Auth-Type CHAP {
        chap
    }
    Auth-Type MS-CHAP {
        mschap
    }
    eap
}
session {
    radutmp
}
post-auth {
    Post-Auth-Type REJECT {
        attr_filter.access_reject
    }
}
pre-proxy {
}
post-proxy {
    eap
}
}

Maybe it is not possible?
Thanks.

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

Reply via email to