Linux如何修改网口传输队列长度(txqueuelen)

时间:2019-11-20 08:54:09  来源:igfitidea点击:

在Linux中如何设置网卡设备的txqueuelen(发送队列的长度)长度?

txqueuelen的设置:
在低速高ping的情况下,该值应该设小一点。
在高速网络中,该值可以设置高一点。

修改txqueuelen的值

将每个网口的txqueuelength参数增加到1000到20000之间的值:

ifconfig ${interface} txqueuelen ${size}
ifconfig eth1 txqueuelen 10000
ifconfig eth0 txqueuelen 5000

永久设置txqueuelen

编辑/etc/rc.locale:

vi /etc/rc.local

在每个接口上添加下面的设置:

/sbin/ifconfig eth1 txqueuelen 10000
/sbin/ifconfig eth0 txqueuelen 10000