Displaying 4 results from an estimated 4 matches for "fallback_machine".
2019 Apr 06
2
"00002020: Operation unavailable without authentication" using python-ldap
Hello,
I'm writing in regards to this issue I opened on GitHub:
https://github.com/python-ldap/python-ldap/issues/275
I am able to successfully use ldapsearch to query my Samba 4.9.4-Debian DC:
ldapsearch -LLL -Y GSSAPI -H ldap://samba-dc.ad.example.com -b
"dc=ad,dc=example,dc=com" "(objectClass=user)" "sAMAccountName"
However, when I try to use python-ldap I
2019 Apr 06
0
"00002020: Operation unavailable without authentication" using python-ldap
...ions.SambaOptions,
"credopts": options.CredentialsOptions,
"versionopts": options.VersionOptions,
}
def run(self, sambaopts=None, credopts=None, versionopts=None, H=None):
lp = sambaopts.get_loadparm()
creds = credopts.get_credentials(lp, fallback_machine=True)
samdb = SamDB(url=H, session_info=system_session(),
credentials=creds, lp=lp)
domain_dn = samdb.domain_dn()
res = samdb.search(domain_dn, scope=ldb.SCOPE_SUBTREE,
expression=("(&(objectClass=user)(userAccountC...
2024 Jul 10
0
DomainDnsZones and ForestDnsZones problem transfer
...ainDnsZones and ForestDnzZones roles in samba 4.20.2, I went to the
samba source code in the fsmo.py file and started studying the code snippet
in the Transfer_dns_role() function
if master_dns_name != new_dns_name:
lp = sambaopts.get_loadparm()
creds = credopts.get_credentials(lp, Fallback_machine=True)
samdb = SamDB(url="ldap://%s" % (master_dns_name),
session_info=system_session(),
credentials=credits, lp=lp)
and then I discovered a problem in the line SamDB(url="ldap://%s" %
(master_dns_name)
you must use new_dns_name...
2019 Apr 07
2
"00002020: Operation unavailable without authentication" using python-ldap
...uot;credopts": options.CredentialsOptions,
> "versionopts": options.VersionOptions,
> }
>
> def run(self, sambaopts=None, credopts=None, versionopts=None, H=None):
> lp = sambaopts.get_loadparm()
> creds = credopts.get_credentials(lp, fallback_machine=True)
>
> samdb = SamDB(url=H, session_info=system_session(),
> credentials=creds, lp=lp)
>
> domain_dn = samdb.domain_dn()
> res = samdb.search(domain_dn, scope=ldb.SCOPE_SUBTREE,
>
> expression=("(&(objectClass=user)(...