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
Copy file name to clipboardExpand all lines: articles/virtual-desktop/private-link-overview.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,11 @@ Azure Virtual Desktop has three workflows with three corresponding resource type
21
21
22
22
3.**Connections to host pools**: every connection to a host pool has two sides - clients and session host virtual machines (VMs). To enable connections, you need to create a private endpoint for the *connection* sub-resource for each host pool you want to use with Private Link.
23
23
24
-
The following table summarizes the private endpoints you need to create:
24
+
The following high-level diagram shows how Private Link securely connects a local client to the Azure Virtual Desktop service. For more detailed information about client connections, see [Client connection sequence](#client-connection-sequence).
25
+
26
+
:::image type="content" source="media/private-link-diagram.png" alt-text="A high-level diagram that shows Private Link connecting a local client to the Azure Virtual Desktop service.":::
27
+
28
+
The following table summarizes the private endpoints required:
@@ -31,10 +35,6 @@ The following table summarizes the private endpoints you need to create:
31
35
32
36
You can either share these private endpoints across your network topology or you can isolate your virtual networks so that each has their own private endpoint to the host pool or workspace.
33
37
34
-
The following high-level diagram shows how Private Link securely connects a local client to the Azure Virtual Desktop service. For more detailed information about client connections, see [Client connection sequence](#client-connection-sequence).
35
-
36
-
:::image type="content" source="media/private-link-diagram.png" alt-text="A high-level diagram that shows Private Link connecting a local client to the Azure Virtual Desktop service.":::
37
-
38
38
## Supported scenarios
39
39
40
40
When adding Private Link with Azure Virtual Desktop, you have the following options to connect to Azure Virtual Desktop. Each can be enabled or disabled depending on your requirements.
@@ -85,7 +85,7 @@ When a user connects to Azure Virtual Desktop over Private Link, and Azure Virtu
85
85
86
86
Private Link with Azure Virtual Desktop has the following limitations:
87
87
88
-
- Before you use Private Link for Azure Virtual Desktop, you need to [enable the feature](private-link-setup.md#enable-the-feature) on each Azure subscription you want to Private Link with Azure Virtual Desktop.
88
+
- Before you use Private Link for Azure Virtual Desktop, you need to [enable Private Link with Azure Virtual Desktop](private-link-setup.md#enable-private-link-with-azure-virtual-desktop-on-a-subscription) on each Azure subscription you want to Private Link with Azure Virtual Desktop.
89
89
90
90
- All [Remote Desktop clients to connect to Azure Virtual Desktop](users/remote-desktop-clients-overview.md) can be used with Private Link. If you're using the [Remote Desktop client for Windows](./users/connect-windows.md) on a private network without internet access and you're subscribed to both public and private feeds, you aren't able to access your feed.
91
91
@@ -98,8 +98,6 @@ Private Link with Azure Virtual Desktop has the following limitations:
98
98
99
99
- Early in the preview of Private Link with Azure Virtual Desktop, the private endpoint for the initial feed discovery (for the *global* sub-resource) shared the private DNS zone name of `privatelink.wvd.microsoft.com` with other private endpoints for workspaces and host pools. In this configuration, users are unable to establish private endpoints exclusively for host pools and workspaces. Starting September 1, 2023, sharing the private DNS zone in this configuration will no longer be supported. You need to create a new private endpoint for the *global* sub-resource to use the private DNS zone name of `privatelink-global.wvd.microsoft.com`. For the steps to do this, see [Initial feed discovery](private-link-setup.md#initial-feed-discovery).
100
100
101
-
- Azure PowerShell cmdlets for Azure Virtual Desktop that support Private Link are in preview. You need to download and install the [preview version of the Az.DesktopVirtualization module](https://www.powershellgallery.com/packages/Az.DesktopVirtualization/5.0.0-preview) to use these cmdlets, which have been added in version 5.0.0.
102
-
103
101
## Next steps
104
102
105
103
- Learn how to [Set up Private Link with Azure Virtual Desktop](private-link-setup.md).
Copy file name to clipboardExpand all lines: articles/virtual-desktop/private-link-setup.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,14 +28,14 @@ In order to use Private Link with Azure Virtual Desktop, you need the following
28
28
29
29
- Azure PowerShell cmdlets for Azure Virtual Desktop that support Private Link are in preview. You'll need to download and install the [preview version of the Az.DesktopVirtualization module](https://www.powershellgallery.com/packages/Az.DesktopVirtualization/5.0.0-preview) to use these cmdlets, which have been added in version 5.0.0.
30
30
31
-
## Enable the feature
31
+
## Enable Private Link with Azure Virtual Desktop on a subscription
32
32
33
33
To use Private Link with Azure Virtual Desktop, you need to re-register the *Microsoft.DesktopVirtualization* resource provider on each subscription you want to use Private Link with Azure Virtual Desktop.
34
34
35
35
> [!IMPORTANT]
36
36
> For Azure for US Government and Azure operated by 21Vianet, you also need to register the feature for each subscription.
37
37
38
-
### Register the feature (Azure for US Government and Azure operated by 21Vianet only)
38
+
### Register Private Link with Azure Virtual Desktop (Azure for US Government and Azure operated by 21Vianet only)
39
39
40
40
To register the *Azure Virtual Desktop Private Link* feature:
41
41
@@ -125,7 +125,6 @@ Here's how to create a private endpoint for the *connection* sub-resource for co
125
125
126
126
1. Select **Create** to create the private endpoint for the connection sub-resource.
127
127
128
-
129
128
# [Azure PowerShell](#tab/powershell)
130
129
131
130
Here's how to create a private endpoint for the *connection* sub-resource used for connections to a host pool using the [Az.Network](/powershell/module/az.network/) and [Az.DesktopVirtualization](/powershell/module/az.desktopvirtualization/) PowerShell modules.
@@ -232,7 +231,7 @@ Here's how to create a private endpoint for the *connection* sub-resource used f
232
231
New-AzPrivateEndpoint @parameters
233
232
```
234
233
235
-
Your output should be similar to the following. Check that the value for **ProvisioningState** is **Succeeded**.
234
+
Your output should be similar to the following output. Check that the value for **ProvisioningState** is **Succeeded**.
236
235
237
236
```output
238
237
ResourceGroupName Name Location ProvisioningState Subnet
@@ -312,7 +311,7 @@ Here's how to create a private endpoint for the *connection* sub-resource used f
312
311
--output table
313
312
```
314
313
315
-
Your output should be similar to the following. Check that the value for **ProvisioningState** is **Succeeded**.
314
+
Your output should be similar to the following output. Check that the value for **ProvisioningState** is **Succeeded**.
316
315
317
316
```output
318
317
CustomNetworkInterfaceName Location Name ProvisioningState ResourceGroup
0 commit comments