当我启动虚拟机时,它没有从 DHCP 获取 IP。
它有一个超时所以我需要:
ipconfig /发布 ipconfig /更新
多次
我使用 Windows Server 2019 上的启动应用程序执行此操作
while ($true) {
IF (((Test-NetConnection www.google.com -Port 80 -InformationLevel "Detailed").TcpTestSucceeded) -eq $true){
break;
}ELSE{
ipconfig /release
ipconfig /renew
}
start-sleep -seconds 1
}
开关为外置
如何修复此问题以便在启动时获取 IP?