无法找到如何在 Windows 中更新网络速度

无法找到如何在 Windows 中更新网络速度

我想了解 Windows 中网络速度的值在哪里以及更改它的选项。

我正在使用 Windows Sysinternals bginfo,它可以生成包含有关系统的重要信息的桌面背景。 https://learn.microsoft.com/en-us/sysinternals/downloads/bginfo

它显示网络速度为 4GB。

我毫不怀疑它是正确的。我已经看到过它在繁忙时段的性能,它从未超过 3.4GB。

我能想到的最接近的答案是链接速度

Get-NetAdapter 显示 NIC 速度设置为 10Gbps。

C:\Windows\System32>wmic NIC where NetEnabled=true get Name,Speed
Name                      Speed
vmxnet3 Ethernet Adapter  10000000000

PS C:\Users\xxxxx> Get-NetAdapter

Name                      InterfaceDescription                    ifIndex Status       MacAddress             LinkSpeed
----                      --------------------                    ------- ------       ----------             --------- Ethernet0                 vmxnet3 Ethernet Adapter                      5 Up           xx-xx-xx-xx-xx-xx        10 Gbps

Get-NetAdapterHardwareInfo 显示以 GT/s 为单位的速度,即每秒千兆传输次数。1 GT/s 是 GB/s 的 8 倍

PS C:\Users\xxxxx> get-NetAdapterHArdwareInfo

Name                           Segment Bus Device Function Slot NumaNode PcieLinkSpeed PcieLinkWidth Version
----                           ------- --- ------ -------- ---- -------- ------------- ------------- -------
Ethernet0                            0  11      0        0  192               5.0 GT/s            32 1.0

Windows 机器上没有设置 QoS 规则。

运行 Get-NetQosPolicy 什么也没显示。

这是 VMware 环境中的虚拟机 Esxi 7.0U3。底层 vmnic 看起来不错。

   [xxxxxxx@xxxxxxxxx:~] esxcfg-nics vmnic2 -l
Name    PCI          Driver      Link Speed      Duplex MAC Address       MTU    Description
vmnic0  0000:62:00.0 nenic       Up   20000Mbps  Full   XX:XX:XX:XX:XX:XX 1500   Cisco Systems Inc Cisco VIC Ethernet NIC
vmnic1  0000:62:00.1 nenic       Up   20000Mbps  Full   XX:XX:XX:XX:XX:XX 9000   Cisco Systems Inc Cisco VIC Ethernet NIC
vmnic2  0000:62:00.2 nenic       Up   20000Mbps  Full   XX:XX:XX:XX:XX:XX 9000   Cisco Systems Inc Cisco VIC Ethernet NIC
vmnic3  0000:62:00.3 nenic       Up   20000Mbps  Full   XX:XX:XX:XX:XX:XX 9000   Cisco Systems Inc Cisco VIC Ethernet NIC
vmnic4  0000:62:00.4 nenic       Up   20000Mbps  Full   XX:XX:XX:XX:XX:XX 9000   Cisco Systems Inc Cisco VIC Ethernet NIC
vmnic5  0000:62:00.5 nenic       Up   20000Mbps  Full   XX:XX:XX:XX:XX:XX 1500   Cisco Systems Inc Cisco VIC Ethernet NIC
    ````


There do not appear to be any setting caps:

esxcli system settings advanced -o '/Disk/Throughput'


 Path: /Disk/BandwidthCap
   Type: integer
   Int Value: 4294967294
   Default Int Value: 4294967294
   Min Value: 10
   Max Value: 4294967294
   String Value:
   Default String Value:cap on disk throughput (IO/s) usage
   Valid Characters:
   Description: cap on disk bandwidth (KB/s) usage

   Path: /Disk/ThroughputCap
   Type: integer
   Default Int Value: 4294967294
   Int Value: 4294967294
   Min Value: 10
   Max Value: 4294967294
   String Value:
   Default String Value:
   Valid Characters:
   Description: 

There are no limitations set on the Port groups and no Network I/O Control rules or anything on the VDS.

相关内容