An open API service indexing awesome lists of open source software.

https://github.com/ccoley/docker-iperf

Builds the ccoley/iperf Docker image. Mirror of https://git.codingallnight.com/docker/iperf
https://github.com/ccoley/docker-iperf

docker docker-image iperf iperf2 iperf3

Last synced: 13 days ago
JSON representation

Builds the ccoley/iperf Docker image. Mirror of https://git.codingallnight.com/docker/iperf

Awesome Lists containing this project

README

          

# iPerf Image

This repo builds two Docker images meant for use as an iperf server.

## Tags

There are images available with iPerf 3 or iPerf 2.

- `3.19`, `3` contain iPerf 3
- `2.2`, `2` contain iPerf 2

## Usage

The images default to running in server mode on the default port, which is 5201 for iPerf 3 and 5001 for iPerf 2.

### Server Mode

Running an iPerf 3 server:

```bash
docker run --rm -p 5201:5201 ccoley/iperf:3
```

Running an iPerf 2 server:

```bash
docker run --rm -p 5001:5001 ccoley/iperf:2
```

### Client Mode

Running iPerf 3 in client mode:

```bash
docker run --rm -t ccoley/iperf:3 -c
```

Running iPerf 2 in client mode:
```bash
docker run --rm -t ccoley/iperf:2 -c -i 1
```

[_modeline]: # ( vi: set ts=4 sw=4 et wrap ft=markdown: )