Re: radius + ldap backend

2002-06-27 Thread Lance Uyehara
> On Thu, Jun 27, 2002 at 03:28:01PM -0700, Lance Uyehara wrote: > > > > > > PAP is what happens between the user and the NAS, not what happens between > > > the NAS and the RADIUS server. With PAP, the RADIUS server gets the > > > password as pl

Re: radius + ldap backend

2002-06-27 Thread Lance Uyehara
[snip] > Thanks for your prompt response, but I am still confused. Nevermind. I received a good explanation from Artur Hecker, and now have a better understanding. Thanks, Lance - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: radius + ldap backend

2002-06-27 Thread Lance Uyehara
- Original Message - From: "Frank Cusack" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 27, 2002 2:22 PM Subject: Re: radius + ldap backend > On Thu, Jun 27, 2002 at 01:51:27PM -0700, Lance Uyehara wrote: > > A client of mine wants to

radius + ldap backend

2002-06-27 Thread Lance Uyehara
A client of mine wants to use radius with an ldap backend where the passwords are stored sha hashed. I see in the freeradius faq there is some mention of using PAP passwords, but when I look at the radius rfc 2138, I don't understand what is meant by pap passwords. Isn't the user-password always m

patch for src/modules/rlm_eap/mem.c

2002-01-17 Thread Lance Uyehara
Fixes a param mismatch in the way eap_packet_alloc is called. -Lance --- src/modules/rlm_eap/mem.origThu Jan 17 14:40:03 2002 +++ src/modules/rlm_eap/mem.c Thu Jan 17 14:40:18 2002 @@ -27,7 +27,7 @@ /* * Allocate a new EAP_PACKET */ -EAP_PACKET *eap_packet_alloc() +EAP_PACKE

Re: ms-chap and ms-chapv2

2002-01-17 Thread Lance Uyehara
> "Lance Uyehara" <[EMAIL PROTECTED]> wrote: > > I got the 20020117 snapshot and had to make some changes (4, in 3 files) to > > compile it. Is anyone interested in some patches? All are quick and dirty to > > get compiled (on freebsd 4.3-release), but I

patch for src/modules/rlm_eap/eap.h

2002-01-17 Thread Lance Uyehara
Two fixes: 1. Fix a problem finding u_int_32_t 2. Fix a prototype mismatch with the way eap_packet_alloc() is called. -Lance --- src/modules/rlm_eap/eap.origThu Jan 17 14:37:29 2002 +++ src/modules/rlm_eap/eap.h Thu Jan 17 14:39:35 2002 @@ -2,6 +2,7 @@ #define _EAP_H #if HAVE_NETI

patch for src/main/auth.c

2002-01-17 Thread Lance Uyehara
Missing { -Lance --- src/main/auth.orig Thu Jan 17 14:43:39 2002 +++ src/main/auth.c Thu Jan 17 14:43:53 2002 @@ -260,7 +260,7 @@ else password_pair = pairfind(request->config_items, PW_PASSWORD); - if (auth_type < 0) + if (auth_type < 0) {

Thank You Alan (was Re: ms-chap and ms-chapv2)

2002-01-17 Thread Lance Uyehara
Lance Uyehara wrote: > > "Lance Uyehara" <[EMAIL PROTECTED]> wrote: > > > The problem I have is I am expeecting some other attributes from the > > > radius server, but they don't appear in the packet. > > > > > > For MS-CHAP I need

Re: ms-chap and ms-chapv2

2002-01-17 Thread Lance Uyehara
> "Lance Uyehara" <[EMAIL PROTECTED]> wrote: > > The problem I have is I am expeecting some other attributes from the > > radius server, but they don't appear in the packet. > > > > For MS-CHAP I need the MS-CHAP-MPPE-KEYS attribute > > For M

ms-chap and ms-chapv2

2002-01-17 Thread Lance Uyehara
or MS-CHAP I need the MS-CHAP-MPPE-KEYS attribute For MS-CHAPv2 I need the MS-CHAP2-Success, MS-MPPE-Send-Key and MS-MPPE-Recv-Key.   Can someone please point me to the documentation needed to set this up.   Thanks, Lance Uyehara