刚刚从 WinXP 切换到 Ubuntu 13.10,与我之前的版本相比,网速非常慢,从 600kbs 降到现在的 50kbs。我安装了所有更新。不知道该怎么办。
答案1
跑步ifconfig
。
应该有两个不同的 txqueuelen 值,一个段落,另一个段落
sudo ifconfig eth0 txqueuelen 10000&&sudo ifconfig eth1 txqueuelen 10000
你的 eth0 和 eth1 可能与列出的不同
增加 txqueuelen
将每个接口的 txqueuelength 参数增加到 1000 到 20000 之间的值:
ifconfig ${interface} txqueuelen ${size}
ifconfig eth1 txqueuelen 10000
ifconfig eth0 txqueuelen 5000