rockyos 이더넷 속도 제한
일단 dnf install -y ethtool 으로 ethtool 을 설정하고. vi /etc/NetworkManager/dispatcher.d/21-eth0-speed 스크립트를 생성후 아래와 같이 작성해 주고 #!/bin/bash IFACE=$1 STATE=$2 if [[ "$IFACE" == "eth0" && "$STATE" == "up" ]]; then # Disable auto-negotiation ethtool -s $IFACE autoneg off # Set speed to 100baseT/Full ethtool -s $IFACE speed 100 duplex full fi 저장하고 chmod +x /etc/NetworkManager/dispatcher.d/21-eth0-speed 실행 권한..