az network vnet-gateway nat-rule

Manage nat rule in a virtual network gateway.

Commands

az network vnet-gateway nat-rule add

Add nat rule in a virtual network gateway.

az network vnet-gateway nat-rule list

List nat rule for a virtual network gateway.

az network vnet-gateway nat-rule remove

Remove nat rule from a virtual network gateway.

az network vnet-gateway nat-rule wait

Place the CLI in a waiting state until a condition of the vnet gateway nat rule is met.

az network vnet-gateway nat-rule add

Add nat rule in a virtual network gateway.

az network vnet-gateway nat-rule add --external-mappings
                                     --gateway-name
                                     --internal-mappings
                                     --name
                                     --resource-group
                                     [--ip-config-id]
                                     [--mode {EgressSnat, IngressSnat}]
                                     [--no-wait]
                                     [--type {Dynamic, Static}]

Examples

Add nat rule

az network vnet-gateway nat-rule add --resource-group MyResourceGroup --gateway-name MyVnetGateway --name Nat     --internal-mappings 10.4.0.0/24 --external-mappings 192.168.21.0/24

Required Parameters

--external-mappings

The private IP address external mapping for NAT.

--gateway-name

Virtual network gateway name.

--internal-mappings

The private IP address internal mapping for NAT.

--name

The name of the resource that is unique within a resource group. This name can be used to access the resource.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Optional Parameters

--ip-config-id

The IP Configuration ID this NAT rule applies to.

--mode

The Source NAT direction of a VPN NAT.

accepted values: EgressSnat, IngressSnat
--no-wait

Do not wait for the long-running operation to finish.

--type

The type of NAT rule for VPN NAT.

accepted values: Dynamic, Static

az network vnet-gateway nat-rule list

List nat rule for a virtual network gateway.

az network vnet-gateway nat-rule list --gateway-name
                                      --resource-group

Examples

List nat rule

az network vnet-gateway nat-rule list --resource-group MyResourceGroup --gateway-name MyVnetGateway

Required Parameters

--gateway-name

Virtual network gateway name.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

az network vnet-gateway nat-rule remove

Remove nat rule from a virtual network gateway.

az network vnet-gateway nat-rule remove --gateway-name
                                        --name
                                        --resource-group
                                        [--no-wait]

Examples

Remove nat rule

az network vnet-gateway nat-rule remove --resource-group MyResourceGroup --gateway-name MyVnetGateway     --name Nat

Required Parameters

--gateway-name

Virtual network gateway name.

--name

The name of the resource that is unique within a resource group. This name can be used to access the resource.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Optional Parameters

--no-wait

Do not wait for the long-running operation to finish.

az network vnet-gateway nat-rule wait

Place the CLI in a waiting state until a condition of the vnet gateway nat rule is met.

az network vnet-gateway nat-rule wait [--created]
                                      [--custom]
                                      [--deleted]
                                      [--exists]
                                      [--ids]
                                      [--interval]
                                      [--name]
                                      [--resource-group]
                                      [--timeout]
                                      [--updated]

Optional Parameters

--created

Wait until created with 'provisioningState' at 'Succeeded'.

--custom

Wait until the condition satisfies a custom JMESPath query. E.g. provisioningState!='InProgress', instanceView.statuses[?code=='PowerState/running'].

--deleted

Wait until deleted.

--exists

Wait until the resource exists.

--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

--interval

Polling interval in seconds.

default value: 30
--name -n

Name of the VNet gateway.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--timeout

Maximum wait in seconds.

default value: 3600
--updated

Wait until updated with provisioningState at 'Succeeded'.