
Search the Knowledge Base: |
Search the Knowledge Base: |
The e1000 virtual device has TCP Segmentation Offloading (TSO) capability built into it.
Use ethtool to turn off TSO capability as a workaround to manage the MTU size and file transfers.
Note: There are no problems with unsuccessful file transfers with the SLES10 guest operating system.
To query TSO settings in a SLES9 virtual machine use the command:
ethtool -k eth0
To change TSO settings in a SLES9 virtual machine use the command:
ethtool -K eth0 tso off
BOOTPROTO=static
IPADDR=10.1.1.10
NETMASK=255.255.255.0
BROADCAST=10.1.1.255
NETWORK=10.1.1.0
STARTMODE=onboot
TYPE=Ethernet
POST_UP_SCRIPT='/etc/sysconfig/network/tsooff-eth0'
/etc/sysconfig/network/ifcfg-eth0: #!/bin/bash ETHTOOL=`which ethtool` ${ETHTOOL} -K eth0 tso off