Class NatConfigurationResponse
Response to a request to configure Network Address Translation (NAT) on a firewall.
To perform NAT on traffic passing the private NAT IPs to the firewall, the attached network firewall policy must also have NAT rules and NAT configuration must be enabled. If NAT configuration is enabled and the attached firewall policy does not contain NAT rule then NAT IPs will get allocated but NAT will not be performed on any traffic.
Inherited Members
Namespace: Oci.NetworkfirewallService.Models
Assembly: OCI.DotNetSDK.Networkfirewall.dll
Syntax
public class NatConfigurationResponse
Properties
MustEnablePrivateNat
Declaration
[JsonProperty(PropertyName = "mustEnablePrivateNat")]
public bool? MustEnablePrivateNat { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | True indicates that NAT configuration is enabled. False indicates NAT configuration is disabled. |
NatIpAddressList
Declaration
[JsonProperty(PropertyName = "natIpAddressList")]
public List<string> NatIpAddressList { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> | An array of Private NAT IP addresses that are associated with the Network Firewall. These IP addresses are reserved for NAT and shouldn't be used for any other purpose in the subnet.
|