# Limit Upload Download Speeds in Rclone

Sometimes, we may want to limit/throttle download/upload speeds in Rclone, and that's where `--bwlimit` flag comes into play!

## Usage

This will restrict speeds for both downloads and uploads to 10 MB/s, for more granular control for download/upload speeds individually, we can specify the speeds in `upload:download` format.

```code
rclone copy my-bucket:my-important . --bwlimit 10M
```

Here, the upload & download speeds are restricted to 10 MB/s & 20 MB/s respectively.

```code
rclone copy my-bucket:my-important . --bwlimit 10M:20M
```

Here, the upload speed is restricted to 10 MB/s, while there's no restriction on download speeds; unlimited speed! 🚀🚀🚀

```code
rclone copy my-bucket:my-important . --bwlimit 10M:off
```

***Reference:*** [***Rclone Docs***](https://rclone.org/docs/#bwlimit-bwtimetable)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://til.devjugal.com/rclone/limit-upload-download-speeds.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
