Re: FreeRADIUS 2 not listening on right port

2008-05-16 Thread Michael Griego
On May 16, 2008, at 9:49 AM, Phil Mayers wrote: ...with any luck, the toolchain will get fixed - it's clearly not a FreeRadius bug, and I wonder what else it's broken... After discovering what the problem was, I immediately wondered the same thing myself. --Mike - List

Re: FreeRADIUS 2 not listening on right port

2008-05-15 Thread Michael Griego
I did a little looking into this this evening. This assessment looks to be correct as it looks to be related to compiler optimizations. With the optimizations disabled in Make.inc, FreeRADIUS will start up on the correct port. For the fr_socket function, gcc appears to be optimizing the

Re: EAP-TLS: Different Certificates for different Called-Station-Id

2007-05-24 Thread Michael Griego
You'll have to set up two instances of the EAP module. The first instance will have the TLS submodule set up with the information for Cert1.pem (and the appropriate key and CA cert). The second instance will have its TLS submodule set with the info for Cert2.pem. It will look something

Re: Simple EAP flow support!

2007-03-07 Thread Michael Griego
Why exactly do you want to do this instead of using standardized EAP- TLS? You'll have to write your own code upates to FreeRADIUS, and I know of *no* supplicants that will operate in this fashion. Seems like a lot more trouble than using what's already there, especially when you get into

Re: 1.1.4 stops responding to requests

2007-02-18 Thread Michael Griego
Hmm... hadn't looked at the actual code. I just looked to see if there were any log entries after mine for the branch, and I didn't see any. Interesting. I guess that's not it. --Mike On Feb 17, 2007, at 2:24 AM, Alan DeKok wrote: Michael Griego wrote: Revision 1.79 to src/main

Re: 1.1.4 stops responding to requests

2007-02-14 Thread Michael Griego
Revision 1.79 to src/main/request_list.c --Mike On Feb 14, 2007, at 3:46 AM, Alan DeKok wrote: Michael Griego wrote: The fix for this is in the CVS HEAD and probably should be backported to the latest release branch. There was a race condition in the code where the server could clean up

Re: pap/peap confusion

2007-02-14 Thread Michael Griego
On Feb 14, 2007, at 2:05 PM, Matt Ashfield wrote: During a pap conversation, the radius server ends up with the username/password passed to it from the client. It then encrypts the password to match the encryption of the stored password in ldap (or other directory) and tries a bind.

Re: 1.1.4 stops responding to requests

2007-02-13 Thread Michael Griego
The fix for this is in the CVS HEAD and probably should be backported to the latest release branch. There was a race condition in the code where the server could clean up an accounting request before a thread actually got to it to process it. --Mike On Feb 13, 2007, at 1:36 PM, Phil

Re: Proxy based on MAC

2007-02-03 Thread Michael Griego
Where you put it all depends on your local configuration. If you put it in the users file, it might look something like this: DEFAULT Calling-Station-Id =~ ^(00-0D-93-|00-03-93-|00-05-02-), Proxy-To-Realm := ReamToProxyTo --Mike On Feb 2, 2007, at 7:47 PM, King, Michael wrote:

Re: Mac PEAP authentication with FreeRADIUS Pre2.0

2007-02-02 Thread Michael Griego
I'll take another look a little later to see if there's something else you have to do. It's been a while since I did this. --Mike On Feb 2, 2007, at 9:00 AM, King, Michael wrote: -Original Message- On your Mac (as root), create the directory /var/log/ eapolclient, then retry

Re: Proxy based on MAC

2007-02-02 Thread Michael Griego
You don't *really* need to match the whole string. The following would work just as well and be much more readable: Calling-Station-Id =~ ^(00-0D-93-|00-03-93-|00-05-02-) And as to where it goes, anywhere a check expression goes: users file, SQL radcheck table, etc. As long as the server

Re: Mac PEAP authentication with FreeRADIUS Pre2.0

2007-02-01 Thread Michael Griego
Yes, it looks like your Mac may not like the MSCHAPv2 response for some reason. On your Mac (as root), create the directory /var/log/ eapolclient, then retry your authentication. The EAP client is OS X should write out debugging information for the EAP session into that directory and

Re: PEAP Fast Reconnect

2007-01-29 Thread Michael Griego
No, not currently. Doing so will require a level of caching and connection of the TLS session information with the RADIUS attributes that currently is not in place. This kind of checking is to insure that a user is not able to authenticate with is credentials, then, say, simply change

Re: doc/rlm_sql is wrong?

2007-01-08 Thread Michael Griego
The code that handles SQL groups individually may still only exist in the CVS HEAD. --Mike On Jan 8, 2007, at 1:38 PM, Phil Mayers wrote: I've been looking at using rlm_sql to replace a fairly complex set of Autz-Type and rlm_passwd maps. Primarily this is to speed up updates when e.g.

Re: Windows Vista doing PEAP

2006-11-29 Thread Michael Griego
Cool deal. I have also been able to confirm that adding the SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS option to the CTX makes Vista work. This is good news for us since we have a volume license deal and now have release copies beginning to be installed. :) --Mike On Nov 29, 2006, at 5:00 PM,

Re: Machine Accounts against AD

2006-10-30 Thread Michael Griego
I'm not sure 1.0.4 had that fix in the rlm_mschap module. If you need to use 1.0.4 for some reason, you may have to backport the patch from a later version of the module. --Mike On Oct 30, 2006, at 5:10 PM, King, Michael wrote: I had this working before, and I can't figure out what I'm

Re: ***SPAM*** RE: Windows Vista doing PEAP

2006-10-19 Thread Michael Griego
__LINE__ is an unsigned int... its being referenced in the patch as a string (%s as opposed to %u). --Mike On Oct 19, 2006, at 10:30 AM, King, Michael wrote: It seg faults when I do -X (or -sxx. But not with -x) Here is the gdb log rad2:/home/mking/freeradius-1.1.3/doc# more

Re: read_groups in cvs

2006-08-09 Thread Michael Griego
What version of the server are you using and do you have any debug output? --Mike On Aug 7, 2006, at 8:28 AM, Duane Cox wrote: reposting I've got mssql.conf read_groups = yes but the rlm_sql module does not process the groups. The user is found in radcheck and the check items

Re: ntlm_auth and clear-text passwords

2006-07-03 Thread Michael Griego
Something is different between your test ntlm_auth and the ntlm_auth you're running under FreeRADIUS. Your test may return OK, but under FreeRADIUS, its returning NO SUCH USER. In any case, since you're doing cleartext authentication in this case, you could use LDAP authentication against

Re: Buy SSL Certificates for PEAP

2006-06-28 Thread Michael Griego
By default, OpenSSL uses PEM format, so if you didn't specify a certificate format of DER, then its a PEM encoded cert. If you look at the cert in a text viewer/editor, you'll see lines that have --- BEGIN CERTIFICATE--- and ---END CERTIFICATE--- if its PEM encoded. --Mike On Jun 28,

Re: Buy SSL Certificates for PEAP

2006-06-27 Thread Michael Griego
Are you sure your certificate isn't already in PEM format? --Mike On Jun 27, 2006, at 4:32 PM, VannMann32 . wrote: Hi ! You also need to specify -outform PEM. # openssl x509 -in somecertificate.cer -inform DER -out somecertificate.pem -outform PEM unable to load certificate

Re: Active Directory Integration with FreeRADIUS - NTLM_Auth

2006-06-19 Thread Michael Griego
If you're using AD, plaintext (PAP) authentication, and are wanting to restrict the users to a certain OU, you should probably use the rlm_ldap module. That way you can set the base search DN to your Cisco Admins OU. It'll probably be a little easier to use and set up, too, than the

Re: PEAP authentication with freerad ?

2006-06-06 Thread Michael Griego
I assume by PEAP, you mean the most-often-seen PEAP/EAP-MSCHAPv2. In this case, MD5 is not involved anywhere. The passwords are hashed differently. As such, you must either have an NT hashed password (which is actually a unicode-encoded MD4 hash of the password) or a cleartext password

Re: Using PEAP and WinXP

2006-05-24 Thread Michael Griego
What Michael said is correct. By default, the Windows XP supplicant will verify the certificate against its list of known trusted root CAs. Without specifying both a trusted CA and the certificate CN (usually a hostname), then an attacker could get a cert from another trusted CA or one

Re: PEAP against Samba PDC through auth_ntlm

2006-05-18 Thread Michael Griego
Search through the list archives for PEAP Machine Authentication. --Mike On May 18, 2006, at 6:41 PM, Jérémy Cluzel wrote: Hello, I try to secure my wireless LAN with freeradius. I managed to do PEAP (with auth_ntlm) against a windows 2003 server AD. Both machines and users auth work.

Re: eap.conf - eap-tls CA_file =

2006-04-25 Thread Michael Griego
These aren't lists to my knowledge. Each takes a single filename. If you need multiple CA certificates, you can concatenate each of the PEM files into a single file and use that as your CA_file. --Mike Sochacki, Kevin wrote: Hi All, In eap.conf under the tls section the comments for

Re: Machine Authentication

2006-02-21 Thread Michael Griego
I'm not sure I understand your question. You have or haven't gotten user auth working? You have or haven't gotten machine auth working? If you're having troubles with machine auth, have you checked the list archives? There are previous messages going back a couple of months on how to

Re: Interesting EAP-TLS condition, any insights?

2005-12-23 Thread Michael Griego
I'm very curious about the outcome of this as well. The AP is *supposed* to block all traffic except for EAP traffic pending the required EAP-Success from the Authentication Server. If the AP is allowing non-EAP traffic through, and, given that the client-AP traffic occurs unencrypted until

Re: Windows WPA

2005-12-22 Thread Michael Griego
In this case, if you happen to be using Samba as your PDC with an LDAP backend, you should actually be able to use rlm_ldap to lookup the NTLM hashes from the same LDAP tree that your Samba PDC uses. Once you have those hashes, you can do MSCHAPv2 without having to use ntlm_auth. --Mike

Update on Samba and PEAP Machine Authentication

2005-12-05 Thread Michael Griego
The Samba team has recently released Samba version 3.0.21rc2. The 3.0.21 releases include the necessary fixes to Samba to allow for PEAP machine authentication, so those versions of Samba can be used without requiring the patches previously posted to the list. --Mike - List

Re: WLAN 802.1x FreeRadius with LDAP

2005-11-29 Thread Michael Griego
Your problem lies here: modcall: entering group Auth-Type for request 6 rlm_mschap: No User-Password configured. Cannot create LM-Password. rlm_mschap: No User-Password configured. Cannot create NT-Password. rlm_mschap: Told to do MS-CHAPv2 for USERNAME with NT-Password rlm_mschap: FAILED:

Re: Freeradius How to integrate Active Directory [AD Integration WindowsXP NTLM Tutorial]

2005-11-22 Thread Michael Griego
Actually, that's not completely true. Using /dev/random as the file argument for RAND_load_file when seeding the PRNG is recommended practice on systems that have it. The RAND_load_file call in the eap_tls code will only read at max 1048567 (1024 * 1024) bytes from the file, so it won't read

Re: 802.1x machine authentication patch help

2005-11-18 Thread Michael Griego
Make sure you used the rlm_MSchap module from the snapshot, not the rlm_chap module. They're different. --Mike Jamie Crawford wrote: Hi, I am trying to get machine authentication working with freeradius. I have patched the samba code and freeradius code. But am getting this error when the

Re: Juniper buys Funk

2005-11-15 Thread Michael Griego
Joe Maimon wrote: Apparently freeradius developers have managed to build a system comparable to one that just sold for $122 M Is that the take away? Not exactly... Funk also developed a number of supplicants for various platforms. I think the point is the heightened interest in 802.1x

Re: [Was: Problem with rlm_mschap from CVS] rlm_mschap: Unknown expansion string

2005-11-15 Thread Michael Griego
Luca Corti wrote: Here is my ntlm_auth configuration: ntlm_auth = /usr/bin/ntlm_auth --request-nt-key --username={Stripped-User-Name:-%{User-Name:-None}} --challenge={mschap:Challenge:-00} --nt-response={mschap:NT-Response:-00} IIRC, with the changes to the xlat stuff a while back for module

Re: Problem with rlm_mschap from CVS

2005-11-14 Thread Michael Griego
It's a configuration issue. You didn't configure the rlm_exec module, which is called to execute ntlm_auth. --Mike Luca Corti wrote: Hello, I'm using Freeradius from CVS (checked out today) to do WPA-EAP+Radius +PEAP+ntlm_auth because I can't get rlm_eap_peap from 1.0.5 to build on debian.

Re: Problem with rlm_mschap from CVS

2005-11-14 Thread Michael Griego
Nicolas Baradakis wrote: I think it was working in version 1.0.x without rlm_exec module instantiated. Moreover, I'm not sure if the linker is able to find the missing symbol in a different module on all systems... It was working with 1.0.x and in CVS until the changes you mentioned. In my

Re: PEAP Machine Authentication

2005-11-14 Thread Michael Griego
Is your machine truly a member of your AD domain? If so, it's not sending a fully qualified domain name for some reason. Therefore the code is setting the domain to the same as the machine name. I've only ever seen Windows send *just* the machine name without the domain name when the

Re: Problem with rlm_mschap from CVS

2005-11-14 Thread Michael Griego
Another possibility for linking between modules without truly linking would be to change rlm_mschap to use radius_xlat with the %{exec:...} xlat. Just depends on what others thing. I'm not opposed to moving exec.c back into the server core. -Mike Alan DeKok wrote: Nicolas Baradakis

Re: Problem with EAP/TLS and XP SP2

2005-11-07 Thread Michael Griego
Ben Walding wrote: We've found in testing that the XP supplicant (with certain patches) will read the certificate and send a User-Name that is constructed from the certificate CN (host/ + cert CN); thus rendering the whole checking the CN process fairly pointless for XP supplicants. This

Re: PEAP Machine Authentication

2005-10-21 Thread Michael Griego
The second function is the one you want to change... rpccli_netlogon_sam_network_logon. On line 803, change it from: 0, /* param_ctrl */ to: 0x800, /* param_ctrl */ --Mike Jérémy Cluzel wrote: Hi, I looked in the samba 3.0.20 source code and I only found 2 calls to the init_id_info2()

Re: ntlm_auth and machine authentication (workaround)

2005-10-20 Thread Michael Griego
See the list postings from earlier in the day... If you grab the latest CVS snapshot, you don't have to use the Perl wrapper as the rlm_mschap module will do the name rewriting for you. --Mike Roy Hooper wrote: After spending a fair bit of time searching list archives and google results,

Re: clients.conf problem

2005-10-15 Thread Michael Griego
Try a fresh CVS checkout or tonight's CVS snapshot and see if this corrects your problems. Looks like there was a byte ordering problem when sanitizing the client entry based on the netmask. This would only have affected people with little-endian machines. --Mike Alan DeKok wrote:

Re: FreeRadius/PEAP

2005-10-13 Thread Michael Griego
/etc/shadow files and PEAP/MSCHAPv2 are mutually exclusive. You can store the NT hashed passwords in the users file if you'd like, but, other than that, you'll have to use plaintext passwords. It's just the nature of the beast. --Mike James Taylor wrote: Hi, I am trying to secure my

Re: Wireless Provisioning Service Protocol

2005-10-05 Thread Michael Griego
Hey, Michael, From my recollection, implementing WPS would require first implementing PEAPv2, and there hasn't been any movement there yet. --Mike King, Michael wrote: Has any thought been given on adding the WPS (Wireless Provisioning Service) Protocol to FreeRADIUS?

Re: clients.conf problem

2005-08-22 Thread Michael Griego
There has been some reworking of the clients code recently in CVS. I haven't looked at it much yet as it was done by Alan, but, as with all of the CVS tree, it's still considered unstable code. --Mike dev_null wrote: Hello, I tried what you said but the server ignored both localhost

Re: clients.conf problem

2005-08-21 Thread Michael Griego
I have a hunch... How many clients are in your clients.conf file? Is it just those two or do you have any more? Are those the *first* two clients? If you only have two clients, and its the two you listed there, try putting the localhost (127.0.0.1) client declaration in first followed by

Re: different eap/tls config for different interfaces

2005-08-08 Thread Michael Griego
I was gonna do that as part of my updates, but if you want to do this, be my guest. :) --Mike Alan DeKok wrote: Michael Griego [EMAIL PROTECTED] wrote: Also, you can use the Packet-Dst-IP-Address attribute if you're certain that the clients are split up by interface. You can match up

Re: different eap/tls config for different interfaces

2005-08-08 Thread Michael Griego
that act as an override of sorts, or am I way off? thanks! - Original Message - From: Michael Griego [EMAIL PROTECTED] Date: Monday, August 8, 2005 5:53 pm Subject: Re: different eap/tls config for different interfaces By its Client-IP-Address attribute or NAS-IP-Address attribute

Re: different eap/tls config for different interfaces

2005-08-05 Thread Michael Griego
After I'm done with the rlm_eap_tls rewrites and rlm_eap updates, there will be functionality to have multiple EAP submodules of the same type with different configurations. With this, you'll be able to force the use of a specific EAP type instance by its instance name. In the meantime, if

Re: Certificate expired

2005-06-30 Thread Michael Griego
Is it a self-signed certificate? If not, did you create the CA cert? If so, did *it* expire? --Mike Albrecht, Robert-Manfred wrote: Hello, I'm using a freeradius to secure my wlan. I`m using PEAP Authentification. The certificate was created at 28.06.2004 with a validity-time of two

Re: make error /usr/bin/ld: cannot find -lz

2005-06-25 Thread Michael Griego
Did you install the zlib-devel package too? I think not... --Mike [EMAIL PROTECTED] wrote: PH On Fri, Jun 24, 2005 at 02:58:14PM +0600, [EMAIL PROTECTED] wrote: make faild with this error... gcc -shared sql_mysql.lo -L/usr/lib -L/usr/lib/mysql /usr/lib/libmysqlclient.so -lz

Re: mysqld.sock path problem

2005-06-23 Thread Michael Griego
. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas rashad wrote: /var/run/mysqld/mysqld.sock is the usual location of that socket. Every program that wants to connect to mysqld through socket will per default use that one. I

Re: Proxim AP-4000 MAC Auth w/multi VLAN assignment support

2005-06-14 Thread Michael Griego
You can't do RADIUS-assigned VLANs unless you're doing EAP authentication. It won't work with MAC authentication. --Mike Matthew Sweet wrote: Hello, I am looking at setting up a group of Proxim AP-4000 wireless gateways. I want to be able to authenticate via the MAC address of each user's

Re: Authenticate as computer .....

2005-05-25 Thread Michael Griego
Lorel hardy wrote: Maybe I've found a solution but I don't know how doing it... It would run without an AD server if freeradius reply an EAP-Accept when a special string (like domain/*) is sent in EAP-Access without asking anymore ? so could I make it efficient and how ? What do you think

Re: OpenCA Freeradius and EAP_TLS

2005-05-23 Thread Michael Griego
Are you sure your key and certificate files are PEM encoded? Based on the errors, it looks like they might be DER encoded. --Mike Tom Tim wrote: Hi, i am a newbie at freeradius. I have a working installtion of freeradius. After i have created certs using the CA.all script i can start

Re: OpenCA Freeradius and EAP_TLS

2005-05-23 Thread Michael Griego
Whoops. Didn't read the whole message before sending that last one. --Mike Tom Tim wrote: Hi, i am a newbie at freeradius. I have a working installtion of freeradius. After i have created certs using the CA.all script i can start radius. My Microsoft Wlan client can authenticate on the

Re: Certificate Revocation List (EAP/TLS)

2005-05-18 Thread Michael Griego
There are no crl_dir and crl configuration options recognized by the server. You must have added those. The correct way to do this is to add the PEM encoded CRL to the end of your PEM encoded CA certificate, referenced by the CA_file configuation option, then set check_crl = yes. --Mike

Re: Certificate Revocation List (EAP/TLS)

2005-05-18 Thread Michael Griego
Luis Daniel Lucio Quiroz wrote: May do this with just a cat cacert.pem crl.pem ca.pem comand? Yes. Then set CA_file = ca.pem --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas - List info/subscribe/unsubscribe? See http

Re: radius crash

2005-05-17 Thread Michael Griego
What you're likely seeing is something that has already been fixed in the CVS snapshots. Previously, if one of the worker threads died, it could go into a segfault loop that would block the server and send the CPU to near 100%. That was fixed a while back in CVS. I'm not sure if it's

Re: Freeradius and Active Directory Question

2005-05-10 Thread Michael Griego
You're making this more complicated than it is (and please don't talk about me like I'm not here). To authenticate plain credentials against AD is no different than authenticating against any other LDAP server except for the fact that your uid attribute is different. So, read the docs for the

Re: ntlm_auth not working

2005-05-09 Thread Michael Griego
ntlm_auth is really only useful for people who must do an MSCHAP authentication against a Windows domain. If you are doing a straight User-Password authentication (as you show below in your example), then it might be just as well to set up LDAP authentication against AD as that will work in

Re: Errors with freeradius-snapshot-20050424 make install

2005-05-02 Thread Michael Griego
This will all be fixed shortly. I'm getting close to finishing up the move to libeaptls to fix these inter-module linking problems. --Mike Hans-Peter Fuchs wrote: Hello all, I try to build freeradius-snapshot-20050424 under rehat 3.2.3-47 (Kernel: 2.4.21-27.0.2.EL). Install gives the

Re: rlm_sql: group table changes

2005-04-29 Thread Michael Griego
Stephan Jaeger wrote: For rejecting every user that has no matching group profile i guess my best bet is now to use a DEFAULT profile with Auth-Type := Reject in the db? Yes, that should work. --Mike - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: help - PEAP authentication

2005-04-29 Thread Michael Griego
It will break inside the EAP code, since the EAP code does a sanity check to make sure the EAP Identity matches the User-Name sent by the NAS. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas Luis Daniel Lucio Quiroz wrote

Re: Client mac adress in accounting

2005-04-28 Thread Michael Griego
If your NAS supports sending the MAC address, you will see it show up as the Calling-Station-Id attribute. Your NAS must be sending this attribute, though. --Mike Marc-Henri Boisis-Delavaud wrote: How can I have the user mac adress in accounting files ? Marc - List info/subscribe/unsubscribe?

Re: rlm_sql: group table changes

2005-04-28 Thread Michael Griego
. I don't think the new SQL code has made into the stable releases yet. Anyway, if you are, grab tomorrow's snapshot or grab the updated rlm_sql.c file directly from CVS and try that out. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas

Re: 802.1x and authenticating machine account

2005-04-28 Thread Michael Griego
of FreeRADIUS. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas King, Michael wrote: Has anyone figured a way to authenticate the computer account in Active Directory? Other than pGina. I don't have the option of changing

Re: 802.1x and authenticating machine account

2005-04-28 Thread Michael Griego
--- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: 802.1x and authenticating machine account

2005-04-28 Thread Michael Griego
--- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: help - PEAP authentication

2005-04-28 Thread Michael Griego
Talk to your NAS vendor. That's completely insane for a NAS to rewrite the User-Name, not to mention a violation of RFC 3579. --Mike Israel Fabio Alves wrote: Hi, I need help to solve a problem. My configuration work 100% with Switch Cisco 2950. Now I need use Switch from Extreme Networks

Re: FreeRADIUS and Active Directory

2005-04-26 Thread Michael Griego
Hey, Michael, I'm betting your ntlm_auth command, where it uses the username, looks like this: --username=%{Stripped-User-Name:-%{User-Name:-None}} This is the default. Try changing your ntlm_auth line in your radiusd.conf to something like this: ntlm_auth --request-nt-key

Re: Session resumption

2005-04-19 Thread Michael Griego
Not yet. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas Bilal Shahid wrote: Does FreeRADIUS v1.0.1 support session resumption (fast reconnect during reauthentication) for TLS, TTLS and PEAP? Thanks, Bilal

Re: How are you guys able to get this working?

2005-04-04 Thread Michael Griego
You just need to make sure that your MySQL headers and libraries are in the standard include/linker paths. If you installed MySQL from the RPMs, then this should be true as long as you have the mysql-devel rpm installed as well. --Mike --- Michael Griego

Re: segmentation fault

2005-04-03 Thread Michael Griego
I'd like to be included in this as well. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas Alan DeKok wrote: Willem Eradus [EMAIL PROTECTED] wrote: I'll do some more tracing and debugging. Do you want me to post it to list

Re: FreeRADIUS + 802.1x (WPA) + WinXP + smbpasswd

2005-03-30 Thread Michael Griego
rlm_mschap: No User-Password configured. Cannot create LM-Password. rlm_mschap: No User-Password configured. Cannot create NT-Password. rlm_mschap: Told to do MS-CHAPv2 for jseymour with NT-Password rlm_mschap: FAILED: No NT/LM-Password. Cannot perform authentication. rlm_mschap:

Re: FreeRADIUS + 802.1x (WPA) + WinXP + smbpasswd

2005-03-30 Thread Michael Griego
in your smbpasswd file. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas Jim Seymour wrote: Michael Griego [EMAIL PROTECTED] wrote: rlm_mschap: No User-Password configured. Cannot create LM-Password. rlm_mschap: No User

Re: XP Computer Account Authentication

2005-03-21 Thread Michael Griego
Dagoberto Luiz Schonardie wrote: Is it possible to authenticate the Windows XP computer account in this environment ? Not currently. --Mike - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: Stripped-User-Name

2005-03-16 Thread Michael Griego
Stripped-User-Name is created either by using realms or in the hints file used by the preprocess module. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas Kevin Jeoung wrote: You didn't get a Stripped-User-Name. You need

Re: EAP-TLS: check_cert_cn dows not work?

2005-03-03 Thread Michael Griego
--- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas Manuel Schmitz wrote: Hello, as far as I have understood, the check_cert_cn switch in raddb/eap.conf forces the certificate's Common Name to be in the raddb/users file. Otherwise

Re: EAP-TLS: check_cert_cn dows not work?

2005-03-03 Thread Michael Griego
That's what CRLs are for. There is support for CRLs in FreeRADIUS now, so you can revoke the certs you no longer want used. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas Manuel Schmitz wrote: Thank you very much. :-) I

Re: ../raddb/users file and MySQL?

2005-02-25 Thread Michael Griego
Use the SQL-Group attribute, so your check line would look like this: DEFAULT Service-Type == Framed-User, SQL-Group == MySQLGroupName --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas [EMAIL PROTECTED] wrote: Hi Just

Re: high cpu

2005-02-04 Thread Michael Griego
Try running with LD_ASSUME_KERNEL=2.4.19. This will force runtime linking against the standard libc libs instead of the thread-local storage (tls) libs. So, on the command line, run LD_ASSUME_KERNEL=2.4.19 radiusd -X and see if that segfaults. --Mike Alan DeKok wrote: Daniel J McDonald

Re: Pbroblem with CRL check

2005-01-25 Thread Michael Griego
--- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas Jacques VUVANT wrote: Hi all I've installed and use freeradius 1.0.1 for EAP/TLS auntentication. It work well without CRL. But each time I want to active check_crl = yes on eap.conf

Re: peap problems

2005-01-25 Thread Michael Griego
I'm guessing you're using the Windows XP supplicant? This looks like a classic case of your CA certificate not being present on the client machine. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas ealatalo wrote: Quoting

Re: Extreme, 802.1x, PEAP, and FreeRADIUS

2005-01-21 Thread Michael Griego
Wow. The EAP messages does indeed decode to an EAP Response/Identity with a value of AMS\mcapelle. I've never seen a EAP-aware NAS rewrite the User-Name. That violates RFC2869, which states that the NAS must *copy* the contents of the identity into the User-Name. The only thing I can

Re: NAS from db - add without restart

2005-01-21 Thread Michael Griego
When you're using EAP, it's not always that simple. HUPping a server or taking it offline is something you'd rather avoid if possible as it becomes noticible to the end users when you do it. We do indeed have redundant servers. If one fails, then yes, the other picks up the load, but it's

Re: NAS from db - add without restart

2005-01-20 Thread Michael Griego
we're actively deploying wireless APs, we can bring up several new NASes each day. I'll probably be working on this pretty soon, but that's on hold at the moment while I attempt to track down a memory leak/heap corruption problem. --Mike --- Michael Griego Wireless

Re: 802.1x, PEAP, and AD

2005-01-20 Thread Michael Griego
Actually, what you should be sending in the --username option is: --username=%{mschap:User-Name} This will automatically stip the domain portion (if it exists) from the username before sending it to the DC. --Mike --- Michael Griego Wireless LAN Project Manager

Re: Extreme, 802.1x, PEAP, and FreeRADIUS

2005-01-20 Thread Michael Griego
Is your Extreme Networks equipment truly performing EAP authentication? Do you have an example of radiusd -X output with an auth attempt from this piece of equipment? If it's true that this piece of equipment is truly rewriting the User-Name attribute so that it isn't the same as the EAP

Re: Mapping a single LDAP attribute to multiple radius attributes

2005-01-20 Thread Michael Griego
Create two instances of the LDAP module, ie ldap1 and ldap2. In instance ldap1, have one attrmap (perhaps called ldap1.attrmap) with the LDAP attribute mapped one way and with intance ldap2, have a different attrmap (perhaps called ldap2.attrmap) with the LDAP attribute mapped a different

Re: conflicts between freeradius versions

2005-01-12 Thread Michael Griego
You're running a pretty old version. Give the latest stable release a try. --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas Hennie Vaatstra wrote: I'm running a freeradius server (FreeRADIUS Version 0.9.3, for host s390x-ibm

Re: ldap redundant w/ ldap-group

2004-12-14 Thread Michael Griego
/unsubscribe? See http://www.freeradius.org/list/users.html -- --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: 802.11i

2004-12-13 Thread Michael Griego
The AP must support 802.11i. For Enterprise 802.11i, you must use 802.1x, which FreeRADIUS supports. --Mike On Mon, 2004-12-13 at 22:46, Bilal Shahid wrote: Hi, Does FreeRADIUS support 802.11i? On a more general level; in the wireless environment, does the RADIUS Server (any RADIUS

Re: Removing/modifying attributes per realm before proxying

2004-12-13 Thread Michael Griego
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html -- --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: Problem starting Freeradius

2004-12-05 Thread Michael Griego
You haven't generated the certificate files for EAP-TLS. If you're using EAP-TLS, either run the scripts/certs.sh script as it says in the config file or manually generate your own certificates. If you are not going to be using EAP-TLS or any of its sub-types, then you can comment out the

Re: How to add a field to the reply that contains data from the request?

2004-12-04 Thread Michael Griego
Peter, All I have to say is that your attitude normally determines the response you get. You came in here telling many people who have worked with RADIUS for a long time how the specs are wrong and how you are much better than they. This is a fatally flawed approach when trying to learn

Re: How to add a field to the reply that contains data from the request?

2004-12-04 Thread Michael Griego
On Sat, 2004-12-04 at 21:16, Peter T. Breuer wrote: No I haven't. I'm sure radius is fine. OTOH I'm quite sure the rfc is probably a load of badly written rubbish, because they normally are. So? Is there something new? Have you read a rfc lately? I certainly haven't! ;) Yes, I have. As such,

Re: Radius Authentication scheme

2004-11-24 Thread Michael Griego
obtained from Michael Griego, who published the patch. Curently I'm using FreeRadius version 1.0.1, and I was expecting to find the code from the patch there, but it wasn't. So I added the patch file again. Without that patch file, Digest-MD5 authentication doesn't work. That's odd

Re: eap-tls auth: access accept is sent but xp client keeps resending access-req

2004-11-19 Thread Michael Griego
, as FreeRADIUS is out of the game at that point, and will need to be taken up with the manufacturer of your AP. -- --Mike --- Michael Griego Wireless LAN Project Manager The University of Texas at Dallas - List info/subscribe/unsubscribe? See http://www.freeradius.org

  1   2   3   >