search for: smb_name

Displaying 7 results from an estimated 7 matches for "smb_name".

Did you mean: smb_fname
2003 Dec 08
1
NT User ID with apostrophe
I have a few users who have ID's in NT domain and AD that contain apostrophes, such as O'Neill (fo'neill) , and O'Toole (go'toole). I've been trying to give them access to shares, but Samba doesn't seem to like this very much. I've been able to set up the ID's in our LDAP server so file ownership works, but according to the log messages, Samba DOMAIN
2002 Nov 21
1
%U in include
...egards Luf P.S. I attach patch here -------------- next part -------------- --- source/smbd/password.c 2002-11-13 00:20:49.000000000 +0100 +++ source/smbd/password.c.new 2002-11-21 19:02:54.000000000 +0100 @@ -101,6 +101,7 @@ int register_vuid(auth_serversupplied_info *server_info, const char *smb_name) { + extern userdom_struct current_user_info; user_struct *vuser = NULL; /* Ensure no vuid gets registered in share level security. */ @@ -194,6 +195,15 @@ DEBUG(3,("UNIX uid %d is UNIX user %s, and will be vuid %u\n",(int)vuser->uid,vuser->user.unix_name, vuser->vuid)...
2005 May 09
1
A few questions
1. There is no Domain Users group on my Samba 3.0.6 server. Does this group need to be manually created? 2. In my smbpasswd file: # Unix_name = SMB_name1 SMB_name root = Administrator nobody = guest pcguest smbguest I can not join a domain using administrator. I must use root. What did I do wrong? 3. Since there is no Domain Users group. I have been adding each user to the admin group on the local PC. When they are added the security identifie...
2003 Mar 07
3
cups printing and user names from trusted domains
-----BEGIN PGP SIGNED MESSAGE----- Im currently running some tests for a samba/CUPS based print server. The print server is a member of an NT domain and uses winbind to import NT domain users. Users accessing the print server will be not from the same domain but from trusted domains. Everything basically seems to work, once you use sufficiently new versions of cups and samba. (I'm on Debian
2004 Mar 02
0
Re: winbind and unix/nt login match use unix uid - resolved
...quot;aludeman = Lex". I get the following > message. > [2004/02/27 09:24:43, 2] auth/auth.c:check_ntlm_password(305) > check_ntlm_password: authentication for user > [Lex] -> [aludeman] -> [DOMAIN+aludeman] succeeded > > in the source code is: > user_info->smb_name.str, user_info->internal_username.str, unix_username > > So the behavior that I'm seeing is that it's always taking the NT > domain precedence over the local passwd. When DOMAIN+aludeman does > not exist then things behave like I would like them where HOMEGAIN+Lex > maps...
2004 Feb 26
2
winbind and unix/nt login match use unix uid
Hi, I'm on solaris 9, and using winbind to be a part of our NT domain. I'm trying to determine if it's possible to configure winbind/smb so that when the nt login name matches the unix login name the share is mounted using their unix uid. With none matching account names, username map works fine. It doesn't appear that "johnsmith = johnsmith" works in the username map
2003 Dec 01
0
No subject
...if ((group_attrs = (uint32 *)talloc(p->mem_ctx, num_rids * sizeof(uint32))) == NULL) + if ((group_attrs = (uint32 *)talloc_zero(p->mem_ctx, num_rids * sizeof(uint32))) == NULL) return NT_STATUS_NO_MEMORY; } @@ -1476,6 +1488,7 @@ DEBUG(3,("User:[%s]\n", smb_pass->smb_name)); + ZERO_STRUCTP(id10); init_sam_user_info10(id10, smb_pass->acct_ctrl); return True; @@ -1513,6 +1526,7 @@ if (smb_pass->acct_ctrl & ACB_DISABLED) return NT_STATUS_ACCOUNT_DISABLED; + ZERO_STRUCTP(id12); init_sam_user_info12(id12, smb_pass->smb_passwd, sm...