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 이란 도구도 있으니 한번 사용해 보시기 바랍니다.
번호 제목 글쓴이 날짜 조회 수
86 하드디스크의 배드블럭을 검사하는 명령어 (badblocks) 호스트웨이 2012.03.30 21070
85 현재 설치된 메모리 정보를 확인하는 방법 호스트웨이 2012.03.30 32485
84 Swap 메모리 늘리기 file 호스트웨이 2012.03.30 67217
83 top 명령어 및 옵션 설명 file 호스트웨이 2012.03.27 52564
82 arp 명령 사용법 호스트웨이 2012.03.27 28285
81 서버의 바이오스, 메인보드에서 지원하는 최대 메모리 확인 방법 호스트웨이 2012.03.23 19424
80 VSFTP 에서 사용하는 port를 변경하기 호스트웨이 2012.03.23 39723
79 포트를 사용중인 프로세스 확인하기 file 호스트웨이 2012.03.23 19225
78 OSI 7 Layer 의 이해 file 호스트웨이 2012.03.23 18320
77 vsftp사용 시 root 계정 이용하기 file 호스트웨이 2012.03.23 18502
76 yum repository 국내 mirror 설정 file 호스트웨이 2012.03.23 36931
75 scp 명령어를 이용한 파일 복사 및 전송 호스트웨이 2012.03.16 264602
74 at 명령어를 이용한 예약 작업 호스트웨이 2012.03.16 21869
73 history 조회시 '날짜,시간' 표시하기 호스트웨이 2012.03.16 49583
72 비대해진 로그 파일 내용을 비우는 방법 - /dev/null 호스트웨이 2012.03.16 61423
71 grep 명령어 사용하기 file 호스트웨이 2012.03.16 19211
70 데비안 백포트 사용해 보기 호스트웨이 2012.03.16 18246
69 리눅스 서버 누가 언제 무슨 작업을 했는지 확인 방법 호스트웨이 2012.03.09 93530
68 SSH 패스워드 없이 자동 로그인 하는 방법 호스트웨이 2012.03.09 18097
67 DHCP 환경에서의 resolv.conf 초기화 현상 호스트웨이 2012.03.09 23626