Skip to content

Commit 8757e05

Browse files
authored
Merge pull request #100379 from cherylmc/patch-4
Update openvpn-azure-ad-tenant.md
2 parents bca56d7 + 04ea01f commit 8757e05

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

articles/vpn-gateway/openvpn-azure-ad-tenant.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,31 +85,36 @@ Use the steps in [this article](../active-directory/fundamentals/add-users-azure
8585
7. Under your Azure AD, in **Enterprise applications**, you see **Azure VPN** listed.
8686
8787
![Azure VPN](./media/openvpn-create-azure-ad-tenant/azurevpn.png)
88+
89+
8. If you don't already have a functioning point-to-site environment, follow the instruction to create one. See [Create a point-to-site VPN](vpn-gateway-howto-point-to-site-resource-manager-portal.md) to create and configure a point-to-site VPN gateway with native Azure certificate authentication.
8890
89-
8. Enable Azure AD authentication on the VPN gateway by running the following commands, being sure to modify the command to reflect your own environment:
91+
> [!IMPORTANT]
92+
> The Basic SKU is not supported for OpenVPN.
93+
94+
9. Enable Azure AD authentication on the VPN gateway by running the following commands, being sure to modify the command to reflect your own environment:
9095
9196
```azurepowershell-interactive
9297
$gw = Get-AzVirtualNetworkGateway -Name <name of VPN gateway> -ResourceGroupName <Resource group>
9398
Set-AzVirtualNetworkGateway -VirtualNetworkGateway $gw -VpnClientRootCertificates @()
9499
Set-AzVirtualNetworkGateway -VirtualNetworkGateway $gw -AadTenantUri "https://login.microsoftonline.com/<your Directory ID>" -AadAudienceId "41b23e61-6c1e-4545-b367-cd054e0ed4b4" -AadIssuerUri "https://sts.windows.net/<your Directory ID>/" -VpnClientAddressPool 192.168.0.0/24 -VpnClientProtocol OpenVPN
95100
```
96101
97-
9. Create and download the profile by running the following commands. Change the -ResourceGroupName and -Name values to match your own.
102+
10. Create and download the profile by running the following commands. Change the -ResourceGroupName and -Name values to match your own.
98103
99104
```azurepowershell-interactive
100105
$profile = New-AzVpnClientConfiguration -Name <name of VPN gateway> -ResourceGroupName <Resource group> -AuthenticationMethod "EapTls"
101106
$PROFILE.VpnProfileSASUrl
102107
```
103108
104-
10. After running the commands, you see a result similar to the one below. Copy the result URL to your browser to download the profile zip file.
109+
11. After running the commands, you see a result similar to the one below. Copy the result URL to your browser to download the profile zip file.
105110
106111
![Azure VPN](./media/openvpn-create-azure-ad-tenant/profile.png)
107112
108-
11. Extract the downloaded zip file.
113+
12. Extract the downloaded zip file.
109114
110-
12. Browse to the unzipped “AzureVPN” folder.
115+
13. Browse to the unzipped “AzureVPN” folder.
111116
112-
13. Make a note of the location of the “azurevpnconfig.xml” file. The azurevpnconfig.xml contains the setting for the VPN connection and can be imported directly into the Azure VPN Client application. You can also distribute this file to all the users that need to connect via e-mail or other means. The user will need valid Azure AD credentials to connect successfully.
117+
14. Make a note of the location of the “azurevpnconfig.xml” file. The azurevpnconfig.xml contains the setting for the VPN connection and can be imported directly into the Azure VPN Client application. You can also distribute this file to all the users that need to connect via e-mail or other means. The user will need valid Azure AD credentials to connect successfully.
113118
114119
## Next steps
115120

0 commit comments

Comments
 (0)