Share folder with active directory group permissions
        Posted  
        
            by 
                Hihui
            
        on Server Fault
        
        See other posts from Server Fault
        
            or by Hihui
        
        
        
        Published on 2013-10-25T08:02:52Z
        Indexed on 
            2013/10/25
            9:58 UTC
        
        
        Read the original article
        Hit count: 263
        
I have a Debian as a member of our AD (which is a 2k3).
I want to share 2 folders from our Debian. 1 with full access for everyone, the second only readable by group "ADM", and "PROD".
Part of smb.conf:
[global]
workgroup = MYDOMAIN
realm = MYDOMAIN.LOCAL
netbios name = SERV-FTP
wins server = "IP serv 2k3"
security = domain
[JUKEBOX] // full access
path = /media/JUKEBOX/JUKEBOX
comment = sharing
writable = yes
browsable = yes
public = yes
read only = no
valid users = @ASYLUM\prod_std
admin users = @ASYLUM\ADM
[SOFTWARE]
comment = Software
path = /media/JUKEBOX/SOFTWARE
valid users = @ASYLUM\prod_adv, @ASYLUM\ADM
writable = yes
read only = no
My log :
[2013/10/25 09:24:37.316643, 0] smbd/service.c:1055(make_connection_snum) canonicalize_connect_path failed for service SOFTWARE, path /media/JUKEBOX/SOFTWARE
And, from my Windows's client, if i want to access on that folder : Windows can't access to \serv-ftp\software
Where is the problem ... ?
Thx !
© Server Fault or respective owner