search for: get_global_sam_nam

Displaying 10 results from an estimated 10 matches for "get_global_sam_nam".

Did you mean: get_global_sam_name
2018 Oct 12
2
backup of tdb files
...ld see JSON working well for this also.  Perhaps extend either > > > samba-tool or net to print out the domain SID, local SID, domain > > > member password and hostname? > > Sounds promising. I’ll look into that. Right now I am using values obtained as follows: - hostname: get_global_sam_name() - local SID: secrets_fetch_domain_sid (get_global_sam_name(), …) == SECRETS/SID/CLIENTNAME in tdb - domain SID: secrets_fetch_domain_sid (lp_workgroup(), …) == SECRETS/SID/WORKGROUPNAME - domain member password: secrets_fetch_machine_password(lp_workgroup(), …) == SECRETS/MACHINE...
2018 Oct 15
2
backup of tdb files
...ba-tool or net to print out the domain SID, local SID, domain > > > > > member password and hostname? > > > > > > > > Sounds promising. I’ll look into that. > > > > Right now I am using values obtained as follows: > > > > - hostname: get_global_sam_name() > > > > - local SID: > > secrets_fetch_domain_sid (get_global_sam_name(), …) > > == SECRETS/SID/CLIENTNAME in tdb > > > > - domain SID: > > secrets_fetch_domain_sid (lp_workgroup(), …) > > == SECRETS/SID/WORKGROUPNAME > > > &gt...
2018 Oct 12
0
backup of tdb files
...tend either > > > > samba-tool or net to print out the domain SID, local SID, domain > > > > member password and hostname? > > > > > > Sounds promising. I’ll look into that. > > Right now I am using values obtained as follows: > > - hostname: get_global_sam_name() > > - local SID: > secrets_fetch_domain_sid (get_global_sam_name(), …) > == SECRETS/SID/CLIENTNAME in tdb > > - domain SID: > secrets_fetch_domain_sid (lp_workgroup(), …) > == SECRETS/SID/WORKGROUPNAME > > - domain member password: > secrets_fetch_m...
2018 Oct 15
0
backup of tdb files
...ain SID, local SID, domain > > > > > > member password and hostname? > > > > > > > > > > Sounds promising. I’ll look into that. > > > > > > Right now I am using values obtained as follows: > > > > > > - hostname: get_global_sam_name() > > > > > > - local SID: > > > secrets_fetch_domain_sid (get_global_sam_name(), …) > > > == SECRETS/SID/CLIENTNAME in tdb > > > > > > - domain SID: > > > secrets_fetch_domain_sid (lp_workgroup(), …) > > > == SECRE...
2018 Oct 18
1
backup of tdb files
...; > > > > > member password and hostname? > > > > > > > > > > > > Sounds promising. I’ll look into that. > > > > > > > > Right now I am using values obtained as follows: > > > > > > > > - hostname: get_global_sam_name() > > > > > > > > - local SID: > > > > secrets_fetch_domain_sid (get_global_sam_name(), …) > > > > == SECRETS/SID/CLIENTNAME in tdb > > > > > > > > - domain SID: > > > > secrets_fetch_domain_sid (lp_workgr...
2018 Sep 24
2
backup of tdb files
Hi Andrew, thanks for addressing all my points. This is rather helpful. -<| Quoting Andrew Bartlett <abartlet at samba.org>, on Friday, 2018-09-21 08:23:26 AM |>- > On Fri, 2018-09-21 at 11:29 +0200, Philipp Gesang via samba wrote: > > how would I go about dumping tdb files in a “neutral” format, > > preferably JSON? > > > > The goal is to have a domain
2007 May 10
1
sambaDomainName=HOST i.s.o. ...=DOMAIN
Hello, I'm trying to setup a standalone samba server named "alta" in a workgroup named "TDOM". So I put workgroup = TDOM in the 'smb.conf' file. The netbios name of the machine defaults to 'ALTA' so no netbios name paramater is needed (I assume). I've put the user and group accounts in an ldapsam backend and I also created a
2008 Sep 21
1
[SOLVED] Howto auth against an NT domain I don't control?
After many more hours of searching, I found someone else in the exact same situation as me. But even better, he figured it out and posted a patch! http://lists.samba.org/archive/samba-technical/2008-February/057829.html Thank you Claude! -- http://theamigo.blogspot.com
2006 Aug 10
6
3.0.20 -> 3.0.23 SID/group error?? Won't connect.
Gerry, all: HELP! On mandriva, I compiled samba from source and got it running, but I cannot connect from windows. (see my post from earlier "[Samba] Compiling and Configuring Samba for Mandrival") I think this relates to the group/SID changes discussed in the release notes. However, I'm not smart enough to figure it out. The tarball compiled and installed fine. It
2003 Sep 27
0
Samba 3(PDC) + winbind, anyone has it working ?
...ed long)state->pid, state->request.data.username)); /* Parse domain and username */ parse_domain_user(state->request.data.username, name_domain, name_user); /* if this is our local domain (or no domain), the do a local tdb search */ if ( !*name_domain || strequal(name_domain, get_global_sam_name()) ) { if ( !(pw = wb_getpwnam(name_user)) ) { DEBUG(5,("winbindd_getpwnam: lookup for %s\\%s failed\n", name_domain, name_user)); return WINBINDD_ERROR; } memcpy( &state->response.data.pw, pw, sizeof(WINBINDD_PW) ); return WINBINDD_OK; } /* should we deal wit...