RE: FreeRadius V2.0.0 Simultaneous-Use Problems

2008-01-22 Thread Dryw Paulic
, January 21, 2008 4:10 PM To: FreeRadius users mailing list Subject: Re: FreeRadius V2.0.0 Simultaneous-Use Problems On Monday 21 January 2008 14:19:06 Dryw Paulic wrote: mysql select * from radgroupcheck; ++---+--++---+ | id | GroupName | Attribute

RE: FreeRadius V2.0.0 Simultaneous-Use Problems

2008-01-22 Thread tnt
From what I can see start, interim and stop records are being recorded just fine. The issue is that the sql queries are matching old accounting records. Any idea on how I can fix this issue? If there is something I'm not understanding, please let me know. At this point I think my next step might

FreeRadius V2.0.0 Simultaneous-Use Problems

2008-01-21 Thread Dryw Paulic
Hello Everyone, On Freeradius Version 2.0.0, I have an issue with Simultaneous-Use. Multiple logins are being caught, but the issue seems to be that the checks seem to be catching much more than they should be. In particular, I was looking at this user: mysql select * from radgroupcheck;

Re: FreeRadius V2.0.0 Simultaneous-Use Problems

2008-01-21 Thread Kevin Bonner
On Monday 21 January 2008 14:19:06 Dryw Paulic wrote: mysql select * from radgroupcheck; ++---+--++---+ | id | GroupName | Attribute| op | Value | ++---+--++---+ | 1 | dynamic | Auth-Type| == | Local |

Re: FreeRadius V2.0.0 Simultaneous-Use Problems

2008-01-21 Thread tnt
I took a look at the SQL Queries used by freeradius to check the logins and decided to run them manually on my sql database: mysql SELECT COUNT(*) FROM radacct WHERE username = 'Kat' AND acctstoptime = 0; +--+ | COUNT(*) | +--+ | 16 | +--+ 1 row in set (0.00 sec)