Can not select virtual network gateway in new connection

Andrew 31 Reputation points
2022-05-10T16:01:14.993+00:00

When trying to select the first vng, I choose the correct one. After clicking on it, it returns to the add connection screen, but no vng has been selected.
200684-image.png

200711-image.png

Azure Virtual Network
Azure Virtual Network
An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
2,132 questions
0 comments No comments
{count} votes

Accepted answer
  1. ChaitanyaNaykodi-MSFT 22,216 Reputation points Microsoft Employee
    2022-05-10T21:56:04.663+00:00

    Hello @Andrew , Welcome to the Microsoft Q&A forum.

    I was able to reproduce this issue on my end and I have reported it to the team internally. Meanwhile can you try creating the connection using PowerShell. I was able to add the connection using PowerShell commands below.

     $gateway1 = Get-AzVirtualNetworkGateway -Name <GWName> -ResourceGroupName <RG>  
     $local = Get-AzLocalNetworkGateway -Name <LNGName> -ResourceGroupName <RG>  
     New-AzVirtualNetworkGatewayConnection -Name VNet1toSite1 -ResourceGroupName <RG> `  
     -Location $Location -VirtualNetworkGateway1 $gateway1 -LocalNetworkGateway2 $local `  
     -ConnectionType IPsec -ConnectionProtocol IKEv2 -RoutingWeight 10 -SharedKey 'abc123'  
    

    If you do not have a PowerShell environment set-up locally. You can try Cloud Shell to run these commands. Please let me know if you observe any errors. Thank you!


5 additional answers

Sort by: Most helpful
  1. Grote, Justin 11 Reputation points
    2022-09-13T15:39:25.91+00:00

    Bumping as I ran into the same problem as well. Not sure if it matters that the VPN gateway is in a different RG (but same subscription) than the connection and LNG.

    1 person found this answer helpful.

  2. Daniel Fourman 6 Reputation points
    2022-09-19T08:59:35.243+00:00

    Bumping, also running into this issue

    1 person found this answer helpful.
    0 comments No comments

  3. Agge 5 Reputation points
    2023-02-08T14:32:48.4733333+00:00

    Still seems to be a problem :(

    1 person found this answer helpful.
    0 comments No comments

  4. Simon Bond 6 Reputation points
    2023-02-08T18:30:47.26+00:00

    I also saw this today, what's going on?

    0 comments No comments