2 RAdius server on a single linux box
hello Everyone, Can anyone please tell that is there any way to run 2 (or more) FREE RADIUS Servers on a single linux machine. Thanks Manuj
Hi Friends, Could you kindly suggest me some tools, which I can use to stress (by simulating around 200 EAP-TLS/ PEAP concurrent connections) the FreeRadius server with minimum use of NAS boxes. I am looking at the tools like NTRadPing or radtest. If you can suggest me some command line tools it will be great as it will be easy for me to automate. With Regards, Geeta
"Shivageetha C" <cshivageetha@novell.com> wrote:
Could you kindly suggest me some tools, which I can use to stress (by simulating around 200 EAP-TLS/ PEAP concurrent connections) the FreeRadius server with minimum use of NAS boxes.
See wpa_supplicant, eapol_test. Alan DeKok.
hello Everyone, Can anyone please tell that is there any way to run 2 (or more) FREE RADIUS Servers on a single linux machine.
Make a new directory for each server instance. Say you had two. /etc/raddb1 /etc/raddb2 Copy all the files from your original raddb dir to both directories. Modify the files in each directory to do what you want them to do. Make sure to modify the raddbdir variable on the top of each radiusd.conf file. eg: from raddbdir = ${sysconfdir}/raddb to raddbdir = ${sysconfdir}/raddb1 (and raddb2 for the other). Make sure to modify either the bind_address/port variables or the listen directives so you are either a) listening on a different IP for each instance or b) listening on a different port for each instance. eg: (in raddb1) port = 1812 (in raddb2) port = 1645 Then fire them up with the -d option of radiusd. (man radiusd for explanation) eg: $ radiusd -d /etc/raddb1 $ radiusd -d /etc/raddb2 You could open two shells and start up each one in debug mode too. in first shell $ radiusd -X -d /etc/raddb1 from other shell $ radiusd -X -d /etc/raddb2
Yes, you certainly can. If you mean the same version, then its quite easy. If you mean different versions, it's a little more involved, but still possible. Of course they must be running on different ports (eg 1645, 1646, 1647 and 1812, 1813, 1814). You can specify different configuration directories with the -d option to radiusd. regards, Mike
-----Original Message----- From: freeradius-users-bounces+mitchell.michael=bigpond.com@lists.fr eeradius.org [mailto:freeradius-users-bounces+mitchell.michael=bigpond.com@ lists.freeradius.org] On Behalf Of Manuj Sent: Friday, 13 January 2006 4:08 AM To: freeradius-users@lists.freeradius.org Subject: 2 RAdius server on a single linux box
hello Everyone, Can anyone please tell that is there any way to run 2 (or more) FREE RADIUS Servers on a single linux machine.
Thanks Manuj
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
participants (5)
-
Alan DeKok -
Dusty Doris -
Manuj -
Mike Mitchell -
Shivageetha C