linux如何判断网络是百兆还是千兆
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux如何判断网络是百兆还是千兆相关的知识,希望对你有一定的参考价值。
参考技术A 必须测速
两台电脑
直接传文件。
实际网速跟很多情况有关。网线质量
路由器速率
双方的网卡
干扰
网络中有无感染病毒的主机。必须实际测速
。用socat
或者
ftp
之类在局域网内部直接传文件,看速率。
ethtool
eth0
mii-tool
-v
eth0
可以查看连接速率是100m
还是1000m
但这不一定等于网络实际可提供的带宽。所以得测速 参考技术B linux下如何看网卡是千兆还是百兆的方法如下:
使用ethtool命令。
ethtool是linux下用于查询及设置网卡参数的命令。
举例:
[root@hvrhub
~]#
ethtool
eth0
settings
for
eth0:
supported
ports:
[
tp
mii
]
supported
link
modes:
10baset/half
10baset/full
100baset/half
100baset/full
supports
auto-negotiation:
yes
advertised
link
modes:
10baset/half
10baset/full
100baset/half
100baset/full
advertised
auto-negotiation:
yes
speed:
100mb/s
------------------------------------>网卡速度
duplex:
full
port:
mii
phyad:
0
transceiver:
internal
auto-negotiation:
on
supports
wake-on:
pumbg
wake-on:
g
current
message
level:
0x00000033
(51)
link
detected:
yes
详细参数参考:(//后面是注释,是原文的译文)
ethtool
ethx
/
ethtool
–h
//显示ethtool的命令帮助(help)
ethtool
–i
ethx
//查询ethx网口的相关信息
ethtool
–d
ethx
//查询ethx网口注册性信息
ethtool
–r
ethx
//重置ethx网口到自适应模式
ethtool
–s
ethx
//查询ethx网口收发包统计
ethtool
–s
ethx
[speed
10|100|1000]\
//设置网口速率10/100/1000m
[duplex
half|full]\
//设置网口半/全双工
[autoneg
on|off]\
//设置网口是否自协商
[port
tp|aui|bnc|mii]\
//设置网口类型
如何查看imx6网卡是百兆还是千兆
其实查看网卡兆数的方法十分简单,只要使用ethtool命令就可以了。首先我们需要了解到ethtool是Linux下用于查询及设置网卡参数的命令,现在就开始测试一下吧。
输入指令如下所示:
root@imx6qdlsolo:~# ethtool eth0
Settings for eth0:
Supported ports: [ TP MII ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half100baseT/Full
1000baseT/Full
Supported pause frame use: Symmetric
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half100baseT/Full
1000baseT/Full
Advertised pause frame use: Symmetric
Advertised auto-negotiation: Yes
Link partner advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Link partner advertised pause frame use: Symmetric
Link partner advertised auto-negotiation: Yes
Speed: 1000Mb/s
Duplex: Full
Port: MII
PHYAD: 1
Transceiver: external
Auto-negotiation: on
Supports Wake-on: g
Wake-on: d
Link detected: yes
root@imx6qdlsolo:~#
详细参数参考:(//后面是注释,是原文的译文)
ethtool ethX /
ethtool –h //显示ethtool的命令帮助(help)
ethtool –i ethX //查询ethX网口的相关信息
ethtool –d ethX //查询ethX网口注册性信息
ethtool –r ethX //重置ethX网口到自适应模式
ethtool –S ethX //查询ethX网口收发包统计
ethtool –s ethX [speed 10|100|1000] //设置网口速率10/100/1000M
[duplex half|full] //设置网口半/全双工
[autoneg on|off] //设置网口是否自协商
[port tp|aui|bnc|mii] //设置网口类型
这样通过这个指令,我们成功地得到了所需的相关参数,一起来试一下吧。
以上是关于linux如何判断网络是百兆还是千兆的主要内容,如果未能解决你的问题,请参考以下文章