Server FreeRadius:如何为物理上相同的家庭服务器实现多个代理配置?

Server FreeRadius:如何为物理上相同的家庭服务器实现多个代理配置?,server,proxy,freeradius,radius,Server,Proxy,Freeradius,Radius,我从3.0.16版开始使用FreeRadius。我想为物理上相同的家庭服务器(相同的ip:端口)提供多个代理配置,但其他选项不同。我尝试使用proxy.conf,如下概念所示,但不幸的是,这种配置阻止Radius服务器启动(/etc/freeradius/proxy.conf[505]:重复的主服务器地址(已由localhost2使用):127.0.0.1:UDP/1812) 我想知道是否有可能通过一些proxy.conf更正或其他方式(其他文件中的配置等)达到目标 home_server lo

我从3.0.16版开始使用FreeRadius。我想为物理上相同的家庭服务器(相同的ip:端口)提供多个代理配置,但其他选项不同。我尝试使用proxy.conf,如下概念所示,但不幸的是,这种配置阻止Radius服务器启动(/etc/freeradius/proxy.conf[505]:重复的主服务器地址(已由localhost2使用):127.0.0.1:UDP/1812)

我想知道是否有可能通过一些proxy.conf更正或其他方式(其他文件中的配置等)达到目标

home_server localhost { 
    type = auth 
    ipaddr = 127.0.0.1  
    port = 1812
    secret = testing123
    response_window = 20
    zombie_period = 40
}

home_server localhost2 {    
    type = auth
    ipaddr = 127.0.0.1
    port = 1812
    secret = testing123
    response_window = 40
    zombie_period = 60
}

home_server_pool my_auth_failover { 
    type = fail-over
    home_server = localhost
}

home_server_pool my_auth_failover2 {    
    type = fail-over
    home_server = localhost2
}

realm example.com {
    auth_pool = my_auth_failover
}

realm example2.com {
    auth_pool = my_auth_failover2
}