IT/리눅스마스터1급

txqueuelen

알콩달콩아빠 2022. 4. 25. 19:41
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
반응형

'IT > 리눅스마스터1급' 카테고리의 다른 글

i/o 스케줄러  (0) 2022.04.29
프로세스 스케줄링  (0) 2022.04.28
mmap  (0) 2022.04.25
Linux 메모리 효율을 위한 vfs_cache_pressure  (0) 2022.04.10
메모리 & 백업  (0) 2018.02.24