查看 VLAN 连接

您可以查看项目中所有 VLAN 连接的列表以及每个连接的详细信息。例如,您可以查看连接的名称、其关联的 Cloud Router 路由器的名称,以及它是 Cross-Cloud Interconnect 还是其他 Cloud Interconnect 连接选项的连接。您还可以查看连接的 Dataplane 版本。

查看 VLAN 连接及其详细信息

控制台

  1. 在 Google Cloud 控制台中,进入 Cloud Interconnect VLAN 连接标签页。

    转到 VLAN 连接

    Cross-Cloud Interconnect 的 VLAN 连接列为专用(跨云)类型的连接。

  2. 选择 VLAN 连接,以查看其详细信息。

gcloud

  1. 如需列出项目中的所有 VLAN 连接,请使用 gcloud compute interconnects attachments list 命令

    gcloud compute interconnects attachments list
    

    您应该会看到类似如下所示的输出。 Cross-Cloud Interconnect 连接的 VLAN 连接列为 DEDICATED 类型的连接:

    NAME: my-vlan-attachment
    REGION: us-east4
    TYPE: DEDICATED
    INTERCONNECT: my-connection
    ROUTER: my-router
    
    NAME: my-vlan-attachment-2
    REGION: us-east4
    TYPE: DEDICATED
    INTERCONNECT: my-connection
    ROUTER: my-router
    ...
    
  2. 如需查看有关连接的更多信息,请使用 gcloud compute interconnects attachments describe 命令

    gcloud compute interconnects attachments describe ATTACHMENT_NAME \
        --region= REGION
    

    请替换以下内容:

    • ATTACHMENT_NAME:VLAN 连接的名称
    • REGION:连接所在的区域

    您将看到如下所示的输出:

    adminEnabled: true
    bandwidth: BPS_1G
    cloudRouterIpAddress: 169.254.245.153/29
    creationTimestamp: '2023-03-17T23:32:27.087-07:00'
    customerRouterIpAddress: 169.254.245.154/29
    dataplaneVersion: 2
    encryption: NONE
    id: '4461230117430551572'
    interconnect: https://www.googleapis.com/compute/v1/projects...my-connection
    kind: compute#interconnectAttachment
    mtu: 1500
    name: my-vlan-attachment
    operationalStatus: OS_ACTIVE
    privateInterconnectInfo:
    tag8021q: 246
    region: https://www.googleapis.com/compute/v1/projects...us-east4
    router: https://www.googleapis.com/compute/v1/projects...my-router
    selfLink: https://www.googleapis.com/compute/v1/projects...my-vlan-attachment
    stackType: IPV4_ONLY
    state: ACTIVE
    type: DEDICATED
    vlanTag8021q: 246

检查连接的 Dataplane 版本

创建 VLAN 连接后,您可以查看连接的 Dataplane 版本。

如需查看 VLAN 连接的 Dataplane 版本,请使用 Google Cloud CLI 或 Compute Engine API。连接的 Dataplane 版本不会出现在 Google Cloud Console 中。

在启用双向转发检测 (BFD) 等特定功能之前,您可能需要验证连接是否正在使用 Dataplane v2

gcloud

如需检查连接的 Dataplane 版本,请运行以下命令:

gcloud compute interconnects attachment describe ATTACHMENT_NAME \
    --region= NAME

请替换以下内容:

  • ATTACHMENT_NAME:连接的名称
  • REGION:连接所在的区域

在输出中,查找值为 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: 1440
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。

后续步骤