Updated on 2025-11-05 GMT+08:00

Step 2: Create a Subnet for the VPC

Scenarios

A subnet is a unique CIDR block with a range of IP addresses in a VPC. All resources in a VPC must be deployed on subnets.

When creating a VPC, you need to create at least one subnet. If one subnet cannot meet your requirements, you can create more subnets for the VPC.

Procedure

  1. Log in to the management console.
  2. Click in the upper left corner and choose Network > Virtual Private Cloud.

    The Virtual Private Cloud page is displayed.

  3. In the navigation pane on the left, choose Virtual Private Cloud > Subnets.
  4. Click Create Subnet.

    The Create Subnet page is displayed.

  5. Set the parameters as prompted.
    Table 1 Subnet parameter descriptions

    Parameter

    Description

    Example Value

    VPC

    The VPC for which you want to create a subnet.

    vpc-test

    Name

    The subnet name. The name:
    • Can contain 1 to 64 characters.
    • Can contain letters, digits, underscores (_), hyphens (-), and periods (.).

    subnet-01

    AZ

    An AZ is a geographic location with independent power supply and network facilities in a region. AZs are physically isolated, and AZs in the same VPC are interconnected through an internal network.

    Each region contains multiple AZs. If one AZ is unavailable, other AZs in the same region continue to provide services.

    AZ1

    IPv4 CIDR Block

    The IPv4 CIDR block of the subnet. A subnet is a unique CIDR block with a range of IP addresses in a VPC. Comply with the following principles when planning subnets:

    • Planning CIDR block size: After a subnet is created, the CIDR block cannot be changed. You need to plan the CIDR block in advance based on the number of IP addresses required by your service.
      • The subnet CIDR block cannot be too small. Ensure that the number of available IP addresses in the subnet meets service requirements. The first and last three addresses in a subnet are reserved for system use. For example, in subnet 10.0.0.0/24, 10.0.0.1 is the gateway address, 10.0.0.253 is the system interface address, 10.0.0.254 is used by DHCP, and 10.0.0.255 is the broadcast address.
      • The subnet CIDR block cannot be too large, either. If you use a CIDR block that is too large, you may not have enough CIDR blocks from the VPC available for new subnets, which can be a problem when you want to scale out services.
    • Avoiding subnet CIDR block conflicts: Avoid CIDR block conflicts if you need to connect two VPCs or connect a VPC to an on-premises data center.

    10.0.0.0/24

    IPv6 CIDR Block

    If you select this option, the system automatically assigns an IPv6 CIDR block to the created subnet. Currently, the IPv6 CIDR block cannot be customized. IPv6 CIDR block cannot be disabled after the subnet is created.

    -

    Association Route Table

    A route table contains a set of routes that are used to control the traffic routing for your subnets in a VPC. A default route table automatically comes with a VPC. Subnets in the VPC are automatically associated with the default route table. The default route table ensures that subnets in a VPC can communicate with each other.

    -

    Advanced Settings > Gateway

    Click to expand the configuration area and set this parameter.

    The gateway address of the subnet. Retain the default value unless there are special requirements.

    10.0.0.1

    Advanced Settings > DNS Server Address

    Click to expand the configuration area and set this parameter.

    DNS server addresses allow ECSs in a VPC subnet to communicate with each other using private domain names. You can also directly access cloud services through private DNS servers.

    If you want to use other public DNS servers for resolution, you can change the default DNS server addresses. Changing the default DNS server addresses may cause communication failures in the subnet.

    100.125.x.x

    Advanced Settings > NTP Server Address

    Click to expand the configuration area and set this parameter.

    If you want to add NTP server addresses for a subnet, you can specify NTP Server Address. The IP addresses here are added in addition to the default NTP server addresses.
    • If you add or change the NTP server addresses of a subnet, you need to renew the DHCP lease for or restart all the ECSs in the subnet to make the change take effect immediately.
    • If the NTP server addresses have been cleared out, restarting the ECSs will not help. You must renew the DHCP lease for all ECSs to make the change take effect immediately.

    192.168.2.1

    Advanced Settings > DHCP Lease Time

    Click to expand the configuration area and set this parameter.

    The period during which a client can use an IP address automatically assigned by the DHCP server. After the lease time expires, a new IP address will be assigned to the client. Unit: Day or hour

    If the time period is changed, the new lease time takes effect when the instance (such as an ECS) in the subnet is renewed next time. You can wait for the instance to be renewed automatically or manually modify the lease time. If you want the new lease time to take effect immediately, manually renew the lease or restart the ECS.

    -

    Advanced Settings > Tag

    Click to expand the configuration area and set this parameter.

    Add tags to help you quickly identify, classify, and search for your subnets.

    • Key: subnet_key1
    • Value: subnet-01

    Advanced Settings > Description

    Click to expand the configuration area and set this parameter.

    Enter the description about the subnet in the text box as required.

    The subnet description can contain a maximum of 255 characters and cannot contain angle brackets (< or >).

    -

  6. Click Create Now.

    Return to the subnet list and view the new subnet.

Constraints

  • After a subnet is created, some IP addresses are reserved by the system and cannot be assigned to any instance. For example, in a subnet with CIDR block of 192.168.0.0/24, the following IP addresses are reserved by default:
    • 192.168.0.0: Network ID. This address is the beginning of the private IP address range and will not be assigned to any instance.
    • 192.168.0.1: The gateway address of the subnet.
    • 192.168.0.253: Reserved for the system interface. This IP address is used by the VPC for external communication.
    • 192.168.0.254: DHCP service address.
    • 192.168.0.255: Network broadcast address.

    These IP addresses are for reference only. The system assigns reserved IP addresses based on your subnet settings. All other IP addresses in the subnet can be assigned to instances.