이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 10. Adjusting Network Settings
10.1. Changing Network Adapter Settings 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
To check the speed and settings of network adapters, use the
ethtool command which works now for most network interface cards. To check the adapter settings of eth0 run:
ethtool eth0
# ethtool eth0
To force a speed change to 1000Mbps, full duplex mode, run:
ethtool -s eth0 speed 1000 duplex full autoneg off
# ethtool -s eth0 speed 1000 duplex full autoneg off
To make a speed change permanent for
eth0, set or add the ETHTOOL_OPT environment variable in /etc/sysconfig/network-scripts/ifcfg-eth0:
ETHTOOL_OPTS="speed 1000 duplex full autoneg off"
ETHTOOL_OPTS="speed 1000 duplex full autoneg off"
This environment variable is sourced in by the network scripts each time the network service is started.