Re: [RADIATOR] Executing an external script from Radiator

2011-06-29 Thread Alan Buxey
Theres a a lot of external shell stuff going on there. Personally I would be using built in perl functions and perl modules for handling the strings and dealing with that URL. It's then also easier to do sanity checks , as this stands you could get some very interesting results with the correctl

Re: [RADIATOR] Eaptype=PEAP choosen even if request is EAP-TLS

2011-06-29 Thread Vandenbroucke Luc
Heikki, Thanks I tested 1 and 2 and they seem to work. (EAP-Message = /^.{4}\xd/ ) Option 3 and 4 will give me all I need. But I will follow you advice, and try to use information in the username. Regards, Luc Vandenbroucke -Original Message- From: Heikki Vatiainen [mailto:h...@open.co

Re: [RADIATOR] Executing an external script from Radiator

2011-06-29 Thread M P
Hello Alan, As much as I would want to, that is my current limitation. In my earlier message, I already mentioned that I can only write in BASH. Anyway, in connection with sending back the reply to the client either in Access-Accept or Access-Reject, how can I send my custom reply messages on

[RADIATOR] Access-accept response too big.

2011-06-29 Thread Ronald Pérez
Hi all, I'm testing this. After radius receive and access-request, responds with an access-accept and a bunch of attributes, (include file), when this file is too big the response doesn't reach the client, i think maybe is a MTU problem. Any idea? Thanks, Ronald _

Re: [RADIATOR] Access-accept response too big.

2011-06-29 Thread Christian Kratzer
Hi, On Wed, 29 Jun 2011, Ronald Pérez wrote: Hi all, I'm testing this. After radius receive and access-request, responds with an access-accept and a bunch of attributes, (include file), when this file is too big the response doesn't reach the client, i think maybe is a MTU problem. if the re

Re: [RADIATOR] Executing an external script from Radiator

2011-06-29 Thread Martin Burton
Hi M P Radiator responds to the NAS depending on the exit code of your script: The responses are: Exit Code Response = 0 Access-Accept 1 Access-Reject 2 DO NOT REPLY AT ALL In addition any attribute-value pairs you provide o

Re: [RADIATOR] MAP Gateway Simultator

2011-06-29 Thread Heikki Vatiainen
On 06/27/2011 09:22 PM, Gustavo Castellanos wrote: > Does anyone have a user guide for the MAP Gateway simulator that comes > with EAP SIM Module? > Thanks in advance for sharing it I think the best guide currently is the README in the SIM pack and the configuration examples in goodies/ directory

[RADIATOR] Accessing a reply attribute from one authby in a subsequent authby

2011-06-29 Thread Bob Shafer
Greetings, I would like to do something like this: AuthByPolicy ContinueWhileAccept Filename %D/access-users Command %D/scripts/otherauth %T where the file access-users contains entries like this: fredClass = Vendor Callback-Num

Re: [RADIATOR] Accessing a reply attribute from one authby in a subsequent authby

2011-06-29 Thread Heikki Vatiainen
On 06/29/2011 05:49 PM, Bob Shafer wrote: Hello Bob, > I would like to do something like this: > > > AuthByPolicy ContinueWhileAccept > > Filename %D/access-users > > > Command %D/scripts/otherauth %T > > > > where the file access-users conta

Re: [RADIATOR] Accessing a reply attribute from one authby in a subsequent authby

2011-06-29 Thread Michael
you can choose from where to get the attribute value via: %{Reply:Class} %{Request:Class} if you know the value will be in the Reply packet, use %{Reply:Class}. I think the default (if using %Class) is the request packet and may appear blank. On Wed, 29 Jun 2011, Heikki Vatiainen wrote: >