FreeRadius 経由で会計をプロキシできません

FreeRadius 経由で会計をプロキシできません

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に変更すると、問題なく radius を開始できます。type = authtype = auth+acct

誰か助けてくれませんか?

答え1

私は、単に交換することで問題を解決しましたauth_pool = フリー半径ロードバランスacct_pool = フリー半径ロードバランスの中にプロキシ.conf

ありがとう :)

関連情報