3 # This script disables checksumming within the domU
9 # Source the common functions
11 if [ -e /usr/lib/xen-tools/common.sh ]; then
12 . /usr/lib/xen-tools/common.sh
17 logMessage Script $0 starting
19 # To avoid UDP checksum problems.
20 installDebianPackage ${prefix} ethtool
22 sed -i'' -e 's/^exit 0$/ethtool -K eth0 tx off\n\0/' ${prefix}/etc/rc.local
27 logMessage Script $0 finished