How to limit the network rate used by scp in Linux?
Posted on In QAI am using a shared network and scp to upload files. I do not want to use most of the bandwidth available. How to limit the network rate used by scp in Linux?
You can use the -l
option of scp
to limit the rate of bandwidth.
-l limit
Limits the used bandwidth, specified in Kbit/s.
For example, to limit the network bandwidth used. For example, to limit the bandwidth that scp
uses to at most 1000 Kbit/s, you may use command
scp -l 1000 file user@remote:/path/to/dest/
For more options, check manual of scp
.
Hello,
Any how i could get the actual speed?
By default, scp prints the actual speed of transfer in the right side of the progress indicator in the terminal.