Duplicate a connection for redundancy

If you have a single Dedicated Interconnect connection, you can create a second one so that you have redundant connections. Google recommends redundancy so that if one connection fails, the other connection can continue to serve traffic.

To create a redundant Dedicated Interconnect connection, you must create it in the same metropolitan area (city) as the existing one, but in a different edge availability domain (metro availability zone). If you don't, the connections won't be redundant.

Console

To find the city of the existing Dedicated Interconnect connection:

  1. In the Google Cloud console, go to the Cloud Interconnect Physical connections tab.

    Go to Physical connections

  2. Select the existing Dedicated Interconnect connection to view its details page.

  3. In the Details section, view the location address and record the city name. This is the city where the redundant connection must be configured.

To create the redundant Dedicated Interconnect connection:

  1. In the Google Cloud console, go to the Physical connections tab.

    Go to Physical connections

  2. Click Set up connection.

  3. Select Dedicated Interconnect, and then click Continue.

  4. Select Order new Dedicated Interconnect, and then click Continue.

  5. Specify the details of the Dedicated Interconnect connection:

    • Name: A name for the connection. This name is displayed in the Google Cloud console and is used by the Google Cloud CLI to reference the connection, such as my-interconnect-redundant.
    • Location: Select Choose, and then filter the list of locations to the city where your existing connection is located. Select the same facility (if it supports more than one edge availability domain) or a different facility. To view the list of cities and their edge availability domains, see All colocation facilities.
    • Capacity: The total capacity of your connection, which is determined by the number and size of the circuits that you order. Use the same value as the existing connection.
  6. Click Next.

  7. Clear the Create redundant interconnect checkbox, and then click Continue to dismiss the SLA message.

    Normally, when you create a Dedicated Interconnect connection, we recommend that you order a second redundant connection. In this case, because you're creating a redundant connection for an existing connection, you don't need to order another connection.

  8. Optional: Select an edge availability domain (metro availability zone).

    If the location that you selected has more than one edge availability domain, you can choose a particular zone. Choose the zone that doesn't contain the existing Dedicated Interconnect connection that you're building redundancy for. If you have no additional connections in the same city, the Google Cloud console chooses the correct zone for you.

  9. Click Next.

  10. Specify your contact information:

    • Company name: The name of your organization to put in the LOA as the party authorized to request a connection.
    • Technical contact: An email address where notifications about this connection are sent. You don't need to enter your own address; you are included in all notifications. You can specify only one address.
  11. Review your order. Check that your Dedicated Interconnect connection details and contact information are correct. If everything is correct, click Place order. If not, go back and edit the connection details.

  12. On the order confirmation page, review the next steps and then select Done.

gcloud

To find the city of the existing Dedicated Interconnect connection:

  1. Describe the existing Dedicated Interconnect connection to view its location:

    gcloud compute interconnects describe INTERCONNECT_NAME
    

    In the output, view the location field, which shows a URL such as https://www.googleapis.com/compute/...<example>.../sin-zone1-388. The last part of the URL is the name of the location (sin-zone1-38).

  2. Describe the location to view the city in which it's located, passing the location name from the previous step:

    gcloud compute interconnects locations describe LOCATION_NAME
    

To create the redundant Dedicated Interconnect connection:

  1. Choose a facility where the redundant Dedicated Interconnect connection is to be located. From the list of locations, select one that's in the same city but in a different edge availability domain from the existing connection.

    For example, if the existing connection is in iad-zone2-1, select a location that's in Ashburn but in zone 1, such as iad-zone1-1. You need this location name when you create the redundant connection.

  2. Create the redundant Dedicated Interconnect connection in the location that you selected:

    gcloud compute interconnects create INTERCONNECT_NAME \
       --customer-name=NAME \
       --interconnect-type=DEDICATED \
       --link-type=LINK_TYPE \
       --location=LOCATION_NAME \
       --requested-link-count=NUMBER_OF_LINKS \
      [--noc-contact-email=EMAIL_ADDRESS] \
      [--description=STRING]
    

    Replace the following values:

    • INTERCONNECT_NAME: the name for the Dedicated Interconnect connection; this name is displayed in the Google Cloud console and is used by the Google Cloud CLI to reference the connection, such as my-interconnect-redundant
    • NAME: the name of your organization to put in the LOA as the party authorized to request a connection
    • LINK_TYPE: the per-circuit capacity of your Dedicated Interconnect connection; use the same value as the existing connection:
      • If your existing connection is made up of 10-Gbps circuits, replace LINK_TYPE with LINK_TYPE_ETHERNET_10G_LR.
      • If your existing connection is made up of 100-Gbps circuits, replace LINK_TYPE with LINK_TYPE_ETHERNET_100G_LR.
    • LOCATION_NAME: the name of the location that you selected in the previous step
    • NUMBER_OF_LINKS: number of circuits of type link-type; use the same value as the existing connection. For example, if the existing connection has 8 x 10-Gbps (80 Gbps) circuits, this number would be 8. If the existing connection has 2 x 100-Gbps (200 Gbps) circuits, this number would be 2.
    • EMAIL_ADDRESS and STRING: optional; for the NOC contact, you can specify only one email address—you don't need to enter your own address because you are included in all notifications

After you order a Dedicated Interconnect connection, Google emails you a confirmation and allocates ports for you. When the allocation is complete, Google generates LOA-CFAs for your connections and emails them to you. All of the automated emails are sent to the NOC contact and the person who ordered the Dedicated Interconnect connection.

You can use the Dedicated Interconnect connection only after your connections have been provisioned and tested for light levels and IP connectivity.

What's next