Skip to content

Commit 624dc06

Browse files
authored
Merge pull request #104907 from cherylmc/faq2
add P2S remove configuration to FAQ
2 parents 74603a9 + 220039e commit 624dc06

File tree

2 files changed

+26
-13
lines changed

2 files changed

+26
-13
lines changed

articles/vpn-gateway/point-to-site-about.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: 'About Azure Point-to-Site VPN connections | Microsoft Docs'
2+
title: 'About Azure Point-to-Site VPN connections | VPN Gateway'
33
description: This article helps you understand Point-to-Site connections and helps you decide which P2S VPN gateway authentication type to use.
44
services: vpn-gateway
55
author: cherylmc
66

77
ms.service: vpn-gateway
88
ms.topic: conceptual
9-
ms.date: 02/07/2020
9+
ms.date: 02/19/2020
1010
ms.author: cherylmc
1111

1212
---
@@ -49,16 +49,16 @@ At a high level, you need to perform the following steps to configure Azure AD a
4949

5050
1. [Configure an Azure AD tenant](openvpn-azure-ad-tenant.md)
5151

52-
2. [Enable Azure AD authentication on the gateway](https://docs.microsoft.com/azure/vpn-gateway/openvpn-azure-ad-tenant#enable-authentication)
52+
2. [Enable Azure AD authentication on the gateway](openvpn-azure-ad-tenant.md#enable-authentication)
5353

5454
3. [Download and configure Azure VPN Client](https://go.microsoft.com/fwlink/?linkid=2117554)
5555

5656

5757
### Authenticate using Active Directory (AD) Domain Server
5858

59-
AD Domain authentication allows users to connect to Azure using their organization domain credentials. It requires a RADIUS server that integrates with the AD server. Organizations can also leverage their existing RADIUS deployment.   
59+
AD Domain authentication allows users to connect to Azure using their organization domain credentials. It requires a RADIUS server that integrates with the AD server. Organizations can also leverage their existing RADIUS deployment.
6060

61-
The RADIUS server could be deployed on-premises or in your Azure VNET. During authentication, the Azure VPN Gateway acts as a pass through and forwards authentication messages back and forth between the RADIUS server and the connecting device. So Gateway reachability to the RADIUS server is important. If the RADIUS server is present on-premises, then a VPN S2S connection from Azure to the on-premises site is required for reachability.  
61+
The RADIUS server could be deployed on-premises or in your Azure VNet. During authentication, the Azure VPN Gateway acts as a pass through and forwards authentication messages back and forth between the RADIUS server and the connecting device. So Gateway reachability to the RADIUS server is important. If the RADIUS server is present on-premises, then a VPN S2S connection from Azure to the on-premises site is required for reachability.  
6262

6363
The RADIUS server can also integrate with AD certificate services. This lets you use the RADIUS server and your enterprise certificate deployment for P2S certificate authentication as an alternative to the Azure certificate authentication. The advantage is that you don’t need to upload root certificates and revoked certificates to Azure.
6464

@@ -152,9 +152,6 @@ The zip file also provides the values of some of the important settings on the A
152152
|TLS_RSA_WITH_AES_128_CBC_SHA256 |
153153
|TLS_RSA_WITH_AES_256_CBC_SHA256 |
154154

155-
156-
157-
158155
## <a name="configure"></a>How do I configure a P2S connection?
159156

160157
A P2S configuration requires quite a few specific steps. The following articles contain the steps to walk you through P2S configuration, and links to configure the VPN client devices:
@@ -165,11 +162,9 @@ A P2S configuration requires quite a few specific steps. The following articles
165162

166163
* [Configure OpenVPN](vpn-gateway-howto-openvpn.md)
167164

168-
## How do I remove the configuration of a P2S connection?
169-
170-
A P2S configuration can be removed using az cli and the following command :
165+
### To remove the configuration of a P2S connection
171166

172-
`az network vnet-gateway update --name <gateway-name> --resource-group <resource-group name> --remove "vpnClientConfiguration"`
167+
For steps, see the [FAQ](#removeconfig), below.
173168

174169
## <a name="faqcert"></a>FAQ for native Azure certificate authentication
175170

includes/vpn-gateway-faq-p2s-all-include.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
author: cherylmc
66
ms.service: vpn-gateway
77
ms.topic: include
8-
ms.date: 12/17/2019
8+
ms.date: 02/19/2020
99
ms.author: cherylmc
1010
ms.custom: include file
1111
---
@@ -92,3 +92,21 @@ Azure supports Windows, Mac and Linux for P2S VPN.
9292
### I already have an Azure VPN Gateway deployed. Can I enable RADIUS and/or IKEv2 VPN on it?
9393

9494
Yes, you can enable these new features on already deployed gateways using Powershell or the Azure portal, provided that the gateway SKU that you are using supports RADIUS and/or IKEv2. For example, the VPN gateway Basic SKU does not support RADIUS or IKEv2.
95+
96+
### <a name="removeconfig"></a>How do I remove the configuration of a P2S connection?
97+
98+
A P2S configuration can be removed using Azure CLI and PowerShell using the following commands:
99+
100+
#### Azure PowerShell
101+
102+
```azurepowershell-interactive
103+
$gw=Get-AzVirtualNetworkGateway -name <gateway-name>`
104+
$gw.VPNClientConfiguration = $null`
105+
Set-AzVirtualNetworkGateway -VirtualNetworkGateway $gw`
106+
```
107+
108+
#### Azure CLI
109+
110+
```azurecli-interactive
111+
az network vnet-gateway update --name <gateway-name> --resource-group <resource-group name> --remove "vpnClientConfiguration"
112+
```

0 commit comments

Comments
 (0)