What changes i have to make to my smb.conf file in below in order all "domain1" users can map "dir1" on solaris box from their windows PCs. Meaning all authentications take place on NT domain1 server not on solaris box. S # cat smb.conf [global] workgroup = domain1 hosts allow = 10.1. browsable = yes ; wins server ; wins proxy = no ; preferred master = yes ; domain master = yes ; domain logons = yes log file = /usr/local/samba/var/log.%m max log size = 50 security = user ; security = share encrypt passwords = yes smb passwd file = /usr/local/samba/smbpasswd socket options = TCP_NODELAY guest account = nobody dns proxy = yes [dir1] comment = myid1 image area path=/home/myid1 valid user = myid1 public=no writable = yes printable=no create mask=0777 _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
> What changes i have to make to my smb.conf file in below in order > all "domain1" users can map "dir1" on solaris box from their windows PCs. > Meaning all authentications take place on NT domain1 server > not on solaris box.To authenticate from the NT PDC, set "security = domain" and set "password server = <your domain server>" You will still need to have matching Unix user accounts for all the NT accounts, or use a "username map =" parameter if the Unix names differ from the NT names. Good luck, Arnold Andrews