Linux

rmem_max 大於 rmem_default

  • January 22, 2014

我剛剛安裝了 centos 6.3 並註意到以下內容:

$$ root@localhost user1 $$# cat /etc/redhat-release CentOS release 6.3 (Final) $$ root@localhost user1 $$# $$ root@localhost user1 $$# cat /proc/sys/net/core/rmem_max 131071 $$ root@localhost user1 $$# cat /proc/sys/net/core/rmem_default 229376 $$ root@localhost user1 $$# cat /proc/sys/net/core/wmem_max 131071 $$ root@localhost user1 $$# cat /proc/sys/net/core/wmem_default 229376 如您所見,rmem_max 比 rmem_default “小”,而 wmem_max 比 wmem_default “小”。

據我所知 wmem_max 和 rmem_max 應該超過預設值?

編輯:

cat /etc/redhat-release CentOS release 6.3 (Final)

uname -a Linux localhost.localdomain 2.6.32-279.el6.x86_64 #1 SMP Fri Jun 22 12:19:21 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

<< 連結:https ://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/7-Beta/html/Performance_Tuning_Guide/s-network-dont-adjust-defaults.html

請記住,rmem_default 的值不應大於 rmem_max (/proc/sys/net/core/rmem_max);如果需要,增加 rmem_max 的值。

如果它是“2.6.32-279”那麼它是一個錯誤,升級它。正如您在連結中提到的那樣,應該等於或更多。

引用自:https://serverfault.com/questions/568515