Re: FreeRadius suport IPv6 ??????????????/

2006-09-12 Thread Christian Hahn
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 나종현 wrote: whether Free-Radius support IPv6?? Do you mean IPv6 transport or support for IPv6 attributes (RFC3162)? RFC3162 is supported by freeradius 2.0.0-pre0 (CVS), IPv6 transport as far as I know is not supported. Christian

Probs with pppoe-server + radius

2006-09-12 Thread Ali Jawad
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Guys Iam using freeradius on a debian sarge box. I use the following : noccbox:~# freeradius -v freeradius: FreeRADIUS Version 1.1.2, for host , built on Jul 2 2006 at 11:19:11 noccbox:~# uname -a Linux noccbox 2.6.8-3-686 #1 Sat Jul 15

Re: How to enable session-timeout in freeradius

2006-09-12 Thread Ali Majdzadeh
Hi RanjeetIf you want to send AV pairs to a NAS, just print them to stdout.RegardsAliOn 9/11/06, Ranjeet Kumar [EMAIL PROTECTED] wrote: Peter, Can you please tell me how to send it (session–timeout) as reply item to NAS? Thanks, Ranjeet Date: Sat, 9 Sep 2006 15:40:01

Re: FreeRADIUS install time errors on Solaris

2006-09-12 Thread Rob Shepherd
Ronak Sutaria wrote: /nisusers/rsutaria/FreeRADIUS/freeradius-1.1.3/libtool: ranlib: command not found ranlib is in /usr/ccs/bin alongside (SUN)make, ar, ld and friends. add /usr/ccs/bin to the start of your PATH. Rob PS. Check the WIKI for building notes. -- Rob Shepherd | Computer and

rautmp not working..

2006-09-12 Thread Collen Blijenberg
Hello all... i'm trying to make rautmp to work... but it doesn't... -xx debug showes: -- Module: Loaded radutmp radutmp: filename = /var/log/radius/radutmp radutmp: username = %{User-Name} radutmp: case_sensitive = yes radutmp: check_with_nas = yes radutmp: perm = 384 radutmp: callerid = yes

Question about rlm modules

2006-09-12 Thread Ali Majdzadeh
Hi allWhat is(are) the coresponding function pointer(s) for start and stop packets in an rlm module? (Something like xxx_authenticate)Should I define my own custome funtion pointers? Then, How can I test them? Best RegardsAli - List info/subscribe/unsubscribe? See

RE: Question about rlm modules

2006-09-12 Thread Shankar Ganesh C
Hi Ali, Could you let me know how did u capture the vendor specfic attributes in the rlm_module ? like the one you have described earlier getenv(USER_NAME) , getnev(Cisco_AVP) ? Rgds, Shankar ganesh -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On

STORE PWD using MD5 and EAP-PEAP-MSCHAPv2 for the comunication-----------------------------------

2006-09-12 Thread ego seek
Does Anybody know HOW I can make radius WORK with md5-stored password in the db?I use EAP-PEAP-MSCHAPv2, and if the system works great if the pwds are in clear in the mysqlDBbest regards. Nicola - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: Question about rlm modules

2006-09-12 Thread Ali Majdzadeh
Hi ShankarYes, of course.code:char USER_NAME[128];VALUE_PAIR *vp_iterator;vp_iterator = request-packet-vps;while (vp_iterator){ if (strcmp (vp_iterator-name, User-Name) == 0) strcpy (USER_NAME, vp_iterator-strvalue); vp_iterator = vp_iterator-next;}This method also works for vendor specific

Re: Question about rlm modules

2006-09-12 Thread Ali Majdzadeh
Hi againBy the way, the better approach to catch attributes' values is through the usage of the following function:vp_prints_value(char *out, int outlen, VALUE_PAIR *vp,int delimitst);RegardsAli On 9/12/06, Ali Majdzadeh [EMAIL PROTECTED] wrote: Hi ShankarYes, of course.code:char

Re: FreeRadius suport IPv6 ??????????????/

2006-09-12 Thread Alan DeKok
Christian Hahn [EMAIL PROTECTED] wrote: Do you mean IPv6 transport or support for IPv6 attributes (RFC3162)? RFC3162 is supported by freeradius 2.0.0-pre0 (CVS), IPv6 transport as far as I know is not supported. The CVS version also supports IPv6 transport. Alan DeKok. --

Re: Probs with pppoe-server + radius

2006-09-12 Thread Alan DeKok
Ali Jawad [EMAIL PROTECTED] wrote: The info above is to help you guys in helping me pinpoint my prolem, my real problem is that I can dial into my server using pppoe and simple chap and/or pap authenication. However once I use radius to authenicate the pppoe-dialup requests into the server. I

Re: rautmp not working..

2006-09-12 Thread Alan DeKok
Collen Blijenberg [EMAIL PROTECTED] wrote: but no radutmp file is created, and if created by hand it stay's 0 bytes... dunno my guesses tells me i forgot something... ??? Send the server accounting packets. radutmp is created when the NAS agrees that the user has logged in, not when the

Re: Question about rlm modules

2006-09-12 Thread Alan DeKok
Shankar Ganesh C [EMAIL PROTECTED] wrote: Could you let me know how did u capture the vendor specfic attributes in the rlm_module ? Read the source code to rlm_files. VSA's are just normal attributes. You can refer to them by name. Alan DeKok. -- http://deployingradius.com - The

Re: STORE PWD using MD5 and EAP-PEAP-MSCHAPv2 for the comunication-----------------------------------

2006-09-12 Thread Alan DeKok
ego seek [EMAIL PROTECTED] wrote: Does Anybody know HOW I can make radius WORK with md5-stored password in the db? I use EAP-PEAP-MSCHAPv2, and if the system works great if the pwds are in clear in the mysqlDB http://deployingradius.com/documents/protocols/compatibility.html What you

Re: Question about rlm modules

2006-09-12 Thread Alan DeKok
Ali Majdzadeh [EMAIL PROTECTED] wrote: What is(are) the coresponding function pointer(s) for start and stop packets in an rlm module? (Something like xxx_authenticate) The accounting sections handle accounting packets. Alan DeKok. -- http://deployingradius.com - The web site of the

Re: Re: Re: IAS e Openser

2006-09-12 Thread Artur Hayne
Olá a todos, Como faço para transformar o Freeradius num cliente do IAS? Existe algum tutorial, ou artigo? Se for sem passar pelo servidor freeradius eu já configurei o radiusclient para ir direto ao IAS, mas não deu certo, nada acontece, e o pior de tudo que não tenho nem como debugar o problema

Re: STORE PWD using MD5 and EAP-PEAP-MSCHAPv2 for the comunication-----------------------------------

2006-09-12 Thread Josh Howlett
ego seek wrote: Does Anybody know HOW I can make radius WORK with md5-stored password in the db? I use EAP-PEAP-MSCHAPv2, and if the system works great if the pwds are in clear in the mysqlDB You can't authenticate EAP-PEAP/EAP-MSCHAP-v2 against MD5 passwords - it's impossible. You

opinion?? anyone??

2006-09-12 Thread Elie Hani
Hi; I need to know what is the best to work with, if I want to redirect a subnet of IPs to a single one (which is a single page), for the dial up users. I will be testing the chillispot, if theres another tested software to be used on linux, please advice. Thanks Elie Hani

Re: Proxy Control

2006-09-12 Thread Josh
I've ported all my freeradius user files/info to mysql. I have a groups setup with a few users in each. However, when I attempt to login to the VPN freeradius debug shows the proxy to the SBR server. SBR returns an access-accept message and the user is logged into the VPN. Uh oh - the user I

Re: EAP-MSChapv2 authentication

2006-09-12 Thread Alan DeKok
Christopher, Paul [EMAIL PROTECTED] wrote: I have a device that uses EAP-MSCHAPv2 (without PEAP) for authentication. I am running freeRadius on Redhat. The device is plugged into a switch which sends the EAP request to the server. I am unable to get the device authenticated with the Radius

Re: radippool table for Oracle

2006-09-12 Thread Peter Nixon
On Tue 12 Sep 2006 22:44, Guilherme Franco wrote: Thanks Mr. Nixon, I thought that someone might have already created such a schema. But that's not a problem. I'll be playing with the errors and as I get a working schema I'll post back. Just another doubt: Is there any way to create a

Re: radippool table for Oracle

2006-09-12 Thread Guilherme Franco
Mr. Peter, Thanks, yes, that's correct. But what I need is this behaviour even if the user disconnects and even if I run out of IPs in the pool. Basically, John logs in for the first time and randomly catches ip 1.1.1.130. When John logs out and comes back next week, he should be able to get

Using CVS, Unknown host cvs.freeradius.org. why happen error?

2006-09-12 Thread 나종현
I want to use CVS server. # cvs -d :pserver:[EMAIL PROTECTED]:/source login CVS password:anoncvs Unknown host cvs.freeradius.org. host unKnown?? How to connect freeradius CVS server? ☞ 카트라이더가 지겹다면?