Re: rlm_exec question

2008-04-17 Thread T Kid82
there anyway to do that without actually running the server in debug mode? 2. Is there a config setting for locking out a user temporarily if they make more than say 5 unsuccessful login attempts in a short time span? Thanks. On Thu, Apr 17, 2008 at 1:15 AM, T Kid82 <[EMAIL PROTECTED]>

Re: rlm_exec question

2008-04-17 Thread T Kid82
short time span? Thanks again. -- Tauseef On Sun, Apr 13, 2008 at 11:32 PM, Alan DeKok <[EMAIL PROTECTED]> wrote: > T Kid82 wrote: > > First I added a files sub-section the modules section within radiusd.conf > > > > files { > > Auth-Type := Exec >

Re: rlm_exec question

2008-04-13 Thread T Kid82
8/4/13 Ivan Kalik <[EMAIL PROTECTED]>: > Add files to authorize and put DEFAULT Auth-Type := Exec in it. > > Ivan Kalik > Kalik Informatika ISP > > > Dana 13/4/2008, "T Kid82" <[EMAIL PROTECTED]> piše: > > > > >Hi everyone, > >

rlm_exec question

2008-04-13 Thread T Kid82
Hi everyone, I am trying to accomplish a very simple task using RADIUS as an authentication proxy. All I need it to do is use the username/password combo sent in, run a perl script to validate those credentials and return a pass or fail. I have my perl script setup to return all the right codes as

Re: rlm_exec use

2008-03-20 Thread T Kid82
tribute. See "man > unlang" for examples. I will definitely look through the documentation. Is there a specfic Auth-Type that would be appropriate for my simple case. I guess what I am asking is, can you give me an example of an Auth-Type other than the Perl example? On Wed, Mar 19,

Re: rlm_exec use

2008-03-19 Thread T Kid82
of documentation but I didnt find much on this particular module On Wed, Mar 19, 2008 at 1:17 AM, Alan DeKok <[EMAIL PROTECTED]> wrote: > T Kid82 wrote: > > I have been trying to get RADIUS to run a perl script which would > > authenticate users (and yes I have tried rlm_perl

rlm_exec use

2008-03-19 Thread T Kid82
Hi everyone, I have been trying to get RADIUS to run a perl script which would authenticate users (and yes I have tried rlm_perl but I decided against it). So far all I have in the perl script itself is #!/usr/bin/perl use strict; use Data::Dumper; exit 3; -