The Hoof & Paw
DocsCategoriesTagsView the current conditions from the WolfspyreLabs WeatherstationToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

scratchpad for ethtool notes

A quick and dirty scratchpad for notes on ethtool

list interfaces

1
`ip a list|awk '/^[0-9]+/ {print $2}'|sed -e '/lo:/d' -e 's/:$//'`
1
ethtool --show-ring enp0s2
1
2
3
4
5
6
7
8
--show-time-stamping
--show-pause
--show-features
--show-coalesce
--show-channels
--set-channels
--phy-statistics
--statistics
1
2
3
4
5
ethtool -a|--show-pause DEVNAME	Set pause options
ethtool -A|--pause DEVNAME	Set pause options
[ autoneg on|off ]
[ rx on|off ]
[ tx on|off ]
1
ethtool -c|--show-coalesce DEVNAME	Show coalesce options
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ethtool -C|--coalesce DEVNAME	Set coalesce options
[adaptive-rx on|off]
[adaptive-tx on|off]
[rx-usecs N]
[rx-frames N]
[rx-usecs-irq N]
[rx-frames-irq N]
[tx-usecs N]
[tx-frames N]
[tx-usecs-irq N]
[tx-frames-irq N]
[stats-block-usecs N]
[pkt-rate-low N]
[rx-usecs-low N]
[rx-frames-low N]
[tx-usecs-low N]
[tx-frames-low N]
[pkt-rate-high N]
[rx-usecs-high N]
[rx-frames-high N]
[tx-usecs-high N]
[tx-frames-high N]
[sample-interval N]