Displaying 1 result from an estimated 1 matches for "new_dns_name".
Did you mean:
  new_dir_name
  
2024 Jul 10
0
DomainDnsZones and ForestDnsZones problem transfer
while transferring fsmo roles I encountered a problem transferring the
DomainDnsZones 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 discovere...