Skip to content

Instantly share code, notes, and snippets.

@stefanandres
Created November 7, 2014 12:58
Show Gist options
  • Save stefanandres/a18c8f4bf9918b37b467 to your computer and use it in GitHub Desktop.
Save stefanandres/a18c8f4bf9918b37b467 to your computer and use it in GitHub Desktop.
# disable-tx
#
# disables NIC tx checksumming
description "disable-tx"
start on (runlevel [2345]
or starting networking)
stop on runlevel [!2345]
task
script
PATH=$PATH:/sbin/
ethtool -K em1 tx off
ethtool -K em2 tx off
end script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment