优化了一下网络设置,感觉油管速度提升了20%+

查看 53|回复 4
作者:AlanNeverStop   
   
这个是默认的:
sysctl -w net.core.wmem_max=16777216
sysctl -w net.core.rmem_max=16777216
sysctl -w net.ipv4.tcp_wmem='4096        212992        16777216'
sysctl -w net.ipv4.tcp_rmem='4096        212992        16777216'
这个是优化过后的
sysctl -w net.core.wmem_max=33554432
sysctl -w net.core.rmem_max=33554432
sysctl -w net.ipv4.tcp_wmem='4096 425984 33554432'
sysctl -w net.ipv4.tcp_rmem='4096 425984 33554432'
sysctl -w net.ipv4.tcp_fastopen=1
不知道是心理作用还是啥,没执行前是稳定6-7W,执行过后到9W了

过后, 油管, 速度

newwstd   
心理作用,物理物理不好在优化也没用
AlanNeverStop
OP
  

newwstd 发表于 2023-6-1 16:42
心理作用,物理物理不好在优化也没用

线路是CN2 GIA,物理应该是没问题的...
hostvps   
First we need to do some kernel settings for performance and raise ulimits.
sudo nano /etc/sysctl.conf
Copy this at end of then file and save and close.
[ol]net.ipv4.tcp_keepalive_time = 90
net.ipv4.ip_local_port_range = 1024 65535
net.ipv4.tcp_fastopen = 3
net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr
fs.file-max = 65535000[/ol]复制代码
Then run this command to edit limits.conf
sudo nano /etc/security/limits.conf
Copy this at end of the file and save and close.
[ol]* soft     nproc          655350
* hard     nproc          655350
* soft     nofile         655350
* hard     nofile         655350
root soft     nproc          655350
root hard     nproc          655350
root soft     nofile         655350
root hard     nofile         655350[/ol]复制代码
Run this to apply settings.
sudo sysctl -p
AlanNeverStop
OP
  

hostvps 发表于 2023-6-1 16:44
First we need to do some kernel settings for performance and raise ulimits.
sudo nano /etc/sysctl.co ...

不知道是不是和我执行的哪个冲突了,改完后速度只剩5W+了
您需要登录后才可以回帖 登录 | 立即注册

返回顶部