Proxy-Zugriff auf Konten über Freeradius nicht möglich

Proxy-Zugriff auf Konten über Freeradius nicht möglich

Ich habe Freeradius (Version 3.0.13) auf einer VM installiert und eine grundlegende Konfiguration durchgeführt, die einwandfrei zu funktionieren scheint. Wenn ich versuche, Accountings per Proxy zu verwenden, erhalte ich beim Ausführen diesen Fehler radiusd -CX:

/etc/raddb/proxy.conf[36]: Unknown home_server "server1"

Dies ist meine tatsächliche Konfiguration:

####proxy.conf####

proxy server {
 default_fallback = no
}

home_server server1{
 type = acct
 ipaddr = 10.194.128.105
 port = 1813
 secret = passme
 require_message_authenticator = no
 response_window = 20
 zombie_period = 40
 status_check = status-server
 check_interval = 30
 num_answers_to_alive = 3
 max_outstanding = 65536
}


home_server server2{
 type = acct
 ipaddr = 10.194.128.106
 port = 1813
 secret = passsme
 require_message_authenticator = no
 response_window = 20
 zombie_period = 40
 status_check = status-server
 check_interval = 30
 num_answers_to_alive = 3
 max_outstanding = 65536
}

home_server_pool freeradius_loadbalance {
 type = fail-over
 home_server = server1
 home_server = server2
}

realm NULL {
 auth_pool = freeradius_loadbalance
 nostrip
}

Wenn ich type = acctzu type = authoder wechsle type = auth+acct, kann ich Radius ohne Probleme starten.

Kann jemand helfen?

Antwort1

Ich habe das Problem gelöst, indem ich einfach ersetzt habeauth_pool = freeradius_loadbalanceZuacct_pool = Freeradius_Loadbalanceimproxy.conf.

Danke :)

verwandte Informationen