在Ubuntu上,可以使用vsftpd这个FTP服务器软件来实现带宽限制
sudo apt-get update
sudo apt-get install vsftpd
sudo nano /etc/vsftpd.conf
<download_rate>
和<upload_rate>
替换为实际需要的速率(单位:KB/s):local_max_rate=<download_rate>
write_enable=YES
例如,如果要将下载速率限制为50KB/s,可以这样设置:
local_max_rate=50
write_enable=YES
保存并关闭配置文件。
重启vsftpd服务以应用更改:
sudo systemctl restart vsftpd
现在,vsftpd将对本地用户的下载速率进行限制。请注意,这种限制方法仅适用于本地用户,对于匿名用户和虚拟用户不起作用。如果需要对这些用户进行速率限制,可以考虑使用其他FTP服务器软件,如ProFTPD或Pure-FTPd。