(RADIATOR) Re: Problem about Time check item

2001-06-22 Thread chairarth


Hi Hugh,
I have done following your
suggestion and I found that I can control Times of Day which user
is allowed to log on. But
I 've got a problem about RADUSERS and RADUSAGE Table.
In log file you can see
that after user test2@qnetadsl log out , Radiator then din't do query update
RADUSERS Table ( e.g. TIMELEFT
) and didn't do query insert into RADUSAGE Table also.
How can I fix it?
Thanks,
Chairath

Hugh Irvine wrote:


Hello Chairarth - You cannot configure Radiator as you have shown below
- you will need to use cascaded AuthBy clauses, something like this: #
define AuthBy FILE AuthBy FILE>Identifier CheckUsersFilename
%D/adsl.users/AuthBy> # define Realms Realm qnetadsl>AuthBy
CheckUsers/Realm> Then in the file "adsl.users", something like
this: # define DEFAULT users DEFAULT Prefix = S,
Time = "SaSu-2359", Auth-Type RADMINAUTH DEFAULT Prefix
= P, Time = "Wk2200-",
Auth-Type RADMINAUTH hth Hugh At 5:16 PM +0700 6/21/01,
chairarth wrote:
Hi Hugh,

Our concept
is customer who login with username Sxxx@qnetadsl will be allowed
to log on only on Saturday-Sunday , and only on Monday - Friday from 22:00
- 00:00 for username Pxxx@qnetadsl
So I try to use Time and Prefix check
item but it show error like these

ERR
: Unknow keyword 'DEFAULT'
ERR : Unknow
keyword 'Time'

How can I
fix it ?

Thanks in
advance,
Chairath

P.S. Now
I'm implement RADIATOR version 2.18.2 and RADMIN version 1.4 based on Windows
NT


 attach.zip


Re: (RADIATOR) Dual accounting

2001-06-22 Thread Hugh Irvine
Title: Re: (RADIATOR) Dual accounting



Hello Chris -

At 2:01 PM -0700 6/21/01, Chris Sellers wrote:
I am
running Radiator on BSDI4.1. I have the accounting logging to a file
via AcctLogFileName in the cfg. We use a billmax billing system that
needs this information sent to it, to be added to its db. Can I fork
the accounting so thatitwill send the info to Billmax AND
keep logging to my files?


This is very easy to do. Depending on how you want to send the
data to Billmax (you can either proxy or write directly to the
database). Either way you just need to add a second AuthBy module and
handle authentication and accounting differently. Something like
this:

# define AuthBy clauses

AuthBy 

Identifier NormalAuth


/AuthBy

AuthBy 

Identifier SendToBillmax

.
/AuthBy

# configure Handlers

Handler Request-Type = Accounting-Request
 AuthBy
SendToBillmax

AcctLogFileName 


/Handler

Handler
 AuthBy
NormalAuth

.
/Handler


hth

Hugh


--


NB:
I am travelling this week, so there may be delays in our
correspondence.

Radiator: the most portable, flexible and configurable RADIUS
server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT,
Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc,
etc.
Available on Unix, Linux,
FreeBSD, Windows 95/98/2000, NT, MacOS X.



Re: (RADIATOR) Digest::MD4 on RedHat???

2001-06-22 Thread Hugh Irvine


Hello Carl -

You will find MD4 on CPAN (www.cpan.org).

http://www.cpan.org/modules/by-module/Digest/Digest-MD4-1.0.tar.gz

regards

Hugh

At 6:42 PM -0400 6/21/01, Carl Litt wrote:
I am having a problem with Radiator 2.18.2 dying after receiving
MS-CHAP autentication requests.  Perl complains about not being able
to find Digest/MD4.pm, which I can't find anywhere.  I'm running
RedHat 6.2, so the previous posts concerning Activestate Perl do
not apply.

Does anyone know of SRPMS that will provide this module?

Carl Litt
Network Administrator
Execulink Internet

===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.

-- 

NB: I am travelling this week, so there may be delays in our correspondence.

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc, etc.
Available on Unix, Linux, FreeBSD, Windows 95/98/2000, NT, MacOS X.
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



Re: (RADIATOR) Attribute Length

2001-06-22 Thread Hugh Irvine
Title: Re: (RADIATOR) Attribute
Length



Hello Brandon -

You can do both these things in a PostAuthHook.

There are some examples in the file
goodies/hooks.txt.

hth

Hugh


At 1:54 AM -0700 6/21/01, Brandon wrote:
Ive had a
request to reduce attribute 242 (Ascend Data Filter) from 28 to 26
characters.
Anyone have
any idea how to do this?

Also, any
idea how to strip off the 2nd proxy-state attribute when a request is
proxied mutiple levels?

Brandon
Dialup USA, Inc.


--


NB:
I am travelling this week, so there may be delays in our
correspondence.

Radiator: the most portable, flexible and configurable RADIUS
server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT,
Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc,
etc.
Available on Unix, Linux,
FreeBSD, Windows 95/98/2000, NT, MacOS X.



Re: (RADIATOR) PostAuthHook question.

2001-06-22 Thread Hugh Irvine


Hello Griff -

At 9:33 AM -0700 6/21/01, Griff Hamlin wrote:
Hello,

I'm in need of adding specific attributes to the reply packets for one
of the routers I have to authenticate (out of hundreds). Since I only
have need for one handler and we don't use realms, I figure the best
thing to do would be to have a little PostAuthHook that tested my
request for the right IP address and if it passes, add the apprpriate
attributes to the reply packet. I used to have a problem with
NAS-IP-Address fields not matching the actual IP address of the router
sending the packet, so now I have an 'identifier' in every client block
with the IP address that I want to be associated with each router (it's
actual IP address.) That 'identifier' is used in my AUthBy module that I
wrote to test various things about each router (allowing certain
customers access only on certain routers, etc.)

When I put in the following PostAuthHook, it won't compile, and quite
honestly I'm not sure if I've done this right. Any help would be
appreciated. I tried to steal this straight out of the manual, so I'm a
little surprised at the error I get.

Handler
   RewriteUsername s/^([^@]+).*/$1/
   AuthBy GROUP
 AuthByPolicy ContinueUntilAccept
 AuthBy QuikRadAcct
   # authorize by the module AuthQuikRadAcct.pm
 /AuthBy
 AuthBy QuikRad
# Fork
   # authorize by the module AuthQuikRad.pm
 /AuthBy
   /AuthBy

   # Handle the  Router 65.89.75.8
   PostAuthHook sub { if ${$_[2]} eq $main::ACCEPT  \
  ${$_[0]}-{Client}-{Identifier} eq 65.89.75.8 { \
 ${$_[1]}-add_attr('Ascend-Data-Filter','ip in forward tcp
est'); \
 ${$_[1]}-add_attr('Ascend-Data-Filter','ip in forward dstip
216.176.28.1/32'); \
 ${$_[1]}-add_attr('Ascend-Data-Filter','ip in drop tcp
dstport=25'); \
 ${$_[1]}-add_attr('Ascend-Data-Filter','ip in forward'); \
 ${$_[1]}-change_attr('Service-Type','Framed'); \
} \
 }
   # Log accounting to the detail file in LogDir/client
   AcctLogFileName  %L/%c/detail
# MaxSessions 1
/Handler

The error in the log file is:

Thu Jun 21 10:10:35 2001: ERR: Compilation error in PostAuthHook: syntax
error at (eval 77) line 1, near if $
syntax error at (eval 77) line 2, at EOF
Missing right bracket at (eval 77) line 2, at end of line

Thu Jun 21 10:10:35 2001: ERR: Unknown keyword
'${$_[1]}-add_attr('Ascend-Data-Filter','ip' in /etc/radius.cfg line
109


It appears to be failing right away at my conditional. Are conditionals
unacceptable?

Conditionals are certainly acceptable, however I strongly encourage 
you to put your hook(s) in external files and edit them with a normal 
editor.

I suggest you start with one of the examples that are in the file 
called goodies/hooks.txt in the distribution.

I also suggest that you use some sort of symbolic string in your 
Client Identifiers instead of IP addresses, as this will make changes 
and so on *much* easier to deal with.

hth

Hugh

-- 

NB: I am travelling this week, so there may be delays in our correspondence.

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc, etc.
Available on Unix, Linux, FreeBSD, Windows 95/98/2000, NT, MacOS X.
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



Re: (RADIATOR) Telco invoice does not match the monthly sessionsdura tion

2001-06-22 Thread Hugh Irvine


Hello Slavka -

At 10:07 AM +0200 6/22/01, Slavka Trifonova wrote:
Hello all,

I have a problem with reconciling dial-in usage reported by telco and
accounted by Radiator.
The sessions duration (radiator accounting) seems to be approximately +5%
longer than the telephone calls duration for a dialup user.
Based on general assumptions the start time of the telephone call should be
prior the session start time but what about the stop time?

I will be very grateful for any idea how to interpret and test that.

You will need to check with the supplier of the your NAS equipment 
and with the telco to determine what the times are actually measuring.

Note that Radiator is simply recording the information supplied by the NAS.

regards

Hugh

-- 

NB: I am travelling this week, so there may be delays in our correspondence.

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc, etc.
Available on Unix, Linux, FreeBSD, Windows 95/98/2000, NT, MacOS X.
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



(RADIATOR) Re: Problem about Time check item

2001-06-22 Thread Hugh Irvine
Title: Re: Problem about Time check
item



Hello Chairarth -

Quite right - my fault, I'm sorry.

Try setting up your Handlers like this (no Realms):

# handle accounting requests seperately

Handler Request-Type = Accounting-Request
 AuthBy
RADMINAUTH


/Handler

Handler Realm = qnetadsl
 AuthBy
CheckUsers


/Handler

Handler
 AuthBy
RADMINAUTH


/Handler


regards

Hugh


At 2:49 PM +0700 6/22/01, chairarth wrote:
Hi
Hugh,

I have done
following your suggestion and I found that I can control Times of Day
which user
is allowed to log on. But I 've got a
problem about RADUSERS and RADUSAGE Table.
In log file you can see that after user
test2@qnetadsl log out , Radiator then din't do query
update
RADUSERS Table ( e.g. TIMELEFT ) and
didn't do query insert into RADUSAGE Table also.
How can I fix it?

Thanks,
Chairath


Hugh Irvine wrote:
Hello Chairarth - You cannot configure
Radiator as you have shown below - you will need to use cascaded
AuthBy clauses, something like this: # define AuthBy FILE AuthBy
FILE Identifier CheckUsers
Filename %D/adsl.users/AuthBy # define Realms
Realm
qnetadsl
AuthBy CheckUsers/Realm Then in the file
adsl.users, something like this: # define DEFAULT users
DEFAULT Prefix = S, Time =
SaSu-2359, Auth-Type RADMINAUTH DEFAULT Prefix
= P, Time =
Wk2200-, Auth-Type RADMINAUTH hth
Hugh At 5:16 PM +0700 6/21/01, chairarth wrote:
Hi
Hugh,

Our concept
is customer who login with username Sxxx@qnetadsl will be
allowed to log on only on Saturday-Sunday , and only on Monday -
Friday from 22:00 - 00:00 for username Pxxx@qnetadsl
So I try to use Time and Prefix check
item but it show error like these

ERR : Unknow keyword 'DEFAULT'
ERR : Unknow keyword
'Time'

How can I
fix it ?

Thanks in
advance,
Chairath

P.S. Now
I'm implement RADIATOR version 2.18.2 and RADMIN version 1.4 based on
Windows NT




Attachment converted: Macintosh HD:attach.zip 1 (pZIP/pZIP)
(0001C67D)


--


NB:
I am travelling this week, so there may be delays in our
correspondence.

Radiator: the most portable, flexible and configurable RADIUS
server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT,
Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc,
etc.
Available on Unix, Linux,
FreeBSD, Windows 95/98/2000, NT, MacOS X.



(RADIATOR) Re:

2001-06-22 Thread Hugh Irvine


Hello Asi -


hello

I  buy the radiator in 20.06.2001 I need to know if I can put the =
radiator as a service in the server

and how I can do so I need to put the radiator as a service


Please have a look at section 16 (16.4 for NT) in the Radiator 2.18.2 
reference manual (doc/ref.html in the distribution).

hth

Hugh

-- 

NB: I am travelling this week, so there may be delays in our correspondence.

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc, etc.
Available on Unix, Linux, FreeBSD, Windows 95/98/2000, NT, MacOS X.
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



(RADIATOR) A problem with socket read queue length

2001-06-22 Thread enrique . carnicero

Hello,

When I start radiator I con find this message in the log file:

Fri Jun 22 10:22:09 2001: WARNING: Could not set socket read queue length
for accounting to 25: Bad file number

Does anybody what it means? How can I avoid this message?

My radiator is installed on a Sun machine with Solaris 2.6 and Oracle.

Thank you and regards,

Enrique Carnicero Requena
BT Telecomunicaciones, S.A.
C/Isabel Colbrand, 8
28050 - Madrid
Teléfono: (+34) 91 270 61 88
Fax: (+34) 91 270 63 10



** 
Noticia legal 
Este mensaje electrónico contiene información de BT Telecomunicaciones S.A.
que es privada y confidencial, siendo para el uso exclusivo de la persona(s)
o entidades arriba mencionadas. Si usted no es el destinatario señalado, le
informamos que cualquier divulgación, copia, distribución o uso de los
contenidos está prohibida. Si usted ha recibido este mensaje por error, por
favor borre su contenido y comuníquenoslo en la dirección [EMAIL PROTECTED] 
Gracias
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



(RADIATOR) Authentication Thru Radiator with system passwd file

2001-06-22 Thread Mike McCauley


--- Forwarded mail from [EMAIL PROTECTED]

From: [EMAIL PROTECTED]
Date: Fri, 22 Jun 2001 04:27:30 -0500
To: [EMAIL PROTECTED]
Subject: BOUNCE [EMAIL PROTECTED]:Non-member submission from [Javaid
Sajjad [EMAIL PROTECTED]]

From [EMAIL PROTECTED] Fri Jun 22 04:27:29 2001
Received: from mail.cyberaccess.com.pk (IDENT:root@[203.133.252.19])
by server1.open.com.au (8.11.0/8.11.0) with ESMTP id f5M9RKD26686
for [EMAIL PROTECTED]; Fri, 22 Jun 2001 04:27:26 -0500
Received: from cyberaccess.com.pk ([203.133.252.20])
by mail.cyberaccess.com.pk (8.9.3/8.8.7) with ESMTP id QAA19073;
Fri, 22 Jun 2001 16:24:08 +0500
Message-ID: [EMAIL PROTECTED]
Date: Fri, 22 Jun 2001 16:18:17 +0500
From: Javaid Sajjad [EMAIL PROTECTED]
X-Mailer: Mozilla 4.76 [en] (WinNT; U)
X-Accept-Language: en
MIME-Version: 1.0
To: [EMAIL PROTECTED]
Subject: Authentication Thru Radiator with system passwd file
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hello !

Would  you plese let me know how to configure Radiator's radius.cfg file
for authentication through
Linux default passwd file ie /etc/passwd which is in our case is flat
one not shadow.Further more we
want to authenticate from Livingston Access Server throu Radiator server
which is on Linux 6.2 having
flat passwd file.
Any assistance will be highly appreciated .

Regards
Javaid Sajjad





---End of forwarded mail from [EMAIL PROTECTED]

-- 
Mike McCauley   [EMAIL PROTECTED]
Open System Consultants Pty. LtdUnix, Perl, Motif, C++, WWW
24 Bateman St Hampton, VIC 3188 Australia   http://www.open.com.au
Phone +61 3 9598-0985   Fax   +61 3 9598-0955

Radiator: the most portable, flexible and configurable RADIUS server 
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald, 
Platypus, Freeside, TACACS+, PAM, external, Active Directory etc etc 
on Unix, Win95/8, 2000, NT, MacOS 9, MacOS X
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



Re: (RADIATOR) A problem with socket read queue length

2001-06-22 Thread Hugh Irvine


Hello Enrique -

The only way you can change this in Radiator is with the 
SocketQueueLength parameter, so you should just remove this line from 
the configutation file.

regards

Hugh


At 1:23 PM +0200 6/22/01, [EMAIL PROTECTED] wrote:
Hello,

When I start radiator I con find this message in the log file:

Fri Jun 22 10:22:09 2001: WARNING: Could not set socket read queue length
for accounting to 25: Bad file number

Does anybody what it means? How can I avoid this message?

My radiator is installed on a Sun machine with Solaris 2.6 and Oracle.

Thank you and regards,

Enrique Carnicero Requena
BT Telecomunicaciones, S.A.
C/Isabel Colbrand, 8
28050 - Madrid
Teléfono: (+34) 91 270 61 88
Fax: (+34) 91 270 63 10



**
Noticia legal
Este mensaje electrónico contiene información de BT Telecomunicaciones S.A.
que es privada y confidencial, siendo para el uso exclusivo de la persona(s)
o entidades arriba mencionadas. Si usted no es el destinatario señalado, le
informamos que cualquier divulgación, copia, distribución o uso de los
contenidos está prohibida. Si usted ha recibido este mensaje por error, por
favor borre su contenido y comuníquenoslo en la dirección [EMAIL PROTECTED]
Gracias
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.

-- 

NB: I am travelling this week, so there may be delays in our correspondence.

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc, etc.
Available on Unix, Linux, FreeBSD, Windows 95/98/2000, NT, MacOS X.
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



Re: (RADIATOR) Authentication Thru Radiator with system passwdfile

2001-06-22 Thread Hugh Irvine


Hello Javaid -


Hello !

Would  you plese let me know how to configure Radiator's radius.cfg file
for authentication through
Linux default passwd file ie /etc/passwd which is in our case is flat
one not shadow.Further more we
want to authenticate from Livingston Access Server throu Radiator server
which is on Linux 6.2 having
flat passwd file.
Any assistance will be highly appreciated .

You would simply specify an AuthBy UNIX clause, like this:

AuthBy UNIX
Filename /etc/passwd
/AuthBy

Note that you will only be able to use PAP authentication with this setup.

regards

Hugh

-- 

NB: I am travelling this week, so there may be delays in our correspondence.

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc, etc.
Available on Unix, Linux, FreeBSD, Windows 95/98/2000, NT, MacOS X.
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



Re: (RADIATOR) Authentication Thru Radiator with system passwdfile

2001-06-22 Thread Hugh Irvine


Hello Javaid -

If you send me a copy of your configuration file (no secrets) 
together with a trace 4 debug from Radiator, I will take a look.

regards

Hugh


At 7:10 PM +0500 6/22/01, [EMAIL PROTECTED] wrote:
Hi,

Thanx for that suggestion but it is not working- i think something should
be done with 'users' file in /src/local/etc/radddb in our case. So  any
changes are required for that file?



On Fri, 22 Jun 2001, Hugh Irvine wrote:


  Hello Javaid -

  
  Hello !
  
  Would  you plese let me know how to configure Radiator's radius.cfg file
  for authentication through
  Linux default passwd file ie /etc/passwd which is in our case is flat
  one not shadow.Further more we
  want to authenticate from Livingston Access Server throu Radiator server
  which is on Linux 6.2 having
  flat passwd file.
  Any assistance will be highly appreciated .

  You would simply specify an AuthBy UNIX clause, like this:

  AuthBy UNIX
  Filename /etc/passwd
  /AuthBy

  Note that you will only be able to use PAP authentication with this setup.

  regards

  Hugh



-- 

NB: I am travelling this week, so there may be delays in our correspondence.

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc, etc.
Available on Unix, Linux, FreeBSD, Windows 95/98/2000, NT, MacOS X.
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



(RADIATOR) Feature Request

2001-06-22 Thread Chris Given

Im not sure how radiator internally works, but I was wondering if it would
be possible to send a batch of all the current authentication requests
waiting up to a database server (Using XML) and return a result set of
there attributes.

Something like this

Auth Query : EXEC some_radius_authentication_procedure
@UsersXML='xmlUsersUser Username=user1 Password=pass1 /User
Username=user2 Password=pass2 //Users/xml'

Response from database server would be a result set with info for all users
it could find in @UsersXML, im not sure how many database servers support
sending XML into a query like this, but Microsoft SQL Server 2000 does.

===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



Re: (RADIATOR) Feature Request

2001-06-22 Thread Hugh Irvine


Hello Chris -

Radiator is single-threaded, so it only ever handles a single request.

regards

Hugh


At 8:37 AM -0600 6/22/01, Chris Given wrote:
Im not sure how radiator internally works, but I was wondering if it would
be possible to send a batch of all the current authentication requests
waiting up to a database server (Using XML) and return a result set of
there attributes.

Something like this

Auth Query : EXEC some_radius_authentication_procedure
@UsersXML='xmlUsersUser Username=user1 Password=pass1 /User
Username=user2 Password=pass2 //Users/xml'

Response from database server would be a result set with info for all users
it could find in @UsersXML, im not sure how many database servers support
sending XML into a query like this, but Microsoft SQL Server 2000 does.

===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.

-- 

NB: I am travelling this week, so there may be delays in our correspondence.

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, Interbiller, TACACS+, PAM, external, etc, etc.
Available on Unix, Linux, FreeBSD, Windows 95/98/2000, NT, MacOS X.
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



Re: (RADIATOR) Attribute Length

2001-06-22 Thread Brandon
Title: Re: (RADIATOR) Attribute Length



I checked there but didn't find an example that I 
could use. Im worried that if I do a:
 
$rp-delete_attr('Proxy-State');
That it will strip all the proxy-state attributes 
and not just the one sent by the last pass through customer.

And also, I saw nothing in their about attribute 
length or any examples. Do you think you can give me an
example on how to change attribute 242 (Ascend Data 
Filter) from 28 to 26 characters.

Brandon


  - Original Message - 
  From: 
  Hugh Irvine 

  To: Brandon ; [EMAIL PROTECTED] 
  Sent: Friday, June 22, 2001 12:35 
AM
  Subject: Re: (RADIATOR) Attribute 
  Length
  
  
  Hello Brandon -
  
  You can do both these things in a PostAuthHook.
  
  There are some examples in the file "goodies/hooks.txt".
  
  hth
  
  Hugh
  
  
  At 1:54 AM -0700 6/21/01, Brandon wrote:
  Ive had a request to 
reduce attribute 242 (Ascend Data Filter) from 28 to 26 
  characters.
  Anyone have any idea 
how to do this?
  
  Also, any idea how to 
strip off the 2nd proxy-state attribute when a request is proxied mutiple 
levels?
  
  BrandonDialup USA, 
Inc.
  
  -- 
  
  NB: I am 
travelling this week, so there may be delays in our 
  correspondence.
  Radiator: 
the most portable, flexible and configurable RADIUS serveranywhere. SQL, 
proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,Platypus, Freeside, 
Interbiller, TACACS+, PAM, external, etc, etc.
  Available on Unix, Linux, FreeBSD, 
  Windows 95/98/2000, NT, MacOS X.


Re: (RADIATOR) Authentication Thru Radiator with system passwd file

2001-06-22 Thread Mike McCauley


--- Forwarded mail from [EMAIL PROTECTED]

From: [EMAIL PROTECTED]
Date: Fri, 22 Jun 2001 07:13:41 -0500
To: [EMAIL PROTECTED]
Subject: BOUNCE [EMAIL PROTECTED]:Non-member submission from
[[EMAIL PROTECTED]]

From [EMAIL PROTECTED] Fri Jun 22 07:13:41 2001
Received: from mail.cyberaccess.com.pk ([203.133.252.19])
by server1.open.com.au (8.11.0/8.11.0) with ESMTP id f5MCDaD27083;
Fri, 22 Jun 2001 07:13:37 -0500
Received: from localhost (jsajjad@localhost)
by mail.cyberaccess.com.pk (8.9.3/8.8.7) with ESMTP id TAA25183;
Fri, 22 Jun 2001 19:10:31 +0500
Date: Fri, 22 Jun 2001 19:10:31 +0500 (PKT)
From: [EMAIL PROTECTED]
To: Hugh Irvine [EMAIL PROTECTED]
cc: [EMAIL PROTECTED]
Subject: Re: (RADIATOR) Authentication Thru Radiator with system passwd file
In-Reply-To: a04320401b758ee90c517@[10.17.64.33]
Message-ID: [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

Hi,

Thanx for that suggestion but it is not working- i think something should
be done with 'users' file in /src/local/etc/radddb in our case. So  any
changes are required for that file?



On Fri, 22 Jun 2001, Hugh Irvine wrote:


 Hello Javaid -

 
 Hello !
 
 Would  you plese let me know how to configure Radiator's radius.cfg file
 for authentication through
 Linux default passwd file ie /etc/passwd which is in our case is flat
 one not shadow.Further more we
 want to authenticate from Livingston Access Server throu Radiator server
 which is on Linux 6.2 having
 flat passwd file.
 Any assistance will be highly appreciated .

 You would simply specify an AuthBy UNIX clause, like this:

   AuthBy UNIX
   Filename /etc/passwd
   /AuthBy

 Note that you will only be able to use PAP authentication with this setup.

 regards

 Hugh






---End of forwarded mail from [EMAIL PROTECTED]

-- 
Mike McCauley   [EMAIL PROTECTED]
Open System Consultants Pty. LtdUnix, Perl, Motif, C++, WWW
24 Bateman St Hampton, VIC 3188 Australia   http://www.open.com.au
Phone +61 3 9598-0985   Fax   +61 3 9598-0955

Radiator: the most portable, flexible and configurable RADIUS server 
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald, 
Platypus, Freeside, TACACS+, PAM, external, Active Directory etc etc 
on Unix, Win95/8, 2000, NT, MacOS 9, MacOS X
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.



(RADIATOR) Need help urgently

2001-06-22 Thread Mohammed AbdusSami

Dear All,

In my configuration radiator is passing the parameter framed-ip-netmask as
255.255.255.0 but when I connect thru dialup it is taking 255.255.0.0

Can anybody help me to fix this problem.

Regards,

AbdusSami

===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.