View connection details

You can view a list of all Cross-Cloud Interconnect connections in your project and see details about each one. For example, you can view the name of each connection, its location, and its capacity.

Console

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

    Go to Physical connections

  2. Select the appropriate connection.

gcloud

  1. To list all Cloud Interconnect connections that are in your project, use the gcloud compute interconnects list command:

    gcloud compute interconnects list
    

    You should see output similar to the following:

    NAME             LOCATION       OPERATIONAL_STATUS  ADMIN_ENABLED
    my-interconnect  sin-zone1-388  ACTIVE              True
    ...
    

  2. To view more information about a connection, use the gcloud compute interconnects describe my-interconnect command:

    gcloud compute interconnects describe my-interconnect CONNECTION_NAME
    

    Replace CONNECTION_NAME with the name of your Cross-Cloud Interconnect connection.

    You should see output similar to the following:

    adminEnabled: true
    circuitInfos:
    \\- customerDemarcId: 'COLGX: MMRC-COL3-CO17-RU35 Ports 121, 122'
      googleCircuitId: GCP-00067
      googleDemarcId: 'COLGX: MMRC-COL3-CO17-RU35 Ports 121, 122'
    creationTimestamp: '2023-02-08T22:52:54.425-08:00'
    googleReferenceId: '562358802'
    id: '9075210876797658793'
    interconnectType: IT_PRIVATE
    kind: compute#interconnect
    linkType: LINK_TYPE_ETHERNET_10G_LR
    location: https://www.googleapis.com/compute/....../cmh-zone1-2377
    name: my-interconnect
    nocContactEmail: my-name@gmail.com
    operationalStatus: OS_ACTIVE
    provisionedLinkCount: 1
    requestedLinkCount: 1
    selfLink: https://www.googleapis.com/compute/....../my-interconnect
    state: ACTIVE
    

What's next