接続の詳細を表示する

プロジェクト内のすべての Cross-Cloud Interconnect 接続のリストを表示して、それぞれの接続の詳細を確認できます。たとえば、各接続の名前、ロケーション、容量を表示できます。

コンソール

  1. Google Cloud コンソールで、Cloud Interconnect の [物理接続] タブに移動します。

    [物理接続] に移動

  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 は、Cross-Cloud 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
    

次のステップ