|
飞牛的场景可能没做高带宽的优化,你试试手动优化一下
1 优化SMB/CIFS配置
编辑 /etc/samba/smb.conf:
ini
复制
[global]
server max protocol = SMB3_11
client max protocol = SMB3_11
socket options = TCP_NODELAY SO_RCVBUF=8388608 SO_SNDBUF=8388608
min receivefile size = 16384
write cache size = 262144
getwd cache = yes
aio read size = 1
aio write size = 1
use sendfile = yes
重启Samba服务:systemctl restart smbd nmbd.
客户端挂载选项:
bash
复制
mount -t cifs //server/share /mnt -o vers=3.1.1,username=user,password=pass,cache=none,noatime,nounix,rsize=1048576,wsize=1048576
2 调整系统网络参数
修改 /etc/sysctl.conf:
conf
复制
net.core.rmem_max = 2147483647
net.core.wmem_max = 2147483647
net.ipv4.tcp_rmem = 4096 87380 2147483647
net.ipv4.tcp_wmem = 4096 65536 2147483647
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_sack = 1
net.ipv4.tcp_low_latency = 1
应用配置:sysctl -p.
3 启用网卡高级功能
调整中断合并和队列:
bash
复制
ethtool -C ethX adaptive-rx on
ethtool -L ethX combined 32 # 根据网卡支持的最大队列数调整
启用RSS(Receive Side Scaling):
bash
复制
ethtool -X ethX weight equal |
|