

With point to site (on the same machines) there is no issue with RDP. But when I RDP into a Windows Server running on Azure I get frequent disconnects - every few minutes the session will drop, then auto reconnect. Navigate to the location of vpn configuration and select AzureVPN\ Azurevpnconfig.xmlĪfter saving the vnet of your point-to-site is listed as a connection option in vpn clientĬonnections Properties should now show a green icon 🟢 and vpn ip address Testing Connectivity With the site to site (SonicWALL to Azure) VPN up and running I can access the network in both directions without issue.
Azure point to site vpn 2fa plus#
At the bottom there is a plus icon ->choose import Open the vpn client, in this case “Azure VPN Client” recently installed.
Azure point to site vpn 2fa install#
If you have issues, it maybe worth puruing the install of OpenVPN client instead (which isn’t covered in this post) Import the VPN Configuration If you’re using windows 10, it should be pretty straightforward. The Azure VPN is in preview still at the time of the post.

Note: This doesn’t install a client, it downloads the vpn configuration to be imported during setup in the vpn client (Microsoft please change the wording🤷♀️) Lastly, download the point-to-site configuration which will be imported into the vpn client in the next step by clicking Download VPN Client In the vgw hosted in Azure, Paste the output into public certificate data in the point-to-site configuration The output will render something similar to the following:įYI: You can download the script below and run powershell -c. $mychildcert = New-SelfSignedCertificate -Type Custom -DnsName P2SChildCert -KeySpec Signature ` -Subject "CN=P2SChildCert" -KeyExportPolicy Exportable ` -HashAlgorithm sha256 -KeyLength 2048 ` -CertStoreLocation "Cert:\CurrentUser\My" ` -Signer $cert -TextExtension -path "Cert:\CurrentUser\My\$($mychildcert.thumbprint)").RawData) CertStoreLocation "Cert:\CurrentUser\My" -KeyUsageProperty Sign -KeyUsage CertSign Subject "CN=P2SRoot" -KeyExportPolicy Exportable ` $cert = New-SelfSignedCertificate -Type Custom -KeySpec Signature `
