Re: Referencing LDAP attributes in post-auth

2011-12-19 Thread Adam Track
> why call LDAP in the outerid for EAP- surely call it in the inner-tunnel > instead > (and put some protection around it so that its only called when needed - right > now, if you look, you'll see your LDAP whacked all over the place during > requests > coming through - at least 3x more queries

Re: Referencing LDAP attributes in post-auth

2011-12-19 Thread Alan Buxey
Hi, >copy_request_to_tunnel = yes > >As mentioned earlier, I am assigning a standard RADIUS attribute, but the >value I'm passing to it is not there when I call it, which is in the >post_auth of the outer virtual server.. I figured it made sense to put it >there, since I call

Re: Referencing LDAP attributes in post-auth

2011-12-19 Thread Adam Track
> >    Thanks, I'll give it a try and post the debug.  Am I wrong to be > >surprised > >    that there is no answer for the first question, though?  There has to be > >a > >    great many users out there using EAP and assigning dynamic VLAN based on > &g

Re: Referencing LDAP attributes in post-auth

2011-12-19 Thread Alan Buxey
Hi, >Thanks, I'll give it a try and post the debug.  Am I wrong to be surprised >that there is no answer for the first question, though?  There has to be a >great many users out there using EAP and assigning dynamic VLAN based on > LDAP attributes or, not? I

Re: Referencing LDAP attributes in post-auth

2011-12-19 Thread Adam Track
(s) can I use to run a simple EAP test that would still use AD >  >    for authentication and LDAP for authorization? >  >  eapol_test  ? Thanks, I'll give it a try and post the debug.  Am I wrong to be surprised that there is no answer for the first question, though?  There has to be a great

Re: Referencing LDAP attributes in post-auth

2011-12-19 Thread Alan Buxey
Hi, >>> I still cannot figure out how to pass this value from authorize to >>> post-auth. >> >>  It works for PAP.  The only reason it doesn't work is you're running >> EAP, and that's more complicated. > >Is there something extra that needs to be done in order for the valu

Re: Referencing LDAP attributes in post-auth

2011-12-19 Thread Adam Track
>> I still cannot figure out how to pass this value from authorize to >> post-auth. > >  It works for PAP.  The only reason it doesn't work is you're running > EAP, and that's more complicated. Is there something extra that needs to be done in order for the value to be preserved when running EAP?

Re: Referencing LDAP attributes in post-auth

2011-12-10 Thread Alan DeKok
Adam Track wrote: > I recently saw another question along the same lines as this, so decided > to give this another go... > Am now running 2.1.10, and yes, Person-Type is defined in dictionary and > ldap.attrmap. I've also defined in dictionary the following in hopes of > passing on the value of P

Re: LDAP Attributes

2011-11-22 Thread Alan DeKok
Houston-III, Lester L wrote: > Is there a way to truncate the UID used by the LDAP module? My system > is using an UID structured like an email I would like to use everything > in front of the ‘@’ as the UID. Is this possible? Yes. See "realms" Alan DeKok. - List info/subscribe/unsubscribe

LDAP Attributes

2011-11-21 Thread Houston-III, Lester L
Is there a way to truncate the UID used by the LDAP module? My system is using an UID structured like an email I would like to use everything in front of the '@' as the UID. Is this possible? Lester Houston 111 Boeing Research & Technology Electronics Prototyping and Integration Center (EPIC)

Re: Referencing LDAP attributes in post-auth

2011-11-06 Thread schilling
This might help. Then I want to map certain attribute like employeeStatus from our iPlanet ldap server to some radius attribute, so I can manipulate it in the post-auth section. I put the following line in etc/raddb/dictionary ATTRIBUTE My-Local-employeeStatus 3000string and the followi

Re: Referencing LDAP attributes in post-auth

2011-11-01 Thread Phil Mayers
On 11/01/2011 07:41 PM, Adam Track wrote: > I’m just guessing, and could be WAY off, but may be an inner-tunnel vs. outer-tunnel thing. In eap.conf, I've got copy_request_to_tunnel = yes and use_tunneled_reply = yes. Neither the ldap nor perl modules are called in the inner-tunnel. Full debug

Re: Referencing LDAP attributes in post-auth

2011-11-01 Thread Adam Track
> I’m just guessing, and could be WAY off, but may be an inner-tunnel vs. outer-tunnel thing. In eap.conf, I've got copy_request_to_tunnel = yes and use_tunneled_reply = yes.  Neither the ldap nor perl modules are called in the inner-tunnel.  - List info/subscribe/unsubscribe? See http://www.free

RE: Referencing LDAP attributes in post-auth

2011-11-01 Thread Gary Gatten
Behalf Of Adam Track Sent: Tuesday, November 01, 2011 1:36 PM To: ' freeradius-users@lists.freeradius.org' Subject: Referencing LDAP attributes in post-auth Hello, I'm sorry for asking such a simple(?) thing, but my lack of understanding is not due to a lack of reading, searching,

Referencing LDAP attributes in post-auth

2011-11-01 Thread Adam Track
Hello, I'm sorry for asking such a simple(?) thing, but my lack of understanding is not due to a lack of reading, searching, trial-and-error... I just can't seem to figure out how to reference an ldap attribute in post-auth.  Using freeradius 2.1.8, PEAPv0/EAP-MSCHAPv2 with AD for authenticatio

Re: Multivalued (LDAP) Attributes and string matching, or regexes

2011-06-21 Thread Jason Antman
Alexander Clouter wrote: I thought I remembered this popping up recently, I would have mentioned it earlier but my Google-Fu at the time was weak and I though I was imagining things. If you checkout v2.1.x[1] and then type: $ git checkout -b foreach $ git cherry-pick a3221304 $ git cher

Re: Multivalued (LDAP) Attributes and string matching, or regexes

2011-06-21 Thread Alexander Clouter
Jason Antman wrote: > > I don't really know anything about it, and haven't seen mention of it > outside of the modules list, but perhaps I could use rlm_perl or > rlm_python? Does anyone know about the efficiency of these? I know I'm > approaching this from the standpoint of a traditional prog

Re: Multivalued (LDAP) Attributes and string matching, or regexes

2011-06-21 Thread Jason Antman
Alexander Clouter wrote: Peter Lambrechtsen wrote: I find the easist way to do it is to use a custom "users" file to allow / prevent access based on exact matches of LDAP attributes. then you can say if STAFF = Accept, if STAFF OFFSITE Accept, otherwise reject. This is how we

Re: Multivalued (LDAP) Attributes and string matching, or regexes

2011-06-16 Thread Alexander Clouter
Peter Lambrechtsen wrote: > > I find the easist way to do it is to use a custom "users" file to allow / > prevent access based on exact matches of LDAP attributes. > > then you can say if STAFF = Accept, if STAFF OFFSITE Accept, otherwise > reject. > > Th

Re: Multivalued (LDAP) Attributes and string matching, or regexes

2011-06-15 Thread Peter Lambrechtsen
I find the easist way to do it is to use a custom "users" file to allow / prevent access based on exact matches of LDAP attributes. then you can say if STAFF = Accept, if STAFF OFFSITE Accept, otherwise reject. This is how we do it here: http://lists.freeradius.org/pipermail/freera

Multivalued (LDAP) Attributes and string matching, or regexes

2011-06-15 Thread Jason Antman
Greetings, I have to control authorization based on a (possibly) multi-valued LDAP reply attribute called employeeType. I have all of the LDAP code working fine, but seem to have hit a snag. Each user has 1 to ??? (usually a max of 5 or so) employeeType values. The pertinent ones include "STAF

Re: RADIUS reading LDAP attributes

2010-09-03 Thread Sigurd Foshaug
Thanks Alan, I added an reply message item inside the authentication section which expands the My-Local-LDAP-Comment attribute. It now works as expected. Thanks, Sigurd On Thu, Aug 26, 2010 at 11:53 AM, Alan DeKok wrote: > Sigurd Foshaug wrote: > > I have added the My-Local-LDAP-Comment into th

Re: RADIUS reading LDAP attributes

2010-08-26 Thread Alan DeKok
Sigurd Foshaug wrote: > I have added the My-Local-LDAP-Comment into the raddb/dictionary file > like this: > > ATTRIBUTE My-Local-LDAP-Comment 3000string ... > Now, what I am failing to understand is how I can get the proxy server > to receive the My-Local-LDAP-Comment attribute from R

RADIUS reading LDAP attributes

2010-08-26 Thread Sigurd Foshaug
Hi all, I have a freeradius 2.1.3 running and I can successfully authenticate users. I would like to use a users LDAP attribute so I can provide them with different permissions on the proxy server. I have currently mapped a RADIUS attribute to the LDAP attribute and it successfully reads the attr

Re: Freeradius + Ldap + attributes

2008-09-01 Thread Ivan Kalik
>any chance you can provide the actual syntax of whats required? Syntax is the same as for other entries: replyItem radiusAttribute ldapAttribute so something like: replyItem Service-Type radiusServiceType replyItem Juniper-Local-User-Name juniperLocalName >replyItem

Re: Freeradius + Ldap + attributes

2008-08-31 Thread Ivan .
Hi any chance you can provide the actual syntax of whats required? replyItem Service-Type Administrative-User replyItem Juniper-Local-User-Name DEV Sorry, a bit of a novice freeraidus user thanks Ivan 2008/8/29 Ivan Kalik <[EMAIL PROTECTED]>: > Yes. Add

Re: Freeradius + Ldap + attributes

2008-08-29 Thread Ivan Kalik
Yes. Add the reply attributes to ldap.attrmap. Ivan Kalik Kalik Informatika ISP Dana 28/8/2008, "Ivan ." <[EMAIL PROTECTED]> piše: >Hi > >I have Freeradius configured with a backend of OpenLdap for user management. > >I would like to be able to pass attributes for Nortel and Juniper >gear, whic

Freeradius + Ldap + attributes

2008-08-28 Thread Ivan .
Hi I have Freeradius configured with a backend of OpenLdap for user management. I would like to be able to pass attributes for Nortel and Juniper gear, which when statically defining users in user file is done via: user Auth-type:=Local, User-Password := "test" Juniper-Local-User-Name =

EXEC question w/ LDAP Attributes

2007-07-27 Thread Reynold McGuire
Hello all, I have a question regarding returning attributes from LDAP with freeRadius. I need to do some logic comparing and the only way I have been able to get close is to use the post-auth section, enable 'exec' and push out some data to an external program were I can do some patter matching.

Re: Ldap attributes

2006-11-28 Thread Kostas Kalevras
Jóhann B. Guðmundsson wrote: I was wondering what is the proper way to enable ldap attributes in radius.conf for example Ldap-Group groupmembership_attribute = radiusGroupName will then other ldap attributes be matched in the same way? Ldap-Callingstationid callingstationid_attribute

Ldap attributes

2006-11-28 Thread Jóhann B. Guðmundsson
I was wondering what is the proper way to enable ldap attributes in radius.conf for example Ldap-Group groupmembership_attribute = radiusGroupName will then other ldap attributes be matched in the same way? Ldap-Callingstationid callingstationid_attribute = radiusCallingStationId Ldap-Realm

Re: ldap attributes and spaces

2006-11-16 Thread Alan DeKok
Stefan Winter <[EMAIL PROTECTED]> wrote: > I'm trying to retrieve some replyItems from an AD backend. It works fine as > expected with most attributes, but there are some string attributes which > contain spaces Either put quotes around the string, or hack rlm_ldap to pull the *entire* string fr

ldap attributes and spaces

2006-11-16 Thread Stefan Winter
Hi, I'm trying to retrieve some replyItems from an AD backend. It works fine as expected with most attributes, but there are some string attributes which contain spaces like displayName = aaa Restena, Fondation with ldap.attrmap RESTENA-Full-Name displayName (RESTENA-Full-Name

Re: LDAP attributes into freeradius

2005-08-17 Thread Alan DeKok
Joe H <[EMAIL PROTECTED]> wrote: > Where else do I need to add the new attribute No-Pool in order for > freeradius to use it? raddb/dictionary See also "man dictionary" Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

LDAP attributes into freeradius

2005-08-17 Thread Joe H
Here is my goal: I would like to assign an attribute to certain users in ldap and have freeradius look for that attribute to determine whether or not to reply back to the NAS device with an IP address pool name. The users with the attribute set would not have the Pool sent and the users witho

Re: LDAP attributes problem

2005-04-12 Thread Alan DeKok
clerc sylvain <[EMAIL PROTECTED]> wrote: > In reality, I must link my freeradius server with an Active Directory > and not a real ldap database and someone tells me that active > directory understand only PEAP ( I believe it was in this mailing list > but I don't remember exactly). No. Active d

Re: LDAP attributes problem

2005-04-12 Thread clerc sylvain
> > My server is running in PEAP mschapv2 and I've a problem when I want > > to authenticate a user with a ldap database > > No, you don't. LDAP is NOT an authentication server. I'm sorry the ldap database is linked to my freeradius (which is an authentication server, isn't it?) > > > apparen

Re: LDAP attributes problem

2005-04-12 Thread Alan DeKok
clerc sylvain <[EMAIL PROTECTED]> wrote: > My server is running in PEAP mschapv2 and I've a problem when I want > to authenticate a user with a ldap database No, you don't. LDAP is NOT an authentication server. > apparently, the ldap can't find the User-Name attribute Could it > be because

LDAP attributes problem

2005-04-12 Thread clerc sylvain
Hello all, My server is running in PEAP mschapv2 and I've a problem when I want to authenticate a user with a ldap database (all is ok without the ldap). My version of freeradius is 1.0.2 apparently, the ldap can't find the User-Name attribute Could it be because of mschapv2 I try to cha

Re: LDAP attributes

2005-03-14 Thread Alan DeKok
Michael Mitchell <[EMAIL PROTECTED]> wrote: > Running the server in DEBUG mode is one of the fastest ways of > discovering what processing the server performs on the requests it > receives... It's also what the developers do. To put it another way: The people who understand FreeRADIUS best A

Re: LDAP attributes

2005-03-14 Thread Dustin Doris
On Mon, 14 Mar 2005, [iso-8859-1] Benoît Bianchi wrote: > I’m desperately trying to get LDAP attributes sent back to NAS without any > success... > I've add RADIUS-LDAPv3.schema to my LDAP schema, and set radiusClass > attribute for my test user. > I can do successful authenti

Re: LDAP attributes

2005-03-14 Thread Michael Mitchell
Benoît Bianchi wrote: As you suggest I have already search on the Web for an answer to my trouble, anyway there wasn't... I never told you to go away and search for the answer yourself... I told you that if you run the server in DEBUG mode you'll see what it is doing, and hopefully where the resu

RE: LDAP attributes

2005-03-14 Thread =?iso-8859-1?Q?Beno=EEt_Bianchi?=
ginal Message- > From: [EMAIL PROTECTED] [mailto:freeradius- > [EMAIL PROTECTED] On Behalf Of Michael Mitchell > Sent: Monday, March 14, 2005 10:50 AM > To: freeradius-users@lists.freeradius.org > Subject: Re: LDAP attributes > > > > > Please help ... > > >

Re: LDAP attributes

2005-03-14 Thread Michael Mitchell
Please help ... As per the FAQ, README, various other documents, and many responses to questions on this list, please run the server in debug mode (radiusd -X) to see what it is doing, and why it is not doing what you expect. If you still can't work it out, post the output back to the list and s

Re: LDAP attributes

2005-03-14 Thread guest01
Hi Did you uncomment ldap in the authorize and authenticate section? Do you really have an access_attr "dialupAccess" which is TRUE or FALSE? hth peda - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

LDAP attributes

2005-03-14 Thread =?iso-8859-1?Q?Beno=EEt_Bianchi?=
I’m desperately trying to get LDAP attributes sent back to NAS without any success... I've add RADIUS-LDAPv3.schema to my LDAP schema, and set radiusClass attribute for my test user. I can do successful authentication but the value of this attribute is never sent back by freeradius to th

Re: Using multi-valued string LDAP attributes for user lockout in freeradius-1.x

2004-07-26 Thread Dustin Doris
On Fri, 23 Jul 2004, Daniel Epstein wrote: > Greetings all, > > We run a freeradius-0.9.3 installation handling authentications for a > number of different NASs on our campus. The RADIUS servers are using > an openldap directory as the primary user credentials store. For a > number of reasons, w

Using multi-valued string LDAP attributes for user lockout in freeradius-1.x

2004-07-23 Thread Daniel Epstein
Greetings all, We run a freeradius-0.9.3 installation handling authentications for a number of different NASs on our campus. The RADIUS servers are using an openldap directory as the primary user credentials store. For a number of reasons, we designed our LDAP schema such that authorization for

Re: Reject connect based on Ldap Attributes

2004-06-23 Thread Matthew Schumacher
Lew A wrote: I'm trying to set it up so, when a connection comes in from a certain NAS-IP-Address, and the user trying to connect has a specific Ldap Attribute set they won't be able to connect. I haven't been able to successfully figure out how to do this. I'm using FreeRadius 0.98. It matches def

Reject connect based on Ldap Attributes

2004-06-23 Thread Lew A
I'm trying to set it up so, when a connection comes in from a certain NAS-IP-Address, and the user trying to connect has a specific Ldap Attribute set they won't be able to connect. I haven't been able to successfully figure out how to do this. I'm using FreeRadius 0.98. It matches default 93, then

Re: testing values for LDAP attributes

2004-04-22 Thread Kostas Kalevras
On Wed, 21 Apr 2004, Hans Fiedler wrote: > I need to allow users from a wireless access point by MAC address (it comes > as a userid) and then if the MAC address is not defined in the users file to > check their userid/password against a LDAP database. I now had an > additional requirement put on

Re: testing values for LDAP attributes

2004-04-21 Thread Hans Fiedler
On Wed, Apr 21, 2004 at 10:13:23PM -0400, Alan DeKok wrote: > Hans Fiedler <[EMAIL PROTECTED]> wrote: > > I can't get the attribute value checking to work. I've tried mapping the > > attribute in the ldap.attrmap file, > > > > checkItem WirelessStatus WirelessStatus > > >

Re: testing values for LDAP attributes

2004-04-21 Thread Alan DeKok
Hans Fiedler <[EMAIL PROTECTED]> wrote: > I can't get the attribute value checking to work. I've tried mapping the > attribute in the ldap.attrmap file, > > checkItem WirelessStatus WirelessStatus > > and checking the value in the users file. I'm not getting that to work.

testing values for LDAP attributes

2004-04-21 Thread Hans Fiedler
I need to allow users from a wireless access point by MAC address (it comes as a userid) and then if the MAC address is not defined in the users file to check their userid/password against a LDAP database. I now had an additional requirement put on that I need to check the values of an attribute i

Re[6]: if, then, else with ldap attributes

2004-04-09 Thread Alexander Lunyov
Hello Michael, Saturday, April 10, 2004, 1:07:14 AM, you wrote: MG> On Fri, 2004-04-09 at 15:05, Alexander Lunyov wrote: >> "192684935" is a sql query result. But before minus there >>must be Rad-Traffic-Limit, am i right? Where is it go to? MG> I think I see the problem... Try changing

Re: Re[4]: if, then, else with ldap attributes

2004-04-09 Thread Michael Griego
On Fri, 2004-04-09 at 15:05, Alexander Lunyov wrote: > "192684935" is a sql query result. But before minus there >must be Rad-Traffic-Limit, am i right? Where is it go to? I think I see the problem... Try changing your %{expr: block per the following: Replace %{Rad-Traffic-Limit} with %

Re[4]: if, then, else with ldap attributes

2004-04-09 Thread Alexander Lunyov
Hello Michael, Friday, April 9, 2004, 11:11:43 PM, you wrote: >> rlm_ldap: Adding radiusTrafficLimit as Rad-Traffic-Limit, value 314572800 & op=11 >> >> radius_xlat: '-192684935' >> >> Traffic-Limit := 0 >> Rad-Traffic-Limit = 314572800 >> >> I don't understand it... Rad-Traffi

Re: Re[2]: if, then, else with ldap attributes

2004-04-09 Thread Michael Griego
On Fri, 2004-04-09 at 13:06, Alexander Lunyov wrote: > rlm_ldap: Adding radiusTrafficLimit as Rad-Traffic-Limit, value 314572800 & op=11 > > radius_xlat: '-192684935' > > Traffic-Limit := 0 > Rad-Traffic-Limit = 314572800 > > I don't understand it... Rad-Traffic-Limit have value

Re[2]: if, then, else with ldap attributes

2004-04-09 Thread Alexander Lunyov
Hello Kostas, Friday, April 9, 2004, 2:12:37 PM, you wrote: KK> On Thu, 8 Apr 2004, Alexander Lunyov wrote: >> Hello freeradius-users, >> >> I need to differentiate users with their traffic limits, so i have >> common traffic limit digit in LDAP in >> cn=radprofile,dc=domain,dc=com, and fo

Re: if, then, else with ldap attributes

2004-04-09 Thread Kostas Kalevras
On Thu, 8 Apr 2004, Alexander Lunyov wrote: > Hello freeradius-users, > > I need to differentiate users with their traffic limits, so i have > common traffic limit digit in LDAP in > cn=radprofile,dc=domain,dc=com, and for some users i have set their own > traffic limits in their own entri

if, then, else with ldap attributes

2004-04-08 Thread Alexander Lunyov
Hello freeradius-users, I need to differentiate users with their traffic limits, so i have common traffic limit digit in LDAP in cn=radprofile,dc=domain,dc=com, and for some users i have set their own traffic limits in their own entries (like uid=lan,ou=users,dc=domain,dc=com). So i nee

Re: Returning multivalue LDAP attributes

2004-03-17 Thread Kostas Kalevras
On Wed, 17 Mar 2004, Nicolas JUSTIN wrote: > > > On Tue, 16 Mar 2004, Nicolas JUSTIN wrote: > > > >> Hello, > >> > >> I try to authorize users through LDAP, and autorize them by CHAP. I > >> added LDAP attributes wich I want to be returned to th

Re: Returning multivalue LDAP attributes

2004-03-17 Thread Nicolas JUSTIN
> On Tue, 16 Mar 2004, Nicolas JUSTIN wrote: > >> Hello, >> >> I try to authorize users through LDAP, and autorize them by CHAP. I >> added LDAP attributes wich I want to be returned to the NAS in >> ldap.atttrmap, it works perfectly for single value attrib

Re: Returning multivalue LDAP attributes

2004-03-16 Thread Kostas Kalevras
On Tue, 16 Mar 2004, Nicolas JUSTIN wrote: > Hello, > > I try to authorize users through LDAP, and autorize them by CHAP. > I added LDAP attributes wich I want to be returned to the NAS in > ldap.atttrmap, it works perfectly for single value attribute, but not for > multi-attr

Returning multivalue LDAP attributes

2004-03-16 Thread Nicolas JUSTIN
Hello, I try to authorize users through LDAP, and autorize them by CHAP. I added LDAP attributes wich I want to be returned to the NAS in ldap.atttrmap, it works perfectly for single value attribute, but not for multi-attributes values. I read in the archive that I have to add a "+=" o

Re: ldap attributes dependent on complex logic - freeradius suita ble?

2004-03-15 Thread Alan DeKok
P. > it is the second which i am currently doign with radiator but would like to > use freeradius. with radiator, the "environment" consisting of the request, > reply, check and ldap attributes are passed to user defined hooks, which can > then use them to delete, modify

RE: ldap attributes dependent on complex logic - freeradius suita ble?

2004-03-15 Thread Kostas Kalevras
ing a standard signle username > and > >> use the supplied User-Name to obtain various records... > > >This is wrong, the ldap module will connect with the supplied > username/password > >for user authentication. Use authorization (ldap attributes extraction) is > &

RE: ldap attributes dependent on complex logic - freeradius suita ble?

2004-03-15 Thread Tariq Rashid
o obtain various records... >This is wrong, the ldap module will connect with the supplied username/password >for user authentication. Use authorization (ldap attributes extraction) is >performed by connecting to the ldap server with the username/password specified >in the module configuratio

Re: ldap attributes dependent on complex logic - freeradius suitable?

2004-03-15 Thread Kostas Kalevras
k at freeradius and the ldap module - i am reaching > the conclusion that the standard modules and freeradius are not suited to > this task. for simple tasks such as always adding ldap attributes to reply > packets then freeradius seems to be fine. there appears to be no easy way to > e

Re: ldap attributes dependent on complex logic - freeradius suitable?

2004-03-15 Thread Alan DeKok
Tariq Rashid <[EMAIL PROTECTED]> wrote: > having had an initial look at freeradius and the ldap module - i am reaching > the conclusion that the standard modules and freeradius are not suited to > this task. for simple tasks such as always adding ldap attributes to reply > packe

RE: ldap attributes dependent on complex logic - freeradius suita ble?

2004-03-15 Thread Tariq Rashid
rateful. tariq -Original Message- From: Tariq Rashid [mailto:[EMAIL PROTECTED] Sent: 15 March 2004 09:42 To: '[EMAIL PROTECTED]' Subject: ldap attributes dependent on complex logic - freeradius suitable? i've previously used radiator as it is simple to modify the check an

ldap attributes dependent on complex logic - freeradius suitable?

2004-03-15 Thread Tariq Rashid
t the standard modules and freeradius are not suited to this task. for simple tasks such as always adding ldap attributes to reply packets then freeradius seems to be fine. there appears to be no easy way to encode any complex decision logic in the configuration files. (for example, is domain is xx

Re: Problem with LDAP attributes checking

2004-03-04 Thread Sergio Sagliocco
Thanks! I'll try it -- Sergio SAGLIOCCO SecureLAB - System & Network Security CSP s.c. a r.l. Kostas Kalevras wrote: On Tue, 2 Mar 2004, Sergio Sagliocco wrote: Hi thanks for the suggestion. If I use the compare_check_items keyword it doesn't work because I think the check operator is

Re: Problem with LDAP attributes checking

2004-03-02 Thread Kostas Kalevras
On Tue, 2 Mar 2004, Sergio Sagliocco wrote: > Hi > thanks for the suggestion. > If I use the compare_check_items keyword it doesn't work because I > think the check operator is forced to "==" . > I've found the module rlm_checkval: I've compiled it and istalled it. > Now how I ca use it? I've no

Re: Problem with LDAP attributes checking

2004-03-02 Thread Sergio Sagliocco
Hi thanks for the suggestion. If I use the compare_check_items keyword it doesn't work because I think the check operator is forced to "==" . I've found the module rlm_checkval: I've compiled it and istalled it. Now how I ca use it? I've not found documentation in freeradius distribution. Wher

Re: Problem with LDAP attributes checking

2004-03-02 Thread Kostas Kalevras
On Wed, 25 Feb 2004, Sergio Sagliocco wrote: > Hello to the list > > I configured my Freeradius to authenticate users with LDAP. > When one of the clients send a request it includes this attribute: > > Cisco-AVPair = "h323-ivr-out=terminal-alias:5854;" > > This attribute depends from the user: so

Problem with LDAP attributes checking

2004-02-25 Thread Sergio Sagliocco
Hello to the list I configured my Freeradius to authenticate users with LDAP. When one of the clients send a request it includes this attribute: Cisco-AVPair = "h323-ivr-out=terminal-alias:5854;" This attribute depends from the user: so for user U1 it could be Cisco-AVPair = "h323-ivr-out=termin