Files
tldr/pages.zh/linux/ethtool.md

28 lines
653 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ethtool
> 显示和修改网络接口控制器NIC参数。
> 更多信息:<https://manned.org/ethtool>。
- 显示接口的当前设置:
`ethtool {{eth0}}`
- 显示接口的驱动程序信息:
`ethtool --driver {{eth0}}`
- 显示接口支持的所有功能:
`ethtool --show-features {{eth0}}`
- 显示接口的网络使用统计信息:
`ethtool --statistics {{eth0}}`
- 在接口上闪烁一个或多个LED灯持续10秒
`ethtool --identify {{eth0}} {{10}}`
- 设置给定接口的链路速度、双工模式和参数自动协商:
`ethtool -s {{eth0}} speed {{10|100|1000}} duplex {{half|full}} autoneg {{on|off}}`