Hyper-V

Hyper-V 가상머신 PVLAN 구성

delmaster 2015. 3. 13. 06:30

서브넷의 단순화, 보안 등의 이유로 PVLAN을 구성하여 사용합니다.


PVLAN 모드 

1. Community : 같은 PVLAN과 Promiscuous와 통신 가능

2. Isolated : Promiscuous와 통신 가능

3. Promiscuous : 모든 포트와 통신 가능


Hyper-V 가상머신에 적용할때 파워쉘을 통해 가능합니다.


Community 구성

Set-VMNetworkAdapterVlan -VMName <가상머신명> -PrimaryVlan <VlanID> -SecondaryVlanId <VlanID> -Community


Community 확인

Get-VMNetworkAdapterVlan -VMName <가상머신명>




Isolated 구성

Set-VMNetworkAdapterVlan -VMName <가상머신명> -PrimaryVlanId <VlanID> -SecondaryVlanId <VlanID> -Isolated


Isolated 확인

Get-VMNetworkAdapterVlan -VMName <가상머신명>




Promiscuous 구성

Set-VMNetworkAdapterVlan -VMName <가상머신명> -PrimaryVlanId <VlanID> -SecondaryVlanIdList <VlanID범위> -Promiscuous


Promiscuous 확인

Get-VMNetworkAdapterVlan -VMName <가상머신명>



Comunity와 Isolated는 마지막 옵션만 다르게 주면 되고 Promiscuous는 SecondaryVlanIDList옵션으로 범위 지정하면됩니다.




Vlan 관련 내용 초기화 및 확인

Set-VMNetworkAdapterVlan -VMName <가상머신명> -Untagged

Get-VMNetworkAdapterVlan -VMName <가상머신명> 




'Hyper-V' 카테고리의 다른 글

SCVMM 2012 R2 설치(3) - ADK  (0) 2015.03.31
SCVMM 2012 R2 설치(1) - 기본 구성  (0) 2015.03.31
SC VMM 시스템 요구 사항  (0) 2015.03.31
Hyper-V 차이점 보관용 디스크 생성 방법  (0) 2015.03.23
Hyper-V SR-IOV  (0) 2015.03.12
Hyper-V 가상머신 Vlan Trunk 구성  (0) 2015.03.12
Hyper-V Synology 설치 및 구성  (0) 2015.03.05
Hyper-V ICS IP 변경  (0) 2015.02.07