查看 VLAN 连接

您可以查看项目中所有 VLAN 连接的列表以及每个连接的详细信息。例如,您可以查看某连接的名称,它是专用互连还是合作伙伴互连,及其关联的 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 连接以查看关于它的详细信息。

    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 版本。

您只能使用 Google Cloud CLI 和 Compute Engine API 检查 VLAN 连接的 Dataplane 版本。连接的 Dataplane 版本不会出现在 Google Cloud Console 中。

在启用双向转发检测 (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。

后续步骤