linux下检测网卡链接命令mii-tool

linux下查看网卡是否有物理网线链接的命令linux

这个比较有用,帮助判断网络故障web

/sbin/mii-tool网络

mii-tool(这是Linux下专门设置网卡工做模式的命令)app

1. 查看网卡的工做模式,输入命令:spa

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#mii-tool -v
SIOCGMIIREG on eth0 failed: Input /output  error
eth0: negotiated 100baseTx-FD, link ok
   product info: vendor 00:50:43, model 11 rev 1
   basic mode:   autonegotiation enabled
   basic status: autonegotiation complete, link ok
   capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
   advertising:  100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
   link partner: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
SIOCGMIIREG on eth1 failed: Input /output  error
eth1: negotiated 100baseTx-FD, link ok
   product info: vendor 00:50:43, model 11 rev 1
   basic mode:   autonegotiation enabled
   basic status: autonegotiation complete, link ok
   capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
   advertising:  100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
   link partner: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD

从以上信息中能够看出,这两块网卡工做在100M全双工自适应模式下,“100BaseTx-FD”意为100M Full Duplex。rest

  

2. 更改网卡的工做模式,输入以下Linux命令code

mii-tool -F media [interface]orm

media可选的模式有100baseTx-FD、100baseTx-HD、10baseT-FD、10baseT-HD等。ci

Interface表明所选择的网卡,如eth0、eth1等,默认为eth0。get

例如,设置网卡工做在10M半双工模式下,输入命令:

1
$ mii-tool -F 10baseT-HD eth0

3. 恢复网卡的自适应工做模式,输入命令:

1
mii-tool -r eth0

更详细的使用方法能够用mii-tool -h来得到。

mii-tool: invalid option -- h

usage: mii-tool [-VvRrwl] [-A media,... | -F media] [interface ...]

       -V, --version               display version information

       -v, --verbose               more verbose output

       -R, --reset                 reset MII to poweron state

       -r, --restart               restart autonegotiation

       -w, --watch                 monitor for link status changes

       -l, --log                   with -w, write events to syslog

       -A, --advertise=media,...   advertise only specified media

       -F, --force=media           force specified media technology

media: 100baseT4, 100baseTx-FD, 100baseTx-HD, 10baseT-FD, 10baseT-HD,

       (to advertise both HD and FD) 100baseTx, 10baseT

若是想深刻体验LINUX系统的新手,也能够先下载一个方德Linux软件中心试用一下。

免费下载地址:http://www.nfs-cloud.cn:81/appCenter/open/softcenter

相关文章
相关标签/搜索