Show / Hide Table of Contents

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.

Inheritance
object
NatConfigurationResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.
This list contains IP addresses when NAT configuration is enabled. This list is empty or null IP when NAT configuration is disabled.

In this article
Back to top