[关闭]
@Alex-Zhao 2018-11-29T11:50:21.000000Z 字数 695 阅读 142

PowerCLI新增和修改标准交换机配置

vmware虚拟化


在ESXi主机上新建标准交换机并且新建端口组

  1. $hostlist= get-cluster <CLUSTER_NAME> | get-vmhost
  2. $hostlist
  3. foreach ($hosts in $hostlist) {
  4. $hosts.name
  5. $switchs = $hosts | New-VirtualSwitch -Name <SWITCH_NAME> -Nic vmnic5,vmnic4
  6. # $switchs = get-virtualswitch -vmhost $hosts -name vSwitch1
  7. new-virtualportgroup -Virtualswitch $switchs -name '10-vlan10' -vlanid 10
  8. new-virtualportgroup -Virtualswitch $switchs -name '11-vlan11' -vlanid 11
  9. }

在ESXi主机上修改标准交换机的端口组

  1. $hostlist= get-cluster CLUSTER_NAME | get-vmhost
  2. $hostlist
  3. foreach ($hosts in $hostlist) {
  4. $hosts.name
  5. $switchs= get-virtualswitch -vmhost $hosts -name <SWITCH_NAME>
  6. $portgroup=Get-VirtualPortGroup -Name "vlan606" -VMHost $hosts
  7. Set-VirtualPortGroup -VirtualPortGroup $portgroup -vlanid 606 -name 'vlan6'
  8. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注