VLAN アタッチメントとグループを表示する

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

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

コンソール

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

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

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

gcloud

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

    gcloud compute interconnects attachments list
    

    出力は次のようになります。

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

    gcloud compute interconnects attachments describe my-attachment
    

    出力は次のようになります。

    adminEnabled: true
    attachmentGroup: https://www.googleapis.com/compute/v1/projects/customer-project/global/interconnectAttachmentGroups/example-attachment-group
    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/example-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
    

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

コンソール

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

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

  2. [アタッチメント グループ] フィールドで、アタッチメント グループの名前をクリックして、そのグループの詳細情報を表示します。

gcloud

  1. プロジェクト内のすべての VLAN アタッチメント グループを一覧表示するには、次のコマンドを使用します。

    gcloud compute interconnects attachments groups list
    

    出力は次のようになります。

    NAME                ATTACHMENTS             INTENDED_SLA             CONFIGURED_SLA
    attachment-group-1                          PRODUCTION_NON_CRITICAL  NO_SLA
    attachment-group-2  us-east4/attachment-1   PRODUCTION_NON_CRITICAL  PRODUCTION_NON_CRITICAL
                        us-east4/attachment-2
    attachment-group-3  us-east4/attachment-3   PRODUCTION_CRITICAL      PRODUCTION_CRITICAL
                        us-east4/attachment-4
                        us-west2/attachment-5
                        us-west2/attachment-6
    
  2. 特定の VLAN アタッチメント グループの詳細を表示するには、次のコマンドを使用します。GROUP_NAME は、アタッチメント グループの名前に置き換えます。

    gcloud compute interconnects attachments groups describe GROUP_NAME
    

    出力は次のようになります。

    attachments:
      us-east4/attachment-1:
        attachment: https://www.googleapis.com/compute/v1/projects/my-project/regions/us-east4/interconnectAttachments/attachment-1
      us-east4/attachment-2:
        attachment: https://www.googleapis.com/compute/v1/projects/my-project/regions/us-east4/interconnectAttachments/attachment-2
    configured:
      availabilitySla:
        effectiveSla: PRODUCTION_NON_CRITICAL
    description: my attachment group
    intent:
      availabilitySla: PRODUCTION_NON_CRITICAL
    kind: compute#interconnectAttachmentGroup
    logicalStructure:
      regions:
      - metros:
        - facilities:
          - facility: '1'
            zones:
            - attachments:
              - https://www.googleapis.com/compute/v1/projects/my-project/regions/us-east4/interconnectAttachments/attachment-1
              zone: zone1
            - attachments:
              - https://www.googleapis.com/compute/v1/projects/my-project/regions/us-east4/interconnectAttachments/attachment-2
              zone: zone2
          metro: IAD
        region: us-east4
    name: attachment-group-2
    selfLink: https://www.googleapis.com/compute/v1/projects/my-project/global/interconnectAttachmentGroups/attachment-group-2
    

次のステップ