Hyper-V host network cards change & re-config
i need replace network cards in hyper-v 2012 r2 hosts
any easy way carry on config? or need remove & done again scratch?
setup done pretty that:
https://www.starwindsoftware.com/blog/deploy-hyper-v-vm-switches-and-vnic-consistency-with-powershell
seb
hi,
if can, remove nic team before change it. sometime can difficult ui different reason.
if it's not possible (because nic have fail) here small piece of script should help.
use automate cleaning of team after changing network adapter on node of large platform.
$teamname = [your nic team name]
$nic = get-netlbfoteammember -team $teamname |?{$_.failurereason -eq "nicnotpresent"} $nicname = $nic.name if($nic -ne $null){ remove-netlbfoteammember -name $nicname -team $teamname }
after that, can idead remove "ghost" device device manager
https://support.microsoft.com/en-us/kb/315539
if correctly cleaned, can try reapply configuration script.
cedric.
Windows Server > Hyper-V
Comments
Post a Comment