Hi I am using free radisu 1.1.7 and eap tls authentication.I would like to know the maximum number of users/ authentication requests that it can handle? Regards Anoop -----Original Message----- From: freeradius-users-bounces@lists.freeradius.org [mailto:freeradius-users-bounces@lists.freeradius.org]On Behalf Of freeradius-users-request@lists.freeradius.org Sent: Thursday, October 25, 2007 11:02 AM To: freeradius-users@lists.freeradius.org Subject: Freeradius-Users Digest, Vol 30, Issue 91 Send Freeradius-Users mailing list submissions to freeradius-users@lists.freeradius.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.freeradius.org/mailman/listinfo/freeradius-users or, via email, send a message with subject or body 'help' to freeradius-users-request@lists.freeradius.org You can reach the person managing the list at freeradius-users-owner@lists.freeradius.org When replying, please edit your Subject line so it is more specific than "Re: Contents of Freeradius-Users digest..." Today's Topics: 1. Access-Reject in a php script (manIP) 2. FR-2.0.0-pre2 - virtual server configuration problem - how to use client and listen (Tomasz Zieleniewski) 3. Re: Access-Reject in a php script (Alan DeKok) 4. FR-2.0.0-pre2 - doubled sql accounting (Tomasz Zieleniewski) 5. Re: FR-2.0.0-pre2 - virtual server configuration problem - how to use client and listen (Alan DeKok) 6. Re: Access-Reject in a php script (A.L.M.Buxey@lboro.ac.uk) 7. Re: AW: AW: Newbie Question o.O (Sebastian Wild) 8. Re: AW: AW: Newbie Question o.O (Andy Billington) 9. Fw: FreeRadius Server: Installation problem (j v) ---------------------------------------------------------------------- Message: 1 Date: Wed, 24 Oct 2007 17:34:09 +0200 From: manIP <manvoip@gmail.com> Subject: Access-Reject in a php script To: freeradius-users@lists.freeradius.org Message-ID: <f90cb76b0710240834t4b984356s3ce45d2ec2677692@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" Hi all! I am using a script for the authentication and it is working well. I can send a list of attributes without any problem. Now I want to send an "Access-Reject" if the authentication fails but I do not know how...I would be very grateful if someone could tell me how to do so. herein is a test script: #!/usr/bin/php <?php $argv = $_SERVER['argv']; if ( $argv[1] == "toto") echo "Session-Timeout:=100"; else echo "Access-Reject"; //NOT WORKING!!!!!! ?> Thanks a lot for your assistance Khalid :)