VLAN-Anhänge aufrufen

Sie haben die Möglichkeit, sich eine Liste aller VLAN-Anhänge in Ihrem Projekt und Details zu jedem einzelnen anzeigen zu lassen. So können Sie den Namen eines Anhangs und dessen zugehörigen Cloud Routers abrufen, unabhängig davon, ob es sich um einen Anhang für Dedicated Interconnect oder Partner Interconnect handelt. Sie können auch seine Dataplane-Version prüfen.

VLAN-Anhänge und zugehörige Details aufrufen

Console

  1. Wechseln Sie in der Google Cloud Console zum Cloud Interconnect-Tab VLAN-Anhänge.

    Zu „VLAN-Anhänge“

  2. Wählen Sie einen VLAN-Anhang aus, um dessen Details anzusehen.

gcloud

  1. Listen Sie alle VLAN-Anhänge auf, die sich in Ihrem Projekt befinden:

    gcloud compute interconnects attachments list
    

    Ausgabe:

    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. Beschreiben Sie den VLAN-Anhang, um weitere Informationen über diesen zu erhalten:

    gcloud compute interconnects attachments describe my-attachment
    

    Ausgabe:

    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
    

Nächste Schritte