Re[2]: authentetication with mysql and NAS type= other

2011-12-08 Thread tolik_shavlov...@mail.ru
oh, sorry but that username could be authenticated) mysql select * from radcheck; ++-+++--+ | id | username | attribute | op | value | ++-+++--+ | 11 | user |

Re[3]: authentetication with mysql and NAS type= other

2011-12-08 Thread Толик Шавловский
Hi, regarding Semulteneous-Use issue: I use cisco NAS, usernames 'user' ad_recv: Accounting-Request packet from host 10.169.33.11 port 1646, id=85, length=323 Acct-Session-Id = 3306 Called-Station-Id = 0013.1a08.9340 Calling-Station-Id = 0013.e8f4.3f0d Cisco-AVPair =

Re: FreeRADIUS with LDAP Support

2011-12-08 Thread Alan Buxey
Hi, I tried to compile FreeRADIUS with LDAP support however, rlm_ldap has not been compiled. Are libldap-2.4-2 libldap-dev not sufficent? Do I need to install OpenLDAP? if you read the output of ./configure eg ./confogure | grep WARN you will see what LDAP stuff is required - openldap

Re: FreeRADIUS with LDAP Support

2011-12-08 Thread Fajar A. Nugraha
On Thu, Dec 8, 2011 at 9:51 AM, Nick Khamis sym...@gmail.com wrote: Hello Everyone, I tried to compile FreeRADIUS with LDAP support however, rlm_ldap has not been compiled. Are libldap-2.4-2 libldap-dev not sufficent? Do I need to install OpenLDAP? Try libldap2-dev. That's what on

git timeout

2011-12-08 Thread tolik_shavlov...@mail.ru
Hi, i am making procedure for Alvarion IOT. freebsd# /usr/local/bin/git clone git://git.freeradius.org/freeradius-server.git Cloning into freeradius-server... git.freeradius.org[0: 88.190.25.44]: errno=Operation timed out fatal: unable to connect a socket (Operation timed out) are there other

Re: git timeout

2011-12-08 Thread Alan Buxey
Hi, freebsd# /usr/local/bin/git clone git://git.freeradius.org/freeradius-server.git Cloning into freeradius-server... git.freeradius.org[0: 88.190.25.44]: errno=Operation timed out fatal: unable to connect a socket (Operation timed out) check your connectivity... $ git clone

RE: Re[6]: authentetication with mysql and NAS type= other

2011-12-08 Thread David Peterson
Actually the 5.x GHz Extreme product is a fully 16e protocol, just not WiMax certified. The 4-Motion product is fully WiMax certified as you point out. WiMax as a protocol uses EAP-TTLS/TLS and does not send the username in the outer tunnel. If you watch the debug you will see the

RE: Re[2]: authentetication with mysql and NAS type= other

2011-12-08 Thread David Peterson
Hey Alan, I responded off list by accident but his real problem is that his Framed-Filter-Id is not formatted properly for his NAS. David From: freeradius-users-bounces+david.peterson=acc-corp@lists.freeradius.org

Re[2]: run radius in debug mode with screen

2011-12-08 Thread Коньков Евгений
AD Коньков Евгений wrote: BUG: you must not detach from console when 'radiusd -X' AD FreeRADIUS does *not* detach from the console when using radiusd -X. Thank you all I have found where is problem. This is BUG for maintainer of FreeBSD port /usr/local/etc/rc.d/radiusd

Re: more explanation for EAP session for state ... did not finish!

2011-12-08 Thread Zeus V Panchenko
Alan DeKok (al...@deployingradius.com) [11.10.14 13:05] wrote: so, may be it is worth to mention that somewhere amongst the possible causes? The wiki can be edited by anyone. Go for it. since you reply i was trying several times to do that ... though i do not use nither twitter nor

Re: more explanation for EAP session for state ... did not finish!

2011-12-08 Thread Fajar A. Nugraha
On Thu, Dec 8, 2011 at 8:18 PM, Zeus V Panchenko z...@ibs.dn.ua wrote: since you reply i was trying several times to do that ... though i do not use nither twitter nor github, i registered with github and trying to authenticate on http://wiki.freeradius.org but each time i fail with:

Re: Linking Shared/Static library in Freeradius Module

2011-12-08 Thread Mustafa Reşit Şahin
Hello, I will try to explain what i am trying to achive. I am developing a freeradius module called rlm_itap. This module uses a shared library called print.so (a library i use for test purposes.). There is only one procedure in the library and it is called : myprint() . I am able to run

Re: more explanation for EAP session for state ... did not finish!

2011-12-08 Thread Phil Mayers
On 08/12/11 13:18, Zeus V Panchenko wrote: Alan DeKok (al...@deployingradius.com) [11.10.14 13:05] wrote: so, may be it is worth to mention that somewhere amongst the possible causes? The wiki can be edited by anyone. Go for it. since you reply i was trying several times to do that ...

Re: Linking Shared/Static library in Freeradius Module

2011-12-08 Thread Fajar A. Nugraha
2011/12/8 Mustafa Reşit Şahin resitsa...@gmail.com: My makefile.in file RLM_LIBS    = @itap_ldflags@ -L/home/resit/radius/lib/ /home/resit/radius/lib/print.so shouldn't it be -lprint instead of /home/resit/radius/lib/print.so? -- Fajar - List info/subscribe/unsubscribe? See

Re: Getting NT_STATUS_WRONG_PASSWORD: Wrong Password (0xc000006a) when using ntlm_auth

2011-12-08 Thread lint
Just to post a confirmation, this was my issue (multiple copies of modules in the /etc/raddb/modules directory), which was self-inflicted since I kept them there. I had other issues come up with permissions, logon failures due to realm, etc. All were resolved with the FreeRADIUS documentation

Re: Linking Shared/Static library in Freeradius Module

2011-12-08 Thread Mustafa Reşit Şahin
Well, yes it seems to be problem. But there is one more thing. The libprint.so should reside in : /usr/lib or /usr/local/lib/ Considering my experience with writing a module for freeradius i think wiki page for module creation can be updated with following info: 1) Mentioning autoconf

Re: Linking Shared/Static library in Freeradius Module

2011-12-08 Thread Alan DeKok
Mustafa Reşit Şahin wrote: Considering my experience with writing a module for freeradius i think wiki page for module creation can be updated with following info: 1) Mentioning autoconf procedure. No. Autoconf is insane and complicated. There is no reason why normal people need to use

Re: Linking Shared/Static library in Freeradius Module

2011-12-08 Thread Alan DeKok
Mustafa Reşit Şahin wrote: ... But when i use the method myprint() from the library print.so , i get the error when i run the server and send a message with radtest : ... -lc -L/home/resit/radius/lib/ /home/resit/radius/lib/print.so This is a dynamic linker problem. You've put the library

Re: Authentication via ntlm_auth with check the user group

2011-12-08 Thread Сергей Усов
Thanks, Alan, it works. I have another question. Can I check the user's group for authentication via TTLS? 07.12.2011 18:32, Alan DeKok пишет: Сергей Усов wrote: I have changed inner_tunnel, but unsuccessfully You didn't do what I said, so I'm not surprised it didn't work.

Re: Authentication via ntlm_auth with check the user group

2011-12-08 Thread Alan DeKok
Сергей Усов wrote: Thanks, Alan, it works. I have another question. Can I check the user's group for authentication via TTLS? Put any group checking into the inner-tunnel server. That's what it's for. Alan DeKok. - List info/subscribe/unsubscribe? See

Re: FreeRADIUS with LDAP Support

2011-12-08 Thread Nick Khamis
Hello Everyone, I do have libldap2-dev installed however, it seems like openldap in all it's totality is needed? Thanks in Advnace, Nick. On Thu, Dec 8, 2011 at 5:31 AM, Fajar A. Nugraha l...@fajar.net wrote: On Thu, Dec 8, 2011 at 9:51 AM, Nick Khamis sym...@gmail.com wrote: Hello Everyone,

Radius Client vs. Radius Client-NG

2011-12-08 Thread Nick Khamis
Hello Everyone, When installing the client, some documentation point to: radiusclient-ng 0.5.6: http://developer.berlios.de/projects/radiusclient-ng/, and freeradius-client-1.1.6.tar: ftp://ftp.freeradius.org/pub/freeradius/ Is there a difference between the two? Is one recommended or have

Re: Radius Client vs. Radius Client-NG

2011-12-08 Thread Alexandre Chapellon
read this: http://freeradius.org/freeradius-client/ from the link below: In late 2006 it was decided that the FreeRADIUS Project should adopt the latest code from radiusclient-ng cvs as the basis of a new FreeRADIUS client package. I personnally use radiusclient-ng Le 08/12/2011 19:18, Nick

Re: FreeRADIUS with LDAP Support

2011-12-08 Thread John Dennis
On 12/08/2011 01:11 PM, Nick Khamis wrote: Hello Everyone, I do have libldap2-dev installed however, it seems like openldap in all it's totality is needed? What is needed will be listed in the output of configure. Also listed will be where configure looked for the dependency. You should read

Re[8]: authentetication with mysql and NAS type= other

2011-12-08 Thread tolik_shavlov...@mail.ru
how can i see inner-tunnel portion? from debug? so, u didn't answer, how did u know it was extreme?) 08 декабря 2011, 16:20 от David Peterson-19 [via FreeRadius] ml-node+s1045715n5058598...@n5.nabble.com: Actually the 5.x GHz Extreme product is a fully 16e protocol, just not WiMax

Re: Linksys WIFI Authentication using freeradius?

2011-12-08 Thread Michel Bulgado
On 12/07/2011 08:37 AM, Michel Bulgado wrote: On Wednesday 07 December 2011 01:26:08 Fajar A. Nugraha wrote: On Wed, Dec 7, 2011 at 1:15 PM,mic...@casa.co.cu wrote: google search and it turns out all the variations I have encountered are implementing freeradius with PEAP TLS and mysql

Re: Linksys WIFI Authentication using freeradius?

2011-12-08 Thread Fajar A. Nugraha
On Fri, Dec 9, 2011 at 4:11 AM, Michel Bulgado mic...@casa.co.cu wrote: After the user to authenticate and connect to wireless, I noticed that the table RadAcct was empty, probing the inner-tunnel file found this: There are no accounting Requests inside of EAP-TTLS or PEAP tunnels. What

Re: Linksys WIFI Authentication using freeradius?

2011-12-08 Thread Michel Bulgado
On 12/08/2011 04:26 PM, Fajar A. Nugraha wrote: On Fri, Dec 9, 2011 at 4:11 AM, Michel Bulgadomic...@casa.co.cu wrote: After the user to authenticate and connect to wireless, I noticed that the table RadAcct was empty, probing the inner-tunnel file found this: There are no accounting

Problem with accounting and sql

2011-12-08 Thread Paul Thornton
: %{Packet-Src-IP-Address} - 217.65.160.124 [detail]expand: /var/log/radacct/%{%{Packet-Src-IP-Address}:-%{Packet-Src-IPv6-Address}}/detail-%Y%m%d - /var/log/radacct/217.65.160.124/detail-20111208 [detail] /var/log/radacct/%{%{Packet-Src-IP-Address}:-%{Packet-Src-IPv6-Address}}/detail-%Y%m%d

Re: Problem with accounting and sql

2011-12-08 Thread Alan DeKok
Paul Thornton wrote: I've been trying to debug why accounting information isn't making it into the SQL database on our main FR server (2.1.11) - it seems that this has been the case since upgrading from version 1.something ancient a few months back. OK... the debug log shows you have a

Re: Linksys WIFI Authentication using freeradius?

2011-12-08 Thread michel
Michel Bulgado mic...@casa.co.cu escribió: On 12/08/2011 04:26 PM, Fajar A. Nugraha wrote: On Fri, Dec 9, 2011 at 4:11 AM, Michel Bulgadomic...@casa.co.cu wrote: After the user to authenticate and connect to wireless, I noticed that the table RadAcct was empty, probing the inner-tunnel file

Re: Linksys WIFI Authentication using freeradius?

2011-12-08 Thread Fajar A. Nugraha
On Fri, Dec 9, 2011 at 9:39 AM, mic...@casa.co.cu wrote: Michel Bulgado mic...@casa.co.cu escribió:  On 12/08/2011 04:26 PM, Fajar A. Nugraha wrote: On Fri, Dec 9, 2011 at 4:11 AM, Michel Bulgadomic...@casa.co.cu  wrote: After the user to authenticate and connect to wireless, I noticed

Re: Radius Client vs. Radius Client-NG

2011-12-08 Thread Johan Meiring
On 2011/12/08 09:05 PM, Alexandre Chapellon wrote: read this: http://freeradius.org/freeradius-client/ from the link below: In late 2006 it was decided that the FreeRADIUS Project should adopt the latest code from radiusclient-ng cvs as the basis of a new FreeRADIUS client package. I

Re[2]: git timeout

2011-12-08 Thread Толик Шавловский
freebsd# ping git.freeradius.org PING git.freeradius.org (88.190.25.44): 56 data bytes 64 bytes from 88.190.25.44: icmp_seq=0 ttl=48 time=48.211 ms 64 bytes from 88.190.25.44: icmp_seq=1 ttl=48 time=48.253 ms 64 bytes from 88.190.25.44: icmp_seq=2 ttl=48 time=48.967 ms ^C --- git.freeradius.org

Re: Re[2]: git timeout

2011-12-08 Thread Fajar A. Nugraha
2011/12/9 Толик Шавловский tolik_shavlov...@mail.ru: freebsd# ping git.freeradius.org PING git.freeradius.org (88.190.25.44): 56 data bytes 64 bytes from 88.190.25.44: icmp_seq=0 ttl=48 time=48.211 ms 64 bytes from 88.190.25.44: icmp_seq=1 ttl=48 time=48.253 ms 64 bytes from 88.190.25.44: