在Linux下设置Txqueuelen
时间:2020-01-09 10:43:37 来源:igfitidea点击:
如何在任何Linux发行版下设置网络接口卡(NIC)的txqueuelen?
ifconfig命令或者ip命令的txqueuelen选项用于设置设备传输队列的长度。
对于具有较高延迟的较慢设备,将其设置为较小的值很有用。
要将其设置为eth0,请使用以下命令:
ifconfig eth0 txqueuelen length ifconfig eth0 txqueuelen 1000
或者
ip link set eth0 txqueuelen length ip link set eth0 txqueuelen 10000
将上述命令添加到/etc/rc.local中,以便即时加载设置。