Virtuelle Server nehmen nach Stromausfall nicht mehr die richtige IP
Falls ein Server im ipconfig /all eine APIPA Adresse sowie die eigentliche Adresse mit (dupliziert) anzeigt, dann kann folgendes die Lösung sein:
To turn off gratuitous ARP in the guest operating system:
- Power on the virtual machine and log in.
- Click Start, type regedit, and click OK.
- Locate this registry key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
- Click Edit > New, and click DWORD Value.
- Type ArpRetryCount.
- Right-click the ArpRetryCount registry entry and click Modify.
- In the Value box, type
0and click OK. - Exit the Registry Editor.
- Shut down the guest operating system and power off the virtual machine.
- Change the virtual machine back to a network vSwitch with the uplink.
- Power on the virtual machine.
Powershell
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" -Name "ArpRetryCount" -Value 0 -PropertyType DWORD -Force
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" -Name "ArpRetryCount" -Value 0 -PropertyType DWORD -Force
CMD
reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" /v ArpRetryCount /t REG_DWORD /d 0 /f
Hilfe für die aktuelle Seite
Jitbit HelpDesk