VLAN アタッチメントを表示する

プロジェクト内のすべての VLAN アタッチメントのリストと、その詳細を表示できます。たとえば、アタッチメントの名前、アッタチメントが Dedicated Interconnect 用か Partner Interconnect 用か、関連する Cloud Router を表示できます。Dataplane のバージョンも確認できます。

VLAN アタッチメントとその詳細を表示する

コンソール

  1. Google Cloud コンソールで、Cloud Interconnect の [VLAN アタッチメント] タブに移動します。

    [VLAN アタッチメント] に移動

  2. VLAN アタッチメントを選択して、その詳細を表示します。

gcloud

  1. プロジェクト内のすべての VLAN アタッチメントをリストします。

    gcloud compute interconnects attachments list
    

    出力:

    NAME: my-attachment
    REGION: us-east1
    TYPE: PARTNER
    INTERCONNECT: some-partner-interconnect
    ROUTER: my-router
    
    NAME: my-second-attachment
    REGION: us-west1
    TYPE: DEDICATED
    INTERCONNECT: some-dedicated-interconnect
    ROUTER: my-second-router
    ...
    
  2. 詳細を表示する VLAN アタッチメントを describe コマンドに指定します。

    gcloud compute interconnects attachments describe my-attachment
    

    出力:

    adminEnabled: true
    bandwidth: BPS_10G
    cloudRouterIpAddress: 169.254.194.169/29
    creationTimestamp: '2022-03-04T10:08:51.610-08:00'
    customerRouterIpAddress: 169.254.194.170/29
    dataplaneVersion: 2
    id: '8652605636960316252'
    interconnect: https://www.googleapis.com/compute/v1/projects/customer-project/global/interconnects/some-dedicated-interconnect
    kind: compute#interconnectAttachment
    mtu: 1460
    name: my-second-attachment
    operationalStatus: OS_ACTIVE
    privateInterconnectInfo:
      tag8021q: 1101
    region: https://www.googleapis.com/compute/v1/projects/customer-project/regions/us-west1
    router: https://www.googleapis.com/compute/v1/projects/customer-project/regions/us-west1/routers/my-second-router
    selfLink: https://www.googleapis.com/compute/v1/projects/customer-project/regions/us-west1/interconnectAttachments/my-second-attachment
    state: ACTIVE
    type: DEDICATED
    vlanTag8021q: 1101
    

次のステップ