VM에 freeradius(버전 3.0.13)를 설치했으며 제대로 작동하는 것으로 보이는 기본 구성을 수행했습니다. 회계를 프록시하려고 할 때 다음을 실행할 때 발생하는 오류는 다음과 같습니다 radiusd -CX
.
/etc/raddb/proxy.conf[36]: Unknown home_server "server1"
이것은 내 실제 구성입니다.
####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
}
또는 type = acct
로 변경하면 문제 없이 반경을 시작할 수 있습니다.type = auth
type = auth+acct
누구든지 도와줄 수 있나요?
답변1
간단히 교체하여 문제를 해결했습니다.auth_pool = freeradius_loadbalance에게acct_pool = freeradius_loadbalance에서프록시.conf.
감사해요 :)