Need to determine what the uplink policy is for your DVSwitches? Here is a quick PowerCLI snippet to do that. I’d go into more detail but I don’t have time this moment. Consider this longer than a tweet, but shorter than my normal blog post. ![]()
Here is the corresponding screen in the vSphere Client (pardon the font issues, I’m running blind-person-size-font) with the relevant portion highlighted:

And the code:
PS> $pgName = 'Name of your DV port group' PS> $pg = Get-View -ViewType DistributedVirtualPortgroup -Filter @{ Name = $pgName } PS> $pg.Config.DefaultPortConfig.UplinkTeamingPolicy.UplinkPortOrder ActiveUplinkPort : {dvUplink1, dvUplink2} StandbyUplinkPort : Inherited : True DynamicType : DynamicProperty :

No comments yet.