Adding a Network Interface

Scenarios

If your ECS requires multiple network interfaces, you can attach them to your ECS.

Procedure

  1. Log in to the management console.

  2. Click image1 in the upper left corner and select your region and project.

  3. Under Computing, click Elastic Cloud Server.

  4. Click the name of the target ECS.

    The page providing details about the ECS is displayed.

  5. On the NICs tab, click Add NIC.

  6. Set the subnet and security group for the network interface to be added.

    **Figure 1** Configuring the subnet and security group

    Figure 1 Configuring the subnet and security group

    • Security Group: You can select multiple security groups. In such a case, the rules of these security groups are effectively aggregated to create one set of rules to apply to the ECS.

    • Subnet: specifies the subnet to which the network interface to be added belongs.

    • New Private IP Address: If you want to add a network interface with a specified IP address, enter an IP address into the New Private IP Address field. I

  7. Click OK.

Follow-up Procedure

Some OSs cannot identify newly added network interfaces. In this case, you must manually activate the network interfaces. Ubuntu is used as an example in the following network interface activation procedure. Required operations may vary among systems. For additional information, see the documentation for your OS.

  1. Locate the row containing the target ECS and click Remote Login in the Operation column.

    Log in to the ECS.

  2. Run the following command to view the network interface name:

    ifconfig -a

    In this example, the network interface name is eth2.

  3. Run the following command to switch to the target directory:

    cd /etc/network

  4. Run the following command to open the interfaces file:

    vi interfaces

  5. Add the following information to the interfaces file:

    auto eth2

    iface eth2 inet dhcp

  6. Run the following command to save and exit the interfaces file:

    :wq

  7. Run either the ifup eth2 command or the /etc/init.d/networking restart command to make the newly added network interface take effect.

    X in the preceding command indicates the network interface name and SN, for example, ifup eth2.

  8. Run the following command to check whether the network interface name obtained in step 2 is displayed in the command output:

    ifconfig

    For example, check whether eth2 is displayed in the command output.

    • If yes, the newly added network interface has been activated, and no further action is required.

    • If no, the newly added network interface failed to be activated. Go to step 9.

  9. Log in to the management console. Locate the row containing the target ECS, click More in the Operation column, and select Restart.

  10. Run the following command to check whether the network interface name obtained in step 2 is displayed in the command output:

    • If yes, no further action is required.

    • If no, contact customer service.