diff options
author | Maciej S. Szmigiero <mail@maciej.szmigiero.name> | 2021-03-27 23:32:35 +0100 |
---|---|---|
committer | Maciej S. Szmigiero <mail@maciej.szmigiero.name> | 2021-03-27 23:34:02 +0100 |
commit | b8373edc844297fb54333ffab69d0cd0a7b5e0b8 (patch) | |
tree | 4a123ac06fbab82087b4a329babfa01de98e0432 /doc | |
parent | doc/net.example.Linux: fix typo in "ethtool_coalesce_eth0" description (diff) | |
download | netifrc-b8373edc844297fb54333ffab69d0cd0a7b5e0b8.tar.gz netifrc-b8373edc844297fb54333ffab69d0cd0a7b5e0b8.tar.bz2 netifrc-b8373edc844297fb54333ffab69d0cd0a7b5e0b8.zip |
net/ethtool.sh: add "eee" and "tunable" setting operations
This adds an ability to set "eee" and "tunable" ethtool parameters of a
network interface.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/net.example.Linux.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/net.example.Linux.in b/doc/net.example.Linux.in index 3bd2ee1..b2c0f82 100644 --- a/doc/net.example.Linux.in +++ b/doc/net.example.Linux.in @@ -1275,12 +1275,18 @@ #ethtool_pause_eth0="autoneg off #rx on tx on" +# Enable Energy-Efficient Ethernet +#ethtool_eee_eth0="eee on" + # Enable adaptive RX and TX coalescing #ethtool_coalesce_eth0="adaptive-rx on adaptive-tx on" # Change ring buffer settings #ethtool_ring_eth0="" +# Set RX copy-break at 1500 bytes +#ethtool_tunable_eth0="rx-copybreak 1500" + # Enable all offload settings #ethtool_offload_eth0="rx on tx on sg on tso on ufo on gso on gro on lro on" @@ -1309,13 +1315,13 @@ # Additionally, there is a special control variable, if you need to change the # order of option processing. The default order is: -# flash change-eeprom change pause coalesce ring offload identify nfc rxfh-indir ntuple +# flash change-eeprom change pause eee coalesce ring offload tunable identify nfc rxfh-indir ntuple # Set global order to default -#ethtool_order="flash change-eeprom change pause coalesce ring offload identify nfc rxfh-indir ntuple" +#ethtool_order="flash change-eeprom change pause eee coalesce ring offload tunable identify nfc rxfh-indir ntuple" # Hypothetical network card that requires a change-eeprom toggle to enable flashing -#ethtool_order_eth0="change-eeprom flash change pause coalesce ring offload nfc rxfh-indir ntuple" +#ethtool_order_eth0="change-eeprom flash change pause eee coalesce ring offload tunable nfc rxfh-indir ntuple" #----------------------------------------------------------------------------- # Firewalld support |