Skip to content

Commit

Permalink
feat:Linux网络内核参数调优
Browse files Browse the repository at this point in the history
  • Loading branch information
juilletVent committed Sep 26, 2024
1 parent 7cc0e93 commit 9dc4762
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions 后端方向/Linux/Linux[内核网络参数调优].md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
## 内核网络参数调优

```ini
# 内核参数调优
net.core.rmem_default = 256960
net.core.rmem_max = 513920
net.core.wmem_default = 256960
net.core.wmem_max = 513920
net.core.netdev_max_backlog = 2000
net.core.somaxconn = 2048
net.core.optmem_max = 81920
net.ipv4.tcp_mem = 131072 262144 524288
net.ipv4.tcp_rmem = 8760 256960 4088000
net.ipv4.tcp_wmem = 8760 256960 4088000
net.ipv4.tcp_keepalive_time = 1800
net.ipv4.tcp_keepalive_intvl = 30
net.ipv4.tcp_keepalive_probes = 3
net.ipv4.tcp_sack = 1
net.ipv4.tcp_fack = 1
net.ipv4.tcp_timestamps = 1
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_fin_timeout = 30
net.ipv4.ip_local_port_range = 1024 65000
net.ipv4.tcp_max_syn_backlog = 2048
# BBR
net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr
```

0 comments on commit 9dc4762

Please sign in to comment.