Currently, your network card should be set to 100 Mbit Full Duplex, and auto-configuration (auto-negotiation) should be off, Let us see how to enable auto negotiation
</span> <pre># ethtool eth0 | egrep "Speed|Duplex|Auto-neg" Speed: 100Mb/s Duplex: Full Auto-negotiation: off
After the adjustment, auto-negotiation must be activated to ensure the full network speed. Doing so will interrupt the network connection for a few seconds.
# ethtool -s eth0 autoneg on
After this change check to make sure the speed is now correct:
# ethtool eth0 | egrep "Speed|Duplex|Auto-neg" Speed: 1000Mb/s Duplex: Full Auto-negotiation: on
If instead the output shows:
Speed: 100Mb/s Duplex: Half Auto-negotiation: on
then the switch your server is connected to has not yet been changed. In this case, you can once again set the speed manually:
# ethtool -s eth0 speed 100 duplex full autoneg off
If the speed has been set correctly, then the static setting must be removed from the configuration files.
Debian/Ubuntu
The following line in the file /etc/network/interfaces needs to be removed or changed to a comment (with a comment character #):
post-up mii-tool -F 100baseTx-FD eth0
CentOS
The following line in the file /etc/sysconfig/network-scripts/ifcfg-eth0 needs to be removed or changed to a comment (with a comment character #):
ETHTOOL_OPTS="speed 100 duplex full autoneg off"
OpenSuSE
The following line in the file /etc/sysconfig/network/ifcfg-eth0 needs to be removed or changed to a comment (with a comment character #):
ETHTOOL_OPTIONS="speed 100 duplex full autoneg off"
Windows Server 2008
First, open the Change adapter settings page in the Network and Sharing Center of the Control Panel.
Via the properties of the LAN connection you can configure the network interface card.
Under the “Advanced” tab you will find the option “Speed & Duplex“.
Select “Auto Negotiation” once the reconfiguration of the switch has been done.
When you confirm the setting with “OK” the network connection will be briefly interrupted. You may then need to reconnect via Remote Desktop.
VMware ESXi
Changing vmnic1 to auto-negotiation:
# esxcfg-nics -a vmnic1
Enter esxcfg-nics without any parameters to get help. For more information on configuring the duplex modes and auto-negotiation, see kb.vmware.com/kb/1004089
Reference:
http://wiki.hetzner.de/index.php/Netzwerkkonfiguration_wegen_Switchanpassung/en