Hyper-V添加内部NAT网络
使用powershell (管理员权限)执行 1、创建虚拟交换机,等同于在Hyper-V管理器界面中新建虚拟网络交换机 <# 说明: New-VMSwitch 是创建虚拟交换机的指令 -SwitchName 是指定创建交换机的名字 "NAT-VM" 是交换机的名字 (名字可以随意起,但是需要能看懂和记住) -SwitchType 指定虚拟交换机的类型(内部,专用) Internal 交换机的类型,分别有(Internal,Private) #> <# -SwitchType说明: Specifies the type of the switch to be created. Allowed values are Internal and Private. To create an External virtual switch, specify either the NetAdapterInterfaceDescription… Read More »