You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -51,7 +51,7 @@ Before following the steps in this article, make sure you have the following pre
51
51
* The Azure Machine Learning Python SDK v2. For more information on the SDK, see [Install the Python SDK v2 for Azure Machine Learning](/python/api/overview/azure/ai-ml-readme).
52
52
53
53
> [!TIP]
54
-
> Azure Machine learning managed virtual network was introduced on May 23rd, 2023. If you have an older version of the SDK installed, you might need to update it for the examples in this article to work. To update the SDK, use the following command:
54
+
> Azure Machine Learning managed virtual network was introduced on May 23rd, 2023. If you have an older version of the SDK installed, you might need to update it for the examples in this article to work. To update the SDK, use the following command:
@@ -164,7 +164,15 @@ You can't create a compute cluster or compute instance from the Azure portal. In
164
164
## Limitations
165
165
166
166
* Creating a compute cluster in a different region than the workspace isn't supported when using a managed virtual network.
167
-
* If the compute is in a managed network and also configured for no public IP, use the `az ml compute connect-ssh` command to connect to the compute instance over SSH.
167
+
* If the compute is in a private network and also configured for no public IP, use the `az ml compute connect-ssh` command to connect to the compute instance over SSH.
168
+
169
+
By default, SSH access is routed over the public IP. To ensure that it uses the private connection, use the following steps:
170
+
171
+
1. Create a [private endpoint for the workspace](how-to-configure-private-link.md).
172
+
1. Create a private DNS zone for `instances.azureml.ms`.
173
+
1. Create a DNS record set for the compute, such as `<compute-instance-name>-22.<region-of-workspace>.instances.azureml.ms`.
174
+
175
+
For more information, see [Use a custom DNS server](how-to-custom-dns.md).
0 commit comments