How to Change Speed and Duplex of Ethernet card in Linux
Use ethtool
Install
#apt-get install ethtool
Example:
#ethtool eth0
#ethtool bond0
Change the Speed and Duplex settings
#ethtool -s eth0 autoneg on
#ethtool -s eth0 speed 10 duplex half autoneg off
#ethtool -s eth0 speed 100 duplex full autoneg off
Manual
#man ethtool
Install
#apt-get install ethtool
Example:
#ethtool eth0
#ethtool bond0
Change the Speed and Duplex settings
#ethtool -s eth0 autoneg on
#ethtool -s eth0 speed 10 duplex half autoneg off
#ethtool -s eth0 speed 100 duplex full autoneg off
Manual
#man ethtool
Komentar