LAN Card Speed (10M,100M) 및 duplex 모드 설정 (Half Duplex, Full Duplex)
. 현재 로드된 모듈
확인 : lsmod
. #cat /etc/modules.conf
. 랜카드 전송모드
설정하기
modprobe 랜카드모듈명 speed_duplex=설정번호
여기서
"랜카드모듈명"은 lsmod 했을대 적재된 모듈명을 사용하시면 되고 "설정번호"는
0,1,2,3,4로
설정할 수 있으며 그 의미는 각각 다음과 같습니다.
-speed_duplex=0
: aouto detection 모드로 설정
-speed_duplex=1
: 10M , half deplex로 설정
-speed_duplex=2
: 10M , duplex로 설정
-speed_duplex=3
: 100M , half duplex로 설정
-speed_duplex=4
: 100M , full duplex로 설정
설정예 1: Auto
모드
# modprobe
eepro100 speed_duplex=0