728x90
반응형
리눅스 txqueuelen 변경
Jmnote
- txqueuelen
- 송신 큐 길이(transmit queue length)
개요
송신 큐 길이의 기본값은 1000이다. 10000으로 바꾸어보자.
즉시 적용
변경 전
[root@jmnote ~]# ifconfig eth9 | grep txqueuelen
collisions:0 txqueuelen:1000
[root@jmnote ~]# ifconfig eth11 | grep txqueuelen
collisions:0 txqueuelen:1000
[root@jmnote ~]# ifconfig bond1 | grep txqueuelen
collisions:0 txqueuelen:0
변경
[root@jmnote ~]# ifconfig eth9 txqueuelen 10000
[root@jmnote ~]# ifconfig eth11 txqueuelen 10000
[root@jmnote ~]# ifconfig bond1 txqueuelen 10000
변경 후
[root@jmnote ~]# ifconfig eth9 | grep txqueuelen
collisions:0 txqueuelen:10000
[root@jmnote ~]# ifconfig eth11 | grep txqueuelen
collisions:0 txqueuelen:10000
[root@jmnote ~]# ifconfig bond1 | grep txqueuelen
collisions:0 txqueuelen:10000
재부팅시 적용
명령어 자체는 즉시 적용과 동일하다. rc.local에 추가하여 재부팅시에 적용되도록 한다.
vi /etc/rc.local
아래 내용 추가
/sbin/ifconfig eth9 txqueuelen 10000
/sbin/ifconfig eth11 txqueuelen 10000
/sbin/ifconfig bond1 txqueuelen 10000
출처: http://jmnote.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_txqueuelen_%EB%B3%80%EA%B2%BD
728x90
반응형