Migration. Please Help

2006-02-20 Thread Marta Lajas
Hy all,Sorry for the stupid question but I dont have any C/Unix knowledge.We have a FreeRadius Server running in a machine. It is using a custom module (in order to authenticate to an ldap server) developed two years ago called rlm_ldap2.Now I am going to install FreeRadius in another machine and I want to use that custom module. Is it neccesary to install OpenLdap before? or is it enough to copy my rlm_ldap2.so in the directorywith the other rlm_* libraries compiled during the FreeRadius installation?Thank you very muchRegards,Marta
		LLama Gratis a cualquier PC del Mundo.Llamadas a fijos y móviles desde 1 céntimo por minuto.http://es.voice.yahoo.com- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

RE: Fw: Performance features of FreeRadius

2006-01-24 Thread Marta Lajas
Hy Alan,I am interested in the following statement:   And unless you have a million users, performance of the server isn't really an issue. FreeRADIUS can handle multiple hundreds of thousands of users on a commodity PC without any problems.Why a million of users? Which are the problems that may appear?  Are you refering to a million of users simultaneously connected to the FR server?Thanks and regards,  MartaRafael Roldán [EMAIL PROTECTED] escribió:  - Original Message - From: "Alan DeKok" <[EMAIL PROTECTED]>To: "FreeRadius users mailing list" <FREERADIUS-USERS@LISTS.FREERADIUS.ORG>Sent: Friday, January 20, 2006 7:12 PMSubject: Re: Performance features of
 FreeRadius Marta Lajas <[EMAIL PROTECTED]>wrote:  I would like to know where I can find information about the  performance features of the FreeRadius product. As in how well it performs? That depends on your system and database. The short answer is that FreeRADIUS will always be faster than the database you use to store user configuration. And unless you have a million users, performance of the server isn't really an issue. FreeRADIUS can handle multiple hundreds of thousands of users on a commodity PC without any problems. Alan DeKok. - List info/subscribe/unsubscribe? Seehttp://www.freeradius.org/list/users.html  
		LLama Gratis a cualquier PC del Mundo.Llamadas a fijos y móviles desde 1 céntimo por minuto.http://es.voice.yahoo.com- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Performance features of FreeRadius

2006-01-20 Thread Marta Lajas
  Hy all,I would like to know where I can find information about the performance features of the FreeRadius product.  I would like to propose my boss tu usethis product because I have been testing it with differents configurations and it is a very good product (congratulations!). But I need that information first.Thank you very much in advance,  Marta Lajas
		LLama Gratis a cualquier PC del Mundo.Llamadas a fijos y móviles desde 1 céntimo por minuto.http://es.voice.yahoo.com- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

In which point does the FR sever send the Access-Accept or Access-Reject packet?

2006-01-05 Thread Marta Lajas
Hy all,I have a doubt about when FreeRadius server decides to send an Access-Accept or an Access-Reject packet.   When the authenticate module returns with a RLM_MODULE_REJECT, does the FR server send an Access-Reject packet? ordoes it occurlater?  When the authenticate module returns with a RLM_MODULE_OK, does the FR server send the Access-Accept packet? ordoes it occurlater?  Thanks in advance,  Marta
		Correo Yahoo!Comprueba qué es nuevo, aquíhttp://correo.yahoo.es- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

RE: Fw: In which point does the FR sever send the Access-Accept orAccess-Reject packet?

2006-01-05 Thread Marta Lajas
Thank you very much Bjørn. So it is after the post-auth section when the FreeRadius server decides to send an Access-Accept or an Access-Reject packet (in response of a previous Access-Request packet) depending on the result (success or not, OK or REJECT) of the authenticate method. Am I right?Best regards,  Marta  - Original Message - From: "Bjørn Mork" <[EMAIL PROTECTED]>To: "FreeRadius users mailing list" <FREERADIUS-USERS@LISTS.FREERADIUS.ORG>Sent: Thursday, January 05, 2006 12:42 PMSubject: Re: In which point does the FR sever send the Access-AcceptorAccess-Reject packet? Marta Lajas <[EMAIL PROTECTED]>writes:  I have a doubt about when FreeRadius server decides to send an  Access-Accept or an Access-!
 Reject
 packet.  When the authenticate module returns with a RLM_MODULE_REJECT,  does the FR server send an Access-Reject packet? or does it occur  later?  When the authenticate module returns with a RLM_MODULE_OK, does  the FR server send the Access-Accept packet? or does it occur  later? You can find the answers in src/main/modcall.c. The default authenticate actions are: { MOD_ACTION_RETURN, /* reject */ 1, /* fail */ MOD_ACTION_RETURN, /* ok */ MOD_ACTION_RETURN, /* handled */ 1, /* invalid */ MOD_ACTION_RETURN, /* userlock */ MOD_ACTION_RETURN, /* notfound */ 1, /* noop */ 1 /* updated */ }, Which means that both RLM_MODULE_REJECT and RLM_MODULE_OK will cause an immediate return action without calling any further modules in the authe!
 nticate
 section. Note that these actions may be modified by "redundant" or "append" module grouping, or even configured on code by code basis. See doc/configurable_failover The modules in postauth will of course still be called before sending Access-Reject or Access-Accept. Bjørn - List info/subscribe/unsubscribe? Seehttp://www.freeradius.org/list/users.html  
		Correo Yahoo!Comprueba qué es nuevo, aquíhttp://correo.yahoo.es- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html