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
    

アタッチメントの Dataplane バージョンを確認する

VLAN アタッチメントを作成した後、アタッチメントの Dataplane バージョンを確認できます。

VLAN アタッチメントの Dataplane のバージョンは、Google Cloud CLI と Compute Engine API でのみ確認できます。アタッチメントの Dataplane バージョンは、Google Cloud コンソールには表示されません。

双方向フォワーディング検出(BFD)などの特定の機能を有効にする前に、アタッチメントで Dataplane v2 が使用されていることを確認する必要があります。

gcloud

アタッチメントの Dataplane バージョンを確認するには、次のコマンドを実行します。

gcloud compute interconnects attachments describe ATTACHMENT_NAME

ATTACHMENT_NAME は、確認するアタッチメントの名前に置き換えます。

出力で、値が 2dataplaneVersion フィールドを探します。

出力に dataplaneVersion フィールドが表示されない場合は、VLAN アタッチメントはバージョン 1 を使用しています。

次の出力例は、Dataplane v2 を使用する VLAN アタッチメントを示しています。

adminEnabled: true
bandwidth: BPS_10G
cloudRouterIpAddress: 169.254.132.105/29
creationTimestamp: '2022-03-04T10:08:11.526-08:00'
customerRouterIpAddress: 169.254.132.106/29
dataplaneVersion: 2
id: '8542849272424426340'
interconnect: https://www.googleapis.com/compute/v1/projects/customer-project/global/interconnects/my-interconnect
kind: compute#interconnectAttachment
mtu: 1460
name: my-attachment
operationalStatus: OS_ACTIVE
privateInterconnectInfo:
  tag8021q: 1100
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/ipv6-cf-test-1
selfLink: https://www.googleapis.com/compute/v1/projects/customer-project/regions/us-west1/interconnectAttachments/my-attachment
state: ACTIVE
type: DEDICATED
vlanTag8021q: 1100

API

interconnectAttachments.get メソッドを使用して dataplaneVersion フィールドの値を取得します。

GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/regions/REGION/interconnectAttachments/ATTACHMENT_NAME

次のように置き換えます。

  • PROJECT_ID: VLAN アタッチメントを含むプロジェクト
  • REGION: VLAN アタッチメントが配置されているリージョン
  • ATTACHMENT_NAME: VLAN アタッチメントの名前

出力で、値が 2 の dataplaneVersion フィールドを探します。

出力に dataplaneVersion フィールドが表示されない場合は、VLAN アタッチメントはバージョン 1 を使用しています。

次のステップ