View connection details

You can view a list of all the Dedicated Interconnect connections in your project and details about each one. For example, you can view the name of each Dedicated Interconnect connection, the colocation facility in which it's located, and the capacity of the connection.

Console

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

    Go to Physical connections

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

gcloud

  1. List all Dedicated Interconnect connections that are in your project:

    gcloud compute interconnects list
    

    Output:

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

  2. Describe a connection to view more information about it by passing the name of the connection:

    gcloud compute interconnects describe my-interconnect
    

    Output:

    adminEnabled: true
    availableFeatures:
    ‐ IF_MACSEC
    creationTimestamp: '2017-08-13T20:26:05.783-07:00'
    description: test interconnect
    googleIpAddress: 169.254.123.122/29
    googleReferenceId: '12345678'
    id: '1234567890123456789'
    interconnectType: DEDICATED
    kind: compute#interconnect
    linkType: ETHERNET_10G_LR
    location:
    https://www.googleapis.com/compute/....../sin-zone1-388
    name: my-interconnect
    operationalStatus: ACTIVE
    peerIpAddress: 169.254.123.123/29
    provisionedLinkCount: 1
    requestedLinkCount: 1
    requestedFeatures:
    ‐ IF_MACSEC
    selfLink:
    https://www.googleapis.com/compute/....../my-interconnect
    

What's next