Re: (RADIATOR) problem with Simultaneous-Use

1999-11-11 Thread Hugh Irvine
Hello Antonio - On Thu, 11 Nov 1999, Antonio Navarro Navarro wrote: At 11.10 11/11/99 +1100, [EMAIL PROTECTED] wrote: Realm DEFAULT MaxSessions 1 This will set a hard limit of one to all users in this realm. If you want to be able to override a setting with per-user

Re: (RADIATOR) Question on auth by sql setup

1999-11-11 Thread Hugh Irvine
Hello Jay - On Thu, 11 Nov 1999, Jay West wrote: - Original Message - From: Jay West [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 09, 1999 6:44 AM Subject: Question on auth by sql setup We're trying to switch from DBM user files to mySQL user files. I have

Re: (RADIATOR) Configuration question

1999-11-11 Thread Hugh Irvine
Hello Antonio - On Thu, 11 Nov 1999, Antonio Navarro Navarro wrote: Hi all. I have a Linux RedHat 6.1 with Radiator (latest version) + users and accounting in a MySQL Server. The configuration file of radiator follows (realm DEFAULT section only): Realm DEFAULT

(RADIATOR) RADIUS and PAM for ftp-autehntication under Linux

1999-11-11 Thread Peter Markom
I tryt to make my Linux-box authenticate all ftp-users via RADIUS, usinf proftpd and PAM. Does anybody have experience with this ? Especially I'm looking for information about how to pass uid and home-directory back to linux / proftpd, but any other hints would also be apreciated (including

(RADIATOR) how to assign static IP addresses

1999-11-11 Thread Admin
Having never used a RADIUS server before, I'm pleased to have found Radiator so easy to get up and running. I'm hoping one of you can help me with a simple query. We have a Bay Networks Versalar RAC 8000 which currently uses Bay's proprietary ACP protocol to communicate with an NT Server.

Re: (RADIATOR) problem with Simultaneous-Use

1999-11-11 Thread David Lloyd
On Thu, 11 Nov 1999, Antonio Navarro Navarro wrote: I have modified the radiator.cfg file, adding DefaultSimultaneousUse 1 and removing MaxSessions, and in the REPLUATTR I have added Simultaneous-Use=1, burt the user still can connect using Multilink PPP. You need to add it as a check item, not

(RADIATOR) Authenticating off of Platypus

1999-11-11 Thread Todd Knaus
Dear Fellow Radiator Users, We are in the process of moving/reinstalling Radiator from Windows NT back to a Unix box (RedHat 6.1 to be exact). However, we want to keep authenticating off of our Platypus Database on the NT server. There was some talk awhile back as well as a few web pages that

Re: (RADIATOR) how to assign static IP addresses

1999-11-11 Thread David Lloyd
On Fri, 12 Nov 1999, Admin wrote: ... From my reading of the reference manual, I need to AuthBy FILE, but I can't get my head around exactly how to do this when I -also- want the passwords to remain in NT (AuthBy NT). Can someone help by showing me the minimum change required to my nt.cfg (see

Re: (RADIATOR) Auth By NT help !

1999-11-11 Thread Jovanny Saravia
On Thu, 11 Nov 1999, Hugh Irvine wrote: You can download a new version of AuthNT.pm from here: http://www.open.com.au/radiator/downloads/patches-2.14.1/ I did Hugh, I downloaded the patch As to your other problems with authentication, this may be due to you trying to use CHAP

Re: (RADIATOR) problem with Simultaneous-Use

1999-11-11 Thread Antonio Navarro Navarro
At 08.47 11/11/99 -0600, David Lloyd wrote: I have modified the radiator.cfg file, adding DefaultSimultaneousUse 1 and removing MaxSessions, and in the REPLYATTR I have added Simultaneous-Use=1, but the user still can connect using Multilink PPP. You need to add it as a check item, not a reply

Re: (RADIATOR) problem with Simultaneous-Use

1999-11-11 Thread Kai Schlichting
At 04:40 PM 11/11/99 +0100, Antonio Navarro Navarro wrote: At 08.47 11/11/99 -0600, David Lloyd wrote: I have modified the radiator.cfg file, adding DefaultSimultaneousUse 1 and removing MaxSessions, and in the REPLYATTR I have added Simultaneous-Use=1, but the user still can connect using

(RADIATOR) Quick easy question....

1999-11-11 Thread Kelly Hamlin
We imported our database of users and info from a VFP database into platypus and all is great except for the fact all usersnames and passwords are listed UPPERCASe and i need a simple SQL query where i can change username and password to all lower case, then i will have everything running

Re: (RADIATOR) Radiusd

1999-11-11 Thread Mike McCauley
Hello Kelly, On Nov 11, 2:58pm, Kelly Hamlin wrote: Subject: (RADIATOR) Radiusd Without specifing a port in the config file what is the default port in which the nas would point to for authenication and for accounting? i think it is 1645 and 1646. A quick reply would be great thanks

Re: (RADIATOR) Authenticating off of Platypus

1999-11-11 Thread Mike McCauley
Hi Todd, On Nov 11, 9:39am, Todd Knaus wrote: Subject: (RADIATOR) Authenticating off of Platypus Dear Fellow Radiator Users, We are in the process of moving/reinstalling Radiator from Windows NT back to a Unix box (RedHat 6.1 to be exact). However, we want to keep authenticating off of

Re: (RADIATOR) logging incoming requests

1999-11-11 Thread Stuart Henderson
Is there any way we can configure Radiator to log an incoming radius request to a flatfile or SQL, say storing username and password (assuming both come thru in cleartext)? PasswordLogFileName passlog.%d%m%Y.txt. === Archive at http://www.thesite.com.au/~radiator/ To unsubscribe, email

Re: (RADIATOR) Authenticating off of Platypus

1999-11-11 Thread tom minchin
On Thu, Nov 11, 1999 at 09:39:55AM -0500, Todd Knaus wrote: Dear Fellow Radiator Users, We are in the process of moving/reinstalling Radiator from Windows NT back to a Unix box (RedHat 6.1 to be exact). However, we want to keep authenticating off of our Platypus Database on the NT server.

Re: (RADIATOR) how to assign static IP addresses

1999-11-11 Thread Admin
Thanks David. Our NAS is now using Radiator and all of the dial-ins are humming along. One thing that I've broken along the way is inbound telnet sessions, which I use from another office to manage the NAS. I assume this is because the default in my nt.cfg specifies that Radiator tells the NAS

Re: (RADIATOR) Auth By NT help !

1999-11-11 Thread Hugh Irvine
Hello Jovanny - On Thu, 11 Nov 1999, Jovanny Saravia wrote: On Thu, 11 Nov 1999, Hugh Irvine wrote: You can download a new version of AuthNT.pm from here: http://www.open.com.au/radiator/downloads/patches-2.14.1/ I did Hugh, I downloaded the patch As to your other

Re: (RADIATOR) Quick easy question....

1999-11-11 Thread John Coy
update table_name set username = lower(username) SVRMGR create table test ( username varchar2(16) ); Statement processed. SVRMGR insert into test values ( 'JOHN' ); 1 row processed. SVRMGR update test set username = lower(username); 1 row processed. SVRMGR select * from test; USERNAME

Re: (RADIATOR) logging incoming requests

1999-11-11 Thread Gary
On Thu, 11 Nov 1999 21:07:12 +, Stuart Henderson wrote: Is there any way we can configure Radiator to log an incoming radius request to a flatfile or SQL, say storing username and password (assuming both come thru in cleartext)? PasswordLogFileName passlog.%d%m%Y.txt. === Is there

Re: (RADIATOR) logging incoming requests

1999-11-11 Thread Hugh Irvine
On Fri, 12 Nov 1999, Gary wrote: On Thu, 11 Nov 1999 21:07:12 +, Stuart Henderson wrote: Is there any way we can configure Radiator to log an incoming radius request to a flatfile or SQL, say storing username and password (assuming both come thru in cleartext)?