config ODBC from unix radius

French, ken ( frenchkc@gru.net )
Thu, 27 Feb 1997 11:25:06 -0500

I have RadiusNT running as a service from NT4.0.
It is doing accounting only, but is working.
I want to implement authentication.

Converting from Ascend's Radius under Unix to RadiusNT

In the SERVERS table, I only used the columns/fields

Server
IPAddress
Secret

? I assume I don't have to use any other columns/fields ?
It is working, but will it keep working?

ServerID int IDENTITY(1,1) CONSTRAINT pk_ServerID PRIMARY KEY ,
Server varchar (25) NOT NULL ,
IPAddress varchar (16) NOT NULL ,
Location varchar (15) NOT NULL ,
Ports tinyint NOT NULL ,
Modems tinyint NOT NULL ,
PhoneNumber varchar (12) NOT NULL ,
ContactName varchar (25) NULL ,
ContactPhone varchar (12) NULL ,
ContactPage varchar (12) NULL ,
Comments text NULL ,
DynamicStart varchar (16) NULL ,
DynamicEnd varchar (16) NULL ,
Secret varchar (16) NULL DEFAULT NULL

USERS file for each account has
==========================================
joesmith Password = "secret"
Framed-Protocol = PPP,
Ascend-Assign-IP-Pool = 1,
Ascend-Idle-Limit=9000

==========================================

USERS file also has
==========================================
pools-MAX Password="ascend", User-Service = Dialout-Framed-User
Ascend-IP-Pool-Definition = "1 1.1.1.2 72"
==========================================
This defines ip pool for Ascend to allocate from.
It corresponds to Ascend-Assign-IP-Pool =1

To create a pool on Ascend MAX 4004, I can use;
Ethernet, Mod Config, WAN Options,
Pool#1 Start: 1.1.1.2
Pool#1 Count: 72

In the SubAccounts table, I can insert a row with
Login = joesmith
Password = secret
AccountType = PPP

? How/where do I configure for each user to use POOL # 1?
? Are any other columns/fields required specifically for users?