Skip to content

Instantly share code, notes, and snippets.

@jeremysherriff
Created August 15, 2018 07:27
Show Gist options
  • Save jeremysherriff/89d47003e90b5296b849d9ff5f212a2b to your computer and use it in GitHub Desktop.
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
# 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