Hi,<br><br>I am using FreeRADIUS Version 2.1.7, this is the RPM for RHEL made available from (<a href="http://people.redhat.com/jdennis/freeradius-rhel-centos">http://people.redhat.com/jdennis/freeradius-rhel-centos</a>) which was linked by the RedHat FAQ on the FreeRadius Wiki (actually I downloaded the .srpm and change the .spec file to include <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="OneNote.File"><meta name="Generator" content="Microsoft OneNote 12">--with-udpfromto in the configure line). <br>
<br>Anyway I seem to have an odd issue. I have two home servers configured with the below proxy.conf, the issue is when both server1 and server2 are up load balancing works fine when I take down server 1 it goes into zombie then it is marked dead which is all great (I posted those messages below as well), then when I bring server 1 back online FreeRadius' status_check sees the server up ( I posted that message below as well) however no more Radius requests go to server1 (not unless I take server2 down then I can see server1 starts to receive the requests) but it seems like either there is a bug or I have something mis configured because I would assume once the status_check notices server1 is back online it should start to receive radius requests again.. <br>
<br>home_server server1 {<br> type = auth+acct<br> ipaddr = XXX.XXX.XXXX.XXXX<br> port = 1812,1813<br> secret = secret<br> require_message_authenticator = no<br> response_window = 20<br>
zombie_period = 10<br> # revive_interval = 120<br> status_check = request<br> username = <a href="mailto:username@host.com">username@host.com</a><br> password = secret<br> check_interval = 5<br>
num_answers_to_alive = 3<br>}<br><br>home_server server2 {<br> type = auth+acct<br> ipaddr = XXX.XXX.XXX.XXX<br> port = 1812,1813<br> secret = secret<br> require_message_authenticator = no<br>
response_window = 20<br> zombie_period = 10<br> # revive_interval = 120<br> status_check = request<br> username = <a href="mailto:username@host.com">username@host.com</a><br> password = secret<br>
check_interval = 5<br> num_answers_to_alive = 3<br>}<br><br>home_server_pool balance {<br> type = load-balance<br> home_server = pcrf01<br> home_server = pcrf02<br>}<br><br>realm DEFAULT {<br>
pool = balance<br> nostrip<br>}<br><br>------------------ end proxy.conf --------------------<br><br>------ DEAD SERVER --------------------<br><br>PROXY: Marking home server XXX.XXX.XXX.XXX port 1812 as zombie (it looks like it is dead).<br>
Sending Access-Request of id 222 to XXX.XXX.XXX.XXX port 1812<br> User-Name := "<a href="mailto:username@host.com">username@host.com</a>"<br> User-Password := "secret"<br> Service-Type := Authenticate-Only<br>
Message-Authenticator := 0x00000000000000000000000000000000<br> NAS-Identifier := "Status Check. Are you alive?"<br>Waking up in 3.9 seconds.<br>Waking up in 4.3 seconds.<br><br>---------- end DEAD SERVER ------------<br>
<br>------ Server Alive -----------------<br><br>rad_recv: Access-Accept packet from host XXX.XXX.XXX.XXX port 1812, id=185, length=20<br>Waking up in 10.0 seconds.<br><br>--------- end Server Alive -------------<br>