Linux ETC

ethtool

2008.05.19 20:36

호스트웨이 조회 수:29609

ethtool 명령을 이용하여 랜카드 속도 및 전송 모드 지정하는 방법입니다.

1. 현재 eth0 설정 확인

아래와 같이 현재 eth0 카드의 설정을 확인합니다.

[root@sakang /]# ethtool eth0
Settings for eth0:
       Supported ports: [ TP MII ]
       Supported link modes:   10baseT/Half 10baseT/Full
                               100baseT/Half 100baseT/Full
       Supports auto-negotiation: Yes
       Advertised link modes:  10baseT/Half 10baseT/Full
                               100baseT/Half 100baseT/Full
       Advertised auto-negotiation: Yes
       Speed: 100Mb/s
       Duplex: Full

       Port: MII
       PHYAD: 1
       Transceiver: internal
       Auto-negotiation: on
       Supports Wake-on: pumbg
       Wake-on: d
       Current message level: 0x00000001 (1)
       Link detected: yes


현재 스피드가 100M 이고 전송모드는 Full Duplex  임을 확인할 수 있습니다.



2. 10M 로 변경하기

ethtool -s eth0 speed 10 duplex full autoneg on

위 명령으로 스피드를 10M 변경하고 확인해 봅시다.

[root@sakang /]# ethtool eth0
Settings for eth0:
       Supported ports: [ TP MII ]
       Supported link modes:   10baseT/Half 10baseT/Full
                               100baseT/Half 100baseT/Full
       Supports auto-negotiation: Yes
       Advertised link modes:  10baseT/Full
       Advertised auto-negotiation: Yes
       Speed: 10Mb/s
       Duplex: Full
       Port: MII
       PHYAD: 1
       Transceiver: internal
       Auto-negotiation: on
       Supports Wake-on: pumbg
       Wake-on: d
       Current message level: 0x00000001 (1)
       Link detected: yes

스피드가 10M 로 변경 되었습니다.

3. duplex 변경

아래 명령으로 전송모드를 변경할 수 있습니다.

ethtool -s eth0 speed 10 duplex half autoneg on

eth0 을 확인해 보면

Settings for eth0:
       Supported ports: [ TP MII ]
       Supported link modes:   10baseT/Half 10baseT/Full
                               100baseT/Half 100baseT/Full
       Supports auto-negotiation: Yes
       Advertised link modes:  10baseT/Half
       Advertised auto-negotiation: Yes
       Speed: 10Mb/s
       Duplex: Half

       Port: MII
       PHYAD: 1
       Transceiver: internal
       Auto-negotiation: on
       Supports Wake-on: pumbg
       Wake-on: d
       Current message level: 0x00000001 (1)
       Link detected: yes

전송 모드가 half Duplex 로 변경되었습니다.

이 상태에서 ethtool -s eth0 autoneg off 명령으로 자동협상기능을 끄고

ethtool -s eth0 autoneg on 명령으로 다시 켭니다.

그리고 나서 eth0 카드를 확인해 보면 100M Full Duplex 로 바뀌어져 있습니다.

이유는 eth0 카드와 연결된 스위치의 설정이 100M Full Duplex 이기 때문입니다.



사용 방법이 비슷한 mii-tool 이란 도구도 있으니 한번 사용해 보시기 바랍니다.
번호 제목 글쓴이 날짜 조회 수
366 삭제된 파일 복구 - 1 호스트웨이 2015.09.23 9164
365 리눅스 터미널 기반 모니터링 툴 "glances" 호스트웨이 2015.09.23 7812
364 Linux 파일명이 깨진파일 삭제 호스트웨이 2015.09.23 17611
363 mknod_장치파일을 만들어 사용 호스트웨이 2015.09.22 6499
362 /etc/fstab 등록 호스트웨이 2015.09.22 11124
361 /proc/sys/net/ipv4/conf/ 네트워크 세팅 호스트웨이 2015.09.22 9761
360 /proc/sys/net/ipv4 활용 서버보안 -3- 호스트웨이 2015.09.22 7148
359 사용하고 있던 외장하드가 마운트 되지 않는 경우 호스트웨이 2015.09.22 6458
358 filezilla 디렉토리 목록 조회 실패 호스트웨이 2015.09.22 8562
357 /dev/null 복구 호스트웨이 2015.09.21 7057
356 모든 파일 안의 문자열 치환하기 호스트웨이 2015.09.21 3964
355 Linux -(하이픈)으로 시작하는 파일 지우기 호스트웨이 2015.09.20 5509
354 서버 네트워크 대역폭 제한 호스트웨이 2015.09.20 5719
353 리소스 많이 차지하는 프로세스 찾기 호스트웨이 2015.09.20 4562
352 Touch 파일 용량 0바이트 만들기 호스트웨이 2015.09.20 6118
351 tar 분할압축하기 호스트웨이 2015.09.19 5879
350 rpm에서 원하는 파일만 풀어서 사용하기 호스트웨이 2015.09.19 4277
349 Linux chkrootkit을 이용한 백도어 설치 탐지 호스트웨이 2015.09.18 5938
348 dumpe2fs - 파일시스템 상세 정보 확인 호스트웨이 2015.09.18 5612
347 Proftp 설치 및 xinetd 에서 실행하기 file 호스트웨이 2015.09.18 5590