How to limit the bandwidth in ftp account in a ubuntu web server

1

Hello friends, sorry in my web server linux in ubuntu as I could limit the width to ftp accounts of my clients I was investigating but none of them works for me, how could I limit the upload, because I need this? and speed needed for your account but I do not know how I could do that?

    
asked by Sommer 09.10.2016 в 01:58
source

1 answer

2

If you use Proftpd, you could set TransferRate in your /etc/proftpd.conf file as indicated in the following reference:

link

and in the official documentation:

link

For example:

TransferRate APPE,RETR,STOR 100

And remember that you would have to restart the service for the changes to apply:

/etc/init.d/proftpd restart

All this works under the mod_xfer module: link

    
answered by 12.10.2016 в 19:18