cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco 3.2 CIFS + AD Integration

heraclesbzh
Champ in-the-making
Champ in-the-making
Hi there,

I'm trying to log by CIFS with my users synchronized in my alfresco with an active directory but the only one username I can use is the "admin" default account ( the only one that was created in Alfresco without AD )

Any hint ?
3 REPLIES 3

dward
Champ on-the-rise
Champ on-the-rise
To support CIFS authentication via AD, you will need the passthru subsystem.

So assuming your authentication chain looks like this:

authentication.chain=alfrescoNtlm1:alfrescoNtlm,passthru1Smiley Tongueassthru,ldap1:ldap-ad

I recommend the following settings

ntlm.authentication.sso.enabled=false # Force alfrescoNtlm and passthru to use log in dialog
alfresco.authentication.authenticateCIFS=false # Force use of passthru subsystem for CIFS
ldap.authentication.active=false # Switch off authentication side of ldap-ad subsystem

heraclesbzh
Champ in-the-making
Champ in-the-making
Thank's for reply but I found this configuration that works now :

authentication.chain=passthru1Smiley Tongueassthru,alfrescoNtlm1:alfrescoNtlm
ntlm.authentication.sso.enabled=true
passthru.authentication.authenticateCIFS=true

from : http://toutpeutarriver.wordpress.com/2009/09/02/alfresco-community-3-2-sur-ubuntu-server-9-04-ntlm-p...

I'll test your configuration on next server, this one is already launched 😕

dward
Champ on-the-rise
Champ on-the-rise
With that configuration, none of the Alfresco users such as admin will be able to log on to Alfresco Explorer (or use CIFS). Only password-based login is chained. So you may as well have left alfrescoNtlm out of the chain.

You need to understand that both alfresco and passthru are capable of authenticating CIFS. But only one of them can authenticate CIFS at a time. And that is the first one in the chain with CIFS authentication enabled.