1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 15:35:27 +02:00

ethtool: add examples (#5307)

This commit is contained in:
Adam Herst 2021-02-24 11:30:45 -05:00 committed by GitHub
parent e2082f8adc
commit 4364446e17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,22 @@
> Display and modify Network Interface Controller (NIC) parameters.
> More information: <http://man7.org/linux/man-pages/man8/ethtool.8.html>.
- Display the current settings for an interface:
`ethtool {{eth0}}`
- Display the driver information for an interface:
`ethtool --driver {{eth0}}`
- Display the network usage statistics for an interface:
`ethtool --statistics {{eth0}}`
- Blink one or more LEDs on an interface for 10 seconds:
`ethtool --identify {{eth0}} {{10}}`
- Set the link speed, duplex mode, and parameter autonegotiation for a given interface:
`ethtool -s {{eth0}} speed {{10|100|1000}} duplex {{half|full}} autoneg {{on|off}}`