[{"label":"Latest (v37.2)","version":"latest"},{"version":"v37.1"},{"version":"v37.0"},{"version":"v36.3"},{"version":"v36.2"},{"version":"v36.1"},{"version":"v36.0"},{"link":"https://developer.vmware.com/apis/1046/vmware-cloud-director","version":"v35.0"}]
vmware-cloud-director

Create NAT Rule

Description

Creates a NAT Rule on the Edge Gateway.

Request

Request

URL

URL


post
https://{api_host}/cloudapi/1.0.0/edgeGateways/{gatewayId}/nat/rules
Copy

Path Parameters

Path Parameters

string
gatewayId Required

Request Body

Request Body

EdgeNatRule of type(s) application/json Required
{
	"externalAddresses": "string",
	"internalAddresses": "string",
	"name": "string"
}
string
externalAddresses Required

The external addresses for the NAT Rule. This must be supplied as a single IP or Network CIDR. For a DNAT rule, this is the external facing IP Address for incoming traffic. For an SNAT rule, this is the external facing IP Address for outgoing traffic. These ips are typically allocated/suballocated IP Addresses on the Edge Gateway. For a REFLEXIVE rule, these are the external facing IPs.


string
name Required

User friendly name for the NAT Rule. Name must be provided.


string
internalAddresses Required

The internal addresses for the NAT Rule. This must be supplied as a single IP or Network CIDR. For a DNAT rule, this is the internal IP Address for incoming traffic. For an SNAT rule, this is the internal IP Address for outgoing traffic. For a REFLEXIVE rule, these are the internal IPs. These ips are typically the Private IPs that are allocated to workloads.


applicationPortProfile Optional

Represents the application ports on which the NAT Rule will be applied. An application port profile id in the form of URN format must be provided. If not provided then the port will be considered as “ANY”. This should not be set for a REFLEXIVE Rule. For a DNAT Rule, the source port on the application port profile represents the port from which the traffic is originating from. For a DNAT rule, the destination port on the application port profile represents the internal port on the workloads where the traffic is terminating. For a SNAT rule, the source port on the application port profile represents the internal port on the workloads where the traffic is originating from. For a SNAT rule, the destination port application port profile represents the port where the traffic is terminating.


boolean
enabled Optional

A flag indicating whether the individual nat rule is enabled or not. The default is true.


string
dnatExternalPort Optional

This represents the external port number or port range when doing DNAT port forwarding from external to internal. The default dnatExternalPort is “ANY” meaning traffic on any port for the given IPs selected will be translated.


string
firewallMatch Optional

Determines how the firewall matches the address during NATing if firewall stage is not skipped. Below are valid values.

  • MATCH_INTERNAL_ADDRESS indicates the firewall will be applied to internal address of a NAT rule. For SNAT, the internal address is the original source address before NAT is done. For DNAT, the internal address is the translated destination address after NAT is done. For REFLEXIVE, to egress traffic, the internal address is the original source address before NAT is done; to ingress traffic, the internal address is the translated destination address after NAT is done.
  • MATCH_EXTERNAL_ADDRESS indicates the firewall will be applied to external address of a NAT rule. For SNAT, the external address is the translated source address after NAT is done. For DNAT, the external address is the original destination address before NAT is done. For REFLEXIVE, to egress traffic, the external address is the translated internal address after NAT is done; to ingress traffic, the external address is the original destination address before NAT is done.
  • BYPASS firewall stage will be skipped.
The default is MATCH_INTERNAL_ADDRESS.


string
id Optional

The unique id of the NAT Rule. This must be supplied when updating a given NAT Rule. On creation, an unique id is generated for the NAT Rule.


string
description Optional

string
internalPort Optional

Port number or port range for incoming network traffic. If Any Traffic is selected for the Service, the default internal port is “ANY”. Note that this field has been deprecated. Please use dnatExternalPort to set port forwarding for DNAT rules. This typically should not be set for SNAT rules as the rule would not be able to support IP Translation with multiple ports.


boolean
logging Optional

A flag indicating whether logging for the individual nat rule is enabled or not. The default is false.


appliedTo Optional

Used to limit application of this NAT rule to the specified Org VDC or segment backed external network. Only networks connected as service interfaces are usable.


integer as int32
priority Optional

If an address has multiple NAT rules, the rule with the highest priority is applied. A lower value means a higher precedence for this rule.


ruleType Optional

Represents the type of NAT Rule. SNAT translates an internal IP to an external IP and is used for outbound traffic. DNAT translates the external IP to an internal IP and is used for inbound traffic. This property is now deprecated and replaced with type.


string
snatDestinationAddresses Optional

The destination addresses to match in the SNAT Rule. This must be supplied as a single IP or Network CIDR. Providing no value for this field results in match with ANY destination network. These IPs are typically the Private IPs that are allocated to destination workloads.


boolean
systemRule Optional

A flag indicating whether this NAT rule is managed by the system. This is not user editable


string
type Optional

Represents the type of NAT Rule. Below are valid values.

  • SNAT - This translates an internal IP to an external IP and is used for outbound traffic.
  • DNAT - This translates the external IP to an internal IP and is used for inbound traffic.
  • NO_SNAT - No internal IP translation takes place.
  • NO_DNAT - No external IP translation takes place.
  • REFLEXIVE - Also known as Stateless NAT. This translates an internal IP to an external IP and vice versa. The number of internal addresses should be exactly the same as that of external addresses.


version Optional

This property describes the current version of the entity. To prevent clients from overwriting each other’s changes, update operations must include the version which can be obtained by issuing a GET operation. If the version number on an update call is missing, the operation will be rejected. This is only needed on update calls.

Authentication

Authentication

This operation uses the following authentication methods.

Response

Response

202 Accepted

The request have been accepted and the task to monitor the request is in the Location header.

Errors

Errors

Error
400

Invalid configuration.


Error
404

The specified resource was not found

Code Samples

Code Samples

cURL Command

curl -X POST -H "Content-Type: application/json" -d '{"applicationPortProfile":{"id":"string","name":"string"},"appliedTo":{"id":"string","name":"string"},"description":"string","dnatExternalPort":"string","enabled":false,"externalAddresses":"string","firewallMatch":"string","id":"string","internalAddresses":"string","internalPort":"string","logging":false,"name":"string","priority":0,"ruleType":"enum","snatDestinationAddresses":"string","systemRule":false,"type":"string","version":{"version":0}}' https://{api_host}/cloudapi/1.0.0/edgeGateways/{gatewayId}/nat/rules


[{"label":"Latest (v37.2)","version":"latest"},{"version":"v37.1"},{"version":"v37.0"},{"version":"v36.3"},{"version":"v36.2"},{"version":"v36.1"},{"version":"v36.0"},{"link":"https://developer.vmware.com/apis/1046/vmware-cloud-director","version":"v35.0"}]
vmware-cloud-director
Availability
Added in 33.0
Edge Gateway NAT Rules Operations
Feedback

Was this page helpful?