查看连接详细信息

您可以查看项目中所有专用互连连接的列表以及每个连接的详细信息。例如,您可以查看每个专用互连连接的名称、连接位于的对接网点以及连接的容量。

控制台

  1. 在 Google Cloud 控制台中,进入 Cloud Interconnect 物理连接标签页。

    转到物理连接

  2. 选择专用互连连接以查看其详细信息。

gcloud

  1. 列出项目中的所有专用互连连接:

    gcloud compute interconnects list
    

    输出:

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

  2. 通过传递连接名称来描述连接,以查看其更多相关信息。

    gcloud compute interconnects describe my-interconnect
    

    输出:

    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
    

后续步骤