Conectar un Host a una red Virtual (Script)
Se aplica a: System Center 2012 R2 Virtual Machine Manager, System Center 2012 - Virtual Machine Manager
Para hacer que las redes lógicas disponibles a las máquinas virtuales en una red virtual externa, debe asociar una red lógica con el adaptador de red físico en un host y configurar una red virtual.
Para obtener más información acerca de cómo configurar la configuración de red en los hosts de Hyper-V, consulte cómo configurar opciones de red en un Host de Hyper-V.
El siguiente script toma como entrado para el VMHostName, LogNetName, HostAdapterName, y VirtualNetName parámetros y asocia el host con una red lógica. La secuencia de comandos, a continuación, crea una red virtual en el host.
# Description: This script associates a virtual machine host with a logical
# network and then creates a virtual network for the host.
Param (
[parameter(Mandatory=$true)]
[String] $VMHostName=$(throw "Please provide the name of a virtual machine host."),
[parameter(Mandatory=$true)]
[String] $LogNetName=$(throw "Please provide the name of a logical network."),
[parameter(Mandatory=$true)]
[String] $HostAdapterName=$(throw "Please provide the name of the host adapter."),
[parameter(Mandatory=$true)]
[String] $VirtualNetName=$(throw "Please provide the virtual network name.")
)
# Get the virtual machine host.
$VMHost = Get-SCVMHost -ComputerName $VMHostName
# Get the logical network.
$LogNet = Get-SCLogicalNetwork -Name $LogNetName
# Get the network adapter for the host.
$HostAdapter = Get-SCVMHostNetworkAdapter -VMHost $VMHost -Name $HostAdapterName
# Set the logical network on the host.
Set-SCVMHostNetworkAdapter -VMHostNetworkAdapter $HostAdapter -AddOrSetLogicalNetwork $LogNet
# Create the virtual network.
New-SCVirtualNetwork -Name $VirtualNetName -Description "External virtual network for $VMHost" -VMHost $VMHost -VMHostNetworkAdapter $HostAdapter