Configuración de NAT en Windows Server 2016 desde PowerShell
Hola a todos!
En este caso vamos a hablar de como configurar un NAT para que podamos conectar a Internet nuestro laboratorio de Hyper-V, podemos usar un enrutador virtual.
Desde Windows Server 2016 se puede usar NAT en los conmutadores virtuales para poder conectar las VM a Internet sin la necesidad de configurar un enrutador virtual.
Una forma de hacerlo es mediante el interface gráfico, pero
A continuación vamos a ver como hacerlo usando un script de PowerShell.
New-VMSwitch -SwitchName «Mi_NAT» -SwitchType Internal
New-NetIPAddress -IPAddress 192.168.1.1 -PrefixLength 24 -InterfaceAlias «vEthernet (Mi_NAT)»
New-NetNat -Name Mi_NATNetwork -InternalIPInterfaceAddressPrefix 192.168.1.0/24
Espero que os resulte útil.
Un saludo
Did you enjoy this post? Why not leave a comment below and continue the conversation, or subscribe to my feed and get articles like this delivered automatically to your feed reader.
Comments
// Begin Comments & Trackbacks ?>No comments yet.
Leave a comment