(RADIATOR) problem with changing attributes during an PreAuthHook

2002-01-10 Thread Atto Lorenz
Hi, today I tried to write an PreAuthHook, which checks the Calling-Station-ID. I have stored the telephonenumbers also in the database. The idea to check the calling_station_id was to compare the calling_station_id from the user with the calling_station_ids from the database. If the

(RADIATOR) bug on 2.19-1?

2002-01-10 Thread Utku Er
Hi, I was testing the radiator 2.19-1(licensed) on redhat latest. Installed from an RPM I am using auth by SQL and using sybase freeTDS to connect. I started it in my shell and run a test with radpwtst. Radiator stopped working with error like below. trace 6 debug is below of that. can anybody

(RADIATOR) how to disconnect every 4 hours

2002-01-10 Thread Peter Zhu
Hello, I have installed radiator radius, we use database interbase to authenticate users. I want to know: 1. How can I config the radius so that it disconnects every 4 hours 2. How can I restrict the dialup number. E.g. we have 3 different dialup number (A=12345, B=56789, C=0) I want to

(RADIATOR) username 'slkdjfsldjf+0SDFS;'

2002-01-10 Thread hesham farouk
is it possible to do something that filters out illegal characters from theusernames ??? I get people typing usernames like Thu Jan 10 13:41:38 2002: ERR: Execute failed for 'select NASIDENTIFIER, NASPORT, ACCTSESSIONID, FRAMEDIPADDRESS from RADONLINE where

(RADIATOR) radius assigned IP's - cisco 7206

2002-01-10 Thread Mike Greene
Hello, I'm trying to sort out a problem that I'm dealing with and was wondering if anybody else has been down this road before. We currently have a users file that has one Default entry for all of our dynamic IP customers, and if we need to statically assign a customer an IP or subnet we

(RADIATOR) restrict login

2002-01-10 Thread Peter Zhu
Hello, I have installed radiator radius, we use database interbase to authenticate users. How can I to this: At the time when a user (e.g. user name: abc) already login, the second person could not login with the same login name (user name: abc). thank you very much peter zhu from uniware

(RADIATOR) Re: Fwd: Re(2): Radiator Evaluation Request

2002-01-10 Thread Mike McCauley
Hello Alan, On Wed, 9 Jan 2002 10:38, Joanne Davis wrote: Received: from niaws.magnet.mt ([217.30.97.15]) by server1.open.com.au (8.11.0/8.11.0) with ESMTP id g08BwB331598 for [EMAIL PROTECTED]; Tue, 8 Jan 2002 05:58:11 -0600 X-Map-MIXER-Originators: false To: Joanne

(RADIATOR) radwho.cgi question

2002-01-10 Thread Angel Bustos
Hi all again, I have trying with 2 realms: realmA and realmB I´ve defined 2 different SessionDatabase names When I invoke radwho.cgi I cannot isolate realm A and realmB to eventually show to 2 different hypothetical customers. radwho.cgi shows ALL the online users (realms A and B) I´m

(RADIATOR) Remote database configuration

2002-01-10 Thread Justin Kendall
Hello all, I have been monitoring this list for quite some time in preparation for our own install and implementation and I have a few questions that Im sure can be answered here. I will have one main radius server and SQL server installed in our main office (Which is not a POP) and 3

(RADIATOR) Hooks in Accounting only servers?

2002-01-10 Thread Cassidy B. Larson
I'm working on a new little feature that takes the 'Account-Output-Octets' and 'Account-Input-Octets' within the Accounting Stop packet and increments a particular users monthly record in a table I have created. If there is not a record for the month with this username it creates one with the

Re: (RADIATOR) radius assigned IP's - cisco 7206

2002-01-10 Thread Hugh Irvine
Hello Mike - On Fri, 11 Jan 2002 05:42, Mike Greene wrote: Hello, I'm trying to sort out a problem that I'm dealing with and was wondering if anybody else has been down this road before. We currently have a users file that has one Default entry for all of our dynamic IP customers, and if

Re: (RADIATOR) Re: SORRY: bug on 2.19-1?

2002-01-10 Thread Hugh Irvine
Hello Utku - You can use DBD::ODBC and a commercial ODBC driver, or you can use DBD::ODBC-Proxy, or you can run a copy of Radiator on the MS box and proxy the relevant radius packets directly to it. This topic has been discussed on the list many times so check the archive site and do a

Re: (RADIATOR) username 'slkdjfsldjf+0SDFS;'

2002-01-10 Thread Hugh Irvine
Hello Hesham - You should use the UsernameCharSet parameter in Radiator 2.19. See section 6.4.30 in the Radiator 2.19 manual (doc/ref.html). regards Hugh On Fri, 11 Jan 2002 01:25, hesham farouk wrote: is it possible to do something that filters out illegal characters from the

Re: (RADIATOR) problem with changing attributes during an PreAuthHook

2002-01-10 Thread Hugh Irvine
Hello Atto - Why don't you just use a check item in the user definition? someuser Calling-Station-Id = 11223344 Your AuthBy SQL clause would look something like this: AuthBy SQL . AuthSelect select PASSWORD, CHECKATTR, REPLYATTR \

(RADIATOR) Re: duplicate entries for accounting ( Radiator radius)

2002-01-10 Thread Hugh Irvine
Hello Eapen - On Fri, 11 Jan 2002 05:06, Eapen Joseph wrote: Dear Hugh, I get a lot of Duplicate entries for accounting. A part of the log file for the case is given below. Thu Jan 10 18:16:09 2002: ERR: do failed for 'insert into Q8ACCOUNTINGTABLE6 (USERNAME, CALLDATE1,

Re: (RADIATOR) restrict login

2002-01-10 Thread Hugh Irvine
Hello Peter - You would use a session database and either the MaxSessions parameter in the Realm or Handler, or DefaultSimultaneousUse in the AuthBy clause and individual Simultaneous-Use check items per user. Have a look at sections 6.16.3, 6.17.14 and 13.1.14 in the Radiator manual

Re: (RADIATOR) how to disconnect every 4 hours

2002-01-10 Thread Hugh Irvine
Hello Peter - On Thu, 10 Jan 2002 23:53, Peter Zhu wrote: Hello, I have installed radiator radius, we use database interbase to authenticate users. I want to know: 1. How can I config the radius so that it disconnects every 4 hours You would send a Session-Timeout reply attribute

Re: (RADIATOR) Hooks in Accounting only servers?

2002-01-10 Thread Hugh Irvine
Hello Cassidy - On Fri, 11 Jan 2002 11:21, Cassidy B. Larson wrote: I'm working on a new little feature that takes the 'Account-Output-Octets' and 'Account-Input-Octets' within the Accounting Stop packet and increments a particular users monthly record in a table I have created. If there

Re: (RADIATOR) Hooks in Accounting only servers?

2002-01-10 Thread Hugh Irvine
Hello Cassidy - I have just noticed that you have the PostAuthHook inside an AuthBy clause, which will not work. The PostAuthHook is a Handler parameter - it should be outside any AuthBy clause. regards Hugh On Fri, 11 Jan 2002 15:39, Cassidy B. Larson wrote: Hi Hugh, I suspect the

(RADIATOR) Rcrypt Question

2002-01-10 Thread KHOO,FRANCINE-TL (HP-Singapore,ex7)
Hi, I am trying to use Rcrypt to encrypt the passwords in my users file for radiator. I have created a small perl script using the Radius::Rcrypt, and in this program i encrypt and immediately decrypt the password. It seems to work as i get an encrypted string, and it decrypts successfully