Search This Blog

vendredi 4 avril 2014

Création PVLAN Hyper-V

Bonjour,

Voici un script qui vous permettra de créer vos PVLANs au sein de votre environnement Hyper-V.

# Création d'un VLAN de type isolé
Set-VMNetworkAdapterVlan -VMName SRV-1 -Isolated -PrimaryVlanId 2 -SecondaryVlanId 4
# Création d'un VLAN de type Promiscuous
Set-VMNetworkAdapterVlan -VMName SRV-3 -Promiscuous -PrimaryVlanId 2 -SecondaryVlanIdList 4-5
# Création d'un VLAN de type community
Set-VMNetworkAdapterVlan -VMName SRV-4 -community -PrimaryVlanId 2 -SecondaryVlanId 5

# Création Vlan Trunk
Set-VMNetworkAdapterVlan -ManagementOS -AllowedVlanIdList "2-4-5" -NativeVlanId 0 -Trunk -VMNetworkAdapterName "LAN-SORTIE"

Bon script et bon VLAN  :)

@bientôt Seyfallah Tagrerout
< >