Displaying 9 results from an estimated 9 matches for "uidnum".
Did you mean:
cidnum
2005 May 31
0
Access denied error when trying to join XP to Samba Domain
..."dc=dcscorp,dc=net"." '(objectClass=idPool)'";
$filter = "filter nextUid";
$search = `$LDAPSEARCH -LLL -x -b $searchbase $filter | grep nextUid |
cut -d ':' -f2`;
chomp ($search);
UpdateIDPool ($search);
return $search;
}
sub UpdateIDPool
{
my ($uidnum) = @_;
$uidnum++;
my $entry = "dn: cn=Pool,dc=dcscorp,dc=net
replace: nextUid
nextUid: $uidnum";
open (FH, '>', 'updateidpool.ldif');
print FH $entry;
my $cmd = `$LDAPMODIFY -D $ADMINDN -w $ADMINPASS -x -f
updateidpool.ldif`;
}
sub GetShadowLast ()
{
my (...
2015 Jul 20
3
Doubt about Unix Attributes
I can configure UidNumer and gidNumber attributes by Microsoft RSAT tool
and the value is stored. When I click again on the tab "Unix Attributes"
appears a message saying "Not is possible the execution". I click OK button
and the attribute is correct.
Why appear this message?
How can I verify if t...
2010 Nov 09
1
Help! LDAP/AD Problem with dovecot
...setup, which
needs to be transferred to dovecot.
dovecot-ldap-userdb.conf
uris = ldap://192.168.0.42
auth_bind = yes
dn = myldapuser at mydomain
dnpass = mypass
#ldap_version = 3
base = DC=base,DC=com
deref = never
scope = subtree
user_attrs = sAMAccountName=mail=maildir:/home/vmail/%$/.EMAIL,
=uidNumer=5000, =gidNumber=5000
user_filter =
(&(objectClass=user)(|(sAMAccountName=%u)(mail=%u)(othermailbox=%u)))
pass_attrs = sAMAaccountName=user,userPassword=password
pass_filter = (&(objectClass=person)(sAMAaccountName=%u))
My errors are:
- While logging in with IMAP
2010-11-10 00:32:30...
2016 Nov 22
1
Winbind traffic not encrypted
On Tue, 22 Nov 2016 15:19:34 +0000
Brian Candler via samba <samba at lists.samba.org> wrote:
> On 21/11/2016 17:21, Brian Candler wrote:
> > I'd quite like to be able to fetch a ticket using the keytab
>
> I found a solution to that part by using a different form of
> principal name with "hostname$"
>
> root at client-ad:~# kinit -k -t
2007 Sep 21
0
Re: idmap backend questions
...S = 0xc0000001
ps: I have configured samba with these options included
(--with-shared-modules=idmap_ad --with-ads) and have installed
"Identity management for Unix" on the AD server. I have given a user
a uid & gid in AD.
If I do an strace of the winbind proces, I can see both the uidNumer
and gidNumber, both samba does not pick it up.
uidNumber1\204\0\0\0\7\4\005100000\204\0\0\0\30\4\tgidNumber1\204\0\0\0\7\4\005100000\204\0\0\0%\4\2
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
2007 Sep 21
0
idmap backend questions
...S = 0xc0000001
ps: I have configured samba with these options included
(--with-shared-modules=idmap_ad --with-ads) and have installed
"Identity management for Unix" on the AD server. I have given a user
a uid & gid in AD.
If I do an strace of the winbind proces, I can see both the uidNumer
and gidNumber, both samba does not pick it up.
uidNumber1\204\0\0\0\7\4\005100000\204\0\0\0\30\4\tgidNumber1\204\0\0\0\7\4\005100000\204\0\0\0%\4\2
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
2023 Jun 23
1
[EXTERNAL] Re: Unable to authenticate to share using UPN
...rovided Samba packages (4.10.16-24.el7_9). It is joined to an Active Directory domain and acting as a member server. The active Directory domain has a user object with among others, the following attributes defined
sAMAccountName = m12345678
gecos = Zach Detest
gidNumer = 12345678
uid = zach_detest
uidNumer = 12345678
unixHomeDirectory = /home/m12345678
userPrincipalName = zach_destest at domain.tld
The smb.conf on the server looks like this:
[global]
additional dns hostnames = dct-hanas-2.domain.tld
debug class = Yes
debug pid = Yes
debug uid = Yes
disable...
2005 Oct 26
2
Problems setting up Samba+LDAP PDC in Debian Sarge
...In fact, the 'root' account is needed in the first place so that the
SeXXX privileges can be set.>>
The smbldap-tools didn't setup any root/uid=0 account in LDAP:
dellj81:/# slapcat | grep -i ^uid:
uid: Administrator
uid: nobody
uid: admin
uid: chema
dellj81:/# slapcat | grep -i uidnum
uidNumber: 1004
uidNumber: 998
uidNumber: 999
uidNumber: 1002
uidNumber: 1003
So maybee that's what I'm missing, or should a standard (/etc/passwd)
root suffice?
2. net getlocalsid
Anyway, after fiddling around looking for clues, I found that I no
longer can get my local sid:
[2005/10/2...
2020 Nov 03
6
Get last uidNumber
Hello,
is there a way to get the last uidNumber from ldap.
I can do a ldapsearch like:
ldapsearch -h samdom.example.com -D "administrator at samdom.example.com"
-w "changeit" -b "DC=samdom,DC=example,DC=com" -x -LLL "(uidNumber=*)"
uidNumber | grep -Po "(?<=uidNumber: )([0-9]{4})" | so...