List the vMotion IP Address and Subnet mask for each vSphere ESX host using PowerCLI
I ran into a couple misconfigurations, so I wrote a quick online to audit all of my host configurations without having to use the dreaded host profiles
get-vmhost | % {(get-view $_.id).config.vmotion.ipconfig} | select ipaddress, subnetmask
Tags: PowerCLI, PowerShell, vmware