Share via

azure point to site VPN configuration

BALAKRISHNA A 86 Reputation points
2021-03-18T10:40:16.55+00:00

i have created the VPN gateway and when configuring the point to site , i have the root certificate and address pool
in the menu, I'm unable to save the configuration due save menu is not highlighting 79183-vpn-error.jpg

Azure VPN Gateway
Azure VPN Gateway

An Azure service that enables the connection of on-premises networks to Azure through site-to-site virtual private networks.


Answer accepted by question author

suvasara-MSFT 10,166 Reputation points Moderator
2021-03-18T10:50:25.203+00:00

@BALAKRISHNA A , This looks like an internal product bug. This requires a deeper investigation, so if you have a support plan, I request you file a support ticket, else please do let us know, we will try and help you get a one-time free technical support. In this case, could you send an email to AzCommunity[at]Microsoft[dot]com referencing this thread and your subscription id.

Thank you for your cooperation on this matter and look forward to your reply.

Please do not forget to "Accept the answer" wherever the information provided helps you to help others in the community.

Was this answer helpful?

0 comments No comments

2 additional answers

Sort by: Most helpful
  1. BALAKRISHNA A 86 Reputation points
    2021-03-30T03:13:38.057+00:00

    azure vpn client works only with local admin privileges and for normal user is not working

    Was this answer helpful?

    0 comments No comments

  2. Vitaly Litvinchuk 1 Reputation point
    2021-03-20T08:35:19.363+00:00

    Hi,
    I have same problem, here is my solution:

    I could solve it via PowerShell. You have to replace the one where XXX is on your data.

    Open PowerShell as administrator.
    You have to wait for each command! It can take some time. They answer YES to all questions:

    if ($PSVersionTable.PSEdition -eq 'Desktop' -and (Get-Module -Name AzureRM -ListAvailable)) {
    Write-Warning -Message ('Az module not installed. Having both the AzureRM and ' +
    'Az modules installed at the same time is not supported.')
    } else {
    Install-Module -Name Az -AllowClobber -Scope CurrentUser
    }

    Set-ExecutionPolicy Unrestricted
    Import-Module -Name Az

    $VNetName = "XXXVirtualNetworkName"
    $GWSubName = "GatewaySubnet"
    $VPNClientAddressPool = "10.1.0.0/26"
    $RG = "XXXResourcesGroup"
    $GWName = "XXXVirtualNetworkGateway"

    $Gateway = Get-AzVirtualNetworkGateway -ResourceGroupName $RG -Name $GWName
    Set-AzVirtualNetworkGateway -VirtualNetworkGateway $Gateway -VpnClientAddressPool $VPNClientAddressPool

    $XXXXXXYourCertificateName = "XXXXXXYourCertificateName.cer"
    $filePathForCert = "C:\XXXYourCertificatePath\XXXXXXYourCertificateName.cer"
    $cert = new-object System.Security.Cryptography.X509Certificates.X509Certificate2($filePathForCert)
    $CertBase64 = [system.convert]::ToBase64String($cert.RawData)

    Add-AzVpnClientRootCertificate -VpnClientRootCertificateName $WedRootCertName -VirtualNetworkGatewayname $GWName -ResourceGroupName $RG -PublicCertData $CertBase64

    Set-ExecutionPolicy Restricted

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.