SNatEntryProps
Properties for defining a SNatEntry.
See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-ecs-snatentry
Initializer
using AlibabaCloud.SDK.ROS.CDK.Ecs;
new SNatEntryProps {
object SNatIp,
object SNatTableId,
object SnatEntryName = null,
object SourceCidr = null,
object SourceVSwitchId = null
};
Properties
| Name | Type | Description |
|---|---|---|
SNatIp | object | Property sNatIp: Source IP, must belongs to bandwidth package internet IP. |
SNatTableId | object | Property sNatTableId: Create SNAT entry in specified SNAT table. |
SnatEntryName | object | Property snatEntryName: The name of the SNAT entry. |
SourceCidr | object | Property sourceCidr: You can specify the CIDR block of a VPC, a vSwitch, or an ECS instance or enter a custom CIDR block. |
SourceVSwitchId | object | Property sourceVSwitchId: The ID of the vSwitch. |
SNatIpRequired
public object SNatIp { get; set; }
- Type: object
Property sNatIp: Source IP, must belongs to bandwidth package internet IP.
SNatTableIdRequired
public object SNatTableId { get; set; }
- Type: object
Property sNatTableId: Create SNAT entry in specified SNAT table.
SnatEntryNameOptional
public object SnatEntryName { get; set; }
- Type: object
Property snatEntryName: The name of the SNAT entry.
The name must be 2 to 128 characters in length. It must start with a letter but cannot start with http:\/\/ or https:\/\/.
SourceCidrOptional
public object SourceCidr { get; set; }
- Type: object
Property sourceCidr: You can specify the CIDR block of a VPC, a vSwitch, or an ECS instance or enter a custom CIDR block.
You can specify an SNAT entry in the following ways:
- You can specify the CIDR block of the VPC where the NAT gateway is deployed. Then, all ECS instances in the VPC can access the Internet or external networks by using SNAT.
- You can specify the CIDR block of a vSwitch, for example, 192.168.1.0/24. Then, the ECS instances in the vSwitch can access the Internet or external networks by using SNAT.
- You can specify the IP address of an ECS instance, for example, 192.168.1.1/32. Then, the ECS instance can access the Internet or external networks by using SNAT.
- You can specify a custom CIDR block. Then, all ECS instances within the specified CIDR block can access the Internet or external networks by using SNAT. When you add an SNAT entry to an Internet NAT gateway, if SnatIp is set to an EIP, the ECS instance uses the specified EIP to access the Internet. If SnatIp is set to multiple EIPs, the ECS instance randomly selects an EIP specified in the SnatIp parameter to access the Internet. You cannot specify this parameter and SourceVSwtichId at the same time. If SourceVSwitchId is specified, you cannot specify SourceCIDR. If SourceCIDR is specified, you cannot specify SourceVSwitchId.
SourceVSwitchIdOptional
public object SourceVSwitchId { get; set; }
- Type: object
Property sourceVSwitchId: The ID of the vSwitch.
- When you add an SNAT entry to an Internet NAT gateway, this parameter specifies that ECS instances in the vSwitch can use the SNAT entry to access the Internet. If you select multiple elastic IP addresses (EIPs) to create an SNAT address pool, connections are hashed to these EIPs. Network traffic may not be evenly distributed to the EIPs because the amount of traffic that passes through each connection varies. We recommend that you associate these EIPs with the same EIP bandwidth plan to prevent service interruptions due to the bandwidth limits on individual EIPs.
- When you add an SNAT entry to a VPC NAT gateway, this parameter specifies that ECS instances in the vSwitch can use the SNAT entry to access external networks.