Hyper-v给虚拟机设置静态IP

首先以管理员权限运行powershell,然后创建新的虚拟交换机NAT- Hyper ,名字自己取,注意复制粘贴容易缺少“”,执行:

New-VMSwitch -SwitchName “NAT-Hyper” -SwitchType Internal -Verbose

然后执行Get-NetAdapter查看所有网路适配器,找到刚刚创建的 NAT-Hyper对应ifIndex 值

然后执行New-NetIPAddress –IPAddress 192.168.18.1 -PrefixLength 24 -InterfaceIndex 42 –Verbose新建一个NAT网关192.168.18.1,注意替换InterfaceIndex为ifIndex值,网关只有不和现有的局域网冲突可以随心建

最后在创建一个nat网络执行New-NetNat -Name NATNetwork -InternalIPInterfaceAddressPrefix 192.168.18.0/24 -Verbose

然后设置成刚才的网络适配器

虚拟机如下设置,可以不用设置Routers

然后应用一下网络

即可通网

You May Also Like

About the Author: ice.zhai

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注