rlm_python question...

2006-04-15 Thread i_amok i_amok
why radius  say :
 
authorize: function call failedexceptions.TypeError: unsubscriptable object 
 
 
below is a modify radius_test.py
 
=

# Miguel A.L. Paraz <[EMAIL PROTECTED]>
import radiusdimport MySQLdb
def instantiate(p):  print "*** instantiate ***"  print p
def authorize(p):  print "*** authorize ***"  print  radiusd.radlog(radiusd.L_INFO, '*** radlog call in authorize ***')  print  print p
  dbHandle = MySQLdb.connect(db="radius", host="localhost", user="radius", passwd="radius")
  userName = None  userPasswd = None
  for t in p:    if t[0] == 'User-Name':  userName = t[1]    elif t[0] == 'Password':  userPasswd = t[1]
  sql = 'select value from radcheck where username = ' +  userName + ' limit 1'
  dbCursor = dbHandle.cursor()  dbCursor.execute(sql)  result = dbCursor.fetchone()
  if not result:    dbCursor.close()    return radiusd.RLM_MODULE_NOTFOUND
  if result[0] != userPasswd[1:-1]:    return radiusd.RLM_MODULE_REJECT
  dbCursor.close()
  return (radiusd.RLM_MODULE_OK, (('Reply-Message', 'ok'),),  (('Auth-Type', 'python'),))
def preacct(p):  print "*** preacct ***"  print p  return radiusd.RLM_MODULE_OK
def accounting(p):  print "*** accounting ***"  radiusd.radlog(radiusd.L_INFO, '*** radlog call in accounting (0) ***')  print  print p  return radiusd.RLM_MODULE_OK
def detach():  print "*** goodbye from radiusd_test.py ***"  return radiusd.RLM_MODULE_OK
==
and my python.conf
==
python {    mod_instantiate = radiusd_test    func_instantiate = instantiate
    mod_authorize = radiusd_test    func_authorize = authorize
    mod_accounting = radiusd_test    func_accounting = accounting
    mod_preacct = radiusd_test    func_preacct = preacct
    mod_detach = radiusd_test    func_detach = detach
    }
 
==
 
 
i had test original  radiusd_test ,it's work well,
but i add the sql query,it's dont work...  
and i also test the pure python script ,it's work well with "import MySQLdb" and some sql query...
i don't know why...please help me
 
 
 
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Segmentation fault when usin freeradius with LDAP and fedora core 3

2006-04-15 Thread sukhvinder kumar
Hi,

I'm using Fedora Core 3 , openldap-2.2.13-2 ,
freeradius-1.0.1-1.RHEL3.

When i'm running the radius in debugging mode and
trying to authenticate the user using "radtest"
command its giving the Segmentation fault like  :


rad_recv: Access-Request packet from host
xx.xx.xx.xx:41523, id=169, length=59
User-Name = "testuser"
User-Password =
"^'\005#\014\373]\305m\\\311\013\345\373\201\237"
NAS-IP-Address = 255.255.255.255
NAS-Port = 2
  Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 0
rlm_realm: No '@' in User-Name = "testuser",
looking up realm NULL
rlm_realm: No such realm "NULL"
  modcall[authorize]: module "suffix" returns noop for
request 0
users: Matched DEFAULT at 214
  modcall[authorize]: module "files" returns ok for
request 0
rlm_ldap: - authorize
rlm_ldap: performing user authorization for testuser
radius_xlat:  '(uid=testuser)'
radius_xlat:  'dc=example'
rlm_ldap: ldap_get_conn: Checking Id: 0
rlm_ldap: ldap_get_conn: Got Id: 0
rlm_ldap: attempting LDAP reconnection
rlm_ldap: (re)connect to xx.xx.xx.xx:389,
authentication 0
rlm_ldap: bind as cn=Manager,dc=example/secret to
xx.xx.xx.xx:389
Segmentation fault


Is anybody having idea abt this error.




__ 
Yahoo! India Matrimony: Find your partner now. Go to http://yahoo.shaadi.com
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Bertrand Poulet

Hello all,

i've followed the thread about  SSID and user authentication
and i'm wondering how FR check the Cisco-AVPair ?
when i write  "Cisco-AVPair == ..." in users file, the ms-chapv2 step 
reject authentication (if i unterstand output below)
but if i write  "Cisco-AVPair := ..." in users file, the ms-chapv2 step 
accept authentication.
i read some FR docs , and Cisco-AVPair == ..  is a comparison , and with 
:= it's an affectation ?
why the change of this attribute in users file makes that MS-CHAPv2 
check failed ?


tahnks for your help ?
Bertrand.



this is part of radiusd -X -A output, full output is at the bottom, as 
users file :


modcall: entering group authenticate for request 6
 rlm_eap: Request found, released from the list
 rlm_eap: EAP/mschapv2
 rlm_eap: processing type mschapv2
 Processing the authenticate section of radiusd.conf
modcall: entering group MS-CHAP 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 bertrand with NT-Password
 rlm_mschap: FAILED: No NT/LM-Password.  Cannot perform authentication.
 rlm_mschap: FAILED: MS-CHAP2-Response is incorrect
 modcall[authenticate]: module "mschap" returns reject for request 6

at line 66 of users files , i've got :
bertrandCisco-AVPair == "ssid=my_ssid", User-Password == "bertrand"


USERS FILE :
#
#Please read the documentation file ../doc/processing_users_file,
#or 'man 5 users' (after installing the server) for more information.
#
#This file contains authentication security and configuration
#information for each user.  Accounting requests are NOT processed
#through this file.  Instead, see 'acct_users', in this directory.
#
#The first field is the user's name and can be up to
#253 characters in length.  This is followed (on the same line) with
#the list of authentication requirements for that user.  This can
#include password, comm server name, comm server port number, protocol
#type (perhaps set by the "hints" file), and huntgroup name (set by
#the "huntgroups" file).
#
#If you are not sure why a particular reply is being sent by the
#server, then run the server in debugging mode (radiusd -X), and
#you will see which entries in this file are matched.
#
#When an authentication request is received from the comm server,
#these values are tested. Only the first match is used unless the
#"Fall-Through" variable is set to "Yes".
#
#A special user named "DEFAULT" matches on all usernames.
#You can have several DEFAULT entries. All entries are processed
#in the order they appear in this file. The first entry that
#matches the login-request will stop processing unless you use
#the Fall-Through variable.
#
#If you use the database support to turn this file into a .db or .dbm
#file, the DEFAULT entries _have_ to be at the end of this file and
#you can't have multiple entries for one username.
#
#You don't need to specify a password if you set Auth-Type += System
#on the list of authentication requirements. The RADIUS server
#will then check the system password file.
#
#Indented (with the tab character) lines following the first
#line indicate the configuration values to be passed back to
#the comm server to allow the initiation of a user session.
#This can include things like the PPP configuration values
#or the host to log the user onto.
#
#You can include another `users' file with `$INCLUDE users.other'
#

#
#For a list of RADIUS attributes, and links to their definitions,
#see:
#
#http://www.freeradius.org/rfc/attributes.html
#

#
# Deny access for a specific user.  Note that this entry MUST
# be before any other 'Auth-Type' attribute which results in the user
# being authenticated.
#
# Note that there is NO 'Fall-Through' attribute, so the user will not
# be given any additional resources.
#
#lameuserAuth-Type := Reject
#Reply-Message = "Your account has been disabled."

#
bertrandCisco-AVPair == "ssid=my_ssid", User-Password == "bertrand"
#
#
# Deny access for a group of users.
#
# Note that there is NO 'Fall-Through' attribute, so the user will not
# be given any additional resources.
#
#DEFAULTGroup == "disabled", Auth-Type := Reject
#Reply-Message = "Your account has been disabled."
#

#
# This is a complete entry for "steve". Note that there is no Fall-Through
# entry so that no DEFAULT entry will be used, and the user will NOT
# get any attributes in addition to the ones listed here.
#
#steveAuth-Type := Local, User-Password == "testing"
#Service-Type = Framed-User,
#Framed-Protocol = PPP,
#Framed-IP-Address = 172.16.3.33,
#Framed-IP-Netmask = 255.255.255.0,
#Framed-Routing = Broadcast-Listen,
#Framed-Filter-Id = "std.ppp",
#Framed-MTU = 1500,
#Framed-Compression = Van-Jacobsen-TCP-

Re: Problem with Cisco-AVPair

2006-04-15 Thread Alan DeKok
Bertrand Poulet <[EMAIL PROTECTED]> wrote:
> at line 66 of users files , i've got :
> bertrandCisco-AVPair == "ssid=my_ssid", User-Password == "bertrand"

  Use := for User-Password.

  Alan DeKok.
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Sebastian Wild

Looks like a bouncing absence noticeonce more...
Listadmins please do something before we get 100s of bounces again...

greets
Sebastian

Dag Bodin wrote:

Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
  


- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Silpa Akkina
I tried to search the source code...to find where i can edit it..to get  milliseconds resolutionbut couldnt find it...can you please tell me  as to where i can edit the source code.and how  Thanks,  Silpa[EMAIL PROTECTED] wrote:  Send Freeradius-Users mailing list submissions to freeradius-users@lists.freeradius.orgTo subscribe or unsubscribe via the World Wide Web, visit http://lists.freeradius.org/mailman/listinfo/freeradius-usersor, via email, send a message with subject or body 'help' to [EMAIL PROTECTED]You can reach the person managing the list at [EMAIL PROTECTED]When replying, please edit your Subject line so it is more specificthan "Re: Contents of Freeradius-Users
 digest..."Today's Topics:   1. Re: Question Regarding FreeRADIUS debug please help!   (Alan DeKok)   2. Re: FreeRADIUS 1.1.1 Segmentation fault on Fedora 4  (Alan DeKok)   3. Re: Freeradius-Users Digest, Vol 12, Issue 56 (Out Of Office)  (BRETT WEEAST)   4. freeradius 1.0.5 - Max-All-Session, Max-Daily-Session and  Max-Monthly-Session maximum value limit (James)   5. Re: freeradius 1.0.5 - Max-All-Session, Max-Daily-Session and  Max-Monthly-Session maximum value limit  (Alan DeKok)   6. Simultaneous-Use Issue (James)   7. EAP/TLS Authentication fail (=?gb2312?B?y+8gx78=?=)--Message: 1Date: Wed, 12 Apr 2006 17:13:26 -0400From: "Alan DeKok" Subject: Re: Question Regarding FreeRADIUS debug please help! To: FreeRadius users mailing list Message-ID: <[EMAIL PROTECTED]>Silpa Akkina  wrote:> serveri think all i can get is debug with seconds resolution...but  for my >   > project i have to take milli seconds readingsplease help!  Edit the source code.  Alan DeKok.--Message: 2Date: Wed, 12 Apr 2006 17:15:04 -0400From: "Alan DeKok" Subject: Re: FreeRADIUS 1.1.1 Segmentation fault on Fedora 4 To: FreeRadius users mailing list Message-ID: <[EMAIL PROTECTED]>Nikolas Thoman  wrote:> Any help in diagnosing the reason why I'm encountering a fault in> malloc would be much appreciated.  It usually happens because something else in the code isover-writing a
 buffer, or writing to free'd memory.  Run the server under valgrind to see what's going on.  You'll haveto pass special options to work around the infinite SSL warnings, butthose warnings can be ignored.  Alan DeKok.--Message: 3Date: Wed, 12 Apr 2006 17:40:12 -0400From: "BRETT WEEAST" Subject: Re: Freeradius-Users Digest, Vol 12, Issue 56 (Out Of Office)To: Message-ID: Content-Type: text/plain; charset=US-ASCIII will be out of the office Thu, April 13 through Fri, April 21.  If you require assistance prior to April 24, email the Network Services Unit at: [EMAIL PROTECTED] >>> freeradius-users 04/12/06 17:12 >>>Send Freeradius-Users mailing list submissions to freeradius-users@lists.freeradius.orgTo subscribe
 or unsubscribe via the World Wide Web, visit http://lists.freeradius.org/mailman/listinfo/freeradius-usersor, via email, send a message with subject or body 'help' to [EMAIL PROTECTED]You can reach the person managing the list at [EMAIL PROTECTED]When replying, please edit your Subject line so it is more specificthan "Re: Contents of Freeradius-Users digest..."Today's Topics:   1. Re: Freeradius, mysql, please help!!! (YvesDM)   2. Re: Question (YvesDM)   3. Re: Freeradius, mysql, please help!!! (Laker Netman)   4. Multiple Locations and configuring 2 different methods of  Access (James)   5. Re: FreeRADIUS and SNMP (Kevin Bonner)   6. FreeRADIUS 1.1.1 Segmentation fault on Fedora 4 (Nikolas Thoman)   7. Question Regarding FreeRADIUS debug please help!  (Silpa
 Akkina)--Message: 1Date: Wed, 12 Apr 2006 20:43:22 +0200From: YvesDM Subject: Re: Freeradius, mysql, please help!!!To: "FreeRadius users mailing list" Message-ID: <[EMAIL PROTECTED]>Content-Type: text/plain; charset="iso-8859-1"On 4/12/06, [EMAIL PROTECTED]  wrote:>> Hi,>> ummm. I'm not too certain here but wasnt the password you defined in the> mySQL database for john $1$bkW9WNor$tq5sRRiUcwOV4/fwk3CYM/> if this is a crypted password then surely the attribute is Crypt-Password> rather than User-Password?>> alan> -> List info/subscribe/unsubscribe? See> http://www.freeradius.org/list/users.html>Correct,
 alan DeKok told me too. I changed it, but it didn't solve theproblem.tnxyves-- next part --An HTML attachment was scrubbed...URL: https://list.xs4all.nl/pipermail/freeradius-users/attachments/20060412/8e9693ce/attachment-0001.html--Message: 2Date: Wed, 12 Apr 2006 20:58:34 +0200From: YvesDM Subject: Re: QuestionTo: "FreeRadius users mailing list" Message-ID: <[EMAIL PROTECTED]>Content-Type: text/plain; charset="iso-8859-1"On 4/12/06, [EMAIL PROTECTED]  wrote:>> Hi,>> > modcall: leaving group authorize (returns ok) for request 0> >   rad_

Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


ldap+radius+wpa 802.1x authentication

2006-04-15 Thread João Mamede
No help for me?I'm desperate I've lost 3 nights now :D
I already have my own certs.
Best Regards
João Mamede













Hi I've been trying to set up my freeradius with my ldap database(all users to 
authenticate) and I can't authenticate my wireless machines using my AP with 
EAP.
all my config files can be found at http://nebioq.ath.cx:85/radius.tar.bz2 and 
my radiusd -X -A in http://nebioq.ath.cx:85/radiuslog.txt
I've tried EAP-MD5 and EAP-TTLS I'm using the certs that came with freeradius 
because I'm unable to create new one's(an error about some library or 
something).
I can associate to my AP(d-link DI-624) but then the EAP auth fails.
My machine is a freeBSD machine(with the radiusd).
Oh radtest:
radtest forevertheuni  mypassword t4 0 radiussecret
Sending Access-Request of id 42 to 192.168.5.100 port 1812
User-Name = "forevertheuni"
User-Password = "mypassword"
NAS-IP-Address = 255.255.255.255
NAS-Port = 0
rad_recv: Access-Accept packet from host 192.168.5.100:1812, id=42, length=20

Hope you folks can help me!
Thanks for any help in advance.
João Mamede

- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


WinXP with Ipsec Framed-Route config problem

2006-04-15 Thread Radek Antoniuk

Hi,


I'm setting up a connection based on linux with openswan and an XP box.
Everything is okay, when I'm using the "use default gateway on the 
remote network" option on the XP side. But I don't want to use it 
because I have another connection to a standard internet and the ipsec 
one breaks it this way. What I want to do, is to force radius to set a 
static route on the XP box after setting the tunnel up. But it doesn't.


so,here's the scenario:
no framed-route, after setting the tunnel manually adding:
"route add " on XP box.
WORKS FINE.

framed-route, setting up connection, (the static route doesn't work - 
does not show up in the routing table), manually adding static route 
like before...

does NOT work. weird, isn't it?

Moreover, I have tried using many forms of Framed-Route, and none of 
these work for XP (after none of these appriopriate route shows up in 
the route table on the windows box).



Here's my user section :


tester   Auth-Type := Local, User-Password == "test3ingXXX"
Service-Type = Framed-User,
Framed-Protocol = PPP,
Framed-IP-Address = "10.20.30.1",
Framed-IP-Netmask = "255.255.255.255",
Framed-Route = "1.2.3.4 255.255.255.255 1",
Framed-MTU = 1500,
Framed-Compression = Van-Jacobsen-TCP-IP

Any ideas would be apprieciated :)

Thanks.
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: WinXP with Ipsec Framed-Route config problem

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: WinXP with Ipsec Framed-Route config problem

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: WinXP with Ipsec Framed-Route config problem

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: WinXP with Ipsec Framed-Route config problem

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: WinXP with Ipsec Framed-Route config problem

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: WinXP with Ipsec Framed-Route config problem

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: WinXP with Ipsec Framed-Route config problem

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: ldap+radius+wpa 802.1x authentication

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Freeradius-Users Digest, Vol 12, Issue 57

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: Problem with Cisco-AVPair

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


Re: WinXP with Ipsec Framed-Route config problem

2006-04-15 Thread Dag Bodin
Jag är bortrest några dagar och kan inte kontrollera min mail, återkom efter 
den 24/4 eller kontakta kontoret på [EMAIL PROTECTED] eller +46-612-717780
I’m out of office until April 24, contact office: [EMAIL PROTECTED] or 
+46-612-717780
- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html