Powercli 批量添加vmkernel网络
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powercli 批量添加vmkernel网络相关的知识,希望对你有一定的参考价值。
$username = "root" $password = "mypassword" $ipstart = "192.168.1." $ipend = 23..25 $ipnew = 11 foreach ($iplist in $ipend) { $serverip = $ipstart + $iplist Connect-VIServer -Server $serverip -user $username -Password $password | Out-Null $kernelip = $ipstart + $ipnew New-VMHostNetworkAdapter -VirtualSwitch vSwitch0 -PortGroup "Mnagement Network" -IP $kernelip -SubnetMask 255.255.255.0 $ipnew = $ipnew + 1 Disconnect-VIServer -Server * -Confirm:$false }
本文出自 “汜水流年_” 博客,请务必保留此出处http://timefiles.blog.51cto.com/8475652/1964994
以上是关于Powercli 批量添加vmkernel网络的主要内容,如果未能解决你的问题,请参考以下文章