Hi, My eapol_test retransmits 10 times even though i set the RADIUS_CLIENT_MAX_RETRIES to 0. How can i avoid it retransmitting 10 times? It retransmits 10 times every 150 seconds. ________________________________ /* Defaults for RADIUS retransmit values (exponential backoff) */ #define RADIUS_CLIENT_FIRST_WAIT 150 /* seconds */ #define RADIUS_CLIENT_MAX_WAIT 120 /* seconds */ #define RADIUS_CLIENT_MAX_RETRIES 0 /* maximum number of retransmit attempts * before entry is removed from retransmit * list */ #define RADIUS_CLIENT_MAX_ENTRIES 0 /* maximum number of entries in retransmit * list (oldest will be removed, if this * limit is exceeded) */ #define RADIUS_CLIENT_NUM_FAILOVER 4 /* try to change RADIUS server after this * many failed retry attempts */ ________________________________ thanks, rc
On Thu, Mar 11, 2010 at 12:16 AM, R C <rc_work@yahoo.com> wrote:
My eapol_test retransmits 10 times even though i set the RADIUS_CLIENT_MAX_RETRIES to 0. How can i avoid it retransmitting 10 times? It retransmits 10 times every 150 seconds.
Why did you change RADIUS_CLIENT_FIRST_WAIT and RADIUS_CLIENT_MAX_ENTRIES values in addition to just the maximum retries count?
#define RADIUS_CLIENT_MAX_ENTRIES 0
This breaks the RADIUS client code since you do not leave any room for storing pending entries. PS. If you have questions related to eapol_test implementation or details, the hostap mailing list would be better target for them.. - Jouni
Thanks for the note. i restored the values of RADIUS_CLIENT_FIRST_WAIT andRADIUS_CLIENT_MAX_ENTRIES to their original values. But, changing RADIUS_CLIENT_MAX_RETRIES from 10 to 0 or any value does not make any difference. It still sends access-request 10 times. I am doing make eapol_test followed by cp eapol_test /usr/local/bin/ I wrote to hostap@lists.shmoo.com, but no response. thanks for your time. thanks, rajitha. ________________________________ From: Jouni Malinen <jkmalinen@gmail.com> To: FreeRadius users mailing list <freeradius-users@lists.freeradius.org> Sent: Sat, March 13, 2010 1:47:17 AM Subject: Re: eapol_test retransmits 10 times On Thu, Mar 11, 2010 at 12:16 AM, R C <rc_work@yahoo.com> wrote:
My eapol_test retransmits 10 times even though i set the RADIUS_CLIENT_MAX_RETRIES to 0. How can i avoid it retransmitting 10 times? It retransmits 10 times every 150 seconds.
Why did you change RADIUS_CLIENT_FIRST_WAIT and RADIUS_CLIENT_MAX_ENTRIES values in addition to just the maximum retries count?
#define RADIUS_CLIENT_MAX_ENTRIES 0
This breaks the RADIUS client code since you do not leave any room for storing pending entries. PS. If you have questions related to eapol_test implementation or details, the hostap mailing list would be better target for them.. - Jouni - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
participants (2)
-
Jouni Malinen -
R C