Diagnose on-premises connectivity via VPN gateways

Azure VPN Gateway enables you to create hybrid solution that address the need for a secure connection between your on-premises network and your Azure virtual network. As your requirements are unique, so is the choice of on-premises VPN device. Azure currently supports several VPN devices that are constantly validated in partnership with the device vendors. Review the device-specific configuration settings before configuring your on-premises VPN device. Similarly, Azure VPN Gateway is configured with a set of supported IPsec parameters that are used for establishing connections. Currently, there's no way for you to specify or select a specific combination of IPsec parameters from the Azure VPN Gateway. For establishing a successful connection between on-premises and Azure, the on-premises VPN device settings must be in accordance with the IPsec parameters prescribed by Azure VPN Gateway. If the settings are incorrect, there's a loss of connectivity and until now troubleshooting these issues wasn't trivial and usually took hours to identify and fix the issue.

With the Azure Network Watcher troubleshoot feature, you're able to diagnose any issues with your Gateway and Connections and within minutes have enough information to make an informed decision to rectify the issue.

Note

We recommend that you use the Azure Az PowerShell module to interact with Azure. See Install Azure PowerShell to get started. To learn how to migrate to the Az PowerShell module, see Migrate Azure PowerShell from AzureRM to Az.

Scenario

You want to configure a site-to-site connection between Azure and on-premises using FortiGate as the on-premises VPN Gateway. To achieve this scenario, you would require the following setup:

  1. Virtual Network Gateway - The VPN Gateway on Azure
  2. Local Network Gateway - The on-premises (FortiGate) VPN Gateway representation in Azure cloud
  3. Site-to-site connection (route based) - Connection between the VPN Gateway and the on-premises router
  4. Configuring FortiGate

Detailed step by step guidance for configuring a Site-to-Site configuration can be found by visiting: Create a VNet with a Site-to-Site connection using the Azure portal.

One of the critical configuration steps is configuring the IPsec communication parameters, any misconfiguration leads to loss of connectivity between the on-premises network and Azure. Currently, Azure VPN Gateways are configured to support the following IPsec parameters for Phase 1. As you can see in the table below, the encryption algorithms supported by Azure VPN Gateway are AES256, AES128, and 3DES.

IKE phase 1 setup

Property PolicyBased RouteBased and Standard or High-Performance VPN gateway
IKE Version IKEv1 IKEv2
Diffie-Hellman Group Group 2 (1024 bit) Group 2 (1024 bit)
Authentication Method Pre-Shared Key Pre-Shared Key
Encryption Algorithms AES256 AES128 3DES AES256 3DES
Hashing Algorithm SHA1(SHA128) SHA1(SHA128), SHA2(SHA256)
Phase 1 Security Association (SA) Lifetime (Time) 28,800 seconds 28,800 seconds

As a user, you would be required to configure your FortiGate, a sample configuration can be found on GitHub. Unknowingly you configured your FortiGate to use SHA-512 as the hashing algorithm. As this algorithm isn't a supported algorithm for policy-based connections, your VPN connection does work.

These issues are hard to troubleshoot and root causes are often non-intuitive. In this case, you can open a support ticket to get help on resolving the issue. But with Azure Network Watcher troubleshoot API, you can identify these issues on your own.

Troubleshooting using Azure Network Watcher

To diagnose your connection, connect to Azure PowerShell and initiate the Start-AzNetworkWatcherResourceTroubleshooting cmdlet. You can find the details on using this cmdlet at Troubleshoot Virtual Network Gateway and connections - PowerShell. This cmdlet may take up to few minutes to complete.

Once the cmdlet completes, you can navigate to the storage location specified in the cmdlet to get detailed information on about the issue and logs. Azure Network Watcher creates a zip folder that contains the following log files:

1

Open the file called IKEErrors.txt and it displays the following error, indicating an issue with on-premises IKE setting misconfiguration.

Error: On-premises device rejected Quick Mode settings. Check values.
	 based on log : Peer sent NO_PROPOSAL_CHOSEN notify

You can get detailed information from the Scrubbed-wfpdiag.txt about the error, as in this case it mentions that there was ERROR_IPSEC_IKE_POLICY_MATCH that lead to connection not working properly.

Another common misconfiguration is the specifying incorrect shared keys. If in the preceding example you had specified different shared keys, the IKEErrors.txt shows the following error: Error: Authentication failed. Check shared key.

Azure Network Watcher troubleshoot feature enables you to diagnose and troubleshoot your VPN Gateway and Connection with the ease of a simple PowerShell cmdlet. Currently, we support diagnosing the following conditions and are working towards adding more condition.

Gateway

Fault Type Reason Log
NoFault No error is detected Yes
GatewayNotFound Cannot find Gateway or Gateway is not provisioned. No
PlannedMaintenance Gateway instance is under maintenance. No
UserDrivenUpdate A user update is in progress. This could be a resize operation. No
VipUnResponsive Cannot reach the primary instance of the Gateway. This happens when the health probe fails. No
PlatformInActive There is an issue with the platform. No
ServiceNotRunning The underlying service is not running. No
NoConnectionsFoundForGateway No Connections exists on the gateway. This is only a warning. No
ConnectionsNotConnected None of the Connections is connected. This is only a warning. Yes
GatewayCPUUsageExceeded The current Gateway usage CPU usage is > 95%. Yes

Connection

Fault Type Reason Log
NoFault No error is detected. Yes
GatewayNotFound Cannot find Gateway or Gateway is not provisioned. No
PlannedMaintenance Gateway instance is under maintenance. No
UserDrivenUpdate A user update is in progress. This could be a resize operation. No
VipUnResponsive Cannot reach the primary instance of the Gateway. It happens when the health probe fails. No
ConnectionEntityNotFound Connection configuration is missing. No
ConnectionIsMarkedDisconnected The Connection is marked "disconnected." No
ConnectionNotConfiguredOnGateway The underlying service does not have the Connection configured. Yes
ConnectionMarkedStandby The underlying service is marked as standby. Yes
Authentication Preshared Key mismatch. Yes
PeerReachability The peer gateway is not reachable. Yes
IkePolicyMismatch The peer gateway has IKE policies that are not supported by Azure. Yes
WfpParse Error An error occurred parsing the WFP log. Yes

Next steps

Learn to check VPN Gateway connectivity with PowerShell and Azure Automation by visiting Monitor VPN gateways with Azure Network Watcher troubleshooting