(RADIATOR) Hook in different language other than Perl

2003-08-19 Thread Ganbold
Hi, Is it possible to write various hooks in language other than perl (for example in C)? Or is there anyway to compile or decrypt the hook codes? tia, Ganbold Micom Co., Ltd === Archive at http://www.open.com.au/archives/radiator/ Announcements on [EMAIL PROTECTED] To unsubscribe, email

(RADIATOR) New Tacacs+ server ability for Radiator

2003-08-19 Thread Mike McCauley
Hello all, We are pleased to announce the release of a new module for Radiator that adds the ability for Radiator to act as a Tacacs+ server. Tacacs+ is an older Authentication, Authorization and Accounting (AAA) protocol developed by Cisco, and supported by some Cisco devices. The new

Re: (RADIATOR) Hook in different language other than Perl

2003-08-19 Thread Hugh Irvine
Hello Ganbold - You can always use the AuthBy EXTERNAL clause to call an external program in whatever language you prefer. What do you mean by compile or decrypt the hook codes? Note that the hooks in Radiator *are* compiled at run time, as is the rest of Radiator. regards Hugh On Tuesday,

(RADIATOR) startup script for radiator on solaris sparc

2003-08-19 Thread Ayotunde Itayemi
Hi All, Does anyone have a startup script I could use on a Solaris 8 SPARC box? Pls attach instructions for installation :-) Thanks. Regards, Tunde Itayemi.

Re: (RADIATOR) startup script for radiator on solaris sparc

2003-08-19 Thread Ayotunde Itayemi
Hi Richard, Hi Roland, Hi All. Thanks. I got it all set up now. Rebooted the box and it came up with radius running. Thanks. Tunde I. - Original Message - From: Richard Grantham [EMAIL PROTECTED] To: Ayotunde Itayemi [EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 12:52 PM Subject:

(RADIATOR) Authentication result codes list?

2003-08-19 Thread John McFadden
I fairly green to Radius and Radiator so please excuse my ignorance. I'm writing a post auth hook and want to make sure I cover all the various conditions. ie: I'll want to check and act on the result an AuthBy LDAP2. I understand it can be ACCEPT or REJECT but I'm wondering if I need to

Re: (RADIATOR) Hook in different language other than Perl

2003-08-19 Thread Ganbold
Hi Hugh, So it means that I can use external program instead of hooks? I attached 2 config files, one uses hooks and another on supposed to use external program. Is the new config that uses external program suppose to do same thing as previous config with hooks? Below is new config file that

Re: (RADIATOR) Hook in different language other than Perl

2003-08-19 Thread Hugh Irvine
Hello Ganbold - Yes you can do as you show below, but you will probably need to use an AuthByPolicy to control the execution of the AuthBy clauses. See section 6.23.1 in the Radiator 3.6 reference manual. regards Hugh On Wednesday, Aug 20, 2003, at 13:22 Australia/Melbourne, Ganbold wrote:

(RADIATOR) AuthBY URL problem on https

2003-08-19 Thread anyiu
Dear support, My customer is using Radiator 3.6 and AuthBY URL and running via https. I have installed 1.Install MD5 2.Install module openssl-0.9.7b 3. ./config --openssldir=/usr/local/openssl 4. Install Crypt-SSLeay-0.51 5. Install module uri-1.24 6.

Re: (RADIATOR) prepaid customers

2003-08-19 Thread Hugh Irvine
Hello Rosario - Yes Radiator can be used in a prepaid environment. This topic has been discussed many times on the Radiator mailing list: www.open.com.au/archives/radiator And you will find an example configuration file in goodies/prepaid.cfg. Basically you will need to keep your user

Re: (RADIATOR) Authentication result codes list?

2003-08-19 Thread Hugh Irvine
Hello John - You will find everything you need in the source code. Here are the return values that are defined in Radius/AuthGeneric.pm: # Return codes for handle_request $main::ACCEPT = 0; # Issue an accept for us $main::REJECT = 1; # Issue a reject for us $main::IGNORE = 2; #