VLAN 연결 보기

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

VLAN 연결 및 세부정보 보기

Console

  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

연결의 데이터 영역 버전 확인

VLAN 연결을 만든 후에는 연결의 Dataplane 버전을 확인할 수 있습니다.

VLAN 연결의 Dataplane 버전을 확인하려면 Google Cloud CLI 또는 Compute Engine API를 사용합니다. Google Cloud 콘솔에는 연결의 데이터 영역 버전이 표시되지 않습니다.

양방향 전송 감지(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이 사용되는 것입니다.

다음 단계

  • Cross-Cloud Interconnect에 대한 자세한 내용은 Cross-Cloud Interconnect 개요를 참조하세요.

  • Cross-Cloud Interconnect 사용 시 발생할 수 있는 일반적인 문제에 대한 자세한 내용은 문제 해결을 참조하세요.