gpt4 book ai didi

azure - 从 Azure 中的虚拟网络网关获取虚拟网络详细信息

转载 作者:行者123 更新时间:2023-12-03 06:10:34 29 4
gpt4 key购买 nike

如何从 Azure 中的虚拟网络网关获取虚拟网络名称。它没有被列为属性(property)。 enter image description here

最佳答案

How can I get virtual network name from Virtual network gateway in Azure. It is not listed as a property.

虚拟网络网关获取虚拟网络名称

这是PowerShell命令。

    $resourceGroupName = "<RG-NAMe>"
$gatewayName = "<Gateway-Name>"
$gateway = Get-AzVirtualNetworkGateway -ResourceGroupName $resourceGroupName -Name $gatewayName
foreach ($ipConfig in $gateway.IpConfigurations) {
$virtualNetworkName = ($ipConfig.Subnet.Id -split '/')[-3]
Write-Output "Virtual Network Name: $virtualNetworkName"
}

输出:

enter image description here

引用:Get-AzVirtualNetworkGateway

关于azure - 从 Azure 中的虚拟网络网关获取虚拟网络详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76849165/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com