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 이란 도구도 있으니 한번 사용해 보시기 바랍니다.
번호 제목 글쓴이 날짜 조회 수
326 리눅스 간단 시스템 점검 1편 호스트웨이 2012.11.14 4128
325 vi 편집기에서 모든글자를 대소문자로 변경할때 사용하는 명령어 호스트웨이 2012.11.23 4134
324 VNC-server 설치 및 설정 호스트웨이 2012.10.12 4155
323 리눅스 dmesg 명령어 file 호스트웨이 2012.12.06 4158
322 rpm에서 원하는 파일만 풀어서 사용하기 호스트웨이 2015.09.19 4276
321 [ERROR] ftp error 500 OOPS: cannot change directory:/home/ 호스트웨이 2012.12.21 4284
320 ngrinder를 이용한 부하 테스트 - 1) Controller 설치 file 호스트웨이 2015.04.08 4285
319 /dev/null 과 /dev/zero의 차이 file 호스트웨이 2012.10.05 4295
318 디렉토리(폴더) 색상 변경하기 file 호스트웨이 2015.09.08 4295
317 명령어 dstat 사용하기 호스트웨이 2015.09.01 4370
316 ifconfig 항목 설명 호스트웨이 2012.11.22 4399
315 리눅스 comm 명령어를 통해 두개의 파일내용 비교하기 file 호스트웨이 2012.11.29 4420
314 df 와 du의 출력 크기가 다르게 보이는 이유 호스트웨이 2012.12.14 4427
313 useradd 명령어 사용방법 및 옵션 호스트웨이 2015.09.08 4435
312 리눅스 파일명 일괄변경하기 file 호스트웨이 2012.10.18 4469
311 리눅스 tac 명령어를 통해 파일내용 역순으로 출력하기 file 호스트웨이 2012.10.18 4478
310 Block 단위 파일 복사를 위한 dd 사용 호스트웨이 2015.09.18 4516
309 서비스 체크 스크립트 호스트웨이 2012.09.28 4537
308 리소스 많이 차지하는 프로세스 찾기 호스트웨이 2015.09.20 4560
307 Kick-Start 설정 호스트웨이 2015.09.18 4590