help-gnu-radius
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-gnu-radius] Received invalid reply digest from server


From: Sergey Poznyakoff
Subject: Re: [Help-gnu-radius] Received invalid reply digest from server
Date: Mon, 18 Feb 2002 11:28:04 +0200

> Can anyone explain what does this string mean:
> radtest: warning: Received invalid reply digest from server

It means that the digest the server sealed its reply with, does not
match the one computed by the client. Usually this indicates that
the client and server are using different shared keys. To check
this, examine your raddb/clients on the server and raddb/client.conf
on the client machine. Both should contain the same value for the
shared key.

> And what is the minimal setup (tables, values) of radius database should I
> perform to test radius authentication? I'm afraid I missing something

Change to the subdirectory db in the distribution and run

       make pgsql.struct

This will produce file `pgsql.struct', describing the default
authentication and accounting tables. You will need to make
following changes to this file: replace line
 active              enum ('Y','N')
with
 active char default 'Y' not null
and line
 op                  enum('=','!=','<','>','<=','>=') default NULL
with
 op character(2) default NULL

Then, feed this file as an input to psql -d <DATABASE_NAME> to create
the tables.

Regards,
Sergey



reply via email to

[Prev in Thread] Current Thread [Next in Thread]