我刚刚在服务器上安装了标准核心版 Server 2008 r2,并启用了 hyperv。我无法让 Hyperv 控制台连接到机器,我收到消息说
Connecting to the virtual machine management interface
其次是
You might not have permission to perform this task
我已经使用HVRemote工具确保所有用户和防火墙权限都正常,所有服务都已正确启动,我什至关闭了防火墙以查看是否有帮助,但均无济于事。有任何想法吗?
好吧,我找到了问题的解决方案,事实证明使用 IP 地址访问 hyper-v 服务器会导致这种情况,如果您使用主机名它可以正常工作。
在 Hyper-V 服务器上的防火墙上打开端口 137 和 138 ;-)
在 Hyper-V 服务器核心上管理防火墙:netsh advfirewall set currentprofile settings remotemanagement enable
对于更改 IP 配置:
更改 IP 地址: Netsh 接口 ipv4 设置地址名称=LAN 源=静态地址=192.168.1.254 掩码=255.255.255.0 网关=192.168.1.1
更改 IP DNS : Netsh interface ipv4 add dnsserver name="LAN" address=192.168.1.100 index=1
显示接口:Netsh 接口 ipv4 显示接口
显示接口配置:Netsh 接口 ipv4 显示配置
重命名接口:netsh interface set interface name="Connexion au réseau local" newname=LAN
禁用网络接口:netsh interface set interface LAN disable
更改计算机名称:Netdom renamecomputer OldName /NewName:NewName
奥利维尔 D。