From 7fbb0fe5a05856ef82b7fa9b5baff78845065c81 Mon Sep 17 00:00:00 2001 From: steve Date: Thu, 20 Apr 2006 10:01:01 +0000 Subject: [PATCH] 2006-04-20 10:01:01 by steve Add a commented out example of using ethtool to disable checksumming. --- etc/hook.d/40-setup-networking | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/etc/hook.d/40-setup-networking b/etc/hook.d/40-setup-networking index caa75b0..48bf770 100755 --- a/etc/hook.d/40-setup-networking +++ b/etc/hook.d/40-setup-networking @@ -29,7 +29,12 @@ iface eth0 inet static address ${ip} gateway ${gateway} netmask ${netmask} + # post-up ethtool -K eth0 tx off +# +# The commented out line above will disable TCP checksumming which +# might resolve problems for some users. It is disabled by default +# E_O_STATIC else @@ -48,6 +53,12 @@ iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet dhcp +# post-up ethtool -K eth0 tx off + +# +# The commented out line above will disable TCP checksumming which +# might resolve problems for some users. It is disabled by default +# E_O_DHCP fi