Created
August 15, 2018 07:27
-
-
Save jeremysherriff/89d47003e90b5296b849d9ff5f212a2b to your computer and use it in GitHub Desktop.
Sophos UTM NIC fix - create /etc/udev/rules.d/21-my-nic.rules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://community.sophos.com/products/unified-threat-management/astaroorg/f/utm-9-3-beta/65895/9-302-2-bug-adapter-e1000e-hangs-reset | |
#ethtool -K eth0 gso off <- Can't automate this! | |
#ethtool -K eth0 gro off | |
#ethtool -K eth0 tso off | |
SUBSYSTEM=="net", ACTION=="add", ATTRS{vendor}=="0x8086", ATTRS{device}=="0x1502", RUN+="/lib/udev/nic-disable-tso" | |
SUBSYSTEM=="net", ACTION=="add", ATTRS{vendor}=="0x8086", ATTRS{device}=="0x1502", RUN+="/lib/udev/nic-disable-gro" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment