Resolvi o problema simplesmente substituindo auth_pool = freeradius_loadbalance por acct_pool = freeradius_loadbalance no proxy.conf .
Obrigado :)
Instalei o freeradius (versão 3.0.13) em uma VM e executei uma configuração básica que parece funcionar bem. Quando tento fazer contas de proxy, esse é o erro que recebo quando executo radiusd -CX
:
/etc/raddb/proxy.conf[36]: Unknown home_server "server1"
Esta é a minha configuração atual:
####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
}
Quando altero type = acct
para type = auth
ou type = auth+acct
, posso começar o raio sem problemas.
Alguém pode ajudar?
Resolvi o problema simplesmente substituindo auth_pool = freeradius_loadbalance por acct_pool = freeradius_loadbalance no proxy.conf .
Obrigado :)