This is freeradius mail list so maybe you should ask them on the other place... For more info, please take a look on sql howto available on fr wiki. <br><br>Best regards <br><br><div class="gmail_quote">On Tue, May 27, 2008 at 11:15 AM, gaetano ortisi <<a href="mailto:gaetanoortisi@yahoo.it">gaetanoortisi@yahoo.it</a>> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><table style="font-family: arial; font-size: 10pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); width: 100%;" border="0" cellpadding="0" cellspacing="0">
<tbody><tr><td style="font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;" valign="top"><p>Hello,<br>
I am developing a small project to manage accounts provided by a captive<br>portal solution chillispot-freeradius-mysql, and I need help about working with<br>sql tables to do those few tasks the web interface should provide to admin users.<br>
I need to know how to:</p>
<p>- add an account</p>
<p>- remove an account</p>
<p>- show all accounts with the total time of all their connections</p>
<p>From what I understand, add an account is simple, all I have to do is add a record<br>to radcheck table like after checked that the username is not already present:</p>
<p> </p>
<p>mysql> select username from radcheck where username = 'John Doe';</p>
<p>..</p>
<p>(if 0 rows returned, continue)</p>
<p> </p>
<p>mysql> insert into radcheck (username, attribute, value) values ('John Doe', 'Password', 'x2jadfds');</p>
<p><br>However in an example from the oreilly book that the op is left as the default value ('=='),<br>while in another software that do a task like what I what should like to do (phpmyprepaid),<br>the attribute is "User-Password", and the op is ":=". What difference?</p>

<p> </p>
<p>To remove an account, I should delete all the records in radcheck that have the username<br>I want to remove, so:</p>
<p> </p>
<p>mysql> delete from radcheck where username = 'John Doe';</p>
<p> </p>
<p>But I would like to know, if the user has currently a session active, i.e.<br>it is connected to the service provided, it is immediately disconnected or<br>the session continue?</p>
<p>And moreover, I have some problems with radacct.<br>How to do the last task?<br>On the web I found few resources about manage freeradius with mysql.<br>Suggestions? Links?<br>Thanks,<br>            tano<br></p></td></tr>
</tbody></table><div class="WgoR0d"><br>





      <hr size="1"><font face="Arial" size="2">Scopri il <a href="http://us.rd.yahoo.com/mail/it/taglines/yahoo/ymail/SIG=11djrg460/**http%3A%2F%2Fwww.ymailblogit.com%2Fblog%2F" target="_blank"> Blog di Yahoo! Mail</a>: trucchi, novità, consigli... e la tua opinione!</font></div>
<br>-<br>
List info/subscribe/unsubscribe? See <a href="http://www.freeradius.org/list/users.html" target="_blank">http://www.freeradius.org/list/users.html</a><br></blockquote></div><br>