VLAN 연결 및 그룹 보기

프로젝트에 포함된 모든 VLAN 연결의 목록과 각 VLAN 연결에 대한 세부정보를 볼 수 있습니다. 예를 들어 연결 이름, Dedicated Interconnect 또는 Partner Interconnect 연결 여부, 연결된 Cloud Router를 볼 수 있습니다. 또한 데이터 영역 버전을 확인할 수 있습니다.

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 연결을 기술하여 VLAN에 대한 추가 정보를 확인합니다.

    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
    

다음 단계