VMware Cloud Community
Pilu1978
Enthusiast
Enthusiast
Jump to solution

vmnic LinkSpeed

How to find the linkspeed of vmnics on esxi 6.7 hosts using esxcli? Please help.

0 Kudos
1 Solution

Accepted Solutions
LucD
Leadership
Leadership
Jump to solution

Thanks for that.
I think I already replied


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

View solution in original post

0 Kudos
7 Replies
LucD
Leadership
Leadership
Jump to solution

Give me one good reason why I should reply to your threads?
You never answer back nor do you indicate if a reply you got is correct.

Btw, did you even try the Search function in this community?


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

0 Kudos
Pilu1978
Enthusiast
Enthusiast
Jump to solution

Hi LucD,

I think I selected one of your reply as correct answer in my last post (Subject: SRS Enabled) and I thought that was my reply as well as  acknowledgement. But my apologies if I do not reply specifically and it is nothing intentional and I will try to be more responsive now onwards.

 

Yes I have searched it but I have not got what I wanted. I specifically need to know if I can check the link speed of a vmnic using esxcli?

0 Kudos
LucD
Leadership
Leadership
Jump to solution

Try like this

Get-VMHost -PipelineVariable esx |
ForEach-Object -Process {
    $esxcli = Get-EsxCli -VMHost $esx -V2
    $esxcli.network.nic.list.Invoke() |
    Select @{N='VMHost';E={$esx.Name}},
        Name,Speed
}


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

0 Kudos
Pilu1978
Enthusiast
Enthusiast
Jump to solution

I have now acknowledged and replied on most of the posts wherever applicable.

Now can I get my answer?

0 Kudos
LucD
Leadership
Leadership
Jump to solution

Thanks for that.
I think I already replied


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

0 Kudos
Pilu1978
Enthusiast
Enthusiast
Jump to solution

Yes Thanks for your help. Really appreciated.

0 Kudos