Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

29
iperf3 Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# iperf3
> Traffic generator for testing network bandwidth.
> More information: <https://iperf.fr>.
- Run iperf3 as a server:
`iperf3 -s`
- Run an iperf3 server on a specific port:
`iperf3 -s -p {{port}}`
- Start bandwidth test:
`iperf3 -c {{server}}`
- Run iperf3 in multiple parallel streams:
`iperf3 -c {{server}} -P {{streams}}`
- Reverse direction of the test. Server sends data to the client:
`iperf3 -c {{server}} -R`