查看連線詳細資料

您可以查看專案中所有 Cross-Cloud Interconnect 連線的清單,並查看每個連線的詳細資料。舉例來說,您可以查看每個連線的名稱、位置和容量。

主控台

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

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

  2. 選取適當的連線。

gcloud

  1. 如要列出專案中的所有 Cloud Interconnect 連線,請使用 gcloud compute interconnects list 指令

    gcloud compute interconnects list
    

    您應該會看到類似以下的輸出內容:

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

  2. 如要查看連線的更多資訊,請使用 gcloud compute interconnects describe my-interconnect 指令

    gcloud compute interconnects describe my-interconnect CONNECTION_NAME
    

    CONNECTION_NAME 替換為跨雲 Interconnect 連線的名稱。

    畫面會顯示類似以下的輸出:

    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
    

後續步驟