红联Linux门户
Linux帮助

linux网卡检测命令

发布时间:2015-10-15 15:30:03来源:linux网站作者:北雨南萍

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

这个比较有用,帮助判断网络故障
/sbin/mii-tool
mii-tool(这是Linux下专门设置网卡工作模式的命令)


1. 查看网卡的工作模式,输入命令:
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。

 
2. 更改网卡的工作模式,输入命令:
mii-tool -F media [interface]
media可选的模式有100baseTx-FD、100baseTx-HD、10baseT-FD、10baseT-HD等。
Interface代表所选择的网卡,如eth0、eth1等,默认为eth0。
例如,设置网卡工作在10M半双工模式下,输入命令:
$ mii-tool -F 10baseT-HD eth0


3. 恢复网卡的自适应工作模式,输入命令:
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


Ubuntu实现双网卡双IP双待机:http://www.linuxdiyf.com/linux/14742.html