multiple radius

Radius related questions
Post Reply
mlemaitre
Posts: 27
Joined: 04 Dec 2014, 15:09

multiple radius

Post by mlemaitre »

Hello,

Is it possible to configure multiple radius servers ?

In this case, how can I define a "primary" server, that is first checked, and a "secondary" server, that is checked only if this first doesn't answer ?
Dmitry
Администратор
Posts: 954
Joined: 09 Oct 2014, 10:06

Re: multiple radius

Post by Dmitry »

you may specify multiple server options like:
[radius]
server=1.1.1.1,...
server=2.2.2.2,...

there is "backup" option which you may use to define secondary option (this option is available in the current git version):
[radius]
server=1,1,1,1,....,backup

or use weight:
[radius]
server=1,1,1,1,...,weight=1000 - primary server
server=2.2.2.2,....,weight=1 - secondary
mlemaitre
Posts: 27
Joined: 04 Dec 2014, 15:09

Re: multiple radius

Post by mlemaitre »

ok, thank you.
I'm currently using a debian package that I found here https://qa.debian.org/watch/sf.php/accel-ppp so I won't be able to test this until I compile from git.
kktr
Posts: 3
Joined: 30 Jan 2016, 13:33

Re: multiple radius

Post by kktr »

Sorry for posting in an old thread, but I reckon my question is similar.

Is it possible to have different radius instances for modules?

For example something like this:

[radius]
server=1.1.1.1,...,name=forpppoe
server=2.2.2.2,...,name=foripoe

[pppoe]
radius=forpppoe
...

[ipoe]
radius=foripoe
...

Thank you.
Dmitry
Администратор
Posts: 954
Joined: 09 Oct 2014, 10:06

Re: multiple radius

Post by Dmitry »

no yet
Post Reply