※ NIC카드의 Ring값을 변경하는 방법
1. ring값의 확인
# ethtool -g eth0
Ring parameters for eth0:
Pre-set maximums:
RX: 511
RX Mini: 0
RX Jumbo: 0
TX: 511
Current hardware settings:
RX: 200
RX Mini: 0
RX Jumbo: 0
TX: 511
2. ring값의 변경
# ethtool –G eth0 rx 511
3. 변경값의 확인
# ethtool -g eth0
Ring parameters for eth0:
Pre-set maximums:
RX: 511
RX Mini: 0
RX Jumbo: 0
TX: 511
Current hardware settings:
RX: 511
RX Mini: 0
RX Jumbo: 0
TX: 511
4. 변경하는 이유
ring값을 변경하는 이유는 대량의 데이타로 인하여 packet이 dorpped되거나 discard되는 경우임.
- 확인방법
# ethtool -S eth0 | grep -i discard
# ifconfig eth0 | grep -i dropped
위 두 개의 값이 동시에 올라가는 경우
5. 계속적인 값을 유지하는 방법
# vi /etc/rc.local
ethtool -G eth0 rx|tx [값]
(ex)
ethtool -G eth0 rx 511
출처 : http://blog.daum.net/ehddlsl/
댓글