These parameters configure the SQL authentication. The general syntax is:
doauth bool
yes
, enables authentication via SQL. All
auth_
keywords are ignored if doauth
is set to
no
.
auth_max_connections bool
keepopen
is set to
no
.
auth_db string
auth_query string
group_query string
Group
or
Group-Name
attribute appears in the LHS of a user's or hint's
profile. Let's suppose the authentication information is kept in the tables
passwd
and groups
.
The passwd
table contains user passwords. A user is allowed to
have different passwords for different services. The table structure is:
CREATE TABLE passwd ( user_name varchar(32) binary default '' not null, service char(16) default 'Framed-PPP' not null, password char(64) );
Additionally, the table groups
contains information about user
groups a particular user belongs to. Its structure is:
CREATE TABLE groups ( user_name char(32) binary default '' not null, user_group char(32) );
The queries used to retrieve the information from these tables will then look like:
auth_query SELECT password FROM passwd WHERE user_name = '%C{User-Name}' AND service = '%C{Auth-Data}' group_query SELECT user_group FROM groups WHERE user_name = '%C{User-Name}'
It is supposed, that the information about the particular service a user is
wishing to obtain, will be kept in Auth-Data
attribute in LHS of a
user's profile.
Go to the first, previous, next, last section, table of contents.