Re: (RADIATOR)

1999-10-06 Thread Hugh Irvine
Hello Christopher - On Wed, 06 Oct 1999, Christopher Andersson wrote: > >%_Hello, > > When my PostAuthHook i supposed to run, I get this error message: > > Global symbol "$p" requires explicit package name at (eval 21) line 1, chunk >62. > > My hook looks like this: > > sub { $p = ${$_[

Re: (RADIATOR) Accounting Hooks

1999-10-06 Thread Hugh Irvine
Hi Pete - On Wed, 06 Oct 1999, Pete Black wrote: > Is there any way to put in a post accounting hook? > > We need to create another accounting log file in our own format on the > fly and we need to know if we can do it via a hook or by altering the > code itself. The simplest way to do this is

(RADIATOR) Simultaneous use

1999-10-06 Thread Derek Sanderson
I use a default profile that does an AuthBy Platypus.  in that default profile, I specify that the MaxSessions 1.  i have 2 or three customers that I would like to up that MaxSession count.  whats the easiest way to do that for just a couple customers.    thanks    Derek

(RADIATOR) Filters

1999-10-06 Thread Lutfi YUNUSOGLU
Title: Filters Hi I want to use a filter which is for restricting users access to our DNS and only to a specific host with port 443 (ssl). I create following: User-Service=Framed-User, Framed-Protocol=PPP, Framed-Netmask=255.255.255.0, Framed-Routing=None, Framed-MTU=1500, Framed-Compressio

(RADIATOR) Free RadKey demo available

1999-10-06 Thread Mike McCauley
We are pleased to announce a freely available demo of the new RadKey software is available to Radiator customers and evaluators. We have developed a demo version of the end user software (RadKey Challenger) that does not require a physical token to be installed in the PC: it pretends it has a pre

Re: (RADIATOR)

1999-10-06 Thread David Lloyd
On Wed, 6 Oct 1999, Christopher Andersson wrote: >Hello, > >When my PostAuthHook i supposed to run, I get this error message: > >Global symbol "$p" requires explicit package name at (eval 21) line 1, chunk >62. > >My hook looks like this: > > sub { $p = ${$_[1]}; \ >my $username = $p->get

(RADIATOR) Hooking (Newbee)

1999-10-06 Thread Christopher Andersson
Good day,   OK, Hooking:   My PostAuthHook runs 3 times every time I run radpwtst. I.e. the lines    my $username = ${$_[0]}->getAttrByNum($Radius::Radius::USER_NAME);   print "$username\n"; produces username 3 times on the screen.   I assume once after authentication request, once after ac

(RADIATOR) Livingston Compatablity (User File)

1999-10-06 Thread Jason Godsey
We are having trouble figuring out how to work w/ our Radius 2.1 users file in Radiator.. Everything we do works except for the Group check.. We use something like DEFAULT Prefix=P, Auth-Type=System, Group=kflex, NAS-IP-Address=127.0.0.1 DEFAULT Prefix=P, Auth-Type=System, Group=kflex, N

(RADIATOR) Authby RADIUS but store Accounting in SQL??

1999-10-06 Thread Brian Morris
Hi all, I would like to authenticate users using RADIUS on another machine but record the accounting data to an SQL database. I'm sure this can be done with a continue until... or something but I'm currently stumped. Can anyone shine some light on this one? Thanks, Brian === Archive at http

Re: (RADIATOR) Simultaneous use

1999-10-06 Thread Hugh Irvine
Hello Derek - On Wed, 06 Oct 1999, Derek Sanderson wrote: > >%_I use a default profile that does an AuthBy Platypus. in that default profile, I specify that the MaxSessions 1. i have 2 or three customers that I would like to up that MaxSession count. whats the easiest way to do that for just

(RADIATOR) Re: dictionary

1999-10-06 Thread Hugh Irvine
Hello Peter - On Thu, 07 Oct 1999, Peter van der Vlies wrote: > Hello, > > We use the Radiator software fully to our satisfaction. Now we need to > implement a tunneling feature on our > Livingston Portmaster 3. In the dictionary we need to add: > > ATTRIBUTE LE-IPSec-Outsource-Profile

Re: (RADIATOR) Filters

1999-10-06 Thread Hugh Irvine
Hello Lufti - On Wed, 06 Oct 1999, Lutfi YUNUSOGLU wrote: > >%_Hi > > I want to use a filter which is for restricting users access to our DNS and > only to a specific host with port 443 (ssl). I create following: > > User-Service=Framed-User, > Framed-Protocol=PPP, > Framed-Netmask=255.255.255

(RADIATOR) users on-line

1999-10-06 Thread Ricardo Guerra
Hi! Sometimes radiator is'nt receiving the Stop signal and i have a lot of fake on-line users, is there any wah to tell radiator to check on the NAS every several minutes for the real on-line users? === Archive at http://www.thesite.com.au/~radiator/ To unsubscribe, email '[EMAIL PROTECTED]'

Re: (RADIATOR) Accounting Hooks

1999-10-06 Thread Pete Black
This is good, although we require that at the end of the month all existing records that don't have a stop record at the turn of the month get truncated at 00:00h the next day. Would it be possible to have some sort of hook that intercepted the incoming acct packet, then check if it's start recor

Re: (RADIATOR) Livingston Compatablity (User File)

1999-10-06 Thread Hugh Irvine
Hello Jason - On Thu, 07 Oct 1999, Jason Godsey wrote: > We are having trouble figuring out how to work w/ our > Radius 2.1 users file in Radiator.. > > Everything we do works except for the Group check.. > > We use something like > > DEFAULT Prefix=P, Auth-Type=System, Group=kflex, NAS-IP-Ad

Re: (RADIATOR) Hooking (Newbee)

1999-10-06 Thread Hugh Irvine
Hello Christopher - On Thu, 07 Oct 1999, Christopher Andersson wrote: > >%_Good day, > > OK, Hooking: > Good! > My PostAuthHook runs 3 times every time I run radpwtst. I.e. the lines >my $username = ${$_[0]}->getAttrByNum($Radius::Radius::USER_NAME); >print "$username\n"; > produces