mii-tool命令手册
mii-tool:网络设备协商工具
功能描述
使用mii-tool命令可以查看和配置网络设备的协商方式。
有时网卡需要配置协商方式,比如10/100/1000M 的网卡半双工、全双工、自动协商的配置。但大多数的网络设备是不用我们来修改协商,因为大多数网络设备接入的时候,都采用自动协商来解决相互通信的问题。不过自动协商也不是万能的,有时也会出现错误,比如丢包率比较高,这时就需要我们手动指定网卡的协商方式。
命令语法
mii-tool [选项] [设备接口]
选项含义
选项 | 含义 |
---|---|
-v | 显示网卡的信息 |
-F | 更改网卡的协商方式 |
-r | 恢复网卡至自动协商模式 |
-R | 重设MII到开启状态 |
-w | 查看网卡连接的状态变化 |
-l | 写入事件到系统日志 |
-A | 指定特定的网络接口 |
-V | 显示版本信息 |
参考实例
(1)查看网卡ens33的工作模式
[root@cnLinuxer ~]# mii-tool ens33
ens33: negotiated 1000baseT-FD flow-control, link ok
(2)设置网卡工作在 100Mb/s 半双工模式下
[root@cnLinuxer ~]# mii-tool -F 100baseTx-HD ens33
(3)查看网卡的工作模式及更详细的信息
[root@cnLinuxer ~]# mii-tool -v ens33
ens33: 1000 Mbit, half duplex, link ok
product info: Yukon 88E1011 rev 3
basic mode: 100 Mbit, half duplex
basic status: link ok
capabilities: 1000baseT-FD 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
advertising: 1000baseT-FD 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
link partner: 1000baseT-HD 1000baseT-FD 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
(4)恢复网卡至自动协商模式
[root@cnLinuxer ~]# mii-tool -r ens33
restarting autonegotiation...
(5)最后,验证网卡是否在自动协商模式
[root@cnLinuxer ~]# mii-tool -v ens33
ens33: negotiated 1000baseT-FD flow-control, link ok
product info: Yukon 88E1011 rev 3
basic mode: autonegotiation enabled
basic status: autonegotiation complete, link ok
capabilities: 1000baseT-FD 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
advertising: 1000baseT-FD 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
link partner: 1000baseT-HD 1000baseT-FD 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
有收获,点个在看
评论