Hello Alan,<div>there was some problem with my firewall. I disabled it. and now it is working fine.</div><div><br></div><div>Thank you. :)<br><br>On Thu, 27 Jan 2011 16:41:20 , freeradius-users-request@lists.freeradius.org wrote<br>Send Freeradius-Users mailing list submissions to<br>
   freeradius-users@lists.freeradius.org<br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
   http://lists.freeradius.org/mailman/listinfo/freeradius-users<br>
or, via email, send a message with subject or body 'help' to<br>
   freeradius-users-request@lists.freeradius.org<br>
<br>
You can reach the person managing the list at<br>
   freeradius-users-owner@lists.freeradius.org<br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of Freeradius-Users digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. Re: Python module/program (Terry Simons)<br>
   2. Radius authentication problem. (vijay s sheelavantar)<br>
   3. reset sql counter every 30 minute (piston)<br>
   4. Re: reset sql counter every 30 minute (Bishal Pun)<br>
   5. Re: Radius authentication problem. (Alan Buxey)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Wed, 26 Jan 2011 15:06:58 -0800<br>
From: Terry Simons <terry.simons@gmail.com><br>
Subject: Re: Python module/program<br>
To: FreeRadius users mailing list<br>
   <freeradius-users@lists.freeradius.org><br>
Message-ID:<br>
   <AANLkTi=pjYQ7Uk2QxrHGy4X5z-NRZOrb0NB=uf=cVr9-@mail.gmail.com><br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
Is the python module catching all exceptions?<br>
<br>
You need to make sure you don't mask out the KeyboardInterrupt exception...<br>
otherwise, you may prevent Control-C from being passed up the stack.<br>
<br>
I'm not sure if that's your issue, but it sounds like it could be.  It's<br>
considered a Python best practice to explicitly catch the exact exceptions<br>
that you know how to handle, and let exceptions that you're not going to<br>
handle directly trickle up.<br>
<br>
That is to say that you should never do something like:<br>
<br>
try:<br>
    <some code><br>
except:<br>
   <some code><br>
<br>
because you *will* end up masking things like KeyboardInterrupt.<br>
<br>
You should always do something like:<br>
<br>
try:<br>
    <some code><br>
except TheExceptionClass:<br>
    <some code><br>
<br>
HTH,<br>
<br>
- Terry<br>
<br>
On Wed, Jan 26, 2011 at 2:47 PM, McCann, Brian <bmccann@andmore.com> wrote:<br>
<br>
> Hi all.  I've got freeradius working using a python library for auth, but<br>
> something interesting happened when I did.  When I run "radius -X", and<br>
> press  CRTL+C, it no longer exits.  It just returns "Ready to process<br>
> requests.".  The PID doesn't change, so it's not like its exiting and<br>
> restarting.<br>
><br>
> I looked at http://wiki.freeradius.org/Rlm_perl (yes...I know...perl !=<br>
> python, but as the python page doesn't say much, I'm going on the perl page<br>
> for a starting point) and it doesn't look like the script has to do anything<br>
> to handle exits.  Does anyone know what I'm missing?<br>
><br>
> Thanks,<br>
> --Brian<br>
><br>
> -<br>
> List info/subscribe/unsubscribe? See<br>
> http://www.freeradius.org/list/users.html<br>
><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <https://lists.freeradius.org/pipermail/freeradius-users/attachments/20110126/70e696f4/attachment.html><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: 27 Jan 2011 02:34:05 -0000<br>
From: "vijay s sheelavantar" <s_vijay65@rediffmail.com><br>
Subject: Radius authentication problem.<br>
To: "freeradius-users" <freeradius-users@lists.freeradius.org><br>
Message-ID: <20110127023405.36957.qmail@f4mail-235-233.rediffmail.com><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
Hello Friends,I have intalled RADIUS server on one machine which has fedora 10. I have installed freeradius-server-2.1.10 on it(server machine IP 10.150.110.42).<br>
I have one more machine with redhat linux on which i have installed pam_radius-1.3.17(client machine IP 10.150.113.4).<br>
I have done the follwoing configuration at both sides<br>
SERVER SIDE.<br>
users file<br>
"vijay" &nbsp; &nbsp;Auth-Type := Local, Cleartext-Password == "123qwe", NAS-IP-Address == "10.150.113.4"&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Reply-Message = "Hello, %u"<br>
clients.confclient 127.0.0.1 {secret &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= testing123shortname &nbsp; &nbsp; &nbsp; = localhostnastype &nbsp; &nbsp; = other}client 10.150.113.4/24 {&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;secret &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= testing123&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;shortname &nbsp; &nbsp; &nbsp; = private-network-1}&nbsp;client 10.150.110.42/24 {&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;secret &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= testing123&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;shortname &nbsp; &nbsp; &nbsp; = private-network-1}<br>
I have not changed anything in radiusd.conf.<br>
CLIENT SIDE/etc/pam.d/sshdauth &nbsp; &nbsp; &nbsp; sufficient &nbsp; pam_radius_auth.so<br>
/etc/raddb/server# server[:port] shared_secret &nbsp; &nbsp; &nbsp;timeout (s)127.0.0.1 &nbsp; &nbsp; &nbsp; testing123 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;110.150.110.42 &nbsp; testing123 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;3other-server &nbsp; &nbsp;other-secret &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;3<br>
/etc/ssh/sshd_configUsePAM yes<br>
<br>
Above mentioned is my configuration. when i try to connect client with SSH it is not sending a request for authenticating user to RADIUS server. kindly let me know what else configuration i have to do, or if there are any mistakes in my configuration plz help to correcr it.<br>
Thank you.<br>
Regards,<br>
VIJAY S.<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <https://lists.freeradius.org/pipermail/freeradius-users/attachments/20110127/1b123166/attachment.html><br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Wed, 26 Jan 2011 23:49:38 -0800 (PST)<br>
From: piston <pistonic@yahoo.com><br>
Subject: reset sql counter every 30 minute<br>
To: Free Radiususersmailinglist<br>
   <freeradius-users@lists.freeradius.org><br>
Message-ID: <407521.84265.qm@web36803.mail.mud.yahoo.com><br>
Content-Type: text/plain; charset="us-ascii"<br>
<br>
Hi<br>
<br>
Is that possible to reset the sql counter every 30 minute?<br>
<br>
Basically, i need to get user free access of 20 minutes, after 20 minutes NAS will logout the user.<br>
<br>
And the user is allow to login again after 30 minute.<br>
<br>
Thanks<br>
<br>
<br>
      <br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <https://lists.freeradius.org/pipermail/freeradius-users/attachments/20110126/e3e4e76c/attachment.html><br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Thu, 27 Jan 2011 14:32:25 +0545<br>
From: Bishal Pun <bishalpun@gmail.com><br>
Subject: Re: reset sql counter every 30 minute<br>
To: piston <pistonic@yahoo.com>,   FreeRadius users mailing list<br>
   <freeradius-users@lists.freeradius.org><br>
Message-ID:<br>
   <AANLkTi=R+pzcHu0ukphxKp32hDQD_5WT_ty84i9hntZE@mail.gmail.com><br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
You can use Session-Timeout attribute in your radreply sql table like:<br>
<br>
+-----+-----------+-----------------+----+---------+-------+<br>
| id  | UserName  | Attribute       | op | Value   |<br>
+-----+-----------+-----------------+----+---------+-------+<br>
|  | 257 | test  | Session-Timeout | := | 1800    |<br>
+-----+-----------+-----------------+----+---------+-------+<br>
<br>
<br>
Regards<br>
Bishal<br>
<br>
On Thu, Jan 27, 2011 at 1:34 PM, piston <pistonic@yahoo.com> wrote:<br>
<br>
> Hi<br>
><br>
> Is that possible to reset the sql counter every 30 minute?<br>
><br>
> Basically, i need to get user free access of 20 minutes, after 20 minutes<br>
> NAS will logout the user.<br>
><br>
> And the user is allow to login again after 30 minute.<br>
><br>
> Thanks<br>
><br>
><br>
> -<br>
> List info/subscribe/unsubscribe? See<br>
> http://www.freeradius.org/list/users.html<br>
><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <https://lists.freeradius.org/pipermail/freeradius-users/attachments/20110127/b7d26281/attachment.html><br>
<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Thu, 27 Jan 2011 09:48:19 +0000<br>
From: Alan Buxey <A.L.M.Buxey@lboro.ac.uk><br>
Subject: Re: Radius authentication problem.<br>
To: FreeRadius users mailing list<br>
   <freeradius-users@lists.freeradius.org><br>
Message-ID: <20110127094819.GB17252@lboro.ac.uk><br>
Content-Type: text/plain; charset=iso-8859-1<br>
<br>
Hi,<br>
<br>
>    "vijay" ? ?Auth-Type := Local, Cleartext-Password == "123qwe",<br>
                ^^^^^^^^^^^^ 1           ^^^^^^^^^^^^^ 2<br>
<br>
<br>
1 is wrong. you dont need it.<br>
<br>
2 is wrong, operator should be :=  , not  ==<br>
<br>
>    Above mentioned is my configuration. when i try to connect client with SSH<br>
>    it is not sending a request for authenticating user to RADIUS server.<br>
<br>
tcpdump, radiusd -X debug etc ?  is the server running?<br>
<br>
alan<br>
<br>
<br>
------------------------------<br>
<br>
-<br>
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html<br>
<br>
<br>
End of Freeradius-Users Digest, Vol 69, Issue 93<br>
************************************************<br>
</div><br><A HREF="http://sigads.rediff.com/RealMedia/ads/click_nx.ads/www.rediffmail.com/signatureline.htm@Middle?" target="_blank"><IMG SRC="http://sigads.rediff.com/RealMedia/ads/adstream_nx.ads/www.rediffmail.com/signatureline.htm@Middle"></A>