1
0
mirror of synced 2026-01-21 17:55:25 +00:00

2006-04-20 10:01:01 by steve

Add a commented out example of using ethtool to disable checksumming.
This commit is contained in:
steve 2006-04-20 10:01:01 +00:00
parent 63156e56ce
commit 7fbb0fe5a0

View File

@ -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