Get-AzLocalNetworkGateway
Gets a Local Network Gateway
Syntax
Get-AzLocalNetworkGateway
[-Name <String>]
-ResourceGroupName <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Local Network Gateway is the object representing your VPN device On-Premises. The Get-AzLocalNetworkGateway cmdlet returns the object representing your on-prem gateway based on Name and Resource Group Name.
Examples
Example 1: Get a Local Network Gateway
Get-AzLocalNetworkGateway -Name myLocalGW1 -ResourceGroupName myRG
Name : myLocalGW1
ResourceGroupName : myRG
Location : eastus
Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/M
icrosoft.Network/localNetworkGateways/myLocalGW1
Etag : W/"00000000-0000-0000-0000-000000000000"
ResourceGuid : 00000000-0000-0000-0000-000000000000
ProvisioningState : Succeeded
Tags :
GatewayIpAddress : x.x.x.x
LocalNetworkAddressSpace : {
"AddressPrefixes": []
}
BgpSettings : null
Returns the object of the Local Network Gateway with the name "myLocalGW1" within the resource group "myRG"
Example 2: Get Local Network Gateways using filtering
Get-AzLocalNetworkGateway -Name myLocalGW* -ResourceGroupName myRG
Name : myLocalGW1
ResourceGroupName : myRG
Location : eastus
Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/M
icrosoft.Network/localNetworkGateways/myLocalGW1
Etag : W/"00000000-0000-0000-0000-000000000000"
ResourceGuid : 00000000-0000-0000-0000-000000000000
ProvisioningState : Succeeded
Tags :
GatewayIpAddress : x.x.x.x
LocalNetworkAddressSpace : {
"AddressPrefixes": []
}
BgpSettings : null
Name : myLocalGW2
ResourceGroupName : myRG
Location : eastus
Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/M
icrosoft.Network/localNetworkGateways/myLocalGW2
Etag : W/"00000000-0000-0000-0000-000000000000"
ResourceGuid : 00000000-0000-0000-0000-000000000000
ProvisioningState : Succeeded
Tags :
GatewayIpAddress : x.x.x.x
LocalNetworkAddressSpace : {
"AddressPrefixes": []
}
BgpSettings : null
Returns the object of the Local Network Gateway with name starting with "myLocalGW" within the resource group "myRG"
Parameters
-DefaultProfile
The credentials, account, tenant, and subscription used for communication with azure.
Type: | IAzureContextContainer |
Aliases: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
Type: | String |
Aliases: | ResourceName |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | True |
-ResourceGroupName
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | True |
Inputs
Outputs
Related Links
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.
Azure PowerShell