现在是设置了 vsftpd.conf 中 max_per_ip=2 ,但这两个连接有时都被数据连接占用了
还有 nginx 也同理,下载连接怎么不占用刷网页的连接
1
liuxu 2022-01-20 19:12:39 +08:00
iptables 限制
nginx 限制下载带宽 |
2
fengchen0vr OP @liuxu 感谢回复,vsftpd 可以用端口限制连接数,
nginx 还是想把刷网页和下载文件各一个连接 |
3
liuxu 2022-01-21 18:43:48 +08:00
|
4
fengchen0vr OP vsftpd 防火墙限制数据端口连接数
sudo iptables -I INPUT -p tcp --syn --dport 60000:60099 -m connlimit --connlimit-above 2 -j DROP |