共用方式為


Get-AzVpnGatewayNatRule

取得與 VpnGateway 相關聯的 NAT 規則。

語法

Get-AzVpnGatewayNatRule
   -ResourceGroupName <String>
   -ParentResourceName <String>
   [-Name <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzVpnGatewayNatRule
   -ParentObject <PSVpnGateway>
   [-Name <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzVpnGatewayNatRule
   -ParentResourceId <String>
   [-Name <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

取得與 VpnGateway 相關聯的 NAT 規則。

範例

範例

New-AzResourceGroup -Location "West US" -Name "testRG"
$virtualWan = New-AzVirtualWan -ResourceGroupName testRG -Name myVirtualWAN -Location "West US"
$virtualHub = New-AzVirtualHub -VirtualWan $virtualWan -ResourceGroupName "testRG" -Name "westushub" -AddressPrefix "10.0.0.1/24"
New-AzVpnGateway -ResourceGroupName "testRG" -Name "testvpngw" -VirtualHubId $virtualHub.Id -VpnGatewayScaleUnit 2
$vpnGateway = Get-AzVpnGateway -ResourceGroupName "testRG" -Name "testvpngw"
New-AzVpnGatewayNatRule -ResourceGroupName $vpnGateway.ResourceGroupName -ParentResourceName $vpnGateway.Name -Name "testNatRule" -Type Static -Mode EgressSnat -InternalMapping "10.0.0.1/26" -ExternalMapping "192.168.0.0/26"
Get-AzVpnGatewayNatRule -ResourceGroupName $vpnGateway.ResourceGroupName -ParentResourceName $vpnGateway.Name -Name "testNatRule"

Type             		  : Static
Mode                      : EgressSnat
VpnConnectionProtocolType : IKEv2
InternalMappings          : 10.0.0.1/26
ExternalMappings          : 192.168.0.0/26
IpConfigurationId   	  :
IngressVpnSiteLinkConnections : [Microsoft.Azure.Commands.Network.Models.PSResourceId]
EgressVpnSiteLinkConnections  : [Microsoft.Azure.Commands.Network.Models.PSResourceId]
ProvisioningState         : Provisioned
Name                      : ps9709
Etag                      : W/"4580a2e2-2fab-4cff-88eb-92013a76b5a8"
Id                        : /subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/vpnGateways/testvpngw/natRules/testNatRule

上述會建立資源群組、虛擬 WAN、虛擬網絡、虛擬中樞和 VpnGateway 和與 Vpngateway 相關聯的 NAT 規則。 然後使用 NAT 規則名稱取得 NAT 規則。

參數

-DefaultProfile

用於與 Azure 通訊的認證、帳戶、租用戶和訂用帳戶。

類型:IAzureContextContainer
別名:AzContext, AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Name

資源名稱。

類型:String
別名:ResourceName, VpnGatewayNatRuleName
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:True

-ParentObject

此 VpnGatewayNatRule 的父 VpnGateway。

類型:PSVpnGateway
別名:ParentVpnGateway, VpnGateway
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-ParentResourceId

此 VpnGatewayNatRule 之父 VpnGateway 的資源識別碼。

類型:String
別名:ParentVpnGatewayId, VpnGatewayId
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-ParentResourceName

父資源名稱。

類型:String
別名:ParentVpnGatewayName, VpnGatewayName
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-ResourceGroupName

資源組名。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

輸入

PSVpnGateway

String

輸出

PSVpnGatewayNatRule