查看連線詳細資料

您可以查看專案中所有專屬互連網路連線的清單,以及每個連線的詳細資料。舉例來說,您可以查看每個專屬互連網路連線的名稱、連線所在的主機代管機房,以及連線的容量。

主控台

  1. 在 Google Cloud 控制台中,前往 Cloud Interconnect「Physical connections」(實體連線) 分頁。

    前往「Physical connections」(實體連線)

  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
    

後續步驟