Re: (RADIATOR) PostAuthHook nightmares.

2002-11-25 Thread Steve Phillips
At 16:02 26/11/2002, Hugh Irvine wrote: Hello Steve - There are some example hooks including a ReplyHook that does pretty much what you require in the file "goodies/hooks.txt". If you have any further questions, please let me know. Found that after I posted the message :-) I'm am now busy LAR

(RADIATOR) How to duplicate Accounting requests. ?

2001-03-08 Thread Steve Phillips
Hello :) I am running a proxy radius server and need to be able to send Start/Stop accounting records to a database for tracking locally, yet still need to make this transparent to the authenticating radius server at the far end. At first I thought I could just add a second AuthBy clause to th

(RADIATOR) AuthBy NT problems

2001-04-08 Thread Steve Phillips
Hiyas, Just wondering about the clause, it seems that there is a rather large delay (compared to say, database authentication and flatfile authentication) when using the AuthBy NT authenticator, the delays we are seeing are in the 5-10 second mark - would this be considered normal ? If the a

Re: (RADIATOR) AuthBy NT problems

2001-04-09 Thread Steve Phillips
At 09:52 10/04/2001, you wrote: >Hello Steve - > >As Ashley says, there is a new version of AuthNT.pm in the patches area >for Radiator 2.18, so I suggest you upgrade. > >regards > >Hugh Thanks for that :) I have since found out some of the problem we were having as well. it seems that the PD

(RADIATOR) AuthBy NT and static IP's

2001-05-30 Thread Steve Phillips
Hiyas, has anyone got an example of how to do this ? we have a few hundred users authenticating off an NT domain and there is a need for around half of them to have static IP addresses, short of adding a seperate handler for each user with the reply attributes set in the conf file, is there an

[RADIATOR] Define a global array

2014-04-01 Thread Steve Phillips
Hi there, I am trying to setup a system that, on startup reads a DB table into a hashed array and then makes this available to the rest of the hooks. A later hook then takes this hashed array and parses it to add a value to a custom attribute which is then used for later processing within a han

Re: [RADIATOR] Define a global array

2014-04-01 Thread Steve Phillips
4/2014 11:24 am, Hugh Irvine wrote: > > Hello Steve - > > What you describe makes perfect sense - and this is exactly what globals are > for. > > See the hooks in “goodies/hooks.txt” for lots of examples. > > regards > > Hugh > > > On 2 Apr 2014, at 10:59, St

Re: [RADIATOR] Define a global array

2014-04-01 Thread Steve Phillips
Actually, flag that - I found why it wasn't working and it was me failing at perl. &main::setVariable($varName.$key, $columns{$key}); should have been &main::setVariable($varName . "." . $key, $columns{$key}); -- Steve. On 2/04/2014 11:56 am, Steve Phillips wrote: >