티스토리 뷰

1. ifconfig 명령으로 변경가능한 txqueuelen 값은 리부팅시 초기화됨. 따라서 아래와 같이  rc.local 등에 추가하는 방법으로 적용가능

 

ifconfig | grep eth | awk '{print $1}' | xargs -i{} ifconfig {} txqueuelen 10000


grep "txqueuelen 10000" /etc/rc.d/rc.local || echo -e "ifconfig | grep eth | awk '{print \$1}' | xargs -i{} ifconfig {} txqueuelen 10000" >> /etc/rc.d/rc.local

 

 

2. 또는 아래와 같이 ip 명령을 통해 변경도 가능.

 

[root@s-node01 perl]#
[root@s-node01 perl]# ip link set eth1 txqueuelen 10000
[root@s-node01 perl]#
[root@s-node01 perl]# ip link show eth1
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9000 qdisc pfifo_fast qlen 10000
    link/ether 08:00:27:00:75:09 brd ff:ff:ff:ff:ff:ff
[root@s-node01 perl]#
[root@s-node01 perl]#

 

 

반응형
반응형
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday