(RADIATOR) 2.16 LogQuery and format_special not being expanded

2000-06-07 Thread Aaron Holtz
I'm setting up a custom LogQuery for my Log SQL function and it appears that not all the % variables are getting expanded like I would expect that they should. Here is my config: Table radlog LogQuery insert into radlog values (%t, '%N', '%h', $p, $s) include %D/connections

(RADIATOR) Oddness with 2.16 and SessionDatabase Identifiers

2000-06-07 Thread Aaron Holtz
With 2.16 I'm seeing two things that don't seem to fit with the docs. One is that the last database defined in the config is not the one used as the default, it is the first one listed. Second is that the SessionDatabase item in the Handler sections are not being honored. Here is my config that

[hugh@open.com.au: Re: (RADIATOR) Multithreaded radiator.]

2000-06-07 Thread Robin Gruyters
Does someone have a example for splitting the auth. and the accounting? - Forwarded message from Hugh Irvine <[EMAIL PROTECTED]> - Delivered-To: [EMAIL PROTECTED] >Received: from entoo.connect.com.au (entoo.connect.com.au [192.189.54.8]) by >perki.connect.com.au with ESMTP id IAA02376

Re: (RADIATOR) Password Log File Format

2000-06-07 Thread William Hernandez
OK, I have the password log the way I want it. It now looks like this: Wed Jun 7 11:01:47 2000: Login incorrect: [whr/whr] (203.63.154.1) Wed Jun 7 11:01:55 2000: Login OK: [whr] (203.63.154.1) I'm still in the testing phase, but I would like to have the nasname instead of the IP address in th

RE: (RADIATOR) Converting Dates to Unix format??

2000-06-07 Thread Mike Nerone
MySQL has a builtin function called "UNIX_TIMESTAMP()," which is what I think you're looking for. Just do something like update ACCOUNTING set TIMESTAMP = UNIX_TIMESTAMP("2000-02-30 12:00:00") where ... The only catch is that you have to use that exact date format (-mm-dd hh:mm:ss). If you

(RADIATOR) Radiator stops accepting authentications...

2000-06-07 Thread Felicetti, Stephen A.
Hi there!! I'm running Radiator 2.15 on SunOS 5.7 and perl 5.00503. I'm using LDAP to hold username/passwords. Everything works like a charmEXCEPT, on occasion, it just stops working. I was doing last minute testing all day yesterday before releasing it to a group of beta testers. I must hav

(RADIATOR) Perl script question

2000-06-07 Thread Tuncay MARGILIC
Title: Perl script question Hi there, I found this script at the Radiator faq docs. Why do we multiply the $total and $accttotal values by 8. Any idea? Tuncay Margilic System Adm. Siemens Business Services #!/usr/bin/perl     $total = 0;     $accttotal = 0;     open(FD, "/usr/bi

Re: (RADIATOR) Perl script question

2000-06-07 Thread Jason J. Horton
I would assume because the logged values are bytes, and teh script wants the value in bits. > Tuncay MARGILIC wrote: > I found this script at the Radiator faq docs. Why do we multiply the $total > and $accttotal values by 8. Any idea? > > Tuncay Margilic > System Adm. > Siemens Business Services

(RADIATOR) Authentication via MySQL

2000-06-07 Thread Patricia Jung
Hi, I really hope you don't mind a maybe stupid question but it really eats up my days... The question is: why hasn't my testuser the slightest chance of authentication? I'm playing a bit with a MySQL database that later will include the users database, but currently only has one valid testuser

RE: (RADIATOR) Perl script question

2000-06-07 Thread Tuncay MARGILIC
Title: RE: (RADIATOR) Perl script question But the values which in $total and $accttotal are number of access and accounting requests...they are not bytes per second Tuncay -Original Message- From: Jason J. Horton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 07, 2000 8:19 PM To

RE: [hugh@open.com.au: Re: (RADIATOR) Multithreaded radiator.]

2000-06-07 Thread Dave Kitabjian
I, too, would like to see an example of splitting accounting and authentication. Do you need two different config files? If so, what is the AcctPort in the authentication config file, and vice versa? Etc... Dave > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]O

(RADIATOR) Authentication for ftpd

2000-06-07 Thread Tuncay MARGILIC
Title: Authentication for ftpd Hi there, I am planning to setup an ftp server that will handle 3k users. I heard that it is possible to make the authentication on radius. but I don't know how. Does anyone have informaion about it. Any documents or faq. The Operating system will be Linux

Re: (RADIATOR) Radiator stops accepting authentications...

2000-06-07 Thread Hugh Irvine
Hi Steve - On Thu, 08 Jun 2000, Felicetti, Stephen A. wrote: > > > Hi there!! > > I'm running Radiator 2.15 on SunOS 5.7 and perl 5.00503. > I'm using LDAP to hold username/passwords. > Everything works like a charmEXCEPT, on occasion, it just stops working. > I was doing last minute test

Re: (RADIATOR) Authentication via MySQL

2000-06-07 Thread Hugh Irvine
Hello Patricia - On Thu, 08 Jun 2000, Patricia Jung wrote: > Hi, > > I really hope you don't mind a maybe stupid question but it really eats > up my days... The question is: why hasn't my testuser the slightest chance > of authentication? > > I'm playing a bit with a MySQL database that later

Re: [hugh@open.com.au: Re: (RADIATOR) Multithreaded radiator.]

2000-06-07 Thread Hugh Irvine
Hello Robin - On Thu, 08 Jun 2000, Robin Gruyters wrote: > Does someone have a example for splitting the auth. and the accounting? > This has been discussed on the list before, but here is what to do. Run two copies of Radiator, one listening on the authentication port and the other listening

Re: (RADIATOR) Authentication for ftpd

2000-06-07 Thread Hugh Irvine
Hello Tuncay - On Thu, 08 Jun 2000, Tuncay MARGILIC wrote: > > > > Hi there, > > > I am planning to setup an ftp server that will handle 3k users. I heard that > it is possible to make the authentication on radius. but I don't know how. > Does anyone have informaion about it. Any documents

Re: (RADIATOR) Password Log File Format

2000-06-07 Thread Hugh Irvine
Hello William - On Thu, 08 Jun 2000, William Hernandez wrote: > OK, I have the password log the way I want it. > It now looks like this: > Wed Jun 7 11:01:47 2000: Login incorrect: [whr/whr] > (203.63.154.1) > Wed Jun 7 11:01:55 2000: Login OK: [whr] (203.63.154.1) > > I'm still in the testi

Re: (RADIATOR) Perl script question

2000-06-07 Thread Hugh Irvine
Hello Tuncay - On Thu, 08 Jun 2000, Tuncay MARGILIC wrote: > > > Hi there, > > I found this script at the Radiator faq docs. Why do we multiply the $total > and $accttotal values by 8. Any idea? > This script is used with MRTG to generate skyline graphs of traffic. Check the MRTG package to

(RADIATOR) Re: (Fwd) Radiator

2000-06-07 Thread Hugh Irvine
Hello - > > Hello, > would you please help us with the following topic. > Is it possible to run a radiator daemon twice on the same server with > two different > config files and different names connected to the same LDAP-DB ? Are > there other dependencies to be considered ? > This shouldn't