不积小流,无以成江海。
分类: 系统运维
2023-04-06 08:37:51
ethtool 是用于查询及设置网卡参数的命令。
使用概要:
ethtool ethx //查询ethx网口基本设置,其中 x 是对应网卡的编号,如eth0、eth1等等
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] [duplex half|full] [autoneg on|off] //设置网口速率10/100/1000m、设置网口半/全双工、设置网口是否自协商
ethtool -e eth0 magic 0x10798086 offset 0x10 value 0x1a 修改网卡eeprom内容(0x1079 网卡device id , 0x8086网卡verdor id )
ethtool -e eth0 : dump网卡eeprom内容
使用举例:
1)[root@linux /]# ethtool eth1
settings for eth1:
supported ports: [ tp ]
supported link modes: 10baset/half 10baset/full
100baset/half 100baset/full
1000baset/full
supports auto-negotiation: yes
advertised link modes: 10baset/half 10baset/full
100baset/half 100baset/full
1000baset/full
advertised auto-negotiation: yes
speed: 1000mb/s
duplex: full
port: twisted pair
phyad: 0
transceiver: internal
auto-negotiation: on
supports wake-on: umbg
wake-on: d
link detected: yes
//////////////////////////////////////////
个人总结:不link的情况举例,很可能网线没有插。