Hi @Susan Dodds,
Welcome to the Microsoft Q&A platform!
It sounds like you are dealing with a complex issue involving your Exchange 2019 servers and DNS configurations. Here are a few steps you can take to troubleshoot and resolve the issue:
- Ensure that the DNS records for autodiscover and the mail domain are correctly pointing to Box B. Check both internal and external DNS settings.
- Verify the internal and external URLs configured for the Exchange services on Box B. You can do this using the following PowerShell commands on Box B:
Ensure that the URLs are correctly set to the new Box B server's address.Get-ExchangeServer | fl AutoDiscoverServiceInternalUri Get-WebServicesVirtualDirectory | fl InternalUrl,ExternalUrl Get-OwaVirtualDirectory | fl InternalUrl,ExternalUrl Get-EcpVirtualDirectory | fl InternalUrl,ExternalUrl
- Check the health of relevant services on Box B. Ensure that all necessary Exchange services are running:
Get-Service | Where-Object {$_.DisplayName -like "*exchange*"} | Select-Object DisplayName, Status
- Ensure that the SSL certificates are properly configured on Box B. If the certificates are not correctly installed, the ECP might fail to load.
- Verify the Outlook Anywhere settings and ensure they are set correctly for Box B:
Get-OutlookAnywhere | fl ExternalHostname, InternalHostname
- Reset the ECP virtual directory on Box B if necessary. Sometimes, resetting the virtual directory can resolve issues with accessibility:
Remove-EcpVirtualDirectory -Identity "ServerName\ecp (Default Web Site)" New-EcpVirtualDirectory -Server "ServerName"
- If you have a DAG setup or any form of mailbox replication, ensure that the databases are properly mounted and replicated on Box B.
- Use the Exchange Remote Connectivity Analyzer (https://testconnectivity.microsoft.com/) to test the connectivity to Box B. This can help identify any issues with autodiscover or other services.
- Double-check the network configuration and firewall settings to ensure there are no blocks or issues preventing proper communication with Box B.
Taking these steps should help you identify and resolve the issue with accessing the ECP on Box B after changing the DNS records.
Please feel free to contact me if you have any queries.
Best,
Jake Zhang