Additional Microsoft Entra services and features related to identity, access, and network security
Based on the errors you’re seeing, this looks less like an agent bug and more like outbound connectivity + certificate trust issues, with the performance counter error being secondary.
Key points to check:
DNS is very likely the primary issue. The failure to resolve autoupdate.msappproxy.net strongly suggests the server can’t resolve *.msappproxy.net in general. Cloud Sync relies heavily on these endpoints (WebSocket signaling, trust renewal, agent updates). DCs using only root hints often fail here if outbound DNS isn’t cleanly allowed. Quick test: nslookup autoupdate.msappproxy.net and nslookup login.microsoftonline.com from the sync server.
Firewall must allow URLs, not just “internet access”. Cloud Sync uses dynamic endpoints behind *.msappproxy.net and Azure Service Bus over TCP 443, plus port 80 for CRL checks. IP allow lists are brittle here, DNS name-based rules are the correct approach. Even “no filtering” firewalls sometimes still break WebSocket traffic.
CAPI2 root trust errors matter here. The “terminated in a root certificate which is not trusted” error will break TLS and cause:
- WebSocket failures
- Trust renewal timeouts (
RenewTrustCertificate)-
HybridIdentityServiceAgentTimeoutin the portal
-
- Trust renewal timeouts (
Make sure:
-
ctldl.windowsupdate.comis reachable (Windows root cert updates) - CRL/OCSP endpoints (DigiCert + Microsoft) are reachable on port 80
- No TLS inspection is happening for
*.msappproxy.net(this is explicitly unsupported)