2020年2月10日月曜日

VMware PowerCLI でポートグループを操作するサンプル

概要

VMware.PowerCLI でポートグループを操作してみました
サンプルのコマンドレットを紹介します

環境

  • CentOS 7.7.1908
  • .NET SDK 3.1
  • PowerShell 6.2.3
  • VMware.PowerCLI 11.5.0.14912921

指定の vDS 配下にポートグループを作成する

  • New-VDPortgroup -VDSwitch vds -name pg -NumPorts 123 -VlanId 456

ポートグループを削除する

  • Get-VDPortGroup -Name pg | Remove-VDPortGroup

ポートグループのセキュリティポリシーを変更する

  • $pg = New-VDPortgroup -VDSwitch vds -name pg -NumPorts 123 -VlanId 456
  • $pg | Get-VDSecurityPolicy | Set-VDSecurityPolicy -AllowPromiscuous $true -MacChanges $true -ForgedTransmits $true

その他関連操作

  • Set-VDPortgroup
  • Export-VDPortgroup
  • Set-VDSecurityPolicy

参考サイト

0 件のコメント:

コメントを投稿