Im using freeradius-1.1.7 on my remote unix machine and developing on my client .net application. By now i succesfully made authorization and start/stop accounting request/responses (packet send/recieve logic). With radiusManager3 i generated card series, services .. Can i implement user login, consuming of card codes, etc. with only packets (acct) or im missing some crucial points? I hope that i (user, client) can make an behaviour of communicating with freeradius every 10sec and consuming 10sec of currently selected card code. thank you for your time, Juraj ____________________________________________________________________________________ Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs
Juraj Bilic wrote:
Can i implement user login, consuming of card codes, etc. with only packets (acct) or im missing some crucial points?
No idea. What "card codes" are you talking about?
I hope that i (user, client) can make an behaviour of communicating with freeradius every 10sec and consuming 10sec of currently selected card code.
You don't want to send accounting packets to the server every 10s. It's a very bad idea. If you need 10s granularity on accounting, use a local database. Alan DeKok.
hi, i'm using freeradius server like proxy, and i want to administrate it with web mode. please can you give applications or how i can implement the web mode option on my freeradius server. thanks for all. _________________________________________________________________ Appelez vos amis de PC à PC -- C'EST GRATUIT http://get.live.com/messenger/overview
Hey Parfait, Are you referring to the management of the FreeRADIUS configuration? (i.e: radiusd.conf, sql.conf, proxy.conf, etc...) or are you talking about the management of users? On Thu, Feb 28, 2008 at 11:22 AM, parfait kouassi nda < ndaparfait@hotmail.com> wrote:
hi,
i'm using freeradius server like proxy, and i want to administrate it with web mode. please can you give applications or how i can implement the web mode option on my freeradius server. thanks for all.
Regards, Liran Tal.
I'm using my freeradius server like proxy, and i want to administrate it in web mode page with dialupadmin. what is the files that i must configure? _________________________________________________________________ Découvrez Windows Live Spaces et créez votre site Web perso en quelques clics ! http://spaces.live.com/signup.aspx
http://wiki.freeradius.org/Dialup_admin Ivan Kalik Kalik Informatika ISP Dana 7/3/2008, "parfait kouassi nda" <ndaparfait@hotmail.com> piše:
I'm using my freeradius server like proxy, and i want to administrate it in web mode page with dialupadmin. what is the files that i must configure?
_________________________________________________________________ Découvrez Windows Live Spaces et créez votre site Web perso en quelques clics ! http://spaces.live.com/signup.aspx
Hi, I've follow the instruction on the link to configure dialup admin. i've a problem with the php3 scripts. when test the configuration in localhost the home page appears and on the right top we have the scripts .php3 which appears. i'm using redhat 9 with php 4. please can you help me to find solutions.
To: freeradius-users@lists.freeradius.org Subject: RE: freeradius web administration Date: Fri, 7 Mar 2008 11:53:24 +0100 From: tnt@kalik.net
http://wiki.freeradius.org/Dialup_admin
Ivan Kalik Kalik Informatika ISP
Dana 7/3/2008, "parfait kouassi nda" <ndaparfait@hotmail.com> piše:
I'm using my freeradius server like proxy, and i want to administrate it in web mode page with dialupadmin. what is the files that i must configure?
_________________________________________________________________ Découvrez Windows Live Spaces et créez votre site Web perso en quelques clics ! http://spaces.live.com/signup.aspx
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
_________________________________________________________________ Appelez vos amis de PC à PC -- C'EST GRATUIT http://get.live.com/messenger/overview
From: ndaparfait@hotmail.com To: freeradius-users@lists.freeradius.org Subject: RE: freeradius web administration Date: Tue, 25 Mar 2008 09:11:00 +0000 Hi, I've follow the instruction on the link to configure dialup admin. i've a problem with the php3 scripts. when i test the configuration in localhost the home page appears and on the right top of the screen the scripts .php3 source code which appears. apache can't execute these scripts <?php $auth_user=$HTTP_SERVE_VARS["PHP_AUTH_USER"]; if($auth_user)[ if(is_file("../html/buttons/$auth_user/buttons.html.php3)) include("../html/buttons/$auth_user/buttons.html.php3"); else ( if (is_file("../html/buttons/defaults/buttons.html.php3")) include("../html/buttons/default/buttons.html.php3"); ) ] else ( if(is_file("../html/buttons/default/buttons.html.php3")) include("../html/buttons/default/buttons.html.php3"); ] ?> i'm using redhat 9 with php 4. please can you help me to find solutions.
To: freeradius-users@lists.freeradius.org Subject: RE: freeradius web administration Date: Fri, 7 Mar 2008 11:53:24 +0100 From: tnt@kalik.net
http://wiki.freeradius.org/Dialup_admin
Ivan Kalik Kalik Informatika ISP
Dana 7/3/2008, "parfait kouassi nda" <ndaparfait@hotmail.com> piše:
I'm using my freeradius server like proxy, and i want to administrate it in web mode page with dialupadmin. what is the files that i must configure?
_________________________________________________________________ Découvrez Windows Live Spaces et créez votre site Web perso en quelques clics ! http://spaces.live.com/signup.aspx
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
Appelez vos amis de PC à PC -- C'EST GRATUIT Téléchargez Messenger, c'est gratuit ! _________________________________________________________________ Téléchargez le nouveau Windows Live Messenger ! http://get.live.com/messenger/overview
parfait kouassi nda wrote:
From: ndaparfait@hotmail.com To: freeradius-users@lists.freeradius.org Subject: RE: freeradius web administration Date: Tue, 25 Mar 2008 09:11:00 +0000
Hi,
I've follow the instruction on the link to configure dialup admin. i've a problem with the php3 scripts. when i test the configuration in localhost the home page appears and on the right top of the screen the scripts .php3 source code which appears. apache can't execute these scripts
<?php $auth_user=$HTTP_SERVE_VARS["PHP_AUTH_USER"]; if($auth_user)[ if(is_file("../html/buttons/$auth_user/buttons.html.php3)) include("../html/buttons/$auth_user/buttons.html.php3"); else ( if (is_file("../html/buttons/defaults/buttons.html.php3"))
include("../html/buttons/default/buttons.html.php3"); ) ] else ( if(is_file("../html/buttons/default/buttons.html.php3"))
include("../html/buttons/default/buttons.html.php3"); ] ?>
i'm using redhat 9 with php 4. please can you help me to find solutions.
<Directory "/usr/local/httpd/htdocs"> # # Enable PHP # AddType application/x-httpd-php .php .php3 AddType application/x-httpd-php-source .phps </Directory> *sigh*
> To: freeradius-users@lists.freeradius.org > Subject: RE: freeradius web administration > Date: Fri, 7 Mar 2008 11:53:24 +0100 > From: tnt@kalik.net > > http://wiki.freeradius.org/Dialup_admin > > Ivan Kalik > Kalik Informatika ISP > > > Dana 7/3/2008, "parfait kouassi nda" <ndaparfait@hotmail.com> piše: > > > > > > >I'm using my freeradius server like proxy, and i want to administrate it in web mode page with dialupadmin. what is the files that i must configure? > > > > > > > >_________________________________________________________________ > >Découvrez Windows Live Spaces et créez votre site Web perso en quelques clics ! > >http://spaces.live.com/signup.aspx > > > > - > List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
Appelez vos amis de PC à PC -- C'EST GRATUIT Téléchargez Messenger, c'est gratuit ! <http://get.live.com/messenger/overview>
Téléchargez le nouveau Windows Live Messenger ! Téléchargez Messenger, c'est gratuit ! <http://get.live.com/messenger/overview> ------------------------------------------------------------------------
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
This is an apache problem - nothing to do with freeradius. Just add .php3 to be processed the same way as .php file. Ivan Kalik Kalik Informatika ISP Dana 27/3/2008, "parfait kouassi nda" <ndaparfait@hotmail.com> piše:
From: ndaparfait@hotmail.com To: freeradius-users@lists.freeradius.org Subject: RE: freeradius web administration Date: Tue, 25 Mar 2008 09:11:00 +0000
Hi,
I've follow the instruction on the link to configure dialup admin. i've a problem with the php3 scripts. when i test the configuration in localhost the home page appears and on the right top of the screen the scripts .php3 source code which appears. apache can't execute these scripts
<?php $auth_user=$HTTP_SERVE_VARS["PHP_AUTH_USER"]; if($auth_user)[ if(is_file("../html/buttons/$auth_user/buttons.html.php3)) include("../html/buttons/$auth_user/buttons.html.php3"); else ( if (is_file("../html/buttons/defaults/buttons.html.php3")) include("../html/buttons/default/buttons.html.php3"); ) ] else ( if(is_file("../html/buttons/default/buttons.html.php3")) include("../html/buttons/default/buttons.html.php3"); ] ?>
i'm using redhat 9 with php 4. please can you help me to find solutions.
To: freeradius-users@lists.freeradius.org Subject: RE: freeradius web administration Date: Fri, 7 Mar 2008 11:53:24 +0100 From: tnt@kalik.net
http://wiki.freeradius.org/Dialup_admin
Ivan Kalik Kalik Informatika ISP
Dana 7/3/2008, "parfait kouassi nda" <ndaparfait@hotmail.com> pi�e:
I'm using my freeradius server like proxy, and i want to administrate it in web mode page with dialupadmin. what is the files that i must configure?
_________________________________________________________________ Découvrez Windows Live Spaces et créez votre site Web perso en quelques clics ! http://spaces.live.com/signup.aspx
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
Appelez vos amis de PC ŕ PC -- C'EST GRATUIT Téléchargez Messenger, c'est gratuit !
_________________________________________________________________ Téléchargez le nouveau Windows Live Messenger ! http://get.live.com/messenger/overview
http://www.freeradius.org/dialupadmin.html Ivan Kalik Kalik Informatika ISP Dana 28/2/2008, "parfait kouassi nda" <ndaparfait@hotmail.com> piše:
hi,
i'm using freeradius server like proxy, and i want to administrate it with web mode. please can you give applications or how i can implement the web mode option on my freeradius server. thanks for all.
_________________________________________________________________ Appelez vos amis de PC ŕ PC -- C'EST GRATUIT http://get.live.com/messenger/overview
participants (6)
-
Alan DeKok -
Arran Cudbard-Bell -
Ivan Kalik -
Juraj Bilic -
Liran Tal -
parfait kouassi nda