在Linux中,可以通过访问文件/sys/class/net/<if>/speed
来查看网卡速率。其中,<if>
是网卡名(interface)。
例如:
1 | [root@hgs ~]# cat /sys/class/net/enp2s0f0/speed |
输出结果为1000,表示网卡enp2s0f0
的速率为1000Mbps(Megabit per second,兆比特每秒)。
$$
\begin{aligned}
1000Mbps
&= 1000 \times 10^6 bit/s \\
&= 125 MB/s \approx 119 MiB/s
\end{aligned}
$$