Bonjour,
J’ai un intranet, et mes utilisateurs doivent pouvoir se loguer avec leur session windows.
J’ai donc installé le module apache libapache2-authenntlm-perl
En redemarrant apache ect…
J’ai mis dans mon Htacess les paramètres pour autoriser la connexion NTLM mon domaine qui valide les connexions est dombs1.pri
Mais je rencontre un message d’erreur quand j’ouvre mon navigateur :
[Wed Mar 12 10:32:11 2014] [error] Bad/Missing NTLM/Basic Authorization Header for /
[Wed Mar 12 10:32:11 2014] [error] No PDC and no fallbackdomain given for domain dombs1.pri
[Wed Mar 12 10:32:11 2014] [error] Cannot get nonce
[Wed Mar 12 10:32:11 2014] [crit] [client 172.16.50.2] configuration error: couldn't check user. Check your authn provider!: /
[code]# Enable the Authentication module
PerlAuthenHandler Apache2::AuthenNTLM
Do NTLM and basic authentication
AuthType ntlm,basic
The name that should be displayed in the Auth box, if NTLM fails
AuthName “Fondation Bon sauveur”
Ask for a valid user.
require valid-user
domain pdc bdc
Domain : Your windows domain
pdc : Primary Domain Controller
bdc : Backup Domain controller.
Note : Multiple domains can be specified.
PerlAddVar ntdomain “dombs1.pri”
What should be the default domain
PerlSetVar defaultdomain dombs1.pri
The user names are in the form “dombs1.pri\user_name”. Let us split it.
PerlSetVar splitdomainprefix 1
Set the debug variables
PerlSetVar ntlmauthoritative off
PerlSetVar ntlmdebug 2[/code]
Avez vous une idée pour m’aider ?