diff --git a/docs/includes/entra-id-tutorial.md b/docs/includes/entra-id-tutorial.md index bcb8ad66c30..16b7ce63015 100644 --- a/docs/includes/entra-id-tutorial.md +++ b/docs/includes/entra-id-tutorial.md @@ -45,7 +45,18 @@ In this tutorial, you learn how to: > [!WARNING] > Connections authenticated by Microsoft Entra ID are always encrypted. If SQL Server is using a self-signed certificate, you must add `trust server cert = true` in the connection string. SQL Server and Windows authenticated connections don't require encryption, but it is strongly recommended. - +> +> SQL Server will connect directly to Entra ID for authentication. Either [explicit firewall urls](https://learn.microsoft.com/en-us/sql/sql-server/azure-arc/prerequisites?view=sql-server-ver16&tabs=azure#network-requirements-for-enabling-entra-id-authentication) need to be opened for direct access, or utilize a proxy server. Entra ID does not use the Arc Connected Machine Agent proxy for authentication. If the machine requires using a proxy server, Entra ID requires that the machine-level WinHTTP proxy be set using the commands: +> ```cmd +> netsh winhttp set proxy proxy-server="http://proxyserver:port" +> ``` +> Entra ID authentication does not utililze the Arc agent proxy setting. +> The Arc Agent proxy may be set using the commands: +> +> ```cmd +> azcmagent config set proxy.url "http://proxyserver:port" +> ``` +> ## Create and register a Microsoft Entra application