1.修改系统配置
查看系统是否支持fast-open
sysctl net.ipv4.tcp_fastopen
备份配置文件
cp /etc/sysctl.conf /etc/sysctl.conf.bak vi /etc/sysctl.conf
新增支持fastopen conf
net.ipv4.tcp_fastopen = 3
应用设置
sysctl -p
2.修改v2ray支持fastopen
vi /etc/v2ray/config.json
修改进站支持udp
{ "port": ****, "protocol": "dokodemo-door", "settings": { "address": "0.0.0.0", // 捕获所有地址的 UDP 流量 "port": 0, // 捕获所有端口的 UDP 流量 "network": "udp", // 指定网络类型为 UDP "timeout": 0, // 超时时间,0 表示不超时 "followRedirect": true // 允许重定向 } }
修改出站支持fastopen
"outbounds": [ { "protocol": "freedom", "settings": {}, "streamSettings": { "tcpSettings": { "tcpFastOpen": true } } } ]