FreeRADIUS Version 3.0.10 I'm trying replicate accounting data to multiple servers, however it's only replicating to the radive instance - if I swap radive and calix in the update control block, nothing gets proxied (monitoring with tshark) even though their configurations are essentially identical, so two questions: 1. Why is it only proxying to one? 2. Why doesn't it like the calix instance? Thanks... site file excerpt: preacct { preprocess acct_unique suffix update control { Proxy-To-Realm := "radive" Proxy-To-Realm += "calix" } } proxy.conf: proxy server { default_fallback = no } home_server radive { type = acct ipaddr = 207.55.16.33 port = 1813 status_check = none check_interval = 30 check_timeout = 4 num_answers_to_alive = 3 max_outstanding = 65536 } home_server_pool radive_pool { type = fail-over home_server = radive } realm radive { acct_pool = radive_pool } home_server calix { type = acct ipaddr = 199.71.142.73 port = 1813 status_check = none check_interval = 30 check_timeout = 4 num_answers_to_alive = 3 max_outstanding = 65536 } home_server_pool calix_pool { type = fail-over home_server = calix } realm calix { acct_pool = calix_pool }