You are using staging server - a separate instance of the ESP Component Registry that allows you to try distribution tools and processes without affecting the real registry.
# Iperf command based on console
## Documentation
### Supported commands:
- Part of official iperf: https://iperf.fr/iperf-doc.php
- And `iperf --abort`
```
iperf [-suV] [-c <host>] [-p <port>] [-l <length>] [-i <interval>] [-t <time>] [-b <bandwidth>] [-f <format>] [--abort]
iperf command to measure network performance, through TCP or UDP connections.
-c, --client=<host> run in client mode, connecting to <host>
-s, --server run in server mode
-u, --udp use UDP rather than TCP
-p, --port=<port> server port to listen on/connect to
-l, --len=<length> Set read/write buffer size
-i, --interval=<interval> seconds between periodic bandwidth reports
-t, --time=<time> time in seconds to transmit for (default 10 secs)
-b, --bandwidth=<bandwidth> bandwidth to send at in Mbits/sec
-f, --format=<format> 'k' = Kbits/sec 'm' = Mbits/sec
--abort abort running iperf
```
### Installation
#### Espressif IoT Development Framework:
- To add a plugin command or any component from IDF component manager into your project, simply include an entry within the `idf_component.yml` file.
```yaml
dependencies:
esp-qa/iperf_cmd:
version: "^0.1.0"
```
- For more details refer [IDF Component Manager](https://docs.espressif.com/projects/idf-component-manager/en/latest/)
idf.py add-dependency "ydc-0/iperf_cmd^0.0.1-dev5"