Hyper-V Creating a NAT Network and vSwitch
Thanks to: https://www.petenetlive.com/
Problem
I’m without access to all my test equipment at the moment, so when I needed to do some testing, I thought I’d use Hyper-V on my new work laptop. I needed to ‘knock up’ a quick vSwitch that would NAT my test machines, to my laptops connected NIC.
Solution
Open an administrative PowerShell window, and execute the following three commands. Note: You can change the values in RED to suit your own requirements, or leave them as they are to copy my network setup.
New-VMSwitch -SwitchName "NAT-Switch" -SwitchType Internal New-NetIPAddress -IPAddress 192.168.200.1 -PrefixLength 24 -InterfaceAlias "vEthernet (NAT-Switch)" New-NetNAT -Name "NAT-Network" -InternalIPInterfaceAddressPrefix 192.168.200.0/24
As far as Hyper-V is concerned that’s it! Now simply connect your virtual machines to the new switch.
Remember you have a NAT switch, it’s not doing DHCP, you will need to assign your virtual machines static IP addresses, though you can of course configure a DHCP server on one of your virtual machines.
Comentarios
Publicar un comentario
Dime si la información de este blog te sirvio.