View previous topic :: View next topic |
Author |
Message |
FilthyPitDog Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
![](images/avatars/1656103562636f3c75c12fe.png)
Joined: 12 Jan 2021 Posts: 199 Location: South Pacific
|
Posted: Wed Oct 26, 2022 12:49 am Post subject: [Solved] Disabling “Large Send Offload (LSO)” |
|
|
Hey how can I completely disable Large Send Offload on my network? Im guessing I need to add something to /etc/conf.d/net but I cant find anything about it. Thanks
Last edited by FilthyPitDog on Wed Oct 26, 2022 2:33 am; edited 1 time in total |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
mike155 Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
Joined: 17 Sep 2010 Posts: 4438 Location: Frankfurt, Germany
|
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
FilthyPitDog Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
![](images/avatars/1656103562636f3c75c12fe.png)
Joined: 12 Jan 2021 Posts: 199 Location: South Pacific
|
Posted: Wed Oct 26, 2022 1:55 am Post subject: |
|
|
awesome thank you, that worked but one thing so I can use something like this
Code: | #!/bin/bash
/usr/sbin/ethtool --offload enp6s0 tso off gso off gro off |
but where would I put a network script to auto start on boot/login? |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
FilthyPitDog Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
![](images/avatars/1656103562636f3c75c12fe.png)
Joined: 12 Jan 2021 Posts: 199 Location: South Pacific
|
Posted: Wed Oct 26, 2022 2:32 am Post subject: |
|
|
i just added it to /etc/local.d/tsooff.start using default run level. cheers |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
grknight Retired Dev
![Retired Dev Retired Dev](/images/ranks/rank-retired.gif)
Joined: 20 Feb 2015 Posts: 2004
|
Posted: Wed Oct 26, 2022 12:48 pm Post subject: |
|
|
FilthyPitDog wrote: |
awesome thank you, that worked but one thing so I can use something like this
Code: | #!/bin/bash
/usr/sbin/ethtool --offload enp6s0 tso off gso off gro off |
but where would I put a network script to auto start on boot/login? |
To do this in /etc/conf.d/net (assuming you are using netifrc with /etc/init.d/net.enp6s0):
Code: | ethtool_offload_enp6s0="tso off gso off gro off" |
Then the local.d file is not necessary. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|