码迷,mamicode.com
首页 > 其他好文 > 详细

内核参数优化

时间:2017-01-17 10:42:06      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:内核参数   tables   mem   etc   efault   timeout   脚本   timestamp   amp   

内核参数优化
# vi sysctl.conf
增加以下配置
net.ipv4.netfilter.ip_conntrack_tcp_timeout_established = 1800
net.ipv4.ip_conntrack_max = 16777216 # 如果使用默认参数,容易出现网络丢包

net.ipv4.netfilter.ip_conntrack_max = 16777216 # 如果使用默认参数,容易出现网络丢包

net.ipv4.tcp_max_syn_backlog = 65536

net.core.netdev_max_backlog = 32768

net.core.somaxconn = 32768
net.core.wmem_default = 8388608
net.core.rmem_default = 8388608
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.ipv4.tcp_timestamps = 0
net.ipv4.tcp_synack_retries = 2
net.ipv4.tcp_syn_retries =
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_mem = 94500000 915000000 927000000
net.ipv4.tcp_max_orphans = 3276800
net.ipv4.ip_local_port_range = 1024 65535

配置生效:

sysctl -p

修改iptables启动脚本,在star()函数里面加上

vim /etc/init.d/iptables

/sbin/sysctl -p

内核参数优化

标签:内核参数   tables   mem   etc   efault   timeout   脚本   timestamp   amp   

原文地址:http://www.cnblogs.com/chenjw-note/p/6291802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!