linux + sysctl.conf 配置

linux + sysctl.conf 配置

#文件中的注释行是否正确sysctl.conf

我问是因为我不确定评论行是否会被阅读。

more /etc/sysctl.conf

#net.core.rmem_default = 1048576
#net.core.rmem_max = 4194304
#net.core.wmem_default = 1048576
#net.core.wmem_max = 4194304


net.ipv4.tcp_timestamps=0
net.ipv4.tcp_sack=1
net.core.netdev_max_backlog=250000
net.core.rmem_max=4194304
net.core.wmem_max=4194304
net.core.rmem_default=4194304
net.core.wmem_default=4194304
net.core.optmem_max=4194304
net.ipv4.tcp_rmem=4096 87380 4194304
net.ipv4.tcp_wmem=4096 65536 4194304

答案1

摘录自man sysctl.conf

注释在行首用“#”表示。

相关内容