How to crypt password in database
Hi I have problem with password encryption in mysql database: ----------------------------- *If i have in database: 1 test@realm User-Password := test I get Access Accept. ----------------------------- ----------------------------- *When i have: 2 test1@realm Crypt-Password := test123 Then i get: [mschapv2] +- entering group MS-CHAP {...} [mschap] No Cleartext-Password configured. Cannot create LM-Password. [mschap] No Cleartext-Password configured. Cannot create NT-Password. [mschap] Told to do MS-CHAPv2 for test1@realm with NT-Password [mschap] FAILED: No NT/LM-Password. Cannot perform authentication. [mschap] FAILED: MS-CHAP2-Response is incorrect ++[mschap] returns reject ----------------------------- ----------------------------- in my sql.conf i have: # Read driver-specific configuration $INCLUDE sql/${database}/dialup.conf password_header = "{CRYPT}" auto_header = yes password_attribute = userPassword ----------------------------- Please help me with those crypted passwords. Best regards
Hi,
Hi
I have problem with password encryption in mysql database: ----------------------------- *If i have in database:
1 test@realm User-Password := test
I get Access Accept. -----------------------------
----------------------------- *When i have: 2 test1@realm Crypt-Password := test123
Cleartext-Password := {crypt}test123 ?? let the PAP module do the work for you. (test123 isnt looking like valid crypt of course.... ;-) ) alan
Paweł Pogorzelski wrote:
*When i have: 2 test1@realm Crypt-Password := test123
Then i get:
[mschapv2] +- entering group MS-CHAP {...} [mschap] No Cleartext-Password configured. Cannot create LM-Password. [mschap] No Cleartext-Password configured. Cannot create NT-Password. [mschap] Told to do MS-CHAPv2 for test1@realm with NT-Password [mschap] FAILED: No NT/LM-Password. Cannot perform authentication.
http://deployingradius.com/documents/protocols/compatibility.html
Please help me with those crypted passwords.
It's impossible. Alan DeKok.
participants (3)
-
Alan Buxey -
Alan DeKok -
Paweł Pogorzelski